diff --git a/CMakeLists.txt b/CMakeLists.txt index 4900e39830..a09b269390 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX project(Geant4) set(${PROJECT_NAME}_VERSION_MAJOR 10) set(${PROJECT_NAME}_VERSION_MINOR 6) -set(${PROJECT_NAME}_VERSION_PATCH 0) +set(${PROJECT_NAME}_VERSION_PATCH 1) set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}") # - Prepend our own CMake Modules to the search path diff --git a/ReleaseNotes/Patch4.10.6-1.txt b/ReleaseNotes/Patch4.10.6-1.txt new file mode 100644 index 0000000000..7f86bd1825 --- /dev/null +++ b/ReleaseNotes/Patch4.10.6-1.txt @@ -0,0 +1,174 @@ + + Geant4 10.6 - patch-01 Release Notes + ------------------------------------ + + 14 February 2020 + +List of fixes included in this public patch since the public release 10.6: + + o Configuration: + ------------- + + CMake: + o Applied patch to allow compilation on Windows using Clang. + o Quote VECGEOM_COMPILE_DEFINITIONS to avoid incorrect argument errors. + o Fix to prevent errors when a shell is in "set -u" mode. + Addressing problem report #2221. + o No longer create symlinks on Windows; Windows permissions may prevent + creation of symlinks, leading to errors at install time. + o Updated to data-set G4EMLOW-7.9.1. + + GNUMake: + o Fixed and updated legacy setup for DLL builds on Windows. + + o Digits_Hits: + ----------- + + G4ScoringManager, G4VScoreWriter, G4ScoringMessenger: added missing + setter/getter functions. + + In G4ScoreQuantityMessenger, changed SetDefaultUnit() in trackLength + scorer to SetDefaultValue() to support various unit category. + Addressing problem report #2216. + + o Geometry: + -------- + + magneticfield: + o Turn off verbosity flags by default in G4IntegratorDriver, + G4InterpolationDriver and G4MagIntegratorDriver. + + navigation: + o Avoid looping infinitely by pushing N times with increasing step size. + Addressing problem report #2196. + + solids/specific: + o Re-established parameterisation mechanism for G4Tet and G4UTet which was + removed by mistake. Addressing problem report #2209. + o Revision of G4Tet, for speed-up and issues detected in unit tests. + Implemented SetVertices(), direct modifier for vertices. + o Revision of G4Ellipsoid, fixing issues with previous implementation, + and 30%-70% speed-up in all main methods. + Also addressing problem report #2206. + o Added protection in G4VFacet header for double definition of global + symbols from Windows Kits code. + + o Global: + ------ + + Fixed symbol exporting problem in G4coutDestination on Windows; define + 'masterG4coutDestination' as normal pointer. + Addressing problem report #2217. + + Added windefs.hh header, including protections for double definition + of global symbols from Windows Kits code. + + Updated date and version for 10.6.p01. + + o Interfaces: + ---------- + + Fixed obsolete URLs in UIQt splash screen. + + o Particles + --------- + + Fixed broken if-block in G4DecayTableMessenger. + Addressing problem report #2193. + + o Physics Lists + ------------- + + constructors/electromagnetic: + o G4EmModelActivator: fixed configuration of the default EM multiple + scattering on top of any other physics configuration. + Addressing problem report #2106. + + constructors/gamma_lepto_nuclear + o Fixed reports from Coverity; removed double delete in destructor of + G4LENDBertiniGammaElectroNuclearBuilder. + + lists: + o LBE: updated cross-sections to avoid crashes caused by the removal of + default Gheisha cross-sections, and to have consistency between elastic + and inelastic cross-sections. + + o Processes - Electromagnetic: + --------------------------- + + muons: + o G4MuPairProductionModel: added Store/Retrieve data methods. + Co-works with new data-set G4EMLOW-7.9.1. + + standard: + o G4BetheHeitler5DModel: added protection against negative argument of + sqrt(), due to precision lost. + + utils: + o G4EmParameters, G4EmParametersMessenger: added new parameter to enable + read of e+e- production table from file. + Co-works with new data-set G4EMLOW-7.9.1. + + o Processes - Hadronic: + -------------------- + + cross_sections: + o G4HadronInelasticDataSet: fixed wrong GHEISHA x-section. + Addressing problem report #2220. + + management: + o G4HadronicProcess: for charge check assume that all final electrons + come from internal conversion. + + cascade: + o G4CascadeCheckBalance: fixed outstanding problem of the interface with + native pre-compound model, happening when in the default de-excitation + internal electron conversion gets enabled. + o G4CascadeInterface: fixed memory leak by deleting ltcollider in class + destructor. + o G4CascadeParamMessenger.cc: ensure that Bertini-specific commands get + added to "/process/had/cascade/" UI directory, instead of + "/process/had". + + models/coherent_elastic: + o G4ElasticHadrNucleusHE: for pi- and Z>1 reuse data structure computed + for pi+ in order to reduce memory and CPU at initialisation; added new + private methods to store/retrieve data tables. Co-works with new + data-set G4EMLOW-7.9.1. Fixed Coverity report. + Switch to parameterized model by cut on kinetic energy and not momentum. + + models/lend: + o Removed inclusion of amp_math header on Windows as it is not required. + + models/parton_string/qgsm: + o G4FTFParameters: fixed division by zero (Coverity report) due to wrong + protection. + + models/radioactive_decay: + o In G4Radioactivation::AddDeexcitationSpectrumForBiasMode(), fixed + memory leak. Addressing problem report #2164. + o G4RadioactiveDecay, G4RadioactiveDecayBase: changed default verbosity + from 0 to 1, and remove G4cerr wherever it occurs and replace it with + G4Exception or G4cout. + Increased verbosity thresholds in order to reduce printout size. + o G4BetaPlusDecay: changed sign of daughterZ argument in + G4BetaDecayCorrections according to problem report #2199. + o Fixed Coverity warnings in G4RadioactiveDecay and + G4RadioactiveDecayBase. Fixed uninitialized data in G4SFDecay. + + processes: + o G4HadronElasticProcess: removed forgotten try/catch pattern for + target isotope selection. + + stopping: + o G4MuonicAtomDecay: fixed Coverity warning by addition of G4Exception. + + o Visualization: + ------------- + + OpenInventor: + o Added include paths to Inventor to usage requirements on G4OpenInventor. + Inventor does not yet support imported targets, and paths added by + include_directories are now explicitly removed. + Addressing problem report #2215 + + o Data sets: + --------- + + G4EMLOW-7.9.1: + o Added a new directory mupair for double differential probability + of e+e- pairs produced by muons or hadrons. + + o Examples: + -------- + + basic + o Fixed comment for suggested command "/run/numberOfThreads" in macros. + + extended/hadronic/Hadr01 + o HistoManager: fixed FPE happening if check on volume's material + is not vacuum. + + ---------------------------------------------------------------------------- + + Technical Notes + --------------- + + o This patch should be applied on top of release 10.6. + o Technical notes distributed for release 10.6 are also applicable and + valid for this patch. + +The code and rebuilt binary libraries for release 10.6.p01 are available +through the Geant4 "Download" Web page. + +Please refer to the Geant4 User Documentation for further information about +using Geant4. diff --git a/cmake/History b/cmake/History index 9e0a882f12..ddb53b80dd 100644 --- a/cmake/History +++ b/cmake/History @@ -30,6 +30,27 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER]. ---------------------------------------------------------- +14th February 2020 - Ben Morgan (cmake-V10-05-34) +- No longer create gnumake symlinks on Windows + Windows permissions may prevent creation of symlinks, leading to + errors at install time. As gnumake is no longer supported on + Windows, protect symlink creation with test on host platform. + +5th February 2020 - Ben Morgan (cmake-V10-05-33) +- Apply patch from TXCorp to allow compilation on Windows using Clang + +4th February 2020 - Ben Morgan (cmake-V10-05-32) +- BUGFIX 2221 + Use "${FOO:-}" variable expansion and "-z" test to check for + undefined variables in Bourne Shell scripts. Prevents errors when + shell is in "set -u" mode. Report and patch supplied by Michael Reilly + +28th January 2020 - Gunter Folger (cmake-V10-05-31) +- Switch to patched dataset for G4EMLOW 7.9.1 + +15th January 2020 - Ben Morgan (cmake-V10-05-30) +- Quote VECGEOM_COMPILE_DEFINITIONS to avoid incorrect argument errors + 25th November 2019 - Ben Morgan (cmake-V10-05-29) - Disable configuration of Wt UI/Vis driver due to it no longer compiling with recent Wt versions diff --git a/cmake/Modules/G4ConfigureGNUMakeHelpers.cmake b/cmake/Modules/G4ConfigureGNUMakeHelpers.cmake index 78b00c2e8a..c2aeefee59 100644 --- a/cmake/Modules/G4ConfigureGNUMakeHelpers.cmake +++ b/cmake/Modules/G4ConfigureGNUMakeHelpers.cmake @@ -284,7 +284,7 @@ function(_g4tc_setenv_ifnotset_command TEMPLATE_NAME SHELL_FAMILY VARIABLE_NAME # Have to make this section verbatim to get correct formatting set(${TEMPLATE_NAME} " -if test \"x\$${VARIABLE_NAME}\" = \"x\" ; then +if [ -z \"\$\{${VARIABLE_NAME}-\}\" ] ; then export ${VARIABLE_NAME}=${VARIABLE_VALUE} fi " @@ -317,7 +317,7 @@ function(_g4tc_prepend_path TEMPLATE_NAME SHELL_FAMILY PATH_VARIABLE # We have to make this section verbatim set(${TEMPLATE_NAME} " -if test \"x\$${PATH_VARIABLE}\" = \"x\" ; then +if [ -z \"\$\{${PATH_VARIABLE}-\}\" ] ; then export ${PATH_VARIABLE}=${APPEND_VARIABLE} else export ${PATH_VARIABLE}=${APPEND_VARIABLE}:\${${PATH_VARIABLE}} @@ -354,7 +354,7 @@ function(_g4tc_append_path TEMPLATE_NAME SHELL_FAMILY PATH_VARIABLE # We have to make this section verbatim set(${TEMPLATE_NAME} " -if test \"x\$${PATH_VARIABLE}\" = \"x\" ; then +if [ -z \"\$\{${PATH_VARIABLE}-\}\" ] ; then export ${PATH_VARIABLE}=${APPEND_VARIABLE} else export ${PATH_VARIABLE}=\${${PATH_VARIABLE}}:${APPEND_VARIABLE} @@ -805,14 +805,11 @@ install(DIRECTORY config PATTERN "scripts/" EXCLUDE ) -# Compatibility softlink to library directory, we do this on all -# platforms, but it does nothing on Windows (well, at least the -# attempted symlink creation does not) -# Take care to quote the path names to avoid issues with spaces -install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E make_directory \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")") - -install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E create_symlink .. ${GEANT4_SYSTEM}-${GEANT4_COMPILER} WORKING_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")") - +# Compatibility softlink to library directory on UNIX only +if(UNIX) + install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E make_directory \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")") + install(CODE "execute_process(COMMAND \${CMAKE_COMMAND} -E create_symlink .. ${GEANT4_SYSTEM}-${GEANT4_COMPILER} WORKING_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_LIBDIR}/Geant4-${Geant4_VERSION}\")") +endif() #----------------------------------------------------------------------- # TEMPORARY diff --git a/cmake/Modules/G4VecGeomShim.cmake b/cmake/Modules/G4VecGeomShim.cmake index bce1847e59..1783686873 100644 --- a/cmake/Modules/G4VecGeomShim.cmake +++ b/cmake/Modules/G4VecGeomShim.cmake @@ -11,7 +11,7 @@ if(VecGeom_FOUND) string(REGEX REPLACE "^\-D|;-D" ";" VECGEOM_COMPILE_DEFINITIONS "${VECGEOM_DEFINITIONS}") set_target_properties(VecGeom::VecGeom PROPERTIES - INTERFACE_COMPILE_DEFINITIONS ${VECGEOM_COMPILE_DEFINITIONS} + INTERFACE_COMPILE_DEFINITIONS "${VECGEOM_COMPILE_DEFINITIONS}" INTERFACE_INCLUDE_DIRECTORIES "${VECGEOM_INCLUDE_DIRS}" INTERFACE_LINK_LIBRARIES "${VECGEOM_LIBRARIES}" IMPORTED_LOCATION "${VECGEOM_LIBRARY}") diff --git a/cmake/Modules/Geant4DatasetDefinitions.cmake b/cmake/Modules/Geant4DatasetDefinitions.cmake index 3a2ece8ed0..ed5b904c07 100644 --- a/cmake/Modules/Geant4DatasetDefinitions.cmake +++ b/cmake/Modules/Geant4DatasetDefinitions.cmake @@ -18,11 +18,11 @@ geant4_add_dataset( # - Low energy electromagnetics geant4_add_dataset( NAME G4EMLOW - VERSION 7.9 + VERSION 7.9.1 FILENAME G4EMLOW EXTENSION tar.gz ENVVAR G4LEDATA - MD5SUM d28a09f0c93243522512cf2a3a733348 + MD5SUM 1308dc5d73b5539557e2ec6b96f7e5ef ) # - Photon evaporation diff --git a/cmake/Modules/MSVCCompileFeatures.cmake b/cmake/Modules/MSVCCompileFeatures.cmake index 937288fe49..43dea95e7a 100644 --- a/cmake/Modules/MSVCCompileFeatures.cmake +++ b/cmake/Modules/MSVCCompileFeatures.cmake @@ -11,25 +11,31 @@ # 2) Set the compile flags/features when using CMake < 3.10 # if(MSVC) + # This seems to indicate CMAKE_C_SIMULATE_ID + if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") # Require MSVC that supports standard flags and std::filesystem - if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20) - message(FATAL_ERROR "Geant4 requires MSVC 19.20 (Visual Studio 2019 Version 16.0) or newer") - else() - # Set cxxstd flags on CMake < 3.10 - if(CMAKE_VERSION VERSION_LESS 3.10) - # VS 2015 Update 3 and above support language standard level flags, - # with the default and minimum level being C++14. - set(CMAKE_CXX98_STANDARD_COMPILE_OPTION "") - set(CMAKE_CXX98_EXTENSION_COMPILE_OPTION "") - set(CMAKE_CXX11_STANDARD_COMPILE_OPTION "") - set(CMAKE_CXX11_EXTENSION_COMPILE_OPTION "") - set(CMAKE_CXX14_STANDARD_COMPILE_OPTION "-std:c++14") - set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std:c++14") - set(CMAKE_CXX17_STANDARD_COMPILE_OPTION "-std:c++17") - set(CMAKE_CXX17_EXTENSION_COMPILE_OPTION "-std:c++17") - list(APPEND CMAKE_CXX17_COMPILE_FEATURES cxx_std_17) - set(CMAKE_CXX_COMPILE_FEATURES ${CMAKE_CXX_COMPILE_FEATURES} "${CMAKE_CXX17_COMPILE_FEATURES}") + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20) + message(FATAL_ERROR "Geant4 requires MSVC 19.20 (Visual Studio 2019 Version 16.0) or newer") + else() + # Set cxxstd flags on CMake < 3.10 + if(CMAKE_VERSION VERSION_LESS 3.10) + # VS 2015 Update 3 and above support language standard level flags, + # with the default and minimum level being C++14. + set(CMAKE_CXX98_STANDARD_COMPILE_OPTION "") + set(CMAKE_CXX98_EXTENSION_COMPILE_OPTION "") + set(CMAKE_CXX11_STANDARD_COMPILE_OPTION "") + set(CMAKE_CXX11_EXTENSION_COMPILE_OPTION "") + set(CMAKE_CXX14_STANDARD_COMPILE_OPTION "-std:c++14") + set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std:c++14") + set(CMAKE_CXX17_STANDARD_COMPILE_OPTION "-std:c++17") + set(CMAKE_CXX17_EXTENSION_COMPILE_OPTION "-std:c++17") + list(APPEND CMAKE_CXX17_COMPILE_FEATURES cxx_std_17) + set(CMAKE_CXX_COMPILE_FEATURES ${CMAKE_CXX_COMPILE_FEATURES} "${CMAKE_CXX17_COMPILE_FEATURES}") + endif() endif() + elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + else() + message(FATAL_ERROR "Geant4 requires Visual Studio or Clang.") endif() endif() diff --git a/config/History b/config/History index 4b6dd85810..241398e07c 100644 --- a/config/History +++ b/config/History @@ -15,6 +15,9 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +12th Feb 2020 Gabriele Cosmo (config-V10-05-09) +- Fixed and updated setup for DLL builds on Windows. + 20th Nov 2019 Gabriele Cosmo (config-V10-05-08) - interactivity.gmk: added -DQT_NO_DEPRECATED_WARNINGS to Qt compilation settings, to silence warnings from Qt for use of deprecated features. diff --git a/config/binmake.gmk b/config/binmake.gmk index aba6110d11..e34e05d2d6 100644 --- a/config/binmake.gmk +++ b/config/binmake.gmk @@ -261,10 +261,6 @@ ifdef GLOBALLIBS LDLIBS2 += -lG4expat endif - ifneq (,$(findstring WIN32-VC,$(G4SYSTEM))) - LDLIBS2 += -lG4expat - endif - ifdef G4LIB_USE_ZLIB LDLIBS2 += -lG4zlib endif diff --git a/config/genwindef.cc b/config/genwindef.cc index 2db95a9163..f10feddddb 100644 --- a/config/genwindef.cc +++ b/config/genwindef.cc @@ -102,7 +102,7 @@ typedef MEMORY_MAPPED_FILE* PMEMORY_MAPPED_FILE; using namespace std; -#define MakePtr( cast, ptr, addValue ) (cast)( (DWORD)(ptr) + (DWORD)(addValue)) +#define MakePtr( cast, ptr, addValue ) (cast)( (DWORD_PTR)(ptr) + (DWORD_PTR)(addValue)) ///////////////////////////////////////////////////////////////////////////// // CLibSymbolInfo diff --git a/config/sys/WIN32-VC.gmk b/config/sys/WIN32-VC.gmk index 118349d70f..b2a550c8d9 100644 --- a/config/sys/WIN32-VC.gmk +++ b/config/sys/WIN32-VC.gmk @@ -12,8 +12,9 @@ ifeq ($(G4SYSTEM),WIN32-VC) endif CXXFLAGS += -GR -EHsc -Zm200 -nologo -std:c++17 CXXFLAGS += -D_CONSOLE -D_WIN32 -DOS - CPPFLAGS += -DWIN32 -DXPNET -D_CRT_SECURE_NO_DEPRECATE + CPPFLAGS += -DWIN32 -DXPNET -D_CRT_SECURE_NO_DEPRECATE -D_NO_CRT_STDIO_INLINE LDFLAGS += -FORCE /NODEFAULTLIB:MSVCRT.dll /STACK:12582912 + LOADLIBS += legacy_stdio_definitions.lib SHEXT := dll AR := LIB @@ -93,15 +94,15 @@ ifeq ($(G4SYSTEM),WIN32-VC) $(ECHO) "Building lib$(name).exp and lib$(name).lib file ...";\ $(RM) $(G4LIBDIR)/lib$(name).exp;\ $(RM) $(G4LIBDIR)/lib$(name).lib;\ - lib.exe /nologo /machine:ix86 /def:$(name).def \ + lib.exe /nologo /machine:x64 /def:$(name).def \ /out:$(G4LIBDIR)/lib$(name).lib;\ $(RM) $(G4LIBDIR)/$(name).dll;\ $(ECHO) "Building $(name).dll file ...";\ - link.exe /nologo /dll /out:$(G4LIBDIR)/$(name).dll \ + link.exe /nologo /machine:x64 /dll /out:$(G4LIBDIR)/$(name).dll \ $(G4LIBDIR)/lib$(name).exp $(G4LIBDIR)/lib$(name).a \ $(LIB_PATH)$(G4LIBDIR) $(GLOBLIBS) \ $(LIB_PATH)$(CLHEP_LIB_DIR) $(CLHEP_LIB) \ - $(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) + $(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) $(LOADLIBS) endef define build-global-shared-lib @libdir=`(cd $(@D);/bin/pwd)`;\ @@ -112,14 +113,14 @@ ifeq ($(G4SYSTEM),WIN32-VC) $(ECHO) "Building lib$(name).exp and lib$(name).lib ...";\ $(RM) $(G4LIBDIR)/lib$(name).exp;\ $(RM) $(G4LIBDIR)/lib$(name).lib;\ - lib.exe /nologo /machine:ix86 /def:$(name).def \ + lib.exe /nologo /machine:x64 /def:$(name).def \ /out:$(G4LIBDIR)/lib$(name).lib;\ $(RM) $(G4LIBDIR)/$(name).dll;\ $(ECHO) "Building $(name).dll ...";\ - link.exe /nologo /dll /out:$(G4LIBDIR)/$(name).dll \ + link.exe /nologo /machine:x64 /dll /out:$(G4LIBDIR)/$(name).dll \ $(G4LIBDIR)/lib$(name).exp $(G4LIBDIR)/lib$(name).a \ $(LIB_PATH)$(G4LIBDIR) $(GLOBLIBS) \ $(LIB_PATH)$(CLHEP_LIB_DIR) $(CLHEP_LIB) \ - $(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) + $(INTYLIBS) $(GDMLLIBS) $(ANALYSISLIBS) $(UI32LIBS) $(LOADLIBS) endef endif diff --git a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out index 8ebb19d417..c859c16653 100644 --- a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out +++ b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1278,7 +1278,7 @@ Event 14455 Run terminated. Run Summary Number of events processed : 14456, effectively: 10 - User=8.780000s Real=9.096388s Sys=0.030000s + User=8.590000s Real=8.667211s Sys=0.010000s --- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)): 1 [ 1.0000, 0.8000) | 0.00254453 ( 1 / 393 ) | 0.00000000 ( 0 / 393 / 480 ) diff --git a/examples/advanced/air_shower/air_shower.out b/examples/advanced/air_shower/air_shower.out index 7c94d019df..4f852b8a30 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -244,8 +244,8 @@ See commands in /vis/modeling/trajectories/ for other options. ooo Run 0 starts (global). --------- Ranlux engine status --------- - Initial seed = 1575548249 - float_seed_table[] = 0.636971 0.80368 0.477473 0.77956 0.386704 0.678484 0.893229 0.819829 0.749979 0.779605 0.210427 0.0392667 0.297203 0.429559 0.550057 0.0868152 0.840908 0.125298 0.800472 0.247863 0.0465301 0.967462 0.0514111 0.299733 + Initial seed = 1581670685 + float_seed_table[] = 0.771425 0.857793 0.786471 0.959849 0.54189 0.251619 0.336965 0.48616 0.231617 0.975826 0.760323 0.680841 0.384682 0.719225 0.266291 0.500768 0.777779 0.245909 0.829786 0.237351 0.567685 0.441431 0.607113 0.0855538 i_lag = 23, j_lag = 9 carry = 0, count24 = 0 luxury = 3 nskip = 199 @@ -256,7 +256,7 @@ mu- Mono Plane Run terminated. Run Summary Number of events processed : 100 - User=1.900000s Real=1.911033s Sys=0.000000s + User=2.090000s Real=2.091367s Sys=0.000000s ### Run 0 (global) ended. Graphics systems deleted. Visualization Manager deleting... @@ -284,9 +284,9 @@ Pool ID '17G4DynamicParticle', size : 0.025 MB Pool ID '7G4Track', size : 0.049 MB Pool ID '18G4TouchableHistory', size : 0.000961 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB -Pool ID '15UltraOpticalHit', size : 0.00385 MB +Pool ID '15UltraOpticalHit', size : 0.000961 MB Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.097 MB +Dynamic pools deleted: 12 / Total memory freed: 0.094 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/amsEcal/run1.out b/examples/advanced/amsEcal/run1.out index a70b2a9a01..b8dea25325 100644 --- a/examples/advanced/amsEcal/run1.out +++ b/examples/advanced/amsEcal/run1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -179,7 +179,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=7.540000s Real=7.561025s Sys=0.000000s + User=7.470000s Real=7.527727s Sys=0.000000s ------------------------------------------------------------- ---> The calorimeter is 9 Modules diff --git a/examples/advanced/brachytherapy/brachytherapy.out b/examples/advanced/brachytherapy/brachytherapy.out index 1b38ca1808..b46d429f2b 100644 --- a/examples/advanced/brachytherapy/brachytherapy.out +++ b/examples/advanced/brachytherapy/brachytherapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/advanced/composite_calorimeter/composite_calorimeter.out b/examples/advanced/composite_calorimeter/composite_calorimeter.out index 684cd29e1f..a708adbdb0 100644 --- a/examples/advanced/composite_calorimeter/composite_calorimeter.out +++ b/examples/advanced/composite_calorimeter/composite_calorimeter.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -902,7 +902,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 20 - User=18.970000s Real=19.354676s Sys=0.030000s + User=19.750000s Real=20.570038s Sys=0.040000s ### Run 0 end. ... write Root file : ccal.root - done ... close Root file : ccal.root - done @@ -918,23 +918,23 @@ G4SDManager deleted. EventManager deleted. Units table cleared. TransportationManager deleted. -Total navigation history collections cleaned: 47 +Total navigation history collections cleaned: 48 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.0683 MB +Pool ID '20G4NavigationLevelRep', size : 0.0721 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB Pool ID '16G4HitsCollection', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.0702 MB -Pool ID '7G4Track', size : 0.139 MB +Pool ID '17G4DynamicParticle', size : 0.0538 MB +Pool ID '7G4Track', size : 0.108 MB Pool ID '18G4TouchableHistory', size : 0.00577 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB -Pool ID '17G4ReactionProduct', size : 0.0125 MB +Pool ID '17G4ReactionProduct', size : 0.0135 MB Pool ID '10G4Fragment', size : 0.00481 MB Number of memory pools allocated: 13 of which, static: 0 -Dynamic pools deleted: 13 / Total memory freed: 0.31 MB +Dynamic pools deleted: 13 / Total memory freed: 0.26 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/eRosita/eRosita.out b/examples/advanced/eRosita/eRosita.out index bebe594e2d..fcdfe2f204 100644 --- a/examples/advanced/eRosita/eRosita.out +++ b/examples/advanced/eRosita/eRosita.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -200,4 +200,4 @@ Index : 2 used in the geometry : Yes ---- eRosita event counter: 9000 ---- eRosita event counter: 10000 --- Run 00 ends (Number of events = 10000). - User=39.150000s Real=39.511848s Sys=0.010000s + User=37.830000s Real=37.981702s Sys=0.010000s diff --git a/examples/advanced/gammaknife/gammaknife.out b/examples/advanced/gammaknife/gammaknife.out index 5150b0a8db..efdc6643a8 100644 --- a/examples/advanced/gammaknife/gammaknife.out +++ b/examples/advanced/gammaknife/gammaknife.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -517,8 +517,8 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.003841s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0042695 + User=0.000000s Real=0.003046s Sys=0.000000s + User TOT = 0 Real TOT = 0.00340431 Summary of Run 0 : /run/geometryModified @@ -587,8 +587,8 @@ Run 1 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002273s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.00665371 + User=0.000000s Real=0.002228s Sys=0.000000s + User TOT = 0 Real TOT = 0.00576202 Summary of Run 1 : /run/geometryModified @@ -657,8 +657,8 @@ Run 2 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.007167s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0139303 + User=0.010000s Real=0.002787s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.00866231 Summary of Run 2 : /run/geometryModified @@ -727,8 +727,8 @@ Run 3 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002767s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0168054 + User=0.000000s Real=0.003401s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0123362 Summary of Run 3 : /run/geometryModified @@ -797,8 +797,8 @@ Run 4 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002027s Sys=0.000000s - User TOT = 0.01 Real TOT = 0.0189489 + User=0.000000s Real=0.002624s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0150761 Summary of Run 4 : /run/geometryModified @@ -867,8 +867,8 @@ Run 5 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.003428s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0224886 + User=0.000000s Real=0.001679s Sys=0.000000s + User TOT = 0.01 Real TOT = 0.0168615 Summary of Run 5 : /run/geometryModified @@ -937,8 +937,8 @@ Run 6 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002806s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0254046 + User=0.010000s Real=0.002487s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0194562 Summary of Run 6 : /run/geometryModified @@ -1007,8 +1007,8 @@ Run 7 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002696s Sys=0.010000s - User TOT = 0.02 Real TOT = 0.0282096 + User=0.000000s Real=0.002156s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0217183 Summary of Run 7 : /run/geometryModified @@ -1077,8 +1077,8 @@ Run 8 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002294s Sys=0.000000s - User TOT = 0.02 Real TOT = 0.0306153 + User=0.000000s Real=0.001784s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0236074 Summary of Run 8 : /run/geometryModified @@ -1147,8 +1147,8 @@ Run 9 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002997s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0337215 + User=0.000000s Real=0.001898s Sys=0.000000s + User TOT = 0.02 Real TOT = 0.0256105 Summary of Run 9 : /run/geometryModified @@ -1217,8 +1217,8 @@ Run 10 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001774s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0356012 + User=0.010000s Real=0.001966s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0276931 Summary of Run 10 : /run/geometryModified @@ -1287,8 +1287,8 @@ Run 11 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002692s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0384002 + User=0.000000s Real=0.001654s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.029452 Summary of Run 11 : /run/geometryModified @@ -1357,8 +1357,8 @@ Run 12 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002681s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0412045 + User=0.000000s Real=0.002057s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0316146 Summary of Run 12 : /run/geometryModified @@ -1427,8 +1427,8 @@ Run 13 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002636s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0439518 + User=0.000000s Real=0.001946s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0336902 Summary of Run 13 : /run/geometryModified @@ -1497,8 +1497,8 @@ Run 14 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002036s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.046094 + User=0.000000s Real=0.002455s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0362502 Summary of Run 14 : /run/geometryModified @@ -1567,8 +1567,8 @@ Run 15 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003261s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0494629 + User=0.000000s Real=0.001921s Sys=0.000000s + User TOT = 0.03 Real TOT = 0.0382905 Summary of Run 15 : /run/geometryModified @@ -1637,8 +1637,8 @@ Run 16 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001701s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0512631 + User=0.010000s Real=0.002344s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0407475 Summary of Run 16 : /run/geometryModified @@ -1707,8 +1707,8 @@ Run 17 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002536s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0539207 + User=0.000000s Real=0.002045s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0428962 Summary of Run 17 : /run/geometryModified @@ -1777,8 +1777,8 @@ Run 18 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002391s Sys=0.010000s - User TOT = 0.03 Real TOT = 0.0564296 + User=0.000000s Real=0.002056s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0450621 Summary of Run 18 : /run/geometryModified @@ -1847,8 +1847,8 @@ Run 19 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003233s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0597809 + User=0.000000s Real=0.001903s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.047069 Summary of Run 19 : /run/geometryModified @@ -1917,8 +1917,8 @@ Run 20 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002341s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0622352 + User=0.000000s Real=0.001499s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0486838 Summary of Run 20 : /run/geometryModified @@ -1987,8 +1987,8 @@ Run 21 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002337s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0646953 + User=0.000000s Real=0.001859s Sys=0.000000s + User TOT = 0.04 Real TOT = 0.0506455 Summary of Run 21 : /run/geometryModified @@ -2057,8 +2057,8 @@ Run 22 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001765s Sys=0.000000s - User TOT = 0.03 Real TOT = 0.0665705 + User=0.010000s Real=0.001721s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0524722 Summary of Run 22 : /run/geometryModified @@ -2127,8 +2127,8 @@ Run 23 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002474s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.069145 + User=0.000000s Real=0.002268s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.054863 Summary of Run 23 : /run/geometryModified @@ -2197,8 +2197,8 @@ Run 24 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002271s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0715255 + User=0.000000s Real=0.001782s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0567559 Summary of Run 24 : /run/geometryModified @@ -2267,8 +2267,8 @@ Run 25 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002065s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.073705 + User=0.000000s Real=0.002304s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0591638 Summary of Run 25 : /run/geometryModified @@ -2337,8 +2337,8 @@ Run 26 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002277s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0760973 + User=0.000000s Real=0.002317s Sys=0.010000s + User TOT = 0.05 Real TOT = 0.0615985 Summary of Run 26 : /run/geometryModified @@ -2407,8 +2407,8 @@ Run 27 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002776s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0789811 + User=0.000000s Real=0.002062s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0637669 Summary of Run 27 : /run/geometryModified @@ -2477,8 +2477,8 @@ Run 28 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002134s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0812177 + User=0.000000s Real=0.002017s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0659029 Summary of Run 28 : /run/geometryModified @@ -2547,8 +2547,8 @@ Run 29 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001967s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0832884 + User=0.000000s Real=0.002500s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0685147 Summary of Run 29 : /run/geometryModified @@ -2617,8 +2617,8 @@ Run 30 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001595s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0849865 + User=0.000000s Real=0.002330s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0709542 Summary of Run 30 : /run/geometryModified @@ -2687,8 +2687,8 @@ Run 31 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002365s Sys=0.000000s - User TOT = 0.04 Real TOT = 0.0874582 + User=0.000000s Real=0.001692s Sys=0.000000s + User TOT = 0.05 Real TOT = 0.0727688 Summary of Run 31 : /run/geometryModified @@ -2757,8 +2757,8 @@ Run 32 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002310s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0898718 + User=0.010000s Real=0.001777s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.0746551 Summary of Run 32 : /run/geometryModified @@ -2827,8 +2827,8 @@ Run 33 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002018s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0919943 + User=0.000000s Real=0.001803s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.0765628 Summary of Run 33 : /run/geometryModified @@ -2897,8 +2897,8 @@ Run 34 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002081s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0941784 + User=0.000000s Real=0.002162s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.0788223 Summary of Run 34 : /run/geometryModified @@ -2967,8 +2967,8 @@ Run 35 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002796s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.0970959 + User=0.000000s Real=0.002192s Sys=0.000000s + User TOT = 0.06 Real TOT = 0.0811343 Summary of Run 35 : /run/geometryModified @@ -3037,8 +3037,8 @@ Run 36 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002783s Sys=0.010000s - User TOT = 0.05 Real TOT = 0.100002 + User=0.010000s Real=0.002455s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.0836941 Summary of Run 36 : /run/geometryModified @@ -3107,8 +3107,8 @@ Run 37 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002421s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.102534 + User=0.000000s Real=0.001774s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.0855847 Summary of Run 37 : /run/geometryModified @@ -3177,8 +3177,8 @@ Run 38 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002747s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.10539 + User=0.000000s Real=0.001854s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.0875455 Summary of Run 38 : /run/geometryModified @@ -3247,8 +3247,8 @@ Run 39 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002129s Sys=0.000000s - User TOT = 0.05 Real TOT = 0.107626 + User=0.000000s Real=0.001787s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.0894336 Summary of Run 39 : /run/geometryModified @@ -3317,8 +3317,8 @@ Run 40 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002556s Sys=0.000000s - User TOT = 0.06 Real TOT = 0.110293 + User=0.000000s Real=0.001831s Sys=0.000000s + User TOT = 0.07 Real TOT = 0.0913812 Summary of Run 40 : /run/geometryModified @@ -3387,8 +3387,8 @@ Run 41 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.010693s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.121099 + User=0.010000s Real=0.002301s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.0937916 Summary of Run 41 : /run/geometryModified @@ -3457,8 +3457,8 @@ Run 42 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003960s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.125179 + User=0.000000s Real=0.001881s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.0957736 Summary of Run 42 : /run/geometryModified @@ -3527,8 +3527,8 @@ Run 43 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001834s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.127128 + User=0.000000s Real=0.002355s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.0982302 Summary of Run 43 : /run/geometryModified @@ -3597,8 +3597,8 @@ Run 44 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001945s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.129181 + User=0.000000s Real=0.001808s Sys=0.000000s + User TOT = 0.08 Real TOT = 0.100139 Summary of Run 44 : /run/geometryModified @@ -3667,8 +3667,8 @@ Run 45 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001998s Sys=0.000000s - User TOT = 0.07 Real TOT = 0.131291 + User=0.010000s Real=0.001641s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.101889 Summary of Run 45 : /run/geometryModified @@ -3737,8 +3737,8 @@ Run 46 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002029s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.133425 + User=0.000000s Real=0.001845s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.103836 Summary of Run 46 : /run/geometryModified @@ -3807,8 +3807,8 @@ Run 47 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002284s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.135816 + User=0.000000s Real=0.001967s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.105908 Summary of Run 47 : /run/geometryModified @@ -3877,8 +3877,8 @@ Run 48 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002183s Sys=0.010000s - User TOT = 0.08 Real TOT = 0.138101 + User=0.000000s Real=0.002257s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.108267 Summary of Run 48 : /run/geometryModified @@ -3947,8 +3947,8 @@ Run 49 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001663s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.139863 + User=0.000000s Real=0.001908s Sys=0.000000s + User TOT = 0.09 Real TOT = 0.110278 Summary of Run 49 : /run/geometryModified @@ -4017,8 +4017,8 @@ Run 50 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002454s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.142422 + User=0.000000s Real=0.002301s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.112682 Summary of Run 50 : /run/geometryModified @@ -4087,8 +4087,8 @@ Run 51 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002275s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.144818 + User=0.000000s Real=0.002129s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.114915 Summary of Run 51 : /run/geometryModified @@ -4157,8 +4157,8 @@ Run 52 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001804s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.146755 + User=0.000000s Real=0.001901s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.116924 Summary of Run 52 : /run/geometryModified @@ -4227,8 +4227,8 @@ Run 53 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002134s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.148992 + User=0.000000s Real=0.001999s Sys=0.000000s + User TOT = 0.1 Real TOT = 0.119029 Summary of Run 53 : /run/geometryModified @@ -4297,8 +4297,8 @@ Run 54 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002617s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.151727 + User=0.010000s Real=0.002194s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.121341 Summary of Run 54 : /run/geometryModified @@ -4367,8 +4367,8 @@ Run 55 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002238s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.154079 + User=0.000000s Real=0.002403s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.123849 Summary of Run 55 : /run/geometryModified @@ -4437,8 +4437,8 @@ Run 56 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002618s Sys=0.010000s - User TOT = 0.08 Real TOT = 0.156809 + User=0.000000s Real=0.002339s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.126292 Summary of Run 56 : /run/geometryModified @@ -4507,8 +4507,8 @@ Run 57 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002410s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.159334 + User=0.000000s Real=0.002190s Sys=0.010000s + User TOT = 0.11 Real TOT = 0.128588 Summary of Run 57 : /run/geometryModified @@ -4577,8 +4577,8 @@ Run 58 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002608s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.162063 + User=0.000000s Real=0.002008s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.130701 Summary of Run 58 : /run/geometryModified @@ -4647,8 +4647,8 @@ Run 59 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002576s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.164774 + User=0.000000s Real=0.002207s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.13303 Summary of Run 59 : /run/geometryModified @@ -4717,8 +4717,8 @@ Run 60 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002171s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.167055 + User=0.000000s Real=0.001624s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.134771 Summary of Run 60 : /run/geometryModified @@ -4787,8 +4787,8 @@ Run 61 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.021391s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.188582 + User=0.000000s Real=0.002219s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.13711 Summary of Run 61 : /run/geometryModified @@ -4857,8 +4857,8 @@ Run 62 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002277s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.19097 + User=0.000000s Real=0.001943s Sys=0.000000s + User TOT = 0.11 Real TOT = 0.139179 Summary of Run 62 : /run/geometryModified @@ -4927,8 +4927,8 @@ Run 63 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002046s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.193124 + User=0.010000s Real=0.002113s Sys=0.000000s + User TOT = 0.12 Real TOT = 0.141395 Summary of Run 63 : /run/geometryModified @@ -4997,8 +4997,8 @@ Run 64 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001807s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.195034 + User=0.000000s Real=0.003027s Sys=0.000000s + User TOT = 0.12 Real TOT = 0.144556 Summary of Run 64 : /run/geometryModified @@ -5067,8 +5067,8 @@ Run 65 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001854s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.196992 + User=0.000000s Real=0.002295s Sys=0.000000s + User TOT = 0.12 Real TOT = 0.146961 Summary of Run 65 : /run/geometryModified @@ -5137,8 +5137,8 @@ Run 66 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002327s Sys=0.000000s - User TOT = 0.08 Real TOT = 0.19943 + User=0.000000s Real=0.002179s Sys=0.000000s + User TOT = 0.12 Real TOT = 0.14925 Summary of Run 66 : /run/geometryModified @@ -5207,8 +5207,8 @@ Run 67 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.002103s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.201651 + User=0.000000s Real=0.002100s Sys=0.000000s + User TOT = 0.12 Real TOT = 0.151451 Summary of Run 67 : /run/geometryModified @@ -5277,8 +5277,8 @@ Run 68 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001898s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.203648 + User=0.010000s Real=0.007887s Sys=0.000000s + User TOT = 0.13 Real TOT = 0.159443 Summary of Run 68 : /run/geometryModified @@ -5347,8 +5347,8 @@ Run 69 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002259s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.206005 + User=0.000000s Real=0.002407s Sys=0.000000s + User TOT = 0.13 Real TOT = 0.161965 Summary of Run 69 : /run/geometryModified @@ -5417,8 +5417,8 @@ Run 70 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002475s Sys=0.000000s - User TOT = 0.09 Real TOT = 0.20858 + User=0.000000s Real=0.001978s Sys=0.000000s + User TOT = 0.13 Real TOT = 0.164063 Summary of Run 70 : /run/geometryModified @@ -5487,8 +5487,8 @@ Run 71 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.001770s Sys=0.010000s - User TOT = 0.1 Real TOT = 0.210451 + User=0.000000s Real=0.001917s Sys=0.000000s + User TOT = 0.13 Real TOT = 0.166101 Summary of Run 71 : /run/geometryModified @@ -5557,8 +5557,8 @@ Run 72 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003008s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.213564 + User=0.010000s Real=0.003787s Sys=0.000000s + User TOT = 0.14 Real TOT = 0.169999 Summary of Run 72 : /run/geometryModified @@ -5627,8 +5627,8 @@ Run 73 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.017312s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.231011 + User=0.000000s Real=0.005282s Sys=0.010000s + User TOT = 0.14 Real TOT = 0.17539 Summary of Run 73 : /run/geometryModified @@ -5697,8 +5697,8 @@ Run 74 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002192s Sys=0.000000s - User TOT = 0.1 Real TOT = 0.233311 + User=0.000000s Real=0.006613s Sys=0.000000s + User TOT = 0.14 Real TOT = 0.182124 Summary of Run 74 : /run/geometryModified @@ -5767,8 +5767,8 @@ Run 75 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.009174s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.242642 + User=0.000000s Real=0.002648s Sys=0.000000s + User TOT = 0.14 Real TOT = 0.185027 Summary of Run 75 : /run/geometryModified @@ -5837,8 +5837,8 @@ Run 76 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003317s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.246101 + User=0.010000s Real=0.003047s Sys=0.000000s + User TOT = 0.15 Real TOT = 0.188195 Summary of Run 76 : /run/geometryModified @@ -5907,8 +5907,8 @@ Run 77 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002805s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.249026 + User=0.000000s Real=0.008555s Sys=0.000000s + User TOT = 0.15 Real TOT = 0.196867 Summary of Run 77 : /run/geometryModified @@ -5977,8 +5977,8 @@ Run 78 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002764s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.251915 + User=0.000000s Real=0.002271s Sys=0.000000s + User TOT = 0.15 Real TOT = 0.199247 Summary of Run 78 : /run/geometryModified @@ -6047,8 +6047,8 @@ Run 79 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002217s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.254245 + User=0.000000s Real=0.002171s Sys=0.000000s + User TOT = 0.15 Real TOT = 0.201538 Summary of Run 79 : /run/geometryModified @@ -6117,8 +6117,8 @@ Run 80 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002581s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.256939 + User=0.000000s Real=0.001869s Sys=0.000000s + User TOT = 0.15 Real TOT = 0.20352 Summary of Run 80 : /run/geometryModified @@ -6187,8 +6187,8 @@ Run 81 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002358s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.259413 + User=0.010000s Real=0.002245s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.205875 Summary of Run 81 : /run/geometryModified @@ -6257,8 +6257,8 @@ Run 82 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002438s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.261962 + User=0.000000s Real=0.002187s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.208181 Summary of Run 82 : /run/geometryModified @@ -6327,8 +6327,8 @@ Run 83 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002108s Sys=0.000000s - User TOT = 0.11 Real TOT = 0.264178 + User=0.000000s Real=0.002471s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.210771 Summary of Run 83 : /run/geometryModified @@ -6397,8 +6397,8 @@ Run 84 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.012583s Sys=0.010000s - User TOT = 0.12 Real TOT = 0.276887 + User=0.000000s Real=0.002132s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.213014 Summary of Run 84 : /run/geometryModified @@ -6467,8 +6467,8 @@ Run 85 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002252s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.279282 + User=0.000000s Real=0.002894s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.216019 Summary of Run 85 : /run/geometryModified @@ -6537,8 +6537,8 @@ Run 86 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002532s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.281937 + User=0.000000s Real=0.009659s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.225794 Summary of Run 86 : /run/geometryModified @@ -6607,8 +6607,8 @@ Run 87 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002420s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.285312 + User=0.000000s Real=0.004687s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.230601 Summary of Run 87 : /run/geometryModified @@ -6677,8 +6677,8 @@ Run 88 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.004012s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.289458 + User=0.000000s Real=0.003500s Sys=0.000000s + User TOT = 0.16 Real TOT = 0.234201 Summary of Run 88 : /run/geometryModified @@ -6747,8 +6747,8 @@ Run 89 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003558s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.293143 + User=0.010000s Real=0.011241s Sys=0.000000s + User TOT = 0.17 Real TOT = 0.245555 Summary of Run 89 : /run/geometryModified @@ -6817,8 +6817,8 @@ Run 90 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.010203s Sys=0.000000s - User TOT = 0.12 Real TOT = 0.303486 + User=0.000000s Real=0.002473s Sys=0.000000s + User TOT = 0.17 Real TOT = 0.248133 Summary of Run 90 : /run/geometryModified @@ -6887,8 +6887,8 @@ Run 91 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.010274s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.31389 + User=0.000000s Real=0.008882s Sys=0.000000s + User TOT = 0.17 Real TOT = 0.257146 Summary of Run 91 : /run/geometryModified @@ -6957,8 +6957,8 @@ Run 92 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.003668s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.317679 + User=0.010000s Real=0.002049s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.259307 Summary of Run 92 : /run/geometryModified @@ -7027,8 +7027,8 @@ Run 93 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002886s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.320666 + User=0.000000s Real=0.002034s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.261447 Summary of Run 93 : /run/geometryModified @@ -7097,8 +7097,8 @@ Run 94 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002106s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.322877 + User=0.000000s Real=0.076727s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.338324 Summary of Run 94 : /run/geometryModified @@ -7167,8 +7167,8 @@ Run 95 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.074447s Sys=0.010000s - User TOT = 0.13 Real TOT = 0.397469 + User=0.000000s Real=0.112933s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.451579 Summary of Run 95 : /run/geometryModified @@ -7237,8 +7237,8 @@ Run 96 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.114750s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.512368 + User=0.000000s Real=0.108012s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.559735 Summary of Run 96 : /run/geometryModified @@ -7307,8 +7307,8 @@ Run 97 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.103449s Sys=0.000000s - User TOT = 0.13 Real TOT = 0.615984 + User=0.000000s Real=0.117416s Sys=0.000000s + User TOT = 0.18 Real TOT = 0.677297 Summary of Run 97 : /run/geometryModified @@ -7377,8 +7377,8 @@ Run 98 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109102s Sys=0.000000s - User TOT = 0.14 Real TOT = 0.725236 + User=0.010000s Real=0.113523s Sys=0.000000s + User TOT = 0.19 Real TOT = 0.790989 Summary of Run 98 : /run/geometryModified @@ -7447,8 +7447,8 @@ Run 99 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108639s Sys=0.000000s - User TOT = 0.14 Real TOT = 0.834021 + User=0.000000s Real=0.130472s Sys=0.000000s + User TOT = 0.19 Real TOT = 0.921602 Summary of Run 99 : /run/geometryModified @@ -7517,8 +7517,8 @@ Run 100 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108856s Sys=0.000000s - User TOT = 0.14 Real TOT = 0.943021 + User=0.000000s Real=0.102804s Sys=0.000000s + User TOT = 0.19 Real TOT = 1.02474 Summary of Run 100 : /run/geometryModified @@ -7587,8 +7587,8 @@ Run 101 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.112433s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.05602 + User=0.010000s Real=0.109007s Sys=0.000000s + User TOT = 0.2 Real TOT = 1.1339 Summary of Run 101 : /run/geometryModified @@ -7657,8 +7657,8 @@ Run 102 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110278s Sys=0.000000s - User TOT = 0.15 Real TOT = 1.16646 + User=0.000000s Real=0.129579s Sys=0.000000s + User TOT = 0.2 Real TOT = 1.26364 Summary of Run 102 : /run/geometryModified @@ -7727,8 +7727,8 @@ Run 103 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.104375s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.27099 + User=0.010000s Real=0.106730s Sys=0.010000s + User TOT = 0.21 Real TOT = 1.37052 Summary of Run 103 : /run/geometryModified @@ -7797,8 +7797,8 @@ Run 104 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108506s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.37966 + User=0.000000s Real=0.120847s Sys=0.000000s + User TOT = 0.21 Real TOT = 1.49153 Summary of Run 104 : /run/geometryModified @@ -7867,8 +7867,8 @@ Run 105 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.121078s Sys=0.010000s - User TOT = 0.16 Real TOT = 1.50089 + User=0.000000s Real=0.107795s Sys=0.000000s + User TOT = 0.21 Real TOT = 1.60034 Summary of Run 105 : /run/geometryModified @@ -7937,8 +7937,8 @@ Run 106 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.117293s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.61835 + User=0.010000s Real=0.117719s Sys=0.000000s + User TOT = 0.22 Real TOT = 1.71824 Summary of Run 106 : /run/geometryModified @@ -8007,8 +8007,8 @@ Run 107 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108812s Sys=0.000000s - User TOT = 0.16 Real TOT = 1.7273 + User=0.000000s Real=0.109364s Sys=0.000000s + User TOT = 0.22 Real TOT = 1.82775 Summary of Run 107 : /run/geometryModified @@ -8077,8 +8077,8 @@ Run 108 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108736s Sys=0.000000s - User TOT = 0.17 Real TOT = 1.83618 + User=0.000000s Real=0.108938s Sys=0.000000s + User TOT = 0.22 Real TOT = 1.93683 Summary of Run 108 : /run/geometryModified @@ -8147,8 +8147,8 @@ Run 109 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109040s Sys=0.000000s - User TOT = 0.17 Real TOT = 1.94536 + User=0.010000s Real=0.118687s Sys=0.000000s + User TOT = 0.23 Real TOT = 2.05566 Summary of Run 109 : /run/geometryModified @@ -8217,8 +8217,8 @@ Run 110 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109073s Sys=0.000000s - User TOT = 0.17 Real TOT = 2.05457 + User=0.000000s Real=0.108619s Sys=0.000000s + User TOT = 0.23 Real TOT = 2.16443 Summary of Run 110 : /run/geometryModified @@ -8287,8 +8287,8 @@ Run 111 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.110047s Sys=0.000000s - User TOT = 0.18 Real TOT = 2.16476 + User=0.010000s Real=0.119317s Sys=0.010000s + User TOT = 0.24 Real TOT = 2.2839 Summary of Run 111 : /run/geometryModified @@ -8357,8 +8357,8 @@ Run 112 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110166s Sys=0.000000s - User TOT = 0.18 Real TOT = 2.27507 + User=0.000000s Real=0.229399s Sys=0.000000s + User TOT = 0.24 Real TOT = 2.51346 Summary of Run 112 : /run/geometryModified @@ -8427,8 +8427,8 @@ Run 113 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.106388s Sys=0.000000s - User TOT = 0.19 Real TOT = 2.3816 + User=0.000000s Real=0.118631s Sys=0.000000s + User TOT = 0.24 Real TOT = 2.63222 Summary of Run 113 : /run/geometryModified @@ -8497,8 +8497,8 @@ Run 114 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109489s Sys=0.010000s - User TOT = 0.19 Real TOT = 2.49123 + User=0.010000s Real=0.118766s Sys=0.000000s + User TOT = 0.25 Real TOT = 2.75115 Summary of Run 114 : /run/geometryModified @@ -8567,8 +8567,8 @@ Run 115 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109327s Sys=0.000000s - User TOT = 0.19 Real TOT = 2.6007 + User=0.000000s Real=0.110936s Sys=0.000000s + User TOT = 0.25 Real TOT = 2.86224 Summary of Run 115 : /run/geometryModified @@ -8637,8 +8637,8 @@ Run 116 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109387s Sys=0.000000s - User TOT = 0.19 Real TOT = 2.71022 + User=0.000000s Real=0.117211s Sys=0.000000s + User TOT = 0.25 Real TOT = 2.97958 Summary of Run 116 : /run/geometryModified @@ -8707,8 +8707,8 @@ Run 117 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108287s Sys=0.000000s - User TOT = 0.19 Real TOT = 2.81866 + User=0.000000s Real=0.120917s Sys=0.000000s + User TOT = 0.25 Real TOT = 3.10064 Summary of Run 117 : /run/geometryModified @@ -8777,8 +8777,8 @@ Run 118 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109170s Sys=0.000000s - User TOT = 0.19 Real TOT = 2.92797 + User=0.000000s Real=0.109175s Sys=0.010000s + User TOT = 0.25 Real TOT = 3.20997 Summary of Run 118 : /run/geometryModified @@ -8847,8 +8847,8 @@ Run 119 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109603s Sys=0.000000s - User TOT = 0.2 Real TOT = 3.03773 + User=0.000000s Real=0.107041s Sys=0.000000s + User TOT = 0.25 Real TOT = 3.31716 Summary of Run 119 : /run/geometryModified @@ -8917,8 +8917,8 @@ Run 120 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108921s Sys=0.000000s - User TOT = 0.2 Real TOT = 3.14679 + User=0.000000s Real=0.108820s Sys=0.000000s + User TOT = 0.25 Real TOT = 3.42615 Summary of Run 120 : /run/geometryModified @@ -8987,8 +8987,8 @@ Run 121 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110455s Sys=0.010000s - User TOT = 0.2 Real TOT = 3.25739 + User=0.000000s Real=0.118990s Sys=0.000000s + User TOT = 0.25 Real TOT = 3.5453 Summary of Run 121 : /run/geometryModified @@ -9057,8 +9057,8 @@ Run 122 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.107409s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.36494 + User=0.000000s Real=0.111612s Sys=0.000000s + User TOT = 0.25 Real TOT = 3.65735 Summary of Run 122 : /run/geometryModified @@ -9127,8 +9127,8 @@ Run 123 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108233s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.47332 + User=0.010000s Real=0.138508s Sys=0.010000s + User TOT = 0.26 Real TOT = 3.796 Summary of Run 123 : /run/geometryModified @@ -9197,8 +9197,8 @@ Run 124 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109420s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.58288 + User=0.000000s Real=0.116958s Sys=0.000000s + User TOT = 0.26 Real TOT = 3.91309 Summary of Run 124 : /run/geometryModified @@ -9267,8 +9267,8 @@ Run 125 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108491s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.69151 + User=0.010000s Real=0.118794s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.03203 Summary of Run 125 : /run/geometryModified @@ -9337,8 +9337,8 @@ Run 126 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109682s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.80133 + User=0.000000s Real=0.119814s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.15197 Summary of Run 126 : /run/geometryModified @@ -9407,8 +9407,8 @@ Run 127 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110795s Sys=0.000000s - User TOT = 0.21 Real TOT = 3.91227 + User=0.000000s Real=0.110517s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.26283 Summary of Run 127 : /run/geometryModified @@ -9477,8 +9477,8 @@ Run 128 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108084s Sys=0.000000s - User TOT = 0.22 Real TOT = 4.0205 + User=0.000000s Real=0.107140s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.37012 Summary of Run 128 : /run/geometryModified @@ -9547,8 +9547,8 @@ Run 129 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.107755s Sys=0.010000s - User TOT = 0.22 Real TOT = 4.12841 + User=0.000000s Real=0.118761s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.48903 Summary of Run 129 : /run/geometryModified @@ -9617,8 +9617,8 @@ Run 130 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108799s Sys=0.000000s - User TOT = 0.23 Real TOT = 4.23738 + User=0.000000s Real=0.109477s Sys=0.000000s + User TOT = 0.27 Real TOT = 4.59866 Summary of Run 130 : /run/geometryModified @@ -9687,8 +9687,8 @@ Run 131 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108716s Sys=0.000000s - User TOT = 0.23 Real TOT = 4.34624 + User=0.010000s Real=0.118558s Sys=0.000000s + User TOT = 0.28 Real TOT = 4.71736 Summary of Run 131 : /run/geometryModified @@ -9757,8 +9757,8 @@ Run 132 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109225s Sys=0.000000s - User TOT = 0.24 Real TOT = 4.45562 + User=0.000000s Real=0.109999s Sys=0.010000s + User TOT = 0.28 Real TOT = 4.82751 Summary of Run 132 : /run/geometryModified @@ -9827,8 +9827,8 @@ Run 133 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.112309s Sys=0.000000s - User TOT = 0.24 Real TOT = 4.5681 + User=0.000000s Real=0.119126s Sys=0.000000s + User TOT = 0.28 Real TOT = 4.94679 Summary of Run 133 : /run/geometryModified @@ -9897,8 +9897,8 @@ Run 134 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.105693s Sys=0.000000s - User TOT = 0.24 Real TOT = 4.67394 + User=0.010000s Real=0.107453s Sys=0.000000s + User TOT = 0.29 Real TOT = 5.05439 Summary of Run 134 : /run/geometryModified @@ -9967,8 +9967,8 @@ Run 135 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.329080s Sys=0.000000s - User TOT = 0.24 Real TOT = 5.00319 + User=0.000000s Real=0.109868s Sys=0.000000s + User TOT = 0.29 Real TOT = 5.16441 Summary of Run 135 : /run/geometryModified @@ -10037,8 +10037,8 @@ Run 136 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109012s Sys=0.000000s - User TOT = 0.24 Real TOT = 5.11234 + User=0.000000s Real=0.108760s Sys=0.000000s + User TOT = 0.29 Real TOT = 5.27331 Summary of Run 136 : /run/geometryModified @@ -10107,8 +10107,8 @@ Run 137 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108813s Sys=0.010000s - User TOT = 0.25 Real TOT = 5.22131 + User=0.000000s Real=0.109454s Sys=0.000000s + User TOT = 0.29 Real TOT = 5.38289 Summary of Run 137 : /run/geometryModified @@ -10177,8 +10177,8 @@ Run 138 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109118s Sys=0.000000s - User TOT = 0.25 Real TOT = 5.33056 + User=0.000000s Real=0.118696s Sys=0.000000s + User TOT = 0.29 Real TOT = 5.50174 Summary of Run 138 : /run/geometryModified @@ -10247,8 +10247,8 @@ Run 139 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109075s Sys=0.000000s - User TOT = 0.25 Real TOT = 5.43979 + User=0.010000s Real=0.108753s Sys=0.010000s + User TOT = 0.3 Real TOT = 5.61065 Summary of Run 139 : /run/geometryModified @@ -10317,8 +10317,8 @@ Run 140 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109575s Sys=0.000000s - User TOT = 0.26 Real TOT = 5.54953 + User=0.000000s Real=0.109310s Sys=0.000000s + User TOT = 0.3 Real TOT = 5.7201 Summary of Run 140 : /run/geometryModified @@ -10387,8 +10387,8 @@ Run 141 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109118s Sys=0.000000s - User TOT = 0.26 Real TOT = 5.65879 + User=0.000000s Real=0.098930s Sys=0.000000s + User TOT = 0.3 Real TOT = 5.81918 Summary of Run 141 : /run/geometryModified @@ -10457,8 +10457,8 @@ Run 142 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108715s Sys=0.000000s - User TOT = 0.26 Real TOT = 5.76765 + User=0.000000s Real=0.109973s Sys=0.000000s + User TOT = 0.3 Real TOT = 5.9293 Summary of Run 142 : /run/geometryModified @@ -10527,8 +10527,8 @@ Run 143 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.110137s Sys=0.000000s - User TOT = 0.27 Real TOT = 5.87795 + User=0.010000s Real=0.108503s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.03796 Summary of Run 143 : /run/geometryModified @@ -10597,8 +10597,8 @@ Run 144 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.107219s Sys=0.000000s - User TOT = 0.27 Real TOT = 5.98531 + User=0.000000s Real=0.108398s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.1465 Summary of Run 144 : /run/geometryModified @@ -10667,8 +10667,8 @@ Run 145 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109861s Sys=0.010000s - User TOT = 0.27 Real TOT = 6.0953 + User=0.000000s Real=0.108530s Sys=0.010000s + User TOT = 0.31 Real TOT = 6.25521 Summary of Run 145 : /run/geometryModified @@ -10737,8 +10737,8 @@ Run 146 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108770s Sys=0.000000s - User TOT = 0.28 Real TOT = 6.20422 + User=0.000000s Real=0.109554s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.36492 Summary of Run 146 : /run/geometryModified @@ -10807,8 +10807,8 @@ Run 147 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110107s Sys=0.000000s - User TOT = 0.28 Real TOT = 6.31447 + User=0.000000s Real=0.108236s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.4733 Summary of Run 147 : /run/geometryModified @@ -10877,8 +10877,8 @@ Run 148 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.111043s Sys=0.000000s - User TOT = 0.29 Real TOT = 6.42567 + User=0.000000s Real=0.109992s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.58343 Summary of Run 148 : /run/geometryModified @@ -10947,8 +10947,8 @@ Run 149 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.115772s Sys=0.000000s - User TOT = 0.29 Real TOT = 6.5416 + User=0.000000s Real=0.109998s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.69357 Summary of Run 149 : /run/geometryModified @@ -11017,8 +11017,8 @@ Run 150 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110000s Sys=0.000000s - User TOT = 0.29 Real TOT = 6.65174 + User=0.000000s Real=0.107433s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.80114 Summary of Run 150 : /run/geometryModified @@ -11087,8 +11087,8 @@ Run 151 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.102056s Sys=0.010000s - User TOT = 0.29 Real TOT = 6.75393 + User=0.000000s Real=0.108569s Sys=0.000000s + User TOT = 0.31 Real TOT = 6.90985 Summary of Run 151 : /run/geometryModified @@ -11157,8 +11157,8 @@ Run 152 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.105276s Sys=0.000000s - User TOT = 0.29 Real TOT = 6.85936 + User=0.000000s Real=0.109648s Sys=0.000000s + User TOT = 0.31 Real TOT = 7.01963 Summary of Run 152 : /run/geometryModified @@ -11227,8 +11227,8 @@ Run 153 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109153s Sys=0.000000s - User TOT = 0.29 Real TOT = 6.96868 + User=0.000000s Real=0.109195s Sys=0.000000s + User TOT = 0.31 Real TOT = 7.12896 Summary of Run 153 : /run/geometryModified @@ -11297,8 +11297,8 @@ Run 154 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.118327s Sys=0.000000s - User TOT = 0.3 Real TOT = 7.08717 + User=0.000000s Real=0.109114s Sys=0.000000s + User TOT = 0.31 Real TOT = 7.23823 Summary of Run 154 : /run/geometryModified @@ -11367,8 +11367,8 @@ Run 155 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108660s Sys=0.000000s - User TOT = 0.3 Real TOT = 7.19599 + User=0.000000s Real=0.219214s Sys=0.010000s + User TOT = 0.31 Real TOT = 7.45759 Summary of Run 155 : /run/geometryModified @@ -11437,8 +11437,8 @@ Run 156 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109501s Sys=0.000000s - User TOT = 0.3 Real TOT = 7.30564 + User=0.000000s Real=0.108968s Sys=0.000000s + User TOT = 0.31 Real TOT = 7.56671 Summary of Run 156 : /run/geometryModified @@ -11507,8 +11507,8 @@ Run 157 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108525s Sys=0.000000s - User TOT = 0.3 Real TOT = 7.41431 + User=0.000000s Real=0.108537s Sys=0.000000s + User TOT = 0.31 Real TOT = 7.67537 Summary of Run 157 : /run/geometryModified @@ -11577,8 +11577,8 @@ Run 158 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109298s Sys=0.000000s - User TOT = 0.3 Real TOT = 7.52377 + User=0.000000s Real=0.120220s Sys=0.000000s + User TOT = 0.32 Real TOT = 7.79661 Summary of Run 158 : /run/geometryModified @@ -11647,8 +11647,8 @@ Run 159 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.112980s Sys=0.000000s - User TOT = 0.31 Real TOT = 7.6369 + User=0.000000s Real=0.106821s Sys=0.000000s + User TOT = 0.32 Real TOT = 7.9036 Summary of Run 159 : /run/geometryModified @@ -11717,8 +11717,8 @@ Run 160 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.105147s Sys=0.010000s - User TOT = 0.31 Real TOT = 7.74219 + User=0.000000s Real=0.109098s Sys=0.010000s + User TOT = 0.32 Real TOT = 8.01284 Summary of Run 160 : /run/geometryModified @@ -11787,8 +11787,8 @@ Run 161 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109328s Sys=0.000000s - User TOT = 0.31 Real TOT = 7.85166 + User=0.000000s Real=0.109411s Sys=0.000000s + User TOT = 0.32 Real TOT = 8.12244 Summary of Run 161 : /run/geometryModified @@ -11857,8 +11857,8 @@ Run 162 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109647s Sys=0.000000s - User TOT = 0.32 Real TOT = 7.96195 + User=0.000000s Real=0.109265s Sys=0.000000s + User TOT = 0.32 Real TOT = 8.23186 Summary of Run 162 : /run/geometryModified @@ -11927,8 +11927,8 @@ Run 163 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.107690s Sys=0.000000s - User TOT = 0.32 Real TOT = 8.0698 + User=0.010000s Real=0.108495s Sys=0.000000s + User TOT = 0.33 Real TOT = 8.34051 Summary of Run 163 : /run/geometryModified @@ -11997,8 +11997,8 @@ Run 164 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108857s Sys=0.000000s - User TOT = 0.32 Real TOT = 8.17879 + User=0.000000s Real=0.108460s Sys=0.000000s + User TOT = 0.33 Real TOT = 8.44912 Summary of Run 164 : /run/geometryModified @@ -12067,8 +12067,8 @@ Run 165 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109298s Sys=0.000000s - User TOT = 0.32 Real TOT = 8.28822 + User=0.000000s Real=0.109484s Sys=0.000000s + User TOT = 0.33 Real TOT = 8.55876 Summary of Run 165 : /run/geometryModified @@ -12137,8 +12137,8 @@ Run 166 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108627s Sys=0.000000s - User TOT = 0.32 Real TOT = 8.39699 + User=0.010000s Real=0.118724s Sys=0.000000s + User TOT = 0.34 Real TOT = 8.67762 Summary of Run 166 : /run/geometryModified @@ -12207,8 +12207,8 @@ Run 167 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109252s Sys=0.000000s - User TOT = 0.33 Real TOT = 8.50638 + User=0.000000s Real=0.108815s Sys=0.010000s + User TOT = 0.34 Real TOT = 8.7866 Summary of Run 167 : /run/geometryModified @@ -12277,8 +12277,8 @@ Run 168 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.115202s Sys=0.000000s - User TOT = 0.33 Real TOT = 8.62173 + User=0.000000s Real=0.108962s Sys=0.000000s + User TOT = 0.34 Real TOT = 8.8957 Summary of Run 168 : /run/geometryModified @@ -12347,8 +12347,8 @@ Run 169 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.102547s Sys=0.010000s - User TOT = 0.34 Real TOT = 8.72443 + User=0.000000s Real=0.119544s Sys=0.000000s + User TOT = 0.34 Real TOT = 9.01537 Summary of Run 169 : /run/geometryModified @@ -12417,8 +12417,8 @@ Run 170 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109264s Sys=0.000000s - User TOT = 0.34 Real TOT = 8.83384 + User=0.000000s Real=0.098851s Sys=0.000000s + User TOT = 0.34 Real TOT = 9.11437 Summary of Run 170 : /run/geometryModified @@ -12487,8 +12487,8 @@ Run 171 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108721s Sys=0.000000s - User TOT = 0.34 Real TOT = 8.94271 + User=0.000000s Real=0.109231s Sys=0.000000s + User TOT = 0.34 Real TOT = 9.22373 Summary of Run 171 : /run/geometryModified @@ -12557,8 +12557,8 @@ Run 172 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109195s Sys=0.000000s - User TOT = 0.35 Real TOT = 9.05205 + User=0.000000s Real=0.108417s Sys=0.010000s + User TOT = 0.34 Real TOT = 9.33228 Summary of Run 172 : /run/geometryModified @@ -12627,8 +12627,8 @@ Run 173 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.111815s Sys=0.000000s - User TOT = 0.35 Real TOT = 9.164 + User=0.010000s Real=0.109296s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.44171 Summary of Run 173 : /run/geometryModified @@ -12697,8 +12697,8 @@ Run 174 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.105663s Sys=0.000000s - User TOT = 0.35 Real TOT = 9.2698 + User=0.000000s Real=0.109112s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.55096 Summary of Run 174 : /run/geometryModified @@ -12767,8 +12767,8 @@ Run 175 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109735s Sys=0.000000s - User TOT = 0.36 Real TOT = 9.37968 + User=0.000000s Real=0.108559s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.65966 Summary of Run 175 : /run/geometryModified @@ -12837,8 +12837,8 @@ Run 176 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108411s Sys=0.000000s - User TOT = 0.36 Real TOT = 9.48824 + User=0.000000s Real=0.111573s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.7714 Summary of Run 176 : /run/geometryModified @@ -12907,8 +12907,8 @@ Run 177 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.109648s Sys=0.000000s - User TOT = 0.37 Real TOT = 9.59804 + User=0.000000s Real=0.106760s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.8783 Summary of Run 177 : /run/geometryModified @@ -12977,8 +12977,8 @@ Run 178 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108962s Sys=0.000000s - User TOT = 0.37 Real TOT = 9.70713 + User=0.000000s Real=0.109122s Sys=0.000000s + User TOT = 0.35 Real TOT = 9.98756 Summary of Run 178 : /run/geometryModified @@ -13047,8 +13047,8 @@ Run 179 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.878327s Sys=0.000000s - User TOT = 0.38 Real TOT = 10.5856 + User=0.010000s Real=0.109793s Sys=0.000000s + User TOT = 0.36 Real TOT = 10.0975 Summary of Run 179 : /run/geometryModified @@ -13117,8 +13117,8 @@ Run 180 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109909s Sys=0.000000s - User TOT = 0.38 Real TOT = 10.6956 + User=0.000000s Real=0.107847s Sys=0.000000s + User TOT = 0.36 Real TOT = 10.2055 Summary of Run 180 : /run/geometryModified @@ -13187,8 +13187,8 @@ Run 181 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.112783s Sys=0.000000s - User TOT = 0.38 Real TOT = 10.8086 + User=0.000000s Real=0.109157s Sys=0.000000s + User TOT = 0.36 Real TOT = 10.3148 Summary of Run 181 : /run/geometryModified @@ -13257,8 +13257,8 @@ Run 182 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.104586s Sys=0.000000s - User TOT = 0.39 Real TOT = 10.9133 + User=0.010000s Real=0.121127s Sys=0.000000s + User TOT = 0.37 Real TOT = 10.4361 Summary of Run 182 : /run/geometryModified @@ -13327,8 +13327,8 @@ Run 183 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110221s Sys=0.010000s - User TOT = 0.39 Real TOT = 11.0237 + User=0.000000s Real=0.097690s Sys=0.010000s + User TOT = 0.37 Real TOT = 10.5339 Summary of Run 183 : /run/geometryModified @@ -13397,8 +13397,8 @@ Run 184 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.108224s Sys=0.000000s - User TOT = 0.4 Real TOT = 11.132 + User=0.010000s Real=0.108499s Sys=0.000000s + User TOT = 0.38 Real TOT = 10.6426 Summary of Run 184 : /run/geometryModified @@ -13467,8 +13467,8 @@ Run 185 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.099491s Sys=0.000000s - User TOT = 0.4 Real TOT = 11.2317 + User=0.000000s Real=0.113014s Sys=0.000000s + User TOT = 0.38 Real TOT = 10.7557 Summary of Run 185 : /run/geometryModified @@ -13537,8 +13537,8 @@ Run 186 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.110390s Sys=0.000000s - User TOT = 0.4 Real TOT = 11.3422 + User=0.000000s Real=0.105490s Sys=0.000000s + User TOT = 0.38 Real TOT = 10.8614 Summary of Run 186 : /run/geometryModified @@ -13607,8 +13607,8 @@ Run 187 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.116656s Sys=0.000000s - User TOT = 0.4 Real TOT = 11.459 + User=0.000000s Real=0.108517s Sys=0.000000s + User TOT = 0.38 Real TOT = 10.97 Summary of Run 187 : /run/geometryModified @@ -13677,8 +13677,8 @@ Run 188 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109548s Sys=0.000000s - User TOT = 0.4 Real TOT = 11.5687 + User=0.010000s Real=0.109516s Sys=0.000000s + User TOT = 0.39 Real TOT = 11.0797 Summary of Run 188 : /run/geometryModified @@ -13747,8 +13747,8 @@ Run 189 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108594s Sys=0.010000s - User TOT = 0.4 Real TOT = 11.6775 + User=0.000000s Real=0.108068s Sys=0.000000s + User TOT = 0.39 Real TOT = 11.1879 Summary of Run 189 : /run/geometryModified @@ -13817,8 +13817,8 @@ Run 190 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.198672s Sys=0.000000s - User TOT = 0.41 Real TOT = 11.8763 + User=0.000000s Real=0.109743s Sys=0.000000s + User TOT = 0.39 Real TOT = 11.2978 Summary of Run 190 : /run/geometryModified @@ -13887,8 +13887,8 @@ Run 191 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.209607s Sys=0.000000s - User TOT = 0.41 Real TOT = 12.0861 + User=0.010000s Real=0.112822s Sys=0.000000s + User TOT = 0.4 Real TOT = 11.4108 Summary of Run 191 : /run/geometryModified @@ -13957,8 +13957,8 @@ Run 192 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108284s Sys=0.000000s - User TOT = 0.41 Real TOT = 12.1945 + User=0.000000s Real=0.105175s Sys=0.000000s + User TOT = 0.4 Real TOT = 11.5161 Summary of Run 192 : /run/geometryModified @@ -14027,8 +14027,8 @@ Run 193 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.111402s Sys=0.000000s - User TOT = 0.42 Real TOT = 12.306 + User=0.000000s Real=0.138396s Sys=0.000000s + User TOT = 0.4 Real TOT = 11.6547 Summary of Run 193 : /run/geometryModified @@ -14097,8 +14097,8 @@ Run 194 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.118405s Sys=0.000000s - User TOT = 0.42 Real TOT = 12.4246 + User=0.010000s Real=0.163771s Sys=0.010000s + User TOT = 0.41 Real TOT = 11.8186 Summary of Run 194 : /run/geometryModified @@ -14167,8 +14167,8 @@ Run 195 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.097132s Sys=0.000000s - User TOT = 0.43 Real TOT = 12.5219 + User=0.000000s Real=0.154974s Sys=0.000000s + User TOT = 0.41 Real TOT = 11.9737 Summary of Run 195 : /run/geometryModified @@ -14237,8 +14237,8 @@ Run 196 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108720s Sys=0.010000s - User TOT = 0.43 Real TOT = 12.6308 + User=0.010000s Real=0.138139s Sys=0.000000s + User TOT = 0.42 Real TOT = 12.112 Summary of Run 196 : /run/geometryModified @@ -14307,8 +14307,8 @@ Run 197 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109279s Sys=0.000000s - User TOT = 0.43 Real TOT = 12.7403 + User=0.000000s Real=0.110255s Sys=0.000000s + User TOT = 0.42 Real TOT = 12.2224 Summary of Run 197 : /run/geometryModified @@ -14377,8 +14377,8 @@ Run 198 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.108983s Sys=0.000000s - User TOT = 0.43 Real TOT = 12.8495 + User=0.010000s Real=0.279694s Sys=0.000000s + User TOT = 0.43 Real TOT = 12.5023 Summary of Run 198 : /run/geometryModified @@ -14447,8 +14447,8 @@ Run 199 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.109250s Sys=0.000000s - User TOT = 0.43 Real TOT = 12.9593 + User=0.000000s Real=0.107596s Sys=0.000000s + User TOT = 0.43 Real TOT = 12.61 Summary of Run 199 : /run/geometryModified @@ -14517,8 +14517,8 @@ Run 200 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.118505s Sys=0.010000s - User TOT = 0.43 Real TOT = 13.078 + User=0.010000s Real=0.109099s Sys=0.000000s + User TOT = 0.44 Real TOT = 12.7192 Summary of Run 200 : /score/dumpQuantityToFile boxMesh_1 eDep eDep_scorer.out Graphics systems deleted. @@ -14526,6 +14526,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.056 MB +Dynamic pools deleted: 11 / Total memory freed: 0.045 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/advanced/gammaray_telescope/gammaraytel.out b/examples/advanced/gammaray_telescope/gammaraytel.out index 629ae6ab05..acca31ed77 100644 --- a/examples/advanced/gammaray_telescope/gammaraytel.out +++ b/examples/advanced/gammaray_telescope/gammaraytel.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1061,7 +1061,7 @@ Using G4ParticleGun ... 8.7779 LIN proton Event: 4 -Number of tracker hits in this event = 128 +Number of tracker hits in this event = 126 4 111.504 1339 10 1 87.8737 -31.7497 95.55 4 155.467 741 10 0 87.8741 -31.7498 94.15 4 98.8208 1339 9 1 87.8808 -31.7532 65.55 @@ -1084,4477 +1084,4362 @@ Number of tracker hits in this event = 128 4 113.542 742 1 0 88.0048 -31.6089 -175.85 4 107.636 1339 0 1 88.0302 -31.579 -204.45 4 124.099 742 0 0 88.0317 -31.578 -205.85 - 4 79.4319 618 2 0 69.3844 -56.2695 -146.25 - 4 208.73 617 2 0 69.347 -56.4501 -146.045 - 4 246.727 927 0 0 -62.7266 5.59113 -206.178 - 4 459.408 928 0 0 -62.964 5.65031 -206.153 - 4 439.892 929 0 0 -63.7476 5.85 -206.066 - 4 297.648 930 0 0 -64.574 6.05 -205.962 - 4 30.6441 931 0 0 -65.39 6.25 -205.863 - 4 19.801 530 0 1 -73.9638 8.25137 -204.85 - 4 65.2512 529 0 1 -74.05 8.27234 -204.839 - 4 106.022 528 0 1 -74.25 8.32448 -204.815 - 4 133.867 527 0 1 -74.4503 8.3807 -204.797 - 4 146.999 526 0 1 -74.65 8.42745 -204.785 - 4 151.313 525 0 1 -74.85 8.47116 -204.781 - 4 190.501 524 0 1 -75.05 8.51639 -204.777 - 4 48.6466 523 0 1 -75.25 8.55456 -204.771 - 4 53.3515 522 0 1 -75.45 8.58948 -204.762 - 4 127.486 521 0 1 -75.6502 8.62379 -204.755 - 4 70.7845 520 0 1 -75.85 8.65668 -204.752 - 4 50.9649 519 0 1 -76.05 8.69277 -204.743 - 4 60.1212 518 0 1 -76.2502 8.72495 -204.728 - 4 73.0171 517 0 1 -76.4504 8.75411 -204.716 - 4 86.473 516 0 1 -76.6507 8.77919 -204.705 - 4 61.8091 515 0 1 -76.85 8.80688 -204.703 - 4 228.709 514 0 1 -77.05 8.83738 -204.702 - 4 183.084 513 0 1 -77.25 8.87331 -204.697 - 4 81.1853 512 0 1 -77.45 8.91254 -204.695 - 4 60.8346 511 0 1 -77.6504 8.95747 -204.692 - 4 50.3531 510 0 1 -77.85 9.00534 -204.683 - 4 65.4034 509 0 1 -78.05 9.04782 -204.672 - 4 66.6461 508 0 1 -78.2509 9.0936 -204.661 - 4 65.2181 507 0 1 -78.4503 9.13867 -204.65 - 4 68.267 506 0 1 -78.65 9.18386 -204.634 - 4 60.769 505 0 1 -78.85 9.23362 -204.617 - 4 57.2835 504 0 1 -79.05 9.28484 -204.599 - 4 47.6549 503 0 1 -79.25 9.33802 -204.58 - 4 88.6539 502 0 1 -79.4501 9.39561 -204.561 - 4 58.9501 501 0 1 -79.6502 9.45733 -204.544 - 4 211.109 500 0 1 -79.85 9.51867 -204.532 - 4 127.167 499 0 1 -80.0501 9.58097 -204.523 - 4 64.6318 498 0 1 -80.2501 9.64581 -204.515 - 4 170.34 497 0 1 -80.45 9.71209 -204.505 - 4 80.4715 496 0 1 -80.65 9.7773 -204.489 - 4 42.1508 495 0 1 -80.85 9.83571 -204.466 - 4 68.2094 491 0 1 -81.7467 10.2261 -204.45 - 4 115.532 928 1 0 -93.8041 5.78424 -176.25 - 4 121.446 428 1 1 -94.3758 5.63832 -174.85 - 4 6.64329 787 2 0 -76.9028 -22.6326 -146.25 - 4 221.647 786 2 0 -76.8919 -22.65 -146.233 - 4 77.3677 785 2 0 -76.7784 -22.85 -146.043 - 4 1.31603 784 2 0 -76.6565 -23.0503 -145.854 - 4 32.3586 520 2 1 -75.9008 -24.0825 -144.85 - 4 154.307 521 2 1 -75.8499 -24.153 -144.782 - 4 0.642761 522 2 1 -75.6498 -24.408 -144.453 - 4 12.5735 740 3 0 -50.2578 -32.0403 -116.25 - 4 164.005 739 3 0 -50.2208 -32.05 -116.209 - 4 35.2074 655 3 1 -48.9436 -32.588 -114.85 - 4 104.206 656 3 1 -48.85 -32.627 -114.751 - 4 29.1432 657 3 1 -48.65 -32.699 -114.515 - 4 36.22 562 0 1 -67.5124 7.18722 -204.85 - 4 61.4158 561 0 1 -67.65 7.239 -204.813 - 4 57.5387 560 0 1 -67.8505 7.3268 -204.76 - 4 73.8478 559 0 1 -68.0501 7.4116 -204.708 - 4 62.1002 558 0 1 -68.2501 7.49309 -204.655 - 4 48.7783 557 0 1 -68.45 7.5742 -204.6 - 4 64.4873 556 0 1 -68.65 7.65423 -204.533 - 4 15.3342 555 0 1 -68.85 7.72903 -204.47 - 4 16.1817 1010 1 0 -90.4501 22.2231 -176.25 - 4 136.16 1011 1 0 -90.4888 22.25 -176.198 - 4 65.7696 443 1 1 -91.4066 22.9302 -174.85 - 4 66.1595 442 1 1 -91.55 23.0376 -174.638 - 4 0.684818 1186 2 0 -142.731 57.4489 -146.25 - 4 154.697 1187 2 0 -142.732 57.45 -146.249 - 4 110.733 1188 2 0 -143.023 57.65 -146.083 - 4 140.226 1189 2 0 -143.335 57.85 -145.932 - 4 49.2905 170 2 1 -146.085 59.9168 -144.85 - 4 68.3505 169 2 1 -146.15 59.9661 -144.825 - 4 129.548 168 2 1 -146.351 60.115 -144.748 - 4 137.103 167 2 1 -146.55 60.2659 -144.655 - 4 63.4041 166 2 1 -146.75 60.4444 -144.545 - 4 61.2605 1258 3 0 -143.769 71.7694 -116.25 - 4 42.0103 1259 3 0 -143.744 71.85 -116.03 - 4 113.027 183 3 1 -143.524 72.3283 -114.849 - 4 319.568 1231 4 0 -87.8118 66.3475 -86.25 - 4 11.3615 478 4 1 -84.3031 66.1797 -84.85 - 4 66.4111 479 4 1 -84.25 66.1765 -84.8302 - 4 71.7783 480 4 1 -84.05 66.1771 -84.7518 - 4 59.0819 481 4 1 -83.85 66.1749 -84.664 - 4 103.865 482 4 1 -83.65 66.1706 -84.5697 - 4 2.53683 483 4 1 -83.45 66.1844 -84.4581 - 4 115.284 1264 5 0 -79.2719 72.885 -56.25 - 4 109.329 507 5 1 -78.5726 73.217 -54.8496 - 4 129.85 506 5 1 -78.706 72.891 -54.4502 - 4 9.46263 1259 5 0 -79.0107 71.8737 -55.85 - 4 62.8494 1258 5 0 -79.0192 71.85 -55.8736 - 4 62.6511 1257 5 0 -79.0682 71.6499 -55.9731 - 4 48.183 1256 5 0 -79.0475 71.45 -55.9163 - 4 46.0594 1255 5 0 -79.0373 71.25 -55.875 - 4 36.9732 503 5 1 -79.3989 68.0528 -54.85 - 4 180.302 502 5 1 -79.45 67.9096 -54.7657 - 4 9.63849 1213 2 0 -148.882 62.8239 -145.85 - 4 25.7383 145 2 1 -151.096 64.7473 -144.85 - 4 81.0933 144 2 1 -151.15 64.7831 -144.807 - 4 158.666 143 2 1 -151.35 64.8485 -144.695 - 4 249.64 142 2 1 -151.551 64.8871 -144.668 - 4 72.577 853 2 0 37.8255 -9.32044 -146.25 - 4 159.487 902 0 0 111.774 0.45 -206.068 -Number of digits in this event = 44 + 4 22.3898 971 6 0 121.892 14.3246 -26.25 + 4 360.584 630 0 0 87.7012 -53.9375 -206.25 + 4 147.321 631 0 0 87.9145 -53.85 -206.099 + 4 193.917 1037 3 1 27.65 -51.8734 -114.752 + 4 54.6032 662 0 0 122.799 -47.5248 -206.25 + 4 155.357 661 0 0 122.95 -47.65 -206.118 + 4 41.3162 660 0 0 123.168 -47.85 -205.912 + 4 21.1998 1520 0 1 124.297 -48.8519 -204.85 + 4 78.8559 1521 0 1 124.35 -48.8968 -204.8 + 4 69.6001 1522 0 1 124.55 -49.0531 -204.608 + 4 93.2558 598 1 0 125.922 -60.3199 -176.25 + 4 14.2065 597 1 0 125.928 -60.45 -175.918 + 4 146.997 1528 1 1 125.928 -60.8655 -174.85 + 4 176.3 589 2 0 138.969 -62.1865 -146.25 + 4 11.4319 1596 2 1 139.535 -62.208 -144.85 + 4 181.269 1597 2 1 139.55 -62.2093 -144.812 + 4 63.9852 745 3 0 123.792 -31.028 -116.25 + 4 84.7286 746 3 0 123.691 -30.85 -116.101 + 4 55.3795 747 3 0 123.556 -30.65 -115.926 + 4 41.8622 1512 3 1 122.611 -29.475 -114.85 + 4 118.723 1511 3 1 122.55 -29.398 -114.785 + 4 89.2998 1510 3 1 122.35 -29.1233 -114.522 + 4 72.3949 1509 3 1 122.072 -28.4233 -114.45 + 4 77.1899 754 3 0 122.435 -29.0805 -115.85 + 4 53.2369 753 3 0 122.473 -29.2501 -116.123 + 4 114.359 702 0 0 115.342 -39.5525 -206.25 + 4 16.1475 701 0 0 115.468 -39.65 -205.921 + 4 129.992 1478 0 1 115.758 -39.9937 -204.85 + 4 36.709 295 3 0 98.5682 -121.036 -116.25 + 4 80.5924 294 3 0 98.5977 -121.15 -116.121 + 4 128.275 293 3 0 98.6511 -121.35 -115.896 + 4 75.493 1393 3 1 98.9064 -122.3 -114.85 + 4 135.456 1394 3 1 98.95 -122.455 -114.677 + 4 21.0461 184 4 0 107.358 -143.295 -86.25 + 4 96.1244 183 4 0 107.38 -143.35 -86.1756 + 4 23.5833 182 4 0 107.462 -143.55 -85.9091 + 4 179.099 1438 4 1 107.782 -144.345 -84.85 + 4 182.331 74 5 0 113.705 -165.24 -56.25 + 4 107.027 73 5 0 113.735 -165.35 -56.0992 + 4 137.939 1469 5 1 113.952 -166.278 -54.85 + 4 18.8603 325 3 0 95.1008 -115.112 -116.25 + 4 99.0391 324 3 0 95.1067 -115.15 -116.193 + 4 11.8733 323 3 0 95.1384 -115.35 -115.897 + 4 156.482 1375 3 1 95.2815 -116.055 -114.85 + 4 128.418 285 4 0 100.97 -123.086 -86.25 + 4 47.9872 284 4 0 101.032 -123.15 -85.9731 + 4 72.3334 1405 4 1 101.299 -123.408 -84.85 + 4 54.08 1406 4 1 101.35 -123.453 -84.637 + 4 184.188 264 5 0 112.894 -127.251 -56.2498 + 4 77.3288 1466 5 1 113.485 -127.42 -54.8498 + 4 74.9358 1467 5 1 113.55 -127.437 -54.7048 + 4 184.677 1463 5 1 112.872 -126.288 -54.8499 + 4 239.718 1464 5 1 112.95 -126.16 -54.5587 + 4 5.10708 605 0 0 37.1924 -59.047 -206.25 + 4 150.555 604 0 0 37.1895 -59.05 -206.24 + 4 148.813 1083 0 1 36.8034 -59.4616 -204.85 + 4 36.323 564 1 0 29.7708 -67.2199 -176.25 + 4 89.5246 563 1 0 29.7435 -67.25 -176.139 + 4 155.737 1046 1 1 29.4271 -67.6024 -174.85 + 4 139.043 527 2 0 22.0469 -74.5495 -146.25 + 4 38.2626 1008 2 1 21.6862 -74.8885 -144.85 + 4 67.5425 1007 2 1 21.65 -74.9226 -144.709 + 4 62.607 489 3 0 14.1061 -82.1967 -116.25 + 4 192.015 488 3 0 14.0508 -82.25 -116.042 + 4 166.406 968 3 1 13.733 -82.5606 -114.85 + 4 20.9737 967 3 1 13.65 -82.6418 -114.539 + 4 217.854 449 4 0 6.56674 -90.2631 -86.25 + 4 35.0056 448 4 0 6.48664 -90.35 -85.9292 + 4 128.933 930 4 1 6.22006 -90.6392 -84.85 + 4 103.562 408 5 0 -1.69199 -98.4601 -56.25 + 4 80.3896 407 5 0 -1.78314 -98.55 -55.9214 + 4 121.911 889 5 1 -2.0765 -98.8378 -54.85 + 4 63.8586 368 6 0 -9.83963 -106.518 -26.25 + 4 81.1553 367 6 0 -9.872 -106.55 -26.1307 + 4 28.3675 849 6 1 -10.2181 -106.886 -24.85 + 4 87.9943 848 6 1 -10.25 -106.917 -24.7316 + 4 134.29 338 7 0 -17.448 -112.492 3.75 + 4 25.7046 337 7 0 -17.5234 -112.55 4.04869 + 4 69.5074 811 7 1 -17.8017 -112.762 5.15 + 4 55.3417 810 7 1 -17.85 -112.799 5.34104 + 4 211.03 311 8 0 -25.463 -117.892 33.75 + 4 25.3665 310 8 0 -25.5499 -117.95 34.0741 + 4 16.0499 771 8 1 -25.8364 -118.144 35.15 + 4 108.436 770 8 1 -25.85 -118.153 35.2011 + 4 137.65 281 9 0 -33.4061 -123.783 63.75 + 4 71.8354 731 9 1 -33.7786 -124.059 65.15 + 4 37.1846 730 9 1 -33.85 -124.112 65.4179 + 4 110.84 251 10 0 -41.6567 -129.858 93.75 + 4 9.95955 690 10 1 -42.0445 -130.14 95.15 + 4 108.179 689 10 1 -42.05 -130.144 95.1699 + 4 136.428 222 11 0 -50.1878 -135.586 123.75 + 4 123.16 647 11 1 -50.5892 -135.854 125.15 + 4 54.8952 646 11 1 -50.65 -135.894 125.361 + 4 40.3649 196 12 0 -59.2682 -140.927 153.75 + 4 72.1444 195 12 0 -59.3084 -140.95 153.882 + 4 130.088 601 12 1 -59.6984 -141.172 155.15 + 4 108.114 168 13 0 -68.5056 -146.494 183.75 + 4 30.4276 167 13 0 -68.5975 -146.55 184.048 + 4 123.376 555 13 1 -68.9371 -146.752 185.15 + 4 6.73953 554 13 1 -69.05 -146.819 185.517 + 4 114.074 139 14 0 -77.2036 -152.239 213.75 + 4 59.4158 512 14 1 -77.606 -152.505 215.15 + 4 126.266 511 14 1 -77.65 -152.534 215.303 + 4 52.7636 487 3 0 14.0369 -82.45 -115.921 +Number of digits in this event = 50 Using G4ParticleGun ... -7.38483 LIN +5.3647 LIN proton Event: 5 -Number of tracker hits in this event = 45 - 5 100.385 1451 9 1 110.514 -57.6515 65.55 - 5 118.846 611 9 0 110.513 -57.6505 64.15 - 5 129.36 1451 8 1 110.487 -57.6311 35.55 - 5 121.565 612 8 0 110.485 -57.6291 34.15 - 5 241.567 1451 7 1 110.444 -57.5887 5.55 - 5 110.931 612 7 0 110.442 -57.587 4.15 - 5 171.395 1451 6 1 110.404 -57.5532 -24.45 - 5 161.4 612 6 0 110.402 -57.5511 -25.85 - 5 88.7553 1451 5 1 110.358 -57.5113 -54.45 - 5 130.728 612 5 0 110.355 -57.5089 -55.85 - 5 111.985 1450 4 1 110.3 -57.4637 -84.45 - 5 108.472 612 4 0 110.296 -57.4612 -85.85 - 5 194.195 1450 3 1 110.214 -57.4101 -114.45 - 5 103.164 613 3 0 110.209 -57.4081 -115.85 - 5 143.189 1449 2 1 110.112 -57.3713 -144.45 - 5 130.901 613 2 0 110.107 -57.3704 -145.85 - 5 121.303 1449 1 1 110.003 -57.3513 -174.45 - 5 92.6616 613 1 0 109.998 -57.3507 -175.85 - 5 105.026 1448 0 1 109.891 -57.3363 -204.45 - 5 200.642 613 0 0 109.887 -57.3351 -205.85 - 5 39.2465 831 1 0 83.4463 -13.7813 -176.25 - 5 343.434 830 1 0 83.4353 -13.8502 -176.183 - 5 243.317 1548 1 1 129.85 -79.6277 -174.451 - 5 117.261 1719 2 1 164.066 -71.1731 -144.85 - 5 134.586 1720 2 1 164.15 -71.3207 -144.511 - 5 30.1858 1716 13 1 163.356 -153.09 185.309 - 5 487.201 483 0 0 95.4766 -83.3358 -206.25 - 5 798.511 482 0 0 95.4117 -83.45 -206.169 - 5 1112.24 481 0 0 95.2993 -83.65 -206.023 - 5 125.815 480 0 0 95.1863 -83.85 -205.875 - 5 402.148 1371 0 1 94.3945 -85.2275 -204.85 - 5 1561.01 1370 0 1 94.35 -85.3048 -204.792 - 5 513.691 1369 0 1 94.15 -85.6459 -204.537 - 5 31.8515 245 1 0 57.6291 -131.145 -176.25 - 5 1647.26 244 1 0 57.625 -131.15 -176.247 - 5 1794.79 243 1 0 57.4649 -131.35 -176.122 - 5 2276.47 242 1 0 57.2948 -131.55 -175.991 - 5 686.833 1178 1 1 55.7042 -133.203 -174.85 - 5 2870.89 1177 1 1 55.65 -133.259 -174.811 - 5 4047.62 1176 1 1 55.45 -133.458 -174.666 - 5 3083.66 1175 1 1 55.25 -133.649 -174.54 - 5 87.2173 698 1 0 103.368 -40.4432 -176.25 - 5 106.181 697 1 0 103.242 -40.45 -176.118 - 5 230.065 696 1 0 103.088 -40.65 -176.146 - 5 2.44788 1057 12 0 -119.427 31.5339 153.75 -Number of digits in this event = 33 +Number of tracker hits in this event = 22 + 5 86.7599 1071 10 1 34.2599 -108.635 95.55 + 5 100.936 357 10 0 34.2617 -108.634 94.15 + 5 117.611 1071 9 1 34.2982 -108.617 65.55 + 5 117.62 357 9 0 34.3017 -108.615 64.15 + 5 82.8916 1071 8 1 34.3694 -108.576 35.55 + 5 85.6288 357 8 0 34.3733 -108.576 34.15 + 5 163.283 1072 7 1 34.4514 -108.558 5.55 + 5 141.452 357 7 0 34.4544 -108.558 4.15 + 5 101.239 1072 6 1 34.512 -108.54 -24.45 + 5 126.969 358 6 0 34.5139 -108.541 -25.85 + 5 141.899 1072 5 1 34.5518 -108.561 -54.45 + 5 201.846 357 5 0 34.5547 -108.561 -55.85 + 5 118.445 1072 4 1 34.6131 -108.56 -84.45 + 5 117.796 357 4 0 34.6165 -108.561 -85.85 + 5 121.253 1073 3 1 34.6819 -108.576 -114.45 + 5 141.502 357 3 0 34.687 -108.577 -115.85 + 5 102.727 1073 2 1 34.7964 -108.599 -144.45 + 5 138.833 357 2 0 34.8003 -108.599 -145.85 + 5 103.539 1074 1 1 34.8764 -108.599 -174.45 + 5 104.198 357 1 0 34.8816 -108.599 -175.85 + 5 105.254 1074 0 1 34.9871 -108.604 -204.45 + 5 122.367 357 0 0 34.9921 -108.604 -205.85 +Number of digits in this event = 10 Using G4ParticleGun ... -6.34062 LIN +1.87157 LIN proton Event: 6 -Number of tracker hits in this event = 23 - 6 155.644 1121 9 1 44.39 -111.412 65.55 - 6 179.813 343 9 0 44.3919 -111.41 64.15 - 6 110.662 1121 8 1 44.4306 -111.374 35.55 - 6 121.64 343 8 0 44.4325 -111.373 34.15 - 6 126.073 1122 7 1 44.4678 -111.337 5.55 - 6 129.515 344 7 0 44.4696 -111.334 4.15 - 6 109.001 1122 6 1 44.5072 -111.289 -24.45 - 6 91.6693 344 6 0 44.5094 -111.286 -25.85 - 6 123.803 1122 5 1 44.5577 -111.209 -54.45 - 6 259.194 344 5 0 44.5597 -111.203 -55.85 - 6 96.743 1122 4 1 44.6007 -111.084 -84.45 - 6 103.961 345 4 0 44.6035 -111.078 -85.85 - 6 114.931 1123 3 1 44.6607 -110.972 -114.45 - 6 123.835 345 3 0 44.6642 -110.967 -115.85 - 6 106.578 1123 2 1 44.729 -110.855 -144.45 - 6 231.005 346 2 0 44.7307 -110.85 -145.85 - 6 111.098 1122 1 1 44.4596 -110.797 -174.45 - 6 135.38 346 1 0 44.4449 -110.793 -175.85 - 6 91.4483 1120 0 1 44.1457 -110.722 -204.45 - 6 105.613 347 0 0 44.1311 -110.718 -205.85 - 6 18.7458 481 2 1 -83.7177 -47.1279 -144.85 - 6 145.752 480 2 1 -83.8501 -47.0563 -144.707 - 6 122.397 344 9 0 44.1993 -111.35 63.8214 -Number of digits in this event = 13 -Using G4ParticleGun ... -4.12134 LIN -proton -Event: 7 -Number of tracker hits in this event = 23 - 7 126.393 847 10 1 -10.4654 -115.245 95.441 - 7 94.92 324 10 0 -10.4656 -115.245 94.15 - 7 96.0578 847 9 1 -10.468 -115.242 65.55 - 7 105.305 324 9 0 -10.4675 -115.242 64.15 - 7 111.379 847 8 1 -10.4568 -115.227 35.55 - 7 105.62 324 8 0 -10.4543 -115.225 34.15 - 7 263.008 848 7 1 -10.4064 -115.169 5.55 - 7 115.923 324 7 0 -10.405 -115.165 4.15 - 7 142.523 848 6 1 -10.3779 -115.084 -24.45 - 7 218.635 325 6 0 -10.3773 -115.08 -25.85 - 7 147.846 848 5 1 -10.3671 -114.997 -54.45 - 7 157.739 325 5 0 -10.3669 -114.993 -55.85 - 7 146.346 848 4 1 -10.3626 -114.928 -84.45 - 7 96.7977 326 4 0 -10.3618 -114.924 -85.85 - 7 120.402 848 3 1 -10.3457 -114.856 -114.45 - 7 115.387 326 3 0 -10.3454 -114.852 -115.85 - 7 157.506 848 2 1 -10.3416 -114.753 -144.45 - 7 110.262 327 2 0 -10.3421 -114.748 -145.85 - 7 100.248 848 1 1 -10.3419 -114.646 -174.45 - 7 134.544 327 1 0 -10.3419 -114.642 -175.85 - 7 109.169 848 0 1 -10.3393 -114.561 -204.45 - 7 152.642 327 0 0 -10.3378 -114.558 -205.85 - 7 300.167 847 3 1 -10.4875 -115.075 -114.45 -Number of digits in this event = 13 -Using G4ParticleGun ... -4.20349 LIN -proton -Event: 8 Number of tracker hits in this event = 37 - 8 117.139 748 10 1 -30.4251 -96.7939 95.55 - 8 111.747 416 10 0 -30.4257 -96.7938 94.15 - 8 105.643 748 9 1 -30.4343 -96.786 65.55 - 8 277.926 416 9 0 -30.4343 -96.7858 64.15 - 8 106.188 748 8 1 -30.4427 -96.7843 35.55 - 8 125.597 416 8 0 -30.4414 -96.7855 34.15 - 8 129.161 748 7 1 -30.4186 -96.8135 5.55 - 8 106.529 416 7 0 -30.4175 -96.8128 4.15 - 8 126.194 748 6 1 -30.3951 -96.793 -24.45 - 8 160.798 416 6 0 -30.3934 -96.7938 -25.85 - 8 218.815 748 5 1 -30.3569 -96.8141 -54.45 - 8 157.67 416 5 0 -30.353 -96.8159 -55.85 - 8 192.358 748 4 1 -30.2746 -96.8548 -84.45 - 8 101.775 416 4 0 -30.2725 -96.8588 -85.85 - 8 99.6942 749 3 1 -30.229 -96.9422 -114.45 - 8 154.208 416 3 0 -30.227 -96.9451 -115.85 - 8 106.439 749 2 1 -30.1839 -97.0055 -144.45 - 8 162.415 415 2 0 -30.1808 -97.0096 -145.85 - 8 93.0103 749 1 1 -30.1161 -97.0982 -174.45 - 8 94.4256 415 1 0 -30.1134 -97.1021 -175.85 - 8 105.839 749 0 1 -30.0527 -97.1853 -204.45 - 8 88.5713 414 0 0 -30.0499 -97.1882 -205.85 - 8 139.591 1570 7 0 61.6384 134.316 4.11967 - 8 134.794 953 6 0 18.2848 10.7612 -26.25 - 8 11.7672 432 0 0 -33.1572 -93.7462 -206.25 - 8 1001.92 431 0 0 -33.1548 -93.75 -206.243 - 8 15.4578 430 0 0 -33.0276 -93.95 -205.855 - 8 232.926 736 0 1 -32.6737 -94.3394 -204.85 - 8 901.292 737 0 1 -32.65 -94.3654 -204.783 - 8 46.0303 423 0 0 -33.2709 -95.4637 -205.85 - 8 150.652 422 0 0 -33.3348 -95.55 -205.985 - 8 5.72003 407 4 0 61.3039 -98.6207 -86.25 - 8 93.2609 1206 4 1 61.3936 -98.0013 -84.8498 - 8 35.4299 1207 4 1 61.45 -97.8494 -84.5821 - 8 159.574 417 6 0 -30.4596 -96.75 -26.0927 - 8 154.987 418 6 0 -30.7482 -96.55 -26.1435 - 8 119.641 419 6 0 -30.8831 -96.3499 -26.0361 -Number of digits in this event = 21 -Using G4ParticleGun ... -9.12302 LIN -proton -Event: 9 -Number of tracker hits in this event = 33 - 9 118.342 1119 11 1 43.9855 -3.11703 125.55 - 9 124.899 884 11 0 43.9853 -3.11758 124.15 - 9 351.982 1119 10 1 43.9829 -3.12645 95.55 - 9 118.563 884 10 0 43.984 -3.12629 94.15 - 9 121.049 1119 9 1 44.0092 -3.12268 65.55 - 9 139.582 884 9 0 44.0105 -3.12279 64.15 - 9 101.912 1119 8 1 44.0382 -3.12536 35.55 - 9 145.443 884 8 0 44.0382 -3.1253 34.15 - 9 213.861 1119 7 1 44.0388 -3.12382 5.55 - 9 110.297 884 7 0 44.0383 -3.12402 4.15 - 9 109.94 1119 6 1 44.0255 -3.12534 -24.45 - 9 113.258 884 6 0 44.0256 -3.12601 -25.85 - 9 105.513 1119 5 1 44.0259 -3.14019 -54.45 - 9 129.448 884 5 0 44.0264 -3.1414 -55.85 - 9 111.376 1119 4 1 44.0373 -3.16748 -84.45 - 9 134.893 884 4 0 44.0385 -3.1692 -85.85 - 9 139.761 1120 3 1 44.0664 -3.20651 -114.45 - 9 205.688 884 3 0 44.0677 -3.20903 -115.85 - 9 117.271 1120 2 1 44.0916 -3.26157 -144.45 - 9 114.185 883 2 0 44.0928 -3.26415 -145.85 - 9 164.899 1120 1 1 44.1179 -3.31457 -174.45 - 9 111.218 883 1 0 44.1188 -3.31706 -175.85 - 9 135.61 1120 0 1 44.1429 -3.37196 -204.45 - 9 120.134 883 0 0 44.1435 -3.37504 -205.85 - 9 92.3086 162 3 1 -147.715 30.4752 -114.503 - 9 17.3401 1702 1 1 160.55 55.8284 -174.543 - 9 56.3108 1121 1 1 44.25 -3.40697 -174.628 - 9 12.5614 886 1 0 44.4984 -2.68595 -175.85 - 9 88.2564 887 1 0 44.5011 -2.64988 -175.902 - 9 235.671 888 1 0 44.6026 -2.45 -176.085 - 9 156.53 1184 1 0 26.0915 56.9583 -176.25 - 9 196.469 1183 1 0 25.7347 56.85 -176.187 - 9 105.076 1182 1 0 25.6245 56.6499 -176.236 + 6 111.848 394 10 1 -101.204 -45.8226 95.55 + 6 103.843 671 10 0 -101.203 -45.8224 94.15 + 6 91.5797 394 9 1 -101.192 -45.8254 65.55 + 6 110.548 671 9 0 -101.183 -45.8225 64.15 + 6 193.55 395 8 1 -100.974 -45.78 35.55 + 6 154.095 671 8 0 -100.96 -45.7782 34.15 + 6 154.265 397 7 1 -100.67 -45.737 5.55 + 6 123.796 671 7 0 -100.657 -45.7371 4.15 + 6 146.43 398 6 1 -100.38 -45.7289 -24.45 + 6 104.3 671 6 0 -100.366 -45.7271 -25.85 + 6 114.063 400 5 1 -100.102 -45.6862 -54.45 + 6 123.756 671 5 0 -100.09 -45.6861 -55.85 + 6 128.795 401 4 1 -99.8351 -45.683 -84.45 + 6 143.134 671 4 0 -99.8178 -45.6827 -85.85 + 6 121.121 403 3 1 -99.4559 -45.6766 -114.45 + 6 219.965 671 3 0 -99.4388 -45.6768 -115.85 + 6 97.322 405 2 1 -99.0692 -45.6985 -144.45 + 6 131.33 671 2 0 -99.0537 -45.6987 -145.85 + 6 123.135 407 1 1 -98.7391 -45.7139 -174.45 + 6 155.206 671 1 0 -98.72 -45.7158 -175.85 + 6 100.626 409 0 1 -98.3286 -45.739 -204.45 + 6 116.524 671 0 0 -98.3053 -45.7403 -205.85 + 6 129.082 973 7 0 -97.9539 14.7256 3.75 + 6 220.72 974 7 0 -97.8405 14.85 3.80648 + 6 3.51324 410 7 1 -98.1424 12.8544 5.15 + 6 60.9578 409 7 1 -98.15 12.8446 5.15566 + 6 4.64506 957 7 0 -98.7494 11.4569 4.14908 + 6 252.789 956 7 0 -98.7554 11.45 4.13639 + 6 230.918 396 8 1 -100.95 -45.624 35.4659 + 6 116.08 397 8 1 -100.75 -45.1183 35.3208 + 6 40.0216 398 8 1 -100.55 -44.9123 35.1924 + 6 19.2021 690 8 0 -100.894 -41.9366 34.15 + 6 5.98412 691 8 0 -100.904 -41.85 34.1429 + 6 88.6781 390 8 1 -102.012 -38.0266 35.15 + 6 31.3383 717 8 0 -102.183 -36.5099 34.1498 + 6 92.3565 718 8 0 -102.183 -36.45 34.0371 + 6 127.418 719 8 0 -102.238 -36.25 33.8651 Number of digits in this event = 19 Using G4ParticleGun ... -6.61894 LIN +2.69085 LIN +proton +Event: 7 +Number of tracker hits in this event = 28 + 7 132.665 1341 10 0 -75.6836 88.3957 94.15 + 7 154.745 521 9 1 -75.6722 88.3898 65.55 + 7 105.886 1341 9 0 -75.672 88.3914 64.15 + 7 125.454 521 8 1 -75.6706 88.4221 35.55 + 7 107.632 1341 8 0 -75.668 88.4214 34.15 + 7 290.549 522 7 1 -75.6254 88.419 5.55 + 7 103.098 1341 7 0 -75.6228 88.4186 4.15 + 7 150.782 522 6 1 -75.5664 88.4095 -24.45 + 7 108.428 1341 6 0 -75.5612 88.4085 -25.85 + 7 28.4536 522 5 1 -75.4505 88.3863 -54.45 + 7 117.165 523 5 1 -75.45 88.3864 -54.5668 + 7 179.336 1341 5 0 -75.4452 88.3873 -55.85 + 7 258.129 523 4 1 -75.3472 88.4168 -84.45 + 7 203.697 1341 4 0 -75.3413 88.4175 -85.85 + 7 97.4222 524 3 1 -75.2222 88.4373 -114.45 + 7 129.694 1341 3 0 -75.215 88.4383 -115.85 + 7 228.647 524 2 1 -75.064 88.4585 -144.45 + 7 171.961 1342 2 0 -75.0547 88.46 -145.85 + 7 98.3409 525 1 1 -74.8655 88.4949 -174.45 + 7 113.685 1342 1 0 -74.8539 88.4963 -175.85 + 7 215.807 527 0 1 -74.6187 88.5312 -204.45 + 7 125.236 1342 0 0 -74.6078 88.5318 -205.85 + 7 189.807 1670 7 1 154.15 115.764 5.52305 + 7 56.4924 1618 6 1 143.917 77.2893 -24.45 + 7 1726.63 129 0 0 -114.458 -154.217 -206.111 + 7 135.718 1703 0 0 164.357 160.75 -206.23 + 7 162.515 1704 0 0 164.393 160.95 -206.125 + 7 216.056 1341 2 0 -75.0476 88.4498 -146.061 +Number of digits in this event = 21 +Using G4ParticleGun ... +1.32162 LIN +proton +Event: 8 +Number of tracker hits in this event = 24 + 8 208.929 578 11 1 -64.4203 -43.0607 125.55 + 8 118.006 684 11 0 -64.4221 -43.0626 124.15 + 8 121.729 578 10 1 -64.4381 -43.0841 95.55 + 8 113.65 684 10 0 -64.4443 -43.0854 94.15 + 8 212.254 577 9 1 -64.5688 -43.121 65.55 + 8 111.343 684 9 0 -64.5744 -43.1239 64.15 + 8 149.807 576 8 1 -64.7108 -43.1798 35.55 + 8 159.421 684 8 0 -64.7162 -43.1818 34.15 + 8 124.416 576 7 1 -64.8229 -43.2162 5.55 + 8 112.046 684 7 0 -64.8305 -43.2191 4.15 + 8 126.079 575 6 1 -64.9762 -43.2818 -24.45 + 8 97.1999 683 6 0 -64.9832 -43.2834 -25.85 + 8 118.771 574 5 1 -65.1302 -43.3113 -54.45 + 8 163.212 683 5 0 -65.1335 -43.3128 -55.85 + 8 95.9205 574 4 1 -65.1936 -43.3334 -84.45 + 8 177.098 683 4 0 -65.1928 -43.3394 -85.85 + 8 108.819 574 3 1 -65.1697 -43.4691 -114.45 + 8 134.916 682 3 0 -65.1637 -43.4794 -115.85 + 8 108.741 574 2 1 -65.0556 -43.6877 -144.45 + 8 219.766 681 2 0 -65.0544 -43.695 -145.85 + 8 152.233 575 1 1 -65.0074 -43.8573 -174.45 + 8 135.416 680 1 0 -65.0056 -43.8606 -175.85 + 8 222.328 575 0 1 -64.9699 -43.9485 -204.45 + 8 148.872 680 0 0 -64.9804 -43.9504 -205.85 +Number of digits in this event = 16 +Using G4ParticleGun ... +7.16006 LIN +proton +Event: 9 +Number of tracker hits in this event = 37 + 9 128.359 396 8 1 -100.908 -98.2327 35.55 + 9 119.609 409 8 0 -100.908 -98.2329 34.15 + 9 239.623 396 7 1 -100.908 -98.2393 5.55 + 9 86.9607 409 7 0 -100.909 -98.2388 4.15 + 9 195.674 396 6 1 -100.911 -98.2309 -24.45 + 9 146.088 409 6 0 -100.912 -98.2301 -25.85 + 9 94.097 396 5 1 -100.911 -98.2099 -54.45 + 9 230.09 409 5 0 -100.911 -98.2102 -55.85 + 9 113.154 396 4 1 -100.905 -98.2161 -84.45 + 9 224.284 409 4 0 -100.905 -98.2165 -85.85 + 9 118.604 396 3 1 -100.897 -98.2273 -114.45 + 9 483.754 409 3 0 -100.897 -98.2282 -115.85 + 9 150.091 396 2 1 -100.896 -98.2442 -144.45 + 9 127.677 409 2 0 -100.896 -98.2446 -145.85 + 9 117.954 396 1 1 -100.897 -98.2555 -174.45 + 9 132.337 409 1 0 -100.896 -98.2552 -175.85 + 9 102.699 396 0 1 -100.877 -98.246 -204.45 + 9 153.718 409 0 0 -100.875 -98.2456 -205.85 + 9 364.274 420 4 0 -82.4686 -96.0177 -86.2499 + 9 46.1499 421 4 0 -82.5466 -95.95 -86.1411 + 9 125.842 395 7 1 -100.95 -98.3445 5.46722 + 9 10.1182 403 7 0 -101.253 -99.523 4.15 + 9 248.641 402 7 0 -101.26 -99.55 4.11968 + 9 59.6055 401 7 0 -101.329 -99.75 3.90176 + 9 307.392 223 7 0 -126.299 -135.383 3.75003 + 9 83.0276 222 7 0 -126.684 -135.55 4.07905 + 9 27.0093 257 7 1 -128.723 -136.569 5.15 + 9 71.4167 256 7 1 -128.75 -136.587 5.16032 + 9 38.8786 202 7 0 -130.725 -139.633 4.15 + 9 73.6348 201 7 0 -130.788 -139.75 4.12389 + 9 36.9353 200 7 0 -130.8 -139.95 4.10333 + 9 611.019 249 7 1 -130.344 -140.801 5.15 + 9 74.7301 397 7 1 -100.75 -98.196 5.53034 + 9 79.0373 398 7 1 -100.55 -98.0808 5.54403 + 9 125.59 399 7 1 -100.35 -98.0891 5.43225 + 9 151.635 400 7 1 -100.15 -98.3028 5.40686 + 9 236.735 411 7 0 -99.6559 -97.9189 4.1496 +Number of digits in this event = 20 +Using G4ParticleGun ... +8.9741 LIN proton Event: 10 -Number of tracker hits in this event = 24 - 10 86.0603 1012 11 1 22.5595 -58.1553 125.55 - 10 94.8661 609 11 0 22.5596 -58.1549 124.15 - 10 119.697 1012 10 1 22.5572 -58.1499 95.55 - 10 104.015 609 10 0 22.5558 -58.1489 94.15 - 10 108.262 1012 9 1 22.5273 -58.1258 65.55 - 10 116.441 609 9 0 22.5254 -58.1245 64.15 - 10 125.62 1012 8 1 22.4903 -58.0995 35.55 - 10 102.382 609 8 0 22.4908 -58.098 34.15 - 10 97.2972 1012 7 1 22.5019 -58.0726 5.55 - 10 109.584 609 7 0 22.5018 -58.0705 4.15 - 10 104.135 1012 6 1 22.5053 -58.0217 -24.45 - 10 99.6739 610 6 0 22.5036 -58.02 -25.85 - 10 365.84 1012 5 1 22.4643 -57.9797 -54.45 - 10 113.489 610 5 0 22.463 -57.9764 -55.85 - 10 110.844 1011 4 1 22.441 -57.9057 -84.45 - 10 102.215 610 4 0 22.4402 -57.9023 -85.85 - 10 111.746 1011 3 1 22.4219 -57.8312 -114.45 - 10 92.7938 611 3 0 22.421 -57.828 -115.85 - 10 120.554 1011 2 1 22.4028 -57.7629 -144.45 - 10 119.807 611 2 0 22.4016 -57.7609 -145.85 - 10 98.4437 1011 1 1 22.3765 -57.7204 -174.45 - 10 100.875 611 1 0 22.3754 -57.7202 -175.85 - 10 156.46 1011 0 1 22.35 -57.7136 -204.45 - 10 115.982 611 0 0 22.3498 -57.7136 -205.85 -Number of digits in this event = 6 +Number of tracker hits in this event = 27 + 10 112.978 307 9 1 -118.715 -25.0633 65.55 + 10 97.2051 774 9 0 -118.715 -25.0643 64.15 + 10 113.123 307 8 1 -118.721 -25.081 35.55 + 10 101.965 774 8 0 -118.721 -25.0811 34.15 + 10 195.519 307 7 1 -118.719 -25.0827 5.55 + 10 235.864 774 7 0 -118.719 -25.0831 4.15 + 10 207.313 307 6 1 -118.732 -25.0942 -24.45 + 10 122.783 774 6 0 -118.733 -25.0953 -25.85 + 10 238.007 307 5 1 -118.749 -25.1215 -54.45 + 10 256.615 774 5 0 -118.75 -25.1224 -55.85 + 10 108.754 306 4 1 -118.759 -25.1459 -84.45 + 10 119.612 774 4 0 -118.761 -25.1474 -85.85 + 10 106.246 306 3 1 -118.796 -25.1811 -114.45 + 10 91.6726 774 3 0 -118.798 -25.1819 -115.85 + 10 140.18 306 2 1 -118.838 -25.1995 -144.45 + 10 103.35 774 2 0 -118.84 -25.2005 -145.85 + 10 101.979 306 1 1 -118.88 -25.2175 -174.45 + 10 152.042 774 1 0 -118.882 -25.2184 -175.85 + 10 119.079 306 0 1 -118.909 -25.239 -204.45 + 10 119.755 774 0 0 -118.911 -25.2395 -205.85 + 10 176.228 306 5 1 -118.75 -25.1217 -54.7309 + 10 50.8436 865 5 0 -46.6185 -7.02058 -56.25 + 10 93.4951 864 5 0 -46.543 -7.05 -56.1129 + 10 60.4904 672 5 1 -45.6228 -7.37984 -54.85 + 10 109.613 673 5 1 -45.45 -7.45218 -54.723 + 10 186.51 674 5 1 -45.25 -7.63411 -54.5784 + 10 260.748 675 5 1 -45.05 -7.62027 -54.6402 +Number of digits in this event = 12 Using G4ParticleGun ... -1.47329 LIN +8.75803 LIN proton Event: 11 -Number of tracker hits in this event = 28 - 11 100.904 1170 11 1 54.1943 -26.9786 125.55 - 11 193.595 765 11 0 54.1924 -26.978 124.15 - 11 102.989 1170 10 1 54.1637 -26.9529 95.55 - 11 103.033 765 10 0 54.1613 -26.9495 94.15 - 11 99.9532 1170 9 1 54.1158 -26.868 65.55 - 11 111.474 765 9 0 54.1158 -26.8667 64.15 - 11 145.422 1170 8 1 54.116 -26.8435 35.55 - 11 106.323 766 8 0 54.1167 -26.8392 34.15 - 11 107.787 1170 7 1 54.1328 -26.7568 5.55 - 11 155.487 766 7 0 54.1342 -26.7528 4.15 - 11 168.833 1170 6 1 54.1594 -26.6633 -24.45 - 11 138.007 766 6 0 54.1623 -26.6595 -25.85 - 11 99.7736 1170 5 1 54.2328 -26.582 -54.45 - 11 135.845 767 5 0 54.2319 -26.5814 -55.85 - 11 141.121 1170 4 1 54.2112 -26.5699 -84.45 - 11 123.258 767 4 0 54.2114 -26.5701 -85.85 - 11 164.896 1170 3 1 54.2306 -26.5783 -114.45 - 11 105.391 767 3 0 54.2332 -26.5832 -115.85 - 11 123.356 1171 2 1 54.3025 -26.6871 -144.45 - 11 115.665 766 2 0 54.3067 -26.6969 -145.85 - 11 128.024 1171 1 1 54.3914 -26.9081 -174.45 - 11 174.466 765 1 0 54.392 -26.9171 -175.85 - 11 125.381 1171 0 1 54.4033 -27.1062 -204.45 - 11 123.378 764 0 0 54.4073 -27.1157 -205.85 - 11 266.213 766 1 0 54.405 -26.85 -175.997 - 11 29.2947 1171 3 1 54.2502 -26.5009 -114.811 - 11 16.3646 758 3 0 55.4757 -28.4196 -115.85 - 11 280.282 757 3 0 55.4811 -28.45 -115.857 +Number of tracker hits in this event = 27 + 11 125.506 1110 9 1 42.2326 109.725 65.55 + 11 197.458 1447 9 0 42.2327 109.724 64.15 + 11 111.892 1110 8 1 42.2306 109.707 35.55 + 11 138.55 1447 8 0 42.2302 109.706 34.15 + 11 108.332 1110 7 1 42.2211 109.682 5.55 + 11 106.724 1447 7 0 42.2194 109.68 4.15 + 11 102.358 1110 6 1 42.1869 109.643 -24.45 + 11 114.292 1447 6 0 42.1849 109.642 -25.85 + 11 429.018 1110 5 1 42.1445 109.619 -54.45 + 11 120.547 1447 5 0 42.142 109.618 -55.85 + 11 139.996 1110 4 1 42.0907 109.581 -84.45 + 11 95.587 1447 4 0 42.0887 109.579 -85.85 + 11 134.184 1109 3 1 42.0462 109.543 -114.45 + 11 162.988 1446 3 0 42.0443 109.542 -115.85 + 11 183.845 1109 2 1 42.0084 109.514 -144.45 + 11 137.717 1446 2 0 42.0067 109.512 -145.85 + 11 104.466 1109 1 1 41.9713 109.466 -174.45 + 11 131.563 1446 1 0 41.9694 109.464 -175.85 + 11 185.408 1109 0 1 41.9306 109.427 -204.45 + 11 134.66 1446 0 0 41.9287 109.426 -205.85 + 11 16.3855 882 7 1 -3.49696 -63.5104 5.20208 + 11 27.5832 1118 1 1 43.773 103.7 -174.45 + 11 69.7524 1341 0 0 -58.9605 88.3802 -206.25 + 11 66.7829 1203 5 1 60.7581 -7.48907 -54.7094 + 11 29.546 1483 9 1 116.854 76.5836 65.3345 + 11 17.8558 1396 3 0 -22.4725 99.4205 -116.105 + 11 45.884 1109 5 1 42.05 109.734 -54.517 Number of digits in this event = 17 Using G4ParticleGun ... -3.12499 LIN +4.98023 LIN proton Event: 12 -Number of tracker hits in this event = 217 - 12 100.406 1021 11 0 79.8919 24.2589 124.15 - 12 175.509 1299 10 1 79.8894 24.258 95.55 - 12 96.8245 1021 10 0 79.8864 24.2582 94.15 - 12 224.918 1298 9 1 79.8169 24.2606 65.55 - 12 103.856 1021 9 0 79.8146 24.2596 64.15 - 12 17623.9 1298 8 1 79.7609 24.2371 35.55 - 12 8865.17 1297 8 1 79.65 24.2322 35.395 - 12 254.352 1296 8 1 79.45 24.348 35.2931 - 12 434.141 901 9 0 91.2862 0.311833 63.75 - 12 1278.48 900 9 0 91.3161 0.25 63.8235 - 12 1568.97 1358 9 1 91.8479 -0.879845 65.15 - 12 841.995 1359 9 1 91.95 -1.09591 65.4042 - 12 1477.29 756 10 0 109.641 -28.7721 93.75 - 12 5307.5 755 10 0 109.691 -28.85 93.8296 - 12 297.89 1299 8 1 79.85 24.1981 35.192 - 12 861.38 1019 8 0 80.2946 24.0051 34.15 - 12 291.705 1361 7 1 92.4278 18.5268 5.55 - 12 106.058 1362 7 1 92.55 18.4754 5.26701 - 12 118.818 991 7 0 93.0243 18.2766 4.15 - 12 242.998 990 7 0 93.0878 18.25 4.00046 - 12 309.349 1424 6 1 105.029 13.2457 -24.45 - 12 136.545 1425 6 1 105.15 13.194 -24.733 - 12 429.682 964 6 0 105.623 12.9868 -25.85 - 12 406.482 1487 5 1 117.604 7.69519 -54.45 - 12 52.4142 1488 5 1 117.75 7.63722 -54.7897 - 12 1.63023 937 5 0 118.206 7.45071 -55.85 - 12 420.572 936 5 0 118.208 7.45 -55.854 - 12 0.245002 1551 4 1 130.55 2.32489 -84.45 - 12 431.052 1552 4 1 130.55 2.32479 -84.4505 - 12 31.1748 910 4 0 131.151 2.053 -85.85 - 12 423.292 909 4 0 131.157 2.05 -85.8654 - 12 279.793 1616 3 1 143.481 -3.50164 -114.45 - 12 302.039 1617 3 1 143.55 -3.53258 -114.601 - 12 318.038 881 3 0 144.111 -3.78557 -115.85 - 12 66.0556 880 3 0 144.255 -3.85 -116.169 - 12 283.426 1684 2 1 157.015 -9.59967 -144.45 - 12 124.626 1685 2 1 157.15 -9.66266 -144.742 - 12 744.929 850 2 0 157.661 -9.90215 -145.85 - 12 60.1361 1753 1 1 170.931 -16.1095 -174.45 - 12 459.245 1754 1 1 170.95 -16.1166 -174.49 - 12 488.781 818 1 0 171.602 -16.3585 -175.85 - 12 65.1653 1020 8 0 80.6968 24.0594 34.15 - 12 225.443 1410 7 1 102.205 20.0211 5.55 - 12 203.018 1411 7 1 102.35 19.9888 5.35158 - 12 400.667 998 7 0 103.23 19.7951 4.15 - 12 67.9376 1518 6 1 123.904 15.1786 -24.45 - 12 237.051 1519 6 1 123.95 15.1681 -24.5138 - 12 46.6548 1520 6 1 124.15 15.1224 -24.7916 - 12 448.848 974 6 0 124.919 14.9469 -25.85 - 12 219.296 1628 5 1 145.819 10.2243 -54.45 - 12 190.127 1629 5 1 145.95 10.194 -54.6352 - 12 413.243 949 5 0 146.812 10.0006 -55.85 - 12 193.124 1735 4 1 167.218 5.61886 -84.45 - 12 186.205 1736 4 1 167.35 5.58998 -84.6365 - 12 373.101 926 4 0 168.212 5.40196 -85.85 - 12 50.6149 1134 9 0 25.0652 46.9409 63.75 - 12 145.948 1135 9 0 24.8733 47.05 63.8433 - 12 68.4603 1136 9 0 24.5124 47.25 64.0232 - 12 124.093 1012 9 1 22.5468 48.2025 65.15 - 12 71.4367 1011 9 1 22.45 48.2483 65.2068 - 12 87.7657 1010 9 1 22.25 48.3375 65.316 - 12 216.493 1009 9 1 22.05 48.4439 65.445 - 12 20.0608 1081 10 0 24.3323 36.2919 93.75 - 12 126.893 1080 10 0 24.3379 36.25 93.8415 - 12 129.788 1020 10 1 24.2076 35.6352 95.15 - 12 82.2625 989 11 0 51.665 17.958 123.75 - 12 90.0049 988 11 0 51.8439 17.85 123.926 - 12 93.4471 1166 11 1 53.2628 17.1382 125.15 - 12 155.85 1167 11 1 53.45 16.9996 125.366 - 12 107.903 977 12 0 72.7787 15.5872 153.75 - 12 97.775 1266 12 1 73.3152 15.5588 155.15 - 12 49.8978 1267 12 1 73.4501 15.5347 155.418 - 12 175.303 1008 9 1 21.8499 48.5827 65.3636 - 12 66.5336 1334 8 1 86.8943 13.1888 35.55 - 12 103.532 1335 8 1 87.05 12.956 35.539 - 12 97.1133 1336 8 1 87.25 12.6559 35.5219 - 12 129.252 1337 8 1 87.45 12.354 35.5066 - 12 101.419 1338 8 1 87.65 12.051 35.4912 - 12 97.9498 1339 8 1 87.85 11.7501 35.4781 - 12 148.979 1340 8 1 88.05 11.4481 35.4656 - 12 160.461 1341 8 1 88.25 11.1411 35.4511 - 12 107.646 1342 8 1 88.45 10.8327 35.435 - 12 182.804 1343 8 1 88.65 10.5237 35.4199 - 12 264.154 1344 8 1 88.85 10.2151 35.4048 - 12 353.031 1345 8 1 89.05 9.90732 35.392 - 12 239.49 1346 8 1 89.25 9.59724 35.3796 - 12 112.521 1347 8 1 89.45 9.28978 35.3672 - 12 117.096 1348 8 1 89.65 8.9839 35.358 - 12 99.0034 1349 8 1 89.85 8.67522 35.3477 - 12 127.868 1350 8 1 90.15 8.21274 35.3318 - 12 104.473 1351 8 1 90.35 7.90492 35.3204 - 12 99.4956 1352 8 1 90.55 7.59169 35.3101 - 12 120.951 1353 8 1 90.75 7.27685 35.2999 - 12 145.449 1354 8 1 90.95 6.96553 35.2904 - 12 119.372 1355 8 1 91.15 6.65585 35.28 - 12 94.8845 1356 8 1 91.35 6.34353 35.2701 - 12 128.022 1357 8 1 91.55 6.02823 35.2617 - 12 124.16 1358 8 1 91.75 5.71039 35.2528 - 12 126.133 1359 8 1 91.95 5.39289 35.2454 - 12 119.284 1360 8 1 92.15 5.07264 35.2347 - 12 101.302 1361 8 1 92.35 4.75441 35.2222 - 12 124.522 1362 8 1 92.55 4.43797 35.2103 - 12 105.795 1363 8 1 92.75 4.12532 35.2006 - 12 153.045 1364 8 1 92.95 3.8143 35.1908 - 12 143.047 1365 8 1 93.15 3.50076 35.18 - 12 110.669 1366 8 1 93.35 3.18901 35.1684 - 12 68.1449 1367 8 1 93.55 2.87525 35.1564 - 12 37.7448 772 8 0 111.553 -25.5136 34.15 - 12 71.7043 771 8 0 111.639 -25.65 34.1452 - 12 61.9105 770 8 0 111.767 -25.85 34.1367 - 12 70.2994 769 8 0 111.893 -26.05 34.1285 - 12 78.4895 768 8 0 112.019 -26.25 34.121 - 12 68.3763 767 8 0 112.145 -26.45 34.1138 - 12 155.174 766 8 0 112.272 -26.65 34.1062 - 12 81.3499 765 8 0 112.399 -26.85 34.0989 - 12 65.1819 764 8 0 112.527 -27.05 34.0914 - 12 60.859 763 8 0 112.656 -27.25 34.085 - 12 66.4351 762 8 0 112.784 -27.45 34.0794 - 12 78.397 761 8 0 112.913 -27.65 34.0739 - 12 62.5937 760 8 0 113.043 -27.85 34.0683 - 12 61.061 759 8 0 113.172 -28.05 34.0628 - 12 69.2051 758 8 0 113.301 -28.25 34.0564 - 12 79.9214 757 8 0 113.438 -28.45 34.0526 - 12 85.963 756 8 0 113.573 -28.65 34.0491 - 12 76.135 755 8 0 113.707 -28.85 34.044 - 12 71.5283 754 8 0 113.842 -29.05 34.0398 - 12 68.0876 753 8 0 113.978 -29.25 34.0357 - 12 93.9963 752 8 0 114.114 -29.45 34.0322 - 12 97.0374 751 8 0 114.25 -29.65 34.0298 - 12 64.0353 750 8 0 114.387 -29.85 34.0276 - 12 64.7996 749 8 0 114.523 -30.05 34.0252 - 12 63.6141 748 8 0 114.656 -30.25 34.022 - 12 60.7578 747 8 0 114.788 -30.45 34.0141 - 12 91.1548 746 8 0 114.921 -30.65 34.0062 - 12 80.9513 745 8 0 115.053 -30.85 33.9988 - 12 65.2591 744 8 0 115.187 -31.05 33.9914 - 12 68.4641 743 8 0 115.32 -31.25 33.9827 - 12 71.5708 742 8 0 115.453 -31.45 33.9746 - 12 64.3905 741 8 0 115.585 -31.65 33.9662 - 12 62.0534 740 8 0 115.716 -31.85 33.9586 - 12 114.646 739 8 0 115.848 -32.05 33.9511 - 12 60.9404 738 8 0 115.979 -32.25 33.9439 - 12 126.708 737 8 0 116.112 -32.45 33.9365 - 12 90.989 736 8 0 116.245 -32.65 33.9295 - 12 61.6286 735 8 0 116.378 -32.85 33.9234 - 12 64.6925 734 8 0 116.512 -33.05 33.9173 - 12 79.0644 733 8 0 116.646 -33.25 33.9113 - 12 71.6395 732 8 0 116.781 -33.45 33.905 - 12 133.513 731 8 0 116.916 -33.65 33.8986 - 12 108.431 730 8 0 117.056 -33.85 33.8924 - 12 77.7827 729 8 0 117.196 -34.05 33.8866 - 12 64.1509 728 8 0 117.336 -34.25 33.881 - 12 89.3379 727 8 0 117.478 -34.45 33.876 - 12 85.7653 726 8 0 117.618 -34.65 33.8701 - 12 64.9013 725 8 0 117.759 -34.85 33.8645 - 12 63.2311 724 8 0 117.9 -35.05 33.8586 - 12 57.7172 723 8 0 118.041 -35.25 33.8532 - 12 82.33 722 8 0 118.184 -35.45 33.8486 - 12 63.5063 721 8 0 118.327 -35.65 33.8455 - 12 65.7261 720 8 0 118.47 -35.85 33.8419 - 12 66.0961 719 8 0 118.614 -36.05 33.8386 - 12 135.357 718 8 0 118.759 -36.25 33.8323 - 12 56.3005 717 8 0 118.904 -36.45 33.827 - 12 81.2318 716 8 0 119.047 -36.65 33.8205 - 12 70.892 715 8 0 119.192 -36.85 33.8149 - 12 65.7513 714 8 0 119.338 -37.05 33.8096 - 12 72.1584 713 8 0 119.484 -37.25 33.803 - 12 71.0955 712 8 0 119.63 -37.45 33.7968 - 12 71.6707 711 8 0 119.776 -37.65 33.7909 - 12 69.6048 710 8 0 119.922 -37.85 33.7852 - 12 66.9231 709 8 0 120.066 -38.05 33.7791 - 12 143.504 708 8 0 120.209 -38.25 33.7731 - 12 77.4401 707 8 0 120.353 -38.45 33.768 - 12 93.7502 706 8 0 120.497 -38.65 33.7621 - 12 80.689 705 8 0 120.641 -38.85 33.7569 - 12 17.0791 704 8 0 120.788 -39.05 33.7512 - 12 77.1951 956 8 0 88.9845 11.3357 34.1499 - 12 169.675 957 8 0 89.1071 11.45 34.071 - 12 66.7529 958 8 0 89.1682 11.65 34.0379 - 12 21.6231 1384 8 1 96.95 -2.28927 35.3626 - 12 69.6805 813 9 0 3.99728 -17.25 63.9475 - 12 50.9091 703 8 0 117.241 -39.25 34.0432 - 12 90.2281 702 8 0 117.448 -39.4501 34.0108 - 12 424.225 701 8 0 117.623 -39.65 34.0348 - 12 39.6638 700 8 0 117.749 -39.85 34.0133 - 12 47.7183 1493 8 1 118.901 -39.6548 35.1503 - 12 112.531 1494 8 1 118.95 -39.6771 35.1976 - 12 36.147 1329 8 1 85.9996 14.6646 35.55 - 12 69.0318 1330 8 1 86.05 14.6154 35.4966 - 12 334.626 1331 8 1 86.25 14.5727 35.4793 - 12 282.277 1332 8 1 86.45 14.5368 35.5375 - 12 197.895 983 9 0 95.1393 16.7992 63.75 - 12 28.5497 1378 9 1 95.9004 16.4337 65.15 - 12 115.45 1379 9 1 95.95 16.4099 65.2412 - 12 92.8593 943 10 0 111.706 8.73038 93.75 - 12 156.401 942 10 0 111.871 8.65 94.0482 - 12 261.705 1461 10 1 112.478 8.35314 95.15 - 12 492.839 1462 10 1 112.55 8.31842 95.2803 - 12 136.455 900 11 0 128.756 0.217319 123.75 - 12 120.162 1547 11 1 129.556 -0.181079 125.15 - 12 21.0722 1548 11 1 129.75 -0.275829 125.487 - 12 170.336 859 12 0 146.363 -8.09263 153.75 - 12 148.319 1635 12 1 147.183 -8.47287 155.15 - 12 31.6732 1636 12 1 147.35 -8.55003 155.436 - 12 207.409 817 13 0 164.25 -16.4852 183.75 - 12 36.9034 1724 13 1 165.085 -16.8775 185.15 - 12 151.411 1725 13 1 165.15 -16.9079 185.259 - 12 208.705 1546 11 1 129.55 -0.184338 125.192 - 12 206.717 1463 10 1 112.75 6.90592 95.5414 - 12 45.7148 927 10 0 113.348 5.59709 94.15 - 12 91.1764 926 10 0 113.346 5.45 94.1075 - 12 125.215 925 10 0 113.299 5.25 94.1464 - 12 369.879 924 10 0 113.076 5.05 94.0704 - 12 84.2683 1469 10 1 114.143 5.54949 95.1502 - 12 42.7187 1468 10 1 113.86 4.14847 95.15 - 12 14.51 923 10 0 115.057 4.67887 94.15 - 12 10.1289 1470 10 1 114.346 5.18741 95.15 -Number of digits in this event = 89 +Number of tracker hits in this event = 18 + 12 112.385 212 8 1 -137.717 4.84536 35.55 + 12 116.782 923 8 0 -137.718 4.84621 34.15 + 12 110.54 212 7 1 -137.745 4.88453 5.55 + 12 153.444 924 7 0 -137.746 4.88687 4.15 + 12 182.083 211 6 1 -137.76 4.93839 -24.45 + 12 111.109 924 6 0 -137.764 4.93915 -25.85 + 12 95.0574 211 5 1 -137.842 4.95359 -54.45 + 12 111.74 924 5 0 -137.846 4.95486 -55.85 + 12 110.965 211 4 1 -137.927 4.98385 -84.45 + 12 92.4051 924 4 0 -137.931 4.9857 -85.85 + 12 144.203 210 3 1 -137.998 5.0213 -114.45 + 12 130.113 924 3 0 -138.002 5.02243 -115.85 + 12 179.262 210 2 1 -138.097 5.04227 -144.45 + 12 123.432 924 2 0 -138.101 5.04411 -145.85 + 12 112.035 209 1 1 -138.181 5.08208 -174.45 + 12 100.441 925 1 0 -138.184 5.08235 -175.85 + 12 84.3144 209 0 1 -138.261 5.08636 -204.45 + 12 112.512 925 0 0 -138.263 5.08858 -205.85 +Number of digits in this event = 7 Using G4ParticleGun ... -6.32928 LIN +9.95725 LIN proton Event: 13 -Number of tracker hits in this event = 18 - 13 103.272 665 8 1 -46.9667 128.083 35.55 - 13 155.228 1539 8 0 -46.9663 128.082 34.15 - 13 123 665 7 1 -46.9593 128.07 5.55 - 13 99.2746 1539 7 0 -46.959 128.07 4.15 - 13 149.867 665 6 1 -46.9568 128.066 -24.45 - 13 118.581 1539 6 0 -46.9563 128.067 -25.85 - 13 121.864 665 5 1 -46.9442 128.078 -54.45 - 13 112.688 1539 5 0 -46.9429 128.078 -55.85 - 13 120.754 665 4 1 -46.9148 128.079 -84.45 - 13 85.7102 1539 4 0 -46.9139 128.078 -85.85 - 13 127.246 665 3 1 -46.8995 128.068 -114.45 - 13 91.3677 1539 3 0 -46.8989 128.068 -115.85 - 13 139.876 665 2 1 -46.8818 128.067 -144.45 - 13 117.321 1539 2 0 -46.8827 128.067 -145.85 - 13 123.401 665 1 1 -46.9052 128.07 -174.45 - 13 127.515 1539 1 0 -46.9066 128.069 -175.85 - 13 140.623 665 0 1 -46.9332 128.063 -204.45 - 13 174.412 1539 0 0 -46.9339 128.063 -205.85 -Number of digits in this event = 12 +Number of tracker hits in this event = 22 + 13 130.57 1225 10 1 65.1447 -93.5843 95.55 + 13 114.895 432 10 0 65.1445 -93.5849 94.15 + 13 90.3536 1225 9 1 65.141 -93.5983 65.55 + 13 124.069 432 9 0 65.1409 -93.5989 64.15 + 13 117.523 1225 8 1 65.14 -93.609 35.55 + 13 109.091 432 8 0 65.1401 -93.6096 34.15 + 13 107.146 1225 7 1 65.1424 -93.6257 5.55 + 13 125.3 432 7 0 65.1423 -93.6277 4.15 + 13 306.887 1225 6 1 65.1346 -93.6778 -24.45 + 13 123.862 432 6 0 65.1332 -93.6809 -25.85 + 13 106.418 1225 5 1 65.1065 -93.7447 -54.45 + 13 99.7262 432 5 0 65.1053 -93.7471 -55.85 + 13 118.587 1225 4 1 65.0812 -93.7938 -84.45 + 13 162.597 431 4 0 65.0795 -93.796 -85.85 + 13 108.536 1224 3 1 65.0428 -93.8365 -114.45 + 13 114.764 431 3 0 65.0413 -93.8392 -115.85 + 13 105.17 1224 2 1 65.0104 -93.8962 -144.45 + 13 113.319 431 2 0 65.0085 -93.8988 -145.85 + 13 142.513 1224 1 1 64.9716 -93.9494 -174.45 + 13 114.022 430 1 0 64.9701 -93.9507 -175.85 + 13 108.977 1224 0 1 64.9382 -93.977 -204.45 + 13 101.68 430 0 0 64.9367 -93.9789 -205.85 +Number of digits in this event = 8 Using G4ParticleGun ... -7.66505 LIN +6.79855 LIN proton Event: 14 -Number of tracker hits in this event = 33 - 14 131.537 618 9 1 -56.2564 -114.641 65.55 - 14 135.984 327 9 0 -56.2569 -114.641 64.15 - 14 108.894 618 8 1 -56.2635 -114.639 35.55 - 14 105.025 327 8 0 -56.2632 -114.638 34.15 - 14 217.837 618 7 1 -56.2602 -114.623 5.55 - 14 106.606 327 7 0 -56.2605 -114.622 4.15 - 14 119.74 618 6 1 -56.2657 -114.613 -24.45 - 14 143.896 327 6 0 -56.2655 -114.612 -25.85 - 14 111.953 618 5 1 -56.2539 -114.602 -54.45 - 14 111.85 327 5 0 -56.2544 -114.602 -55.85 - 14 209.967 618 4 1 -56.2655 -114.594 -84.45 - 14 431.209 327 4 0 -56.2662 -114.593 -85.85 - 14 118.618 618 3 1 -56.2789 -114.567 -114.45 - 14 96.2568 327 3 0 -56.2789 -114.566 -115.85 - 14 107.678 618 2 1 -56.2759 -114.531 -144.45 - 14 114.965 328 2 0 -56.2763 -114.529 -145.85 - 14 108.517 618 1 1 -56.2845 -114.505 -174.45 - 14 102.773 328 1 0 -56.2849 -114.505 -175.85 - 14 102.268 618 0 1 -56.2939 -114.502 -204.45 - 14 148.466 328 0 0 -56.2936 -114.503 -205.85 - 14 120.155 1431 4 1 106.516 -180.061 -84.8022 - 14 27.4462 872 9 0 -68.5439 -5.59144 63.75 - 14 9.06239 871 9 0 -68.5377 -5.65 64.0394 - 14 60.7069 483 1 1 -83.3356 -47.6463 -174.45 - 14 8.84532 619 4 1 -56.2423 -114.585 -84.45 - 14 77.1314 565 3 1 -66.9858 -112.133 -114.45 - 14 41.9209 564 3 1 -67.05 -112.207 -114.737 - 14 112.714 338 3 0 -67.2754 -112.381 -115.85 - 14 109.069 512 2 1 -77.5542 -114.768 -144.45 - 14 56.9385 511 2 1 -77.6501 -114.862 -144.759 - 14 53.1835 324 2 0 -78.0891 -115.294 -145.85 - 14 74.4465 323 2 0 -78.1505 -115.35 -146.01 - 14 48.3853 326 4 0 -56.451 -114.75 -86.0442 -Number of digits in this event = 12 +Number of tracker hits in this event = 41 + 14 29.6472 1470 10 0 -25.1037 114.276 93.8661 + 14 108.543 774 9 1 -25.1032 114.277 65.55 + 14 112.425 1470 9 0 -25.1028 114.277 64.15 + 14 171.988 774 8 1 -25.0965 114.285 35.55 + 14 184.382 1470 8 0 -25.0961 114.287 34.15 + 14 125.881 774 7 1 -25.0847 114.325 5.55 + 14 111.107 1470 7 0 -25.0836 114.327 4.15 + 14 197.066 774 6 1 -25.0595 114.359 -24.45 + 14 112.453 1471 6 0 -25.0582 114.361 -25.85 + 14 152.974 775 5 1 -25.0331 114.401 -54.45 + 14 212.921 1471 5 0 -25.03 114.402 -55.85 + 14 222.587 775 4 1 -24.9692 114.417 -84.45 + 14 133.407 1471 4 0 -24.9661 114.418 -85.85 + 14 101.246 775 3 1 -24.9033 114.435 -114.45 + 14 90.0132 1471 3 0 -24.9013 114.436 -115.85 + 14 102.705 775 2 1 -24.8565 114.446 -144.45 + 14 143.038 1471 2 0 -24.8546 114.446 -145.85 + 14 142.88 776 1 1 -24.8156 114.44 -174.45 + 14 286.405 1471 1 0 -24.8146 114.44 -175.85 + 14 98.5898 776 0 1 -24.7909 114.446 -204.45 + 14 133.078 1471 0 0 -24.7902 114.446 -205.85 + 14 69.8096 775 1 1 -24.85 114.484 -174.725 + 14 38.8143 1472 1 0 -25.674 114.724 -175.85 + 14 74.7993 1473 1 0 -25.7521 114.75 -175.968 + 14 86.4681 773 8 1 -25.25 114.336 35.4587 + 14 79.0781 772 8 1 -25.4502 114.451 35.3306 + 14 72.4668 771 8 1 -25.651 114.58 35.2886 + 14 57.7163 770 8 1 -25.85 114.717 35.3112 + 14 58.4149 769 8 1 -26.0501 114.785 35.3446 + 14 157.666 768 8 1 -26.25 114.853 35.4151 + 14 87.3821 767 8 1 -26.45 114.896 35.4925 + 14 82.1463 766 8 1 -26.65 114.955 35.4894 + 14 50.7041 765 8 1 -26.85 114.981 35.484 + 14 70.5188 764 8 1 -27.05 114.992 35.4158 + 14 43.9169 763 8 1 -27.25 114.931 35.2391 + 14 231.577 1469 8 0 -28.9336 114.15 34.0219 + 14 12.5653 1521 8 0 -69.8288 124.538 33.7505 + 14 114.151 1522 8 0 -69.8529 124.55 33.7852 + 14 125.23 549 8 1 -70.1993 124.22 35.1501 + 14 229.926 548 8 1 -70.2549 124.063 35.5495 + 14 406.827 547 8 1 -70.45 123.597 35.276 +Number of digits in this event = 18 Using G4ParticleGun ... -5.4717 LIN +9.90917 LIN proton Event: 15 -Number of tracker hits in this event = 36 - 15 110.661 301 8 1 -119.778 -70.0391 35.55 - 15 102.37 550 8 0 -119.776 -70.0389 34.15 - 15 113.693 302 7 1 -119.749 -70.0385 5.55 - 15 129.888 550 7 0 -119.746 -70.038 4.15 - 15 133.615 302 6 1 -119.686 -70.0268 -24.45 - 15 129.172 550 6 0 -119.682 -70.0267 -25.85 - 15 155.4 302 5 1 -119.605 -70.0239 -54.45 - 15 88.3609 550 5 0 -119.601 -70.0238 -55.85 - 15 130.629 303 4 1 -119.528 -70.0222 -84.45 - 15 208.296 550 4 0 -119.525 -70.0218 -85.85 - 15 107.561 303 3 1 -119.461 -70.0091 -114.45 - 15 104.262 550 3 0 -119.458 -70.0079 -115.85 - 15 101.149 303 2 1 -119.378 -69.9899 -144.45 - 15 107.999 550 2 0 -119.374 -69.9901 -145.85 - 15 206.875 304 1 1 -119.281 -69.99 -174.45 - 15 152.171 550 1 0 -119.277 -69.9899 -175.85 - 15 134.182 304 0 1 -119.194 -69.9864 -204.45 - 15 132.429 550 0 0 -119.191 -69.9866 -205.85 - 15 34.4185 75 0 1 -165.013 -58.0807 -204.45 - 15 177.061 76 0 1 -164.95 -58.0769 -204.497 - 15 168.043 167 1 1 -146.717 -114.154 -174.85 - 15 47.4859 52 1 1 -169.55 -114.517 -174.68 - 15 68.3014 166 1 1 -146.75 -113.959 -174.649 - 15 96.1435 165 1 1 -146.95 -113.794 -174.734 - 15 139.367 341 1 0 -148.305 -111.903 -175.85 - 15 101.649 342 1 0 -148.407 -111.75 -175.926 - 15 197.032 343 1 0 -148.633 -111.55 -176.098 - 15 188.034 344 1 0 -148.832 -111.35 -176.086 - 15 110.265 3 1 0 -139.743 -179.444 -176.25 - 15 88.6905 2 1 0 -139.635 -179.55 -176.196 - 15 137.877 1583 3 0 -107.587 136.753 -115.942 - 15 166.682 1105 5 0 110.334 41.2103 -56.2496 - 15 27.5966 1106 5 0 110.735 41.25 -56.1908 - 15 283.011 1113 5 0 75.3817 42.7631 -56.25 - 15 127.66 1112 5 0 75.6093 42.65 -55.9362 - 15 48.3885 1270 7 0 120.52 74.1299 3.75 -Number of digits in this event = 22 +Number of tracker hits in this event = 51 + 15 276.564 985 8 1 17.2103 144.244 35.55 + 15 98.2533 1620 8 0 17.211 144.244 34.15 + 15 153.656 985 7 1 17.2287 144.241 5.55 + 15 107.483 1620 7 0 17.2288 144.241 4.15 + 15 123.121 985 6 1 17.2309 144.239 -24.45 + 15 119.923 1620 6 0 17.2303 144.24 -25.85 + 15 98.7543 985 5 1 17.2203 144.262 -54.45 + 15 99.9929 1620 5 0 17.2189 144.264 -55.85 + 15 130.401 985 4 1 17.1883 144.29 -84.45 + 15 230.05 1620 4 0 17.1871 144.291 -85.85 + 15 195.408 985 3 1 17.1625 144.31 -114.45 + 15 98.855 1620 3 0 17.1617 144.311 -115.85 + 15 118.231 985 2 1 17.1443 144.319 -144.45 + 15 149.994 1620 2 0 17.1434 144.319 -145.85 + 15 125.731 985 1 1 17.1256 144.331 -174.45 + 15 131.748 1620 1 0 17.1245 144.332 -175.85 + 15 129.917 985 0 1 17.1018 144.351 -204.45 + 15 101.772 1621 0 0 17.1009 144.353 -205.85 + 15 91.9267 986 4 1 17.25 144.201 -84.5257 + 15 34.5043 987 4 1 17.45 144.007 -84.7577 + 15 49.6108 1612 4 0 18.7057 142.661 -85.85 + 15 90.4911 1611 4 0 18.8214 142.55 -85.9313 + 15 70.9526 1610 4 0 19.0161 142.35 -85.9589 + 15 51.0702 1609 4 0 19.1232 142.15 -85.9194 + 15 71.1801 1608 4 0 19.1962 141.95 -85.8772 + 15 98.0252 1009 4 1 21.9071 135.994 -84.85 + 15 118.845 1010 4 1 22.05 135.753 -84.825 + 15 97.3701 1011 4 1 22.25 135.37 -84.8235 + 15 141.169 1012 4 1 22.45 135.07 -84.8219 + 15 196.173 1013 4 1 22.6502 134.67 -84.7664 + 15 352.205 1014 4 1 22.85 134.292 -84.6359 + 15 314.281 1015 4 1 23.05 133.314 -84.4947 + 15 51.9479 1550 4 0 23.0437 130.231 -85.85 + 15 45.3384 1549 4 0 23.0453 130.15 -85.8753 + 15 69.4025 1548 4 0 23.0599 129.95 -85.8991 + 15 43.4531 1547 4 0 23.0707 129.75 -85.9279 + 15 56.1377 1546 4 0 23.092 129.55 -85.9659 + 15 86.1529 1545 4 0 23.1111 129.35 -86.0646 + 15 75.5915 1544 4 0 23.1079 129.15 -86.1334 + 15 46.3476 1543 4 0 23.0893 128.95 -86.2068 + 15 11.4319 1542 4 0 23.0646 128.75 -86.2423 + 15 135.748 1187 4 0 23.1478 57.5941 -86.25 + 15 112.001 984 7 1 17.05 144.119 5.43256 + 15 171.436 983 7 1 16.8499 143.789 5.30788 + 15 74.3044 982 7 1 16.65 143.288 5.18352 + 15 104.211 981 7 1 16.45 143.209 5.17998 + 15 69.7141 980 7 1 16.25 143.016 5.24842 + 15 33.094 1599 7 0 15.4205 140.137 4.14969 + 15 116.74 972 7 1 14.5142 137.062 5.15001 + 15 112.757 971 7 1 14.45 136.937 5.34812 + 15 229.36 970 7 1 14.231 136.947 5.55 +Number of digits in this event = 18 Using G4ParticleGun ... -1.66631 LIN +7.37273 LIN proton Event: 16 -Number of tracker hits in this event = 19 - 16 108.745 1395 8 1 99.212 -95.4719 35.55 - 16 170.632 423 8 0 99.2073 -95.468 34.15 - 16 224.476 1394 7 1 99.1097 -95.3839 5.55 - 16 116.174 423 7 0 99.105 -95.3765 4.15 - 16 139.843 1394 6 1 98.9964 -95.2238 -24.45 - 16 125.075 424 6 0 98.9965 -95.2146 -25.85 - 16 127.74 1394 5 1 98.9876 -95.0291 -54.45 - 16 148.084 425 5 0 98.9849 -95.0205 -55.85 - 16 109.952 1393 4 1 98.9303 -94.8529 -84.45 - 16 217.166 426 4 0 98.9288 -94.8488 -85.85 - 16 145.587 1393 3 1 98.9079 -94.7669 -114.45 - 16 129.482 426 3 0 98.9125 -94.7615 -115.85 - 16 111.379 1394 2 1 99.0002 -94.6325 -144.45 - 16 227.831 427 2 0 99.0055 -94.6254 -145.85 - 16 114.83 1394 1 1 99.1063 -94.4614 -174.45 - 16 142.386 428 1 0 99.1142 -94.4563 -175.85 - 16 258.081 1395 0 1 99.2781 -94.3511 -204.45 - 16 119.659 429 0 0 99.2861 -94.346 -205.85 - 16 93.1623 427 4 0 98.9165 -94.75 -86.1137 -Number of digits in this event = 13 +Number of tracker hits in this event = 26 + 16 132.988 1262 9 1 72.6038 105.726 65.55 + 16 164.834 1427 9 0 72.604 105.727 64.15 + 16 100.573 1262 8 1 72.6067 105.728 35.55 + 16 134.833 1427 8 0 72.6054 105.727 34.15 + 16 90.5165 1262 7 1 72.5783 105.711 5.55 + 16 185.38 1427 7 0 72.5784 105.709 4.15 + 16 113.824 1262 6 1 72.5707 105.682 -24.45 + 16 112.573 1427 6 0 72.5705 105.68 -25.85 + 16 108.441 1262 5 1 72.566 105.646 -54.45 + 16 272.299 1427 5 0 72.5655 105.645 -55.85 + 16 114.227 1262 4 1 72.5555 105.639 -84.45 + 16 100.47 1427 4 0 72.5544 105.639 -85.85 + 16 175.728 1262 3 1 72.5285 105.635 -114.45 + 16 233.339 1427 3 0 72.5274 105.635 -115.85 + 16 117.036 1262 2 1 72.5084 105.642 -144.45 + 16 147.452 1427 2 0 72.5075 105.641 -145.85 + 16 132.985 1262 1 1 72.4915 105.612 -174.45 + 16 104.393 1427 1 0 72.4905 105.611 -175.85 + 16 131.744 1262 0 1 72.4704 105.579 -204.45 + 16 134.661 1427 0 0 72.4687 105.577 -205.85 + 16 55.7472 44 0 0 95.2649 -171.235 -205.982 + 16 91.1044 1668 14 0 -84.0228 153.827 213.75 + 16 131.795 1667 14 0 -83.8343 153.75 213.847 + 16 54.4945 1323 6 1 84.7524 102.737 -24.45 + 16 101.91 1322 6 1 84.65 102.783 -24.5869 + 16 138.674 1413 6 0 83.7097 102.797 -25.85 +Number of digits in this event = 17 Using G4ParticleGun ... -3.61105 LIN +2.1519 LIN proton Event: 17 -Number of tracker hits in this event = 20 - 17 207.807 502 9 1 -79.5368 -89.7647 65.55 - 17 211.133 451 9 0 -79.5371 -89.7663 64.15 - 17 117.729 502 8 1 -79.54 -89.7957 35.55 - 17 281.232 451 8 0 -79.5413 -89.7974 34.15 - 17 111.206 502 7 1 -79.568 -89.8353 5.55 - 17 122.021 451 7 0 -79.5661 -89.8343 4.15 - 17 111.201 502 6 1 -79.5267 -89.8202 -24.45 - 17 108.502 451 6 0 -79.5256 -89.8198 -25.85 - 17 116.94 502 5 1 -79.5073 -89.8187 -54.45 - 17 190.413 451 5 0 -79.5074 -89.8184 -55.85 - 17 177.348 502 4 1 -79.5044 -89.8049 -84.45 - 17 109.623 451 4 0 -79.5036 -89.8039 -85.85 - 17 108.942 502 3 1 -79.4893 -89.7858 -114.45 - 17 148.166 451 3 0 -79.4909 -89.784 -115.85 - 17 110.723 502 2 1 -79.5237 -89.7436 -144.45 - 17 260.332 451 2 0 -79.5248 -89.7421 -145.85 - 17 99.0305 502 1 1 -79.5464 -89.7156 -174.45 - 17 100.368 451 1 0 -79.5475 -89.7163 -175.85 - 17 104.687 502 0 1 -79.5666 -89.7277 -204.45 - 17 96.7264 451 0 0 -79.5664 -89.7255 -205.85 -Number of digits in this event = 9 -Using G4ParticleGun ... -8.77949 LIN -proton -Event: 18 -Number of tracker hits in this event = 65 - 18 270.85 247 9 1 -130.714 -21.1842 65.55 - 18 284.248 794 9 0 -130.714 -21.1842 64.15 - 18 96.2114 247 8 1 -130.712 -21.183 35.55 - 18 105.546 794 8 0 -130.712 -21.183 34.15 - 18 123.448 247 7 1 -130.713 -21.1824 5.55 - 18 134.496 794 7 0 -130.712 -21.1819 4.15 - 18 165.716 247 6 1 -130.703 -21.169 -24.45 - 18 560.221 794 6 0 -130.703 -21.1678 -25.85 - 18 153.468 247 5 1 -130.697 -21.1409 -54.45 - 18 101.199 794 5 0 -130.686 -21.1253 -55.85 - 18 102.013 248 4 1 -130.464 -20.8094 -84.45 - 18 111.825 796 4 0 -130.453 -20.7941 -85.85 - 18 114.814 249 3 1 -130.234 -20.4844 -114.45 - 18 110.025 797 3 0 -130.224 -20.4689 -115.85 - 18 100.029 250 2 1 -130.008 -20.1483 -144.45 - 18 144.206 799 2 0 -129.997 -20.133 -145.85 - 18 182.659 251 1 1 -129.787 -19.8163 -174.45 - 18 106.199 801 1 0 -129.777 -19.8005 -175.85 - 18 107.326 252 0 1 -129.57 -19.4776 -204.45 - 18 120.341 802 0 0 -129.56 -19.4613 -205.85 - 18 142.156 252 1 1 -129.75 -19.8125 -174.837 - 18 37.913 799 9 0 -130.518 -20.1385 64.15 - 18 136.335 800 9 0 -130.5 -20.05 64.0257 - 18 3.35484 801 9 0 -130.462 -19.85 63.7605 - 18 106.206 271 8 1 -125.783 1.888 35.55 - 18 35.0506 272 8 1 -125.75 1.96107 35.2315 - 18 33.2927 912 8 0 -125.72 2.57753 34.15 - 18 98.2498 913 8 0 -125.719 2.65 34.0191 - 18 46.8644 255 7 1 -129.023 15.3614 5.55 - 18 100.16 254 7 1 -129.15 15.4907 5.48816 - 18 87.1996 253 7 1 -129.35 15.7073 5.35001 - 18 35.4516 252 7 1 -129.55 15.9321 5.19979 - 18 32.3968 987 7 0 -130.884 17.5617 4.15 - 18 165.718 988 7 0 -130.958 17.65 4.08638 - 18 64.6971 989 7 0 -131.101 17.8502 3.95687 - 18 218.964 990 7 0 -131.237 18.05 3.84706 - 18 197.92 39 6 1 -172.345 66.9775 -24.4501 - 18 21.5838 1242 6 0 -171.876 68.5877 -25.8502 - 18 71.01 1243 6 0 -171.859 68.6502 -25.909 - 18 53.9879 1244 6 0 -171.849 68.85 -26.1281 - 18 26.9631 48 5 1 -170.55 -46.7986 -54.6567 - 18 139.9 909 8 0 -125.502 2.00149 34.15 - 18 135.97 312 7 1 -117.679 3.50963 5.54994 - 18 30.7871 922 7 0 -117.167 4.56277 4.15 - 18 136.016 923 7 0 -117.125 4.65 4.02417 - 18 64.0138 1304 7 0 -83.5701 80.8698 3.75 - 18 69.6239 1305 7 0 -83.4802 81.05 3.83194 - 18 62.9146 1306 7 0 -83.3826 81.2501 3.91381 - 18 92.4952 1307 7 0 -83.2627 81.4502 4.02923 - 18 6.99936 489 7 1 -82.0646 82.8541 5.15 - 18 135.245 490 7 1 -82.05 82.8714 5.16422 - 18 255.086 491 7 1 -81.85 83.0968 5.31535 - 18 292.343 492 7 1 -81.65 83.3967 5.40786 - 18 316.492 493 7 1 -81.4499 83.7664 5.45573 - 18 394.911 494 7 1 -81.25 83.9811 5.49505 - 18 421.126 495 7 1 -81.05 84.1057 5.54472 - 18 43.0135 1329 7 0 -80.7768 85.9153 4.14979 - 18 108.736 1330 7 0 -80.7375 86.05 4.02996 - 18 36.4621 1331 7 0 -80.6417 86.2502 3.81504 - 18 9.42701 1347 7 0 -54.7569 89.4743 3.75 - 18 137.664 1346 7 0 -54.7548 89.45 3.78571 - 18 104.722 623 7 1 -55.3779 88.7172 5.15 - 18 158.158 622 7 1 -55.45 88.6466 5.28836 - 18 65.3278 1320 7 0 -81.5329 84.187 4.15 - 18 12.0431 1322 7 0 -81.5957 84.5745 4.15 -Number of digits in this event = 29 -Using G4ParticleGun ... -2.94627 LIN -proton -Event: 19 -Number of tracker hits in this event = 20 - 19 181.554 1115 9 1 43.243 122.184 65.55 - 19 150.687 1510 9 0 43.2407 122.184 64.15 - 19 135.44 1115 8 1 43.1926 122.173 35.55 - 19 106.549 1510 8 0 43.1903 122.173 34.15 - 19 225.244 1115 7 1 43.1496 122.169 5.55 - 19 114.627 1510 7 0 43.1476 122.168 4.15 - 19 162.595 1115 6 1 43.1062 122.148 -24.45 - 19 107.568 1509 6 0 43.1034 122.149 -25.85 - 19 98.6764 1115 5 1 43.0521 122.168 -54.45 - 19 127.037 1510 5 0 43.0497 122.173 -55.85 - 19 117.289 1114 4 1 43.006 122.263 -84.45 - 19 117.291 1510 4 0 43.0027 122.268 -85.85 - 19 113.718 1114 3 1 42.9332 122.37 -114.45 - 19 111.789 1511 3 0 42.9307 122.374 -115.85 - 19 106.985 1114 2 1 42.8773 122.462 -144.45 - 19 99.634 1511 2 0 42.8739 122.468 -145.85 - 19 102.569 1113 1 1 42.7992 122.59 -174.45 - 19 227.375 1512 1 0 42.7934 122.596 -175.85 - 19 140.548 1113 0 1 42.6678 122.717 -204.45 - 19 128.095 1512 0 0 42.6598 122.722 -205.85 -Number of digits in this event = 11 -Using G4ParticleGun ... -9.23329 LIN -proton -Event: 20 -Number of tracker hits in this event = 28 - 20 113.556 1016 10 1 23.3104 88.6575 95.55 - 20 100.195 1343 10 0 23.3109 88.6575 94.15 - 20 338.816 1016 9 1 23.3224 88.6566 65.55 - 20 115.333 1343 9 0 23.3231 88.6557 64.15 - 20 99.8944 1016 8 1 23.3358 88.6345 35.55 - 20 111.686 1342 8 0 23.3358 88.6337 34.15 - 20 102.528 1016 7 1 23.3452 88.6202 5.55 - 20 130.829 1342 7 0 23.3459 88.6193 4.15 - 20 109.44 1016 6 1 23.3599 88.6019 -24.45 - 20 123.456 1342 6 0 23.3603 88.6012 -25.85 - 20 122.258 1016 5 1 23.3704 88.5901 -54.45 - 20 104.975 1342 5 0 23.3713 88.589 -55.85 - 20 102.114 1016 4 1 23.3871 88.5677 -84.45 - 20 112.264 1342 4 0 23.3883 88.5679 -85.85 - 20 123.666 1016 3 1 23.4043 88.5672 -114.45 - 20 100.098 1342 3 0 23.4048 88.5679 -115.85 - 20 128.326 1016 2 1 23.4154 88.5844 -144.45 - 20 99.6897 1342 2 0 23.416 88.5856 -145.85 - 20 118.487 1016 1 1 23.4274 88.6118 -174.45 - 20 104.959 1342 1 0 23.4288 88.6137 -175.85 - 20 111.862 1017 0 1 23.4548 88.6531 -204.45 - 20 107.687 1343 0 0 23.4557 88.6559 -205.85 - 20 111.655 1085 8 0 -15.4809 37.1247 33.75 - 20 199.359 1084 8 0 -15.5264 37.05 33.8214 - 20 148.428 1086 8 0 -15.7586 37.25 33.9236 - 20 39.0006 1087 8 0 -15.6828 37.45 34.0917 - 20 24.3433 820 8 1 -15.8583 37.3665 35.15 - 20 178.14 821 8 1 -15.85 37.336 35.1891 -Number of digits in this event = 12 -Using G4ParticleGun ... -4.76107 LIN -proton -Event: 21 -Number of tracker hits in this event = 26 - 21 136.012 619 9 1 -56.2283 -108.854 65.55 - 21 117.862 356 9 0 -56.2284 -108.851 64.15 - 21 113.079 619 8 1 -56.2296 -108.795 35.55 - 21 131.3 356 8 0 -56.2334 -108.792 34.15 - 21 106.91 618 7 1 -56.3093 -108.745 5.55 - 21 105.61 357 7 0 -56.315 -108.742 4.15 - 21 132.225 618 6 1 -56.426 -108.685 -24.45 - 21 133.231 357 6 0 -56.4306 -108.683 -25.85 - 21 213.542 617 5 1 -56.5241 -108.633 -54.45 - 21 143.765 357 5 0 -56.5298 -108.631 -55.85 - 21 102.836 617 4 1 -56.6465 -108.585 -84.45 - 21 112.873 357 4 0 -56.6522 -108.582 -85.85 - 21 112.053 616 3 1 -56.7737 -108.515 -114.45 - 21 110.274 358 3 0 -56.7804 -108.515 -115.85 - 21 315.675 615 2 1 -56.9168 -108.518 -144.45 - 21 103.002 358 2 0 -56.9252 -108.517 -145.85 - 21 107.505 614 1 1 -57.0967 -108.497 -174.45 - 21 102.296 358 1 0 -57.1065 -108.498 -175.85 - 21 185.661 613 0 1 -57.3032 -108.517 -204.45 - 21 111.464 358 0 0 -57.3135 -108.516 -205.85 - 21 123.869 360 5 0 -57.4257 -108.119 -55.8504 - 21 27.7025 212 10 0 -24.4789 -137.7 93.75 - 21 158.572 211 10 0 -24.4262 -137.75 93.7955 - 21 437.191 775 10 1 -24.8782 -137.817 95.1511 - 21 5.44144 776 10 1 -24.85 -137.704 95.452 - 21 182.859 774 10 1 -25.05 -137.712 95.547 -Number of digits in this event = 14 -Using G4ParticleGun ... -6.9889 LIN -proton -Event: 22 -Number of tracker hits in this event = 26 - 22 108.753 1015 11 1 23.1346 76.9339 125.55 - 22 123.16 1284 11 0 23.1348 76.9342 124.15 - 22 106.919 1015 10 1 23.139 76.9447 95.55 - 22 125.265 1284 10 0 23.1382 76.9446 94.15 - 22 119.886 1015 9 1 23.1216 76.939 65.55 - 22 104.37 1284 9 0 23.1207 76.9382 64.15 - 22 100.545 1015 8 1 23.0997 76.9198 35.55 - 22 112.633 1284 8 0 23.0991 76.9195 34.15 - 22 101.35 1015 7 1 23.0884 76.9106 5.55 - 22 121.66 1284 7 0 23.0882 76.9089 4.15 - 22 109.957 1015 6 1 23.0875 76.8743 -24.45 - 22 123.647 1284 6 0 23.0884 76.8723 -25.85 - 22 122.19 1015 5 1 23.1106 76.8335 -54.45 - 22 108.23 1283 5 0 23.1113 76.8316 -55.85 - 22 150.662 1015 4 1 23.1244 76.7892 -84.45 - 22 118.809 1283 4 0 23.1239 76.7877 -85.85 - 22 112.727 1015 3 1 23.1119 76.7577 -114.45 - 22 159.338 1283 3 0 23.1108 76.7553 -115.85 - 22 162.882 1015 2 1 23.0895 76.7058 -144.45 - 22 185.927 1283 2 0 23.0899 76.7035 -145.85 - 22 113.582 1015 1 1 23.0982 76.6541 -174.45 - 22 134.279 1283 1 0 23.0985 76.6522 -175.85 - 22 115.752 1015 0 1 23.1041 76.6161 -204.45 - 22 127.832 1282 0 0 23.1041 76.614 -205.85 - 22 132.246 1284 5 0 23.1063 76.85 -56.1528 - 22 88.6846 1149 5 0 6.57707 49.9286 -56.25 -Number of digits in this event = 13 -Using G4ParticleGun ... -8.77639 LIN -proton -Event: 23 -Number of tracker hits in this event = 60 - 23 104.762 1109 11 1 41.8679 29.9845 125.55 - 23 120.347 1049 11 0 41.8684 29.985 124.15 - 23 107.116 1109 10 1 41.877 29.9989 95.55 - 23 299.853 1049 10 0 41.8775 29.9991 94.15 - 23 102.929 1109 9 1 41.8931 30.0013 65.55 - 23 135.786 1049 9 0 41.894 30.0021 64.15 - 23 99.7821 1109 8 1 41.9139 30.0146 35.55 - 23 98.8076 1049 8 0 41.9155 30.0157 34.15 - 23 39974 1109 7 1 41.9463 30.0352 5.55 - 23 131.047 1036 7 0 43.466 27.45 3.95201 - 23 242.037 1035 7 0 43.6065 27.25 3.90901 - 23 14.7988 1034 7 0 43.9922 27.05 4.07585 - 23 221.925 1123 7 1 44.6556 26.7916 5.15003 - 23 40.3221 1122 7 1 44.65 27.0513 5.1837 - 23 266.362 1107 7 1 41.4707 27.9385 5.15 - 23 29.0045 1106 7 1 41.45 27.9543 5.179 - 23 24.1788 1108 7 1 41.6501 28.1396 5.2019 - 23 19.6434 1110 7 1 42.05 29.9787 5.54801 - 23 37.4304 911 8 0 89.6578 2.2597 33.75 - 23 795.725 910 8 0 89.6745 2.25 33.7599 - 23 616.603 909 8 0 90.0193 2.05 33.9623 - 23 261.942 1359 8 1 92.0224 0.871874 35.15 - 23 419.607 1360 8 1 92.15 0.796722 35.2257 - 23 357.424 1361 8 1 92.35 0.679207 35.3445 - 23 281.37 1362 8 1 92.55 0.562188 35.4621 - 23 429.309 741 9 0 141.31 -31.7221 63.75 - 23 668.249 740 9 0 141.503 -31.85 63.8618 - 23 459.532 739 9 0 141.803 -32.05 64.0371 - 23 153.562 1617 9 1 143.696 -33.3018 65.15 - 23 447.625 1618 9 1 143.75 -33.3377 65.182 - 23 460.958 1619 9 1 143.95 -33.4701 65.2998 - 23 541.921 1620 9 1 144.15 -33.6019 65.4167 - 23 72.3272 1621 9 1 144.35 -33.7347 65.5341 - 23 106.066 1050 7 0 41.9512 30.0581 4.15 - 23 102.472 1110 6 1 42.0543 30.5475 -24.45 - 23 110.799 1052 6 0 42.0588 30.5712 -25.85 - 23 109.944 1110 5 1 42.1521 31.0574 -54.45 - 23 252.34 1055 5 0 42.1575 31.0819 -55.85 - 23 172.54 1111 4 1 42.2689 31.582 -84.45 - 23 117.542 1057 4 0 42.2747 31.6069 -85.85 - 23 106.221 1111 3 1 42.3954 32.1208 -114.45 - 23 126.896 1060 3 0 42.4012 32.1453 -115.85 - 23 93.4302 1112 2 1 42.5175 32.6482 -144.45 - 23 156.276 1063 2 0 42.5242 32.6734 -145.85 - 23 310.233 1113 1 1 42.6588 33.1877 -174.45 - 23 196.997 1065 1 0 42.6661 33.2132 -175.85 - 23 106.313 1113 0 1 42.8169 33.7327 -204.45 - 23 94.8011 1068 0 0 42.8242 33.757 -205.85 - 23 195.606 1112 1 1 42.65 33.176 -174.649 - 23 9.65086 1050 10 0 41.8703 30.0501 93.8027 - 23 158.016 1200 11 0 64.1395 60.116 123.75 - 23 86.7792 1222 11 1 64.6002 60.4044 125.15 - 23 85.1142 1223 11 1 64.65 60.4161 125.268 - 23 71.1228 1224 11 1 64.85 60.4038 125.396 - 23 115.267 1225 11 1 65.05 60.3383 125.333 - 23 99.803 1226 11 1 65.25 60.3408 125.292 - 23 75.8337 1227 11 1 65.45 60.2383 125.291 - 23 36.9013 1202 11 0 67.335 60.4809 124.15 - 23 105.065 1237 11 1 67.4728 60.1155 125.15 - 23 51.6607 1236 11 1 67.45 60.1147 125.187 -Number of digits in this event = 31 -Using G4ParticleGun ... -6.37889 LIN -proton -Event: 24 -Number of tracker hits in this event = 22 - 24 158.216 1488 9 1 117.801 -62.6958 65.55 - 24 97.0444 586 9 0 117.8 -62.6957 64.15 - 24 96.2397 1488 8 1 117.775 -62.6842 35.55 - 24 120.045 586 8 0 117.774 -62.6825 34.15 - 24 144.899 1488 7 1 117.752 -62.6446 5.55 - 24 104.624 587 7 0 117.75 -62.6417 4.15 - 24 101.087 1487 6 1 117.718 -62.585 -24.45 - 24 136.821 587 6 0 117.718 -62.5828 -25.85 - 24 141.564 1487 5 1 117.712 -62.5332 -54.45 - 24 126.637 587 5 0 117.712 -62.53 -55.85 - 24 104.281 1487 4 1 117.716 -62.471 -84.45 - 24 138.142 587 4 0 117.715 -62.4661 -85.85 - 24 109.662 1487 3 1 117.701 -62.363 -114.45 - 24 133.804 588 3 0 117.699 -62.3586 -115.85 - 24 168.753 1487 2 1 117.661 -62.2689 -144.45 - 24 284.202 588 2 0 117.657 -62.2658 -145.85 - 24 107.447 1487 1 1 117.577 -62.2036 -174.45 - 24 101.918 589 1 0 117.573 -62.2019 -175.85 - 24 104.631 1486 0 1 117.493 -62.1664 -204.45 - 24 176.143 589 0 0 117.49 -62.1653 -205.85 - 24 148.621 584 0 0 110.983 -63.1311 -206.25 - 24 58.2358 589 2 0 117.532 -62.25 -145.891 -Number of digits in this event = 13 -Using G4ParticleGun ... -6.97476 LIN -proton -Event: 25 -Number of tracker hits in this event = 22 - 25 117.905 920 9 1 4.06099 -134.917 65.4285 - 25 106.495 226 9 0 4.06096 -134.917 64.15 - 25 138.457 920 8 1 4.06082 -134.917 35.55 - 25 150.566 226 8 0 4.06119 -134.918 34.15 - 25 108.725 920 7 1 4.06908 -134.918 5.55 - 25 125.628 226 7 0 4.07027 -134.917 4.15 - 25 94.4546 920 6 1 4.09287 -134.913 -24.45 - 25 102.815 226 6 0 4.09509 -134.912 -25.85 - 25 117.118 920 5 1 4.1403 -134.903 -54.45 - 25 175.157 226 5 0 4.14297 -134.902 -55.85 - 25 146.073 920 4 1 4.19913 -134.88 -84.45 - 25 112.467 226 4 0 4.20218 -134.879 -85.85 - 25 420.327 921 3 1 4.26534 -134.863 -114.45 - 25 106.749 226 3 0 4.26904 -134.861 -115.85 - 25 174.21 921 2 1 4.34775 -134.829 -144.45 - 25 86.5206 226 2 0 4.35109 -134.827 -145.85 - 25 98.287 921 1 1 4.41822 -134.786 -174.45 - 25 110.444 226 1 0 4.42133 -134.784 -175.85 - 25 175.873 922 0 1 4.48803 -134.74 -204.45 - 25 100.65 227 0 0 4.49161 -134.739 -205.85 - 25 170.213 1391 13 0 -7.90962 98.4242 184.045 - 25 215.567 1172 14 0 70.0575 54.5105 214.068 -Number of digits in this event = 13 -Using G4ParticleGun ... -2.416 LIN -proton -Event: 26 -Number of tracker hits in this event = 112 - 26 106.576 876 11 1 -4.68838 -20.4544 125.55 - 26 85.1619 797 11 0 -4.6875 -20.4545 124.15 - 26 128.019 876 10 1 -4.67679 -20.4587 95.55 - 26 112.87 797 10 0 -4.67722 -20.4559 94.15 - 26 117.394 876 9 1 -4.68672 -20.4066 65.55 - 26 129.256 798 9 0 -4.68627 -20.4043 64.15 - 26 109.91 876 8 1 -4.67398 -20.355 35.55 - 26 230.846 798 8 0 -4.67587 -20.3514 34.15 - 26 249.915 876 7 1 -4.70643 -20.2732 5.55 - 26 108.066 798 7 0 -4.70998 -20.2691 4.15 - 26 99.4263 876 6 1 -4.78896 -20.1915 -24.45 - 26 107.317 799 6 0 -4.7936 -20.188 -25.85 - 26 159.873 875 5 1 -4.88855 -20.1191 -54.45 - 26 181.412 799 5 0 -4.89349 -20.1169 -55.85 - 26 2204.91 875 4 1 -4.99518 -20.0725 -84.45 - 26 2.80815 933 4 1 6.83989 -18.5336 -84.45 - 26 90.5874 934 4 1 6.85 -18.5368 -84.4552 - 26 94.5962 935 4 1 7.05 -18.6913 -84.6101 - 26 30.3372 936 4 1 7.25 -18.8214 -84.7617 - 26 68.0927 801 4 0 8.23552 -19.7516 -85.851 - 26 107.354 800 4 0 8.40211 -19.8501 -85.9476 - 26 203.893 799 4 0 8.63642 -20.05 -86.1509 - 26 135.487 339 2 0 -40.4265 -112.265 -146.25 - 26 193.308 338 2 0 -40.3858 -112.35 -146.066 - 26 129.749 837 0 1 -12.4799 -121.639 -204.45 - 26 82.3176 836 0 1 -12.65 -121.476 -204.61 - 26 58.7666 835 0 1 -12.85 -121.304 -204.749 - 26 43.5884 297 0 0 -14.3619 -120.586 -205.85 - 26 94.3646 298 0 0 -14.451 -120.55 -205.884 - 26 139.982 299 0 0 -14.667 -120.35 -206.021 - 26 235.401 266 0 0 -35.0257 -126.936 -206.25 - 26 2.15529 265 0 0 -35.1531 -126.95 -206.142 - 26 86.0426 267 0 0 -35.3828 -126.75 -206.21 - 26 251.569 486 0 0 -52.6857 -82.7943 -206.25 - 26 2755.14 874 4 1 -5.05 -20.1342 -84.7384 - 26 235.153 1117 2 1 43.4852 89.4762 -144.6 - 26 108.409 1652 3 0 -80.3531 150.55 -116.185 - 26 159.823 525 3 1 -74.8593 138.856 -114.45 - 26 154.255 524 3 1 -75.05 139.324 -114.506 - 26 244.035 523 3 1 -75.25 139.821 -114.562 - 26 158.83 522 3 1 -75.45 140.32 -114.616 - 26 137.757 521 3 1 -75.65 140.82 -114.672 - 26 180.636 520 3 1 -75.85 141.322 -114.729 - 26 154.918 519 3 1 -76.05 141.826 -114.785 - 26 28.078 518 3 1 -76.25 142.319 -114.839 - 26 32.8711 1654 3 0 -79.7709 151.057 -115.85 - 26 53.1987 1655 3 0 -79.8085 151.15 -115.861 - 26 60.6644 1656 3 0 -79.8892 151.35 -115.884 - 26 73.9461 1657 3 0 -79.9701 151.55 -115.906 - 26 100.746 1658 3 0 -80.0504 151.75 -115.927 - 26 535.075 1659 3 0 -80.1299 151.95 -115.947 - 26 50.0617 1660 3 0 -80.2101 152.15 -115.968 - 26 58.3945 1661 3 0 -80.2904 152.35 -115.988 - 26 48.9893 1662 3 0 -80.3723 152.55 -116.008 - 26 72.7685 1663 3 0 -80.4535 152.75 -116.028 - 26 109.256 1664 3 0 -80.5338 152.95 -116.048 - 26 56.8111 1665 3 0 -80.6152 153.15 -116.068 - 26 49.9273 1666 3 0 -80.6954 153.35 -116.087 - 26 68.4686 1667 3 0 -80.774 153.55 -116.106 - 26 54.8545 1668 3 0 -80.855 153.75 -116.124 - 26 65.7709 1669 3 0 -80.938 153.95 -116.142 - 26 83.0462 1670 3 0 -81.0208 154.15 -116.16 - 26 182.111 1671 3 0 -81.1044 154.35 -116.179 - 26 80.4004 1672 3 0 -81.1893 154.55 -116.197 - 26 76.7826 1673 3 0 -81.2738 154.75 -116.217 - 26 29.609 1674 3 0 -81.3608 154.95 -116.241 - 26 135.083 1569 3 0 -64.9856 134.125 -116.25 - 26 123.657 882 3 1 -3.56932 -21.2018 -114.45 - 26 209.489 793 3 0 -3.49535 -21.2558 -115.85 - 26 178.336 890 2 1 -1.99862 -22.3714 -144.45 - 26 135.217 788 2 0 -1.92191 -22.4154 -145.85 - 26 170.045 898 1 1 -0.343764 -23.3574 -174.45 - 26 149.587 783 1 0 -0.264573 -23.4024 -175.85 - 26 128.167 906 0 1 1.35288 -24.3059 -204.45 - 26 200.133 778 0 0 1.43949 -24.3507 -205.85 - 26 33.059 787 2 0 -1.88963 -22.4501 -146.143 - 26 6.29149 810 4 0 -5.37864 -17.875 -85.85 - 26 157.572 811 4 0 -5.38299 -17.85 -85.8626 - 26 46.4711 812 4 0 -5.41784 -17.65 -85.963 - 26 52.7186 813 4 0 -5.45345 -17.45 -86.0631 - 26 79.1822 814 4 0 -5.48874 -17.25 -86.1635 - 26 252.506 822 3 1 -15.5333 39.5146 -114.45 - 26 63.3544 821 3 1 -15.65 40.2359 -114.793 - 26 1.512 1111 3 0 -16.005 42.4447 -115.85 - 26 69.9866 1112 3 0 -16.0059 42.45 -115.853 - 26 56.8441 1113 3 0 -16.0381 42.65 -115.948 - 26 83.8823 1114 3 0 -16.0698 42.85 -116.044 - 26 63.2833 1115 3 0 -16.1019 43.05 -116.139 - 26 11.4773 1116 3 0 -16.1341 43.25 -116.235 - 26 334.842 771 2 1 -25.7411 102.219 -144.45 - 26 43.7596 770 2 1 -25.85 102.931 -144.78 - 26 25.2468 1425 2 0 -26.1935 105.256 -145.85 - 26 75.116 1426 2 0 -26.2074 105.35 -145.893 - 26 55.2164 1427 2 0 -26.2367 105.55 -145.985 - 26 78.2375 1428 2 0 -26.2662 105.75 -146.077 - 26 67.4612 1429 2 0 -26.2958 105.95 -146.169 - 26 55.4257 723 1 1 -35.4259 167.58 -174.45 - 26 232.418 722 1 1 -35.45 167.735 -174.519 - 26 7.60761 1752 1 0 -35.9044 170.721 -175.85 - 26 129.831 1753 1 0 -35.9088 170.75 -175.863 - 26 51.6498 1754 1 0 -35.939 170.95 -175.952 - 26 69.1757 1755 1 0 -35.9692 171.15 -176.041 - 26 70.9802 1756 1 0 -35.9999 171.35 -176.13 - 26 25.0171 1757 1 0 -36.0305 171.55 -176.219 - 26 28.1048 352 0 1 -109.731 66.1568 -204.451 - 26 232.956 351 0 1 -109.75 66.1632 -204.469 - 26 158.622 350 0 1 -109.95 66.2197 -204.666 - 26 34.3055 349 0 1 -110.15 66.2488 -204.831 - 26 255.62 1231 0 0 -111.379 66.3716 -205.85 - 26 18.9456 1235 0 0 -111.071 67.2206 -205.85 - 26 119.538 1236 0 0 -111.108 67.25 -205.889 - 26 49.4806 1237 0 0 -111.351 67.45 -206.151 +Number of tracker hits in this event = 97 + 17 103.825 1056 11 1 31.3084 70.4844 125.55 + 17 129.623 1252 11 0 31.3078 70.4857 124.15 + 17 106.786 1056 10 1 31.3065 70.5045 95.55 + 17 152.085 1252 10 0 31.3063 70.5052 94.15 + 17 115.568 1056 9 1 31.3013 70.5278 65.55 + 17 106.258 1252 9 0 31.2974 70.5293 64.15 + 17 114.18 1055 8 1 31.2212 70.562 35.55 + 17 127.329 1252 8 0 31.2191 70.5636 34.15 + 17 125.961 1055 7 1 31.1786 70.5967 5.55 + 17 97.9945 1252 7 0 31.179 70.5964 4.15 + 17 97.392 1055 6 1 31.1877 70.5843 -24.45 + 17 97.9176 1252 6 0 31.1905 70.5823 -25.85 + 17 97.5511 1055 5 1 31.2483 70.5445 -54.45 + 17 114.333 1252 5 0 31.2506 70.5436 -55.85 + 17 126.004 1056 4 1 31.2934 70.5342 -84.45 + 17 144.774 1252 4 0 31.2924 70.5338 -85.85 + 17 187.489 1056 3 1 31.263 70.5219 -114.45 + 17 102.838 1252 3 0 31.2607 70.5209 -115.85 + 17 138.06 1055 2 1 31.2 70.4905 -144.45 + 17 361.386 1252 2 0 31.1952 70.4873 -145.85 + 17 122.905 1055 1 1 31.1005 70.4224 -174.45 + 17 115.949 1251 1 0 31.1038 70.4175 -175.85 + 17 132.227 1055 0 1 31.1472 70.309 -204.45 + 17 101.719 1251 0 0 31.1488 70.3 -205.85 + 17 22.1805 666 2 1 -46.7608 -10.6475 -144.66 + 17 159.279 1255 0 0 42.9934 71.1293 -206.25 + 17 60.4511 1116 0 1 43.3876 71.0644 -204.85 + 17 47.5457 1117 0 1 43.45 71.0504 -204.615 + 17 179.532 1259 1 0 49.974 71.9209 -176.25 + 17 218.666 1151 1 1 50.324 71.9028 -174.85 + 17 120.786 1282 2 0 50.7032 76.6003 -146.25 + 17 60.5276 1283 2 0 50.7096 76.6501 -145.928 + 17 157.893 1153 2 1 50.735 76.8191 -144.849 + 17 53.9257 1291 3 0 43.1912 78.4404 -116.25 + 17 60.8339 1292 3 0 43.1377 78.45 -116.063 + 17 173.494 1113 3 1 42.8079 78.5567 -114.85 + 17 251.022 1263 4 0 52.9051 72.752 -86.25 + 17 173.297 1166 4 1 53.3694 72.4775 -84.85 + 17 101.455 1167 4 1 53.45 72.2529 -84.5014 + 17 76.5057 1168 4 1 53.65 72.3206 -84.7582 + 17 21.2979 1169 4 1 53.85 72.3641 -84.8016 + 17 67.152 1264 4 0 55.5426 72.85 -86.0967 + 17 47.0876 1265 4 0 55.6414 73.05 -86.1838 + 17 89.4638 1281 4 0 114.46 76.316 -86.25 + 17 306.685 1280 4 0 114.649 76.25 -86.1448 + 17 31.1378 1279 4 0 114.85 76.05 -86.0689 + 17 147.662 1747 14 0 149.076 169.577 213.75 + 17 180.963 1637 14 1 147.724 170.107 215.15 + 17 58.5424 1636 14 1 147.55 170.172 215.28 + 17 84.7116 1635 14 1 147.35 170.208 215.406 + 17 180.009 1634 14 1 147.052 170.156 215.55 + 17 111.753 1633 14 1 146.95 169.78 215.361 + 17 41.4414 1743 14 0 146.678 168.87 214.15 + 17 138.317 1742 14 0 146.632 168.75 214.045 + 17 7.23618 1741 14 0 146.404 168.55 213.77 + 17 43.4184 1395 5 0 40.174 99.2794 -56.25 + 17 68.349 1396 5 0 40.1543 99.35 -56.0806 + 17 152.687 1099 5 1 39.9667 99.8997 -54.8499 + 17 13.6091 1445 6 0 40.3916 109.332 -26.2498 + 17 120.721 1446 6 0 40.3926 109.35 -26.1933 + 17 465.483 1102 6 1 40.5307 109.888 -24.8499 + 17 154.899 1386 7 0 60.8326 97.3823 3.75 + 17 244.448 1387 7 0 61.232 97.55 3.9885 + 17 58.142 1220 7 1 64.0742 99.3984 5.15015 + 17 96.6909 1221 7 1 64.25 99.4874 5.20117 + 17 481.727 1222 7 1 64.4501 99.6011 5.40545 + 17 13.4457 1397 7 0 64.1569 99.5618 4.15 + 17 168.807 1396 7 0 64.1523 99.55 4.1337 + 17 123.652 1325 9 1 85.1652 60.9234 65.15 + 17 26.9159 1326 9 1 85.25 60.7097 65.1938 + 17 113.162 1201 9 0 85.1546 60.291 64.15 + 17 83.6095 1200 9 0 85.0472 60.25 64.0712 + 17 30.4697 1254 0 0 43.0482 71.0499 -206.199 + 17 183.553 971 7 0 3.35238 14.3578 3.75 + 17 263.009 970 7 0 3.16562 14.25 3.86506 + 17 220.511 1133 7 0 37.1392 46.7465 3.75023 + 17 122.563 1082 7 1 36.5498 46.6119 5.15 + 17 1.30242 1081 7 1 36.4499 46.5826 5.54138 + 17 59.2631 1109 8 0 42.2423 41.9159 33.7503 + 17 65.9211 1108 8 0 42.2961 41.85 33.9598 + 17 93.5029 1112 8 1 42.5378 41.4129 35.15 + 17 144.908 1114 8 1 42.9046 41.1423 35.55 + 17 150.785 1115 8 1 43.05 40.8218 35.3869 + 17 7.50075 1116 8 1 43.25 40.5326 35.1702 + 17 29.9407 1093 8 0 44.2366 38.7353 34.1498 + 17 106.864 1092 8 0 44.3057 38.65 34.11 + 17 80.1448 1091 8 0 44.4953 38.4498 34.0627 + 17 65.3871 1090 8 0 44.5725 38.25 33.9998 + 17 54.397 1089 8 0 44.4414 38.05 33.8771 + 17 45.856 1092 0 1 38.5987 68.4774 -204.85 + 17 202.047 1392 2 0 19.1382 98.5921 -146.25 + 17 89.1597 992 2 1 18.5463 98.6477 -144.85 + 17 179.261 991 2 1 18.45 98.682 -144.599 + 17 194.593 1393 2 0 19.1373 98.7501 -146.125 + 17 472.32 1394 2 0 19.7478 98.95 -146.21 + 17 86.1253 1006 2 1 21.4 100.081 -144.85 + 17 301.985 1007 2 1 21.45 100.204 -144.65 Number of digits in this event = 46 Using G4ParticleGun ... -8.45083 LIN +1.89274 LIN proton -Event: 27 -Number of tracker hits in this event = 27 - 27 133.926 886 11 1 -2.83804 -33.3512 125.55 - 27 108.004 733 11 0 -2.83743 -33.3509 124.15 - 27 116.579 886 10 1 -2.82268 -33.3451 95.55 - 27 102.902 733 10 0 -2.82268 -33.3456 94.15 - 27 114.466 886 9 1 -2.82585 -33.3576 65.55 - 27 101.902 733 9 0 -2.82644 -33.3574 64.15 - 27 132.62 886 8 1 -2.83921 -33.3563 35.55 - 27 116.719 733 8 0 -2.83872 -33.3575 34.15 - 27 114.397 886 7 1 -2.82942 -33.3739 5.55 - 27 96.9976 733 7 0 -2.8297 -33.3738 4.15 - 27 132.399 886 6 1 -2.83545 -33.3707 -24.45 - 27 124.631 733 6 0 -2.83671 -33.37 -25.85 - 27 104.57 885 5 1 -2.86163 -33.3553 -54.45 - 27 131.304 733 5 0 -2.86251 -33.3542 -55.85 - 27 103.727 885 4 1 -2.88188 -33.3313 -84.45 - 27 143.354 733 4 0 -2.88307 -33.3306 -85.85 - 27 369.175 885 3 1 -2.90919 -33.3154 -114.45 - 27 151.126 733 3 0 -2.91012 -33.3141 -115.85 - 27 342.162 885 2 1 -2.92866 -33.2882 -144.45 - 27 113.778 733 2 0 -2.92921 -33.2858 -145.85 - 27 111.117 885 1 1 -2.94411 -33.2366 -174.45 - 27 109.395 734 1 0 -2.94554 -33.2334 -175.85 - 27 137.111 885 0 1 -2.97271 -33.168 -204.45 - 27 105.827 734 0 0 -2.9743 -33.1648 -205.85 - 27 44.8641 723 3 0 -2.83191 -35.2982 -115.85 - 27 76.3527 722 3 0 -2.82375 -35.4501 -115.96 - 27 125.275 721 3 0 -2.84426 -35.65 -116.112 +Event: 18 +Number of tracker hits in this event = 25 + 18 118.864 907 11 1 1.49601 1.11588 125.55 + 18 89.9161 905 11 0 1.50088 1.11916 124.15 + 18 130.03 907 10 1 1.60591 1.18914 95.55 + 18 218.743 905 10 0 1.61021 1.19349 94.15 + 18 122.403 908 9 1 1.70865 1.2773 65.55 + 18 106.38 906 9 0 1.71238 1.28023 64.15 + 18 126.348 908 8 1 1.78954 1.33919 35.55 + 18 169.402 906 8 0 1.79513 1.33885 34.15 + 18 121.725 909 7 1 1.90578 1.33162 5.55 + 18 124.428 906 7 0 1.91132 1.32983 4.15 + 18 122.163 909 6 1 2.0379 1.29393 -24.45 + 18 114.08 906 6 0 2.04995 1.28829 -25.85 + 18 135.64 911 5 1 2.30783 1.15991 -54.45 + 18 121.366 905 5 0 2.32113 1.15216 -55.85 + 18 153.858 912 4 1 2.58606 0.987505 -84.45 + 18 120.595 904 4 0 2.60187 0.978937 -85.85 + 18 112.27 914 3 1 2.93812 0.811675 -114.45 + 18 120.286 903 3 0 2.95983 0.804934 -115.85 + 18 108.928 916 2 1 3.39974 0.667277 -144.45 + 18 112.683 903 2 0 3.42044 0.661928 -145.85 + 18 122.617 919 1 1 3.85084 0.559071 -174.45 + 18 100.958 902 1 0 3.87104 0.555701 -175.85 + 18 126.869 921 0 1 4.28967 0.469129 -204.45 + 18 111.088 902 0 0 4.30933 0.464793 -205.85 + 18 155.162 906 10 0 1.58338 1.25 94.0228 +Number of digits in this event = 17 +Using G4ParticleGun ... +9.61734 LIN +proton +Event: 19 +Number of tracker hits in this event = 33 + 19 137.564 503 10 1 -79.2816 -71.1919 95.55 + 19 120.783 544 10 0 -79.2813 -71.1918 94.15 + 19 131.182 503 9 1 -79.2729 -71.189 65.55 + 19 152.566 544 9 0 -79.2726 -71.189 64.15 + 19 96.6989 503 8 1 -79.2664 -71.1885 35.55 + 19 127.115 544 8 0 -79.2664 -71.1873 34.15 + 19 104.996 503 7 1 -79.2709 -71.1633 5.55 + 19 128.662 544 7 0 -79.2706 -71.1619 4.15 + 19 117.792 503 6 1 -79.2671 -71.1339 -24.45 + 19 165.348 544 6 0 -79.2668 -71.1326 -25.85 + 19 128.258 503 5 1 -79.2611 -71.1071 -54.45 + 19 125.266 544 5 0 -79.2612 -71.106 -55.85 + 19 92.4644 503 4 1 -79.2637 -71.0828 -84.45 + 19 116.179 544 4 0 -79.2638 -71.0812 -85.85 + 19 95.569 503 3 1 -79.2632 -71.0466 -114.45 + 19 209.574 545 3 0 -79.2637 -71.045 -115.85 + 19 109.882 503 2 1 -79.2773 -71.0124 -144.45 + 19 134.617 545 2 0 -79.2777 -71.0107 -145.85 + 19 101.592 503 1 1 -79.2827 -70.9776 -174.45 + 19 98.5227 545 1 0 -79.283 -70.976 -175.85 + 19 124.748 503 0 1 -79.2876 -70.9449 -204.45 + 19 107.117 545 0 0 -79.2867 -70.943 -205.85 + 19 30.0669 915 10 1 3.12683 135.27 95.5153 + 19 8170.15 719 0 1 -36.0858 -42.5797 -204.785 + 19 600.608 720 0 1 -36.05 -42.5935 -204.812 + 19 4040.35 684 0 0 -34.5502 -43.1292 -205.85 + 19 5652.91 683 0 0 -34.2404 -43.25 -206.066 + 19 1137.08 690 0 0 -37.0773 -42.001 -205.85 + 19 114.939 633 11 0 -101.401 -53.4329 123.75 + 19 79.1632 634 11 0 -101.658 -53.2499 123.98 + 19 62.8192 386 11 1 -102.844 -52.0651 125.15 + 19 141.292 385 11 1 -102.95 -51.9465 125.274 + 19 7.32367 384 11 1 -103.15 -51.5658 125.535 +Number of digits in this event = 22 +Using G4ParticleGun ... +3.97824 LIN +proton +Event: 20 +Number of tracker hits in this event = 24 + 20 109.723 733 10 1 -33.3869 102.511 95.55 + 20 100.85 1411 10 0 -33.3873 102.511 94.15 + 20 188.225 733 9 1 -33.3944 102.523 65.55 + 20 120.214 1411 9 0 -33.3993 102.522 64.15 + 20 105.634 732 8 1 -33.4987 102.495 35.55 + 20 147.675 1411 8 0 -33.5041 102.491 34.15 + 20 94.0774 732 7 1 -33.614 102.412 5.55 + 20 121.475 1411 7 0 -33.6176 102.409 4.15 + 20 231.834 731 6 1 -33.6932 102.345 -24.45 + 20 198.711 1410 6 0 -33.6971 102.342 -25.85 + 20 124.416 731 5 1 -33.7839 102.265 -54.45 + 20 170.739 1410 5 0 -33.7861 102.26 -55.85 + 20 128.54 731 4 1 -33.8311 102.168 -84.45 + 20 105.433 1410 4 0 -33.8338 102.164 -85.85 + 20 97.776 730 3 1 -33.8866 102.08 -114.45 + 20 131.939 1409 3 0 -33.8882 102.075 -115.85 + 20 101.228 730 2 1 -33.9244 101.985 -144.45 + 20 113.397 1409 2 0 -33.928 101.981 -145.85 + 20 378.816 730 1 1 -33.9997 101.896 -174.45 + 20 96.1933 1408 1 0 -34.0028 101.891 -175.85 + 20 142.998 729 0 1 -34.0679 101.796 -204.45 + 20 119.662 1408 0 0 -34.0696 101.789 -205.85 + 20 98.4181 731 1 1 -33.85 101.967 -174.628 + 20 52.3236 1411 6 0 -33.6889 102.35 -25.8583 +Number of digits in this event = 14 +Using G4ParticleGun ... +1.90124 LIN +proton +Event: 21 +Number of tracker hits in this event = 24 + 21 127.165 991 11 1 18.3602 -44.4507 125.55 + 21 150.57 677 11 0 18.3611 -44.4518 124.15 + 21 107.789 991 10 1 18.3778 -44.4788 95.55 + 21 130.769 677 10 0 18.38 -44.4759 94.15 + 21 141.641 991 9 1 18.4215 -44.4175 65.55 + 21 133.837 678 9 0 18.4263 -44.4133 64.15 + 21 113.103 992 8 1 18.5271 -44.3324 35.55 + 21 183.445 678 8 0 18.5312 -44.3286 34.15 + 21 114.228 992 7 1 18.6128 -44.2519 5.55 + 21 101.668 679 7 0 18.6158 -44.2464 4.15 + 21 117.606 992 6 1 18.6474 -44.1705 -24.45 + 21 113.56 679 6 0 18.6481 -44.1669 -25.85 + 21 120.695 993 5 1 18.6704 -44.0992 -54.45 + 21 115.16 679 5 0 18.6761 -44.0958 -55.85 + 21 96.4853 993 4 1 18.7978 -44.019 -84.45 + 21 123.799 680 4 0 18.8006 -44.0189 -85.85 + 21 108.419 994 3 1 18.8627 -44.0175 -114.45 + 21 96.1653 680 3 0 18.864 -44.0197 -115.85 + 21 137.502 994 2 1 18.9035 -44.0678 -144.45 + 21 103.487 679 2 0 18.9053 -44.0705 -145.85 + 21 172.339 994 1 1 18.9327 -44.1318 -174.45 + 21 129.943 679 1 0 18.9296 -44.1355 -175.85 + 21 109.482 994 0 1 18.8654 -44.2173 -204.45 + 21 107.513 679 0 0 18.8617 -44.2249 -205.85 Number of digits in this event = 12 Using G4ParticleGun ... -9.74513 LIN +2.50979 LIN +proton +Event: 22 +Number of tracker hits in this event = 30 + 22 263.323 792 11 1 -21.5604 48.9076 125.55 + 22 97.122 1144 11 0 -21.5581 48.9085 124.15 + 22 121.313 792 10 1 -21.5227 48.9257 95.55 + 22 110.204 1144 10 0 -21.5266 48.925 94.15 + 22 115.625 792 9 1 -21.607 48.9193 65.55 + 22 122.369 1144 9 0 -21.6118 48.9178 64.15 + 22 122.967 791 8 1 -21.7159 48.8898 35.55 + 22 155.256 1144 8 0 -21.722 48.8864 34.15 + 22 104.819 791 7 1 -21.8407 48.8145 5.55 + 22 374.349 1143 7 0 -21.848 48.8133 4.15 + 22 208.78 790 6 1 -22.0027 48.7923 -24.45 + 22 192.386 1143 6 0 -22.0095 48.7885 -25.85 + 22 122.071 789 5 1 -22.1432 48.7046 -54.45 + 22 112.786 1143 5 0 -22.1502 48.6992 -55.85 + 22 112.022 788 4 1 -22.2881 48.5753 -84.45 + 22 245.988 1142 4 0 -22.2946 48.568 -85.85 + 22 106.416 788 3 1 -22.421 48.4126 -114.45 + 22 117.051 1141 3 0 -22.4277 48.4058 -115.85 + 22 99.4371 787 2 1 -22.5568 48.2752 -144.45 + 22 102.202 1141 2 0 -22.5633 48.2682 -145.85 + 22 129.647 786 1 1 -22.6952 48.1319 -174.45 + 22 109.292 1140 1 0 -22.6993 48.1273 -175.85 + 22 102.813 786 0 1 -22.7762 48.043 -204.45 + 22 201.638 1139 0 0 -22.7824 48.0396 -205.85 + 22 71.7521 1138 0 0 -22.7857 47.8496 -206.09 + 22 188.715 1137 0 0 -22.8848 47.65 -206.014 + 22 61.5834 1136 0 0 -23.2246 47.45 -205.976 + 22 64.0931 1135 0 0 -23.2978 47.25 -205.941 + 22 250.551 778 0 1 -24.4034 46.7241 -204.85 + 22 80.4502 777 0 1 -24.45 46.6637 -204.748 +Number of digits in this event = 15 +Using G4ParticleGun ... +2.60685 LIN +proton +Event: 23 +Number of tracker hits in this event = 22 + 23 416.833 1563 9 1 132.852 -2.04783 65.55 + 23 106.338 890 9 0 132.853 -2.04745 64.15 + 23 125.779 1563 8 1 132.891 -2.05073 35.55 + 23 108.497 889 8 0 132.891 -2.05108 34.15 + 23 107.019 1563 7 1 132.894 -2.05921 5.55 + 23 103.171 889 7 0 132.893 -2.05652 4.15 + 23 314.537 1563 6 1 132.873 -2.00577 -24.45 + 23 318.78 890 6 0 132.873 -2.0043 -25.85 + 23 138.136 1563 5 1 132.891 -1.9792 -54.45 + 23 129.293 890 5 0 132.893 -1.97591 -55.85 + 23 105.972 1563 4 1 132.921 -1.90971 -84.45 + 23 184.391 890 4 0 132.921 -1.90677 -85.85 + 23 133.563 1563 3 1 132.899 -1.83668 -114.45 + 23 146.048 891 3 0 132.9 -1.83153 -115.85 + 23 137.962 1563 2 1 132.919 -1.72033 -144.45 + 23 116.038 891 2 0 132.918 -1.7151 -145.85 + 23 127.658 1563 1 1 132.901 -1.61764 -174.45 + 23 117.414 892 1 0 132.898 -1.61116 -175.85 + 23 172.769 1563 0 1 132.837 -1.48751 -204.45 + 23 96.5825 892 0 0 132.835 -1.47961 -205.85 + 23 234.33 1562 6 1 132.75 -2.00581 -24.5599 + 23 55.8886 1564 9 1 132.95 -2.91262 65.4375 +Number of digits in this event = 14 +Using G4ParticleGun ... +6.0062 LIN +proton +Event: 24 +Number of tracker hits in this event = 25 + 24 103.258 1022 8 1 24.5628 -140.035 35.55 + 24 110.202 200 8 0 24.562 -140.035 34.15 + 24 204.387 1022 7 1 24.548 -140.045 5.55 + 24 169.247 200 7 0 24.547 -140.044 4.15 + 24 108.494 1022 6 1 24.5262 -140.044 -24.45 + 24 191.486 200 6 0 24.5257 -140.045 -25.85 + 24 365.844 1022 5 1 24.5115 -140.062 -54.45 + 24 108.84 200 5 0 24.5116 -140.062 -55.85 + 24 99.4796 1022 4 1 24.5124 -140.057 -84.45 + 24 278.901 200 4 0 24.5126 -140.058 -85.85 + 24 92.7548 1022 3 1 24.5124 -140.084 -114.45 + 24 258.052 200 3 0 24.5117 -140.085 -115.85 + 24 107.283 1022 2 1 24.4967 -140.112 -144.45 + 24 106.549 200 2 0 24.4946 -140.114 -145.85 + 24 138.791 1022 1 1 24.4524 -140.138 -174.45 + 24 119.598 200 1 0 24.4506 -140.139 -175.85 + 24 112.027 1021 0 1 24.4156 -140.147 -204.45 + 24 147.752 200 0 0 24.4137 -140.146 -205.85 + 24 98.2275 1023 5 1 24.65 -140.115 -54.5462 + 24 33.5995 1024 5 1 24.85 -140.247 -54.7744 + 24 119.696 198 5 0 25.5266 -140.367 -55.85 + 24 85.0767 165 5 0 15.381 -146.992 -56.25 + 24 78.8543 166 5 0 15.2301 -146.95 -56.0523 + 24 269.355 975 5 1 15.1114 -146.049 -54.8496 + 24 157.344 974 5 1 15.05 -146.399 -54.6729 +Number of digits in this event = 11 +Using G4ParticleGun ... +4.12536 LIN +proton +Event: 25 +Number of tracker hits in this event = 44 + 25 107.18 514 9 1 -77.2167 -90.2758 65.55 + 25 115.331 449 9 0 -77.2171 -90.2744 64.15 + 25 134.903 514 8 1 -77.2279 -90.2514 35.55 + 25 194.623 449 8 0 -77.227 -90.2494 34.15 + 25 95.9833 514 7 1 -77.206 -90.208 5.55 + 25 108.94 449 7 0 -77.2051 -90.2059 4.15 + 25 171.129 514 6 1 -77.1811 -90.1651 -24.45 + 25 114.527 449 6 0 -77.1802 -90.1624 -25.85 + 25 97.6228 514 4 1 -77.1829 -90.0233 -84.45 + 25 106.419 450 4 0 -77.188 -90.0217 -85.85 + 25 108.657 513 3 1 -77.2874 -89.9984 -114.45 + 25 127.859 450 3 0 -77.2937 -89.9974 -115.85 + 25 146.699 513 2 1 -77.4206 -89.9753 -144.45 + 25 340.306 450 2 0 -77.4253 -89.9741 -145.85 + 25 215.881 512 1 1 -77.5171 -89.9541 -174.45 + 25 141.205 450 1 0 -77.5201 -89.9518 -175.85 + 25 119.931 512 0 1 -77.5881 -89.9087 -204.45 + 25 33658.2 450 0 0 -77.5918 -89.9069 -205.85 + 25 392.6 561 0 1 -67.7259 -89.4279 -204.85 + 25 952.637 562 0 1 -67.65 -89.4238 -204.841 + 25 1117.09 563 0 1 -67.45 -89.4158 -204.815 + 25 1199.45 564 0 1 -67.25 -89.4095 -204.792 + 25 1247.24 565 0 1 -67.05 -89.4022 -204.768 + 25 1370.5 566 0 1 -66.85 -89.3979 -204.745 + 25 1487.92 567 0 1 -66.65 -89.3895 -204.713 + 25 1568.94 568 0 1 -66.45 -89.3802 -204.681 + 25 1849.47 569 0 1 -66.25 -89.3687 -204.649 + 25 2199.42 570 0 1 -66.05 -89.3616 -204.635 + 25 3613.87 571 0 1 -65.85 -89.3579 -204.631 + 25 3146.57 572 0 1 -65.65 -89.3638 -204.642 + 25 16799.2 451 0 0 -77.6455 -89.85 -206.115 + 25 4990.55 449 0 0 -76.0603 -90.15 -205.928 + 25 1659.17 573 0 1 -65.45 -93.2183 -204.828 + 25 1778.46 574 0 1 -65.25 -93.2776 -204.809 + 25 2084.18 575 0 1 -65.05 -93.3315 -204.794 + 25 2721.65 576 0 1 -64.85 -93.3771 -204.784 + 25 3931.46 577 0 1 -64.65 -93.4282 -204.781 + 25 76.2373 886 2 1 -2.73968 67.5236 -144.6 + 25 286.357 452 0 0 -78.0302 -89.65 -206.208 + 25 268.344 507 0 1 -78.5295 -89.26 -204.85 + 25 217.882 498 1 0 -50.3136 -80.3274 -176.25 + 25 98.3559 497 1 0 -50.6193 -80.45 -176.026 + 25 153.083 496 1 0 -50.7249 -80.65 -176.052 + 25 18.1876 464 2 0 -78.3224 -87.25 -146.032 +Number of digits in this event = 34 +Using G4ParticleGun ... +1.5044 LIN +proton +Event: 26 +Number of tracker hits in this event = 31 + 26 262.434 339 10 1 -112.195 -6.73273 95.55 + 26 127.251 866 10 0 -112.197 -6.73046 94.15 + 26 170.785 339 9 1 -112.243 -6.67008 65.55 + 26 141.48 866 9 0 -112.247 -6.66532 64.15 + 26 113.736 339 8 1 -112.338 -6.57553 35.55 + 26 135.348 867 8 0 -112.337 -6.57353 34.15 + 26 112.4 339 7 1 -112.309 -6.52589 5.55 + 26 298.079 867 7 0 -112.31 -6.53003 4.15 + 26 219.808 338 6 1 -112.357 -6.59663 -24.45 + 26 137.308 867 6 0 -112.356 -6.61244 -25.85 + 26 216.766 339 5 1 -112.334 -6.94507 -54.45 + 26 93.6901 865 5 0 -112.335 -6.96191 -55.85 + 26 113.465 338 4 1 -112.353 -7.29449 -84.45 + 26 192.954 863 4 0 -112.35 -7.31534 -85.85 + 26 108.874 339 3 1 -112.299 -7.75398 -114.45 + 26 96.5672 861 3 0 -112.298 -7.77613 -115.85 + 26 245.21 339 2 1 -112.281 -8.22613 -144.45 + 26 47.2719 859 2 0 -112.284 -8.24785 -145.85 + 26 249.299 858 2 0 -112.284 -8.25 -145.989 + 26 124.778 339 1 1 -112.323 -8.68809 -174.45 + 26 124.927 856 1 0 -112.325 -8.71007 -175.85 + 26 125.347 338 0 1 -112.354 -9.16212 -204.45 + 26 118.418 854 0 0 -112.353 -9.18456 -205.85 + 26 35.411 730 1 0 -105.599 -34.0021 -176.25 + 26 145.641 729 1 0 -105.609 -34.0501 -176.19 + 26 292.612 728 1 0 -105.679 -34.25 -176.131 + 26 45.3846 868 2 0 -112.856 -6.34791 -145.85 + 26 367.387 869 2 0 -112.919 -6.25 -145.915 + 26 47.886 870 2 0 -113.228 -6.04937 -145.949 + 26 98.7197 332 2 1 -113.654 -5.68375 -144.85 + 26 277.158 331 2 1 -113.75 -5.76857 -144.65 +Number of digits in this event = 20 +Using G4ParticleGun ... +6.53053 LIN +proton +Event: 27 +Number of tracker hits in this event = 24 + 27 111.406 948 11 1 9.6648 10.5003 125.55 + 27 118.51 952 11 0 9.66426 10.5011 124.15 + 27 110.657 948 10 1 9.65392 10.5213 95.55 + 27 102.247 952 10 0 9.6535 10.5234 94.15 + 27 151.079 947 9 1 9.64846 10.5702 65.55 + 27 99.2121 952 9 0 9.64826 10.5731 64.15 + 27 127.544 947 8 1 9.64278 10.6351 35.55 + 27 108.11 952 8 0 9.64285 10.6376 34.15 + 27 103.961 947 7 1 9.64429 10.6873 5.55 + 27 160.493 953 7 0 9.64355 10.6906 4.15 + 27 187.292 947 6 1 9.63059 10.7575 -24.45 + 27 148.549 953 6 0 9.62981 10.7592 -25.85 + 27 113.432 947 5 1 9.61529 10.7971 -54.45 + 27 96.4561 953 5 0 9.61394 10.7984 -55.85 + 27 150.524 947 4 1 9.58564 10.8206 -84.45 + 27 177.756 953 4 0 9.584 10.82 -85.85 + 27 105.312 947 3 1 9.55338 10.8071 -114.45 + 27 121.193 953 3 0 9.55154 10.8066 -115.85 + 27 114.384 947 2 1 9.51363 10.7934 -144.45 + 27 99.8743 953 2 0 9.51114 10.7925 -145.85 + 27 184.524 947 1 1 9.46796 10.7734 -174.45 + 27 98.3791 953 1 0 9.46597 10.7725 -175.85 + 27 99.8769 946 0 1 9.42237 10.7526 -204.45 + 27 99.7832 953 0 0 9.41964 10.7516 -205.85 +Number of digits in this event = 10 +Using G4ParticleGun ... +3.84225 LIN proton Event: 28 -Number of tracker hits in this event = 28 - 28 127.637 1180 10 1 56.188 -99.2786 95.55 - 28 111.515 404 10 0 56.1876 -99.278 94.15 - 28 148.037 1180 9 1 56.1813 -99.2638 65.55 - 28 105.819 404 9 0 56.1806 -99.263 64.15 - 28 110.255 1180 8 1 56.1622 -99.25 35.55 - 28 119.648 404 8 0 56.1616 -99.249 34.15 - 28 174.218 1180 7 1 56.1487 -99.2273 5.55 - 28 106.918 404 7 0 56.1477 -99.2264 4.15 - 28 110.506 1180 6 1 56.129 -99.2135 -24.45 - 28 103.861 404 6 0 56.1292 -99.213 -25.85 - 28 116.4 1180 5 1 56.1329 -99.2009 -54.45 - 28 99.6535 404 5 0 56.1325 -99.1998 -55.85 - 28 130.057 1180 4 1 56.1276 -99.1814 -84.45 - 28 145.28 404 4 0 56.1277 -99.1808 -85.85 - 28 190.225 1180 3 1 56.1286 -99.1705 -114.45 - 28 126.489 404 3 0 56.1291 -99.1702 -115.85 - 28 110.162 1180 2 1 56.1341 -99.1677 -144.45 - 28 107.604 404 2 0 56.1351 -99.1665 -145.85 - 28 251.626 1180 1 1 56.1589 -99.1408 -174.45 - 28 110.946 405 1 0 56.1598 -99.1405 -175.85 - 28 107.438 1180 0 1 56.176 -99.1311 -204.45 - 28 137.308 405 0 0 56.1766 -99.1307 -205.85 - 28 6.46523 606 0 0 49.7266 -58.8119 -206.25 - 28 30.048 1176 1 0 23.5682 55.25 -175.887 - 28 22.1026 1185 3 1 57.05 34.6989 -114.79 - 28 216.435 1017 1 1 23.6417 57.0888 -174.85 - 28 21.7032 1018 1 1 23.65 57.1138 -174.821 - 28 116.397 1181 1 1 56.25 -99.0566 -174.649 -Number of digits in this event = 13 +Number of tracker hits in this event = 44 + 28 151.286 1197 7 1 59.512 -137.121 5.55 + 28 205.799 215 7 0 59.5121 -137.12 4.15 + 28 114.667 1197 6 1 59.5052 -137.103 -24.45 + 28 122.308 215 6 0 59.5052 -137.101 -25.85 + 28 425.224 1197 5 1 59.5099 -137.067 -54.45 + 28 115.17 215 5 0 59.5092 -137.064 -55.85 + 28 131.12 1197 4 1 59.4927 -137.001 -84.45 + 28 114.211 215 4 0 59.4914 -136.998 -85.85 + 28 109.449 1197 3 1 59.4627 -136.937 -114.45 + 28 115.092 216 3 0 59.4629 -136.934 -115.85 + 28 111.84 1197 2 1 59.4662 -136.858 -144.45 + 28 104.811 216 2 0 59.4671 -136.856 -145.85 + 28 248.968 1197 1 1 59.4821 -136.823 -174.45 + 28 110.434 216 1 0 59.4831 -136.82 -175.85 + 28 106.093 1197 0 1 59.4986 -136.755 -204.45 + 28 119.741 216 0 0 59.4993 -136.752 -205.85 + 28 90.3258 661 1 1 -47.85 -120.796 -174.655 + 28 89.4084 662 1 1 -47.65 -120.646 -174.582 + 28 301.977 663 1 1 -47.45 -120.489 -174.671 + 28 68.2708 1198 1 1 59.6502 -136.742 -174.763 + 28 34.6334 214 1 0 60.8775 -137.321 -175.85 + 28 101.894 213 1 0 60.9432 -137.35 -175.86 + 28 113.966 1239 6 1 68.0043 -132.155 -24.45 + 28 96.9125 1240 6 1 68.05 -131.969 -24.6149 + 28 11.6055 247 6 0 68.8102 -130.589 -25.85 + 28 108.364 248 6 0 68.8339 -130.55 -25.8825 + 28 77.9494 249 6 0 68.9612 -130.35 -26.0775 + 28 122.867 1315 5 1 83.0556 -101.771 -54.45 + 28 251.453 394 5 0 83.7549 -101.205 -55.85 + 28 18.739 395 5 0 83.9244 -101.15 -56.2399 + 28 152.394 1375 4 1 95.2427 -96.4215 -84.45 + 28 0.747226 1376 4 1 95.35 -96.4327 -84.8475 + 28 120.679 418 4 0 95.6875 -96.4632 -85.85 + 28 163.727 1474 3 1 114.957 -100.96 -114.45 + 28 2.01139 396 3 0 115.339 -100.754 -115.85 + 28 77.0351 397 3 0 115.34 -100.749 -115.854 + 28 215.146 398 3 0 115.37 -100.55 -115.868 + 28 140.855 399 3 0 115.363 -100.35 -116.081 + 28 107.382 1196 7 1 59.4496 -137.149 5.41656 + 28 25.6072 1195 7 1 59.2498 -137.134 5.1895 + 28 28.3742 224 7 0 57.9891 -135.206 4.14994 + 28 47.2406 225 7 0 57.921 -135.15 4.1405 + 28 365.7 1182 7 1 56.622 -133.822 5.15007 + 28 367.703 1181 7 1 56.45 -133.537 5.34944 +Number of digits in this event = 18 Using G4ParticleGun ... -1.84938 LIN +1.41959 LIN proton Event: 29 Number of tracker hits in this event = 24 - 29 147.296 1052 10 1 30.6367 -97.275 95.55 - 29 111.112 414 10 0 30.6353 -97.2729 94.15 - 29 104.287 1052 9 1 30.6081 -97.2316 65.55 - 29 169.832 414 9 0 30.6076 -97.2305 64.15 - 29 96.4572 1052 8 1 30.5953 -97.2019 35.55 - 29 122.701 414 8 0 30.5927 -97.2014 34.15 - 29 106.664 1052 7 1 30.5453 -97.1814 5.55 - 29 158.479 414 7 0 30.5421 -97.1816 4.15 - 29 122.111 1052 6 1 30.4812 -97.1886 -24.45 - 29 112.005 414 6 0 30.4753 -97.1828 -25.85 - 29 130.583 1051 5 1 30.3568 -97.0664 -54.45 - 29 101.887 415 5 0 30.3506 -97.0644 -55.85 - 29 122.473 1050 4 1 30.2219 -97.0271 -84.45 - 29 124.971 415 4 0 30.2191 -97.025 -85.85 - 29 150.978 1050 3 1 30.161 -96.9902 -114.45 - 29 154.285 415 3 0 30.1556 -96.9893 -115.85 - 29 115.223 1049 2 1 30.0408 -96.9728 -144.45 - 29 94.6642 415 2 0 30.0337 -96.9699 -145.85 - 29 156.297 1049 1 1 29.903 -96.8927 -174.45 - 29 97.5541 416 1 0 29.8934 -96.8905 -175.85 - 29 161.962 1048 0 1 29.6995 -96.8469 -204.45 - 29 121.802 416 0 0 29.6876 -96.8463 -205.85 - 29 62.2643 417 1 0 28.5554 -96.6482 -175.85 - 29 119.795 1042 1 1 28.5403 -98.3239 -174.85 -Number of digits in this event = 14 -Using G4ParticleGun ... -5.24877 LIN -proton -Event: 30 -Number of tracker hits in this event = 49 - 30 108.746 508 10 1 -78.3562 39.7954 95.55 - 30 156.522 1098 10 0 -78.3563 39.7938 94.15 - 30 128.838 508 9 1 -78.3574 39.7654 65.55 - 30 141.597 1098 9 0 -78.3576 39.7655 64.15 - 30 102.48 508 8 1 -78.3618 39.7636 35.55 - 30 123.43 1098 8 0 -78.3614 39.7646 34.15 - 30 201.131 508 7 1 -78.3539 39.7884 5.55 - 30 113.956 1098 7 0 -78.3541 39.7895 4.15 - 30 120.322 508 6 1 -78.358 39.812 -24.45 - 30 103.234 1098 6 0 -78.3579 39.8136 -25.85 - 30 147.696 508 5 1 -78.3575 39.8457 -54.45 - 30 116.455 1098 5 0 -78.3571 39.8471 -55.85 - 30 111.464 508 4 1 -78.3502 39.8765 -84.45 - 30 128.72 1099 4 0 -78.3502 39.8777 -85.85 - 30 104.879 508 3 1 -78.3512 39.9057 -114.45 - 30 109.031 1099 3 0 -78.3504 39.9056 -115.85 - 30 113.824 508 2 1 -78.3342 39.9028 -144.45 - 30 94.1235 1099 2 0 -78.333 39.9024 -145.85 - 30 119.645 508 1 1 -78.3055 39.8966 -174.45 - 30 123.978 1099 1 0 -78.3048 39.8965 -175.85 - 30 104.754 508 0 1 -78.2799 39.8816 -204.45 - 30 98.8315 1099 0 0 -78.28 39.8829 -205.85 - 30 77.0951 1241 6 0 110.697 68.3179 -26.1049 - 30 277.759 1240 6 0 110.768 68.25 -26.0845 - 30 238.082 1239 6 0 110.855 68.0497 -26.0437 - 30 18.1615 1299 14 0 79.7226 79.8831 213.75 - 30 213.202 1298 14 0 79.7115 79.85 213.79 - 30 291.373 736 0 0 -152.037 -32.7692 -206.25 - 30 99.3498 737 0 0 -152.753 -32.65 -206.023 - 30 117.131 738 0 0 -153.049 -32.4499 -206.023 - 30 147.428 739 0 0 -153.311 -32.25 -206.139 - 30 105.806 740 0 0 -153.45 -32.05 -206.172 - 30 60.8395 741 0 0 -153.488 -31.85 -206.142 - 30 68.5765 742 0 0 -153.453 -31.65 -206.112 - 30 113.673 743 0 0 -153.263 -31.4497 -206.063 - 30 109.352 744 0 0 -152.917 -31.25 -206.066 - 30 344.813 745 0 0 -152.593 -31.0499 -206.121 - 30 82.16 746 0 0 -151.921 -30.85 -206.143 - 30 40.5024 910 1 0 -133.537 2.13216 -176.25 - 30 90.4973 911 1 0 -133.573 2.25 -176.126 - 30 85.5898 912 1 0 -133.648 2.45 -175.935 - 30 183.23 230 1 1 -134.016 3.52265 -174.85 - 30 33.8829 229 1 1 -134.15 3.97734 -174.506 - 30 89.6262 507 9 1 -78.4501 39.7117 65.459 - 30 200.709 1095 9 0 -79.1535 39.236 64.15 - 30 3.97548 401 8 1 -99.9464 25.0221 35.5493 - 30 117.781 400 8 1 -99.95 25.0187 35.528 - 30 215.699 1025 8 0 -100.1 25.0515 34.15 - 30 3.03026 1774 4 0 -149.043 174.95 -86.0862 -Number of digits in this event = 21 -Using G4ParticleGun ... -8.64559 LIN -proton -Event: 31 -Number of tracker hits in this event = 20 - 31 95.0038 1218 9 1 63.8242 -100.976 65.55 - 31 103.997 395 9 0 63.8237 -100.976 64.15 - 31 113.751 1218 8 1 63.8083 -100.979 35.55 - 31 116.64 395 8 0 63.8073 -100.979 34.15 - 31 177.57 1218 7 1 63.7854 -100.974 5.55 - 31 121.348 395 7 0 63.7842 -100.974 4.15 - 31 100.028 1218 6 1 63.7609 -100.969 -24.45 - 31 115.502 395 6 0 63.7599 -100.968 -25.85 - 31 153.234 1218 5 1 63.7444 -100.962 -54.45 - 31 196.679 395 5 0 63.7439 -100.962 -55.85 - 31 114.258 1218 4 1 63.7303 -100.971 -84.45 - 31 112.617 395 4 0 63.7295 -100.972 -85.85 - 31 118.601 1218 3 1 63.7145 -100.99 -114.45 - 31 95.4857 395 3 0 63.7138 -100.991 -115.85 - 31 119.243 1218 2 1 63.701 -101.015 -144.45 - 31 127.137 395 2 0 63.7006 -101.018 -145.85 - 31 119.175 1218 1 1 63.692 -101.06 -174.45 - 31 196.961 395 1 0 63.6921 -101.062 -175.85 - 31 128.755 1218 0 1 63.6907 -101.097 -204.45 - 31 212.79 395 0 0 63.6902 -101.098 -205.85 -Number of digits in this event = 9 -Using G4ParticleGun ... -1.86796 LIN -proton -Event: 32 -Number of tracker hits in this event = 40 - 32 198.681 664 11 1 -47.1506 26.9508 125.55 - 32 295.528 1034 11 0 -47.1526 26.9487 124.15 - 32 252.619 664 10 1 -47.2104 26.9146 95.55 - 32 251.635 1034 10 0 -47.2127 26.9118 94.15 - 32 109.964 663 9 1 -47.2742 26.8582 65.55 - 32 351.926 1034 9 0 -47.2768 26.8589 64.15 - 32 111.874 663 8 1 -47.3417 26.8706 35.55 - 32 90.1716 1034 8 0 -47.3483 26.8685 34.15 - 32 107.958 662 7 1 -47.48 26.8236 5.55 - 32 183.225 1033 7 0 -47.487 26.8214 4.15 - 32 125.082 662 6 1 -47.6309 26.7715 -24.45 - 32 109.717 1033 6 0 -47.639 26.7715 -25.85 - 32 131.036 661 5 1 -47.8056 26.7617 -54.45 - 32 240.026 1033 5 0 -47.8107 26.7643 -55.85 - 32 95.7104 660 4 1 -47.9189 26.8231 -84.45 - 32 144.638 1033 4 0 -47.9254 26.8348 -85.85 - 32 119.246 660 3 1 -48.0443 27.0739 -114.45 - 32 116.11 1035 3 0 -48.0527 27.086 -115.85 - 32 92.6639 659 2 1 -48.2323 27.3308 -144.45 - 32 115.673 1036 2 0 -48.2419 27.3426 -145.85 - 32 125.355 658 1 1 -48.4392 27.5838 -174.45 - 32 115.709 1037 1 0 -48.4476 27.5962 -175.85 - 32 150.809 657 0 1 -48.6198 27.8474 -204.45 - 32 129.849 1039 0 0 -48.6282 27.8584 -205.85 - 32 161.18 1034 5 0 -47.7832 26.85 -56.1249 - 32 75.6646 847 10 0 -95.447 -10.5928 93.75 - 32 12.2193 1095 11 0 -42.7631 39.2056 123.75 - 32 83.9281 1096 11 0 -42.7586 39.25 123.79 - 32 66.8978 1097 11 0 -42.6595 39.45 123.955 - 32 9.79255 1098 11 0 -42.6219 39.65 124.119 - 32 171.826 688 11 1 -42.3797 41.3954 125.15 - 32 181.061 689 11 1 -42.25 41.9516 125.277 - 32 44.8481 690 11 1 -42.05 42.4852 125.261 - 32 28.8049 1116 11 0 -41.7579 43.3807 124.15 - 32 101.545 1117 11 0 -41.7594 43.45 124.039 - 32 74.9497 1124 11 0 -5.40618 44.935 123.75 - 32 109.545 1123 11 0 -5.23655 44.85 123.801 - 32 256.013 1122 11 0 -5.03922 44.6498 123.867 - 32 51.3597 879 11 1 -4.10195 43.3176 125.15 - 32 172.212 880 11 1 -4.05 43.2124 125.24 -Number of digits in this event = 20 -Using G4ParticleGun ... -9.81262 LIN -proton -Event: 33 -Number of tracker hits in this event = 27 - 33 111.622 886 11 1 -2.75074 -13.9811 125.55 - 33 106.047 830 11 0 -2.75062 -13.9806 124.15 - 33 96.2332 886 10 1 -2.74818 -13.9678 95.55 - 33 101.679 830 10 0 -2.74815 -13.9678 94.15 - 33 149.026 886 9 1 -2.74812 -13.9684 65.55 - 33 126.721 830 9 0 -2.74889 -13.9684 64.15 - 33 113.85 886 8 1 -2.76584 -13.97 35.55 - 33 122.627 830 8 0 -2.76612 -13.9713 34.15 - 33 95.3232 886 7 1 -2.76788 -13.9972 5.55 - 33 152.47 830 7 0 -2.76821 -13.9981 4.15 - 33 124.868 886 6 1 -2.77498 -14.017 -24.45 - 33 106.498 830 6 0 -2.77595 -14.0182 -25.85 - 33 113.852 886 5 1 -2.79709 -14.0421 -54.45 - 33 113.887 830 5 0 -2.7974 -14.0435 -55.85 - 33 132.855 886 4 1 -2.80655 -14.0716 -84.45 - 33 250.497 829 4 0 -2.80666 -14.0731 -85.85 - 33 142.921 886 3 1 -2.80873 -14.1085 -114.45 - 33 160.25 829 3 0 -2.80955 -14.1106 -115.85 - 33 142.93 886 2 1 -2.82462 -14.156 -144.45 - 33 120.336 829 2 0 -2.82589 -14.1576 -145.85 - 33 103.241 885 1 1 -2.85267 -14.191 -174.45 - 33 126.12 829 1 0 -2.85329 -14.1923 -175.85 - 33 98.3589 885 0 1 -2.86496 -14.2204 -204.45 - 33 125.752 829 0 0 -2.86515 -14.2222 -205.85 - 33 73.7901 830 4 0 -2.81418 -14.0499 -86.2435 - 33 478.575 885 4 1 -2.91232 -14.1103 -84.4501 - 33 203.959 831 4 0 -2.5711 -13.85 -85.9371 -Number of digits in this event = 16 -Using G4ParticleGun ... -1.02848 LIN -proton -Event: 34 -Number of tracker hits in this event = 23 - 34 129.595 517 10 1 -76.5172 -81.6684 95.55 - 34 154.611 491 10 0 -76.512 -81.6692 94.15 - 34 148.776 518 9 1 -76.4035 -81.6778 65.55 - 34 126.802 491 9 0 -76.4017 -81.6801 64.15 - 34 172.088 518 8 1 -76.3338 -81.7539 35.55 - 34 110.707 491 8 0 -76.3061 -81.7775 34.15 - 34 135.398 521 7 1 -75.7533 -82.2783 5.55 - 34 111.918 488 7 0 -75.7259 -82.3111 4.15 - 34 206.61 524 6 1 -75.1507 -82.9922 -24.45 - 34 152.637 485 6 0 -75.1209 -83.0276 -25.85 - 34 134.175 527 5 1 -74.5161 -83.7608 -54.45 - 34 149.826 481 5 0 -74.4865 -83.7965 -55.85 - 34 155.402 530 4 1 -73.8653 -84.5449 -84.45 - 34 135.244 477 4 0 -73.8354 -84.5789 -85.85 - 34 125.226 534 3 1 -73.2323 -85.2949 -114.45 - 34 346.809 473 3 0 -73.2004 -85.3272 -115.85 - 34 152.731 537 2 1 -72.5441 -85.9672 -144.45 - 34 125.325 470 2 0 -72.5076 -86.0033 -145.85 - 34 170.076 541 1 1 -71.7655 -86.7534 -174.45 - 34 396.061 466 1 0 -71.7305 -86.7905 -175.85 - 34 110.74 545 0 1 -71.0074 -87.5372 -204.45 - 34 176.891 462 0 0 -70.9721 -87.5704 -205.85 - 34 128.268 465 2 0 -72.5214 -86.9494 -145.85 + 29 100.785 1016 10 1 23.4393 -89.686 95.55 + 29 130.548 451 10 0 23.4354 -89.6857 94.15 + 29 109.551 1016 9 1 23.3512 -89.6794 65.55 + 29 161.784 451 9 0 23.3443 -89.6744 64.15 + 29 246.465 1015 8 1 23.2073 -89.5591 35.55 + 29 145.415 452 8 0 23.197 -89.5524 34.15 + 29 367.444 1014 7 1 22.9971 -89.4173 5.55 + 29 127.671 453 7 0 22.9911 -89.4034 4.15 + 29 214.821 1014 6 1 22.8613 -89.1094 -24.45 + 29 119.567 454 6 0 22.8492 -89.1016 -25.85 + 29 102.733 1012 5 1 22.5876 -88.9547 -54.45 + 29 102.092 455 5 0 22.5731 -88.9471 -55.85 + 29 121.528 1011 4 1 22.2805 -88.7985 -84.45 + 29 125.475 456 4 0 22.2688 -88.7889 -85.85 + 29 298.568 1009 3 1 22.0281 -88.5962 -114.45 + 29 145.603 457 3 0 22.0107 -88.5818 -115.85 + 29 115.527 1008 2 1 21.6703 -88.2952 -144.45 + 29 122.521 458 2 0 21.6553 -88.2797 -145.85 + 29 129.737 1006 1 1 21.3818 -87.964 -174.45 + 29 161.257 460 1 0 21.3661 -87.9443 -175.85 + 29 147.671 1004 0 1 21.0306 -87.5458 -204.45 + 29 146.868 462 0 0 21.0179 -87.5265 -205.85 + 29 188.677 1015 7 1 23.05 -89.5169 5.23885 + 29 152.708 452 9 0 23.3478 -89.65 63.9269 Number of digits in this event = 22 Using G4ParticleGun ... -1.23055 LIN +1.68625 LIN proton -Event: 35 -Number of tracker hits in this event = 22 - 35 151.054 434 10 1 -93.1566 16.1848 95.55 - 35 290.148 980 10 0 -93.1603 16.1858 94.15 - 35 145.553 434 9 1 -93.245 16.2094 65.55 - 35 113.067 980 9 0 -93.2509 16.2098 64.15 - 35 108.326 433 8 1 -93.3832 16.2012 35.55 - 35 115.63 980 8 0 -93.3925 16.1982 34.15 - 35 122.346 432 7 1 -93.601 16.1362 5.55 - 35 114.931 980 7 0 -93.6148 16.1279 4.15 - 35 103.865 431 6 1 -93.9088 15.9531 -24.45 - 35 137.337 979 6 0 -93.9255 15.943 -25.85 - 35 123.624 429 5 1 -94.2811 15.7474 -54.45 - 35 113.429 978 5 0 -94.2996 15.7381 -55.85 - 35 125.73 427 4 1 -94.6782 15.5526 -84.45 - 35 139.597 977 4 0 -94.6972 15.5395 -85.85 - 35 122.939 425 3 1 -95.0684 15.262 -114.45 - 35 109.111 976 3 0 -95.0863 15.2556 -115.85 - 35 112.523 423 2 1 -95.4453 15.122 -144.45 - 35 140.294 975 2 0 -95.4627 15.116 -145.85 - 35 113.283 421 1 1 -95.8294 14.9486 -174.45 - 35 182.524 974 1 0 -95.8474 14.9374 -175.85 - 35 129.261 419 0 1 -96.2068 14.7233 -204.45 - 35 119.732 973 0 0 -96.2209 14.7138 -205.85 -Number of digits in this event = 13 -Using G4ParticleGun ... -9.82066 LIN -proton -Event: 36 -Number of tracker hits in this event = 21 - 36 137.259 1565 8 1 133.187 58.3677 35.55 - 36 118.581 1191 8 0 133.187 58.367 34.15 - 36 118.141 1565 7 1 133.192 58.3525 5.55 - 36 120.518 1191 7 0 133.192 58.3528 4.15 - 36 123.736 1565 6 1 133.19 58.3623 -24.45 - 36 107.354 1191 6 0 133.19 58.3626 -25.85 - 36 107.678 1565 5 1 133.189 58.3706 -54.45 - 36 111.988 1191 5 0 133.19 58.3717 -55.85 - 36 97.1921 1565 4 1 133.211 58.3965 -84.45 - 36 178.313 1191 4 0 133.211 58.3984 -85.85 - 36 104.089 1565 3 1 133.221 58.4378 -114.45 - 36 152.733 1191 3 0 133.221 58.44 -115.85 - 36 141.93 1565 2 1 133.225 58.4858 -144.45 - 36 185.577 1192 2 0 133.225 58.4872 -145.85 - 36 156.008 1565 1 1 133.237 58.512 -174.45 - 36 187.107 1192 1 0 133.237 58.5131 -175.85 - 36 143.233 1565 0 1 133.222 58.5343 -204.45 - 36 108.802 1192 0 0 133.221 58.5351 -205.85 - 36 76.9374 1224 2 0 114.924 64.8806 -146.25 - 36 88.589 1470 2 1 114.32 65.0083 -144.85 - 36 208.59 1469 2 1 114.15 65.0505 -144.719 -Number of digits in this event = 13 -Using G4ParticleGun ... -9.56459 LIN -proton -Event: 37 -Number of tracker hits in this event = 502 - 37 111.613 1228 8 1 65.7266 -123.317 35.55 - 37 102.387 284 8 0 65.7257 -123.317 34.15 - 37 213.697 1228 7 1 65.7055 -123.311 5.55 - 37 109.676 284 7 0 65.7036 -123.31 4.15 - 37 117.208 1228 6 1 65.6647 -123.299 -24.45 - 37 118.693 284 6 0 65.6636 -123.298 -25.85 - 37 105.633 1227 5 1 65.6418 -123.286 -54.45 - 37 130.817 284 5 0 65.6411 -123.285 -55.85 - 37 203.347 1227 4 1 65.6259 -123.28 -84.45 - 37 110.836 284 4 0 65.6253 -123.279 -85.85 - 37 106.882 1227 3 1 65.6114 -123.276 -114.45 - 37 109.309 284 3 0 65.6102 -123.276 -115.85 - 37 98.6311 1227 2 1 65.5854 -123.276 -144.45 - 37 113.343 284 2 0 65.5841 -123.276 -145.85 - 37 119.977 1227 1 1 65.5592 -123.28 -174.45 - 37 125.545 284 1 0 65.5578 -123.28 -175.85 - 37 101.261 306 1 0 62.6883 -118.849 -176.25 - 37 207.637 1213 1 1 62.6784 -118.813 -174.849 - 37 166.066 1214 1 1 62.85 -118.616 -174.583 - 37 65.1909 316 1 0 63.3376 -116.926 -175.85 - 37 80.5552 317 1 0 63.3325 -116.75 -175.957 - 37 216.979 318 1 0 63.2083 -116.55 -175.954 - 37 46.21 1210 1 1 62.2413 -115.558 -174.85 - 37 1160.63 327 1 0 62.0035 -114.657 -175.85 - 37 8176.32 1227 0 1 65.4856 -123.271 -204.45 - 37 8291.9 1226 0 1 65.45 -123.28 -204.719 - 37 3730.03 284 0 0 65.3089 -123.315 -205.85 - 37 2162.26 157 1 0 20.6745 -148.609 -176.25 - 37 3668.85 156 1 0 20.4256 -148.75 -176.095 - 37 408.577 155 1 0 20.058 -148.95 -175.877 - 37 1110.44 991 1 1 18.3564 -149.869 -174.85 - 37 2280.16 990 1 1 18.25 -149.927 -174.786 - 37 2292.12 989 1 1 18.05 -150.034 -174.665 - 37 1951.31 988 1 1 17.85 -150.142 -174.542 - 37 5043.91 1228 0 1 65.6694 -123.312 -204.45 - 37 423.352 1229 0 1 65.85 -123.378 -204.815 - 37 5138.22 282 0 0 66.3626 -123.562 -205.85 - 37 1695.84 283 0 0 64.9054 -123.499 -205.85 - 37 1253.31 279 0 0 65.4578 -124.273 -205.85 - 37 2100.26 278 0 0 65.4507 -124.35 -205.974 - 37 3.79601 352 1 0 69.6524 -109.551 -176.25 - 37 1546.15 353 1 0 69.6526 -109.55 -176.249 - 37 1813.69 1249 1 1 69.8545 -108.854 -174.85 - 37 1117.89 416 2 0 71.586 -96.8307 -146.25 - 37 1294.96 417 2 0 71.5974 -96.75 -146.057 - 37 2543.46 1257 2 1 71.6358 -96.2431 -144.85 - 37 62.4855 1258 2 1 71.65 -96.0812 -144.458 - 37 2809.21 1225 0 1 65.239 -122.407 -204.45 - 37 1177.67 1224 0 1 65.05 -121.737 -204.709 - 37 198.495 306 0 0 64.2705 -118.866 -205.85 - 37 374.306 307 0 0 64.2392 -118.75 -205.896 - 37 462.311 308 0 0 64.1854 -118.55 -205.975 - 37 491.962 309 0 0 64.133 -118.35 -206.056 - 37 497.169 310 0 0 64.0789 -118.15 -206.135 - 37 188.718 311 0 0 64.0232 -117.95 -206.213 - 37 19.5465 184 1 0 12.1672 -143.347 -176.25 - 37 1710.93 183 1 0 12.1585 -143.35 -176.245 - 37 696.681 182 1 0 11.6265 -143.55 -175.967 - 37 378.475 947 1 1 9.59341 -144.343 -174.85 - 37 600.044 946 1 1 9.45 -144.399 -174.771 - 37 723.063 945 1 1 9.25 -144.476 -174.66 - 37 615.269 944 1 1 9.05 -144.554 -174.548 - 37 659.204 73 2 0 -43.3857 -165.473 -146.25 - 37 1957.51 72 2 0 -43.5784 -165.55 -146.146 - 37 197.625 71 2 0 -44.1151 -165.75 -145.875 - 37 565.553 669 2 1 -46.1116 -166.484 -144.85 - 37 810.555 668 2 1 -46.25 -166.534 -144.779 - 37 853.086 667 2 1 -46.45 -166.605 -144.675 - 37 773.314 666 2 1 -46.65 -166.676 -144.572 - 37 153.726 665 2 1 -46.85 -166.746 -144.469 - 37 5977.92 12 3 0 -155.105 -177.685 -116.25 - 37 4169.72 11 3 0 -155.672 -177.75 -116.084 - 37 402.46 1223 0 1 64.85 -123.234 -204.614 - 37 414.24 1222 0 1 64.65 -123.219 -204.74 - 37 1206.11 285 0 0 62.8759 -123.096 -205.85 - 37 13.8029 1221 0 1 64.45 -123.23 -204.842 - 37 1288.86 286 0 0 64.9328 -122.781 -205.85 - 37 1278.63 287 0 0 64.8956 -122.75 -205.956 - 37 517.786 412 1 0 114.016 -97.6104 -176.25 - 37 1858.27 413 1 0 114.13 -97.55 -176.184 - 37 1070.97 414 1 0 114.498 -97.35 -175.974 - 37 588.042 1481 1 1 116.454 -96.2824 -174.85 - 37 1078.79 1482 1 1 116.55 -96.2301 -174.795 - 37 1226.5 1483 1 1 116.75 -96.121 -174.678 - 37 1048.18 1484 1 1 116.95 -96.0046 -174.554 - 37 785.481 241 1 0 117.15 -131.847 -176.25 - 37 107.427 240 1 0 117.784 -131.95 -175.905 - 37 23.4014 1497 1 1 119.722 -132.265 -174.85 - 37 228.174 1498 1 1 119.75 -132.27 -174.835 - 37 207.767 1499 1 1 119.95 -132.302 -174.726 - 37 185.149 1500 1 1 120.15 -132.335 -174.617 - 37 96.8359 1501 1 1 120.35 -132.368 -174.508 - 37 365.168 194 2 0 172.511 -141.32 -146.25 - 37 785.981 193 2 0 172.687 -141.35 -146.155 - 37 24.9895 1774 2 1 175.114 -141.761 -144.85 - 37 217.426 1775 2 1 175.15 -141.767 -144.831 - 37 196.2 1776 2 1 175.35 -141.801 -144.723 - 37 211.12 1777 2 1 175.55 -141.836 -144.616 - 37 131.125 1778 2 1 175.75 -141.871 -144.508 - 37 222.488 192 2 0 173.266 -141.55 -145.884 - 37 226.585 405 1 0 16.5328 -98.9878 -176.25 - 37 1547.46 406 1 0 16.4565 -98.95 -176.207 - 37 795.496 407 1 0 16.0509 -98.75 -175.975 - 37 518.321 969 1 1 14.0084 -97.8008 -174.85 - 37 732.624 968 1 1 13.85 -97.7275 -174.763 - 37 682.442 967 1 1 13.65 -97.6321 -174.654 - 37 695.263 966 1 1 13.45 -97.5388 -174.548 - 37 576.038 607 2 0 -134.503 -58.4864 -146.25 - 37 4485.47 608 2 0 -134.641 -58.45 -146.224 - 37 6101.84 609 2 0 -135.502 -58.25 -146.063 - 37 3497.91 610 2 0 -136.371 -58.05 -145.912 - 37 1145.73 189 2 1 -142.263 -57.0746 -144.85 - 37 4537.77 188 2 1 -142.35 -57.0603 -144.834 - 37 343.144 187 2 1 -142.55 -57.0298 -144.803 - 37 1764.37 467 0 0 49.1452 -86.5444 -205.999 - 37 1834.32 468 0 0 49.4132 -86.45 -206.015 - 37 6.30165 1380 3 1 96.1579 -50.4944 -114.45 - 37 159.518 1379 3 1 96.15 -50.4905 -114.462 - 37 6305.56 1149 0 1 49.8822 -84.9117 -204.85 - 37 67.4173 813 6 1 -17.387 -113.707 -24.6006 - 37 163.998 328 1 0 59.3787 -114.55 -175.897 - 37 1099.29 1195 1 1 59.1333 -114.222 -174.85 - 37 115.362 1194 1 1 59.05 -114.11 -174.495 - 37 1481.66 381 2 0 54.4783 -103.92 -146.25 - 37 496.584 1171 2 1 54.2691 -103.418 -144.85 - 37 1072.86 1170 2 1 54.25 -103.371 -144.718 - 37 1194.68 449 3 0 52.3286 -90.2627 -116.25 - 37 62.0587 1161 3 1 52.2505 -89.5592 -114.85 - 37 2131.48 1160 3 1 52.25 -89.5543 -114.841 - 37 3975.93 568 4 0 55.8962 -66.4313 -86.25 - 37 3089.81 569 4 0 55.9317 -66.25 -86.0324 - 37 46.6884 356 1 0 29.102 -108.768 -176.25 - 37 554.329 357 1 0 29.0555 -108.75 -176.214 - 37 18.0351 1036 1 1 27.2664 -108.035 -174.85 - 37 240.8 1035 1 1 27.25 -108.028 -174.838 - 37 324.349 1034 1 1 27.05 -107.948 -174.685 - 37 128.795 1033 1 1 26.85 -107.868 -174.532 - 37 360.88 432 2 0 -8.99318 -93.6477 -146.25 - 37 362.215 433 2 0 -9.23963 -93.55 -146.055 - 37 237.724 846 2 1 -10.7651 -92.9356 -144.85 - 37 259.632 845 2 1 -10.85 -92.9013 -144.783 - 37 257.048 844 2 1 -11.05 -92.8206 -144.625 - 37 28.8535 843 2 1 -11.25 -92.7405 -144.468 - 37 588.506 503 3 0 -46.5906 -79.4272 -116.25 - 37 33.2587 504 3 0 -47.0611 -79.25 -115.874 - 37 117.29 658 3 1 -48.3435 -78.7698 -114.85 - 37 273.773 657 3 1 -48.45 -78.73 -114.765 - 37 375.469 656 3 1 -48.65 -78.6557 -114.606 - 37 1.00467 655 3 1 -48.85 -78.5836 -114.45 - 37 95.1231 571 4 0 -86.1741 -65.6696 -86.25 - 37 673.661 572 4 0 -86.2307 -65.65 -86.2072 - 37 41.0364 460 4 1 -88.012 -65.0362 -84.85 - 37 242.263 459 4 1 -88.05 -65.0232 -84.821 - 37 356.865 458 4 1 -88.25 -64.954 -84.6679 - 37 154.113 457 4 1 -88.45 -64.883 -84.5119 - 37 76.098 648 5 0 -125.532 -50.2799 -56.25 - 37 600.714 649 5 0 -125.608 -50.25 -56.1923 - 37 259.38 263 5 1 -127.368 -49.557 -54.85 - 37 343.131 262 5 1 -127.55 -49.4854 -54.7112 - 37 182.495 261 5 1 -127.75 -49.4073 -54.5573 - 37 283.35 721 6 0 -164.505 -35.6831 -26.25 - 37 632.301 722 6 0 -164.594 -35.65 -26.1817 - 37 28.8297 69 6 1 -166.323 -35.0076 -24.85 - 37 374.958 68 6 1 -166.35 -34.9974 -24.829 - 37 334.632 67 6 1 -166.55 -34.9234 -24.675 - 37 131.283 66 6 1 -166.75 -34.8491 -24.5212 - 37 51.8586 332 1 0 91.6118 -113.582 -176.25 - 37 183.455 333 1 0 91.6983 -113.55 -176.157 - 37 1.89165 1363 1 1 92.9426 -113.088 -174.85 - 37 175.66 1364 1 1 92.95 -113.085 -174.842 - 37 86.2444 1365 1 1 93.15 -113.011 -174.633 - 37 37.2114 383 2 0 121.033 -103.38 -146.25 - 37 167.816 384 2 0 121.118 -103.35 -146.163 - 37 67.5165 1511 2 1 122.402 -102.895 -144.85 - 37 92.2445 1512 2 1 122.55 -102.842 -144.698 - 37 14.994 1513 2 1 122.75 -102.769 -144.493 - 37 95.4175 442 3 0 148.371 -91.6383 -116.25 - 37 101.065 443 3 0 148.574 -91.55 -116.026 - 37 61.5688 1647 3 1 149.632 -91.0762 -114.85 - 37 106.178 1648 3 1 149.75 -91.023 -114.718 - 37 44.0503 1649 3 1 149.95 -90.933 -114.495 - 37 198.618 506 4 0 175.545 -78.8347 -86.25 - 37 91.9306 1783 4 1 176.792 -78.229 -84.85 - 37 112.219 1784 4 1 176.95 -78.1514 -84.6714 - 37 1096.27 224 1 0 80.184 -135.242 -176.25 - 37 570.635 223 1 0 80.3168 -135.35 -175.997 - 37 1459.99 1304 1 1 80.8851 -135.866 -174.85 - 37 333.876 1305 1 1 81.05 -136.016 -174.517 - 37 296.96 138 2 0 97.498 -152.518 -146.25 - 37 2083.92 137 2 0 97.5294 -152.55 -146.196 - 37 136.747 136 2 0 97.721 -152.75 -145.873 - 37 2296.55 1391 2 1 98.3679 -153.362 -144.85 - 37 933.102 1392 2 1 98.55 -153.535 -144.562 - 37 89.9186 342 1 0 44.7129 -111.652 -176.25 - 37 82.4116 343 1 0 44.5302 -111.55 -176.005 - 37 4.67814 1118 1 1 43.6663 -111.061 -174.85 - 37 189.18 1117 1 1 43.65 -111.052 -174.828 - 37 41.9471 1116 1 1 43.45 -110.938 -174.562 - 37 33.83 403 2 0 22.9176 -99.3874 -146.25 - 37 108.061 404 2 0 22.8512 -99.35 -146.158 - 37 28.3022 1009 2 1 21.9056 -98.8144 -144.85 - 37 82.9611 1008 2 1 21.85 -98.7829 -144.773 - 37 17.2948 1007 2 1 21.65 -98.6694 -144.496 - 37 124.938 464 3 0 1.48365 -87.2481 -116.25 - 37 23.5936 902 3 1 0.481997 -86.6837 -114.85 - 37 87.3791 901 3 1 0.45 -86.6657 -114.805 - 37 48.1337 900 3 1 0.25 -86.5531 -114.526 - 37 167.461 523 4 0 -19.8792 -75.4085 -86.25 - 37 97.2248 795 4 1 -20.8791 -74.852 -84.85 - 37 127.622 794 4 1 -21.05 -74.7567 -84.6111 - 37 45.6877 582 5 0 -41.27 -63.5136 -56.25 - 37 81.1728 583 5 0 -41.3844 -63.45 -56.0896 - 37 90.4325 688 5 1 -42.2672 -62.9604 -54.85 - 37 55.7353 687 5 1 -42.45 -62.8591 -54.5933 - 37 100.518 642 6 0 -62.3787 -51.5124 -26.25 - 37 72.1653 643 6 0 -62.4882 -51.45 -26.0942 - 37 62.9022 583 6 1 -63.3628 -50.9514 -24.85 - 37 391.584 582 6 1 -63.45 -50.9016 -24.7259 - 37 50.4188 703 7 0 -82.5443 -39.3059 3.75 - 37 83.4711 704 7 0 -82.6363 -39.25 3.88734 - 37 83.6924 482 7 1 -83.4834 -38.7322 5.15 - 37 41.7323 481 7 1 -83.65 -38.6303 5.39814 - 37 116.638 767 8 0 -101.302 -26.6474 33.75 - 37 100.536 389 8 1 -102.17 -26.056 35.15 - 37 53.2455 388 8 1 -102.35 -25.933 35.4415 - 37 0.893094 831 9 0 -120.088 -13.6518 63.75 - 37 134.424 832 9 0 -120.091 -13.65 63.7542 - 37 144.788 295 9 1 -120.971 -13.042 65.15 - 37 34.8962 294 9 1 -121.15 -12.9181 65.434 - 37 46.1402 901 10 0 -139.159 0.381812 93.75 - 37 82.8371 902 10 0 -139.251 0.45 93.895 - 37 48.2653 200 10 1 -140.049 1.03469 95.15 - 37 90.2204 199 10 1 -140.15 1.10817 95.3081 - 37 90.0848 970 11 0 -158.141 14.1277 123.75 - 37 100.398 971 11 0 -158.31 14.25 124.017 - 37 63.6455 105 11 1 -159.029 14.7715 125.15 - 37 69.1994 104 11 1 -159.15 14.8595 125.341 - 37 52.2077 1040 12 0 -177.106 28.1782 153.75 - 37 70.8876 1041 12 0 -177.203 28.25 153.903 - 37 75.0076 10 12 1 -177.988 28.8356 155.15 - 37 48.4987 9 12 1 -178.15 28.9561 155.407 - 37 140.732 430 1 0 1.30466 -93.9937 -176.25 - 37 207.268 431 1 0 1.22974 -93.95 -176.213 - 37 135.154 432 1 0 0.866734 -93.7497 -176.051 - 37 56.0146 889 1 1 -2.05919 -92.5036 -174.85 - 37 128.595 888 1 1 -2.25077 -92.4207 -174.773 - 37 58.8879 887 1 1 -2.45 -92.3378 -174.697 - 37 81.1337 886 1 1 -2.65 -92.2599 -174.625 - 37 59.8231 885 1 1 -2.85 -92.184 -174.553 - 37 30.0188 884 1 1 -3.05 -92.1058 -174.482 - 37 264.088 604 2 0 -127.12 -59.2299 -146.25 - 37 227.526 605 2 0 -127.912 -59.05 -146.06 - 37 31.2248 606 2 0 -128.669 -58.85 -145.868 - 37 145.629 238 2 1 -132.363 -57.974 -144.85 - 37 63.3919 237 2 1 -132.55 -57.9264 -144.801 - 37 93.7841 236 2 1 -132.75 -57.8787 -144.757 - 37 52.5008 235 2 1 -132.95 -57.8373 -144.728 - 37 81.5654 234 2 1 -133.15 -57.7977 -144.703 - 37 60.8956 233 2 1 -133.35 -57.7606 -144.679 - 37 74.1628 232 2 1 -133.55 -57.721 -144.654 - 37 57.5376 231 2 1 -133.75 -57.6797 -144.633 - 37 64.9044 230 2 1 -133.951 -57.6368 -144.615 - 37 75.6562 229 2 1 -134.15 -57.5908 -144.597 - 37 83.7321 228 2 1 -134.35 -57.5385 -144.576 - 37 63.8199 227 2 1 -134.55 -57.482 -144.566 - 37 61.4683 226 2 1 -134.75 -57.4174 -144.56 - 37 59.2222 225 2 1 -134.95 -57.3554 -144.556 - 37 80.4563 224 2 1 -135.15 -57.2946 -144.543 - 37 79.4694 223 2 1 -135.35 -57.2333 -144.527 - 37 82.303 222 2 1 -135.55 -57.1698 -144.513 - 37 61.1764 221 2 1 -135.75 -57.0941 -144.497 - 37 79.3665 220 2 1 -135.95 -57.0183 -144.483 - 37 47.1807 219 2 1 -136.151 -56.9432 -144.467 - 37 98.8711 216 2 1 -136.784 -56.6174 -144.45 - 37 198.731 215 2 1 -136.95 -56.3211 -144.562 - 37 223.347 214 2 1 -137.15 -55.8435 -144.75 - 37 7.86811 636 2 0 -138.432 -52.6749 -145.85 - 37 139.627 637 2 0 -138.442 -52.65 -145.859 - 37 77.7509 638 2 0 -138.519 -52.45 -145.933 - 37 92.8857 639 2 0 -138.614 -52.25 -146.019 - 37 62.978 640 2 0 -138.778 -52.05 -146.138 - 37 454.788 1168 0 1 53.829 -125.504 -204.45 - 37 291.287 1167 0 1 53.65 -125.502 -204.671 - 37 67.317 1166 0 1 53.45 -125.496 -204.826 - 37 169.717 273 0 0 52.3713 -125.487 -205.851 - 37 259.735 280 0 0 53.7605 -124.15 -206.072 - 37 134.064 391 0 0 45.518 -101.821 -206.25 - 37 48.1992 1120 0 1 44.105 -102.736 -204.85 - 37 92.5754 1119 0 1 44.05 -102.8 -204.746 - 37 9.64524 462 1 0 56.2509 -87.4818 -176.25 - 37 52.514 463 1 0 56.2538 -87.45 -176.228 - 37 80.7326 464 1 0 56.2724 -87.2498 -176.12 - 37 50.4892 465 1 0 56.259 -87.0494 -176.024 - 37 43.572 466 1 0 56.2689 -86.8493 -175.926 - 37 80.6444 1181 1 1 56.2932 -84.5193 -174.85 - 37 126.302 1180 1 1 56.2498 -84.2404 -174.715 - 37 33.9855 1179 1 1 56.05 -83.8932 -174.497 - 37 48.0221 1159 0 1 51.9397 -126.002 -204.45 - 37 63.6257 1158 0 1 51.85 -126.017 -204.463 - 37 78.5011 1157 0 1 51.6498 -126.05 -204.492 - 37 122.763 1156 0 1 51.45 -126.08 -204.52 - 37 126.246 1155 0 1 51.2493 -126.111 -204.547 - 37 136.777 1154 0 1 51.05 -126.139 -204.574 - 37 67.1459 1153 0 1 50.85 -126.164 -204.6 - 37 42.013 1152 0 1 50.65 -126.188 -204.626 - 37 110.407 1151 0 1 50.45 -126.219 -204.655 - 37 87.7618 1150 0 1 50.25 -126.255 -204.684 - 37 82.468 1148 0 1 49.8492 -126.315 -204.74 - 37 58.2071 1147 0 1 49.65 -126.346 -204.769 - 37 50.1197 1146 0 1 49.45 -126.379 -204.801 - 37 29.2868 1145 0 1 49.2498 -126.413 -204.833 - 37 648.07 262 0 0 42.2461 -127.571 -205.85 - 37 820.277 261 0 0 41.0457 -127.75 -206.008 - 37 235.652 260 0 0 39.2879 -127.95 -206.212 - 37 210.343 199 0 0 -106.581 -140.335 -206.25 - 37 2.86285 1176 0 1 55.2665 -125.374 -204.45 - 37 65.2599 1175 0 1 55.2498 -125.378 -204.457 - 37 73.1195 1174 0 1 55.0499 -125.408 -204.523 - 37 174.701 1173 0 1 54.85 -125.42 -204.567 - 37 98.9847 1172 0 1 54.65 -125.431 -204.6 - 37 121.497 1171 0 1 54.4498 -125.45 -204.606 - 37 127.016 1170 0 1 54.25 -125.453 -204.608 - 37 118.344 1169 0 1 54.05 -125.474 -204.59 - 37 90.819 1165 0 1 53.2498 -125.72 -204.688 - 37 19.5481 1164 0 1 53.05 -125.858 -204.814 - 37 196.53 263 0 0 51.3657 -127.477 -205.85 - 37 73.3286 259 0 0 50.7045 -128.15 -206.111 - 37 24.7069 258 0 0 50.5341 -128.35 -206.224 - 37 285.196 82 0 0 11.7244 -163.59 -206.25 - 37 130.127 956 0 1 11.3209 -163.482 -204.85 - 37 106.642 81 0 0 11.5871 -163.75 -206.1 - 37 4735.3 281 0 0 50.8419 -123.95 -206.037 - 37 36.8908 116 1 0 57.5277 -156.846 -176.25 - 37 113.133 115 1 0 57.5368 -156.95 -176.164 - 37 50.4215 114 1 0 57.5624 -157.15 -175.984 - 37 74.0969 1188 1 1 57.7035 -158.32 -174.85 - 37 222.553 1187 1 1 57.6495 -158.52 -174.675 - 37 207.923 133 1 0 -40.7559 -153.522 -176.25 - 37 1790.49 132 1 0 -40.8542 -153.55 -176.224 - 37 1848.95 131 1 0 -41.5609 -153.75 -176.044 - 37 421.611 670 1 1 -45.8705 -154.785 -174.85 - 37 432.903 669 1 1 -46.05 -154.828 -174.8 - 37 435.468 668 1 1 -46.25 -154.878 -174.743 - 37 425.154 667 1 1 -46.45 -154.927 -174.685 - 37 501.611 666 1 1 -46.65 -154.977 -174.627 - 37 577.178 665 1 1 -46.85 -155.026 -174.57 - 37 525.398 664 1 1 -47.05 -155.077 -174.512 - 37 23.6167 663 1 1 -47.25 -155.127 -174.453 - 37 855.041 20 2 0 -142.177 -176.097 -146.25 - 37 3582.34 19 2 0 -142.416 -176.15 -146.179 - 37 409.438 18 2 0 -143.362 -176.35 -145.887 - 37 161.51 169 2 1 -146.299 -176.968 -144.85 - 37 855.643 168 2 1 -146.35 -176.979 -144.832 - 37 882.276 167 2 1 -146.55 -177.022 -144.761 - 37 804.414 166 2 1 -146.75 -177.064 -144.69 - 37 877.65 165 2 1 -146.95 -177.109 -144.619 - 37 864.845 164 2 1 -147.15 -177.152 -144.546 - 37 419.607 163 2 1 -147.35 -177.193 -144.478 - 37 83.1719 637 1 0 152.838 -52.5389 -176.25 - 37 279.24 638 1 0 152.948 -52.45 -176.215 - 37 169.143 639 1 0 153.196 -52.25 -176.134 - 37 231.116 640 1 0 153.445 -52.05 -176.053 - 37 215.605 641 1 0 153.694 -51.85 -175.972 - 37 104.875 642 1 0 153.943 -51.65 -175.891 - 37 28.0273 1684 1 1 157.125 -49.1106 -174.85 - 37 151.923 1685 1 1 157.15 -49.0906 -174.842 - 37 145.94 1686 1 1 157.35 -48.9311 -174.776 - 37 172.679 1687 1 1 157.55 -48.771 -174.711 - 37 201.652 1688 1 1 157.75 -48.6114 -174.645 - 37 155.658 1689 1 1 157.95 -48.4527 -174.579 - 37 230.945 1690 1 1 158.15 -48.2939 -174.513 - 37 42.2722 362 4 0 -54.2958 -107.75 -86.25 - 37 38.8484 623 4 0 -51.148 -55.4191 -86.25 - 37 2503.41 313 0 0 118.078 -117.472 -206.25 - 37 140.065 1502 0 1 120.701 -117.24 -204.85 - 37 567.683 1503 0 1 120.75 -117.236 -204.824 - 37 744.143 1504 0 1 120.95 -117.218 -204.717 - 37 621.747 1505 0 1 121.15 -117.201 -204.606 - 37 308.291 1506 0 1 121.35 -117.185 -204.5 - 37 1647.4 350 1 0 165.467 -110.011 -176.25 - 37 1320.48 351 1 0 165.842 -109.95 -176.01 - 37 66.1856 1737 1 1 167.732 -109.577 -174.85 - 37 998.524 1738 1 1 167.75 -109.573 -174.839 - 37 993.562 1739 1 1 167.95 -109.532 -174.715 - 37 1101.17 1740 1 1 168.15 -109.492 -174.592 - 37 122.537 1741 1 1 168.35 -109.45 -174.468 - 37 342.076 288 0 0 65.2395 -122.55 -205.915 - 37 128.748 289 0 0 68.0449 -122.222 -206.236 - 37 119.253 339 0 0 87.9724 -112.175 -206.25 - 37 92.7788 290 0 0 63.4846 -122.15 -206.084 - 37 3.03308 1240 1 0 -53.7537 68.2388 -176.25 - 37 77.0828 1241 1 0 -53.7607 68.2501 -176.248 - 37 69.4117 1242 1 0 -53.886 68.45 -176.219 - 37 59.3125 1243 1 0 -54.0126 68.65 -176.192 - 37 77.7572 1244 1 0 -54.139 68.85 -176.164 - 37 72.0807 1245 1 0 -54.2661 69.0501 -176.138 - 37 61.1463 1246 1 0 -54.402 69.25 -176.112 - 37 68.3225 1247 1 0 -54.5356 69.45 -176.09 - 37 77.3441 1248 1 0 -54.6667 69.6502 -176.066 - 37 71.3016 1249 1 0 -54.7981 69.85 -176.038 - 37 56.7843 1250 1 0 -54.9275 70.05 -176.009 - 37 54.5044 1251 1 0 -55.0561 70.25 -175.978 - 37 71.7446 1252 1 0 -55.1853 70.4511 -175.942 - 37 100.142 1253 1 0 -55.3088 70.65 -175.913 - 37 73.6207 1254 1 0 -55.4283 70.8503 -175.885 - 37 20.4554 1255 1 0 -55.5389 71.05 -175.859 - 37 52.3338 600 1 1 -59.9518 78.9272 -174.85 - 37 116.027 599 1 1 -60.0501 79.104 -174.827 - 37 178.986 598 1 1 -60.2501 79.4574 -174.774 - 37 346.7 597 1 1 -60.45 79.8045 -174.72 - 37 183.832 596 1 1 -60.6502 80.1423 -174.665 - 37 158.735 595 1 1 -60.85 80.4824 -174.609 - 37 97.9526 594 1 1 -61.05 80.8149 -174.552 - 37 104.306 593 1 1 -61.25 81.1504 -174.489 - 37 45.6678 1651 2 0 -46.2814 150.398 -146.25 - 37 72.8268 1652 2 0 -46.2408 150.55 -146.194 - 37 66.3884 1653 2 0 -46.189 150.75 -146.12 - 37 62.7836 1654 2 0 -46.1333 150.95 -146.043 - 37 92.6526 1655 2 0 -46.0758 151.15 -145.97 - 37 65.506 1656 2 0 -46.0165 151.35 -145.9 - 37 131.813 674 2 1 -45.1723 154.303 -144.85 - 37 335.319 675 2 1 -45.05 154.727 -144.706 - 37 35.675 676 2 1 -44.85 155.762 -144.475 - 37 187.583 1685 3 0 -16.8268 157.247 -116.25 - 37 45.4179 826 3 1 -14.7652 156.929 -114.85 - 37 50.1345 827 3 1 -14.65 156.908 -114.768 - 37 57.6208 828 3 1 -14.4498 156.836 -114.707 - 37 43.5524 829 3 1 -14.25 156.801 -114.716 - 37 55.9612 830 3 1 -14.0498 156.741 -114.74 - 37 53.0837 831 3 1 -13.85 156.651 -114.743 - 37 144.773 832 3 1 -13.65 156.546 -114.742 - 37 51.232 833 3 1 -13.4496 156.43 -114.728 - 37 45.2952 834 3 1 -13.2499 156.36 -114.691 - 37 63.147 835 3 1 -13.0491 156.299 -114.653 - 37 53.7323 836 3 1 -12.8497 156.299 -114.609 - 37 43.2856 837 3 1 -12.6497 156.345 -114.527 - 37 87.287 383 1 0 83.2143 -103.406 -176.25 - 37 88.3716 384 1 0 83.2968 -103.35 -176.133 - 37 87.5339 1321 1 1 84.2594 -102.857 -174.85 - 37 50.2206 1322 1 1 84.45 -102.757 -174.59 - 37 29.3307 624 2 0 93.745 -55.154 -146.25 - 37 61.6429 625 2 0 93.7647 -55.05 -146.198 - 37 73.5021 626 2 0 93.7902 -54.8498 -146.121 - 37 114.68 627 2 0 93.8162 -54.6498 -146.019 - 37 51.314 628 2 0 93.8644 -54.45 -145.957 - 37 54.541 629 2 0 93.9271 -54.25 -145.905 - 37 14.9972 630 2 0 94.0194 -54.05 -145.861 - 37 306.622 1379 2 1 96.0235 -48.9692 -144.85 - 37 227.865 1380 2 1 96.15 -48.0846 -144.755 - 37 60.3992 708 2 0 98.2535 -38.4487 -145.85 - 37 129.916 709 2 0 98.3336 -38.25 -145.902 - 37 74.2926 710 2 0 98.4046 -38.0496 -146.019 - 37 25.0985 711 2 0 98.4851 -37.85 -146.19 - 37 116.836 826 2 0 113.682 -14.7224 -146.25 - 37 268.346 1469 2 1 114.108 -14.3648 -144.85 - 37 114.645 1471 2 1 114.409 -14.2135 -144.85 - 37 167.799 472 2 0 68.2699 -85.5492 -146.25 - 37 138.298 710 6 0 174.118 -37.9377 -26.25 - 37 43.8834 711 6 0 174.094 -37.85 -26.0325 - 37 237.647 1770 6 1 174.184 -37.7754 -24.8498 - 37 181.726 1769 6 1 174.15 -37.5436 -24.5609 - 37 8.16059 720 6 0 172.863 -35.8785 -25.85 - 37 238.137 723 6 0 172.877 -35.45 -25.9976 - 37 20.7275 1740 0 0 -74.785 168.287 -206.25 - 37 83.6537 1741 0 0 -74.8254 168.35 -206.204 - 37 119.59 1742 0 0 -74.9555 168.55 -206.059 - 37 14.5175 1743 0 0 -75.111 168.75 -205.873 - 37 30.8559 520 0 1 -75.9911 169.85 -204.85 - 37 97.2604 519 0 1 -76.05 169.924 -204.779 - 37 33.9939 518 0 1 -76.25 170.142 -204.55 - 37 99.4738 1795 1 0 -103.751 179.213 -176.25 - 37 51.7165 1796 1 0 -104.004 179.35 -175.957 - 37 4.64162 374 1 1 -105.339 179.785 -174.85 - 37 72.0592 373 1 1 -105.35 179.788 -174.841 - 37 66.9459 372 1 1 -105.55 179.849 -174.691 - 37 66.7873 371 1 1 -105.75 179.954 -174.56 - 37 8.59395 370 1 1 -105.95 180.087 -174.464 - 37 152.385 1769 2 0 -108.381 174.12 -146.25 - 37 178.848 355 2 1 -109.043 173.576 -144.85 - 37 151.092 354 2 1 -109.15 173.507 -144.637 - 37 111.63 353 2 1 -109.35 173.276 -144.575 - 37 58.5259 1758 2 0 -109.877 171.918 -145.85 - 37 88.869 1757 2 0 -109.963 171.75 -146.034 - 37 16.2357 1756 2 0 -110.052 171.55 -146.224 - 37 70.6271 306 1 1 -118.79 139.259 -174.45 - 37 77.2559 305 1 1 -118.95 139.378 -174.606 - 37 53.1372 304 1 1 -119.15 139.323 -174.74 - 37 31.9117 1572 1 0 -120.384 134.659 -175.85 - 37 59.2949 1571 1 0 -120.416 134.55 -175.867 - 37 111.541 1570 1 0 -120.441 134.35 -175.94 - 37 41.35 1569 1 0 -120.439 134.15 -176.029 - 37 278.988 1362 1 0 -128.552 92.6054 -176.25 - 37 59.5381 1673 1 0 -81.1581 154.819 -176.25 - 37 53.1556 1672 1 0 -81.3676 154.75 -175.866 - 37 59.8123 483 1 1 -83.276 153.916 -174.85 - 37 18.0797 1674 1 0 -82.7625 155.075 -175.85 - 37 118.473 487 1 1 -82.5246 155.886 -174.85 - 37 85.1116 270 1 0 62.8338 -126.145 -176.25 - 37 349.168 269 1 0 62.8342 -126.15 -176.233 - 37 53.2539 1143 7 1 48.8397 -132.661 5.15 - 37 58.2509 276 7 0 40.2058 -124.95 3.88277 - 37 27.4273 1142 7 1 48.65 -132.773 5.4843 -Number of digits in this event = 249 -Using G4ParticleGun ... -5.80964 LIN -proton -Event: 38 -Number of tracker hits in this event = 23 - 38 113.489 429 10 1 -94.3245 60.4727 95.55 - 38 94.9846 1202 10 0 -94.3252 60.4729 94.15 - 38 132.575 429 9 1 -94.3452 60.4824 65.55 - 38 111.516 1202 9 0 -94.3452 60.4836 64.15 - 38 218.461 429 8 1 -94.344 60.5091 35.55 - 38 87.8488 1202 8 0 -94.3435 60.5108 34.15 - 38 100.096 429 7 1 -94.3343 60.5427 5.55 - 38 107.33 1202 7 0 -94.3336 60.5437 4.15 - 38 124.603 429 6 1 -94.3167 60.5624 -24.45 - 38 104.821 1202 6 0 -94.3153 60.5637 -25.85 - 38 120.923 429 5 1 -94.286 60.5904 -54.45 - 38 103.178 1202 5 0 -94.2857 60.592 -55.85 - 38 122.435 429 4 1 -94.2799 60.6221 -84.45 - 38 99.783 1202 4 0 -94.2807 60.6228 -85.85 - 38 106.297 429 3 1 -94.2943 60.635 -114.45 - 38 123.135 1202 3 0 -94.2954 60.6352 -115.85 - 38 141.148 429 2 1 -94.3204 60.6371 -144.45 - 38 109.01 1202 2 0 -94.32 60.6362 -145.85 - 38 125.78 429 1 1 -94.3116 60.6163 -174.45 - 38 112.206 1202 1 0 -94.3115 60.6158 -175.85 - 38 131.681 429 0 1 -94.3033 60.6049 -204.45 - 38 128.87 1202 0 0 -94.3026 60.6053 -205.85 - 38 313.465 1203 0 0 -94.2714 60.65 -205.994 -Number of digits in this event = 12 -Using G4ParticleGun ... -1.47007 LIN -proton -Event: 39 -Number of tracker hits in this event = 22 - 39 162.973 900 9 1 0.069912 -91.4901 65.55 - 39 122.092 443 9 0 0.0720487 -91.4965 64.15 - 39 138.347 900 8 1 0.121645 -91.6233 35.55 - 39 106.947 442 8 0 0.125966 -91.6311 34.15 - 39 110.924 900 7 1 0.210695 -91.7764 5.55 - 39 221.428 441 7 0 0.212813 -91.7795 4.15 - 39 96.384 901 6 1 0.262125 -91.8422 -24.45 - 39 285.557 441 6 0 0.262125 -91.8501 -25.85 - 39 126.042 901 5 1 0.258323 -92.0229 -54.45 - 39 177.896 440 5 0 0.255359 -92.0324 -55.85 - 39 127.936 900 4 1 0.193453 -92.2224 -84.45 - 39 156.467 439 4 0 0.18969 -92.2293 -85.85 - 39 130.322 900 3 1 0.101712 -92.3632 -114.45 - 39 161.724 438 3 0 0.0972886 -92.3701 -115.85 - 39 123.306 899 1 1 -0.105864 -92.6399 -174.45 - 39 229.327 437 1 0 -0.113639 -92.6449 -175.85 - 39 123.734 898 0 1 -0.29464 -92.7297 -204.45 - 39 101.527 437 0 0 -0.303142 -92.7354 -205.85 - 39 92.8809 439 3 0 0.13586 -92.35 -115.957 - 39 86.8816 442 6 0 0.309812 -91.7499 -25.966 - 39 37.5427 440 8 0 -0.0500276 -91.9517 34.0479 - 39 157.354 441 8 0 -0.101005 -91.95 34.028 -Number of digits in this event = 17 -Using G4ParticleGun ... -3.24629 LIN -proton -Event: 40 -Number of tracker hits in this event = 43 - 40 100.223 521 11 1 -75.6664 18.478 125.55 - 40 102.16 992 11 0 -75.6658 18.4797 124.15 - 40 111.886 521 10 1 -75.6554 18.516 95.55 - 40 89.3881 992 10 0 -75.6523 18.5184 94.15 - 40 107.968 522 9 1 -75.595 18.5647 65.55 - 40 121.169 992 9 0 -75.591 18.5687 64.15 - 40 117.035 522 8 1 -75.5155 18.6543 35.55 - 40 94.5235 993 8 0 -75.511 18.6572 34.15 - 40 169.352 523 7 1 -75.421 18.7125 5.55 - 40 128.428 993 7 0 -75.4142 18.7148 4.15 - 40 296.583 523 6 1 -75.2738 18.7666 -24.45 - 40 283.852 993 6 0 -75.265 18.7678 -25.85 - 40 102.571 524 5 1 -75.0844 18.7976 -54.45 - 40 116.962 993 5 0 -75.0759 18.7988 -55.85 - 40 107.887 525 4 1 -74.9013 18.8259 -84.45 - 40 106.34 993 4 0 -74.8927 18.8276 -85.85 - 40 99.7818 526 3 1 -74.7135 18.8547 -114.45 - 40 140.085 994 3 0 -74.7082 18.8543 -115.85 - 40 157.724 527 2 1 -74.5991 18.849 -144.45 - 40 109.832 994 2 0 -74.5938 18.8503 -145.85 - 40 109.084 527 1 1 -74.494 18.8611 -174.45 - 40 128.682 994 1 0 -74.4902 18.8602 -175.85 - 40 130.67 528 0 1 -74.414 18.8477 -204.45 - 40 113.788 993 0 0 -74.4149 18.8459 -205.85 - 40 12.9538 993 3 0 -74.7113 18.85 -116.214 - 40 80.8491 482 5 1 -83.5505 16.3608 -54.45 - 40 62.7892 481 5 1 -83.65 16.3289 -54.6755 - 40 132.49 980 5 0 -84.1509 16.1334 -55.85 - 40 40.1679 422 4 1 -95.7018 10.7135 -84.45 - 40 158.556 421 4 1 -95.75 10.6463 -84.6053 - 40 108.436 950 4 0 -96.0697 10.1724 -85.85 - 40 14.6116 949 4 0 -96.1499 10.05 -86.1785 - 40 77.7686 386 3 1 -102.796 -1.34263 -114.45 - 40 166.479 387 3 1 -102.75 -1.51292 -114.651 - 40 55.7556 887 3 0 -102.492 -2.52897 -115.85 - 40 172.383 886 3 0 -102.457 -2.65003 -115.996 - 40 1.48629 885 3 0 -102.404 -2.85033 -116.248 - 40 40.8274 416 2 1 -96.812 -23.4568 -144.45 - 40 65.7159 415 2 1 -96.95 -23.3505 -144.513 - 40 95.5977 414 2 1 -97.1502 -23.1798 -144.588 - 40 50.5128 413 2 1 -97.35 -22.9183 -144.522 - 40 183.099 601 1 0 -88.2928 -59.65 -175.913 - 40 194.81 492 1 0 -77.5393 -81.5228 -176.25 -Number of digits in this event = 16 -Using G4ParticleGun ... -9.1782 LIN -proton -Event: 41 -Number of tracker hits in this event = 21 - 41 126.897 1067 9 1 33.5507 122.679 65.55 - 41 95.5455 1512 9 0 33.5506 122.68 64.15 - 41 113.067 1067 8 1 33.5501 122.683 35.55 - 41 168.084 1512 8 0 33.5501 122.683 34.15 - 41 140.364 1067 7 1 33.5524 122.699 5.55 - 41 120.422 1512 7 0 33.5526 122.7 4.15 - 41 180.629 1067 6 1 33.5601 122.724 -24.45 - 41 107.014 1512 6 0 33.5605 122.726 -25.85 - 41 102.491 1067 5 1 33.566 122.764 -54.45 - 41 101.759 1513 5 0 33.5666 122.766 -55.85 - 41 115.788 1067 4 1 33.5784 122.814 -84.45 - 41 121.238 1513 4 0 33.5799 122.817 -85.85 - 41 131.415 1067 3 1 33.6085 122.872 -114.45 - 41 122.269 1513 3 0 33.6098 122.875 -115.85 - 41 91.2135 1067 2 1 33.6384 122.944 -144.45 - 41 122.883 1513 2 0 33.6408 122.947 -145.85 - 41 241.796 1068 1 1 33.6869 123.011 -174.45 - 41 342.175 1514 1 0 33.6892 123.014 -175.85 - 41 122.533 1068 0 1 33.7372 123.089 -204.45 - 41 228.021 1514 0 0 33.7395 123.092 -205.85 - 41 94.5749 1063 0 1 32.7477 123.395 -204.85 -Number of digits in this event = 14 -Using G4ParticleGun ... -3.47017 LIN -proton -Event: 42 -Number of tracker hits in this event = 24 - 42 132.97 724 11 1 -35.1768 20.4563 125.55 - 42 276.171 1002 11 0 -35.1777 20.4565 124.15 - 42 110.259 724 10 1 -35.1902 20.4596 95.55 - 42 119.108 1002 10 0 -35.1908 20.458 94.15 - 42 126.597 724 9 1 -35.1985 20.4201 65.55 - 42 111.418 1001 9 0 -35.2012 20.4186 64.15 - 42 130.006 724 8 1 -35.2472 20.3921 35.55 - 42 165.444 1001 8 0 -35.2487 20.3904 34.15 - 42 99.5198 723 7 1 -35.2887 20.3514 5.55 - 42 113.903 1001 7 0 -35.2898 20.3483 4.15 - 42 102.34 723 6 1 -35.3131 20.2759 -24.45 - 42 162.047 1001 6 0 -35.312 20.2706 -25.85 - 42 109.818 723 5 1 -35.2899 20.1608 -54.45 - 42 111.784 1000 5 0 -35.2872 20.1552 -55.85 - 42 102.791 724 4 1 -35.234 20.0379 -84.45 - 42 114.944 999 4 0 -35.2327 20.0299 -85.85 - 42 119.954 724 3 1 -35.2058 19.8622 -114.45 - 42 132.802 999 3 0 -35.204 19.8539 -115.85 - 42 94.9912 724 2 1 -35.167 19.6916 -144.45 - 42 229.739 998 2 0 -35.1638 19.6825 -145.85 - 42 101.932 724 1 1 -35.1052 19.4906 -174.45 - 42 120.873 997 1 0 -35.1028 19.4807 -175.85 - 42 186.927 724 0 1 -35.0547 19.2856 -204.45 - 42 119.563 996 0 0 -35.0522 19.2759 -205.85 -Number of digits in this event = 11 -Using G4ParticleGun ... -3.48667 LIN -proton -Event: 43 -Number of tracker hits in this event = 25 - 43 114.245 852 11 1 -9.46223 -55.6068 125.55 - 43 95.8451 622 11 0 -9.46145 -55.6092 124.15 - 43 130.95 853 10 1 -9.44185 -55.6679 95.55 - 43 100.988 621 10 0 -9.44234 -55.6711 94.15 - 43 253.352 852 9 1 -9.45516 -55.741 65.55 - 43 111.273 621 9 0 -9.45747 -55.745 64.15 - 43 200.358 852 8 1 -9.50165 -55.8236 35.55 - 43 151.746 621 8 0 -9.50418 -55.826 34.15 - 43 132.222 852 7 1 -9.55544 -55.8724 5.55 - 43 99.4621 620 7 0 -9.55977 -55.8747 4.15 - 43 99.1372 852 6 1 -9.64456 -55.9132 -24.45 - 43 121.813 620 6 0 -9.64985 -55.9171 -25.85 - 43 84.1577 851 5 1 -9.75574 -55.9917 -54.45 - 43 136.01 620 5 0 -9.7609 -55.9946 -55.85 - 43 125.019 850 4 1 -9.86662 -56.0598 -84.45 - 43 87.4354 619 4 0 -9.87154 -56.0653 -85.85 - 43 122.575 850 3 1 -9.97143 -56.1797 -114.45 - 43 111.603 619 3 0 -9.97442 -56.1841 -115.85 - 43 200.708 850 2 1 -10.0407 -56.273 -144.45 - 43 115.641 618 2 0 -10.0425 -56.2773 -145.85 - 43 168.782 849 1 1 -10.0777 -56.3681 -174.45 - 43 105.602 618 1 0 -10.0806 -56.3715 -175.85 - 43 231.829 849 0 1 -10.14 -56.4374 -204.45 - 43 110.431 618 0 0 -10.1422 -56.4398 -205.85 - 43 253.492 850 0 1 -10.05 -56.5793 -204.659 -Number of digits in this event = 14 -Using G4ParticleGun ... -4.25113 LIN -proton -Event: 44 -Number of tracker hits in this event = 146 - 44 111.412 1035 11 0 79.2101 27.2359 124.15 - 44 109.559 1295 10 1 79.2093 27.2379 95.55 - 44 112.539 1035 10 0 79.2099 27.2384 94.15 - 44 190.884 1295 9 1 79.2225 27.2519 65.55 - 44 117.508 1036 9 0 79.2227 27.2522 64.15 - 44 119.879 1295 8 1 79.2289 27.2599 35.55 - 44 125.208 1036 8 0 79.2295 27.2619 34.15 - 44 115.98 1295 7 1 79.2433 27.3001 5.55 - 44 262.962 1036 7 0 79.246 27.3017 4.15 - 44 114.161 1296 6 1 79.303 27.3387 -24.45 - 44 114.323 1036 6 0 79.3044 27.3399 -25.85 - 44 108.625 1296 5 1 79.3323 27.3624 -54.45 - 44 122.031 1036 5 0 79.3317 27.3653 -55.85 - 44 103.805 1296 4 1 79.3253 27.4192 -84.45 - 44 114.336 1036 4 0 79.3252 27.4204 -85.85 - 44 101.413 1296 3 1 79.3232 27.4421 -114.45 - 44 105.351 1036 3 0 79.3236 27.4421 -115.85 - 44 157.793 1296 2 1 79.3302 27.4427 -144.45 - 44 42088.6 1036 2 0 79.3322 27.4431 -145.85 - 44 180.195 1035 2 0 79.2249 27.25 -145.93 - 44 56.5476 1034 2 0 79.1595 27.05 -145.911 - 44 54.8166 1033 2 0 79.1 26.85 -145.899 - 44 78.333 1032 2 0 79.0632 26.6495 -145.869 - 44 74.2941 1031 2 0 79.0871 26.45 -145.867 - 44 52.0943 1030 2 0 79.1275 26.25 -145.874 - 44 74.3833 1299 2 1 79.9313 21.9789 -144.85 - 44 47.0372 983 2 0 81.8649 16.7687 -145.85 - 44 52.0629 982 2 0 81.9175 16.65 -145.883 - 44 60.6526 981 2 0 81.9923 16.45 -145.959 - 44 65.1971 980 2 0 82.1042 16.2489 -146.074 - 44 65.8075 979 2 0 82.2299 16.05 -146.194 - 44 27.886 978 2 0 82.3042 15.8499 -146.237 - 44 211.281 1437 1 1 107.704 -106.089 -174.45 - 44 129.741 1438 1 1 107.75 -106.38 -174.779 - 44 398.968 1439 1 1 107.95 -106.785 -174.807 - 44 52.1672 1440 1 1 108.15 -107.971 -174.754 - 44 43.4194 352 1 0 111.396 -109.616 -175.85 - 44 15.9872 1548 1 1 129.906 -118.806 -174.85 - 44 103.404 1549 1 1 129.95 -118.829 -174.84 - 44 156.23 1550 1 1 130.15 -118.96 -174.81 - 44 93.2399 1551 1 1 130.35 -119.215 -174.786 - 44 59.364 1552 1 1 130.55 -119.137 -174.744 - 44 74.3913 305 1 0 131.166 -119.077 -175.85 - 44 220.512 304 1 0 131.256 -119.15 -175.975 - 44 17.7365 1289 2 1 78.05 18.5607 -144.793 - 44 9023.16 1037 2 0 79.3366 27.45 -145.95 - 44 450.796 1297 2 1 79.5634 27.4262 -144.85 - 44 455.684 1030 3 0 85.788 26.2241 -116.25 - 44 409.169 1330 3 1 86.0954 26.1654 -114.85 - 44 521.98 1024 4 0 92.0694 24.9182 -86.25 - 44 1.20761 1360 4 1 92.3497 24.8576 -84.85 - 44 568.728 1361 4 1 92.35 24.8575 -84.8484 - 44 377.187 1016 5 0 97.6425 23.393 -56.25 - 44 363.757 1388 5 1 97.9027 23.3157 -54.85 - 44 167.04 1389 5 1 97.95 23.3013 -54.5962 - 44 437.266 1006 6 0 103.56 21.3942 -26.25 - 44 800.661 1418 6 1 103.834 21.2958 -24.85 - 44 405.339 994 7 0 109.672 18.8917 3.75 - 44 582.79 1449 7 1 109.954 18.7778 5.15 - 44 385.238 980 8 0 115.825 16.1418 33.75 - 44 257.525 1479 8 1 116.108 16.0105 35.15 - 44 210.231 1480 8 1 116.15 15.9909 35.3583 - 44 455.354 965 9 0 122.05 13.0932 63.75 - 44 0.936382 1510 9 1 122.35 12.9478 65.15 - 44 443.566 1511 9 1 122.35 12.9478 65.1507 - 44 562.408 953 10 0 128.354 10.714 93.75 - 44 491.26 1542 10 1 128.659 10.6029 95.15 - 44 451.64 937 11 0 135.256 7.54914 123.75 - 44 451.729 1577 11 1 135.582 7.40195 125.15 - 44 624.403 923 12 0 142.716 4.76194 153.75 - 44 515.357 1614 12 1 143.07 4.63708 155.15 - 44 127.748 1615 12 1 143.15 4.60926 155.465 - 44 537.027 907 13 0 150.675 1.5664 183.75 - 44 436.432 1654 13 1 151.053 1.41494 185.15 - 44 47.8295 1655 13 1 151.15 1.3765 185.505 - 44 152.294 888 14 0 159.57 -2.43255 213.75 - 44 520.031 887 14 0 159.609 -2.45 213.879 - 44 172.204 1699 14 1 160.096 -2.43147 215.15 - 44 433.704 1700 14 1 160.15 -2.42752 215.287 - 44 202.742 1417 6 1 103.75 21.2362 -24.7662 - 44 323.677 1220 1 1 64.17 10.5474 -174.45 - 44 368.524 1219 1 1 64.05 10.4119 -174.691 - 44 214.296 948 1 0 63.4751 9.74672 -175.85 - 44 469.437 947 1 0 63.3915 9.65 -176.018 - 44 753.213 1145 0 1 49.2247 -6.49945 -204.45 - 44 75.3836 1144 0 1 49.05 -6.70202 -204.802 - 44 347.287 863 0 0 48.5317 -7.308 -205.85 - 44 337.114 862 0 0 48.4102 -7.45 -206.096 - 44 104.017 1300 1 1 80.1179 25.4496 -174.45 - 44 210.414 1026 1 0 80.1583 25.3527 -175.85 - 44 139.593 1304 0 1 80.9875 23.3753 -204.45 - 44 163.089 1016 0 0 81.0284 23.2782 -205.85 - 44 420.803 1658 5 1 151.75 36.5287 -54.8372 - 44 92.6966 1547 5 1 129.736 65.1734 -54.85 - 44 406.248 923 0 0 77.6225 4.79349 -206.25 - 44 160.298 922 0 0 77.5854 4.65 -205.971 - 44 594.822 1286 0 1 77.4349 4.07261 -204.85 - 44 446.805 847 1 0 73.6362 -10.4715 -176.25 - 44 46.6024 846 1 0 73.5896 -10.65 -175.899 - 44 502.355 1266 1 1 73.4497 -11.1825 -174.85 - 44 189.322 774 2 0 69.723 -25.2036 -146.25 - 44 518.146 773 2 0 69.7107 -25.25 -146.155 - 44 670.427 1247 2 1 69.5446 -25.8873 -144.85 - 44 539.523 701 3 0 65.8576 -39.6581 -116.25 - 44 1.36543 700 3 0 65.8062 -39.85 -115.851 - 44 331.087 1228 3 1 65.6753 -40.3327 -114.85 - 44 297.107 1227 3 1 65.65 -40.4259 -114.657 - 44 47.3849 629 4 0 61.3463 -54.2303 -86.25 - 44 486.821 628 4 0 61.3402 -54.25 -86.2095 - 44 590.752 1205 4 1 61.1326 -54.9121 -84.85 - 44 190.319 553 5 0 56.834 -69.3706 -56.25 - 44 321.013 552 5 0 56.8104 -69.45 -56.0931 - 44 692.188 1182 5 1 56.6162 -70.0959 -54.85 - 44 398.746 475 6 0 52.3937 -84.9164 -26.25 - 44 205.184 474 6 0 52.3557 -85.05 -25.9922 - 44 656.235 1160 6 1 52.1905 -85.6418 -24.85 - 44 2782.43 400 7 0 47.9761 -100.107 3.75 - 44 29832 399 7 0 47.9635 -100.15 3.83567 - 44 4100.43 401 7 0 47.9905 -99.95 3.82744 - 44 51.3431 402 7 0 48.0258 -99.75 3.75043 - 44 1043.92 398 7 0 47.7017 -100.35 3.91369 - 44 1139.16 397 7 0 47.3869 -100.55 3.9099 - 44 1290.58 396 7 0 47.0686 -100.75 3.90689 - 44 1256.71 395 7 0 46.7404 -100.95 3.90995 - 44 1329.55 394 7 0 46.4098 -101.15 3.9063 - 44 1379.9 393 7 0 46.0869 -101.35 3.90286 - 44 1492.19 392 7 0 45.7594 -101.55 3.90038 - 44 1485.11 391 7 0 45.4289 -101.75 3.89297 - 44 1612.3 390 7 0 45.1045 -101.95 3.89254 - 44 1594.62 389 7 0 44.767 -102.15 3.8876 - 44 1774.41 388 7 0 44.4361 -102.35 3.88632 - 44 1764.32 387 7 0 44.0897 -102.55 3.88979 - 44 2148.13 386 7 0 43.7582 -102.75 3.88038 - 44 2284.45 385 7 0 43.4341 -102.95 3.87647 - 44 2478.5 384 7 0 43.1157 -103.15 3.85783 - 44 3212.39 383 7 0 42.7999 -103.35 3.85289 - 44 5020.35 382 7 0 42.4727 -103.55 3.84524 - 44 2935.85 381 7 0 42.1389 -103.75 3.81268 - 44 195.213 1409 0 0 126.735 102.087 -205.95 - 44 34.4389 1053 2 0 47.2492 30.8455 -146.211 - 44 186.344 1086 4 0 67.2856 37.2588 -86.25 - 44 142.809 1087 4 0 67.2415 37.45 -86.1139 - 44 10.0781 1294 9 1 79.05 27.3095 65.1582 - 44 61.4755 1048 9 0 74.8473 29.7372 64.15 - 44 124.241 1049 9 0 74.7893 29.85 64.0571 - 44 109.561 1050 9 0 74.8357 30.05 63.8602 -Number of digits in this event = 103 -Using G4ParticleGun ... -6.59567 LIN -proton -Event: 45 -Number of tracker hits in this event = 55 - 45 96.8128 1344 10 1 88.8574 -61.7604 95.55 - 45 112.979 591 10 0 88.8564 -61.7602 94.15 - 45 173.328 1343 9 1 88.8367 -61.7548 65.55 - 45 118.48 591 9 0 88.8352 -61.7542 64.15 - 45 112.36 1343 8 1 88.8039 -61.7447 35.55 - 45 233.483 591 8 0 88.8018 -61.7447 34.15 - 45 130.771 1343 7 1 88.7613 -61.7412 5.55 - 45 115.058 591 7 0 88.76 -61.7405 4.15 - 45 116.128 1343 6 1 88.7381 -61.7258 -24.45 - 45 130.094 591 6 0 88.7373 -61.7252 -25.85 - 45 109.769 1343 5 1 88.7197 -61.7135 -54.45 - 45 129.133 591 5 0 88.7179 -61.7122 -55.85 - 45 182.364 1343 4 1 88.6794 -61.6814 -84.45 - 45 153.717 591 4 0 88.6774 -61.6791 -85.85 - 45 291.766 1342 3 1 88.631 -61.6378 -114.45 - 45 106.109 592 3 0 88.6292 -61.636 -115.85 - 45 118.32 1342 2 1 88.5936 -61.5943 -144.45 - 45 120.522 592 2 0 88.592 -61.5926 -145.85 - 45 146.576 1342 1 1 88.5607 -61.5583 -174.45 - 45 128.069 592 1 0 88.5598 -61.5575 -175.85 - 45 98.1081 1342 0 1 88.5447 -61.5417 -204.45 - 45 123.892 592 0 0 88.5448 -61.5403 -205.85 - 45 156.754 1344 8 1 88.8615 -61.7438 35.55 - 45 17.9287 1345 8 1 89.05 -61.7313 35.2059 - 45 3.85072 1419 7 1 103.958 -65.3561 5.55 - 45 149.983 1418 7 1 103.95 -65.3426 5.53388 - 45 92.3909 579 7 0 103.523 -64.1989 4.15 - 45 58.0728 580 7 0 103.477 -64.0499 3.96878 - 45 80.1659 1376 6 1 95.3999 -44.237 -24.4501 - 45 124.568 1375 6 1 95.35 -43.9968 -24.6617 - 45 56.0908 687 6 0 94.9534 -42.593 -25.8502 - 45 158.077 688 6 0 94.9144 -42.45 -25.9631 - 45 71.9908 689 6 0 94.8395 -42.2494 -26.1104 - 45 120.271 1277 5 1 75.5923 0.389383 -54.45 - 45 77.4377 904 5 0 75.087 0.957467 -55.85 - 45 43.3499 905 5 0 75.011 1.05 -56.093 - 45 33.6631 1243 4 1 68.7705 7.51855 -84.45 - 45 77.8768 1242 4 1 68.65 7.57319 -84.5411 - 45 80.7992 1241 4 1 68.45 7.65936 -84.6761 - 45 47.945 1240 4 1 68.25 7.75886 -84.7867 - 45 153.399 940 4 0 66.7793 8.20264 -85.8511 - 45 17.6008 1074 3 1 35.0362 4.97816 -114.45 - 45 222.552 1075 3 1 35.05 4.92845 -114.5 - 45 127.102 918 3 0 35.6459 3.83819 -115.85 - 45 68.0861 917 3 0 35.7571 3.65 -116.158 - 45 177.565 1170 2 1 54.0526 -19.0731 -144.45 - 45 73.7853 798 2 0 55.5861 -20.362 -145.85 - 45 57.2748 797 2 0 55.6416 -20.45 -145.898 - 45 57.4333 796 2 0 55.6975 -20.65 -145.898 - 45 78.9334 795 2 0 55.7654 -20.85 -145.883 - 45 59.2103 794 2 0 55.7258 -21.0504 -145.96 - 45 140.655 793 2 0 55.7078 -21.2505 -146.028 - 45 61.7173 792 2 0 55.7628 -21.45 -146.082 - 45 93.438 791 2 0 55.8505 -21.6506 -146.088 - 45 37.1422 790 2 0 55.9013 -21.85 -146.165 +Event: 30 +Number of tracker hits in this event = 32 + 30 139.7 1259 10 1 71.8942 75.726 95.55 + 30 119.106 1278 10 0 71.8956 75.7286 94.15 + 30 151.141 1259 9 1 71.9073 75.8034 65.55 + 30 151.78 1278 9 0 71.9055 75.8084 64.15 + 30 126.271 1259 8 1 71.8729 75.9177 35.55 + 30 114.558 1279 8 0 71.8727 75.925 34.15 + 30 131.723 1259 7 1 71.8665 76.0674 5.55 + 30 112.884 1280 7 0 71.8667 76.0738 4.15 + 30 123.401 1259 6 1 71.8638 76.1913 -24.45 + 30 123.271 1280 6 0 71.8604 76.1962 -25.85 + 30 125.559 1258 5 1 71.7891 76.3001 -54.45 + 30 243.424 1281 5 0 71.7856 76.3094 -55.85 + 30 216.563 1258 4 1 71.7109 76.4905 -84.45 + 30 133.779 1282 4 0 71.7081 76.5008 -85.85 + 30 171.778 1257 3 1 71.6343 76.7075 -114.45 + 30 153.589 1283 3 0 71.6303 76.7145 -115.85 + 30 105.306 1257 2 1 71.5434 76.8511 -144.45 + 30 123.393 1284 2 0 71.5373 76.8625 -145.85 + 30 161.859 1256 1 1 71.4158 77.1012 -174.45 + 30 167.447 1285 1 0 71.411 77.1127 -175.85 + 30 98.1888 1256 0 1 71.3194 77.3636 -204.45 + 30 195.051 1286 0 0 71.3147 77.3738 -205.85 + 30 178.906 1295 0 0 64.3062 79.0663 -206.25 + 30 196.2 1294 0 0 64.2431 79.05 -206.062 + 30 21.3401 1293 0 0 63.9579 78.85 -205.871 + 30 403.855 1210 0 1 62.2136 78.1841 -204.85 + 30 46.0333 1209 0 1 62.05 78.0157 -204.605 + 30 340.565 1220 0 1 64.1498 78.5042 -204.85 + 30 26.373 1287 0 0 71.4517 77.45 -206.197 + 30 221.019 1347 0 0 109.322 89.5165 -206.25 + 30 0.381305 1451 0 1 110.548 89.4915 -204.85 + 30 354.831 1452 0 1 110.55 89.4914 -204.848 Number of digits in this event = 24 Using G4ParticleGun ... -5.78937 LIN +3.80413 LIN proton -Event: 46 -Number of tracker hits in this event = 22 - 46 105.038 272 7 1 -125.663 -78.4375 5.55 - 46 141.724 508 7 0 -125.662 -78.4375 4.15 - 46 98.9543 272 6 1 -125.638 -78.4405 -24.45 - 46 105.863 508 6 0 -125.635 -78.4395 -25.85 - 46 187.665 272 5 1 -125.576 -78.4173 -54.45 - 46 104.471 508 5 0 -125.574 -78.4166 -55.85 - 46 112.09 273 4 1 -125.526 -78.4024 -84.45 - 46 108.069 508 4 0 -125.523 -78.4016 -85.85 - 46 119.355 273 3 1 -125.467 -78.3839 -114.45 - 46 124.711 508 3 0 -125.464 -78.3833 -115.85 - 46 124.494 273 2 1 -125.403 -78.3748 -144.45 - 46 111.824 508 2 0 -125.4 -78.3755 -145.85 - 46 145.951 274 1 1 -125.331 -78.3904 -174.45 - 46 109.22 508 1 0 -125.329 -78.3902 -175.85 - 46 109.521 274 0 1 -125.165 -78.3735 -204.45 - 46 197.602 508 0 0 -125.157 -78.3726 -205.85 - 46 83.1821 513 1 0 -123.52 -77.45 -175.85 - 46 27.0289 291 1 1 -121.778 -76.1693 -174.85 - 46 57.7918 292 1 1 -121.75 -76.1259 -174.833 - 46 127.17 518 1 0 -120.531 -76.4123 -175.85 - 46 114.375 273 1 1 -125.35 -78.3923 -174.816 - 46 115.943 507 7 0 -125.62 -78.45 3.92202 -Number of digits in this event = 8 +Event: 31 +Number of tracker hits in this event = 16 + 31 100.945 911 7 1 2.40783 146.959 5.55 + 31 105.556 1634 7 0 2.40912 146.958 4.15 + 31 104.646 911 6 1 2.43927 146.934 -24.45 + 31 116.593 1633 6 0 2.44129 146.934 -25.85 + 31 111.852 912 5 1 2.47963 146.925 -54.45 + 31 98.3386 1633 5 0 2.47884 146.922 -55.85 + 31 103.976 912 4 1 2.47171 146.866 -84.45 + 31 162.87 1633 4 0 2.47508 146.864 -85.85 + 31 89.1699 912 3 1 2.54095 146.821 -114.45 + 31 88.4495 1633 3 0 2.54412 146.82 -115.85 + 31 117.089 912 2 1 2.61186 146.806 -144.45 + 31 113.226 1633 2 0 2.619 146.811 -145.85 + 31 187.03 913 1 1 2.7531 146.926 -174.45 + 31 158.656 1633 1 0 2.76069 146.931 -175.85 + 31 107.504 914 0 1 2.91879 147.033 -204.45 + 31 110.071 1634 0 0 2.92706 147.037 -205.85 +Number of digits in this event = 4 Using G4ParticleGun ... -4.134 LIN +7.71485 LIN proton -Event: 47 -Number of tracker hits in this event = 27 - 47 116.102 1092 10 1 38.5498 84.284 95.55 - 47 119.289 1321 10 0 38.5485 84.2844 94.15 - 47 94.1108 1092 9 1 38.5216 84.2903 65.55 - 47 135.985 1321 9 0 38.5214 84.29 64.15 - 47 96.5335 1092 8 1 38.5196 84.281 35.55 - 47 108.587 1321 8 0 38.5181 84.2796 34.15 - 47 120.367 1092 7 1 38.4811 84.2539 5.55 - 47 119.289 1321 7 0 38.4779 84.2525 4.15 - 47 237 1091 6 1 38.4055 84.2317 -24.45 - 47 136.328 1320 6 0 38.4033 84.2319 -25.85 - 47 119.647 1091 5 1 38.3579 84.2389 -54.45 - 47 116.319 1320 5 0 38.3559 84.239 -55.85 - 47 140.984 1091 4 1 38.3103 84.2405 -84.45 - 47 152.059 1320 4 0 38.3076 84.24 -85.85 - 47 173.852 1091 3 1 38.2537 84.2321 -114.45 - 47 107.976 1320 3 0 38.2529 84.2304 -115.85 - 47 117.605 1090 2 1 38.2433 84.206 -144.45 - 47 101.768 1320 2 0 38.2421 84.2047 -145.85 - 47 102.752 1090 1 1 38.2165 84.1825 -174.45 - 47 136.035 1320 1 0 38.2167 84.1802 -175.85 - 47 180.492 1090 0 1 38.2229 84.1352 -204.45 - 47 106.352 1320 0 0 38.2248 84.1345 -205.85 - 47 197.924 1091 0 1 38.25 84.1548 -204.47 - 47 239.251 1092 0 1 38.4502 84.1456 -204.787 - 47 279.214 1318 0 0 39.7194 83.7372 -205.85 - 47 231.779 1319 0 0 40.1123 83.85 -206.098 - 47 176.877 1320 8 0 37.6188 84.2372 34.1499 -Number of digits in this event = 16 -Using G4ParticleGun ... -5.59414 LIN -proton -Event: 48 -Number of tracker hits in this event = 21 - 48 104.298 1504 9 1 121.134 -38.3179 65.55 - 48 148.872 708 9 0 121.134 -38.3175 64.15 - 48 142.654 1504 8 1 121.147 -38.3069 35.55 - 48 120.5 708 8 0 121.147 -38.305 34.15 - 48 92.4651 1504 7 1 121.131 -38.2683 5.55 - 48 98.0559 708 7 0 121.131 -38.2665 4.15 - 48 120.817 1504 6 1 121.145 -38.2264 -24.45 - 48 172.416 709 6 0 121.145 -38.2243 -25.85 - 48 129.538 1504 5 1 121.145 -38.1789 -54.45 - 48 110.881 709 5 0 121.145 -38.1779 -55.85 - 48 130.347 1504 4 1 121.133 -38.1561 -84.45 - 48 112.303 709 4 0 121.132 -38.1547 -85.85 - 48 121.26 1504 3 1 121.114 -38.1253 -114.45 - 48 108.515 709 3 0 121.113 -38.1245 -115.85 - 48 153.781 1504 2 1 121.09 -38.1092 -144.45 - 48 111.142 709 2 0 121.09 -38.1099 -145.85 - 48 164.32 1504 1 1 121.084 -38.1263 -174.45 - 48 120.44 709 1 0 121.083 -38.1265 -175.85 - 48 187.143 1504 0 1 121.073 -38.1282 -204.45 - 48 111.497 709 0 0 121.073 -38.1285 -205.85 - 48 86.8682 708 6 0 121.127 -38.25 -26.2038 -Number of digits in this event = 13 -Using G4ParticleGun ... -9.51294 LIN -proton -Event: 49 -Number of tracker hits in this event = 21 - 49 144.801 1228 9 1 65.8189 101.474 65.55 - 49 129.534 1406 9 0 65.8187 101.477 64.15 - 49 114.714 1228 8 1 65.8186 101.531 35.55 - 49 139.4 1406 8 0 65.8181 101.534 34.15 - 49 118.736 1228 7 1 65.8056 101.58 5.55 - 49 107.895 1407 7 0 65.8044 101.583 4.15 - 49 105.413 1228 6 1 65.7816 101.631 -24.45 - 49 109.822 1407 6 0 65.7804 101.633 -25.85 - 49 118.407 1228 5 1 65.7564 101.673 -54.45 - 49 148.203 1407 5 0 65.755 101.675 -55.85 - 49 135.225 1228 4 1 65.7258 101.706 -84.45 - 49 113.941 1407 4 0 65.7247 101.707 -85.85 - 49 121.498 1228 3 1 65.7019 101.747 -114.45 - 49 103.905 1407 3 0 65.7008 101.749 -115.85 - 49 141.83 1228 2 1 65.6811 101.798 -144.45 - 49 100.918 1408 2 0 65.6807 101.802 -145.85 - 49 119.176 1228 1 1 65.6752 101.876 -174.45 - 49 128.626 1408 1 0 65.6764 101.878 -175.85 - 49 90.7355 1228 0 1 65.7005 101.915 -204.45 - 49 113.969 1408 0 0 65.7006 101.917 -205.85 - 49 155.704 1407 8 0 65.8327 101.55 33.899 -Number of digits in this event = 10 -Using G4ParticleGun ... -6.27638 LIN -proton -Event: 50 -Number of tracker hits in this event = 25 - 50 118.493 1411 9 1 102.514 71.2268 65.55 - 50 206.067 1255 9 0 102.515 71.2259 64.15 - 50 76.9249 1411 8 1 102.534 71.209 35.55 - 50 136.776 1255 8 0 102.535 71.2076 34.15 - 50 119.829 1411 7 1 102.548 71.1749 5.55 - 50 118.382 1255 7 0 102.548 71.1736 4.15 - 50 199.561 1412 6 1 102.559 71.1456 -24.45 - 50 94.8212 1255 6 0 102.56 71.1443 -25.85 - 50 133.9 1412 5 1 102.579 71.1187 -54.45 - 50 137.024 1255 5 0 102.58 71.1168 -55.85 - 50 153.63 1412 4 1 102.612 71.0815 -84.45 - 50 104.727 1255 4 0 102.612 71.0795 -85.85 - 50 109.96 1412 3 1 102.621 71.0348 -114.45 - 50 138.29 1254 3 0 102.622 71.033 -115.85 - 50 102.333 1412 2 1 102.624 70.995 -144.45 - 50 134.584 1254 2 0 102.625 70.9959 -145.85 - 50 103.319 1413 1 1 102.809 71.0139 -174.45 - 50 76.5405 1254 1 0 102.818 71.0133 -175.85 - 50 148.078 1414 0 1 102.997 70.9977 -204.45 - 50 113.013 1254 0 0 103.006 70.9961 -205.85 - 50 134.2 1250 3 0 102.877 70.2244 -115.85 - 50 61.1914 1249 3 0 102.729 70.05 -116.2 - 50 43.5153 584 3 0 67.1104 -63.1873 -116.25 - 50 337.005 583 3 0 67.1344 -63.25 -116.195 - 50 195.39 1411 6 1 102.55 71.1104 -24.7761 -Number of digits in this event = 13 -Using G4ParticleGun ... -3.966 LIN -proton -Event: 51 -Number of tracker hits in this event = 27 - 51 125.501 649 11 1 -50.1837 54.8296 125.55 - 51 101.748 1173 11 0 -50.1825 54.8273 124.15 - 51 100.928 649 10 1 -50.1562 54.7843 95.55 - 51 123.051 1173 10 0 -50.1555 54.7822 94.15 - 51 127.547 649 9 1 -50.1377 54.7442 65.55 - 51 99.6355 1173 9 0 -50.1397 54.7433 64.15 - 51 125.67 649 8 1 -50.2012 54.6955 35.55 - 51 91.5878 1173 8 0 -50.206 54.6958 34.15 - 51 110.069 648 7 1 -50.3011 54.7041 5.55 - 51 136.795 1173 7 0 -50.3076 54.703 4.15 - 51 148.19 648 6 1 -50.4392 54.688 -24.45 - 51 125.094 1173 6 0 -50.4446 54.6872 -25.85 - 51 102.618 647 5 1 -50.5495 54.6717 -54.45 - 51 112.746 1173 5 0 -50.5551 54.6705 -55.85 - 51 173.666 646 4 1 -50.675 54.6468 -84.45 - 51 121.152 1172 4 0 -50.6812 54.6468 -85.85 - 51 104.514 646 3 1 -50.809 54.6479 -114.45 - 51 96.459 1172 3 0 -50.8157 54.6484 -115.85 - 51 90.7652 645 2 1 -50.9559 54.6573 -144.45 - 51 137.028 1173 2 0 -50.9628 54.6595 -145.85 - 51 188.344 644 1 1 -51.1109 54.6975 -174.45 - 51 104.959 1173 1 0 -51.1177 54.6977 -175.85 - 51 122.82 643 0 1 -51.2544 54.705 -204.45 - 51 120.142 1173 0 0 -51.2592 54.7057 -205.85 - 51 9.96745 1512 2 0 109.8 122.75 -146.122 - 51 8.98117 806 9 0 34.1025 -18.7867 63.75 - 51 124.576 1172 2 0 -50.9418 54.65 -146.115 -Number of digits in this event = 17 -Using G4ParticleGun ... -3.19772 LIN -proton -Event: 52 -Number of tracker hits in this event = 18 - 52 127.131 1467 8 1 113.588 79.5161 35.55 - 52 198.172 1297 8 0 113.588 79.5169 34.15 - 52 132.346 1467 7 1 113.583 79.5361 5.55 - 52 153.838 1297 7 0 113.584 79.5368 4.15 - 52 105.27 1467 6 1 113.593 79.5591 -24.45 - 52 360.471 1297 6 0 113.593 79.561 -25.85 - 52 110.57 1467 5 1 113.605 79.5979 -54.45 - 52 146.054 1297 5 0 113.605 79.5989 -55.85 - 52 110.426 1467 4 1 113.593 79.6011 -84.45 - 52 112.283 1297 4 0 113.596 79.5855 -85.85 - 52 136.767 1467 3 1 113.676 79.2703 -114.45 - 52 182.163 1296 3 0 113.678 79.2566 -115.85 - 52 99.2302 1467 2 1 113.732 78.9754 -144.45 - 52 117.07 1294 2 0 113.734 78.9609 -145.85 - 52 121.921 1468 1 1 113.762 78.6676 -174.45 - 52 153.115 1293 1 0 113.763 78.654 -175.85 - 52 109.14 1468 0 1 113.774 78.3743 -204.45 - 52 98.0076 1291 0 0 113.774 78.3603 -205.85 -Number of digits in this event = 11 -Using G4ParticleGun ... -8.87544 LIN -proton -Event: 53 -Number of tracker hits in this event = 20 - 53 100.96 1030 8 1 26.203 -138.428 35.55 - 53 131.051 208 8 0 26.2027 -138.427 34.15 - 53 119.239 1030 7 1 26.1954 -138.422 5.55 - 53 124.497 208 7 0 26.1961 -138.422 4.15 - 53 136.762 1030 6 1 26.212 -138.403 -24.45 - 53 192.013 208 6 0 26.211 -138.402 -25.85 - 53 135.138 1030 5 1 26.1915 -138.373 -54.45 - 53 112.77 208 5 0 26.1911 -138.372 -55.85 - 53 111.863 1030 4 1 26.1898 -138.334 -84.45 - 53 95.5067 209 4 0 26.1899 -138.332 -85.85 - 53 130.127 1030 3 1 26.1904 -138.285 -114.45 - 53 117.926 209 3 0 26.1904 -138.284 -115.85 - 53 130.229 1030 2 1 26.1896 -138.255 -144.45 - 53 122.191 209 2 0 26.1885 -138.254 -145.85 - 53 97.8959 1030 1 1 26.1683 -138.226 -174.45 - 53 88.7325 209 1 0 26.1683 -138.225 -175.85 - 53 121.25 1030 0 1 26.1685 -138.203 -204.45 - 53 139.146 209 0 0 26.168 -138.202 -205.85 - 53 32.4802 335 6 0 -24.3794 -112.994 -26.2497 - 53 163.314 209 6 0 26.248 -138.35 -26.1497 -Number of digits in this event = 12 -Using G4ParticleGun ... -4.39075 LIN -proton -Event: 54 -Number of tracker hits in this event = 26 - 54 97.042 1322 10 1 84.5933 -62.6872 95.55 - 54 112.875 586 10 0 84.5939 -62.6868 94.15 - 54 145.26 1322 9 1 84.6111 -62.6729 65.55 - 54 101.854 586 9 0 84.6117 -62.672 64.15 - 54 116.989 1322 8 1 84.6281 -62.6592 35.55 - 54 223.611 586 8 0 84.6298 -62.6579 34.15 - 54 130.892 1323 7 1 84.6629 -62.6363 5.55 - 54 100.183 587 7 0 84.6637 -62.6363 4.15 - 54 155.469 1323 6 1 84.6806 -62.6332 -24.45 - 54 130.732 587 6 0 84.6816 -62.634 -25.85 - 54 128.484 1323 5 1 84.7012 -62.6511 -54.45 - 54 171.203 586 5 0 84.7024 -62.6531 -55.85 - 54 87.6881 1323 4 1 84.7311 -62.7011 -84.45 - 54 168.36 586 4 0 84.7339 -62.7039 -85.85 - 54 133.611 1323 3 1 84.7897 -62.7609 -114.45 - 54 215.514 586 3 0 84.793 -62.7642 -115.85 - 54 111.232 1324 2 1 84.8652 -62.8329 -144.45 - 54 125.395 586 2 0 84.8692 -62.8372 -145.85 - 54 200.299 1324 1 1 84.9562 -62.9239 -174.45 - 54 112.239 585 1 0 84.9618 -62.9278 -175.85 - 54 249.764 1325 0 1 85.0624 -63.0052 -204.45 - 54 108.482 585 0 0 85.0699 -63.0101 -205.85 - 54 148.359 440 8 0 75.6123 -92.0252 33.75 - 54 504.696 1272 8 1 74.5998 -91.6054 35.15 - 54 256.994 1271 8 1 74.4499 -91.4562 35.4072 - 54 9.57648 1273 8 1 74.6502 -91.4437 35.4352 -Number of digits in this event = 17 -Using G4ParticleGun ... -3.40305 LIN -proton -Event: 55 -Number of tracker hits in this event = 30 - 55 306.691 1431 9 1 106.478 71.7167 65.55 - 55 143.959 1258 9 0 106.478 71.7176 64.15 - 55 115.754 1431 8 1 106.455 71.7372 35.55 - 55 99.7318 1258 8 0 106.454 71.7381 34.15 - 55 95.3456 1431 7 1 106.438 71.7375 5.55 - 55 110.807 1258 7 0 106.435 71.7351 4.15 - 55 95.8388 1431 6 1 106.367 71.6884 -24.45 - 55 210.172 1258 6 0 106.367 71.6884 -25.85 - 55 231.655 1431 5 1 106.375 71.6857 -54.45 - 55 130.082 1258 5 0 106.377 71.6858 -55.85 - 55 121.934 1431 4 1 106.407 71.6936 -84.45 - 55 137.166 1258 4 0 106.405 71.6908 -85.85 - 55 106.19 1431 3 1 106.358 71.634 -114.45 - 55 117.507 1257 3 0 106.356 71.6317 -115.85 - 55 108.365 1430 2 1 106.307 71.5908 -144.45 - 55 151.487 1257 2 0 106.306 71.5905 -145.85 - 55 126.707 1430 1 1 106.308 71.5749 -174.45 - 55 120.877 1257 1 0 106.309 71.5732 -175.85 - 55 123.59 1430 0 1 106.341 71.5426 -204.45 - 55 99.0626 1257 0 0 106.342 71.5409 -205.85 - 55 118.685 1348 0 0 163.829 89.7771 -206.25 - 55 172.527 1721 0 1 164.378 89.9764 -204.85 - 55 66.4998 1394 1 0 176.842 99.0814 -176.249 - 55 82.825 1395 1 0 176.938 99.15 -176.039 - 55 67.7378 1786 1 1 177.442 99.5486 -174.85 - 55 77.938 1787 1 1 177.55 99.6246 -174.647 - 55 84.8962 1350 0 0 164.364 90.3082 -206.25 - 55 48.4928 1351 0 0 164.479 90.35 -205.985 - 55 120.275 1724 0 1 164.981 90.5279 -204.85 - 55 5.49364 1725 0 1 165.15 90.5889 -204.472 +Event: 32 +Number of tracker hits in this event = 29 + 32 100.301 1013 9 1 22.7287 -115.687 65.55 + 32 106.379 322 9 0 22.7288 -115.686 64.15 + 32 114.65 1013 8 1 22.7297 -115.663 35.55 + 32 91.8062 322 8 0 22.7293 -115.661 34.15 + 32 92.2782 1013 7 1 22.7203 -115.62 5.55 + 32 277.318 322 7 0 22.7211 -115.617 4.15 + 32 109.596 1013 6 1 22.7385 -115.558 -24.45 + 32 121.487 322 6 0 22.7391 -115.554 -25.85 + 32 108.899 1013 5 1 22.7527 -115.481 -54.45 + 32 124.835 323 5 0 22.7534 -115.478 -55.85 + 32 116.379 1013 4 1 22.7671 -115.429 -84.45 + 32 142.845 323 4 0 22.7676 -115.427 -85.85 + 32 129.851 1013 3 1 22.7783 -115.384 -114.45 + 32 200.552 323 3 0 22.7776 -115.381 -115.85 + 32 80.6791 1013 2 1 22.7597 -115.336 -144.45 + 32 140.976 324 2 0 22.7569 -115.334 -145.85 + 32 147.365 1013 1 1 22.6994 -115.292 -174.45 + 32 121.957 324 1 0 22.6983 -115.291 -175.85 + 32 286.041 1013 0 1 22.6747 -115.275 -204.45 + 32 264.443 324 0 0 22.674 -115.275 -205.85 + 32 153.887 1012 0 1 22.65 -115.32 -204.475 + 32 23.4296 1011 0 1 22.45 -115.448 -204.803 + 32 74.1255 315 0 0 21.639 -117.036 -205.85 + 32 106.86 314 0 0 21.564 -117.15 -205.935 + 32 54.2925 313 0 0 21.4105 -117.35 -206.138 + 32 374.42 323 7 0 22.7687 -115.55 3.92701 + 32 157.605 324 7 0 22.9494 -115.35 3.82489 + 32 12.1859 325 7 0 23.0186 -115.15 3.80118 + 32 91.9651 72 7 0 3.73166 -165.683 3.75016 Number of digits in this event = 15 Using G4ParticleGun ... -2.04301 LIN +6.82446 LIN +proton +Event: 33 +Number of tracker hits in this event = 19 + 33 120.973 1577 8 1 135.629 -28.0496 35.55 + 33 93.9656 760 8 0 135.629 -28.0493 34.15 + 33 280.862 1577 7 1 135.617 -28.0406 5.55 + 33 119.329 760 7 0 135.617 -28.0393 4.15 + 33 116.675 1577 6 1 135.627 -28.015 -24.45 + 33 97.4826 760 6 0 135.627 -28.0143 -25.85 + 33 115.364 1577 5 1 135.633 -27.9967 -54.45 + 33 105.74 760 5 0 135.633 -27.995 -55.85 + 33 114.592 1577 4 1 135.633 -27.9585 -84.45 + 33 234.844 760 4 0 135.634 -27.9559 -85.85 + 33 147.42 1577 3 1 135.65 -27.903 -114.45 + 33 165.969 760 3 0 135.65 -27.9006 -115.85 + 33 148.721 1577 2 1 135.66 -27.8543 -144.45 + 33 111.896 760 2 0 135.662 -27.8513 -145.85 + 33 184.842 1577 1 1 135.698 -27.7892 -174.45 + 33 97.0746 761 1 0 135.698 -27.7862 -175.85 + 33 147.391 1577 0 1 135.718 -27.7224 -204.45 + 33 123.228 761 0 0 135.719 -27.7203 -205.85 + 33 96.3419 1578 7 1 135.75 -27.8428 5.46696 +Number of digits in this event = 10 +Using G4ParticleGun ... +6.61728 LIN +proton +Event: 34 +Number of tracker hits in this event = 29 + 34 113.849 236 8 1 -132.884 -40.8259 35.55 + 34 136.612 696 8 0 -132.883 -40.8262 34.15 + 34 124.175 236 7 1 -132.864 -40.8304 5.55 + 34 101.721 696 7 0 -132.864 -40.8301 4.15 + 34 138.992 236 6 1 -132.849 -40.8262 -24.45 + 34 184.263 696 6 0 -132.847 -40.8274 -25.85 + 34 261.849 236 5 1 -132.808 -40.8554 -54.45 + 34 189.064 695 5 0 -132.806 -40.857 -55.85 + 34 92.7076 236 4 1 -132.771 -40.8882 -84.45 + 34 98.9292 695 4 0 -132.769 -40.8889 -85.85 + 34 88.158 237 3 1 -132.744 -40.9059 -114.45 + 34 116.839 695 3 0 -132.742 -40.9077 -115.85 + 34 137.554 237 2 1 -132.713 -40.9445 -144.45 + 34 110.511 695 2 0 -132.713 -40.9456 -145.85 + 34 190.245 237 1 1 -132.702 -40.9662 -174.45 + 34 163.585 695 1 0 -132.702 -40.9675 -175.85 + 34 314.136 237 0 1 -132.69 -40.9917 -204.45 + 34 112.28 695 0 0 -132.688 -40.9924 -205.85 + 34 151.921 735 5 0 -86.9922 -32.9081 -56.2497 + 34 22.7976 736 5 0 -86.738 -32.85 -56.2111 + 34 177.8 820 5 0 -74.1796 -15.9566 -56.25 + 34 146.489 235 5 1 -132.95 -40.7975 -54.4686 + 34 51.1602 234 5 1 -133.15 -40.6734 -54.5083 + 34 50.919 233 5 1 -133.35 -40.6557 -54.4637 + 34 341.034 232 5 1 -133.55 -40.6623 -54.4563 + 34 112.779 700 5 0 -133.461 -39.9971 -55.85 + 34 42.2171 701 5 0 -133.639 -39.85 -55.9366 + 34 61.9295 231 5 1 -133.88 -40.2479 -54.85 + 34 92.5745 696 5 0 -133.74 -40.8079 -55.85 +Number of digits in this event = 15 +Using G4ParticleGun ... +4.33131 LIN +proton +Event: 35 +Number of tracker hits in this event = 24 + 35 77.0407 1011 11 1 22.3288 66.9162 125.55 + 35 148.259 1234 11 0 22.3285 66.914 124.15 + 35 326.451 1011 10 1 22.3289 66.8704 95.55 + 35 152.976 1234 10 0 22.3304 66.8681 94.15 + 35 113.021 1011 9 1 22.3653 66.819 65.55 + 35 102.563 1233 9 0 22.3679 66.8168 64.15 + 35 138.881 1011 8 1 22.4244 66.7752 35.55 + 35 158.619 1233 8 0 22.4264 66.7721 34.15 + 35 194.053 1012 7 1 22.4632 66.707 5.55 + 35 181.18 1233 7 0 22.4644 66.7033 4.15 + 35 128.776 1012 6 1 22.496 66.6244 -24.45 + 35 191.882 1232 6 0 22.4987 66.6189 -25.85 + 35 97.7844 1012 5 1 22.562 66.512 -54.45 + 35 108.341 1232 5 0 22.5656 66.5069 -55.85 + 35 110.818 1012 4 1 22.639 66.3973 -84.45 + 35 106.498 1231 4 0 22.6429 66.3926 -85.85 + 35 92.3343 1013 3 1 22.7264 66.2996 -114.45 + 35 173.836 1231 3 0 22.7292 66.2954 -115.85 + 35 201.417 1013 2 1 22.7866 66.2095 -144.45 + 35 123.062 1230 2 0 22.7891 66.2076 -145.85 + 35 144.567 1013 1 1 22.8407 66.1673 -174.45 + 35 97.4829 1230 1 0 22.8427 66.1646 -175.85 + 35 105.822 1014 0 1 22.8839 66.1103 -204.45 + 35 132.429 1230 0 0 22.8871 66.106 -205.85 +Number of digits in this event = 15 +Using G4ParticleGun ... +5.77367 LIN +proton +Event: 36 +Number of tracker hits in this event = 168 + 36 136.842 702 11 1 -39.4562 -41.0486 125.55 + 36 265.431 695 11 0 -39.4556 -41.0488 124.15 + 36 123.071 703 10 1 -39.4477 -41.0523 95.55 + 36 104.904 694 10 0 -39.4462 -41.0523 94.15 + 36 134.056 703 9 1 -39.4145 -41.0473 65.55 + 36 117.89 695 9 0 -39.4137 -41.0475 64.15 + 36 107.795 703 8 1 -39.397 -41.053 35.55 + 36 105.651 694 8 0 -39.3965 -41.0531 34.15 + 36 97.1032 703 7 1 -39.3904 -41.0653 5.55 + 36 121.092 694 7 0 -39.3911 -41.0658 4.15 + 36 108.884 1427 5 1 105.55 59.9387 -54.69 + 36 21.5273 1203 5 0 106.226 60.8149 -55.85 + 36 109.957 1204 5 0 106.25 60.85 -55.9096 + 36 17.5594 554 7 1 -69.05 -27.588 5.20607 + 36 50.057 48 7 1 -170.526 -85.8164 5.55 + 36 225.389 47 7 1 -170.55 -85.7836 5.44192 + 36 131.201 46 7 1 -170.75 -85.6862 5.45612 + 36 41.2941 158 10 0 -38.1618 -148.538 94.0187 + 36 253.397 712 6 1 -37.5601 -41.3762 -24.45 + 36 560.059 713 6 1 -37.45 -41.3818 -24.4739 + 36 621.355 714 6 1 -37.25 -41.3919 -24.5169 + 36 506.012 715 6 1 -37.05 -41.4003 -24.5564 + 36 556.385 716 6 1 -36.85 -41.4097 -24.5982 + 36 517.602 717 6 1 -36.65 -41.4187 -24.6417 + 36 505.012 718 6 1 -36.45 -41.4295 -24.6848 + 36 516.771 719 6 1 -36.25 -41.4403 -24.7297 + 36 608.056 720 6 1 -36.05 -41.4525 -24.7739 + 36 564.588 721 6 1 -35.85 -41.4658 -24.818 + 36 4451.12 691 6 0 -31.0784 -41.7633 -25.85 + 36 1465.27 690 6 0 -29.6857 -41.85 -26.1514 + 36 7641.87 759 7 0 66.3462 -28.1001 3.75 + 36 162.088 1203 7 1 60.7639 -8.59006 5.55 + 36 194.386 1202 7 1 60.65 -8.40546 5.378 + 36 132.03 857 7 0 60.8399 -8.4978 4.15 + 36 52.5741 1237 7 0 153.904 67.5282 3.75 + 36 63.4816 1238 7 0 154.006 67.6501 3.81081 + 36 100.157 1239 7 0 154.089 67.85 3.88138 + 36 11.8989 1240 7 0 154.033 68.05 3.7736 + 36 81.6165 1486 7 0 130.044 117.392 3.75 + 36 19.2297 1779 0 0 -6.75762 176.038 -205.85 + 36 482.148 1201 7 1 60.45 -8.34327 5.40857 + 36 191.562 1200 7 1 60.25 -8.33846 5.51803 + 36 2254.6 758 7 0 66.4 -28.25 3.76185 + 36 219.365 702 6 1 -39.5453 -40.9882 -24.45 + 36 52.4859 701 6 1 -39.65 -40.9273 -24.6447 + 36 102.024 697 6 0 -40.2964 -40.5508 -25.85 + 36 19.5159 698 6 0 -40.4696 -40.45 -26.173 + 36 124.759 621 5 1 -55.6532 -31.557 -54.45 + 36 15.0665 620 5 1 -55.85 -31.4442 -54.8025 + 36 49.3272 744 5 0 -56.4392 -31.1079 -55.85 + 36 67.3704 745 5 0 -56.5406 -31.05 -56.0303 + 36 124.837 537 4 1 -72.5039 -21.8791 -84.45 + 36 38.1529 536 4 1 -72.65 -21.7939 -84.7092 + 36 107.236 793 4 0 -73.2911 -21.4189 -85.85 + 36 7.23386 453 3 1 -89.431 -12.0339 -114.45 + 36 134.609 452 3 1 -89.45 -12.0226 -114.485 + 36 141.813 842 3 0 -90.183 -11.5874 -115.85 + 36 102.795 372 2 1 -105.595 -2.56389 -144.45 + 36 24.9431 371 2 1 -105.75 -2.46645 -144.742 + 36 52.6814 889 2 0 -106.337 -2.0972 -145.85 + 36 69.7306 890 2 0 -106.412 -2.05 -145.992 + 36 25.5806 293 1 1 -121.523 7.47945 -174.45 + 36 99.8637 292 1 1 -121.55 7.49643 -174.5 + 36 499.423 939 1 0 -122.271 7.9542 -175.85 + 36 103.321 940 1 0 -122.423 8.05 -176.133 + 36 5.92679 213 0 1 -137.54 17.6659 -204.45 + 36 104.959 212 0 1 -137.55 17.6719 -204.468 + 36 5.93046 211 0 1 -137.75 17.7944 -204.823 + 36 103.034 990 0 0 -138.327 18.1466 -205.85 + 36 25.6337 991 0 0 -138.496 18.25 -206.151 + 36 188.935 705 6 1 -38.9377 -41.7567 -24.45 + 36 344.78 706 6 1 -38.85 -41.8948 -24.4977 + 36 419.004 707 6 1 -38.65 -42.2122 -24.6088 + 36 452.308 708 6 1 -38.45 -42.5308 -24.7195 + 36 56.5832 709 6 1 -38.25 -42.8505 -24.8316 + 36 190.52 671 6 0 -36.4843 -45.6939 -25.85 + 36 418.421 670 6 0 -36.3874 -45.85 -25.9059 + 36 358.482 669 6 0 -36.2631 -46.05 -25.9768 + 36 210.167 668 6 0 -36.1382 -46.25 -26.0473 + 36 268.918 667 6 0 -36.0128 -46.45 -26.1161 + 36 290.411 666 6 0 -35.8867 -46.65 -26.1849 + 36 337.985 979 5 1 15.8684 -128.446 -54.45 + 36 419.56 980 5 1 16.05 -128.721 -54.5544 + 36 457.457 981 5 1 16.25 -129.028 -54.6698 + 36 303.22 982 5 1 16.45 -129.335 -54.7864 + 36 6.25972 240 5 0 18.2855 -132.145 -55.85 + 36 269.043 239 5 0 18.2886 -132.15 -55.8518 + 36 295.308 238 5 0 18.4193 -132.35 -55.9275 + 36 273.19 237 5 0 18.5507 -132.55 -56.0028 + 36 318.099 236 5 0 18.6816 -132.75 -56.0796 + 36 288.23 235 5 0 18.8118 -132.95 -56.1572 + 36 48.1651 234 5 0 18.9424 -133.15 -56.2349 + 36 285.864 695 6 0 -39.7586 -40.9468 -25.85 + 36 39.9563 671 5 1 -45.8296 -38.821 -54.45 + 36 145.199 670 5 1 -45.85 -38.814 -54.5451 + 36 341.951 706 5 0 -46.127 -38.7191 -55.85 + 36 145.513 639 4 1 -52.1574 -36.6553 -84.45 + 36 225.001 717 4 0 -52.4559 -36.5503 -85.85 + 36 116.407 607 3 1 -58.5666 -34.4025 -114.45 + 36 4.21748 606 3 1 -58.65 -34.3746 -114.833 + 36 157.434 728 3 0 -58.8712 -34.2997 -115.85 + 36 6.34541 575 2 1 -65.0465 -32.1944 -144.45 + 36 121.754 574 2 1 -65.05 -32.1934 -144.466 + 36 127.299 739 2 0 -65.3575 -32.1014 -145.85 + 36 161.217 541 1 1 -71.7107 -30.1927 -174.45 + 36 138.269 749 1 0 -72.0152 -30.1071 -175.85 + 36 112.839 508 0 1 -78.2502 -28.3296 -204.45 + 36 122.164 759 0 0 -78.5637 -28.2402 -205.85 + 36 2558.49 1415 3 1 103.326 51.461 -114.729 + 36 96.7574 1414 3 1 103.15 51.5904 -114.561 + 36 18.6452 1152 2 0 57.5193 50.628 -145.85 + 36 134.59 1153 2 0 57.2973 50.65 -146.013 + 36 50.8722 1154 2 0 56.9301 50.85 -146.206 + 36 1883.5 1416 3 1 103.35 51.4439 -114.808 + 36 42.6507 1388 0 0 -102.657 97.8078 -206.25 + 36 68.3576 1389 0 0 -102.677 97.95 -206.202 + 36 56.021 1390 0 0 -102.706 98.15 -206.136 + 36 78.798 1391 0 0 -102.735 98.35 -206.07 + 36 73.1632 1392 0 0 -102.764 98.55 -206.004 + 36 62.3605 1393 0 0 -102.794 98.75 -205.936 + 36 15.1075 1394 0 0 -102.822 98.95 -205.868 + 36 307.306 384 0 1 -103.245 101.874 -204.85 + 36 150.425 383 0 1 -103.35 102.602 -204.597 + 36 80.456 766 7 0 -108.807 -26.7515 3.85667 + 36 256.203 309 1 1 -118.15 -69.0618 -174.608 + 36 188.351 395 0 0 -93.339 -100.972 -206.25 + 36 99.6136 394 0 0 -93.3605 -101.15 -206.025 + 36 136.269 431 0 1 -93.7913 -101.741 -204.85 + 36 61.2141 861 0 0 0.609865 -7.68482 -206.25 + 36 386.914 862 0 0 0.647844 -7.65 -206.215 + 36 378.131 863 0 0 0.865341 -7.45 -206.017 + 36 180.627 910 0 1 2.1466 -6.26744 -204.85 + 36 411.229 911 0 1 2.25 -6.17192 -204.756 + 36 216.58 912 0 1 2.45 -5.97581 -204.567 + 36 323.154 1022 1 0 32.2992 24.4859 -176.25 + 36 681.814 1023 1 0 32.4599 24.65 -176.098 + 36 114.241 1024 1 0 32.6581 24.85 -175.911 + 36 227.499 1068 1 1 33.772 25.9851 -174.85 + 36 367.203 1069 1 1 33.85 26.0646 -174.776 + 36 275.247 1070 1 1 34.05 26.2666 -174.587 + 36 358.894 1178 2 0 62.4528 55.6827 -146.25 + 36 413.153 1179 2 0 62.6142 55.85 -146.089 + 36 94.6035 1180 2 0 62.8052 56.05 -145.896 + 36 23.1702 1218 2 1 63.8368 57.1358 -144.85 + 36 413.731 1219 2 1 63.85 57.1497 -144.837 + 36 362.054 1220 2 1 64.05 57.3601 -144.634 + 36 175.664 1337 3 0 92.2767 87.5675 -116.25 + 36 407.484 1338 3 0 92.3537 87.65 -116.173 + 36 272.714 1339 3 0 92.5428 87.85 -115.984 + 36 178.729 1367 3 1 93.6696 89.0517 -114.85 + 36 437.812 1368 3 1 93.75 89.1375 -114.769 + 36 278.484 1369 3 1 93.95 89.3503 -114.569 + 36 343.37 1496 4 0 124.815 119.411 -86.25 + 36 509.26 1497 4 0 124.958 119.55 -86.119 + 36 245.384 1498 4 0 125.161 119.75 -85.9345 + 36 455.467 1531 4 1 126.369 120.929 -84.85 + 36 376.752 1532 4 1 126.55 121.106 -84.6878 + 36 174.053 1533 4 1 126.75 121.302 -84.5081 + 36 484.548 1659 5 0 157.524 151.978 -56.25 + 36 484.82 1660 5 0 157.696 152.15 -56.092 + 36 142.306 1661 5 0 157.896 152.35 -55.9095 + 36 400.763 1694 5 1 159.003 153.609 -54.85 + 36 679.678 1695 5 1 159.15 153.776 -54.7092 + 36 161.697 1696 5 1 159.35 154.006 -54.5157 + 36 153.726 797 0 0 -15.1803 -20.6469 -206.25 + 36 21.2455 796 0 0 -15.1809 -20.65 -206.232 + 36 23.7626 993 1 1 18.7358 84.7048 -174.578 + 36 113.257 694 11 0 -39.5827 -41.05 123.991 +Number of digits in this event = 107 +Using G4ParticleGun ... +7.00234 LIN +proton +Event: 37 +Number of tracker hits in this event = 25 + 37 167.053 669 11 1 -46.1048 60.7155 125.55 + 37 106.45 1203 11 0 -46.104 60.7166 124.15 + 37 89.2402 669 10 1 -46.0862 60.7434 95.55 + 37 97.883 1203 10 0 -46.0865 60.7454 94.15 + 37 110.817 669 9 1 -46.0895 60.7919 65.55 + 37 106.698 1203 9 0 -46.0897 60.7934 64.15 + 37 104.698 669 8 1 -46.0928 60.8266 35.55 + 37 128.167 1203 8 0 -46.0935 60.8287 34.15 + 37 114.087 669 7 1 -46.1057 60.873 5.55 + 37 355.907 1204 7 0 -46.1095 60.8761 4.15 + 37 115.8 669 6 1 -46.2048 60.9354 -24.45 + 37 113.089 1204 6 0 -46.2089 60.9365 -25.85 + 37 195.366 668 5 1 -46.2909 60.9567 -54.45 + 37 106.389 1204 5 0 -46.295 60.9568 -55.85 + 37 122.374 668 4 1 -46.3784 60.9584 -84.45 + 37 156.348 1204 4 0 -46.3826 60.9578 -85.85 + 37 157.205 667 3 1 -46.4721 60.9482 -114.45 + 37 157.102 1204 3 0 -46.4768 60.9484 -115.85 + 37 126.956 667 2 1 -46.5752 60.9519 -144.45 + 37 232.98 1204 2 0 -46.5793 60.9527 -145.85 + 37 145.757 666 1 1 -46.662 60.9734 -174.45 + 37 118.798 1204 1 0 -46.6651 60.9746 -175.85 + 37 108.425 666 0 1 -46.7227 60.9981 -204.45 + 37 115.385 1204 0 0 -46.7261 60.9995 -205.85 + 37 157.245 667 1 1 -46.65 60.9562 -174.516 +Number of digits in this event = 13 +Using G4ParticleGun ... +2.55088 LIN +proton +Event: 38 +Number of tracker hits in this event = 30 + 38 103.201 366 9 1 -106.772 56.447 65.55 + 38 95.5094 1181 9 0 -106.772 56.4477 64.15 + 38 121.241 366 8 1 -106.782 56.4675 35.55 + 38 101.051 1182 8 0 -106.782 56.4725 34.15 + 38 123.682 366 7 1 -106.795 56.5773 5.55 + 38 120.556 1182 7 0 -106.791 56.5785 4.15 + 38 108.042 367 6 1 -106.716 56.5989 -24.45 + 38 112.049 1182 6 0 -106.713 56.5993 -25.85 + 38 128.753 367 5 1 -106.663 56.6081 -54.45 + 38 102.163 1182 5 0 -106.665 56.6101 -55.85 + 38 106.013 367 4 1 -106.691 56.6553 -84.45 + 38 124.871 1183 4 0 -106.692 56.6549 -85.85 + 38 151.446 367 3 1 -106.715 56.6486 -114.45 + 38 92.785 1182 3 0 -106.718 56.6487 -115.85 + 38 281.852 366 2 1 -106.79 56.6513 -144.45 + 38 132.355 1183 2 0 -106.795 56.6528 -145.85 + 38 100.293 366 1 1 -106.892 56.6821 -174.45 + 38 179.35 1183 1 0 -106.9 56.6818 -175.85 + 38 111.609 365 0 1 -107.054 56.6604 -204.45 + 38 116.954 1183 0 0 -107.065 56.6568 -205.85 + 38 7.86581 367 2 1 -106.75 56.2288 -144.838 + 38 7.46483 1173 2 0 -105.752 54.8339 -145.85 + 38 137.59 377 2 1 -104.7 53.478 -144.85 + 38 71.1899 378 2 1 -104.55 53.0914 -144.799 + 38 69.3862 1156 2 0 -104.334 51.4094 -145.85 + 38 97.0592 1155 2 0 -104.364 51.25 -145.953 + 38 47.2067 1154 2 0 -104.396 51.05 -146.14 + 38 177.014 1244 3 0 -112.344 68.8759 -116.25 + 38 184.321 342 3 1 -111.562 68.5915 -114.85 + 38 59.7208 343 3 1 -111.55 68.5731 -114.798 +Number of digits in this event = 16 +Using G4ParticleGun ... +9.69201 LIN +proton +Event: 39 +Number of tracker hits in this event = 20 + 39 111.118 978 9 1 15.711 120.062 65.55 + 39 112.409 1499 9 0 15.7101 120.062 64.15 + 39 123.265 978 8 1 15.6912 120.077 35.55 + 39 118.916 1499 8 0 15.6901 120.078 34.15 + 39 114.026 978 7 1 15.6651 120.094 5.55 + 39 131.652 1499 7 0 15.6633 120.095 4.15 + 39 141.474 977 6 1 15.625 120.104 -24.45 + 39 123.676 1499 6 0 15.623 120.105 -25.85 + 39 230.053 977 5 1 15.5848 120.121 -54.45 + 39 129.826 1499 5 0 15.5829 120.122 -55.85 + 39 125.653 977 4 1 15.542 120.141 -84.45 + 39 183.003 1499 4 0 15.5394 120.142 -85.85 + 39 115.77 977 3 1 15.4886 120.165 -114.45 + 39 95.9625 1500 3 0 15.4871 120.167 -115.85 + 39 169.724 977 2 1 15.4556 120.205 -144.45 + 39 97.9973 1500 2 0 15.4546 120.207 -145.85 + 39 185.636 976 1 1 15.4384 120.251 -174.45 + 39 104.161 1500 1 0 15.4384 120.253 -175.85 + 39 138.908 976 0 1 15.442 120.303 -204.45 + 39 128.316 1500 0 0 15.4421 120.305 -205.85 +Number of digits in this event = 13 +Using G4ParticleGun ... +9.69314 LIN +proton +Event: 40 +Number of tracker hits in this event = 54 + 40 284.319 1101 8 1 40.3558 137.405 35.55 + 40 117.128 1586 8 0 40.3564 137.406 34.15 + 40 4751.31 1101 7 1 40.3686 137.423 5.55 + 40 198.665 1575 9 0 41.5683 135.152 63.9787 + 40 2121.55 1100 7 1 40.25 137.34 5.43185 + 40 1389.83 1099 7 1 40.05 137.195 5.24912 + 40 831.416 1580 7 0 38.612 136.198 4.15 + 40 4030.97 1579 7 0 38.5422 136.15 4.09675 + 40 4757.83 1578 7 0 38.2832 135.95 3.91598 + 40 305.782 1102 7 1 40.45 137.349 5.5155 + 40 486.941 1103 7 1 40.65 137.167 5.46012 + 40 390.15 1104 7 1 40.85 136.984 5.40453 + 40 572.702 1105 7 1 41.05 136.801 5.34826 + 40 435.133 1106 7 1 41.25 136.616 5.29058 + 40 439.014 1107 7 1 41.45 136.435 5.23126 + 40 112.628 1108 7 1 41.65 136.256 5.17194 + 40 296.839 1564 7 0 45.1524 133.088 4.15 + 40 369.226 1563 7 0 45.3053 132.95 4.10542 + 40 768.069 1562 7 0 45.5267 132.75 4.04203 + 40 684.661 1561 7 0 45.7461 132.55 3.97762 + 40 553.259 1560 7 0 45.9674 132.35 3.91137 + 40 368.31 1559 7 0 46.1879 132.15 3.84487 + 40 153.015 1558 7 0 46.4076 131.95 3.77728 + 40 389.419 1593 6 1 138.812 46.5884 -24.45 + 40 403.899 1594 6 1 138.95 46.4651 -24.4945 + 40 474.922 1595 6 1 139.15 46.2875 -24.5573 + 40 465.05 1596 6 1 139.35 46.1087 -24.6187 + 40 493.225 1597 6 1 139.55 45.9291 -24.6814 + 40 452.894 1598 6 1 139.75 45.746 -24.7433 + 40 314.801 1599 6 1 139.95 45.5633 -24.8046 + 40 93.5486 1112 6 0 143.386 42.4654 -25.85 + 40 761.353 1111 6 0 143.403 42.45 -25.8552 + 40 527.983 1110 6 0 143.627 42.25 -25.9232 + 40 563.667 1109 6 0 143.85 42.05 -25.9926 + 40 506.621 1108 6 0 144.071 41.85 -26.063 + 40 516.037 1107 6 0 144.288 41.65 -26.1336 + 40 458.145 1106 6 0 144.506 41.45 -26.2032 + 40 30.7329 1613 6 1 142.867 44.1968 -24.8499 + 40 116.85 1586 7 0 40.3232 137.435 4.15 + 40 197.381 1096 6 1 39.3867 137.678 -24.45 + 40 111.149 1587 6 0 39.3409 137.689 -25.85 + 40 161.341 1091 5 1 38.4046 137.914 -54.45 + 40 96.7842 1588 5 0 38.3596 137.925 -55.85 + 40 91.1162 1086 4 1 37.4385 138.145 -84.45 + 40 95.5834 1590 4 0 37.3933 138.156 -85.85 + 40 129.895 1082 3 1 36.471 138.376 -114.45 + 40 147.34 1591 3 0 36.4266 138.387 -115.85 + 40 135.637 1077 2 1 35.5162 138.613 -144.45 + 40 93.9946 1592 2 0 35.4717 138.624 -145.85 + 40 140.274 1072 1 1 34.5722 138.841 -174.45 + 40 101.871 1593 1 0 34.528 138.852 -175.85 + 40 126.717 1067 0 1 33.6272 139.071 -204.45 + 40 227.02 1594 0 0 33.5838 139.081 -205.85 + 40 140.749 1595 1 0 34.4248 139.241 -175.85 +Number of digits in this event = 46 +Using G4ParticleGun ... +4.3655 LIN +proton +Event: 41 +Number of tracker hits in this event = 24 + 41 115.319 1004 11 1 20.8658 28.7094 125.55 + 41 125.175 1043 11 0 20.8647 28.7101 124.15 + 41 130.972 1003 10 1 20.8418 28.7279 95.55 + 41 107.545 1043 10 0 20.8414 28.7301 94.15 + 41 94.3864 1003 9 1 20.8313 28.7807 65.55 + 41 245.546 1043 9 0 20.8318 28.7836 64.15 + 41 197.528 1003 8 1 20.8453 28.8397 35.55 + 41 108.417 1043 8 0 20.846 28.8416 34.15 + 41 153.772 1004 7 1 20.8619 28.8842 5.55 + 41 230.956 1044 7 0 20.8636 28.8859 4.15 + 41 131.248 1004 6 1 20.9014 28.9267 -24.45 + 41 99.2919 1044 6 0 20.9026 28.9288 -25.85 + 41 104.257 1004 5 1 20.9298 28.9665 -54.45 + 41 108.739 1044 5 0 20.931 28.9685 -55.85 + 41 115.868 1004 4 1 20.9557 29.0069 -84.45 + 41 133.298 1044 4 0 20.9576 29.0087 -85.85 + 41 119.227 1004 3 1 21.0012 29.0397 -114.45 + 41 108.48 1044 3 0 21.0017 29.0415 -115.85 + 41 105.271 1004 2 1 21.0134 29.0787 -144.45 + 41 107.956 1045 2 0 21.0139 29.0807 -145.85 + 41 111.496 1004 1 1 21.0271 29.1269 -174.45 + 41 115.01 1045 1 0 21.0303 29.1291 -175.85 + 41 126.878 1005 0 1 21.0917 29.1769 -204.45 + 41 142.582 1045 0 0 21.096 29.1801 -205.85 +Number of digits in this event = 11 +Using G4ParticleGun ... +2.64999 LIN +proton +Event: 42 +Number of tracker hits in this event = 35 + 42 219.081 703 10 1 -39.4274 82.9701 95.55 + 42 106.039 1314 10 0 -39.4269 82.9698 94.15 + 42 142.612 703 9 1 -39.4213 82.9537 65.55 + 42 181.017 1314 9 0 -39.4235 82.9553 64.15 + 42 109.387 702 8 1 -39.468 82.9792 35.55 + 42 99.507 1314 8 0 -39.4682 82.9797 34.15 + 42 128.62 702 7 1 -39.481 83.0048 5.55 + 42 161.833 1314 7 0 -39.4833 83.0049 4.15 + 42 107.369 702 6 1 -39.5277 83.0131 -24.45 + 42 101.603 1314 6 0 -39.5297 83.0142 -25.85 + 42 110.014 702 5 1 -39.5737 83.0251 -54.45 + 42 127.343 1314 5 0 -39.5776 83.0257 -55.85 + 42 101.55 701 4 1 -39.6586 83.0363 -84.45 + 42 119.361 1314 4 0 -39.6617 83.0363 -85.85 + 42 166.941 701 3 1 -39.7229 83.0279 -114.45 + 42 99.4909 1314 3 0 -39.7265 83.0292 -115.85 + 42 135.868 701 2 1 -39.8049 83.051 -144.45 + 42 101.484 1315 2 0 -39.8085 83.0503 -145.85 + 42 122.572 700 1 1 -39.8841 83.0427 -174.45 + 42 130.559 1314 1 0 -39.8884 83.0411 -175.85 + 42 119.243 700 0 1 -39.9758 83.0051 -204.45 + 42 91.1627 1314 0 0 -39.979 83.0022 -205.85 + 42 48.2543 1527 7 0 -46.6832 125.652 3.75 + 42 2.37121 1317 9 0 -38.7764 83.6431 64.15 + 42 272.09 1318 9 0 -38.771 83.65 64.1405 + 42 56.1639 1446 9 0 136.918 109.394 63.75 + 42 91.0004 1447 9 0 137.04 109.55 63.8391 + 42 83.9353 1448 9 0 137.223 109.75 63.9611 + 42 121.771 1449 9 0 137.393 109.95 63.9618 + 42 202.418 1651 9 0 70.7761 150.423 63.75 + 42 71.0536 1237 9 1 67.5439 151.288 65.15 + 42 151.882 1236 9 1 67.45 151.385 65.1801 + 42 27.018 1235 9 1 67.25 151.601 65.1641 + 42 74.8507 1653 9 0 65.2108 150.938 64.15 + 42 144.172 1224 9 1 64.9852 150.676 65.15 +Number of digits in this event = 19 +Using G4ParticleGun ... +7.77103 LIN +proton +Event: 43 +Number of tracker hits in this event = 32 + 43 100.413 678 9 1 -44.4017 116.306 65.55 + 43 122.232 1480 9 0 -44.402 116.305 64.15 + 43 136.104 678 8 1 -44.4059 116.279 35.55 + 43 104.243 1480 8 0 -44.4067 116.277 34.15 + 43 121.231 678 7 1 -44.4263 116.242 5.55 + 43 136.288 1480 7 0 -44.4274 116.24 4.15 + 43 112.884 678 6 1 -44.4481 116.194 -24.45 + 43 137.807 1480 6 0 -44.4505 116.192 -25.85 + 43 149.902 677 5 1 -44.504 116.147 -54.45 + 43 120.836 1479 5 0 -44.5055 116.146 -55.85 + 43 111.797 677 4 1 -44.5337 116.121 -84.45 + 43 89.1022 1479 4 0 -44.5353 116.12 -85.85 + 43 117.077 677 3 1 -44.5631 116.088 -114.45 + 43 110.852 1479 3 0 -44.5636 116.087 -115.85 + 43 87.5729 677 2 1 -44.576 116.049 -144.45 + 43 101.616 1479 2 0 -44.5774 116.048 -145.85 + 43 114.394 677 1 1 -44.606 116.021 -174.45 + 43 204.457 1479 1 0 -44.6073 116.02 -175.85 + 43 104.766 677 0 1 -44.6347 115.998 -204.45 + 43 98.3212 1479 0 0 -44.6362 115.997 -205.85 + 43 18.8369 1256 0 1 71.3739 114.354 -204.747 + 43 87.9959 1513 0 0 77.6256 122.943 -206.046 + 43 67.818 1291 3 1 78.25 111.482 -114.518 + 43 101.28 1448 3 0 78.7598 109.895 -115.85 + 43 156.348 1447 3 0 78.8092 109.75 -116.001 + 43 143.22 1175 3 0 67.2514 55.1988 -116.25 + 43 259.504 1174 3 0 67.3272 55.05 -116.049 + 43 17.1913 1173 3 0 67.5038 54.85 -115.996 + 43 49.665 960 5 1 12.2219 124.262 -54.45 + 43 192.533 961 5 1 12.25 124.309 -54.5154 + 43 43.4235 1443 3 0 70.2 108.831 -116.022 + 43 38.899 1480 1 0 -44.5906 116.15 -176.202 +Number of digits in this event = 15 +Using G4ParticleGun ... +6.28515 LIN +proton +Event: 44 +Number of tracker hits in this event = 16 + 44 118.776 204 7 1 -139.3 46.7073 5.55 + 44 175.904 1133 7 0 -139.3 46.7093 4.15 + 44 169.944 204 6 1 -139.291 46.7493 -24.45 + 44 121.666 1133 6 0 -139.291 46.7516 -25.85 + 44 133.554 204 5 1 -139.285 46.8013 -54.45 + 44 121.322 1133 5 0 -139.285 46.8044 -55.85 + 44 207.975 204 4 1 -139.287 46.8651 -84.45 + 44 145.771 1134 4 0 -139.288 46.8682 -85.85 + 44 103.806 204 3 1 -139.303 46.9336 -114.45 + 44 105.527 1134 3 0 -139.304 46.9359 -115.85 + 44 204.617 204 2 1 -139.325 46.9923 -144.45 + 44 184.562 1134 2 0 -139.325 46.9962 -145.85 + 44 124.615 204 1 1 -139.339 47.076 -174.45 + 44 123.456 1135 1 0 -139.339 47.0797 -175.85 + 44 101.704 203 0 1 -139.351 47.1546 -204.45 + 44 103.674 1135 0 0 -139.351 47.159 -205.85 +Number of digits in this event = 12 +Using G4ParticleGun ... +9.70089 LIN +proton +Event: 45 +Number of tracker hits in this event = 27 + 45 116.454 1462 9 1 112.699 -73.8486 65.55 + 45 108.556 531 9 0 112.7 -73.8475 64.15 + 45 124.593 1462 8 1 112.71 -73.8222 35.55 + 45 121.522 531 8 0 112.711 -73.8215 34.15 + 45 101.948 1462 7 1 112.74 -73.8073 5.55 + 45 111.575 531 7 0 112.741 -73.806 4.15 + 45 174.03 1463 6 1 112.772 -73.7805 -24.45 + 45 122.394 531 6 0 112.772 -73.7797 -25.85 + 45 124.692 1463 5 1 112.786 -73.7602 -54.45 + 45 144.461 531 5 0 112.787 -73.7596 -55.85 + 45 96.5812 1463 4 1 112.81 -73.7458 -84.45 + 45 111.917 531 4 0 112.811 -73.7457 -85.85 + 45 107.947 1463 3 1 112.836 -73.7416 -114.45 + 45 113.237 531 3 0 112.837 -73.742 -115.85 + 45 136.626 1463 2 1 112.87 -73.7517 -144.45 + 45 242.896 531 2 0 112.872 -73.7527 -145.85 + 45 146.294 1463 1 1 112.919 -73.774 -174.45 + 45 113.567 531 1 0 112.921 -73.7745 -175.85 + 45 86.9376 1464 0 1 112.968 -73.7838 -204.45 + 45 279.677 531 0 0 112.969 -73.7842 -205.85 + 45 97.4516 1462 5 1 112.75 -73.701 -54.5773 + 45 120.692 532 5 0 112.074 -73.5088 -55.85 + 45 26.3392 533 5 0 111.939 -73.45 -56.1544 + 45 141.889 1384 4 1 97.0998 -67.3594 -84.45 + 45 8.84108 569 4 0 97.1026 -66.0654 -85.8503 + 45 129.735 570 4 0 97.1044 -66.0498 -85.8667 + 45 146.171 571 4 0 97.1201 -65.8497 -86.0738 +Number of digits in this event = 18 +Using G4ParticleGun ... +1.05822 LIN +proton +Event: 46 +Number of tracker hits in this event = 20 + 46 136.431 513 9 1 -77.3857 -91.1688 65.55 + 46 121.886 444 9 0 -77.3875 -91.1694 64.15 + 46 121.494 513 8 1 -77.4351 -91.1855 35.55 + 46 137.104 444 8 0 -77.4353 -91.1832 34.15 + 46 124.99 513 7 1 -77.4481 -91.1297 5.55 + 46 137.488 445 7 0 -77.4472 -91.1274 4.15 + 46 198.69 513 6 1 -77.4288 -91.085 -24.45 + 46 127.286 445 6 0 -77.4315 -91.0818 -25.85 + 46 172.989 512 5 1 -77.4912 -91.0287 -54.45 + 46 187.516 445 5 0 -77.4896 -91.0277 -55.85 + 46 118.292 512 4 1 -77.4892 -91.0282 -84.45 + 46 127.436 445 4 0 -77.4905 -91.0293 -85.85 + 46 125.359 512 3 1 -77.5157 -91.0453 -114.45 + 46 131.271 445 3 0 -77.5155 -91.0517 -115.85 + 46 118.974 512 2 1 -77.5085 -91.1794 -144.45 + 46 111.088 444 2 0 -77.5064 -91.1856 -145.85 + 46 131.383 512 1 1 -77.4669 -91.3193 -174.45 + 46 165.616 444 1 0 -77.463 -91.3244 -175.85 + 46 133.526 513 0 1 -77.4071 -91.426 -204.45 + 46 202.838 443 0 0 -77.4054 -91.425 -205.85 +Number of digits in this event = 18 +Using G4ParticleGun ... +4.40604 LIN +proton +Event: 47 +Number of tracker hits in this event = 21 + 47 127.576 1543 9 1 128.853 12.7407 65.55 + 47 88.8662 963 9 0 128.852 12.7394 64.15 + 47 121.733 1543 8 1 128.838 12.7128 35.55 + 47 103.281 963 8 0 128.837 12.7125 34.15 + 47 98.438 1543 7 1 128.814 12.705 5.55 + 47 162.653 963 7 0 128.814 12.7033 4.15 + 47 118.822 1543 6 1 128.811 12.6673 -24.45 + 47 101.735 963 6 0 128.811 12.6669 -25.85 + 47 101.655 1543 5 1 128.789 12.6552 -54.45 + 47 131.714 963 5 0 128.789 12.6542 -55.85 + 47 150.92 1543 4 1 128.791 12.6363 -84.45 + 47 141.059 962 4 0 128.791 12.6357 -85.85 + 47 175.087 1543 3 1 128.782 12.6181 -114.45 + 47 100.632 962 3 0 128.782 12.6167 -115.85 + 47 181.52 1543 2 1 128.797 12.5869 -144.45 + 47 109.876 962 2 0 128.797 12.5865 -145.85 + 47 99.0172 1543 1 1 128.783 12.575 -174.45 + 47 160.54 962 1 0 128.781 12.5748 -175.85 + 47 112.712 1542 0 1 128.745 12.571 -204.45 + 47 104.076 962 0 0 128.743 12.5712 -205.85 + 47 108.306 1542 3 1 128.75 12.598 -114.572 +Number of digits in this event = 10 +Using G4ParticleGun ... +3.40751 LIN +proton +Event: 48 +Number of tracker hits in this event = 27 + 48 126.764 253 9 1 -129.462 -7.7856 65.55 + 48 102.508 861 9 0 -129.461 -7.78409 64.15 + 48 108.557 253 8 1 -129.436 -7.75417 35.55 + 48 110.404 861 8 0 -129.436 -7.75366 34.15 + 48 128.014 253 7 1 -129.428 -7.7459 5.55 + 48 142.005 861 7 0 -129.428 -7.7467 4.15 + 48 134.502 253 6 1 -129.411 -7.76584 -24.45 + 48 94.8535 861 6 0 -129.41 -7.76504 -25.85 + 48 116.122 253 5 1 -129.384 -7.74825 -54.45 + 48 111.803 861 5 0 -129.382 -7.74663 -55.85 + 48 108.201 254 4 1 -129.342 -7.72461 -84.45 + 48 201.707 861 4 0 -129.339 -7.72409 -85.85 + 48 101.454 254 3 1 -129.287 -7.70835 -114.45 + 48 89.0565 861 3 0 -129.286 -7.70673 -115.85 + 48 107.279 254 2 1 -129.259 -7.66792 -144.45 + 48 125.843 861 2 0 -129.257 -7.66956 -145.85 + 48 146.911 254 1 1 -129.221 -7.70923 -174.45 + 48 233.047 861 1 0 -129.219 -7.71059 -175.85 + 48 189.049 254 0 1 -129.182 -7.74456 -204.45 + 48 146.215 861 0 0 -129.183 -7.73805 -205.85 + 48 47.2741 512 11 0 -162.809 -77.5682 123.75 + 48 41.9557 97 11 1 -160.649 -77.9574 125.15 + 48 237.661 98 11 1 -160.55 -77.9875 125.164 + 48 47.4773 1692 6 0 -164.403 158.677 -26.25 + 48 137.79 1693 6 0 -164.421 158.75 -26.1423 + 48 82.5514 77 6 1 -164.694 159.413 -24.85 + 48 41.5241 76 6 1 -164.75 159.556 -24.5921 +Number of digits in this event = 16 +Using G4ParticleGun ... +2.8913 LIN +proton +Event: 49 +Number of tracker hits in this event = 22 + 49 154.148 831 10 1 -13.8042 -94.649 95.55 + 49 105.843 427 10 0 -13.8031 -94.647 94.15 + 49 116.035 831 9 1 -13.7784 -94.6028 65.55 + 49 111.5 427 9 0 -13.7766 -94.5985 64.15 + 49 165.093 831 8 1 -13.7445 -94.5053 35.55 + 49 245.233 428 8 0 -13.7446 -94.5004 34.15 + 49 127.987 831 7 1 -13.7428 -94.3921 5.55 + 49 91.0412 428 7 0 -13.7426 -94.3859 4.15 + 49 139.47 831 6 1 -13.7344 -94.2602 -24.45 + 49 99.9801 429 6 0 -13.735 -94.253 -25.85 + 49 142.066 831 5 1 -13.7406 -94.1295 -54.45 + 49 113.036 430 5 0 -13.7406 -94.1259 -55.85 + 49 267.228 831 4 1 -13.7472 -94.0415 -84.45 + 49 156.916 430 4 0 -13.7451 -94.0394 -85.85 + 49 153.817 831 3 1 -13.7016 -93.9921 -114.45 + 49 101.528 430 3 0 -13.6983 -93.9894 -115.85 + 49 120.311 832 2 1 -13.6241 -93.9316 -144.45 + 49 184.875 431 2 0 -13.6214 -93.9284 -145.85 + 49 105.673 833 1 1 -13.4464 -94.2737 -174.45 + 49 98.2296 429 1 0 -13.4398 -94.2915 -175.85 + 49 105.633 833 0 1 -13.3004 -94.6516 -204.45 + 49 116.794 427 0 0 -13.2927 -94.6688 -205.85 +Number of digits in this event = 14 +Using G4ParticleGun ... +4.54585 LIN +proton +Event: 50 +Number of tracker hits in this event = 22 + 50 96.8071 1306 10 1 81.2892 39.3494 95.55 + 50 116.432 1096 10 0 81.2901 39.3487 94.15 + 50 139.998 1306 9 1 81.3101 39.3285 65.55 + 50 146.862 1096 9 0 81.3101 39.3283 64.15 + 50 98.1225 1306 8 1 81.3056 39.3177 35.55 + 50 140.967 1096 8 0 81.305 39.3187 34.15 + 50 116.735 1306 7 1 81.2942 39.3399 5.55 + 50 110.985 1096 7 0 81.2943 39.3411 4.15 + 50 141.878 1306 6 1 81.2961 39.3714 -24.45 + 50 103.06 1096 6 0 81.2951 39.3722 -25.85 + 50 82.4947 1306 5 1 81.2773 39.3888 -54.45 + 50 208.487 1096 5 0 81.2783 39.3876 -55.85 + 50 99.003 1306 4 1 81.2944 39.3648 -84.45 + 50 134.198 1096 4 0 81.2956 39.3647 -85.85 + 50 109.819 1306 3 1 81.3228 39.3624 -114.45 + 50 94.9913 1096 3 0 81.3245 39.3621 -115.85 + 50 97.8791 1306 2 1 81.3634 39.3511 -144.45 + 50 106.192 1096 2 0 81.3662 39.3504 -145.85 + 50 146.828 1306 1 1 81.4231 39.3383 -174.45 + 50 122.342 1096 1 0 81.4239 39.3366 -175.85 + 50 191.835 1306 0 1 81.4375 39.3061 -204.45 + 50 109.26 1096 0 0 81.4369 39.3028 -205.85 +Number of digits in this event = 10 +Using G4ParticleGun ... +4.89535 LIN +proton +Event: 51 +Number of tracker hits in this event = 41 + 51 106.945 417 10 1 -96.624 15.1868 95.55 + 51 149.876 975 10 0 -96.6239 15.1863 94.15 + 51 112.388 417 9 1 -96.6191 15.179 65.55 + 51 176.55 975 9 0 -96.6195 15.1778 64.15 + 51 96.5016 417 8 1 -96.6363 15.156 35.55 + 51 128.234 975 8 0 -96.6366 15.1545 34.15 + 51 149.51 417 7 1 -96.6519 15.1206 5.55 + 51 179.193 975 7 0 -96.6523 15.1192 4.15 + 51 107.281 417 6 1 -96.6554 15.0945 -24.45 + 51 119.54 975 6 0 -96.6539 15.0945 -25.85 + 51 93.3394 417 5 1 -96.6247 15.0974 -54.45 + 51 131.116 975 5 0 -96.6237 15.0974 -55.85 + 51 159.194 417 4 1 -96.6069 15.097 -84.45 + 51 105.187 975 4 0 -96.606 15.096 -85.85 + 51 126.87 417 3 1 -96.5837 15.077 -114.45 + 51 104.327 975 3 0 -96.5827 15.077 -115.85 + 51 137.433 417 2 1 -96.561 15.0732 -144.45 + 51 91.8701 975 2 0 -96.5595 15.0744 -145.85 + 51 161.737 418 1 1 -96.5251 15.0946 -174.45 + 51 103.362 975 1 0 -96.5244 15.0969 -175.85 + 51 343.761 418 0 1 -96.5095 15.1464 -204.45 + 51 168.306 975 0 0 -96.5091 15.1493 -205.85 + 51 246.711 651 0 0 -108.941 -49.7586 -206.25 + 51 25.1332 350 0 1 -110.127 -50.0285 -204.85 + 51 169.633 349 0 1 -110.15 -50.0336 -204.823 + 51 104.477 348 0 1 -110.35 -50.0784 -204.586 + 51 262.435 623 1 0 -132.925 -55.2929 -176.25 + 51 126.236 230 1 1 -134.024 -55.5575 -174.85 + 51 171.865 229 1 1 -134.15 -55.5883 -174.689 + 51 343.476 593 2 0 -156.806 -61.3755 -146.25 + 51 19.2307 592 2 0 -157.097 -61.45 -145.885 + 51 286.605 111 2 1 -157.943 -61.6707 -144.85 + 51 313.036 110 2 1 -157.95 -61.6726 -144.841 + 51 128.375 109 2 1 -158.15 -61.7237 -144.599 + 51 95.8444 112 2 1 -157.75 -61.7499 -144.698 + 51 11.8452 1704 3 0 -116.429 161.027 -116.25 + 51 4.60323 1692 3 0 -116.191 158.75 -115.906 + 51 216.203 1705 3 0 -116.443 161.15 -116.126 + 51 85.7516 1706 3 0 -116.549 161.35 -115.963 + 51 239.493 1218 0 1 63.65 128.226 -204.743 + 51 5.03989 1095 4 1 39.05 -73.4718 -84.8029 +Number of digits in this event = 27 +Using G4ParticleGun ... +5.43171 LIN +proton +Event: 52 +Number of tracker hits in this event = 51 + 52 105.912 645 10 1 -50.9278 81.2547 95.55 + 52 108.073 1306 10 0 -50.9285 81.254 94.15 + 52 100.261 645 9 1 -50.9405 81.2428 65.55 + 52 179.092 1305 9 0 -50.9423 81.2423 64.15 + 52 162.932 645 8 1 -50.9742 81.2317 35.55 + 52 110.56 1305 8 0 -50.9764 81.2307 34.15 + 52 159.266 645 7 1 -51.0238 81.2059 5.55 + 52 110.576 1305 7 0 -51.0267 81.2054 4.15 + 52 94.5725 644 6 1 -51.0894 81.1915 -24.45 + 52 239.135 1305 6 0 -51.0948 81.1906 -25.85 + 52 105.437 644 5 1 -51.2034 81.1727 -54.45 + 52 195.192 1305 5 0 -51.208 81.1708 -55.85 + 52 82.7744 643 4 1 -51.3094 81.1328 -84.45 + 52 142.51 1305 4 0 -51.3138 81.1325 -85.85 + 52 96.1253 643 3 1 -51.4047 81.1253 -114.45 + 52 109.349 1305 3 0 -51.4084 81.1249 -115.85 + 52 105.658 642 2 1 -51.4849 81.115 -144.45 + 52 144.83 1305 2 0 -51.49 81.1144 -145.85 + 52 100.75 642 1 1 -51.5927 81.1012 -174.45 + 52 116.096 1305 1 0 -51.5973 81.0998 -175.85 + 52 148.566 641 0 1 -51.696 81.0626 -204.45 + 52 133.216 1305 0 0 -51.7014 81.061 -205.85 + 52 181.938 282 3 0 -136.015 -123.55 -116.031 + 52 160.771 531 4 1 -73.769 -3.45586 -84.85 + 52 3691.35 837 3 0 26.994 -12.5814 -116.103 + 52 22.0286 1280 1 0 -118.597 76.25 -175.982 + 52 368.72 822 3 1 -15.647 -23.5671 -114.85 + 52 119.795 821 3 1 -15.65 -23.7883 -114.495 + 52 159.02 1304 2 0 -51.471 81.05 -145.937 + 52 127.777 645 6 1 -51.0383 81.229 -24.45 + 52 141.838 1306 6 0 -50.7559 81.4013 -25.8501 + 52 6.27122 667 5 1 -46.6419 84.5325 -54.45 + 52 173.756 666 5 1 -46.65 84.5197 -54.456 + 52 135.987 665 5 1 -46.85 84.2103 -54.5887 + 52 125.211 664 5 1 -47.05 83.9099 -54.712 + 52 51.4075 1308 5 0 -48.4263 81.7656 -55.85 + 52 68.2363 1307 5 0 -48.5023 81.65 -55.908 + 52 73.1937 1306 5 0 -48.6407 81.4498 -56 + 52 111.367 1304 5 0 -48.9226 81.05 -56.1894 + 52 7.40556 399 4 1 -100.33 11.0166 -84.45 + 52 133.831 398 4 1 -100.35 11.0048 -84.4633 + 52 71.8518 397 4 1 -100.55 10.8957 -84.6142 + 52 43.2024 396 4 1 -100.75 10.8153 -84.7321 + 52 109.536 395 4 1 -100.95 10.7764 -84.8038 + 52 546.556 950 4 0 -105.358 10.1514 -85.8501 + 52 69.829 949 4 0 -106.297 10.05 -86.0115 + 52 147.143 951 4 0 -107.315 10.25 -86.1306 + 52 255.429 952 4 0 -107.686 10.45 -86.0984 + 52 120.822 953 4 0 -108.063 10.6502 -86.1072 + 52 107.508 954 4 0 -108.475 10.85 -86.1504 + 52 9.65751 1226 5 0 -21.1508 65.45 -56.1865 +Number of digits in this event = 27 +Using G4ParticleGun ... +5.69603 LIN +proton +Event: 53 +Number of tracker hits in this event = 343 + 53 57.3578 408 5 0 58.8478 -98.372 -56.25 + 53 1317.94 1216 11 1 63.3354 -25.1273 125.55 + 53 1664.77 1217 11 1 63.45 -25.572 125.471 + 53 1980.46 1218 11 1 63.65 -26.3238 125.344 + 53 1068.26 1219 11 1 63.85 -27.0381 125.223 + 53 46.2778 736 11 0 65.5752 -32.8276 124.15 + 53 615.503 735 11 0 65.5819 -32.85 124.146 + 53 509.333 734 11 0 65.6416 -33.05 124.108 + 53 465.104 733 11 0 65.7009 -33.25 124.068 + 53 473.799 732 11 0 65.7616 -33.45 124.029 + 53 549.449 731 11 0 65.8222 -33.65 123.988 + 53 478.549 730 11 0 65.8827 -33.85 123.947 + 53 480.773 729 11 0 65.9442 -34.05 123.909 + 53 612.697 728 11 0 66.0056 -34.25 123.871 + 53 543.334 727 11 0 66.0643 -34.45 123.834 + 53 480.81 726 11 0 66.1221 -34.65 123.797 + 53 198.633 725 11 0 66.1795 -34.85 123.761 + 53 19.5262 995 6 0 8.83244 19.1476 -26.0035 + 53 21.4201 1743 13 1 168.75 -95.4707 185.339 + 53 1840.59 1741 13 1 168.366 -96.3916 185.205 + 53 1205.85 1740 13 1 168.35 -96.4519 185.322 + 53 1329.44 337 14 0 163.35 -112.638 213.75 + 53 1365.03 336 14 0 163.316 -112.75 213.947 + 53 3513.7 1714 14 1 163.078 -113.433 215.15 + 53 229.775 1210 11 1 62.1398 -24.1775 125.55 + 53 532.9 1209 11 1 62.05 -24.1488 125.541 + 53 667.696 1208 11 1 61.85 -24.0849 125.521 + 53 579.313 1207 11 1 61.65 -24.0209 125.501 + 53 571.181 1206 11 1 61.45 -23.9567 125.482 + 53 613.993 1205 11 1 61.25 -23.8924 125.463 + 53 594.31 1204 11 1 61.05 -23.829 125.444 + 53 556.213 1203 11 1 60.85 -23.7648 125.425 + 53 495.149 1202 11 1 60.65 -23.702 125.407 + 53 522.812 1201 11 1 60.45 -23.6396 125.388 + 53 681.835 1200 11 1 60.25 -23.5777 125.369 + 53 728.049 1199 11 1 60.05 -23.5154 125.35 + 53 663.517 1198 11 1 59.85 -23.4518 125.33 + 53 652.56 1197 11 1 59.65 -23.3887 125.312 + 53 720.16 1196 11 1 59.45 -23.3249 125.293 + 53 941.383 1195 11 1 59.25 -23.2612 125.274 + 53 753.005 1194 11 1 59.05 -23.1973 125.255 + 53 738.19 1193 11 1 58.85 -23.1338 125.236 + 53 953.236 1192 11 1 58.65 -23.0704 125.217 + 53 757.248 1191 11 1 58.45 -23.0067 125.197 + 53 1013.86 1190 11 1 58.25 -22.9449 125.176 + 53 259.119 1189 11 1 58.05 -22.8838 125.154 + 53 1150.63 800 11 0 48.5624 -19.9535 124.15 + 53 2003.58 801 11 0 48.2273 -19.85 124.115 + 53 2228.97 802 11 0 47.5733 -19.65 124.041 + 53 2084.38 803 11 0 46.9166 -19.45 123.968 + 53 2252.75 804 11 0 46.2758 -19.25 123.895 + 53 2272.26 805 11 0 45.6241 -19.05 123.824 + 53 35.9572 806 11 0 44.972 -18.85 123.751 + 53 160.773 1188 11 1 57.85 -22.0773 125.409 + 53 203.376 1187 11 1 57.65 -21.9912 125.398 + 53 457.981 1186 11 1 57.45 -21.905 125.387 + 53 108.909 1185 11 1 57.25 -21.819 125.375 + 53 296.303 1184 11 1 57.05 -21.7333 125.363 + 53 251.707 1183 11 1 56.85 -21.6474 125.351 + 53 133.11 1182 11 1 56.65 -21.5613 125.339 + 53 203.696 1181 11 1 56.45 -21.4754 125.326 + 53 99.3319 1180 11 1 56.25 -21.3885 125.315 + 53 115.673 1179 11 1 56.05 -21.3015 125.304 + 53 132.361 1178 11 1 55.85 -21.2143 125.293 + 53 180.638 1177 11 1 55.65 -21.1268 125.282 + 53 142.749 1176 11 1 55.45 -21.0393 125.271 + 53 162.138 1175 11 1 55.25 -20.9518 125.26 + 53 121.618 1174 11 1 55.05 -20.8643 125.249 + 53 141.471 1173 11 1 54.85 -20.7767 125.238 + 53 114.593 1172 11 1 54.65 -20.689 125.226 + 53 112.969 1171 11 1 54.45 -20.6011 125.215 + 53 121.99 1170 11 1 54.25 -20.5136 125.204 + 53 183.932 1169 11 1 54.05 -20.4261 125.193 + 53 145.003 1168 11 1 53.85 -20.3386 125.182 + 53 115.166 1167 11 1 53.65 -20.2515 125.17 + 53 134.102 1166 11 1 53.45 -20.1646 125.159 + 53 348.541 840 11 0 34.7259 -12.0481 124.15 + 53 339.797 841 11 0 34.269 -11.85 124.125 + 53 364.011 842 11 0 33.8087 -11.65 124.101 + 53 312.94 843 11 0 33.3488 -11.45 124.078 + 53 312.381 844 11 0 32.8898 -11.25 124.054 + 53 393.833 845 11 0 32.4288 -11.05 124.031 + 53 388.508 846 11 0 31.9699 -10.85 124.009 + 53 341.863 847 11 0 31.5131 -10.65 123.987 + 53 560.561 848 11 0 31.0562 -10.45 123.964 + 53 303.544 849 11 0 30.5997 -10.25 123.942 + 53 259.11 850 11 0 30.1434 -10.05 123.92 + 53 411.352 851 11 0 29.6868 -9.85 123.899 + 53 333.451 852 11 0 29.2285 -9.65 123.879 + 53 368.399 853 11 0 28.7747 -9.45 123.859 + 53 287.081 854 11 0 28.3203 -9.25 123.84 + 53 383.801 855 11 0 27.8653 -9.05 123.821 + 53 317.417 856 11 0 27.41 -8.85 123.802 + 53 346.203 857 11 0 26.9531 -8.65 123.783 + 53 188.068 858 11 0 26.4953 -8.45 123.763 + 53 2.549 1181 11 0 -33.049 56.4394 123.75 + 53 87 1182 11 0 -33.0519 56.45 123.755 + 53 84.1506 1183 11 0 -33.1124 56.65 123.805 + 53 146.053 1184 11 0 -33.2313 56.8504 123.859 + 53 165.817 1185 11 0 -33.3437 57.05 123.953 + 53 69.7614 793 11 0 54.0073 -21.2907 124.15 + 53 255.838 792 11 0 53.9111 -21.4505 124.123 + 53 313.661 1165 11 1 53.25 -23.8156 125.19 + 53 76.8676 1164 11 1 53.0498 -24.1224 125.201 + 53 246.772 796 11 0 55.6026 -20.8225 124.15 + 53 140.095 797 11 0 55.4169 -20.65 123.879 + 53 15.4475 882 12 0 85.2356 -3.48298 153.75 + 53 144.312 883 12 0 85.2702 -3.45 153.794 + 53 57.7231 884 12 0 85.4807 -3.25 154.061 + 53 64.5087 1331 12 1 86.3439 -2.43033 155.15 + 53 133.395 1332 12 1 86.45 -2.32958 155.284 + 53 10.0658 1333 12 1 86.65 -2.14105 155.535 + 53 29.1151 988 13 0 108.051 17.8163 183.75 + 53 145.041 989 13 0 108.087 17.85 183.798 + 53 23.2848 990 13 0 108.302 18.05 184.081 + 53 39.8077 1444 13 1 109.101 18.79 185.15 + 53 141.158 1445 13 1 109.15 18.835 185.215 + 53 34.6174 1446 13 1 109.35 19.0196 185.483 + 53 52.3629 1093 14 0 129.836 38.774 213.75 + 53 127.092 1094 14 0 129.914 38.85 213.859 + 53 1.90794 1095 14 0 130.123 39.05 214.145 + 53 58.4159 1553 14 1 130.858 39.7547 215.15 + 53 527.171 1554 14 1 130.95 39.8433 215.277 + 53 42.1785 1103 14 0 130.333 40.7784 214.15 + 53 255.945 1104 14 0 130.31 40.8503 214.08 + 53 33.6854 1535 14 1 127.35 37.5197 215.464 + 53 1686.02 1215 11 1 63.1907 -24.5156 125.55 + 53 787.991 776 11 0 63.5503 -24.7348 124.15 + 53 147.558 1255 10 1 71.2301 -29.008 95.55 + 53 646.287 1256 10 1 71.25 -29.0207 95.4577 + 53 1007.47 754 10 0 71.5368 -29.1931 94.15 + 53 689.609 1288 9 1 77.68 -32.9869 65.55 + 53 352.104 734 9 0 77.9182 -33.2166 64.15 + 53 428.678 733 9 0 77.9524 -33.25 63.9466 + 53 757.91 1313 8 1 82.7163 -38.0908 35.55 + 53 841.108 708 8 0 82.945 -38.3573 34.15 + 53 829.293 1336 7 1 87.3051 -43.6383 5.55 + 53 933.811 680 7 0 87.4733 -43.9532 4.15 + 53 890.939 1355 6 1 91.2528 -50.589 -24.45 + 53 799.413 645 6 0 91.5106 -50.9497 -25.85 + 53 30.2187 644 6 0 91.5821 -51.05 -26.2354 + 53 99.4148 1382 5 1 96.7437 -58.4214 -54.45 + 53 768.177 1383 5 1 96.75 -58.4294 -54.4873 + 53 1027.06 606 5 0 96.9832 -58.7171 -55.85 + 53 1050.48 1408 4 1 101.806 -64.3602 -84.45 + 53 595.103 577 4 0 101.979 -64.6091 -85.85 + 53 498.932 576 4 0 102.007 -64.65 -86.0842 + 53 226.641 1427 3 1 105.732 -69.7645 -114.45 + 53 1119.45 1428 3 1 105.75 -69.7772 -114.516 + 53 480.105 550 3 0 106.122 -70.0253 -115.85 + 53 864.139 549 3 0 106.16 -70.05 -115.985 + 53 1447.59 1469 2 1 114.029 -75.4684 -144.45 + 53 1614.14 521 2 0 114.427 -75.7619 -145.85 + 53 1704.64 1513 1 1 122.875 -81.6459 -174.45 + 53 407.386 1514 1 1 122.95 -81.7087 -174.782 + 53 2424.38 490 1 0 123.171 -81.9059 -175.85 + 53 67.9506 1238 10 1 67.7898 -23.4011 95.15 + 53 178.363 1293 4 0 48.4469 78.7391 -86.25 + 53 200.51 1292 4 0 48.6035 78.65 -86.1214 + 53 149.682 1147 4 1 49.4769 78.3591 -84.8499 + 53 37.6902 1148 4 1 49.65 78.2825 -84.5737 + 53 128.949 1146 4 1 49.45 78.3759 -84.487 + 53 190.431 1291 4 0 49.9689 78.2702 -85.85 + 53 95.2937 1398 4 0 142.13 99.8587 -86.25 + 53 130.728 1568 4 0 157.981 133.772 -86.25 + 53 244.57 1294 4 0 48.5839 78.85 -85.9274 + 53 286.596 1214 11 1 63.05 -23.9004 125.258 + 53 175.235 789 11 0 62.723 -22.1629 124.15 + 53 415.74 790 11 0 62.7018 -22.05 124.078 + 53 473.264 791 11 0 62.6637 -21.85 123.95 + 53 1217.67 1168 10 1 53.8082 22.6073 95.55 + 53 123.167 1167 10 1 53.65 23.1595 95.1933 + 53 243.497 1023 10 0 53.2215 24.7582 94.15 + 53 520.217 1024 10 0 53.197 24.85 94.0901 + 53 509.879 1025 10 0 53.143 25.05 93.9595 + 53 300.303 1026 10 0 53.0894 25.25 93.829 + 53 408.628 1105 9 1 41.1027 68.2239 65.55 + 53 1328 1104 9 1 41.05 68.4039 65.443 + 53 169.921 1252 9 0 40.4052 70.5782 64.15 + 53 524.862 1253 9 0 40.3838 70.65 64.1072 + 53 619.831 1254 9 0 40.3242 70.85 63.9884 + 53 620.58 1255 9 0 40.2663 71.05 63.8707 + 53 14.1929 1256 9 0 40.209 71.25 63.7538 + 53 397.553 1028 8 1 25.7003 118.923 35.55 + 53 1697.38 1027 8 1 25.65 119.089 35.4539 + 53 670.01 1506 8 0 24.9824 121.35 34.15 + 53 539.469 1507 8 0 24.9235 121.55 34.0341 + 53 601.276 1508 8 0 24.8653 121.75 33.917 + 53 250.151 1509 8 0 24.806 121.95 33.8015 + 53 1094.03 957 7 1 11.5855 169.641 5.55 + 53 1113.54 956 7 1 11.45 169.936 5.34856 + 53 39.9634 1757 7 0 10.6031 171.741 4.15 + 53 802.256 1758 7 0 10.5987 171.75 4.14388 + 53 809.258 1759 7 0 10.5054 171.95 4.01099 + 53 765.276 1760 7 0 10.4086 172.15 3.87662 + 53 51.305 1220 11 1 64.05 -24.2497 125.377 + 53 51.7711 1221 11 1 64.25 -24.1915 125.317 + 53 49.3424 1222 11 1 64.45 -24.1334 125.258 + 53 92.987 1223 11 1 64.65 -24.0753 125.199 + 53 237.118 785 11 0 68.1976 -23.0467 124.15 + 53 205.713 786 11 0 68.8757 -22.85 123.95 + 53 42.6911 1718 10 1 163.792 4.62805 95.55 + 53 60.611 1719 10 1 163.95 4.6768 95.505 + 53 64.4975 1720 10 1 164.15 4.73856 95.4477 + 53 63.5219 1721 10 1 164.35 4.80023 95.3907 + 53 88.8749 1722 10 1 164.55 4.86174 95.3337 + 53 71.1761 1723 10 1 164.75 4.92336 95.2768 + 53 55.3812 1724 10 1 164.95 4.98518 95.2203 + 53 10.6621 1725 10 1 165.15 5.04723 95.1638 + 53 94.5619 930 10 0 168.726 6.15247 94.15 + 53 200.94 931 10 0 169.041 6.25 94.0605 + 53 138.775 932 10 0 169.696 6.45 93.8758 + 53 154.851 781 11 0 63.5095 -23.7978 124.15 + 53 92.5666 782 11 0 63.5809 -23.65 123.839 + 53 29.435 1249 10 1 70.0247 -10.2667 95.55 + 53 118.849 1250 10 1 70.05 -10.2155 95.4433 + 53 171.952 852 10 0 70.3571 -9.5959 94.15 + 53 19.1433 853 10 0 70.4295 -9.45 93.8454 + 53 112.509 1285 9 1 77.0831 4.07446 65.55 + 53 83.8961 923 9 0 77.3868 4.72802 64.15 + 53 42.3789 924 9 0 77.4436 4.85 63.8887 + 53 83.8845 1317 8 1 83.5823 18.0679 35.55 + 53 51.77 1318 8 1 83.65 18.2107 35.2454 + 53 200.572 993 8 0 83.8908 18.7198 34.15 + 53 41.6745 994 8 0 83.9524 18.85 33.8699 + 53 137.21 1350 7 1 90.1517 31.9669 5.55 + 53 32.1703 1062 7 0 90.4433 32.6028 4.15 + 53 82.0245 1063 7 0 90.4651 32.65 4.04597 + 53 156.079 1381 6 1 96.4383 45.6342 -24.45 + 53 104.037 1131 6 0 96.7481 46.2867 -25.85 + 53 13.2222 1132 6 0 96.8254 46.45 -26.1995 + 53 120.926 1414 5 1 103.073 59.6326 -54.45 + 53 166.463 1201 5 0 103.34 60.2669 -55.85 + 53 137.781 1443 4 1 108.788 73.2449 -84.45 + 53 219.185 1269 4 0 109.059 73.8851 -85.85 + 53 9.44923 1270 4 0 109.129 74.05 -86.2106 + 53 6.66352 1471 3 1 114.546 86.9334 -114.45 + 53 108.493 1472 3 1 114.55 86.9427 -114.47 + 53 44.4727 1337 3 0 114.799 87.5877 -115.85 + 53 93.5849 1338 3 0 114.823 87.65 -115.983 + 53 198.529 1499 2 1 119.957 100.969 -144.45 + 53 123.42 1407 2 0 120.228 101.596 -145.85 + 53 17.8727 1408 2 0 120.294 101.75 -146.193 + 53 114.576 1528 1 1 125.792 114.456 -174.45 + 53 33.4824 1474 1 0 126.083 115.1 -175.85 + 53 129.378 1475 1 0 126.106 115.15 -175.959 + 53 124.027 1559 0 1 131.969 128.261 -204.45 + 53 30.7475 1543 0 0 132.234 128.905 -205.85 + 53 153.828 1544 0 0 132.253 128.95 -205.947 + 53 115.995 1349 7 1 90.05 32.0627 5.30845 + 53 129.644 1242 10 1 68.4959 -9.0325 95.55 + 53 12.0469 858 10 0 68.7496 -8.27708 94.15 + 53 147.978 859 10 0 68.7587 -8.25 94.0999 + 53 156.945 1269 9 1 73.9086 7.25289 65.55 + 53 20.9833 939 9 0 74.1228 8.01641 64.15 + 53 98.9977 940 9 0 74.1322 8.05 64.0884 + 53 224.948 1291 8 1 78.3469 23.6583 35.55 + 53 11.7505 1021 8 0 78.473 24.4121 34.15 + 53 104.277 1022 8 0 78.4793 24.45 34.0796 + 53 52.3498 1305 7 1 81.2317 39.8342 5.55 + 53 64.8704 1306 7 1 81.25 39.9124 5.40694 + 53 31.3741 1102 7 0 81.4135 40.5976 4.15 + 53 100.257 1103 7 0 81.4261 40.65 4.05396 + 53 125.32 1325 6 1 85.1475 56.2123 -24.45 + 53 42.3106 1184 6 0 85.3424 56.9716 -25.85 + 53 94.4945 1185 6 0 85.3625 57.05 -25.9943 + 53 54.9644 1346 5 1 89.4347 72.5299 -54.45 + 53 128.519 1347 5 1 89.45 72.5922 -54.5663 + 53 115.925 1266 5 0 89.6136 73.2832 -55.85 + 53 39.6679 1267 5 0 89.6529 73.45 -56.1594 + 53 166.759 1365 4 1 93.2849 88.7798 -84.45 + 53 80.0012 1347 4 0 93.4881 89.5216 -85.85 + 53 63.7257 1348 4 0 93.5231 89.65 -86.0923 + 53 202.622 1387 3 1 97.6034 104.728 -114.45 + 53 72.8606 1426 3 0 97.8024 105.473 -115.85 + 53 131.439 1427 3 0 97.8231 105.55 -115.994 + 53 133.645 1409 2 1 101.959 120.744 -144.45 + 53 18.1408 1506 2 0 102.172 121.509 -145.85 + 53 109.846 1507 2 0 102.183 121.55 -145.924 + 53 155.334 1431 1 1 106.407 137.209 -174.45 + 53 120.497 1589 1 0 106.597 137.963 -175.85 + 53 14.7498 1590 1 0 106.645 138.15 -176.198 + 53 69.1447 1451 0 1 110.526 153.361 -204.45 + 53 68.598 1452 0 1 110.55 153.448 -204.615 + 53 36.6026 1669 0 0 110.723 154.096 -205.85 + 53 108.943 1670 0 0 110.738 154.15 -205.953 + 53 84.8168 1264 0 1 72.8564 130.545 -204.85 + 53 114.21 1186 10 1 57.3857 -28.5439 95.55 + 53 116.167 756 10 0 57.1188 -28.729 94.15 + 53 37.4858 1158 9 1 51.6681 -32.512 65.55 + 53 99.7406 1157 9 1 51.65 -32.5244 65.4559 + 53 125.886 736 9 0 51.3986 -32.6965 64.15 + 53 93.4909 1129 8 1 45.8943 -36.47 35.55 + 53 132.935 1128 8 1 45.85 -36.5005 35.3215 + 53 149.238 716 8 0 45.6232 -36.6568 34.15 + 53 112.119 1100 7 1 40.1026 -40.4683 5.55 + 53 33.206 1099 7 1 40.05 -40.5044 5.2789 + 53 154.624 696 7 0 39.8313 -40.6547 4.15 + 53 150.249 1071 6 1 34.2888 -44.4502 -24.45 + 53 54.6952 1070 6 1 34.25 -44.4768 -24.6506 + 53 22.2697 677 6 0 34.0173 -44.6357 -25.85 + 53 83.9317 676 6 0 33.9965 -44.65 -25.9576 + 53 117.212 1042 5 1 28.4732 -48.4228 -54.45 + 53 94.5651 1041 5 1 28.45 -48.4388 -54.5699 + 53 115.332 657 5 0 28.2025 -48.6088 -55.85 + 53 76.5392 656 5 0 28.1426 -48.65 -56.1596 + 53 37.173 1013 4 1 22.6711 -52.4136 -84.45 + 53 81.2676 1012 4 1 22.65 -52.4282 -84.5607 + 53 113.51 637 4 0 22.4043 -52.5987 -85.85 + 53 3.10728 636 4 0 22.3304 -52.65 -86.238 + 53 3089.75 984 3 1 16.9517 -56.3768 -114.45 + 53 1.22892 653 3 0 -1.71567 -49.45 -115.878 + 53 0.0680252 612 3 0 17.374 -57.6496 -115.85 + 53 124.42 611 3 0 17.3741 -57.65 -115.85 + 53 129.227 610 3 0 17.4489 -57.85 -116.039 + 53 13.8733 609 3 0 17.5235 -58.05 -116.228 + 53 392.783 1043 2 1 28.6751 -88.0217 -144.45 + 53 67.2395 452 2 0 29.22 -89.5457 -145.85 + 53 189.294 451 2 0 29.2573 -89.65 -145.946 + 53 114.392 450 2 0 29.3285 -89.85 -146.13 + 53 70.2576 1100 1 1 40.2112 -120.645 -174.45 + 53 204.272 1101 1 1 40.25 -120.751 -174.549 + 53 158.62 289 1 0 40.7666 -122.151 -175.85 + 53 129.425 288 1 0 40.8404 -122.35 -176.035 + 53 54.819 287 1 0 40.9144 -122.55 -176.221 + 53 332.567 1160 0 1 52.0748 -152.951 -204.45 + 53 32.827 128 0 0 52.671 -154.492 -205.85 + 53 236.602 127 0 0 52.6936 -154.55 -205.903 + 53 157.352 126 0 0 52.7714 -154.75 -206.085 + 53 126.403 619 3 0 16.6864 -56.2253 -115.85 + 53 26.1898 956 2 1 11.2614 -51.814 -144.45 + 53 89.0162 955 2 1 11.25 -51.8045 -144.511 + 53 137.012 642 2 0 11.0008 -51.5982 -145.85 + 53 40.0172 928 1 1 5.67417 -47.1865 -174.45 + 53 102.654 927 1 1 5.65 -47.1661 -174.579 + 53 197.32 665 1 0 5.4124 -46.9652 -175.85 + 53 29.4776 900 0 1 0.0736351 -42.451 -204.45 + 53 141.674 689 0 0 -0.190289 -42.2343 -205.85 + 53 89.1101 1127 8 1 45.6496 -36.4651 35.3108 + 53 86.3871 721 8 0 44.5465 -35.8366 34.15 + 53 181.948 720 8 0 44.4772 -35.85 33.9513 + 53 6.61272 719 8 0 44.2496 -36.05 33.7641 + 53 92.4754 699 8 0 3.37187 -40.0795 33.7501 +Number of digits in this event = 214 +Using G4ParticleGun ... +9.06486 LIN +proton +Event: 54 +Number of tracker hits in this event = 24 + 54 132.49 535 11 1 -72.8569 -2.79209 125.55 + 54 91.2336 886 11 0 -72.8575 -2.79099 124.15 + 54 107.319 535 10 1 -72.8718 -2.77189 95.55 + 54 122.586 886 10 0 -72.8723 -2.76994 94.15 + 54 126.131 535 9 1 -72.8881 -2.72971 65.55 + 54 91.0757 886 9 0 -72.8879 -2.72797 64.15 + 54 100.903 535 8 1 -72.8842 -2.69495 35.55 + 54 139.168 886 8 0 -72.8839 -2.69401 34.15 + 54 99.3224 535 7 1 -72.8781 -2.67589 5.55 + 54 131.546 886 7 0 -72.8781 -2.67498 4.15 + 54 93.7247 535 6 1 -72.8754 -2.65353 -24.45 + 54 152.02 886 6 0 -72.876 -2.65159 -25.85 + 54 137.98 535 5 1 -72.8884 -2.61532 -54.45 + 54 174.177 887 5 0 -72.8895 -2.61365 -55.85 + 54 129.384 535 4 1 -72.9069 -2.58208 -84.45 + 54 110.471 887 4 0 -72.9075 -2.58133 -85.85 + 54 100.912 535 3 1 -72.919 -2.56846 -114.45 + 54 121.504 887 3 0 -72.9197 -2.5668 -115.85 + 54 110.561 535 2 1 -72.934 -2.53484 -144.45 + 54 99.3953 887 2 0 -72.9351 -2.53204 -145.85 + 54 144.924 535 1 1 -72.9596 -2.47675 -174.45 + 54 112.369 887 1 0 -72.9599 -2.47385 -175.85 + 54 126.06 535 0 1 -72.9672 -2.41873 -204.45 + 54 113.464 888 0 0 -72.9671 -2.41427 -205.85 +Number of digits in this event = 13 +Using G4ParticleGun ... +3.98389 LIN +proton +Event: 55 +Number of tracker hits in this event = 40 + 55 114.477 410 9 1 -98.0165 -81.8257 65.55 + 55 115.458 491 9 0 -98.0164 -81.8255 64.15 + 55 120.548 410 8 1 -98.0147 -81.8206 35.55 + 55 106.546 491 8 0 -98.0145 -81.82 34.15 + 55 196.609 410 7 1 -98.0076 -81.8082 5.55 + 55 269.945 491 7 0 -98.0073 -81.8094 4.15 + 55 94.6883 410 6 1 -98.002 -81.8306 -24.45 + 55 135.192 491 6 0 -98.0024 -81.8324 -25.85 + 55 267.238 410 5 1 -98.01 -81.8763 -54.45 + 55 114.684 490 5 0 -98.0102 -81.8773 -55.85 + 55 106.952 410 4 1 -98.0086 -81.8939 -84.45 + 55 118.268 490 4 0 -98.0067 -81.895 -85.85 + 55 97.8129 410 3 1 -97.968 -81.9205 -114.45 + 55 114.159 490 3 0 -97.9657 -81.9223 -115.85 + 55 122.094 411 2 1 -97.9172 -81.9537 -144.45 + 55 102.44 490 2 0 -97.9137 -81.9562 -145.85 + 55 144.281 411 1 1 -97.847 -82.001 -174.45 + 55 115.863 490 1 0 -97.8505 -82.0071 -175.85 + 55 111.948 411 0 1 -97.924 -82.133 -204.45 + 55 108.138 489 0 0 -97.9269 -82.1403 -205.85 + 55 206.326 677 3 0 97.1372 -44.519 -116.25 + 55 48.5639 676 3 0 97.4738 -44.6501 -115.954 + 55 3.26089 1392 3 1 98.7377 -44.9422 -114.85 + 55 59.9753 1393 3 1 98.75 -44.9453 -114.839 + 55 287.022 1394 3 1 98.95 -44.9899 -114.678 + 55 122.411 1395 3 1 99.15 -44.9829 -114.551 + 55 90.454 1213 2 1 62.835 -31.8192 -144.45 + 55 89.7078 1212 2 1 62.65 -31.716 -144.631 + 55 73.0448 1211 2 1 62.4496 -31.5011 -144.629 + 55 60.333 1210 2 1 62.25 -31.3992 -144.654 + 55 70.2862 1209 2 1 62.05 -31.3054 -144.634 + 55 82.77 1208 2 1 61.85 -31.1624 -144.613 + 55 93.4594 1207 2 1 61.65 -31.0536 -144.622 + 55 155.051 1206 2 1 61.45 -30.9342 -144.614 + 55 343.795 1205 2 1 61.2499 -30.5699 -144.619 + 55 80.2513 1204 2 1 61.0497 -30.0526 -144.766 + 55 11.5804 755 2 0 61.4459 -28.8695 -145.85 + 55 88.9865 756 2 0 61.4501 -28.85 -145.899 + 55 267.74 757 2 0 61.4109 -28.6497 -146.024 + 55 81.8174 758 2 0 61.4489 -28.45 -146.152 +Number of digits in this event = 16 +Using G4ParticleGun ... +6.57542 LIN proton Event: 56 Number of tracker hits in this event = 24 - 56 145.824 523 11 1 -75.3361 -28.8731 125.55 - 56 125.196 755 11 0 -75.3352 -28.874 124.15 - 56 147.646 523 10 1 -75.3184 -28.8884 95.55 - 56 107.727 755 10 0 -75.3193 -28.8925 94.15 - 56 274.303 523 9 1 -75.3255 -28.9719 65.55 - 56 151.729 755 9 0 -75.3258 -28.9744 64.15 - 56 116.962 523 8 1 -75.332 -29.014 35.55 - 56 99.9888 755 8 0 -75.3339 -29.0138 34.15 - 56 123.721 523 7 1 -75.3579 -29.0018 5.55 - 56 124.704 755 7 0 -75.3567 -29.0009 4.15 - 56 170.822 523 6 1 -75.3319 -28.9753 -24.45 - 56 103.077 755 6 0 -75.3292 -28.9752 -25.85 - 56 104.573 523 5 1 -75.2812 -28.9745 -54.45 - 56 158.083 755 5 0 -75.2802 -28.9739 -55.85 - 56 108.886 523 4 1 -75.2551 -28.9653 -84.45 - 56 148.44 755 4 0 -75.2507 -28.9645 -85.85 - 56 117.607 524 3 1 -75.1546 -28.9535 -114.45 - 56 97.478 755 3 0 -75.1473 -28.953 -115.85 - 56 162.847 525 2 1 -74.9964 -28.9523 -144.45 - 56 128.799 755 2 0 -74.9906 -28.9537 -145.85 - 56 116.742 525 1 1 -74.8701 -28.9728 -174.45 - 56 121.811 755 1 0 -74.8497 -28.9833 -175.85 - 56 137.147 528 0 1 -74.44 -29.1967 -204.45 - 56 106.059 754 0 0 -74.4188 -29.2073 -205.85 -Number of digits in this event = 15 -Using G4ParticleGun ... -7.07111 LIN -proton -Event: 57 -Number of tracker hits in this event = 20 - 57 130.283 191 7 1 -141.885 -39.7606 5.55 - 57 106.277 701 7 0 -141.885 -39.7618 4.15 - 57 135.803 191 6 1 -141.897 -39.7874 -24.45 - 57 118.629 701 6 0 -141.897 -39.7882 -25.85 - 57 118.333 191 5 1 -141.9 -39.8035 -54.45 - 57 107.008 701 5 0 -141.899 -39.8039 -55.85 - 57 94.0053 191 4 1 -141.89 -39.8101 -84.45 - 57 117.386 701 4 0 -141.889 -39.8104 -85.85 - 57 96.8242 191 3 1 -141.883 -39.8141 -114.45 - 57 152.13 701 3 0 -141.882 -39.8146 -115.85 - 57 174.015 191 2 1 -141.872 -39.8277 -144.45 - 57 193.22 701 2 0 -141.871 -39.8291 -145.85 - 57 128.1 191 1 1 -141.847 -39.8582 -174.45 - 57 122.568 700 1 0 -141.847 -39.8598 -175.85 - 57 109.752 191 0 1 -141.84 -39.8935 -204.45 - 57 128.605 700 0 0 -141.841 -39.8945 -205.85 - 57 26.536 494 3 0 65.8381 -81.05 -116.118 - 57 33.6523 35 5 0 170.593 -172.972 -56.25 - 57 164.808 36 5 0 170.677 -172.95 -56.1617 - 57 186.389 37 5 0 170.801 -172.75 -55.9807 + 56 94.578 1244 11 1 68.949 44.774 125.464 + 56 160.357 1123 11 0 68.949 44.7741 124.15 + 56 327.69 1244 10 1 68.9457 44.7793 95.55 + 56 109.035 1123 10 0 68.9451 44.7799 94.15 + 56 209.019 1244 9 1 68.9346 44.7927 65.55 + 56 94.6546 1123 9 0 68.9346 44.7936 64.15 + 56 136.424 1244 8 1 68.9372 44.814 35.55 + 56 178.649 1123 8 0 68.9374 44.8156 34.15 + 56 104.998 1244 7 1 68.9382 44.8466 5.55 + 56 124.919 1123 7 0 68.9392 44.8481 4.15 + 56 105.298 1244 6 1 68.9596 44.8734 -24.45 + 56 117.032 1124 6 0 68.9603 44.8758 -25.85 + 56 102.626 1244 5 1 68.9739 44.9214 -54.45 + 56 150.2 1124 5 0 68.9757 44.9237 -55.85 + 56 160.743 1244 4 1 69.0162 44.9742 -84.45 + 56 136.019 1124 4 0 69.0182 44.9778 -85.85 + 56 117.242 1245 3 1 69.0632 45.0513 -114.45 + 56 106.02 1125 3 0 69.0644 45.0559 -115.85 + 56 104.66 1245 2 1 69.0911 45.1506 -144.45 + 56 202.765 1125 2 0 69.0936 45.1557 -145.85 + 56 122.283 1245 1 1 69.1477 45.2585 -174.45 + 56 116.152 1126 1 0 69.151 45.2634 -175.85 + 56 88.2542 1245 0 1 69.2179 45.3674 -204.45 + 56 122.256 1126 0 0 69.2202 45.3713 -205.85 Number of digits in this event = 13 Using G4ParticleGun ... -4.36585 LIN +9.58381 LIN proton -Event: 58 -Number of tracker hits in this event = 21 - 58 103.304 1525 9 1 125.191 -2.00881 65.55 - 58 210.672 890 9 0 125.193 -2.0089 64.15 - 58 100.545 1525 8 1 125.232 -2.01284 35.55 - 58 131.028 890 8 0 125.232 -2.01435 34.15 - 58 109.862 1525 7 1 125.224 -2.05007 5.55 - 58 104.675 890 7 0 125.223 -2.04996 4.15 - 58 168.143 1525 6 1 125.21 -2.04467 -24.45 - 58 120.243 890 6 0 125.21 -2.04164 -25.85 - 58 109.091 1525 5 1 125.205 -1.98088 -54.45 - 58 98.3498 890 5 0 125.205 -1.97896 -55.85 - 58 103.203 1525 4 1 125.212 -1.94207 -84.45 - 58 260.331 890 4 0 125.211 -1.93977 -85.85 - 58 116.45 1525 3 1 125.188 -1.89315 -114.45 - 58 179.624 890 3 0 125.187 -1.89058 -115.85 - 58 99.6564 1525 2 1 125.175 -1.83576 -144.45 - 58 102.002 891 2 0 125.175 -1.83443 -145.85 - 58 113.59 1525 1 1 125.167 -1.80874 -174.45 - 58 100.861 891 1 0 125.166 -1.80759 -175.85 - 58 132.007 1525 0 1 125.153 -1.78697 -204.45 - 58 119.215 891 0 0 125.152 -1.78714 -205.85 - 58 147.276 889 7 0 125.223 -2.05 4.10659 -Number of digits in this event = 9 -Using G4ParticleGun ... -7.97751 LIN -proton -Event: 59 -Number of tracker hits in this event = 33 - 59 155.608 607 10 1 -58.5765 -78.8611 95.55 - 59 138.403 505 10 0 -58.5757 -78.8621 94.15 - 59 98.1938 607 9 1 -58.5607 -78.8839 65.55 - 59 194.143 505 9 0 -58.5602 -78.8849 64.15 - 59 112.171 607 8 1 -58.5468 -78.9071 35.55 - 59 105.038 505 8 0 -58.5457 -78.9071 34.15 - 59 142.104 607 7 1 -58.5194 -78.9125 5.55 - 59 99.3707 505 7 0 -58.5177 -78.9126 4.15 - 59 112.193 607 6 1 -58.4871 -78.9156 -24.45 - 59 100.572 505 6 0 -58.4859 -78.9162 -25.85 - 59 144.701 607 5 1 -58.4619 -78.9304 -54.45 - 59 107.146 505 5 0 -58.461 -78.9306 -55.85 - 59 188.074 608 4 1 -58.442 -78.9352 -84.45 - 59 160.44 505 4 0 -58.4403 -78.9356 -85.85 - 59 113.844 608 3 1 -58.4063 -78.9445 -114.45 - 59 179.346 505 3 0 -58.404 -78.9442 -115.85 - 59 113.685 608 2 1 -58.3563 -78.9378 -144.45 - 59 194.666 505 2 0 -58.3531 -78.9373 -145.85 - 59 104.14 608 1 1 -58.2827 -78.9299 -174.45 - 59 161.068 505 1 0 -58.2791 -78.9292 -175.85 - 59 111.654 609 0 1 -58.201 -78.908 -204.45 - 59 110.877 505 0 0 -58.1974 -78.9076 -205.85 - 59 13.6158 235 1 0 145.858 -133.107 -175.853 - 59 179.725 926 8 1 5.43502 -115.664 35.2835 - 59 51.4045 844 10 1 -11.25 60.7705 95.1813 - 59 74.9389 843 10 1 -11.25 60.844 95.5256 - 59 9.75281 506 2 0 -58.4081 -78.8499 -146.238 - 59 229.061 748 2 0 -88.3914 -30.3103 -146.25 - 59 13.9637 749 2 0 -88.5762 -30.25 -145.869 - 59 2.55416 442 2 1 -91.7413 -29.7721 -144.85 - 59 59.5031 441 2 1 -91.75 -29.7708 -144.847 - 59 451.094 440 2 1 -91.95 -29.6862 -144.778 - 59 323.85 439 2 1 -92.15 -29.5824 -144.483 -Number of digits in this event = 17 -Using G4ParticleGun ... -2.14788 LIN -proton -Event: 60 -Number of tracker hits in this event = 20 - 60 120.244 312 9 1 -117.726 60.3848 65.55 - 60 123.384 1201 9 0 -117.722 60.3853 64.15 - 60 103.217 312 8 1 -117.614 60.3922 35.55 - 60 116.876 1201 8 0 -117.604 60.3908 34.15 - 60 113.566 313 7 1 -117.396 60.3581 5.55 - 60 133.761 1201 7 0 -117.386 60.3551 4.15 - 60 112.781 314 6 1 -117.155 60.2989 -24.45 - 60 104.809 1201 6 0 -117.14 60.2968 -25.85 - 60 235.008 316 5 1 -116.854 60.2441 -54.45 - 60 100.612 1200 5 0 -116.839 60.2446 -55.85 - 60 112.242 318 4 1 -116.525 60.2621 -84.45 - 60 244.658 1201 4 0 -116.506 60.2663 -85.85 - 60 212.661 320 3 1 -116.118 60.3507 -114.45 - 60 159.761 1201 3 0 -116.096 60.3532 -115.85 - 60 92.2729 322 2 1 -115.66 60.4111 -144.45 - 60 119.852 1201 2 0 -115.644 60.4162 -145.85 - 60 97.3065 324 1 1 -115.339 60.5124 -174.45 - 60 118.136 1202 1 0 -115.327 60.5176 -175.85 - 60 102.602 325 0 1 -115.077 60.6307 -204.45 - 60 234.231 1202 0 0 -115.066 60.6362 -205.85 -Number of digits in this event = 9 -Using G4ParticleGun ... -9.21434 LIN -proton -Event: 61 -Number of tracker hits in this event = 23 - 61 155.085 1142 9 1 48.49 -109.134 65.55 - 61 125.422 355 9 0 48.4891 -109.134 64.15 - 61 108.597 1142 8 1 48.4685 -109.129 35.55 - 61 116.621 355 8 0 48.4679 -109.129 34.15 - 61 128.645 1142 7 1 48.4546 -109.127 5.55 - 61 120.986 355 7 0 48.4533 -109.127 4.15 - 61 98.8528 1141 6 1 48.4299 -109.12 -24.45 - 61 87.8489 355 6 0 48.4288 -109.119 -25.85 - 61 112.852 1141 5 1 48.4062 -109.107 -54.45 - 61 111.46 355 5 0 48.4051 -109.106 -55.85 - 61 402.708 1141 4 1 48.3855 -109.091 -84.45 - 61 182.939 355 4 0 48.3856 -109.09 -85.85 - 61 179.624 1141 3 1 48.3886 -109.086 -114.45 - 61 104.244 355 3 0 48.3881 -109.086 -115.85 - 61 135.207 1141 2 1 48.3785 -109.095 -144.45 - 61 346.414 355 2 0 48.3783 -109.094 -145.85 - 61 131.409 1141 1 1 48.3765 -109.089 -174.45 - 61 111.71 355 1 0 48.3758 -109.089 -175.85 - 61 135.57 1141 0 1 48.3586 -109.079 -204.45 - 61 128.629 355 0 0 48.3579 -109.078 -205.85 - 61 37.6865 354 4 0 48.1363 -109.15 -85.924 - 61 271.68 1142 4 1 48.45 -109.597 -84.7568 - 61 128.43 1143 4 1 48.65 -109.082 -84.7581 -Number of digits in this event = 15 -Using G4ParticleGun ... -8.39741 LIN -proton -Event: 62 -Number of tracker hits in this event = 22 - 62 100.866 810 10 1 -17.975 112.853 95.55 - 62 165.779 1463 10 0 -17.9748 112.853 94.15 - 62 102.432 810 9 1 -17.9691 112.856 65.55 - 62 104.276 1463 9 0 -17.9696 112.857 64.15 - 62 117.213 810 8 1 -17.9823 112.866 35.55 - 62 98.3895 1463 8 0 -17.9826 112.866 34.15 - 62 108.34 810 7 1 -17.9884 112.864 5.55 - 62 222.812 1463 7 0 -17.9896 112.863 4.15 - 62 106.597 810 6 1 -18.0118 112.85 -24.45 - 62 112.133 1463 6 0 -18.0124 112.85 -25.85 - 62 115.776 810 5 1 -18.0467 112.848 -54.45 - 62 121.166 1463 5 0 -18.0479 112.847 -55.85 - 62 97.9314 809 4 1 -18.0724 112.84 -84.45 - 62 100.346 1463 4 0 -18.073 112.84 -85.85 - 62 116.562 809 3 1 -18.0823 112.848 -114.45 - 62 121.391 1463 3 0 -18.0825 112.849 -115.85 - 62 110.686 809 2 1 -18.0887 112.871 -144.45 - 62 102.596 1463 2 0 -18.0882 112.872 -145.85 - 62 96.0448 809 1 1 -18.0774 112.9 -174.45 - 62 112.844 1463 1 0 -18.0775 112.9 -175.85 - 62 123.147 809 0 1 -18.0779 112.911 -204.45 - 62 121.748 1463 0 0 -18.0783 112.911 -205.85 -Number of digits in this event = 7 -Using G4ParticleGun ... -7.09127 LIN -proton -Event: 63 -Number of tracker hits in this event = 23 - 63 101.559 1078 9 1 35.7648 116.001 65.55 - 63 153.411 1479 9 0 35.7645 116.001 64.15 - 63 90.2446 1078 8 1 35.7612 116.004 35.55 - 63 105.696 1479 8 0 35.7614 116.004 34.15 - 63 104.873 1078 7 1 35.7656 116.003 5.55 - 63 103.584 1479 7 0 35.7677 116.002 4.15 - 63 124.967 1078 6 1 35.8134 115.986 -24.45 - 63 130.927 1479 6 0 35.8166 115.986 -25.85 - 63 131.407 1079 5 1 35.8851 115.987 -54.45 - 63 202.011 1479 5 0 35.8869 115.986 -55.85 - 63 108.539 1079 4 1 35.9239 115.963 -84.45 - 63 101.827 1479 4 0 35.9247 115.961 -85.85 - 63 103.569 1079 3 1 35.9388 115.931 -114.45 - 63 119.052 1478 3 0 35.9381 115.93 -115.85 - 63 103.152 1079 2 1 35.9222 115.908 -144.45 - 63 127.55 1478 2 0 35.921 115.907 -145.85 - 63 110.85 1079 1 1 35.8957 115.883 -174.45 - 63 133.748 1478 1 0 35.8951 115.882 -175.85 - 63 140.687 1079 0 1 35.8805 115.87 -204.45 - 63 80.1235 1478 0 0 35.8783 115.869 -205.85 - 63 39.0834 1517 2 0 15.0781 123.584 -146.25 - 63 155.397 1480 5 0 35.883 116.15 -55.9174 - 63 50.4839 1543 5 0 80.145 128.816 -56.25 -Number of digits in this event = 10 -Using G4ParticleGun ... -5.56932 LIN -proton -Event: 64 -Number of tracker hits in this event = 22 - 64 107.343 409 10 1 -98.1849 47.5453 95.55 - 64 135 1137 10 0 -98.1855 47.5446 94.15 - 64 116.304 409 9 1 -98.1953 47.5363 65.55 - 64 111.512 1137 9 0 -98.1972 47.5358 64.15 - 64 122.987 409 8 1 -98.2341 47.5237 35.55 - 64 98.415 1137 8 0 -98.2363 47.5231 34.15 - 64 131.993 409 7 1 -98.2828 47.5126 5.55 - 64 114.377 1137 7 0 -98.284 47.5129 4.15 - 64 132.41 409 6 1 -98.3107 47.5218 -24.45 - 64 168.38 1137 6 0 -98.312 47.5232 -25.85 - 64 124.955 409 5 1 -98.3446 47.556 -54.45 - 64 141.432 1137 5 0 -98.3465 47.5581 -55.85 - 64 97.4843 408 4 1 -98.3906 47.592 -84.45 - 64 108.133 1137 4 0 -98.3915 47.5932 -85.85 - 64 96.4236 408 3 1 -98.4116 47.621 -114.45 - 64 98.5995 1137 3 0 -98.413 47.6238 -115.85 - 64 136.295 408 2 1 -98.44 47.6808 -144.45 - 64 248.349 1138 2 0 -98.4414 47.6839 -145.85 - 64 98.6935 408 1 1 -98.4745 47.7487 -174.45 - 64 256.935 1138 1 0 -98.4772 47.7519 -175.85 - 64 122.783 408 0 1 -98.533 47.8198 -204.45 - 64 103.788 1138 0 0 -98.5355 47.8231 -205.85 +Event: 57 +Number of tracker hits in this event = 24 + 57 87.3161 655 11 1 -49.0215 57.8238 125.55 + 57 132.162 1188 11 0 -49.0217 57.8235 124.15 + 57 105.693 655 10 1 -49.0245 57.8193 95.55 + 57 189.02 1188 10 0 -49.025 57.8184 94.15 + 57 141.518 655 9 1 -49.0358 57.7989 65.55 + 57 105.695 1188 9 0 -49.0362 57.7984 64.15 + 57 141.258 655 8 1 -49.0458 57.789 35.55 + 57 117.074 1188 8 0 -49.0459 57.7885 34.15 + 57 116.923 655 7 1 -49.047 57.776 5.55 + 57 105.611 1188 7 0 -49.0471 57.776 4.15 + 57 138.031 654 6 1 -49.0544 57.7748 -24.45 + 57 118.532 1188 6 0 -49.0545 57.7743 -25.85 + 57 83.9138 654 5 1 -49.0574 57.7664 -54.45 + 57 114.81 1188 5 0 -49.0578 57.7657 -55.85 + 57 150.615 654 4 1 -49.0648 57.7507 -84.45 + 57 127.597 1188 4 0 -49.0648 57.7495 -85.85 + 57 121.497 654 3 1 -49.0677 57.7275 -114.45 + 57 125.903 1188 3 0 -49.0679 57.7274 -115.85 + 57 124.923 654 2 1 -49.0713 57.7282 -144.45 + 57 90.7562 1188 2 0 -49.0715 57.7285 -145.85 + 57 107.284 654 1 1 -49.073 57.737 -174.45 + 57 119.105 1188 1 0 -49.0741 57.7367 -175.85 + 57 110.228 654 0 1 -49.0942 57.7296 -204.45 + 57 140.906 1188 0 0 -49.0948 57.7287 -205.85 Number of digits in this event = 12 Using G4ParticleGun ... -8.63782 LIN +9.27177 LIN proton -Event: 65 -Number of tracker hits in this event = 24 - 65 104.876 370 10 1 -105.971 -22.924 95.55 - 65 99.3498 785 10 0 -105.97 -22.9238 94.15 - 65 132.475 370 9 1 -105.966 -22.9244 65.55 - 65 128.464 785 9 0 -105.965 -22.9245 64.15 - 65 137.809 371 8 1 -105.944 -22.9245 35.55 - 65 124.081 785 8 0 -105.943 -22.9255 34.15 - 65 133.495 371 7 1 -105.939 -22.9496 5.55 - 65 141.067 785 7 0 -105.94 -22.9504 4.15 - 65 114.133 370 6 1 -105.953 -22.9618 -24.45 - 65 115.294 785 6 0 -105.954 -22.9626 -25.85 - 65 234.819 370 5 1 -105.978 -22.9773 -54.45 - 65 105.625 785 5 0 -105.978 -22.9791 -55.85 - 65 105.227 370 4 1 -105.981 -23.0158 -84.45 - 65 105.574 785 4 0 -105.981 -23.0173 -85.85 - 65 118.896 370 3 1 -105.978 -23.0476 -114.45 - 65 100.785 785 3 0 -105.978 -23.0491 -115.85 - 65 202.942 370 2 1 -105.979 -23.0779 -144.45 - 65 113.176 784 2 0 -105.979 -23.0798 -145.85 - 65 140.534 370 1 1 -105.989 -23.1188 -174.45 - 65 116.463 784 1 0 -105.991 -23.122 -175.85 - 65 120.749 370 0 1 -106.021 -23.1872 -204.45 - 65 126.002 784 0 0 -106.022 -23.1916 -205.85 - 65 0.24151 705 2 1 -39.05 -30.6573 -144.77 - 65 81.9421 371 5 1 -105.95 -22.9457 -54.7545 -Number of digits in this event = 15 +Event: 58 +Number of tracker hits in this event = 28 + 58 347.055 1251 10 1 70.3664 -86.4147 95.55 + 58 118.727 468 10 0 70.3658 -86.414 94.15 + 58 114.007 1251 9 1 70.3525 -86.3995 65.55 + 58 134.77 468 9 0 70.3527 -86.3998 64.15 + 58 265.844 1251 8 1 70.3557 -86.4084 35.55 + 58 221.518 468 8 0 70.3559 -86.408 34.15 + 58 135.508 1251 7 1 70.36 -86.4022 5.55 + 58 266.944 468 7 0 70.3599 -86.4018 4.15 + 58 117.631 1251 6 1 70.356 -86.3955 -24.45 + 58 245.475 468 6 0 70.3561 -86.3952 -25.85 + 58 139.733 1251 5 1 70.361 -86.3899 -54.45 + 58 143.259 468 5 0 70.3606 -86.3908 -55.85 + 58 162.689 1251 4 1 70.3522 -86.4082 -84.45 + 58 104.896 468 4 0 70.3519 -86.4084 -85.85 + 58 126.721 1251 3 1 70.3447 -86.4128 -114.45 + 58 201.637 468 3 0 70.3432 -86.4132 -115.85 + 58 222.262 1251 2 1 70.3102 -86.4202 -144.45 + 58 102.538 468 2 0 70.3097 -86.4204 -145.85 + 58 285.892 1251 1 1 70.3005 -86.4228 -174.45 + 58 126.569 468 1 0 70.3005 -86.4233 -175.85 + 58 108.734 1251 0 1 70.3011 -86.4345 -204.45 + 58 106.525 468 0 0 70.3015 -86.4354 -205.85 + 58 70.9933 467 6 0 70.1716 -86.45 -26.182 + 58 170.362 1252 8 1 70.45 -86.3452 35.4969 + 58 133.397 442 10 0 73.9965 -91.615 93.75 + 58 220.774 1272 10 1 74.6399 -91.4259 95.15 + 58 35.1763 1273 10 1 74.65 -91.4172 95.1755 + 58 48.5196 1271 10 1 74.4494 -91.2661 95.4346 +Number of digits in this event = 19 Using G4ParticleGun ... -6.65681 LIN +3.22281 LIN proton -Event: 66 -Number of tracker hits in this event = 27 - 66 99.9003 1075 10 1 35.1527 -103.956 95.55 - 66 105.045 380 10 0 35.1526 -103.955 94.15 - 66 131.934 1075 9 1 35.1493 -103.95 65.55 - 66 122.832 380 9 0 35.1477 -103.951 64.15 - 66 143.436 1075 8 1 35.1139 -103.971 35.55 - 66 180.52 380 8 0 35.1122 -103.972 34.15 - 66 89.6299 1075 7 1 35.0779 -103.999 5.55 - 66 112.647 380 7 0 35.0769 -103.999 4.15 - 66 145.977 1075 6 1 35.0521 -103.991 -24.45 - 66 124.328 380 6 0 35.0516 -103.991 -25.85 - 66 151.347 1074 5 1 35.0358 -103.98 -54.45 - 66 110.821 380 5 0 35.0339 -103.98 -55.85 - 66 102.969 1074 4 1 34.9934 -103.964 -84.45 - 66 297.641 380 4 0 34.9922 -103.963 -85.85 - 66 174.268 1074 3 1 34.9686 -103.95 -114.45 - 66 87.3702 380 3 0 34.9683 -103.95 -115.85 - 66 97.1649 1074 2 1 34.9609 -103.949 -144.45 - 66 122.438 381 2 0 34.9621 -103.948 -145.85 - 66 117.617 1074 1 1 34.9846 -103.936 -174.45 - 66 123.802 381 1 0 34.9867 -103.936 -175.85 - 66 110.016 1074 0 1 35.0291 -103.921 -204.45 - 66 208.617 381 0 0 35.032 -103.92 -205.85 - 66 8.32183 367 3 0 36.9991 -106.738 -115.85 - 66 18.015 366 3 0 37.0007 -106.75 -115.856 - 66 89.2879 1077 3 1 35.5561 -107.919 -114.85 - 66 207.966 1074 8 1 35.05 -103.983 35.2773 - 66 64.8647 1073 8 1 34.85 -104.071 35.3127 -Number of digits in this event = 14 -Using G4ParticleGun ... -8.88968 LIN -proton -Event: 67 -Number of tracker hits in this event = 27 - 67 158.576 607 10 1 -58.4519 -83.8882 95.55 - 67 113.114 480 10 0 -58.4514 -83.8887 94.15 - 67 206.923 608 9 1 -58.443 -83.8981 65.55 - 67 114.719 480 9 0 -58.4435 -83.8994 64.15 - 67 103.249 607 8 1 -58.4543 -83.9258 35.55 - 67 159.423 480 8 0 -58.4549 -83.9277 34.15 - 67 127.99 607 7 1 -58.467 -83.9665 5.55 - 67 126.955 480 7 0 -58.4684 -83.9683 4.15 - 67 144.285 607 6 1 -58.4977 -84.0019 -24.45 - 67 115.929 480 6 0 -58.4987 -84.0035 -25.85 - 67 123.213 607 5 1 -58.5209 -84.0379 -54.45 - 67 85.3071 480 5 0 -58.5222 -84.0387 -55.85 - 67 135.391 607 4 1 -58.5464 -84.0565 -84.45 - 67 146.235 479 4 0 -58.5478 -84.0579 -85.85 - 67 428.594 607 3 1 -58.5786 -84.0882 -114.45 - 67 148.206 479 3 0 -58.5801 -84.0897 -115.85 - 67 111.343 607 2 1 -58.6152 -84.1222 -144.45 - 67 129.717 479 2 0 -58.6176 -84.1239 -145.85 - 67 177.288 606 1 1 -58.6648 -84.158 -174.45 - 67 104.438 479 1 0 -58.6672 -84.1592 -175.85 - 67 104.749 606 0 1 -58.713 -84.1792 -204.45 - 67 103.265 479 0 0 -58.7147 -84.1805 -205.85 - 67 80.9832 480 3 0 -58.5556 -84.05 -116.005 - 67 79.1493 481 3 0 -58.4484 -83.85 -116.14 - 67 160.602 847 3 0 31.2633 -10.4604 -116.25 - 67 107.83 1056 3 1 31.3905 -9.93921 -114.85 - 67 209.502 851 3 0 31.3638 -9.81172 -115.85 -Number of digits in this event = 16 -Using G4ParticleGun ... -5.7831 LIN -proton -Event: 68 -Number of tracker hits in this event = 24 - 68 99.7482 1298 10 1 79.7421 47.9542 95.55 - 68 379.418 1139 10 0 79.7434 47.9542 94.15 - 68 99.7866 1298 9 1 79.7615 47.9574 65.55 - 68 107.355 1139 9 0 79.763 47.9582 64.15 - 68 106.109 1298 8 1 79.7988 47.9671 35.55 - 68 110.508 1139 8 0 79.8007 47.9674 34.15 - 68 160.85 1298 7 1 79.8415 47.9785 5.55 - 68 115.371 1139 7 0 79.8437 47.9776 4.15 - 68 91.8681 1299 6 1 79.8916 47.9553 -24.45 - 68 112.83 1139 6 0 79.894 47.9546 -25.85 - 68 110.632 1299 5 1 79.9437 47.9366 -54.45 - 68 168.761 1139 5 0 79.9469 47.9345 -55.85 - 68 148.135 1299 4 1 80.0177 47.8902 -84.45 - 68 121.713 1139 4 0 80.0206 47.8879 -85.85 - 68 218.07 1300 3 1 80.0823 47.8408 -114.45 - 68 131.677 1138 3 0 80.0847 47.8384 -115.85 - 68 110.618 1300 2 1 80.1315 47.7897 -144.45 - 68 204.71 1138 2 0 80.1352 47.7878 -145.85 - 68 105.328 1300 1 1 80.2094 47.7496 -174.45 - 68 134.899 1138 1 0 80.2141 47.7479 -175.85 - 68 141.983 1301 0 1 80.3117 47.717 -204.45 - 68 119.188 1138 0 0 80.3164 47.715 -205.85 - 68 7.5311 1138 10 0 79.9191 47.85 93.7546 - 68 31.5441 1180 10 0 77.9199 56.145 93.75 +Event: 59 +Number of tracker hits in this event = 20 + 59 123.688 424 9 1 -95.2791 88.3591 65.55 + 59 109.141 1341 9 0 -95.2809 88.3586 64.15 + 59 125.095 424 8 1 -95.3187 88.341 35.55 + 59 109.672 1341 8 0 -95.3199 88.3385 34.15 + 59 105.343 424 7 1 -95.3405 88.2883 5.55 + 59 107.42 1341 7 0 -95.3404 88.2876 4.15 + 59 96.6445 424 6 1 -95.3401 88.2735 -24.45 + 59 104.067 1341 6 0 -95.3382 88.274 -25.85 + 59 249.269 424 5 1 -95.2966 88.2843 -54.45 + 59 134.537 1341 5 0 -95.2951 88.2852 -55.85 + 59 122.869 424 4 1 -95.2651 88.3082 -84.45 + 59 98.0959 1341 4 0 -95.2646 88.3106 -85.85 + 59 152.374 424 3 1 -95.2538 88.3646 -114.45 + 59 101.556 1341 3 0 -95.2538 88.3661 -115.85 + 59 110.378 424 2 1 -95.2602 88.3933 -144.45 + 59 121.621 1341 2 0 -95.2599 88.3967 -145.85 + 59 158.723 424 1 1 -95.2511 88.4576 -174.45 + 59 124.407 1342 1 0 -95.2499 88.4588 -175.85 + 59 112.713 424 0 1 -95.2265 88.4799 -204.45 + 59 158.423 1342 0 0 -95.2244 88.4813 -205.85 Number of digits in this event = 11 Using G4ParticleGun ... -7.03228 LIN +1.55081 LIN +proton +Event: 60 +Number of tracker hits in this event = 21 + 60 137.9 910 9 1 2.20627 117.881 65.55 + 60 113.765 1488 9 0 2.20748 117.884 64.15 + 60 135.907 910 8 1 2.22491 117.936 35.55 + 60 132.116 1488 8 0 2.22538 117.942 34.15 + 60 109.885 910 7 1 2.24828 118.056 5.55 + 60 135.193 1489 7 0 2.24716 118.06 4.15 + 60 145.351 910 6 1 2.22519 118.199 -24.45 + 60 119.784 1490 6 0 2.2189 118.205 -25.85 + 60 127.607 910 5 1 2.09276 118.327 -54.45 + 60 259.877 1490 5 0 2.08301 118.332 -55.85 + 60 115.977 909 4 1 1.87964 118.443 -84.45 + 60 123.895 1491 4 0 1.86885 118.445 -85.85 + 60 185.634 907 3 1 1.62539 118.47 -114.45 + 60 102.899 1491 3 0 1.61256 118.472 -115.85 + 60 106.855 906 2 1 1.35493 118.526 -144.45 + 60 141.274 1491 2 0 1.3402 118.528 -145.85 + 60 153.159 904 1 1 1.04736 118.576 -174.45 + 60 208.214 1492 1 0 1.03475 118.577 -175.85 + 60 126.419 903 0 1 0.770901 118.594 -204.45 + 60 101.931 1492 0 0 0.757086 118.592 -205.85 + 60 229.965 1485 6 0 2.92487 117.269 -25.85 +Number of digits in this event = 15 +Using G4ParticleGun ... +2.69126 LIN +proton +Event: 61 +Number of tracker hits in this event = 20 + 61 183.567 1576 8 1 135.457 34.5724 35.55 + 61 174.449 1072 8 0 135.457 34.5742 34.15 + 61 101.757 1576 7 1 135.45 34.6035 5.55 + 61 131.62 1072 7 0 135.449 34.6073 4.15 + 61 102.559 1576 6 1 135.436 34.6908 -24.45 + 61 127.317 1073 6 0 135.434 34.6935 -25.85 + 61 107.631 1576 5 1 135.41 34.7551 -54.45 + 61 99.7433 1073 5 0 135.411 34.7575 -55.85 + 61 100.628 1576 4 1 135.422 34.806 -84.45 + 61 256.515 1073 4 0 135.422 34.8058 -85.85 + 61 140.095 1576 3 1 135.419 34.8087 -114.45 + 61 217.181 1073 3 0 135.419 34.8053 -115.85 + 61 131.152 1576 2 1 135.413 34.7345 -144.45 + 61 138.301 1073 2 0 135.415 34.73 -145.85 + 61 114.801 1576 1 1 135.475 34.6391 -174.45 + 61 195.147 1072 1 0 135.477 34.6345 -175.85 + 61 106.351 1576 0 1 135.517 34.5463 -204.45 + 61 130.542 1072 0 0 135.518 34.5439 -205.85 + 61 20.9667 1071 1 0 135.555 34.45 -176.191 + 61 32.8537 1074 4 0 135.309 34.85 -86.0736 +Number of digits in this event = 12 +Using G4ParticleGun ... +1.24623 LIN +proton +Event: 62 +Number of tracker hits in this event = 19 + 62 216.685 1468 8 1 113.838 75.2802 35.55 + 62 175.831 1276 8 0 113.839 75.2812 34.15 + 62 281.293 1468 7 1 113.849 75.334 5.55 + 62 100.309 1276 7 0 113.846 75.3343 4.15 + 62 122.689 1468 6 1 113.784 75.3134 -24.45 + 62 143.76 1276 6 0 113.78 75.3106 -25.85 + 62 119.366 1467 5 1 113.694 75.2568 -54.45 + 62 49.1445 1276 5 0 113.689 75.2506 -55.85 + 62 66.8703 1275 5 0 113.689 75.25 -55.9796 + 62 115.416 1467 4 1 113.59 75.1133 -84.45 + 62 143.103 1275 4 0 113.581 75.1056 -85.85 + 62 115.861 1466 3 1 113.384 74.9315 -114.45 + 62 125.972 1274 3 0 113.371 74.9265 -115.85 + 62 147.079 1464 2 1 113.091 74.8117 -144.45 + 62 131.545 1273 2 0 113.075 74.8081 -145.85 + 62 184.927 1463 1 1 112.769 74.7615 -174.45 + 62 101.883 1273 1 0 112.755 74.7605 -175.85 + 62 160.711 1461 0 1 112.468 74.7404 -204.45 + 62 142.548 1273 0 0 112.454 74.7401 -205.85 +Number of digits in this event = 13 +Using G4ParticleGun ... +9.91978 LIN +proton +Event: 63 +Number of tracker hits in this event = 27 + 63 90.4182 816 10 1 -16.8163 109.359 95.55 + 63 111.044 1446 10 0 -16.8158 109.36 94.15 + 63 100.64 816 9 1 -16.8043 109.363 65.55 + 63 105.849 1446 9 0 -16.8041 109.364 64.15 + 63 175.55 816 8 1 -16.8003 109.376 35.55 + 63 114.315 1446 8 0 -16.7996 109.376 34.15 + 63 161.778 816 7 1 -16.785 109.383 5.55 + 63 120.475 1446 7 0 -16.784 109.382 4.15 + 63 199.549 816 6 1 -16.7615 109.361 -24.45 + 63 123.316 1446 6 0 -16.7603 109.36 -25.85 + 63 132.584 816 5 1 -16.7315 109.336 -54.45 + 63 180.935 1445 5 0 -16.7299 109.335 -55.85 + 63 114.586 816 4 1 -16.7018 109.313 -84.45 + 63 113.939 1445 4 0 -16.6996 109.312 -85.85 + 63 152.552 816 3 1 -16.6548 109.29 -114.45 + 63 155.508 1445 3 0 -16.6521 109.289 -115.85 + 63 132.816 817 2 1 -16.5976 109.264 -144.45 + 63 128.232 1445 2 0 -16.595 109.263 -145.85 + 63 239.937 817 1 1 -16.5397 109.232 -174.45 + 63 126.881 1445 1 0 -16.5367 109.231 -175.85 + 63 118.363 817 0 1 -16.4754 109.204 -204.45 + 63 113.581 1445 0 0 -16.4725 109.204 -205.85 + 63 5.30938 357 0 1 -108.55 157.461 -204.835 + 63 14.3702 374 0 1 -105.336 146.244 -204.514 + 63 20.1945 925 1 1 5.05 82.6089 -174.507 + 63 85.1504 924 1 1 5.05 82.6613 -174.484 + 63 1.95851 980 4 0 -90.6539 16.25 -86.0517 +Number of digits in this event = 17 +Using G4ParticleGun ... +7.49384 LIN +proton +Event: 64 +Number of tracker hits in this event = 28 + 64 137.407 638 10 1 -52.4239 81.695 95.55 + 64 102.372 1308 10 0 -52.4237 81.6957 94.15 + 64 108.442 638 9 1 -52.4169 81.713 65.55 + 64 94.3832 1308 9 0 -52.4161 81.7129 64.15 + 64 126.113 638 8 1 -52.3995 81.7126 35.55 + 64 134.761 1308 8 0 -52.3988 81.7127 34.15 + 64 112.47 638 7 1 -52.382 81.7121 5.55 + 64 116.978 1308 7 0 -52.3815 81.7119 4.15 + 64 132.235 638 6 1 -52.3746 81.7088 -24.45 + 64 124.891 1308 6 0 -52.374 81.7095 -25.85 + 64 385.364 638 5 1 -52.3625 81.7247 -54.45 + 64 113.7 1308 5 0 -52.3618 81.7255 -55.85 + 64 143.739 638 4 1 -52.3473 81.7423 -84.45 + 64 98.9822 1308 4 0 -52.3465 81.7436 -85.85 + 64 138.698 638 3 1 -52.3268 81.7676 -114.45 + 64 133.088 1308 3 0 -52.3253 81.7678 -115.85 + 64 134.1 638 2 1 -52.2918 81.7707 -144.45 + 64 125.039 1308 2 0 -52.2905 81.7711 -145.85 + 64 333.657 638 1 1 -52.2638 81.7843 -174.45 + 64 126.157 1308 1 0 -52.2631 81.7849 -175.85 + 64 123.557 638 0 1 -52.2544 81.7982 -204.45 + 64 111.785 1308 0 0 -52.254 81.7985 -205.85 + 64 18.8501 637 1 1 -52.45 81.6907 -174.711 + 64 249.757 639 5 1 -52.2499 81.738 -54.7056 + 64 236.789 640 5 1 -52.05 81.5326 -54.7189 + 64 190.416 1302 5 0 -53.0963 80.5987 -55.85 + 64 9.27223 1309 5 0 -53.3621 81.96 -55.85 + 64 45.1402 629 5 1 -54.2099 81.3609 -54.8498 +Number of digits in this event = 18 +Using G4ParticleGun ... +5.24347 LIN +proton +Event: 65 +Number of tracker hits in this event = 30 + 65 148.258 1202 11 1 60.4928 25.8229 125.55 + 65 136.218 1028 11 0 60.4927 25.8227 124.15 + 65 96.4923 1202 10 1 60.4931 25.8208 95.55 + 65 94.4545 1028 10 0 60.4941 25.8207 94.15 + 65 219.215 1202 9 1 60.5165 25.8181 65.55 + 65 153.242 1028 9 0 60.5187 25.8186 64.15 + 65 94.8472 1202 8 1 60.5622 25.8281 35.55 + 65 133.211 1028 8 0 60.5643 25.8289 34.15 + 65 148.174 1202 7 1 60.609 25.8438 5.55 + 65 120.848 1028 7 0 60.6114 25.8446 4.15 + 65 99.4491 1203 6 1 60.6539 25.8623 -24.45 + 65 17.6462 1029 6 0 60.655 25.8507 -25.85 + 65 101.392 1028 6 0 60.655 25.85 -25.9359 + 65 112.404 1203 5 1 60.6761 25.6087 -54.45 + 65 134.83 1027 5 0 60.6777 25.5972 -55.85 + 65 102.158 1203 4 1 60.7076 25.3633 -84.45 + 65 108.168 1026 4 0 60.7065 25.3505 -85.85 + 65 124.492 1203 3 1 60.682 25.0892 -114.45 + 65 277.088 1025 3 0 60.6801 25.0754 -115.85 + 65 328.629 1202 2 1 60.643 24.8096 -144.45 + 65 129.946 1023 2 0 60.6412 24.7969 -145.85 + 65 98.9164 1202 1 1 60.6056 24.5444 -174.45 + 65 241.353 1022 1 0 60.6037 24.5327 -175.85 + 65 116.174 1202 0 1 60.5666 24.2942 -204.45 + 65 109.905 1021 0 0 60.5626 24.2827 -205.85 + 65 121.085 1404 2 1 100.95 -47.2801 -144.601 + 65 182.411 1129 3 0 54.2071 45.8835 -116.25 + 65 3.54795 1024 3 0 60.6649 25.05 -116.048 + 65 369.61 1029 9 0 60.5039 25.85 64.0536 + 65 148.933 1201 9 1 60.45 26.052 65.3744 +Number of digits in this event = 20 +Using G4ParticleGun ... +6.20859 LIN +proton +Event: 66 +Number of tracker hits in this event = 18 + 66 114.773 1432 8 1 106.697 -98.0929 35.55 + 66 144.883 410 8 0 106.697 -98.0938 34.15 + 66 105.799 1432 7 1 106.689 -98.1119 5.55 + 66 90.7822 410 7 0 106.689 -98.1126 4.15 + 66 90.4787 1432 6 1 106.66 -98.0865 -24.45 + 66 174.15 410 6 0 106.659 -98.0851 -25.85 + 66 173.695 1432 5 1 106.627 -98.0569 -54.45 + 66 101.401 410 5 0 106.626 -98.0544 -55.85 + 66 116.922 1432 4 1 106.601 -97.9992 -84.45 + 66 122.165 410 4 0 106.601 -97.9946 -85.85 + 66 102.654 1432 3 1 106.602 -97.9019 -114.45 + 66 114.941 411 3 0 106.602 -97.8958 -115.85 + 66 149.302 1432 2 1 106.598 -97.7747 -144.45 + 66 108.973 411 2 0 106.599 -97.7691 -145.85 + 66 99.3577 1432 1 1 106.599 -97.654 -174.45 + 66 237.579 412 1 0 106.598 -97.6483 -175.85 + 66 109.939 1432 0 1 106.577 -97.5333 -204.45 + 66 110.41 413 0 0 106.575 -97.5268 -205.85 +Number of digits in this event = 7 +Using G4ParticleGun ... +7.13919 LIN +proton +Event: 67 +Number of tracker hits in this event = 21 + 67 118.642 1350 8 1 90.1578 -15.9364 35.55 + 67 106.388 820 8 0 90.1589 -15.9347 34.15 + 67 257.828 1350 7 1 90.1833 -15.8986 5.55 + 67 108.447 820 7 0 90.1844 -15.8964 4.15 + 67 259.881 1350 6 1 90.2013 -15.8483 -24.45 + 67 115.66 821 6 0 90.2013 -15.8461 -25.85 + 67 148.756 1350 5 1 90.2027 -15.7998 -54.45 + 67 152.556 821 5 0 90.2058 -15.7972 -55.85 + 67 123.012 1350 4 1 90.273 -15.7442 -84.45 + 67 186.89 821 4 0 90.2735 -15.743 -85.85 + 67 110.712 1350 3 1 90.2857 -15.7146 -114.45 + 67 112.309 821 3 0 90.2862 -15.7127 -115.85 + 67 105.088 1350 2 1 90.2947 -15.6738 -144.45 + 67 133.805 821 2 0 90.2956 -15.6717 -145.85 + 67 207.189 1350 1 1 90.3142 -15.6278 -174.45 + 67 209.952 822 1 0 90.3157 -15.6246 -175.85 + 67 129.773 1350 0 1 90.3426 -15.5592 -204.45 + 67 203.987 822 0 0 90.3445 -15.5561 -205.85 + 67 64.9616 668 6 0 60.8685 -46.2618 -26.1078 + 67 140.158 1182 3 1 56.603 -120.463 -114.833 + 67 92.9808 820 4 0 90.1682 -15.85 -85.9895 +Number of digits in this event = 15 +Using G4ParticleGun ... +8.74429 LIN +proton +Event: 68 +Number of tracker hits in this event = 53 + 68 146.3 1093 9 1 38.7315 110.986 65.55 + 68 291.785 1454 9 0 38.7318 110.985 64.15 + 68 109.884 1093 8 1 38.7377 110.967 35.55 + 68 114.216 1454 8 0 38.738 110.965 34.15 + 68 115.393 1093 7 1 38.7388 110.935 5.55 + 68 113.429 1453 7 0 38.7385 110.932 4.15 + 68 111.456 1093 6 1 38.7339 110.885 -24.45 + 68 115.862 1453 6 0 38.7332 110.882 -25.85 + 68 291.054 1093 5 1 38.7173 110.828 -54.45 + 68 109.485 1453 5 0 38.717 110.825 -55.85 + 68 142.836 1093 4 1 38.7081 110.785 -84.45 + 68 265.495 1453 4 0 38.7085 110.783 -85.85 + 68 218.6 1093 3 1 38.7175 110.732 -114.45 + 68 118.169 1452 3 0 38.7178 110.73 -115.85 + 68 205.524 1093 2 1 38.7254 110.691 -144.45 + 68 136.459 1452 2 0 38.727 110.689 -145.85 + 68 183.7 1093 1 1 38.7629 110.662 -174.45 + 68 120.613 1452 1 0 38.7646 110.661 -175.85 + 68 153.133 1093 0 1 38.8014 110.628 -204.45 + 68 179.995 1452 0 0 38.8025 110.627 -205.85 + 68 174.948 1451 0 0 38.8834 110.55 -206.088 + 68 139.056 1362 0 0 76.8659 92.5961 -206.25 + 68 207.256 1363 0 0 77.1344 92.75 -206.077 + 68 68.3838 1364 0 0 77.2282 92.9501 -206.049 + 68 17.0453 1450 0 0 38.8312 110.35 -206.213 + 68 37.7461 1065 0 0 25.866 33.1689 -206.25 + 68 68.3568 1064 0 0 25.854 33.0497 -206.205 + 68 73.1102 1063 0 0 25.8392 32.85 -206.139 + 68 66.2093 1062 0 0 25.8705 32.65 -206.023 + 68 94.4642 1061 0 0 25.87 32.45 -205.927 + 68 65.0332 1060 0 0 25.8799 32.25 -205.936 + 68 58.5391 1059 0 0 25.9733 32.05 -205.981 + 68 58.8463 1058 0 0 26.0232 31.85 -205.988 + 68 69.2845 1057 0 0 26.0772 31.65 -205.991 + 68 100.712 1056 0 0 26.0583 31.4499 -205.947 + 68 17.4655 1055 0 0 26.1166 31.25 -205.883 + 68 52.5338 1029 0 1 25.885 30.003 -204.85 + 68 417.079 1028 0 1 25.85 29.8785 -204.773 + 68 58.7918 1027 0 1 25.6498 29.5842 -204.527 + 68 63.6396 1092 1 1 38.65 110.621 -174.635 + 68 65.2934 1091 1 1 38.4499 110.606 -174.716 + 68 60.1848 1090 1 1 38.25 110.676 -174.792 + 68 76.8412 1089 1 1 38.0496 110.724 -174.813 + 68 123.882 1088 1 1 37.8496 110.812 -174.808 + 68 78.7049 1087 1 1 37.65 110.93 -174.751 + 68 64.9269 1086 1 1 37.45 111.097 -174.807 + 68 59.7428 1085 1 1 37.25 111.176 -174.774 + 68 68.8345 1084 1 1 37.05 111.264 -174.713 + 68 208.015 1458 1 0 36.0949 111.817 -175.85 + 68 114.67 1452 5 0 38.4393 110.73 -55.85 + 68 113.328 1076 4 1 35.4346 104.952 -84.45 + 68 21.3721 1425 4 0 35.3616 105.321 -85.85 + 68 114.896 1426 4 0 35.3607 105.35 -85.9458 +Number of digits in this event = 19 +Using G4ParticleGun ... +3.88542 LIN proton Event: 69 Number of tracker hits in this event = 24 - 69 99.1659 1540 8 1 128.258 -61.3434 35.55 - 69 117.161 593 8 0 128.257 -61.3427 34.15 - 69 95.0298 1540 7 1 128.253 -61.3292 5.55 - 69 159.405 593 7 0 128.253 -61.3273 4.15 - 69 119.77 1540 6 1 128.244 -61.294 -24.45 - 69 124.91 593 6 0 128.244 -61.2924 -25.85 - 69 151.031 1540 5 1 128.246 -61.2626 -54.45 - 69 115.275 593 5 0 128.246 -61.261 -55.85 - 69 213.643 1540 4 1 128.245 -61.231 -84.45 - 69 92.0416 594 4 0 128.245 -61.2303 -85.85 - 69 115.913 1540 3 1 128.243 -61.2153 -114.45 - 69 134.338 594 3 0 128.244 -61.2154 -115.85 - 69 126.619 1540 2 1 128.259 -61.2193 -144.45 - 69 128.634 594 2 0 128.261 -61.2185 -145.85 - 69 113.655 1540 1 1 128.298 -61.2034 -174.45 - 69 109.879 594 1 0 128.3 -61.2026 -175.85 - 69 119.241 1540 0 1 128.342 -61.1829 -204.45 - 69 138.793 594 0 0 128.347 -61.1908 -205.85 - 69 68.7735 1539 4 1 128.15 -61.3524 -84.5976 - 69 110.948 1538 4 1 127.95 -61.4228 -84.6609 - 69 68.7598 1537 4 1 127.75 -61.2748 -84.5846 - 69 80.1352 1536 4 1 127.55 -61.2792 -84.493 - 69 110.353 1535 4 1 127.35 -61.3372 -84.5137 - 69 16.7033 1534 4 1 127.15 -61.313 -84.4687 -Number of digits in this event = 9 -Using G4ParticleGun ... -4.40317 LIN -proton -Event: 70 -Number of tracker hits in this event = 24 - 70 134.369 739 10 1 -32.0796 89.9346 95.55 - 70 300.779 1349 10 0 -32.0783 89.9333 94.15 - 70 121.274 740 9 1 -32.0419 89.9097 65.55 - 70 108.031 1349 9 0 -32.0401 89.9083 64.15 - 70 126.557 740 8 1 -32.0019 89.8818 35.55 - 70 105.414 1349 8 0 -31.9998 89.8801 34.15 - 70 99.6837 740 7 1 -31.9609 89.8443 5.55 - 70 99.7141 1348 7 0 -31.9582 89.8406 4.15 - 70 207.648 740 6 1 -31.902 89.7619 -24.45 - 70 492.038 1348 6 0 -31.8992 89.7574 -25.85 - 70 133.674 741 5 1 -31.8348 89.6652 -54.45 - 70 126.636 1348 5 0 -31.8324 89.66 -55.85 - 70 101.749 741 4 1 -31.7808 89.5514 -84.45 - 70 129.935 1347 4 0 -31.7791 89.547 -85.85 - 70 134.756 741 3 1 -31.7442 89.46 -114.45 - 70 108.789 1347 3 0 -31.7437 89.4552 -115.85 - 70 171.491 741 2 1 -31.733 89.3631 -144.45 - 70 105.461 1346 2 0 -31.7331 89.3597 -145.85 - 70 134.836 741 1 1 -31.7443 89.288 -174.45 - 70 110.802 1346 1 0 -31.7449 89.2846 -175.85 - 70 115.803 741 0 1 -31.7548 89.2177 -204.45 - 70 105.666 1345 0 0 -31.7541 89.215 -205.85 - 70 17.2321 1347 6 0 -31.8679 89.65 -26.1053 - 70 20.5641 1349 6 0 -32.1149 89.85 -26.2074 -Number of digits in this event = 14 -Using G4ParticleGun ... -1.73406 LIN -proton -Event: 71 -Number of tracker hits in this event = 59 - 71 99.1233 810 11 1 -17.9785 -76.211 125.55 - 71 110.385 519 11 0 -17.9761 -76.2152 124.15 - 71 115.291 810 10 1 -17.9288 -76.3074 95.55 - 71 111.379 518 10 0 -17.9249 -76.3098 94.15 - 71 193.435 811 9 1 -17.8442 -76.3356 65.55 - 71 202.319 518 9 0 -17.8377 -76.336 64.15 - 71 129.096 811 8 1 -17.7219 -76.3295 35.55 - 71 118.321 518 8 0 -17.7183 -76.3289 34.15 - 71 227.17 811 7 1 -17.6529 -76.3168 5.55 - 71 139.714 518 7 0 -17.6519 -76.3162 4.15 - 71 153.521 812 6 1 -17.6281 -76.3019 -24.45 - 71 104.177 518 6 0 -17.6266 -76.3029 -25.85 - 71 110.402 812 5 1 -17.6016 -76.3248 -54.45 - 71 103.626 518 5 0 -17.6016 -76.3217 -55.85 - 71 142.261 812 4 1 -17.599 -76.2608 -84.45 - 71 108.641 518 4 0 -17.5978 -76.261 -85.85 - 71 119.498 812 3 1 -17.5692 -76.2622 -114.45 - 71 116.613 518 3 0 -17.5693 -76.2659 -115.85 - 71 476.472 812 2 1 -17.5716 -76.3305 -144.45 - 71 222.541 518 2 0 -17.5678 -76.3342 -145.85 - 71 103.842 812 1 1 -17.4837 -76.3924 -174.45 - 71 96.7294 518 1 0 -17.4788 -76.3935 -175.85 - 71 110.274 813 0 1 -17.4008 -76.4102 -204.45 - 71 91.2436 518 0 0 -17.4003 -76.4096 -205.85 - 71 359.776 530 0 0 -17.3154 -73.8955 -206.25 - 71 180.77 814 0 1 -17.0869 -73.9232 -204.85 - 71 135.565 815 0 1 -17.05 -73.9277 -204.627 - 71 425.573 527 1 0 -18.4339 -74.5134 -176.25 - 71 538.91 807 1 1 -18.5126 -74.523 -174.85 - 71 363.748 503 2 0 -17.6163 -79.274 -146.25 - 71 375.768 450 3 0 -14.2638 -89.9319 -116.25 - 71 482.898 829 3 1 -14.0983 -90.4616 -114.85 - 71 162.291 400 4 0 -9.99767 -100.113 -86.25 - 71 390.485 399 4 0 -9.98176 -100.15 -86.1395 - 71 543.77 851 4 1 -9.76399 -100.587 -84.85 - 71 218.802 361 5 0 -3.95153 -107.916 -56.25 - 71 460.501 360 5 0 -3.92413 -107.95 -56.1159 - 71 731.518 881 5 1 -3.73697 -108.225 -54.85 - 71 915.296 365 6 0 -6.90664 -107.028 -26.25 - 71 1272.78 864 6 1 -7.13353 -106.987 -24.85 - 71 37.182 865 6 1 -6.97984 -107.16 -24.45 - 71 68.6166 866 6 1 -6.84985 -107.187 -24.4774 - 71 58.6564 867 6 1 -6.65 -107.23 -24.5201 - 71 53.986 868 6 1 -6.45 -107.275 -24.566 - 71 63.9631 869 6 1 -6.25 -107.32 -24.6132 - 71 74.1979 870 6 1 -6.05 -107.366 -24.6631 - 71 69.1858 871 6 1 -5.85 -107.413 -24.7185 - 71 86.2968 872 6 1 -5.65 -107.455 -24.7792 - 71 6.06683 873 6 1 -5.4495 -107.497 -24.8422 - 71 7.92892 360 6 0 -2.31297 -108.144 -25.85 - 71 309.388 359 6 0 -2.28324 -108.15 -25.8591 - 71 235.638 358 6 0 -1.27979 -108.35 -26.1311 - 71 158.151 828 3 1 -14.3249 -90.3635 -114.85 - 71 14.3732 448 3 0 -14.1707 -90.5434 -115.85 - 71 69.1599 447 3 0 -14.1689 -90.5501 -115.869 - 71 4.28132 812 7 1 -17.65 -76.3372 5.16243 - 71 201.266 514 7 0 -17.4834 -77.1198 4.15 - 71 151.622 515 7 0 -17.375 -77.05 3.90625 - 71 65.3374 810 9 1 -17.8977 -76.0781 65.55 -Number of digits in this event = 34 -Using G4ParticleGun ... -3.78455 LIN -proton -Event: 72 -Number of tracker hits in this event = 32 - 72 114.041 1332 10 1 86.6074 29.6386 95.55 - 72 105.87 1047 10 0 86.607 29.6393 94.15 - 72 123.854 1332 9 1 86.6015 29.6563 65.55 - 72 166.045 1048 9 0 86.6032 29.6586 64.15 - 72 144.145 1332 8 1 86.6414 29.7118 35.55 - 72 154.226 1048 8 0 86.6418 29.7156 34.15 - 72 102.419 1332 7 1 86.6473 29.7904 5.55 - 72 119.459 1048 7 0 86.646 29.7947 4.15 - 72 108.392 1332 6 1 86.621 29.8774 -24.45 - 72 176.6 1049 6 0 86.6194 29.8801 -25.85 - 72 120.743 1332 5 1 86.5881 29.9363 -54.45 - 72 119.237 1049 5 0 86.5854 29.9387 -55.85 - 72 140.405 1332 4 1 86.5357 29.9818 -84.45 - 72 110.478 1049 4 0 86.5337 29.9843 -85.85 - 72 113.531 1332 3 1 86.4948 30.0434 -114.45 - 72 142.039 1049 3 0 86.491 30.0463 -115.85 - 72 101.891 1331 2 1 86.417 30.104 -144.45 - 72 125.695 1050 2 0 86.4153 30.1052 -145.85 - 72 111.516 1331 1 1 86.3757 30.1321 -174.45 - 72 162.914 1050 1 0 86.3745 30.135 -175.85 - 72 105.223 1331 0 1 86.3465 30.2013 -204.45 - 72 137.123 1050 0 0 86.3465 30.2046 -205.85 - 72 79.139 1049 1 0 86.3618 30.05 -175.988 - 72 67.6519 1048 1 0 86.4276 29.8498 -176.057 - 72 59.6279 1047 1 0 86.4205 29.6498 -176.085 - 72 106.143 923 1 0 49.4412 4.79795 -176.25 - 72 124.732 848 1 0 47.0187 -10.3846 -176.25 - 72 105.219 968 6 0 101.492 13.8354 -26.25 - 72 94.6731 967 6 0 101.667 13.6497 -26.1182 - 72 120.336 966 6 0 101.934 13.45 -25.9623 - 72 59.5538 965 6 0 102.125 13.25 -25.9201 - 72 151.182 964 6 0 102.249 13.05 -25.9746 + 69 98.5614 1443 10 1 108.944 36.0133 95.55 + 69 122.76 1079 10 0 108.943 36.0119 94.15 + 69 152.378 1443 9 1 108.917 35.9788 65.55 + 69 214.6 1079 9 0 108.915 35.9779 64.15 + 69 108.643 1443 8 1 108.882 35.9554 35.55 + 69 278.648 1079 8 0 108.881 35.956 34.15 + 69 93.6077 1443 7 1 108.857 35.9697 5.55 + 69 99.7585 1079 7 0 108.854 35.9721 4.15 + 69 114.183 1443 6 1 108.79 36.0179 -24.45 + 69 166.496 1079 6 0 108.786 36.0199 -25.85 + 69 154.489 1442 5 1 108.701 36.0651 -54.45 + 69 159.529 1080 5 0 108.697 36.0651 -55.85 + 69 269.044 1442 4 1 108.612 36.0554 -84.45 + 69 110.48 1080 4 0 108.607 36.0537 -85.85 + 69 107.418 1441 3 1 108.495 36.0187 -114.45 + 69 149.934 1079 3 0 108.49 36.0219 -115.85 + 69 102.753 1441 2 1 108.381 36.0807 -144.45 + 69 113.357 1080 2 0 108.377 36.0843 -145.85 + 69 299.363 1440 1 1 108.304 36.1592 -174.45 + 69 106.403 1080 1 0 108.301 36.1629 -175.85 + 69 94.1242 1440 0 1 108.232 36.2417 -204.45 + 69 125.712 1080 0 0 108.23 36.2438 -205.85 + 69 293.415 1077 1 0 108.189 35.6234 -175.85 + 69 311.193 1076 1 0 108.71 35.4497 -176.128 Number of digits in this event = 15 Using G4ParticleGun ... -1.17337 LIN +8.92214 LIN +proton +Event: 70 +Number of tracker hits in this event = 78 + 70 113.104 1299 11 1 79.9515 -13.3732 125.55 + 70 100.499 833 11 0 79.951 -13.3732 124.15 + 70 129.62 1299 10 1 79.94 -13.3716 95.55 + 70 118.859 833 10 0 79.939 -13.3724 94.15 + 70 106.175 1299 9 1 79.9169 -13.3862 65.55 + 70 114.578 833 9 0 79.916 -13.3875 64.15 + 70 163.713 1299 8 1 79.896 -13.4131 35.55 + 70 232.232 833 8 0 79.8948 -13.4144 34.15 + 70 98.4857 1299 7 1 79.8709 -13.4392 5.55 + 70 143.716 833 7 0 79.8692 -13.4406 4.15 + 70 103.332 1298 6 1 79.838 -13.4687 -24.45 + 70 108.333 832 6 0 79.8367 -13.47 -25.85 + 70 160.054 1298 5 1 79.8092 -13.494 -54.45 + 70 100.292 832 5 0 79.8072 -13.4945 -55.85 + 70 109.37 1298 4 1 79.7661 -13.5087 -84.45 + 70 91.1039 832 4 0 79.7638 -13.5094 -85.85 + 70 98.6696 1298 3 1 79.7197 -13.5213 -114.45 + 70 134.927 832 3 0 79.7179 -13.5213 -115.85 + 70 237.04 1298 2 1 79.6808 -13.5223 -144.45 + 70 171.206 832 2 0 79.679 -13.5226 -145.85 + 70 104.213 1297 1 1 79.6404 -13.53 -174.45 + 70 110.164 832 1 0 79.6393 -13.5303 -175.85 + 70 120.868 1297 0 1 79.6196 -13.5362 -204.45 + 70 111.701 832 0 0 79.6192 -13.5362 -205.85 + 70 5.86637 552 1 0 25.3047 -69.6366 -176.25 + 70 256.031 551 1 0 25.2964 -69.6501 -176.239 + 70 20.1455 792 0 0 128.029 -21.464 -206.25 + 70 190.39 451 5 0 -10.0917 -89.6962 -56.25 + 70 161.215 450 5 0 -10.297 -89.8502 -56.1711 + 70 9.14681 1472 5 0 -36.238 114.734 -56.25 + 70 137.339 1473 5 0 -36.2494 114.75 -56.2158 + 70 204.827 716 5 1 -36.6533 115.387 -54.85 + 70 21.3502 1774 6 0 -6.07002 175.099 -26.25 + 70 61.6769 1775 6 0 -6.04116 175.15 -26.2231 + 70 131.209 1776 6 0 -5.96311 175.35 -26.0928 + 70 23.6157 1777 6 0 -5.89321 175.55 -25.9046 + 70 120.478 871 6 1 -5.75352 176.783 -24.8499 + 70 73.8868 872 6 1 -5.64993 177.071 -24.6128 + 70 43.8535 1510 5 0 -37.5851 122.25 -56.25 + 70 141.02 1511 5 0 -37.6518 122.35 -56.1107 + 70 107.669 708 5 1 -38.2711 123.091 -54.8494 + 70 32.1761 707 5 1 -38.45 123.27 -54.5333 + 70 420.508 1528 6 0 -115.61 125.868 -26.2499 + 70 34.0401 1529 6 0 -116.297 125.95 -25.9113 + 70 46.8975 310 6 1 -117.953 126.373 -24.85 + 70 63.8547 309 6 1 -118.15 126.389 -24.7743 + 70 135.773 308 6 1 -118.35 126.402 -24.7184 + 70 52.2654 307 6 1 -118.55 126.398 -24.6577 + 70 48.8464 306 6 1 -118.75 126.382 -24.6079 + 70 50.7856 305 6 1 -118.95 126.348 -24.5466 + 70 46.8133 304 6 1 -119.15 126.314 -24.4881 + 70 107.997 1429 7 0 -164.17 106.138 3.75008 + 70 376.201 1428 7 0 -164.555 105.95 3.91342 + 70 22.3007 38 7 1 -172.494 105.413 5.15 + 70 60.9891 37 7 1 -172.55 105.41 5.15769 + 70 69.1051 36 7 1 -172.75 105.389 5.18903 + 70 70.4519 35 7 1 -172.95 105.384 5.21654 + 70 54.1429 34 7 1 -173.15 105.385 5.25679 + 70 46.0796 33 7 1 -173.35 105.4 5.30902 + 70 81.7385 32 7 1 -173.55 105.415 5.34376 + 70 76.5864 31 7 1 -173.75 105.442 5.36582 + 70 53.3174 30 7 1 -173.95 105.453 5.39914 + 70 67.1958 29 7 1 -174.15 105.435 5.4056 + 70 57.9459 28 7 1 -174.351 105.427 5.42268 + 70 47.9849 27 7 1 -174.551 105.428 5.44517 + 70 55.8671 26 7 1 -174.75 105.419 5.46887 + 70 47.1451 25 7 1 -174.95 105.42 5.51502 + 70 154.369 1469 8 0 -169.519 114.039 33.75 + 70 214.253 1470 8 0 -169.464 114.15 34.0551 + 70 188.975 54 8 1 -169.247 114.297 35.15 + 70 113.772 53 8 1 -169.35 114.137 35.4637 + 70 76.0052 52 8 1 -169.55 114.002 35.3441 + 70 115.745 1427 7 0 -165.397 105.75 4.08932 + 70 23.0316 1299 2 1 79.85 -13.2072 -144.798 + 70 2.77731 837 2 0 80.1875 -12.4581 -145.85 + 70 123.665 838 2 0 80.1914 -12.45 -145.861 + 70 59.3354 839 2 0 80.2931 -12.2498 -146.09 + 70 35.3031 1429 2 0 160.914 106.046 -146.25 +Number of digits in this event = 28 +Using G4ParticleGun ... +1.94231 LIN +proton +Event: 71 +Number of tracker hits in this event = 22 + 71 111.183 1331 10 1 86.4003 45.4454 95.55 + 71 109.052 1126 10 0 86.3978 45.4464 94.15 + 71 125.186 1331 9 1 86.3565 45.4724 65.55 + 71 114.105 1127 9 0 86.3559 45.4732 64.15 + 71 117.321 1331 8 1 86.341 45.4859 35.55 + 71 148.477 1127 8 0 86.3402 45.4877 34.15 + 71 141.109 1331 7 1 86.3269 45.5278 5.55 + 71 270.32 1127 7 0 86.3232 45.5331 4.15 + 71 93.6583 1330 6 1 86.238 45.6507 -24.45 + 71 113.823 1128 6 0 86.2359 45.6538 -25.85 + 71 107.777 1330 5 1 86.1997 45.7185 -54.45 + 71 137.43 1128 5 0 86.1955 45.7228 -55.85 + 71 128.119 1330 4 1 86.108 45.8108 -84.45 + 71 105.212 1128 4 0 86.104 45.8141 -85.85 + 71 110.675 1329 3 1 86.0179 45.8858 -114.45 + 71 117.043 1129 3 0 86.0157 45.8873 -115.85 + 71 113.206 1329 2 1 85.967 45.9197 -144.45 + 71 93.9145 1129 2 0 85.9636 45.9204 -145.85 + 71 120.302 1329 1 1 85.8931 45.9511 -174.45 + 71 112.969 1129 1 0 85.8897 45.9523 -175.85 + 71 186.323 1328 0 1 85.8194 45.9838 -204.45 + 71 104.268 1129 0 0 85.8108 45.9884 -205.85 +Number of digits in this event = 9 +Using G4ParticleGun ... +5.06418 LIN +proton +Event: 72 +Number of tracker hits in this event = 31 + 72 167.789 222 8 1 -135.574 28.2964 35.55 + 72 107.747 1041 8 0 -135.573 28.2971 34.15 + 72 118.658 223 7 1 -135.541 28.3149 5.55 + 72 103.506 1041 7 0 -135.539 28.3163 4.15 + 72 97.3108 223 6 1 -135.515 28.3422 -24.45 + 72 185.826 1041 6 0 -135.512 28.3433 -25.85 + 72 108.834 223 5 1 -135.454 28.3696 -54.45 + 72 108.08 1041 5 0 -135.451 28.3704 -55.85 + 72 95.2941 223 4 1 -135.38 28.391 -84.45 + 72 136.95 1041 4 0 -135.377 28.391 -85.85 + 72 108.143 224 3 1 -135.319 28.3843 -114.45 + 72 105.355 1041 3 0 -135.316 28.3839 -115.85 + 72 295.439 224 2 1 -135.249 28.3793 -144.45 + 72 157.419 1041 2 0 -135.247 28.3801 -145.85 + 72 106.972 224 1 1 -135.195 28.4031 -174.45 + 72 193.788 1041 1 0 -135.194 28.4043 -175.85 + 72 137.5 224 0 1 -135.168 28.4299 -204.45 + 72 116.519 1041 0 0 -135.167 28.4316 -205.85 + 72 11.6124 575 2 1 -64.9827 135.013 -144.45 + 72 65.5226 686 0 0 -135.378 -42.65 -205.953 + 72 4.32073 813 9 1 -17.4381 -155.381 65.15 + 72 245.801 814 9 1 -17.2498 -155.545 65.5357 + 72 1.64892 218 0 1 -136.542 -43.3807 -204.85 + 72 433.273 217 0 1 -136.55 -43.3842 -204.843 + 72 144.726 709 0 1 -38.2485 9.21177 -204.45 + 72 61.0194 949 0 0 -38.2929 9.97674 -205.85 + 72 326.217 950 0 0 -38.1779 10.05 -205.944 + 72 17.291 951 0 0 -38.0357 10.25 -206.234 + 72 43.349 986 0 0 -20.0801 17.313 -206.25 + 72 173.269 1505 3 1 121.222 105.131 -114.45 + 72 16.343 223 2 1 -135.35 28.4147 -144.595 +Number of digits in this event = 16 +Using G4ParticleGun ... +1.05427 LIN proton Event: 73 -Number of tracker hits in this event = 29 - 73 111.293 836 11 1 -12.7602 65.2089 125.55 - 73 581.704 1225 11 0 -12.7627 65.2121 124.15 - 73 139.27 838 10 1 -12.3619 63.0222 95.55 - 73 111.169 1214 10 0 -12.3403 62.9154 94.15 - 73 109.599 840 9 1 -11.8883 60.7408 65.55 - 73 158.569 1202 9 0 -11.8635 60.6296 64.15 - 73 128.78 843 8 1 -11.3445 58.3374 35.55 - 73 117.105 1190 8 0 -11.3214 58.2209 34.15 - 73 144.691 846 7 1 -10.8438 55.8382 5.55 - 73 208.077 1178 7 0 -10.8197 55.7213 4.15 - 73 118.819 848 6 1 -10.3274 53.3351 -24.45 - 73 118.664 1165 6 0 -10.3014 53.2191 -25.85 - 73 132.036 851 5 1 -9.76363 50.8688 -54.45 - 73 142.812 1153 5 0 -9.73453 50.7517 -55.85 - 73 106.727 854 4 1 -9.13335 48.3633 -84.45 - 73 138.537 1140 4 0 -9.10103 48.2496 -85.85 - 73 134.675 858 3 1 -8.43038 45.9441 -114.45 - 73 108.917 1128 3 0 -8.39907 45.8308 -115.85 - 73 161.174 861 2 1 -7.75284 43.5145 -144.45 - 73 182.283 1116 2 0 -7.71916 43.3961 -145.85 - 73 159.127 865 1 1 -7.03547 40.9921 -174.45 - 73 102.622 1104 1 0 -7.00065 40.8788 -175.85 - 73 11.1284 1103 1 0 -6.99176 40.85 -176.206 - 73 209.38 868 0 1 -6.2737 38.5736 -204.45 - 73 51.2324 1092 0 0 -6.23983 38.4616 -205.85 - 73 90.2467 1091 0 0 -6.23633 38.45 -205.995 - 73 7.34806 669 2 0 71.5666 -46.05 -146.081 - 73 49.4863 840 0 0 -29.0714 -11.8813 -206.069 - 73 98.5323 869 0 1 -6.24989 38.5127 -204.639 -Number of digits in this event = 17 +Number of tracker hits in this event = 23 + 73 199.419 1561 9 1 132.431 20.3275 65.55 + 73 262.1 1001 9 0 132.429 20.3308 64.15 + 73 211.973 1561 8 1 132.391 20.406 35.55 + 73 116.03 1001 8 0 132.389 20.4081 34.15 + 73 172.987 1560 7 1 132.347 20.4383 5.55 + 73 139.847 1001 7 0 132.346 20.4378 4.15 + 73 130.763 1560 6 1 132.325 20.426 -24.45 + 73 144.736 1001 6 0 132.325 20.4315 -25.85 + 73 472.013 1560 5 1 132.334 20.551 -54.45 + 73 115.246 1002 5 0 132.325 20.5566 -55.85 + 73 130.402 1560 4 1 132.155 20.6843 -84.45 + 73 105.229 1003 4 0 132.148 20.6924 -85.85 + 73 138.168 1559 3 1 132.011 20.8517 -114.45 + 73 150.21 1004 3 0 132.015 20.8562 -115.85 + 73 90.847 1559 2 1 132.149 20.924 -144.45 + 73 85.0454 1560 2 1 132.15 20.9244 -144.69 + 73 123.991 1004 2 0 132.154 20.9269 -145.85 + 73 131.994 1560 1 1 132.262 21.0012 -174.45 + 73 111.291 1004 1 0 132.272 21.0045 -175.85 + 73 153.553 1561 0 1 132.483 21.0611 -204.45 + 73 159.006 1005 0 0 132.491 21.0635 -205.85 + 73 73.0398 1560 8 1 132.35 20.3879 35.5035 + 73 27.6775 1000 9 0 132.443 20.2499 63.8581 +Number of digits in this event = 16 Using G4ParticleGun ... -1.30057 LIN +8.38392 LIN proton Event: 74 Number of tracker hits in this event = 27 - 74 115.273 789 7 1 -22.2377 -146.863 5.55 - 74 311.082 166 7 0 -22.2435 -146.865 4.15 - 74 121.821 788 6 1 -22.3753 -146.909 -24.45 - 74 114.905 166 6 0 -22.383 -146.909 -25.85 - 74 154.974 787 5 1 -22.5283 -146.915 -54.45 - 74 185.866 166 5 0 -22.5406 -146.917 -55.85 - 74 159.392 786 4 1 -22.803 -146.936 -84.45 - 74 116.9 166 4 0 -22.8245 -146.943 -85.85 - 74 146.045 783 3 1 -23.2593 -147.101 -114.45 - 74 210.61 165 3 0 -23.2841 -147.1 -115.85 - 74 140.67 781 2 1 -23.7977 -147.085 -144.45 - 74 150.319 165 2 0 -23.8242 -147.086 -145.85 - 74 118.589 778 1 1 -24.3756 -147.128 -174.45 - 74 112.161 165 1 0 -24.4015 -147.126 -175.85 - 74 163.65 775 0 1 -24.9178 -147.09 -204.45 - 74 262.878 165 0 0 -24.9452 -147.086 -205.85 - 74 158.297 776 0 1 -24.85 -147.122 -204.515 - 74 136.176 163 0 0 -24.3081 -147.493 -205.85 - 74 31.4926 162 0 0 -24.2242 -147.55 -205.981 - 74 76.811 164 0 0 -24.0471 -147.35 -206.169 - 74 49.0565 347 0 0 24.5065 -110.65 -206.25 - 74 135.315 348 0 0 24.6108 -110.55 -206.134 - 74 17.0026 1024 0 1 25.0331 -110.285 -204.85 - 74 279.359 1025 0 1 25.0503 -110.279 -204.806 - 74 124.255 1026 0 1 25.2502 -110.075 -204.711 - 74 16.078 164 3 0 -23.1503 -147.15 -115.868 - 74 223.27 784 3 1 -23.2477 -145.616 -114.85 -Number of digits in this event = 18 + 74 141.324 838 11 1 -12.4065 36.759 125.55 + 74 105.575 1083 11 0 -12.4069 36.7587 124.15 + 74 113.42 838 10 1 -12.4163 36.7524 95.55 + 74 104.682 1083 10 0 -12.4171 36.7525 94.15 + 74 134.26 838 9 1 -12.4336 36.7528 65.55 + 74 190.405 1083 9 0 -12.4356 36.7529 64.15 + 74 204.889 837 8 1 -12.4772 36.7531 35.55 + 74 99.2167 1083 8 0 -12.4789 36.7539 34.15 + 74 94.3592 837 7 1 -12.5151 36.7705 5.55 + 74 117.973 1083 7 0 -12.5163 36.77 4.15 + 74 109.095 837 6 1 -12.5383 36.7548 -24.45 + 74 138.487 1083 6 0 -12.5394 36.755 -25.85 + 74 214.584 837 5 1 -12.5616 36.7575 -54.45 + 74 117.312 1083 5 0 -12.5642 36.7581 -55.85 + 74 103.324 837 4 1 -12.6208 36.7738 -84.45 + 74 131.887 1083 4 0 -12.6242 36.7751 -85.85 + 74 104.191 836 3 1 -12.693 36.8015 -114.45 + 74 107.301 1083 3 0 -12.6987 36.805 -115.85 + 74 144.394 836 2 1 -12.8129 36.872 -144.45 + 74 223 1084 2 0 -12.8195 36.8748 -145.85 + 74 100.2 835 1 1 -12.9554 36.9333 -174.45 + 74 133.483 1084 1 0 -12.9617 36.9371 -175.85 + 74 229.884 834 0 1 -13.0901 37.0146 -204.45 + 74 110.928 1084 0 0 -13.0968 37.0181 -205.85 + 74 31.3984 836 5 1 -12.6501 36.8486 -54.7542 + 74 33.1833 1085 5 0 -13.074 37.2209 -55.8502 + 74 114.626 1086 5 0 -13.111 37.25 -55.9233 +Number of digits in this event = 14 Using G4ParticleGun ... -8.46428 LIN +3.66331 LIN proton Event: 75 -Number of tracker hits in this event = 37 - 75 122.985 1179 11 1 55.8503 49.6077 125.55 - 75 118.298 1147 11 0 55.8493 49.608 124.15 - 75 111.308 1178 10 1 55.8291 49.6129 95.55 - 75 123.677 1147 10 0 55.8266 49.6126 94.15 - 75 142.896 1178 9 1 55.7822 49.6089 65.55 - 75 144.426 1147 9 0 55.7803 49.6079 64.15 - 75 117.539 1178 8 1 55.7417 49.5907 35.55 - 75 141.019 1147 8 0 55.7394 49.5893 34.15 - 75 128.357 1178 7 1 55.6933 49.5595 5.55 - 75 87.636 1147 7 0 55.6901 49.5573 4.15 - 75 115.096 1177 6 1 55.6231 49.5139 -24.45 - 75 129.944 1147 6 0 55.6195 49.5112 -25.85 - 75 191.086 1177 5 1 55.546 49.4587 -54.45 - 75 165.919 1147 5 0 55.5417 49.4551 -55.85 - 75 114.994 1177 4 1 55.4545 49.3816 -84.45 - 75 124.166 1146 4 0 55.4507 49.3795 -85.85 - 75 137.688 1176 3 1 55.3726 49.334 -114.45 - 75 108.331 1146 3 0 55.3693 49.3324 -115.85 - 75 127.917 1176 2 1 55.3017 49.3038 -144.45 - 75 113.443 1146 2 0 55.2977 49.3023 -145.85 - 75 159.784 1175 1 1 55.2411 49.3571 -174.45 - 75 134.897 1176 1 1 55.25 49.3909 -174.526 - 75 41.6658 1149 1 0 55.406 49.9832 -175.85 - 75 119.609 1150 1 0 55.4236 50.05 -175.999 - 75 119.686 1193 0 1 58.7847 62.8862 -204.45 - 75 102.312 1217 0 0 58.9551 63.5236 -205.85 - 75 33.4915 1218 0 0 58.9889 63.65 -206.127 - 75 94.4148 1177 1 1 55.45 49.1634 -174.544 - 75 21.7827 1178 1 1 55.65 49.0676 -174.79 - 75 1.16464 1143 1 0 56.5151 48.6524 -175.85 - 75 143.782 1142 1 0 56.52 48.65 -175.856 - 75 65.3998 1299 0 1 79.8709 37.396 -204.45 - 75 94.807 1300 0 1 80.05 37.3104 -204.662 - 75 185.854 1083 0 0 81.0519 36.8318 -205.85 - 75 143.143 1144 1 0 54.8839 49.0053 -175.85 - 75 128.529 1144 0 1 48.9518 44.1636 -204.45 - 75 100.683 1119 0 0 48.6594 43.9332 -205.85 -Number of digits in this event = 20 +Number of tracker hits in this event = 19 + 75 102.936 1313 8 1 82.7605 115.129 35.55 + 75 147.385 1474 8 0 82.7614 115.129 34.15 + 75 111.284 1313 7 1 82.7755 115.11 5.55 + 75 166.224 1474 7 0 82.7808 115.108 4.15 + 75 120.167 1314 6 1 82.8848 115.057 -24.45 + 75 103.36 1474 6 0 82.892 115.053 -25.85 + 75 129.932 1314 5 1 83.0412 114.976 -54.45 + 75 134.362 1474 5 0 83.0491 114.971 -55.85 + 75 95.1332 1315 4 1 83.212 114.867 -84.45 + 75 102.077 1473 4 0 83.2191 114.864 -85.85 + 75 144.11 1316 3 1 83.366 114.792 -114.45 + 75 108.114 1473 3 0 83.3719 114.789 -115.85 + 75 136.919 1317 2 1 83.4906 114.732 -144.45 + 75 119.994 1472 2 0 83.4955 114.728 -145.85 + 75 108.683 1317 1 1 83.6 114.646 -174.45 + 75 113.483 1472 1 0 83.6054 114.642 -175.85 + 75 101.354 1318 0 1 83.7214 114.554 -204.45 + 75 260.526 1472 0 0 83.7298 114.552 -205.85 + 75 14.0584 1475 7 0 82.8474 115.15 3.79253 +Number of digits in this event = 9 Using G4ParticleGun ... -5.07907 LIN +6.63037 LIN proton Event: 76 -Number of tracker hits in this event = 267 - 76 18.2096 1497 9 0 25.5496 119.567 64.0965 - 76 1183.84 1010 9 1 22.095 124.3 65.55 - 76 207.617 1011 9 1 22.25 124.301 65.4277 - 76 55.2414 1012 9 1 22.45 124.301 65.2701 - 76 317.325 1520 9 0 23.8722 124.292 64.15 - 76 43.1533 1199 8 1 59.9733 124.096 35.55 - 76 110.97 1200 8 1 60.05 124.101 35.4916 - 76 91.2264 1201 8 1 60.25 124.116 35.3378 - 76 22.1486 1202 8 1 60.45 124.132 35.1868 - 76 260.474 1520 8 0 61.8123 124.235 34.15 - 76 95.1596 1390 7 1 98.2031 126.726 5.55 - 76 74.6727 1391 7 1 98.35 126.741 5.44062 - 76 103.663 1392 7 1 98.55 126.763 5.29202 - 76 427.236 1533 7 0 100.056 126.903 4.15 - 76 133.211 1534 7 0 100.568 126.95 3.7611 - 76 88.6841 1585 6 1 137.182 130.106 -24.45 - 76 99.3889 1586 6 1 137.35 130.125 -24.597 - 76 48.0597 1587 6 1 137.55 130.147 -24.7729 - 76 263.223 1550 6 0 138.762 130.288 -25.85 - 76 139.505 1758 5 1 171.759 134.186 -54.45 - 76 171.214 1759 5 1 171.95 134.204 -54.589 - 76 76.7934 1760 5 1 172.15 134.222 -54.7336 - 76 493.797 1571 5 0 173.698 134.38 -55.85 - 76 197.41 1757 5 1 171.75 134.111 -54.6041 - 76 112.971 1570 5 0 171.371 134.305 -55.85 - 76 111.436 1755 5 1 171.157 134.544 -54.85 - 76 45.4179 1754 5 1 171.15 134.543 -54.8345 - 76 846.929 1009 9 1 21.9924 124.167 65.55 - 76 692.732 1514 9 0 22.8705 123.131 64.15 - 76 407.611 1513 9 0 23.0223 122.95 63.9083 - 76 711.934 1106 8 1 41.3028 101.217 35.55 - 76 586.003 1107 8 1 41.45 101.043 35.316 - 76 973.051 1399 8 0 42.2374 100.149 34.15 - 76 446.573 1398 8 0 42.4123 99.95 33.8916 - 76 697.823 1211 7 1 62.3104 76.405 5.55 - 76 909.797 1212 7 1 62.45 76.244 5.38099 - 76 793.597 1274 7 0 63.5236 75.0316 4.15 - 76 946.814 1273 7 0 63.6846 74.85 3.96634 - 76 59.2073 1272 7 0 63.8617 74.65 3.76371 - 76 497.165 1340 6 1 88.1756 46.6603 -24.45 - 76 1016.31 1341 6 1 88.25 46.5816 -24.5319 - 76 437.582 1342 6 1 88.45 46.3758 -24.7508 - 76 490.718 1126 6 0 89.4127 45.3522 -25.85 - 76 1013.1 1125 6 0 89.5088 45.25 -25.9599 - 76 404.904 1124 6 0 89.6971 45.05 -26.1732 - 76 407.131 1475 5 1 115.282 17.7684 -54.45 - 76 1423.46 1476 5 1 115.35 17.6938 -54.5103 - 76 1411.96 1477 5 1 115.55 17.4712 -54.6851 - 76 710.754 979 5 0 116.902 15.9524 -55.85 - 76 1423.43 978 5 0 116.993 15.85 -55.9282 - 76 1404.32 977 5 0 117.165 15.65 -56.0759 - 76 327.077 976 5 0 117.337 15.45 -56.2234 - 76 575.375 1521 9 0 23.2451 124.431 64.15 - 76 72.7007 1135 8 1 47.1772 126.244 35.55 - 76 203.796 1136 8 1 47.25 126.248 35.437 - 76 286.985 1530 8 0 48.0754 126.296 34.15 - 76 56.7183 1232 7 1 66.5937 128.13 5.55 - 76 197.573 1233 7 1 66.65 128.132 5.46735 - 76 12.8853 1234 7 1 66.85 128.138 5.17309 - 76 16.1921 1539 7 0 67.5704 128.15 4.15 - 76 253.12 1540 7 0 67.5844 128.15 4.13006 - 76 2.59869 1338 6 1 87.8475 127.996 -24.45 - 76 288.639 1339 6 1 87.85 127.995 -24.4541 - 76 348.726 1538 6 0 88.7206 127.891 -25.85 - 76 21.7328 1434 5 1 107.127 125.432 -54.45 - 76 308.953 1435 5 1 107.15 125.426 -54.4861 - 76 40.2648 1436 5 1 107.35 125.382 -54.8024 - 76 298.981 1525 5 0 108.021 125.226 -55.85 - 76 138.228 1529 4 1 126.13 121.168 -84.45 - 76 347.412 1530 4 1 126.15 121.165 -84.4923 - 76 431.089 1504 4 0 126.799 121.061 -85.85 - 76 217.714 1602 3 1 140.619 118.317 -114.45 - 76 80.8793 1603 3 1 140.75 118.32 -114.74 - 76 416.122 1490 3 0 141.249 118.321 -115.85 - 76 353.912 1669 2 1 153.992 118.78 -144.45 - 76 27.8167 1670 2 1 154.15 118.784 -144.814 - 76 367.557 1493 2 0 154.592 118.793 -145.85 - 76 164.188 1731 1 1 166.473 118.458 -174.45 - 76 258.624 1732 1 1 166.55 118.474 -174.59 - 76 386.497 1492 1 0 167.272 118.601 -175.85 - 76 78.4797 1239 10 0 -34.1783 68.0193 93.75 - 76 4.74651 1238 10 0 -34.2864 67.85 93.7625 - 76 297.309 1133 10 0 -46.0764 46.7749 93.75 - 76 440.412 1519 9 0 21.8611 124.042 64.15 - 76 375.094 1007 8 1 21.6006 119.47 35.55 - 76 333.032 1495 8 0 21.5796 119.277 34.15 - 76 355.897 1005 7 1 21.1025 115.377 5.55 - 76 368.745 1475 7 0 21.0825 115.218 4.15 - 76 415.592 1002 6 1 20.6201 111.94 -24.45 - 76 132.628 1458 6 0 20.6045 111.771 -25.85 - 76 153.068 1457 6 0 20.6025 111.75 -26.0258 - 76 467.498 1001 5 1 20.2606 108.381 -54.45 - 76 318.527 1440 5 0 20.2462 108.195 -55.85 - 76 34.53 1439 5 0 20.243 108.15 -56.1907 - 76 344.046 999 4 1 19.8921 104.41 -84.45 - 76 292.311 1420 4 0 19.8498 104.206 -85.85 - 76 8.01445 1419 4 0 19.838 104.15 -86.2364 - 76 260.132 994 3 1 19.0096 100.067 -114.45 - 76 289.723 1398 3 0 18.9797 99.8581 -115.85 - 76 303.909 991 2 1 18.4284 95.4984 -144.45 - 76 309.98 1375 2 0 18.3863 95.2893 -145.85 - 76 299.279 988 1 1 17.6861 91.0242 -174.45 - 76 365.308 1353 1 0 17.6505 90.8247 -175.85 - 76 392.201 984 0 1 16.8968 86.8018 -204.45 - 76 391.76 1332 0 0 16.8384 86.5913 -205.85 - 76 95.8187 1008 8 1 21.65 119.439 35.3932 - 76 89.5592 1492 8 0 21.9538 118.645 34.15 - 76 112.433 1014 8 1 22.8966 117.932 35.1504 - 76 8.96253 1015 8 1 23.0501 117.976 35.1548 - 76 89.288 1486 8 0 22.8858 117.464 34.15 - 76 673.59 1008 9 1 21.7908 123.966 65.55 - 76 112.886 1007 9 1 21.65 123.356 65.2234 - 76 24.1938 1506 9 0 21.1839 121.373 64.15 - 76 172.646 1505 9 0 21.1785 121.35 64.1376 - 76 156.067 1504 9 0 21.1315 121.15 64.0296 - 76 248.08 1503 9 0 21.0844 120.95 63.9214 - 76 73.4519 1502 9 0 21.0371 120.75 63.8142 - 76 83.8923 943 8 1 8.66761 67.932 35.55 - 76 480.774 942 8 1 8.65 67.8497 35.5042 - 76 150.084 1226 8 0 8.12823 65.4264 34.15 - 76 361.58 1225 8 0 8.09023 65.25 34.0513 - 76 175.098 1224 8 0 8.04747 65.05 33.9401 - 76 97.9884 1223 8 0 8.00475 64.85 33.8285 - 76 491.421 886 7 1 -2.7353 14.419 5.55 - 76 128.717 885 7 1 -2.85 13.8363 5.23473 - 76 150.011 958 7 0 -3.23753 11.8354 4.15 - 76 150.552 957 7 0 -3.27344 11.65 4.04952 - 76 192.576 956 7 0 -3.31156 11.45 3.941 - 76 128.853 955 7 0 -3.34945 11.25 3.83247 - 76 611.814 834 6 1 -13.1274 -40.8462 -24.45 - 76 79.9147 833 6 1 -13.25 -41.4999 -24.7956 - 76 111.088 682 6 0 -13.6117 -43.4784 -25.85 - 76 134.467 681 6 0 -13.6431 -43.65 -25.9414 - 76 175.398 680 6 0 -13.6794 -43.85 -26.0486 - 76 170.98 679 6 0 -13.7159 -44.05 -26.156 - 76 1124.69 784 5 1 -23.1125 -96.6135 -54.45 - 76 145.345 399 5 0 -23.0977 -100.194 -55.85 - 76 173.552 398 5 0 -23.0955 -100.35 -55.9099 - 76 232.93 397 5 0 -23.0927 -100.55 -55.9872 - 76 202.823 396 5 0 -23.0898 -100.75 -56.0661 - 76 172.283 395 5 0 -23.0868 -100.95 -56.1454 - 76 41.887 394 5 0 -23.0836 -101.15 -56.2253 - 76 1036.15 789 4 1 -22.2471 -171.671 -84.45 - 76 103.706 24 4 0 -22.1479 -175.214 -85.85 - 76 244.533 23 4 0 -22.1442 -175.35 -85.9034 - 76 204.789 22 4 0 -22.139 -175.55 -85.9819 - 76 186.58 21 4 0 -22.1332 -175.75 -86.0608 - 76 153.229 20 4 0 -22.1263 -175.95 -86.1399 - 76 56.4361 19 4 0 -22.1191 -176.15 -86.2194 - 76 34.4475 1328 10 0 -2.69971 85.7362 93.75 - 76 82.7389 1327 10 0 -2.75469 85.65 93.8127 - 76 98.4606 1326 10 0 -2.88159 85.45 93.9564 - 76 30.0596 1325 10 0 -3.00792 85.25 94.098 - 76 96.3264 880 10 1 -3.95329 83.7486 95.15 - 76 142.195 879 10 1 -4.05 83.595 95.2576 - 76 31.2217 878 10 1 -4.25 83.2746 95.4823 - 76 41.682 1108 11 0 -31.5086 41.7382 123.75 - 76 90.6526 1107 11 0 -31.5665 41.65 123.81 - 76 117.5 1106 11 0 -31.6982 41.45 123.946 - 76 29.189 1105 11 0 -31.829 41.25 124.083 - 76 0.555192 736 11 1 -32.8486 39.6921 125.15 - 76 142.554 735 11 1 -32.85 39.69 125.151 - 76 148.506 734 11 1 -33.05 39.3843 125.361 - 76 78.4339 882 12 0 -61.3334 -3.4702 153.75 - 76 77.4553 881 12 0 -61.452 -3.65 153.869 - 76 74.4381 880 12 0 -61.5847 -3.85 154.001 - 76 10.0275 879 12 0 -61.718 -4.05 154.133 - 76 85.0551 586 12 1 -62.7457 -5.60231 155.15 - 76 140.558 585 12 1 -62.85 -5.75986 155.253 - 76 128.503 584 12 1 -63.05 -6.06209 155.45 - 76 303.332 651 13 0 -88.5674 -49.6676 183.75 - 76 85.288 650 13 0 -88.6739 -49.85 183.868 - 76 115.674 649 13 0 -88.7898 -50.05 183.998 - 76 33.0935 648 13 0 -88.9068 -50.25 184.128 - 76 18.2024 451 13 1 -89.8218 -51.8192 185.15 - 76 176.352 450 13 1 -89.85 -51.8675 185.181 - 76 20.937 449 13 1 -90.15 -52.3825 185.517 - 76 24.1851 394 14 0 -117.589 -101.288 213.75 - 76 77.7292 393 14 0 -117.624 -101.35 213.786 - 76 68.5231 392 14 0 -117.736 -101.55 213.901 - 76 79.2459 391 14 0 -117.849 -101.75 214.016 - 76 11.4396 390 14 0 -117.961 -101.95 214.131 - 76 176.682 305 14 1 -118.957 -103.71 215.15 - 76 157.003 304 14 1 -119.15 -104.051 215.348 - 76 185.277 993 8 1 18.741 125.646 35.55 - 76 142.191 1527 8 0 18.5969 125.705 34.15 - 76 113.304 978 7 1 15.6834 126.877 5.55 - 76 28.0435 977 7 1 15.65 126.89 5.22963 - 76 169.89 962 6 1 12.5659 128.037 -24.45 - 76 162.59 1539 6 0 12.4252 128.095 -25.85 - 76 163.255 947 5 1 9.52744 129.27 -54.45 - 76 184.326 1545 5 0 9.38179 129.328 -55.85 - 76 164.857 931 4 1 6.41044 130.527 -84.45 - 76 148.781 1552 4 0 6.26729 130.586 -85.85 - 76 178.175 916 3 1 3.38804 131.803 -114.45 - 76 313.784 1558 3 0 3.25477 131.864 -115.85 - 76 332.386 902 2 1 0.519504 133.098 -144.45 - 76 159.815 1565 2 0 0.38794 133.156 -145.85 - 76 224.709 888 1 1 -2.26356 134.309 -174.45 - 76 132.759 1571 1 0 -2.4003 134.369 -175.85 - 76 189.093 874 0 1 -5.18368 135.607 -204.45 - 76 177.555 1577 0 0 -5.32717 135.667 -205.85 - 76 143.138 1517 9 0 21.8132 123.74 64.15 - 76 187.107 1003 8 1 20.7133 113.656 35.55 - 76 7.65013 1465 8 0 20.664 113.165 34.15 - 76 103.933 1464 8 0 20.6625 113.15 34.1066 - 76 10.3031 998 7 1 19.6514 103.145 5.55 - 76 90.2388 997 7 1 19.65 103.132 5.51165 - 76 109.114 1412 7 0 19.5995 102.658 4.15 - 76 21.1288 1411 7 0 19.5881 102.55 3.84129 - 76 138.007 992 6 1 18.5779 92.6954 -24.45 - 76 45.6076 1360 6 0 18.5243 92.2143 -25.85 - 76 63.6762 1359 6 0 18.5171 92.15 -26.0369 - 76 146.923 987 5 1 17.4717 82.3361 -54.45 - 76 1.49247 1309 5 0 17.4172 81.8536 -55.85 - 76 128.228 1308 5 0 17.4168 81.85 -55.8603 - 76 12.2912 981 4 1 16.2516 71.9956 -84.45 - 76 132.62 980 4 1 16.25 71.9823 -84.4886 - 76 50.2676 1257 4 0 16.1935 71.5133 -85.85 - 76 112.267 1256 4 0 16.1859 71.45 -86.0336 - 76 84.8017 974 3 1 15.0216 61.6763 -114.45 - 76 117.236 1205 3 0 14.9617 61.1883 -115.85 - 76 0.634129 1204 3 0 14.9448 61.05 -116.247 - 76 105.843 968 2 1 13.7892 51.1891 -144.45 - 76 41.547 1153 2 0 13.7323 50.7102 -145.85 - 76 55.3045 1152 2 0 13.7252 50.65 -146.026 - 76 118.194 962 1 1 12.5712 40.9383 -174.45 - 76 11.7272 1102 1 0 12.5196 40.466 -175.85 - 76 99.1453 1101 1 0 12.5179 40.45 -175.897 - 76 48.1666 957 0 1 11.456 30.8542 -204.45 - 76 75.0995 956 0 1 11.45 30.7932 -204.633 - 76 115.028 1051 0 0 11.4099 30.3868 -205.85 - 76 5.65588 279 4 1 -124.15 -118.402 -84.7075 - 76 112.188 690 8 0 98.3041 -42.0326 33.75 - 76 151.172 1522 9 0 22.3131 124.57 64.15 - 76 133.237 1051 8 1 30.2854 129.597 35.55 - 76 145.593 1548 8 0 30.6804 129.842 34.15 - 76 86.2487 1093 7 1 38.755 134.868 5.55 - 76 19.9784 1094 7 1 38.85 134.925 5.20918 - 76 96.9391 1574 7 0 39.1458 135.1 4.15 - 76 29.9576 1575 7 0 39.2301 135.15 3.84791 - 76 124.62 1135 6 1 47.1251 139.819 -24.45 - 76 97.6682 1599 6 0 47.5092 140.054 -25.85 - 76 130.726 1176 5 1 55.3472 144.836 -54.45 - 76 3.15969 1177 5 1 55.45 144.9 -54.8306 - 76 117.778 1624 5 0 55.7252 145.073 -55.85 - 76 126.889 1217 4 1 63.4565 149.903 -84.45 - 76 16.4197 1649 4 0 63.8305 150.143 -85.85 - 76 108.163 1650 4 0 63.8407 150.15 -85.8883 - 76 207.543 1257 3 1 71.4685 155.076 -114.45 - 76 55.2407 1675 3 0 71.8378 155.318 -115.85 - 76 56.9964 1676 3 0 71.8857 155.35 -116.032 - 76 520.218 1296 2 1 79.3505 160.312 -144.45 - 76 8.56041 1297 2 1 79.45 160.38 -144.832 - 76 122.706 1702 2 0 79.7156 160.562 -145.85 - 76 114.661 1335 1 1 87.1582 165.683 -174.45 - 76 13.1434 1336 1 1 87.25 165.747 -174.809 - 76 30.1967 1728 1 0 87.5159 165.932 -175.85 - 76 84.8926 1729 1 0 87.5414 165.95 -175.95 - 76 188.784 1373 0 1 94.8183 171.011 -204.45 - 76 142.822 1755 0 0 95.1754 171.256 -205.85 - 76 13.1396 1256 3 1 71.45 154.892 -114.832 - 76 163.366 1669 3 0 69.5585 154.078 -115.85 - 76 6.50395 1503 3 0 103.148 120.769 -116.25 - 76 173.462 1502 3 0 103.161 120.75 -116.235 - 76 115.022 1501 3 0 103.193 120.55 -116.042 - 76 224.032 1500 3 0 103.233 120.35 -116.021 -Number of digits in this event = 153 +Number of tracker hits in this event = 19 + 76 114.683 803 7 1 -19.4338 148.604 5.55 + 76 170.579 1642 7 0 -19.4344 148.604 4.15 + 76 152.891 803 6 1 -19.4444 148.61 -24.45 + 76 115.918 1642 6 0 -19.4443 148.61 -25.85 + 76 194.463 803 5 1 -19.4426 148.612 -54.45 + 76 113.868 1642 5 0 -19.4422 148.614 -55.85 + 76 91.8686 803 4 1 -19.4367 148.646 -84.45 + 76 280.659 1642 4 0 -19.4358 148.646 -85.85 + 76 148.515 803 3 1 -19.4132 148.642 -114.45 + 76 102.492 1642 3 0 -19.4131 148.643 -115.85 + 76 115.368 803 2 1 -19.4136 148.665 -144.45 + 76 178.479 1642 2 0 -19.4153 148.666 -145.85 + 76 124.293 803 1 1 -19.4493 148.681 -174.45 + 76 118.11 1642 1 0 -19.4505 148.682 -175.85 + 76 127.166 802 0 1 -19.4784 148.709 -204.45 + 76 164.206 1642 0 0 -19.4802 148.71 -205.85 + 76 15.9875 1472 0 0 11.1085 114.733 -206.25 + 76 2.45669 1517 0 0 -2.64354 123.687 -206.25 + 76 16.2604 1490 0 0 -30.0707 118.165 -206.25 +Number of digits in this event = 10 Using G4ParticleGun ... -4.30689 LIN +6.5206 LIN proton Event: 77 -Number of tracker hits in this event = 41 - 77 117.888 860 11 1 -7.9354 -43.5438 125.55 - 77 99.4722 682 11 0 -7.93465 -43.5421 124.15 - 77 116.606 860 10 1 -7.9122 -43.5024 95.55 - 77 109.136 682 10 0 -7.91262 -43.5009 94.15 - 77 104.711 860 9 1 -7.9207 -43.471 65.55 - 77 122.594 682 9 0 -7.9196 -43.4716 64.15 - 77 152.053 860 8 1 -7.89094 -43.4771 35.55 - 77 134.565 682 8 0 -7.89005 -43.4783 34.15 - 77 91.5546 860 7 1 -7.86372 -43.5039 5.55 - 77 115.828 682 7 0 -7.86234 -43.5041 4.15 - 77 160.81 861 6 1 -7.83146 -43.5131 -24.45 - 77 121.254 682 6 0 -7.83042 -43.512 -25.85 - 77 323.498 861 5 1 -7.8018 -43.491 -54.45 - 77 115.645 682 5 0 -7.79974 -43.4909 -55.85 - 77 102.701 861 4 1 -7.75304 -43.49 -84.45 - 77 158.607 682 4 0 -7.74697 -43.4908 -85.85 - 77 283.478 862 3 1 -7.62108 -43.5061 -114.45 - 77 300.511 682 3 0 -7.61537 -43.5051 -115.85 - 77 105.89 862 2 1 -7.49072 -43.4877 -144.45 - 77 113.524 682 2 0 -7.48509 -43.4872 -145.85 - 77 99.4561 863 1 1 -7.37019 -43.4772 -174.45 - 77 81.4382 682 1 0 -7.36362 -43.4771 -175.85 - 77 127.019 864 0 1 -7.22962 -43.4786 -204.45 - 77 101.943 682 0 0 -7.22452 -43.4777 -205.85 - 77 119.302 678 3 0 -7.48877 -44.2802 -115.85 - 77 103.229 681 3 0 82.3613 -43.6502 -116.115 - 77 39.3863 680 3 0 82.4203 -43.85 -116.187 - 77 105.158 686 5 0 -7.64203 -42.8456 -55.85 - 77 62.1061 850 5 0 28.8694 -9.96203 -56.2497 - 77 120.482 851 5 0 28.9616 -9.84998 -56.1484 - 77 112.364 852 5 0 29.0917 -9.64985 -55.9791 - 77 225.688 1053 5 1 30.7227 -8.7078 -54.8498 - 77 56.9824 858 5 0 30.5807 -8.35188 -55.85 - 77 159.17 861 7 1 -7.79051 -43.5367 5.55 - 77 29.7732 689 7 0 -7.69966 -42.1206 4.15 - 77 112.234 690 7 0 -7.70044 -42.05 4.08345 - 77 72.4368 691 7 0 -7.73375 -41.8498 3.85637 - 77 30.0658 1465 3 0 137.674 113.35 -115.95 - 77 77.4017 683 8 0 -7.91125 -43.45 33.8148 - 77 194.692 861 8 1 -7.85 -43.4341 35.5327 - 77 164.45 862 8 1 -7.64991 -43.1761 35.3803 -Number of digits in this event = 18 +Number of tracker hits in this event = 22 + 77 97.145 420 8 1 -95.9577 97.9131 35.55 + 77 288.347 1388 8 0 -95.9576 97.9137 34.15 + 77 124.21 420 7 1 -95.9604 97.9249 5.55 + 77 144.195 1388 7 0 -95.9603 97.9247 4.15 + 77 111.465 420 6 1 -95.9563 97.9174 -24.45 + 77 125.741 1388 6 0 -95.9556 97.9176 -25.85 + 77 106.245 421 5 1 -95.9388 97.9234 -54.45 + 77 113.612 1388 5 0 -95.9371 97.9237 -55.85 + 77 203.641 421 4 1 -95.909 97.9282 -84.45 + 77 131.47 1388 4 0 -95.9077 97.9283 -85.85 + 77 140.348 421 3 1 -95.884 97.929 -114.45 + 77 113.261 1388 3 0 -95.8813 97.9292 -115.85 + 77 106.058 421 2 1 -95.8248 97.9333 -144.45 + 77 155.443 1388 2 0 -95.8216 97.9333 -145.85 + 77 358.814 421 1 1 -95.7575 97.9331 -174.45 + 77 129.19 1388 1 0 -95.7545 97.9325 -175.85 + 77 106.354 422 0 1 -95.6911 97.9175 -204.45 + 77 178.835 1388 0 0 -95.6896 97.9189 -205.85 + 77 3.66486 422 1 1 -95.75 97.8767 -174.553 + 77 128.213 1389 7 0 -95.968 97.95 4.07185 + 77 0.0492005 1185 8 0 -63.6742 57.0503 33.75 + 77 58.2885 1184 8 0 -63.6741 57.0496 33.7504 +Number of digits in this event = 13 Using G4ParticleGun ... -9.92346 LIN +6.20542 LIN proton Event: 78 -Number of tracker hits in this event = 30 - 78 190.33 1308 11 0 -15.4722 81.7503 124.15 - 78 122.786 822 10 1 -15.4689 81.7537 95.55 - 78 117.075 1308 10 0 -15.4684 81.7529 94.15 - 78 151.762 822 9 1 -15.4577 81.7378 65.55 - 78 93.0088 1308 9 0 -15.4576 81.7372 64.15 - 78 213.413 822 8 1 -15.4602 81.7268 35.55 - 78 178.746 1308 8 0 -15.4597 81.7259 34.15 - 78 173.572 822 7 1 -15.4517 81.707 5.55 - 78 103.874 1308 7 0 -15.4521 81.7053 4.15 - 78 178.034 822 6 1 -15.4613 81.6681 -24.45 - 78 117.012 1308 6 0 -15.4617 81.6669 -25.85 - 78 148.315 822 5 1 -15.4701 81.6415 -54.45 - 78 123.191 1307 5 0 -15.4701 81.6404 -55.85 - 78 132.716 822 4 1 -15.4725 81.6164 -84.45 - 78 128.645 1307 4 0 -15.4735 81.6159 -85.85 - 78 136.531 822 3 1 -15.4942 81.6084 -114.45 - 78 107.885 1307 3 0 -15.4948 81.6082 -115.85 - 78 145.376 822 2 1 -15.5049 81.6036 -144.45 - 78 100.515 1307 2 0 -15.5054 81.6029 -145.85 - 78 143.32 822 1 1 -15.5176 81.5877 -174.45 - 78 112.298 1307 1 0 -15.5184 81.5866 -175.85 - 78 124.944 822 0 1 -15.5357 81.5641 -204.45 - 78 126.223 1307 0 0 -15.5364 81.5628 -205.85 - 78 107.724 823 8 1 -15.4129 81.9157 35.55 - 78 331.479 824 8 1 -15.25 82.303 35.3954 - 78 149.042 825 8 1 -15.05 82.6718 35.1859 - 78 54.9952 1317 8 0 -14.4265 83.5439 34.1499 - 78 111.06 1318 8 0 -14.3496 83.65 34.0451 - 78 239.527 1307 11 0 -15.5155 81.6497 123.878 - 78 64.8055 1306 11 0 -15.6176 81.45 124.069 -Number of digits in this event = 20 +Number of tracker hits in this event = 48 + 78 104.879 1296 10 1 79.2838 -44.8678 95.55 + 78 90.9474 675 10 0 79.2831 -44.8673 94.15 + 78 112.412 1296 9 1 79.2736 -44.8527 65.55 + 78 167.22 675 9 0 79.2738 -44.8517 64.15 + 78 179.453 1296 8 1 79.2848 -44.8365 35.55 + 78 101.92 676 8 0 79.2861 -44.8351 34.15 + 78 111.274 1296 7 1 79.3133 -44.8055 5.55 + 78 125.422 676 7 0 79.3145 -44.8043 4.15 + 78 182.321 1296 6 1 79.3423 -44.7799 -24.45 + 78 127.312 676 6 0 79.3438 -44.7803 -25.85 + 78 120.634 1296 5 1 79.3711 -44.7907 -54.45 + 78 117.31 676 5 0 79.3731 -44.7913 -55.85 + 78 106.791 1296 4 1 79.4164 -44.8043 -84.45 + 78 143.677 676 4 0 79.4172 -44.8035 -85.85 + 78 116.916 1296 3 1 79.435 -44.7842 -114.45 + 78 111.056 676 3 0 79.4351 -44.7837 -115.85 + 78 129.976 1296 2 1 79.4325 -44.7769 -144.45 + 78 129.485 676 2 0 79.4326 -44.7773 -145.85 + 78 116.915 1296 1 1 79.4346 -44.7853 -174.45 + 78 120.029 676 1 0 79.4349 -44.7868 -175.85 + 78 125.707 1296 0 1 79.4405 -44.8163 -204.45 + 78 128.678 676 0 0 79.442 -44.8174 -205.85 + 78 23.0299 379 9 0 74.0469 -104.296 63.75 + 78 63.4632 378 9 0 74.0308 -104.35 63.8014 + 78 190.676 377 9 0 73.9928 -104.55 64.0074 + 78 21.6057 1263 9 1 72.7103 -105.88 65.1502 + 78 150.675 1262 9 1 72.65 -105.927 65.1799 + 78 177.574 361 9 0 73.429 -107.878 64.1498 + 78 172.329 360 9 0 73.4639 -107.95 64.0809 + 78 129.944 359 9 0 73.7045 -108.15 63.9365 + 78 296.769 362 9 0 73.8729 -107.75 63.9962 + 78 143.068 909 11 1 2.01934 -137.467 125.55 + 78 94.2808 910 11 1 2.05001 -137.503 125.421 + 78 25.9839 602 0 0 108.919 -59.45 -206.21 + 78 42.8882 670 1 0 -10.3015 -45.9872 -176.25 + 78 30.2268 472 2 1 -85.4545 -146.493 -144.45 + 78 59.9094 473 2 1 -85.4445 -146.501 -144.45 + 78 263.167 669 1 0 -10.4736 -46.0504 -176.091 + 78 4.86166 869 14 0 56.8278 -6.05 214.082 + 78 1481.86 1150 14 1 50.0785 16.618 215.55 + 78 23.2474 938 12 0 143.12 7.75207 154.027 + 78 169.78 1324 2 1 84.9579 -57.8008 -144.45 + 78 151.023 1297 0 1 79.4548 -44.9226 -204.45 + 78 58.3217 1298 0 1 79.65 -45.1715 -204.7 + 78 45.3233 670 0 0 80.4276 -45.9689 -205.85 + 78 109.64 669 0 0 80.4845 -46.05 -205.964 + 78 41.8872 668 0 0 80.7064 -46.2503 -206.158 + 78 87.8711 675 4 0 79.4263 -44.85 -85.8872 +Number of digits in this event = 26 Using G4ParticleGun ... -2.9922 LIN +8.83256 LIN proton Event: 79 -Number of tracker hits in this event = 28 - 79 128.005 765 10 1 -26.8629 -93.2213 95.55 - 79 298.557 434 10 0 -26.8614 -93.2214 94.15 - 79 144.486 766 9 1 -26.8353 -93.2185 65.55 - 79 94.6869 434 9 0 -26.8283 -93.2207 64.15 - 79 318.699 766 8 1 -26.6814 -93.27 35.55 - 79 143.171 434 8 0 -26.6745 -93.2717 34.15 - 79 98.9366 767 7 1 -26.5322 -93.3063 5.55 - 79 109.745 434 7 0 -26.5266 -93.309 4.15 - 79 225.967 768 6 1 -26.4173 -93.3642 -24.45 - 79 144.831 433 6 0 -26.4102 -93.3674 -25.85 - 79 180.78 768 5 1 -26.2647 -93.4375 -54.45 - 79 122.01 433 5 0 -26.2572 -93.442 -55.85 - 79 125.007 769 4 1 -26.1029 -93.5357 -84.45 - 79 102.025 433 4 0 -26.0976 -93.5412 -85.85 - 79 118.734 770 3 1 -25.9834 -93.6523 -114.45 - 79 159.868 432 3 0 -25.9801 -93.6579 -115.85 - 79 226.429 770 2 1 -25.9196 -93.7711 -144.45 - 79 196.674 431 2 0 -25.9164 -93.7754 -145.85 - 79 117.044 771 1 1 -25.8474 -93.8573 -174.45 - 79 120.315 431 1 0 -25.8432 -93.8631 -175.85 - 79 139.546 771 0 1 -25.7441 -93.9843 -204.45 - 79 103.875 430 0 0 -25.74 -93.9903 -205.85 - 79 121.743 767 8 1 -26.65 -93.5552 35.342 - 79 11.2697 425 8 0 -26.6236 -95.0212 34.15 - 79 157.14 761 8 1 -27.6552 -96.3516 35.1501 - 79 43.8099 762 8 1 -27.6499 -96.4524 35.2418 - 79 18.6134 431 8 0 -27.2902 -93.9159 34.15 - 79 130.548 430 8 0 -27.3369 -93.95 34.0907 -Number of digits in this event = 19 +Number of tracker hits in this event = 24 + 79 107.924 631 11 1 -53.6601 15.7339 125.55 + 79 103.548 978 11 0 -53.6606 15.7342 124.15 + 79 153.805 631 10 1 -53.6695 15.7394 95.55 + 79 152.464 978 10 0 -53.6704 15.74 94.15 + 79 149.492 631 9 1 -53.6895 15.755 65.55 + 79 122.833 978 9 0 -53.6901 15.7549 64.15 + 79 124.451 631 8 1 -53.6998 15.7528 35.55 + 79 182.44 978 8 0 -53.7014 15.7536 34.15 + 79 117.431 631 7 1 -53.7338 15.7679 5.55 + 79 161.631 978 7 0 -53.7366 15.7686 4.15 + 79 95.099 631 6 1 -53.7894 15.7861 -24.45 + 79 138.166 978 6 0 -53.7931 15.787 -25.85 + 79 116.526 630 5 1 -53.8727 15.8085 -54.45 + 79 108.768 978 5 0 -53.8765 15.8088 -55.85 + 79 132.75 630 4 1 -53.9566 15.8172 -84.45 + 79 105.851 978 4 0 -53.9596 15.8179 -85.85 + 79 91.6453 630 3 1 -54.0217 15.8316 -114.45 + 79 112.317 978 3 0 -54.0238 15.8326 -115.85 + 79 267.68 629 2 1 -54.0672 15.8504 -144.45 + 79 111.734 979 2 0 -54.0691 15.8517 -145.85 + 79 116.836 629 1 1 -54.1114 15.8803 -174.45 + 79 120.559 979 1 0 -54.1142 15.8817 -175.85 + 79 113.107 629 0 1 -54.1689 15.9103 -204.45 + 79 134.52 979 0 0 -54.1719 15.9118 -205.85 +Number of digits in this event = 13 Using G4ParticleGun ... -9.92915 LIN +3.38179 LIN proton Event: 80 -Number of tracker hits in this event = 20 - 80 272.609 533 9 1 -73.2834 -105.478 65.55 - 80 195.041 373 9 0 -73.2836 -105.478 64.15 - 80 115.355 533 8 1 -73.2873 -105.472 35.55 - 80 152.362 373 8 0 -73.287 -105.472 34.15 - 80 82.6086 533 7 1 -73.2792 -105.478 5.55 - 80 105.803 373 7 0 -73.279 -105.477 4.15 - 80 137.684 533 6 1 -73.2729 -105.472 -24.45 - 80 129.631 373 6 0 -73.2725 -105.472 -25.85 - 80 175.808 533 5 1 -73.2658 -105.451 -54.45 - 80 112.561 373 5 0 -73.2658 -105.45 -55.85 - 80 139.754 533 4 1 -73.2644 -105.435 -84.45 - 80 107.368 373 4 0 -73.2641 -105.434 -85.85 - 80 98.4788 533 3 1 -73.2594 -105.423 -114.45 - 80 108.199 373 3 0 -73.2583 -105.423 -115.85 - 80 109.617 534 2 1 -73.2345 -105.423 -144.45 - 80 124.54 373 2 0 -73.2337 -105.423 -145.85 - 80 128.487 534 1 1 -73.2168 -105.422 -174.45 - 80 99.0237 373 1 0 -73.2154 -105.422 -175.85 - 80 168.524 534 0 1 -73.1875 -105.42 -204.45 - 80 174.679 373 0 0 -73.1864 -105.421 -205.85 +Number of tracker hits in this event = 31 + 80 103.533 1109 11 1 41.8711 -4.79664 125.55 + 80 110.033 876 11 0 41.8712 -4.79702 124.15 + 80 139.578 1109 10 1 41.8772 -4.81748 95.55 + 80 103.467 876 10 0 41.8766 -4.8197 94.15 + 80 123.55 1109 9 1 41.858 -4.86855 65.55 + 80 99.6476 875 9 0 41.8575 -4.87405 64.15 + 80 14.2343 1108 8 1 41.8499 -4.98491 35.55 + 80 111.114 1109 8 1 41.85 -4.98506 35.5077 + 80 111.775 875 8 0 41.853 -4.99009 34.15 + 80 123.58 1109 7 1 41.9068 -5.0946 5.55 + 80 164.336 874 7 0 41.9117 -5.1017 4.15 + 80 96.6412 1109 6 1 42.0175 -5.24048 -24.45 + 80 234.499 873 6 0 42.0185 -5.25056 -25.85 + 80 115.683 1109 5 1 42.0319 -5.4594 -54.45 + 80 161.939 872 5 0 42.0321 -5.47126 -55.85 + 80 91.0242 1109 4 1 42.0298 -5.71005 -84.45 + 80 105.162 871 4 0 42.03 -5.71833 -85.85 + 80 111.159 1109 3 1 42.0432 -5.88455 -114.45 + 80 117.316 870 3 0 42.0428 -5.89215 -115.85 + 80 96.7976 1109 2 1 42.0415 -6.05453 -144.45 + 80 112.934 869 2 0 42.044 -6.06387 -145.85 + 80 104.977 1110 1 1 42.0979 -6.2488 -174.45 + 80 96.129 868 1 0 42.1008 -6.25623 -175.85 + 80 115.639 1110 0 1 42.1608 -6.41952 -204.45 + 80 139.855 868 0 0 42.1625 -6.42733 -205.85 + 80 127.037 903 4 0 24.4439 0.762758 -86.25 + 80 237.992 902 4 0 24.1994 0.65 -85.9396 + 80 173.952 901 4 0 24.1465 0.45 -85.9056 + 80 258.029 900 4 0 24.0536 0.25 -86.0115 + 80 72.3755 857 4 1 -8.50601 -3.16623 -84.85 + 80 111.029 858 4 1 -8.44995 -3.16496 -84.8093 Number of digits in this event = 12 Using G4ParticleGun ... -8.93714 LIN +7.5298 LIN proton Event: 81 -Number of tracker hits in this event = 23 - 81 294.39 1266 10 1 73.3536 -67.3232 95.55 - 81 187.276 563 10 0 73.3537 -67.3226 94.15 - 81 136.763 1266 9 1 73.3557 -67.3107 65.55 - 81 110.667 563 9 0 73.356 -67.3112 64.15 - 81 109.531 1266 8 1 73.3635 -67.3238 35.55 - 81 89.816 563 8 0 73.3636 -67.325 34.15 - 81 144.971 1266 7 1 73.3639 -67.3517 5.55 - 81 95.1397 563 7 0 73.3623 -67.3529 4.15 - 81 163.834 1266 6 1 73.3265 -67.3805 -24.45 - 81 166.883 563 6 0 73.3248 -67.3814 -25.85 - 81 131.521 1266 5 1 73.2899 -67.3997 -54.45 - 81 186.789 563 5 0 73.288 -67.4 -55.85 - 81 144.042 1265 4 1 73.2496 -67.4084 -84.45 - 81 145.033 563 4 0 73.2484 -67.4089 -85.85 - 81 105.374 1265 3 1 73.2253 -67.4199 -114.45 - 81 131.839 563 3 0 73.2251 -67.4205 -115.85 - 81 206.406 1265 2 1 73.2235 -67.4318 -144.45 - 81 98.1099 563 2 0 73.2233 -67.4331 -145.85 - 81 213.411 1265 1 1 73.2208 -67.4614 -174.45 - 81 117.555 562 1 0 73.2221 -67.4626 -175.85 - 81 256.224 1265 0 1 73.2482 -67.4874 -204.45 - 81 135.692 562 0 0 73.2484 -67.4877 -205.85 - 81 59.481 1267 10 1 73.45 -67.3782 95.5047 -Number of digits in this event = 16 +Number of tracker hits in this event = 58 + 81 120.566 892 11 1 -1.59903 79.1394 125.55 + 81 152.622 1295 11 0 -1.59934 79.1399 124.15 + 81 141.927 892 10 1 -1.60133 79.1528 95.55 + 81 140.546 1295 10 0 -1.60122 79.1544 94.15 + 81 116.119 892 9 1 -1.59599 79.1817 65.55 + 81 100.11 1295 9 0 -1.59652 79.183 64.15 + 81 104.117 892 8 1 -1.60805 79.207 35.55 + 81 254.624 1295 8 0 -1.60928 79.2086 34.15 + 81 108.158 892 7 1 -1.63548 79.2459 5.55 + 81 109.989 1295 7 0 -1.63684 79.2486 4.15 + 81 175.909 891 6 1 -1.66397 79.3054 -24.45 + 81 169.445 1296 6 0 -1.66587 79.3078 -25.85 + 81 129.023 891 5 1 -1.70396 79.3575 -54.45 + 81 111.997 1296 5 0 -1.70558 79.3608 -55.85 + 81 108.822 891 4 1 -1.73091 79.4278 -84.45 + 81 106.092 1296 4 0 -1.73213 79.4309 -85.85 + 81 173.767 891 3 1 -1.7585 79.4969 -114.45 + 81 138.296 1297 3 0 -1.76037 79.5005 -115.85 + 81 216.926 891 2 1 -1.79316 79.5684 -144.45 + 81 141.68 1297 2 0 -1.79458 79.5713 -145.85 + 81 112.993 891 1 1 -1.82864 79.6299 -174.45 + 81 273.1 1297 1 0 -1.83037 79.6332 -175.85 + 81 229.216 890 0 1 -1.86134 79.6981 -204.45 + 81 94.345 1298 0 0 -1.86243 79.703 -205.85 + 81 156.768 1237 0 0 -55.9687 67.4685 -206.25 + 81 16.1063 616 0 1 -56.8203 67.7955 -204.85 + 81 251.85 615 0 1 -56.8502 67.8073 -204.801 + 81 94.2453 1331 1 0 -69.9027 86.2972 -176.25 + 81 99.7599 1332 1 0 -70.0174 86.45 -176.018 + 81 41.2125 547 1 1 -70.5866 87.2328 -174.85 + 81 107.322 546 1 1 -70.6501 87.3248 -174.716 + 81 18.2115 1502 2 0 -86.4014 120.705 -146.25 + 81 240.516 1503 2 0 -86.4226 120.75 -146.212 + 81 68.9339 1504 2 0 -86.5202 120.95 -146.043 + 81 28.4046 1505 2 0 -86.6135 121.15 -145.895 + 81 72.8847 464 2 1 -87.181 122.613 -144.85 + 81 143.13 463 2 1 -87.25 122.788 -144.723 + 81 139.87 1189 0 0 -42.6898 57.9673 -206.25 + 81 226.567 688 0 1 -42.4317 57.3881 -204.85 + 81 160.338 849 1 0 80.4386 -10.0838 -176.25 + 81 315.778 848 1 0 80.7918 -10.25 -176.217 + 81 90.3366 1313 1 1 82.8026 -9.62238 -174.85 + 81 114.275 1314 1 1 82.85 -9.59772 -174.806 + 81 173.751 1315 1 1 83.0504 -9.35632 -174.638 + 81 147.124 944 5 0 62.268 8.90172 -56.25 + 81 186.964 1213 5 1 62.7047 9.10775 -54.85 + 81 84.1386 1214 5 1 62.85 9.33223 -54.5772 + 81 50.0764 1215 5 1 63.0502 9.21051 -54.6538 + 81 53.9762 1216 5 1 63.25 9.26624 -54.7315 + 81 113.197 1217 5 1 63.45 9.27693 -54.7217 + 81 121.565 1218 5 1 63.65 9.26826 -54.7041 + 81 11.3538 1219 5 1 63.8501 9.38847 -54.7956 + 81 198.661 947 5 0 63.5475 9.52962 -55.85 + 81 387.976 948 5 0 63.7439 9.65011 -56.0732 + 81 221.451 889 0 1 -2.05022 79.7411 -204.67 + 81 66.5649 1294 10 0 -1.64918 79.05 93.9619 + 81 442.262 1293 10 0 -1.60802 78.85 93.9536 + 81 10.5213 1292 10 0 -1.32356 78.65 93.991 +Number of digits in this event = 33 Using G4ParticleGun ... -4.76246 LIN +2.7785 LIN proton Event: 82 -Number of tracker hits in this event = 23 - 82 140.969 497 10 1 -80.4724 34.4637 95.55 - 82 100.411 1072 10 0 -80.4733 34.4649 94.15 - 82 120.643 497 9 1 -80.4864 34.4879 65.55 - 82 103.466 1072 9 0 -80.4861 34.4885 64.15 - 82 164.919 497 8 1 -80.4837 34.5109 35.55 - 82 106.116 1072 8 0 -80.4833 34.5119 34.15 - 82 88.6416 497 7 1 -80.4738 34.5296 5.55 - 82 319.835 1072 7 0 -80.4738 34.5309 4.15 - 82 121.946 497 6 1 -80.4729 34.5588 -24.45 - 82 101.741 1072 6 0 -80.4721 34.5595 -25.85 - 82 176.951 497 5 1 -80.4565 34.5776 -54.45 - 82 185.593 1072 5 0 -80.4554 34.5772 -55.85 - 82 131.13 498 4 1 -80.4275 34.5674 -84.45 - 82 118.219 1072 4 0 -80.4272 34.5677 -85.85 - 82 122.529 498 3 1 -80.4194 34.5802 -114.45 - 82 121.227 1072 3 0 -80.4189 34.5813 -115.85 - 82 108.255 498 2 1 -80.4115 34.6022 -144.45 - 82 201.089 1072 2 0 -80.4108 34.6042 -145.85 - 82 97.6223 498 1 1 -80.39 34.6467 -174.45 - 82 2.95117 1072 1 0 -80.391 34.65 -175.85 - 82 98.2999 1073 1 0 -80.3911 34.65 -175.872 - 82 115.896 498 0 1 -80.4079 34.716 -204.45 - 82 107.549 1073 0 0 -80.4086 34.7196 -205.85 -Number of digits in this event = 12 +Number of tracker hits in this event = 24 + 82 102.138 560 10 1 -68.0436 63.3383 95.55 + 82 114.78 1216 10 0 -68.0446 63.3378 94.15 + 82 115.168 559 9 1 -68.0631 63.3241 65.55 + 82 183.268 1216 9 0 -68.0648 63.322 64.15 + 82 156.637 559 8 1 -68.1031 63.277 35.55 + 82 96.6913 1216 8 0 -68.103 63.276 34.15 + 82 93.3659 559 7 1 -68.1021 63.2551 5.55 + 82 121.899 1216 7 0 -68.1008 63.2532 4.15 + 82 138.996 559 6 1 -68.0771 63.2163 -24.45 + 82 219.264 1215 6 0 -68.0751 63.2142 -25.85 + 82 97.0918 560 5 1 -68.0323 63.1849 -54.45 + 82 115.563 1215 5 0 -68.0285 63.1827 -55.85 + 82 101.006 560 4 1 -67.9496 63.1377 -84.45 + 82 139.757 1215 4 0 -67.9458 63.1353 -85.85 + 82 113.516 560 3 1 -67.8696 63.0917 -114.45 + 82 102.642 1215 3 0 -67.8647 63.0898 -115.85 + 82 97.8726 561 2 1 -67.7624 63.0492 -144.45 + 82 99.4149 1215 2 0 -67.7596 63.0506 -145.85 + 82 107.647 561 1 1 -67.7103 63.0785 -174.45 + 82 150.372 1215 1 0 -67.7078 63.0813 -175.85 + 82 133.023 561 0 1 -67.6621 63.1325 -204.45 + 82 91.6065 1215 0 0 -67.6597 63.1349 -205.85 + 82 164.407 560 6 1 -68.05 63.1789 -24.5526 + 82 118.907 561 6 1 -67.85 63.1094 -24.5599 +Number of digits in this event = 10 Using G4ParticleGun ... -1.39568 LIN +7.88333 LIN proton Event: 83 -Number of tracker hits in this event = 26 - 83 100.849 1289 11 1 78.0045 -8.7561 125.55 - 83 109.412 856 11 0 78.0022 -8.75537 124.15 - 83 118.452 1289 10 1 77.9593 -8.7591 95.55 - 83 151.911 856 10 0 77.9532 -8.759 94.15 - 83 149.78 1288 9 1 77.8296 -8.75496 65.55 - 83 179.338 856 9 0 77.8199 -8.75604 64.15 - 83 246.047 1287 8 1 77.6222 -8.78757 35.55 - 83 95.528 856 8 0 77.6113 -8.78717 34.15 - 83 118.477 1286 7 1 77.3909 -8.78744 5.55 - 83 111.44 856 7 0 77.3804 -8.78555 4.15 - 83 152.859 1285 6 1 77.1616 -8.74646 -24.45 - 83 202.528 856 6 0 77.1515 -8.74692 -25.85 - 83 127.555 1284 5 1 76.9471 -8.75089 -54.45 - 83 118.594 856 5 0 76.9413 -8.75175 -55.85 - 83 113.184 1283 4 1 76.8243 -8.78192 -84.45 - 83 114.074 856 4 0 76.8174 -8.78517 -85.85 - 83 130.794 1283 3 1 76.6678 -8.86555 -114.45 - 83 161.196 855 3 0 76.6583 -8.87074 -115.85 - 83 116.394 1282 2 1 76.4632 -8.98756 -144.45 - 83 120.926 855 2 0 76.4524 -8.99067 -145.85 - 83 122.659 1280 1 1 76.2301 -9.06491 -174.45 - 83 116.203 854 1 0 76.2213 -9.06655 -175.85 - 83 103.256 1280 0 1 76.0535 -9.11625 -204.45 - 83 116.772 854 0 0 76.0453 -9.1193 -205.85 - 83 438.819 1083 0 0 -52.7723 36.7113 -206.006 - 83 75.997 1547 3 0 120.204 129.563 -115.858 -Number of digits in this event = 16 +Number of tracker hits in this event = 386 + 83 104.522 313 9 1 -117.534 -43.5249 65.55 + 83 100.976 682 9 0 -117.534 -43.5254 64.15 + 83 91.4307 313 8 1 -117.534 -43.5357 35.55 + 83 91.4797 682 8 0 -117.534 -43.5369 34.15 + 83 96.8755 313 7 1 -117.532 -43.5606 5.55 + 83 132.91 682 7 0 -117.531 -43.5614 4.15 + 83 116.781 313 6 1 -117.525 -43.575 -24.45 + 83 135.907 682 6 0 -117.526 -43.5755 -25.85 + 83 2860.65 314 5 1 -117.302 -43.4802 -54.45 + 83 5.61345 687 7 0 -149.935 -42.5629 3.75 + 83 91.0814 542 5 0 -121.242 -71.4724 -56.25 + 83 221.654 543 5 0 -121.239 -71.45 -56.199 + 83 7606.43 310 5 1 -118.048 -44.1823 -54.45 + 83 10274.9 309 5 1 -118.15 -44.2971 -54.4864 + 83 6276.07 308 5 1 -118.35 -44.522 -54.5561 + 83 7581.07 307 5 1 -118.55 -44.7479 -54.6215 + 83 1920.25 1429 12 0 -148.56 106.096 154.098 + 83 4632.37 1430 12 0 -148.67 106.15 154.108 + 83 3474.79 1431 12 0 -148.85 106.35 154.048 + 83 63.3896 1432 12 0 -148.916 106.55 154.046 + 83 167.738 1433 12 0 -148.98 106.75 154.074 + 83 72.9331 1434 12 0 -149.029 106.95 154.081 + 83 93.5949 1435 12 0 -149.056 107.15 154.021 + 83 98.8127 1436 12 0 -149.039 107.351 153.807 + 83 63.595 1437 12 0 -149.123 107.55 153.799 + 83 82.3429 1438 12 0 -149.117 107.75 153.769 + 83 84.3466 1439 12 0 -149.053 107.95 153.782 + 83 42.8642 1440 12 0 -149.054 108.15 153.814 + 83 84.707 1604 12 0 -131.088 140.978 153.75 + 83 163.103 1605 12 0 -131.124 141.15 153.818 + 83 290.936 140 12 1 -152.026 106.042 155.15 + 83 13.7126 423 12 0 12.0017 -95.3836 153.75 + 83 313.004 424 12 0 11.9982 -95.3487 153.769 + 83 4112.61 828 6 0 -177.618 -14.4382 -26.25 + 83 3191.39 750 6 0 -35.147 -29.9579 -26.25 + 83 2856.83 751 6 0 -34.5089 -29.85 -26.0369 + 83 986.811 745 6 1 -31.0125 -29.2164 -24.85 + 83 1230.88 746 6 1 -30.85 -29.1869 -24.7949 + 83 1294.38 747 6 1 -30.65 -29.1498 -24.7283 + 83 1469.41 748 6 1 -30.45 -29.116 -24.6625 + 83 1614 749 6 1 -30.25 -29.0748 -24.5962 + 83 1934.31 750 6 1 -30.05 -29.035 -24.5278 + 83 316.553 751 6 1 -29.85 -28.9933 -24.4605 + 83 35.5254 276 13 0 -44.2648 -124.82 183.75 + 83 51.9702 275 13 0 -44.3117 -124.95 183.812 + 83 68.051 274 13 0 -44.3802 -125.151 183.924 + 83 55.8986 273 13 0 -44.4465 -125.35 184.045 + 83 52.9157 676 13 1 -44.8191 -126.667 185.15 + 83 145.666 675 13 1 -44.85 -126.778 185.241 + 83 86.1641 159 14 0 -71.0421 -148.336 213.75 + 83 127.01 158 14 0 -71.0599 -148.35 213.768 + 83 3.32314 157 14 0 -71.2818 -148.55 214.13 + 83 118.748 541 14 1 -71.6641 -148.856 215.15 + 83 188.306 540 14 1 -71.85 -148.958 215.529 + 83 218.04 538 14 1 -72.3134 -149.139 215.55 + 83 217.531 153 14 0 -72.5511 -149.523 214.149 + 83 180.057 152 14 0 -72.5684 -149.55 214.09 + 83 32.8254 151 14 0 -72.9098 -149.75 213.834 + 83 563.579 954 9 1 11.0079 17.8336 65.3585 + 83 787.724 801 6 0 -82.7581 -19.7815 -26.25 + 83 1252.92 802 6 0 -82.566 -19.65 -26.0952 + 83 33.8434 803 6 0 -82.2732 -19.45 -25.8533 + 83 135.066 494 6 1 -81.0832 -18.598 -24.85 + 83 894.261 495 6 1 -81.05 -18.5742 -24.822 + 83 803.756 496 6 1 -80.85 -18.4319 -24.6524 + 83 194.23 497 6 1 -80.65 -18.291 -24.4837 + 83 1921.14 897 7 0 -51.7323 -0.649144 3.75 + 83 552.11 898 7 0 -51.4054 -0.45 4.06945 + 83 59.3732 648 7 1 -50.2577 0.238875 5.15 + 83 1211.11 649 7 1 -50.25 0.243485 5.15724 + 83 1324.98 650 7 1 -50.05 0.363425 5.34412 + 83 130.757 651 7 1 -49.85 0.488468 5.52719 + 83 3780.71 968 8 0 -34.8396 13.6648 33.75 + 83 58.3198 969 8 0 -34.6272 13.85 34.1447 + 83 297.216 729 8 1 -34.0641 14.2943 35.15 + 83 5795.58 730 8 1 -34.05 14.3054 35.1752 + 83 1024.86 731 8 1 -33.85 14.4784 35.5233 + 83 3510.3 311 5 1 -117.906 -42.4343 -54.45 + 83 1415.02 306 5 1 -118.75 -39.494 -54.7885 + 83 457.394 750 5 0 -121.362 -30.0098 -55.85 + 83 550.386 751 5 0 -121.406 -29.85 -55.8678 + 83 617.94 752 5 0 -121.462 -29.65 -55.8905 + 83 710.49 753 5 0 -121.519 -29.45 -55.9108 + 83 708.603 754 5 0 -121.577 -29.25 -55.9315 + 83 563.316 755 5 0 -121.634 -29.05 -55.9519 + 83 636.233 756 5 0 -121.689 -28.85 -55.972 + 83 669.287 757 5 0 -121.756 -28.65 -55.9907 + 83 653.606 758 5 0 -121.824 -28.45 -56.0107 + 83 669.901 759 5 0 -121.891 -28.25 -56.0292 + 83 626.168 760 5 0 -121.959 -28.05 -56.0483 + 83 627.96 761 5 0 -122.027 -27.85 -56.0699 + 83 603.852 762 5 0 -122.093 -27.65 -56.0908 + 83 684.07 763 5 0 -122.16 -27.45 -56.1099 + 83 767.688 764 5 0 -122.226 -27.25 -56.1337 + 83 735.868 765 5 0 -122.292 -27.05 -56.1589 + 83 723.555 766 5 0 -122.357 -26.85 -56.1813 + 83 736.934 767 5 0 -122.423 -26.65 -56.2051 + 83 746.021 768 5 0 -122.489 -26.45 -56.2239 + 83 401.425 769 5 0 -122.552 -26.25 -56.2409 + 83 4775.1 313 5 1 -117.527 -43.6316 -54.45 + 83 2753.49 679 5 0 -117.523 -44.1087 -55.85 + 83 1410.62 315 5 1 -117.15 -43.3777 -54.7283 + 83 1496.42 685 5 0 -116.283 -42.8731 -55.85 + 83 843.32 686 5 0 -116.243 -42.85 -55.9015 + 83 205.077 431 4 1 -93.8161 -29.9122 -84.45 + 83 672.231 432 4 1 -93.75 -29.8805 -84.5309 + 83 161.101 433 4 1 -93.55 -29.7835 -84.7734 + 83 575.557 753 4 0 -92.6756 -29.3471 -85.85 + 83 316.913 754 4 0 -92.4812 -29.25 -86.0894 + 83 653.709 553 3 1 -69.4451 -17.6528 -114.45 + 83 485.96 554 3 1 -69.25 -17.5564 -114.679 + 83 12.9914 814 3 0 -68.2423 -17.0515 -115.85 + 83 1109.54 815 3 0 -68.2392 -17.05 -115.854 + 83 670.432 681 2 1 -43.849 -4.41843 -144.45 + 83 424.903 682 2 1 -43.65 -4.29745 -144.69 + 83 653.084 881 2 0 -42.699 -3.74112 -145.85 + 83 666.659 882 2 0 -42.5425 -3.65 -146.041 + 83 163.005 802 1 1 -19.4967 10.0941 -174.45 + 83 815.265 803 1 1 -19.45 10.1211 -174.504 + 83 409.302 804 1 1 -19.25 10.2359 -174.735 + 83 646.239 953 1 0 -18.2925 10.7924 -175.85 + 83 962.267 954 1 0 -18.1933 10.85 -175.965 + 83 248.396 934 0 1 6.98775 25.6281 -204.45 + 83 944.208 935 0 1 7.05 25.6584 -204.505 + 83 753.342 936 0 1 7.25 25.755 -204.685 + 83 380.22 1031 0 0 8.62238 26.4012 -205.85 + 83 1537.66 1032 0 0 8.72661 26.45 -205.938 + 83 686.165 675 5 0 -116.465 -44.8632 -55.85 + 83 528.026 674 5 0 -116.311 -45.05 -56.0832 + 83 312.864 410 4 1 -98.0107 -67.684 -84.45 + 83 964.72 411 4 1 -97.95 -67.7906 -84.5716 + 83 588.464 555 4 0 -97.3207 -68.9168 -85.85 + 83 872.664 554 4 0 -97.2465 -69.05 -86.0017 + 83 38.392 553 4 0 -97.1356 -69.25 -86.2326 + 83 298.564 483 3 1 -83.2992 -93.6854 -114.45 + 83 1152.33 484 3 1 -83.25 -93.7521 -114.532 + 83 684.704 426 3 0 -82.448 -94.8066 -115.85 + 83 744.485 425 3 0 -82.3382 -94.95 -116.029 + 83 903.699 575 2 1 -64.9951 -117.261 -144.45 + 83 2747.91 576 2 1 -64.85 -117.437 -144.682 + 83 4563.79 309 2 0 -64.0981 -118.346 -145.85 + 83 3070.29 308 2 0 -64.0945 -118.35 -145.856 + 83 78.2675 379 2 0 -68.277 -104.312 -146.25 + 83 152.635 378 2 0 -68.3439 -104.35 -146.148 + 83 1800.07 310 2 0 -63.9027 -118.15 -145.977 + 83 1537.09 343 4 1 -111.485 -32.7402 -84.45 + 83 1436.16 738 4 0 -111.274 -32.3466 -85.85 + 83 162.815 739 4 0 -111.221 -32.25 -86.2009 + 83 2034.38 362 3 1 -107.737 -24.8739 -114.45 + 83 2291.89 777 3 0 -107.723 -24.6022 -115.85 + 83 125.452 357 2 1 -108.551 -18.8383 -144.45 + 83 681.667 358 2 1 -108.55 -18.8384 -144.452 + 83 935.862 316 5 1 -116.95 -43.0956 -54.7383 + 83 153.301 690 5 0 -115.578 -41.9302 -55.85 + 83 500.8 691 5 0 -115.484 -41.85 -55.9265 + 83 263.859 692 5 0 -115.249 -41.65 -56.1147 + 83 339.525 499 4 1 -80.2121 -11.8679 -84.45 + 83 322.576 500 4 1 -80.05 -11.7294 -84.5867 + 83 231.636 501 4 1 -79.85 -11.5587 -84.7547 + 83 351.358 848 4 0 -78.5646 -10.4453 -85.85 + 83 407.737 849 4 0 -78.3394 -10.25 -86.0419 + 83 20.3859 850 4 0 -78.1077 -10.05 -86.2372 + 83 397.532 677 3 1 -44.6387 18.704 -114.45 + 83 523.019 678 3 1 -44.45 18.8752 -114.605 + 83 159.045 679 3 1 -44.25 19.0564 -114.769 + 83 491.338 1001 3 0 -42.9196 20.2655 -115.85 + 83 420.585 1002 3 0 -42.7164 20.45 -116.015 + 83 112.27 1003 3 0 -42.495 20.65 -116.195 + 83 346.965 860 2 1 -8.02943 52.4701 -144.45 + 83 422.371 861 2 1 -7.85 52.6387 -144.603 + 83 322.686 862 2 1 -7.65 52.8258 -144.774 + 83 105.627 1169 2 0 -6.39142 53.9995 -145.85 + 83 445.073 1170 2 0 -6.33724 54.05 -145.896 + 83 376.453 1171 2 0 -6.12272 54.25 -146.08 + 83 256.677 1037 1 1 27.5406 85.7087 -174.45 + 83 370.802 1038 1 1 27.65 85.8129 -174.544 + 83 317.981 1039 1 1 27.85 86.0021 -174.715 + 83 441.992 1336 1 0 29.1581 87.2644 -175.85 + 83 436.394 1337 1 0 29.3501 87.45 -176.017 + 83 104.587 1338 1 0 29.5548 87.65 -176.196 + 83 441.153 1209 0 1 61.8682 119.558 -204.45 + 83 417.389 1210 0 1 62.05 119.732 -204.615 + 83 154.382 1211 0 1 62.25 119.922 -204.798 + 83 329.689 1504 0 0 63.4112 121.015 -205.85 + 83 527.99 1505 0 0 63.5553 121.15 -205.981 + 83 179.075 1506 0 0 63.7696 121.35 -206.177 + 83 45.2343 672 5 0 -119.699 -45.6421 -55.85 + 83 1470.8 671 5 0 -119.707 -45.65 -55.856 + 83 1545.92 670 5 0 -119.917 -45.85 -56.0081 + 83 1096.33 669 5 0 -120.131 -46.05 -56.161 + 83 185.21 317 5 1 -116.75 -42.8817 -54.6246 + 83 193.905 318 5 1 -116.55 -42.6966 -54.7169 + 83 53.7677 319 5 1 -116.35 -42.5131 -54.8078 + 83 2133.92 698 5 0 -114.036 -40.4036 -55.85 + 83 96.7108 699 5 0 -113.868 -40.25 -55.9259 + 83 135.486 700 5 0 -113.648 -40.05 -56.0238 + 83 107.737 701 5 0 -113.428 -39.85 -56.1213 + 83 69.484 702 5 0 -113.209 -39.65 -56.2186 + 83 135.76 646 4 1 -50.7123 19.4762 -84.45 + 83 171.928 645 4 1 -50.85 19.7662 -84.542 + 83 178.153 644 4 1 -51.05 20.1859 -84.6725 + 83 77.8156 643 4 1 -51.25 20.612 -84.8018 + 83 71.7215 1020 4 0 -52.9177 24.1194 -85.85 + 83 102.966 1021 4 0 -52.9798 24.25 -85.889 + 83 81.316 1022 4 0 -53.0745 24.45 -85.9482 + 83 92.3331 1023 4 0 -53.169 24.65 -86.0075 + 83 79.973 1024 4 0 -53.2631 24.85 -86.0649 + 83 82.9404 1025 4 0 -53.3565 25.05 -86.1214 + 83 109.969 1026 4 0 -53.4495 25.25 -86.1767 + 83 29.5504 1027 4 0 -53.5431 25.45 -86.232 + 83 18.458 386 3 1 -102.927 128.587 -114.45 + 83 136.322 385 3 1 -102.95 128.617 -114.461 + 83 156.916 384 3 1 -103.15 128.878 -114.555 + 83 205.245 383 3 1 -103.35 129.139 -114.648 + 83 166.302 382 3 1 -103.55 129.4 -114.739 + 83 14.8383 381 3 1 -103.75 129.664 -114.835 + 83 61.8266 1561 3 0 -105.833 132.412 -115.85 + 83 96.6157 1562 3 0 -105.938 132.55 -115.901 + 83 127.73 1563 3 0 -106.091 132.75 -115.974 + 83 110.039 1564 3 0 -106.246 132.95 -116.049 + 83 115.221 1565 3 0 -106.399 133.15 -116.123 + 83 90.7381 1566 3 0 -106.55 133.35 -116.194 + 83 703.766 678 5 0 -116.928 -44.2874 -55.85 + 83 596.348 677 5 0 -116.786 -44.45 -56.2236 + 83 346.023 367 4 1 -106.627 -56.5737 -84.45 + 83 331.288 368 4 1 -106.55 -56.6726 -84.6692 + 83 188.009 614 4 0 -106.131 -57.2019 -85.85 + 83 553.753 613 4 0 -106.093 -57.25 -85.9571 + 83 245.435 422 3 1 -95.6018 -70.0794 -114.45 + 83 569.936 423 3 1 -95.55 -70.1457 -114.583 + 83 329.56 546 3 0 -95.042 -70.7734 -115.85 + 83 582.79 545 3 0 -94.9799 -70.85 -116.005 + 83 772.745 481 2 1 -83.8159 -84.9866 -144.45 + 83 774.996 471 2 0 -83.2885 -85.6763 -145.85 + 83 89.7391 470 2 0 -83.1554 -85.85 -146.203 + 83 474.369 539 1 1 -72.1335 -99.9415 -174.45 + 83 452.609 540 1 1 -72.05 -100.041 -174.642 + 83 479.236 397 1 0 -71.5144 -100.64 -175.85 + 83 537.613 396 1 0 -71.4151 -100.75 -176.073 + 83 928.168 607 0 1 -58.62 -115.063 -204.45 + 83 795.278 608 0 1 -58.45 -115.237 -204.816 + 83 103.669 609 0 1 -58.2493 -115.634 -204.742 + 83 228.556 316 0 0 -58.3479 -116.772 -205.85 + 83 1596.08 326 0 0 -58.0093 -114.948 -205.85 + 83 355.411 1678 6 0 89.6428 155.86 -26.25 + 83 780.026 1679 6 0 89.736 155.95 -26.2373 + 83 474.028 1680 6 0 89.9373 156.15 -26.2117 + 83 776.842 1681 6 0 90.15 156.362 -26.1851 + 83 968.855 1682 6 0 90.3392 156.55 -26.1629 + 83 846.63 1683 6 0 90.5406 156.75 -26.1364 + 83 893.699 1684 6 0 90.7427 156.95 -26.1173 + 83 973.025 1685 6 0 90.9442 157.15 -26.0963 + 83 828.758 1686 6 0 91.1529 157.35 -26.0756 + 83 948.085 1687 6 0 91.3708 157.55 -26.0649 + 83 1040.59 1688 6 0 91.59 157.75 -26.0536 + 83 986.172 1689 6 0 91.7972 157.95 -26.0355 + 83 997.815 1690 6 0 92.0069 158.15 -26.017 + 83 1053.03 1691 6 0 92.2228 158.35 -25.9963 + 83 1076.62 1692 6 0 92.4351 158.55 -25.9752 + 83 1030.26 1693 6 0 92.6503 158.75 -25.9541 + 83 1169.36 1694 6 0 92.8694 158.95 -25.9328 + 83 1160.36 1695 6 0 93.09 159.15 -25.9131 + 83 1112.46 1696 6 0 93.3071 159.35 -25.8942 + 83 1335.79 1697 6 0 93.5275 159.55 -25.8857 + 83 1414.78 1698 6 0 93.7497 159.75 -25.8768 + 83 1449.02 1699 6 0 93.9748 159.95 -25.8707 + 83 1606.57 1700 6 0 94.2225 160.15 -25.8683 + 83 1626.62 1701 6 0 94.4715 160.35 -25.8604 + 83 1915.51 1702 6 0 94.729 160.55 -25.8656 + 83 2068.43 1703 6 0 94.9917 160.75 -25.8601 + 83 2380.81 1704 6 0 95.2468 160.95 -25.8552 + 83 306.311 1705 6 0 95.4982 161.15 -25.8509 + 83 235.558 680 5 0 -117.274 -43.9029 -55.85 + 83 102.976 337 4 1 -112.579 -49.6379 -84.45 + 83 108.849 338 4 1 -112.55 -49.6707 -84.6168 + 83 278.106 650 4 0 -112.334 -49.9133 -85.85 + 83 233.169 364 3 1 -107.328 -55.5511 -114.45 + 83 45.0379 621 3 0 -107.079 -55.8327 -115.85 + 83 168.602 620 3 0 -107.064 -55.85 -115.936 + 83 215.934 390 2 1 -102.011 -61.5929 -144.45 + 83 73.4128 391 2 1 -101.95 -61.6539 -144.77 + 83 229.018 590 2 0 -101.743 -61.8603 -145.85 + 83 236.301 419 1 1 -96.2396 -67.3181 -174.45 + 83 165.27 562 1 0 -95.9695 -67.6111 -175.85 + 83 114.772 561 1 0 -95.9337 -67.65 -176.035 + 83 198.469 448 0 1 -90.439 -73.6731 -204.45 + 83 82.0898 530 0 0 -90.1753 -73.9847 -205.85 + 83 724.883 742 6 0 -109.844 -31.5931 -26.25 + 83 132.324 743 6 0 -109.753 -31.45 -25.916 + 83 1115.77 353 6 1 -109.456 -31.0005 -24.85 + 83 27.2509 354 6 1 -109.35 -30.8386 -24.4655 + 83 605.17 806 7 0 -99.7992 -18.7541 3.75 + 83 351.342 807 7 0 -99.7168 -18.65 3.99292 + 83 1122.12 404 7 1 -99.3266 -18.1572 5.15 + 83 847.042 868 8 0 -89.3569 -6.36055 33.75 + 83 325.939 869 8 0 -89.2633 -6.25 34.0182 + 83 435.576 455 8 1 -88.8955 -5.77029 35.15 + 83 641.98 456 8 1 -88.85 -5.71029 35.2913 + 83 269.899 923 9 0 -78.9309 4.81225 63.75 + 83 802.056 924 9 0 -78.8951 4.85 63.8524 + 83 1353.46 508 9 1 -78.4445 5.32089 65.15 + 83 36.6143 969 10 0 -67.7933 14.0481 93.75 + 83 1410.71 970 10 0 -67.791 14.05 93.7563 + 83 361.773 563 10 1 -67.2867 14.4615 95.15 + 83 1238.61 564 10 1 -67.25 14.4915 95.2526 + 83 1774.26 1008 11 0 -60.6139 21.6885 123.75 + 83 1940.67 598 11 1 -60.3438 22.0488 125.15 + 83 596.56 1037 12 0 -54.318 27.6368 153.75 + 83 4022.78 1038 12 0 -54.3036 27.65 153.818 + 83 4361.63 630 12 1 -54.0086 28.0089 155.15 + 83 1.79418 376 4 1 -104.751 -54.3784 -84.45 + 83 191.599 377 4 1 -104.75 -54.3796 -84.4534 + 83 254.741 625 4 0 -104.162 -54.8897 -85.85 + 83 182.08 440 3 1 -92.1188 -65.3309 -114.45 + 83 0.40245 571 3 0 -91.5314 -65.8497 -115.85 + 83 205.323 570 3 0 -91.5311 -65.85 -115.851 + 83 48.1043 502 2 1 -79.5096 -76.4359 -144.45 + 83 138.307 503 2 1 -79.45 -76.4871 -144.591 + 83 106.324 515 2 0 -78.9159 -76.9474 -145.85 + 83 70.3939 514 2 0 -78.7969 -77.05 -146.131 + 83 212.292 566 1 1 -66.754 -87.4171 -174.45 + 83 99.5172 567 1 1 -66.65 -87.5076 -174.694 + 83 229.722 460 1 0 -66.1565 -87.9378 -175.85 + 83 31.5054 459 1 0 -66.0278 -88.05 -176.151 + 83 131.57 630 0 1 -53.9586 -98.6437 -204.45 + 83 209.215 631 0 1 -53.85 -98.7387 -204.701 + 83 150.992 404 0 0 -53.3563 -99.1699 -205.85 + 83 1011.21 676 5 0 -115.05 -44.65 -55.9935 + 83 459.623 523 4 1 -75.3914 -61.7105 -84.45 + 83 813.707 524 4 1 -75.25 -61.7659 -84.5568 + 83 645.997 525 4 1 -75.05 -61.8453 -84.7117 + 83 474.272 588 4 0 -73.6115 -62.4046 -85.85 + 83 1293.86 587 4 0 -73.4932 -62.45 -85.9436 + 83 230.346 710 3 1 -37.8987 -75.2861 -114.45 + 83 741.408 711 3 1 -37.85 -75.2992 -114.48 + 83 914.532 712 3 1 -37.65 -75.351 -114.605 + 83 764.319 713 3 1 -37.45 -75.4044 -114.731 + 83 2506.31 520 3 0 -35.704 -75.8732 -115.85 + 83 854.299 957 2 1 11.5416 -88.37 -144.45 + 83 1725.92 958 2 1 11.65 -88.3979 -144.551 + 83 1047.22 959 2 1 11.85 -88.4461 -144.74 + 83 4509.82 456 2 0 12.8673 -88.6625 -145.85 + 83 236.754 312 5 1 -117.55 -43.5489 -54.7672 + 83 67.8429 682 5 0 -117.582 -43.468 -55.85 + 83 29.6075 683 5 0 -117.589 -43.45 -56.0903 + 83 115.87 308 4 1 -118.442 -41.3171 -84.45 + 83 110.636 694 4 0 -118.493 -41.2049 -85.85 + 83 132.882 303 3 1 -119.495 -38.906 -114.45 + 83 255.521 706 3 0 -119.534 -38.7989 -115.85 + 83 217.173 299 2 1 -120.319 -36.624 -144.45 + 83 171.112 717 2 0 -120.345 -36.5226 -145.85 + 83 108.653 296 1 1 -120.854 -34.469 -174.45 + 83 206.983 728 1 0 -120.884 -34.3661 -175.85 + 83 170.238 293 0 1 -121.511 -32.2733 -204.45 + 83 106.781 739 0 0 -121.541 -32.1771 -205.85 + 83 213.906 684 5 0 -117.657 -43.161 -55.85 + 83 203.778 301 4 1 -119.805 -35.563 -84.45 + 83 307.829 724 4 0 -119.916 -35.1788 -85.85 + 83 233.942 289 3 1 -122.195 -27.3137 -114.45 + 83 112.918 765 3 0 -122.305 -26.918 -115.85 + 83 97.8061 766 3 0 -122.324 -26.85 -116.09 + 83 392.123 278 2 1 -124.494 -18.8591 -144.45 + 83 192.682 808 2 0 -124.603 -18.4386 -145.85 + 83 227.295 266 1 1 -126.817 -9.87828 -174.45 + 83 34.1743 852 1 0 -126.922 -9.46848 -175.85 + 83 183.953 853 1 0 -126.926 -9.45 -175.913 + 83 192.62 255 0 1 -129.094 -1.0516 -204.45 + 83 272.309 897 0 0 -129.21 -0.640205 -205.85 + 83 160.982 725 4 0 -119.963 -35.05 -85.942 + 83 16.3778 1757 6 0 -13.2265 171.709 -26.25 + 83 89.2624 1758 6 0 -13.2064 171.75 -26.2446 + 83 250.927 1759 6 0 -13.1099 171.95 -26.2186 + 83 108.118 1760 6 0 -13.0118 172.15 -26.1905 + 83 119.142 1761 6 0 -12.9136 172.35 -26.1625 + 83 120.507 1762 6 0 -12.8165 172.55 -26.1342 + 83 126.836 1763 6 0 -12.7226 172.75 -26.1055 + 83 119.524 1764 6 0 -12.6279 172.95 -26.0772 + 83 139.032 1765 6 0 -12.5347 173.15 -26.0499 + 83 135.737 1766 6 0 -12.4426 173.35 -26.0252 + 83 117.294 1767 6 0 -12.3501 173.55 -26.0013 + 83 194.434 1768 6 0 -12.2579 173.75 -25.979 + 83 297.497 1769 6 0 -12.1662 173.95 -25.9584 + 83 139.341 1770 6 0 -12.0695 174.15 -25.934 + 83 284.657 1771 6 0 -11.973 174.35 -25.9086 + 83 136.829 1772 6 0 -11.8765 174.55 -25.8828 + 83 14.3101 1773 6 0 -11.7821 174.75 -25.8564 +Number of digits in this event = 299 Using G4ParticleGun ... -9.13402 LIN +9.943 LIN proton Event: 84 -Number of tracker hits in this event = 35 - 84 88.4026 1030 11 1 26.1011 38.1549 125.55 - 84 99.743 1090 11 0 26.101 38.1548 124.15 - 84 99.1056 1030 10 1 26.0999 38.1511 95.55 - 84 271.884 1090 10 0 26.0998 38.1512 94.15 - 84 334.378 1030 9 1 26.0964 38.1483 65.55 - 84 142.84 1090 9 0 26.0963 38.1482 64.15 - 84 98.4513 1030 8 1 26.0963 38.142 35.55 - 84 162.573 1090 8 0 26.096 38.1424 34.15 - 84 107.983 1030 7 1 26.0914 38.1506 5.55 - 84 101.096 1090 7 0 26.0911 38.1515 4.15 - 84 102.776 1030 6 1 26.0844 38.1696 -24.45 - 84 120.283 1090 6 0 26.0848 38.1699 -25.85 - 84 217.779 1030 5 1 26.0958 38.1796 -54.45 - 84 132.553 1090 5 0 26.0965 38.1798 -55.85 - 84 119.83 1030 4 1 26.1127 38.1839 -84.45 - 84 149.899 1090 4 0 26.113 38.1846 -85.85 - 84 111.325 1030 3 1 26.1197 38.199 -114.45 - 84 112.131 1090 3 0 26.12 38.1993 -115.85 - 84 131.439 1030 2 1 26.1234 38.2061 -144.45 - 84 97.9687 1090 2 0 26.1258 38.2036 -145.85 - 84 127.47 1030 1 1 26.1705 38.1541 -174.45 - 84 241.787 1090 1 0 26.1733 38.1524 -175.85 - 84 218.118 1030 0 1 26.2284 38.1164 -204.45 - 84 196.386 1090 0 0 26.2311 38.1143 -205.85 - 84 73.9138 1031 1 1 26.25 38.0986 -174.488 - 84 86.3313 1032 1 1 26.45 38.043 -174.624 - 84 106.051 1033 1 1 26.65 38.0338 -174.683 - 84 206.183 1034 1 1 26.85 38.0857 -174.721 - 84 11.9502 1091 9 0 26.094 38.2507 63.7967 - 84 182.489 1293 9 0 44.9928 78.7595 63.7502 - 84 11.0085 1294 9 0 45.3636 78.8501 63.7726 - 84 29.715 1464 9 0 91.4991 113.122 63.75 - 84 349.273 1465 9 0 91.5304 113.15 63.7727 - 84 77.5706 1466 9 0 91.8364 113.35 64.0115 - 84 60.7107 1091 10 0 25.9909 38.25 94.069 -Number of digits in this event = 17 +Number of tracker hits in this event = 25 + 84 99.2396 1232 11 1 66.5945 13.72 125.55 + 84 138.514 968 11 0 66.5942 13.7199 124.15 + 84 140.169 1232 10 1 66.5842 13.7158 95.55 + 84 129.287 968 10 0 66.5835 13.7149 94.15 + 84 128.325 1232 9 1 66.5652 13.6984 65.55 + 84 128.821 968 9 0 66.5639 13.6972 64.15 + 84 103.985 1232 8 1 66.5376 13.6736 35.55 + 84 136.205 968 8 0 66.5357 13.6718 34.15 + 84 155.033 1232 7 1 66.4959 13.6346 5.55 + 84 124.958 967 7 0 66.4931 13.6327 4.15 + 84 105.505 1231 6 1 66.4362 13.5914 -24.45 + 84 120.41 967 6 0 66.4337 13.5891 -25.85 + 84 117.348 1231 5 1 66.3844 13.5439 -54.45 + 84 117.136 967 5 0 66.3827 13.5415 -55.85 + 84 156.427 1231 4 1 66.3474 13.4922 -84.45 + 84 104.566 967 4 0 66.3443 13.4891 -85.85 + 84 111.38 1231 3 1 66.2819 13.4235 -114.45 + 84 94.8332 966 3 0 66.2776 13.4204 -115.85 + 84 105.46 1230 2 1 66.1866 13.3615 -144.45 + 84 131.656 966 2 0 66.1825 13.3595 -145.85 + 84 103.944 1230 1 1 66.0974 13.3172 -174.45 + 84 130.616 966 1 0 66.0937 13.3142 -175.85 + 84 99.146 1229 0 1 66.0175 13.2535 -204.45 + 84 148.33 966 0 0 66.0135 13.2508 -205.85 + 84 366.598 972 9 0 65.596 14.5949 64.15 +Number of digits in this event = 15 Using G4ParticleGun ... -8.10834 LIN +7.13949 LIN proton Event: 85 -Number of tracker hits in this event = 24 - 85 127.403 758 11 1 -28.2733 -27.9653 125.55 - 85 108.006 760 11 0 -28.2739 -27.9647 124.15 - 85 137.217 758 10 1 -28.2914 -27.9475 95.55 - 85 97.5622 760 10 0 -28.2927 -27.9473 94.15 - 85 106.948 758 9 1 -28.3218 -27.941 65.55 - 85 114.341 760 9 0 -28.3237 -27.9401 64.15 - 85 140.343 758 8 1 -28.3627 -27.9232 35.55 - 85 111.035 760 8 0 -28.3658 -27.9232 34.15 - 85 102.478 758 7 1 -28.4328 -27.9275 5.55 - 85 96.7022 760 7 0 -28.4354 -27.9279 4.15 - 85 100.772 757 6 1 -28.4857 -27.937 -24.45 - 85 101.694 760 6 0 -28.4879 -27.938 -25.85 - 85 109.538 757 5 1 -28.529 -27.9637 -54.45 - 85 208.363 760 5 0 -28.5317 -27.9639 -55.85 - 85 96.6778 757 4 1 -28.5866 -27.9679 -84.45 - 85 218.779 760 4 0 -28.5902 -27.9682 -85.85 - 85 117.589 756 3 1 -28.662 -27.9744 -114.45 - 85 143.06 760 3 0 -28.6664 -27.9738 -115.85 - 85 156.95 756 2 1 -28.7575 -27.9587 -144.45 - 85 106.524 760 2 0 -28.7624 -27.9588 -145.85 - 85 160.751 755 1 1 -28.8653 -27.9588 -174.45 - 85 137.355 760 1 0 -28.8699 -27.9598 -175.85 - 85 101.165 755 0 1 -28.9618 -27.9803 -204.45 - 85 133.28 760 0 0 -28.9666 -27.9815 -205.85 -Number of digits in this event = 11 +Number of tracker hits in this event = 31 + 85 243.44 1047 11 1 29.4737 10.621 125.55 + 85 217.052 952 11 0 29.4731 10.6206 124.15 + 85 144.52 1047 10 1 29.4631 10.6123 95.55 + 85 95.0607 952 10 0 29.4628 10.611 94.15 + 85 102.484 1047 9 1 29.4582 10.586 65.55 + 85 101.174 952 9 0 29.4584 10.5836 64.15 + 85 84.9733 1047 8 1 29.4647 10.5361 35.55 + 85 86.3658 952 8 0 29.4635 10.5361 34.15 + 85 132.206 1047 7 1 29.4712 10.5589 5.55 + 85 113.401 952 7 0 29.4713 10.5593 4.15 + 85 107.639 1047 6 1 29.4773 10.5677 -24.45 + 85 90.1638 952 6 0 29.4769 10.5664 -25.85 + 85 117.208 1047 5 1 29.4699 10.5407 -54.45 + 85 212.425 952 5 0 29.4684 10.539 -55.85 + 85 93.1496 1046 4 1 29.438 10.5037 -84.45 + 85 117.31 952 4 0 29.4369 10.5018 -85.85 + 85 128.526 1046 3 1 29.4146 10.4618 -114.45 + 85 108.115 952 3 0 29.4142 10.4596 -115.85 + 85 186.215 1046 2 1 29.4048 10.4143 -144.45 + 85 151.906 951 2 0 29.4051 10.4116 -145.85 + 85 102.678 1046 1 1 29.4125 10.3536 -174.45 + 85 124.153 951 1 0 29.4137 10.3495 -175.85 + 85 111.282 1046 0 1 29.4373 10.2691 -204.45 + 85 149.324 951 0 0 29.4378 10.2656 -205.85 + 85 95.8899 1284 4 0 -7.56792 76.9563 -86.25 + 85 103.168 1285 4 0 -7.63 77.0503 -86.1838 + 85 76.4357 1286 4 0 -7.84052 77.25 -86.054 + 85 155.682 1287 4 0 -7.99605 77.45 -86.0805 + 85 300.336 1288 4 0 -8.09978 77.65 -86.0415 + 85 195.012 1289 4 0 -8.54304 77.8501 -86.0743 + 85 8.48214 418 4 0 14.8184 -96.35 -86.0747 +Number of digits in this event = 16 Using G4ParticleGun ... -1.11781 LIN +1.88522 LIN proton Event: 86 Number of tracker hits in this event = 24 - 86 156.977 1598 8 1 139.883 -3.89671 35.55 - 86 330.529 880 8 0 139.881 -3.89416 34.15 - 86 146.817 1598 7 1 139.821 -3.83373 5.55 - 86 217.079 881 7 0 139.818 -3.83082 4.15 - 86 105.2 1598 6 1 139.793 -3.75005 -24.45 - 86 118.629 881 6 0 139.792 -3.74392 -25.85 - 86 110.585 1598 5 1 139.801 -3.60761 -54.45 - 86 317.988 882 5 0 139.8 -3.59783 -55.85 - 86 140.477 1598 4 1 139.76 -3.38541 -84.45 - 86 130.654 883 4 0 139.76 -3.37667 -85.85 - 86 108.19 1598 3 1 139.775 -3.19888 -114.45 - 86 148.833 884 3 0 139.773 -3.18647 -115.85 - 86 146.094 1597 2 1 139.73 -2.95265 -144.45 - 86 128.98 885 2 0 139.725 -2.94287 -145.85 - 86 119.337 1597 1 1 139.618 -2.73948 -174.45 - 86 120.85 886 1 0 139.611 -2.72787 -175.85 - 86 105.167 1596 0 1 139.445 -2.47746 -204.45 - 86 116.624 887 0 0 139.44 -2.46481 -205.85 - 86 42.657 1597 5 1 139.617 -3.7597 -54.45 - 86 95.7652 1596 5 1 139.55 -3.84294 -54.5442 - 86 63.691 1595 5 1 139.349 -4.01825 -54.7613 - 86 66.6343 1594 5 1 139.15 -4.09371 -54.7842 - 86 201.228 1549 5 1 130.079 1.16968 -54.85 - 86 122.245 881 8 0 140.053 -3.8499 33.7741 -Number of digits in this event = 14 + 86 112.037 773 9 1 -25.439 -118.58 65.55 + 86 167.93 307 9 0 -25.4348 -118.579 64.15 + 86 116.966 773 8 1 -25.344 -118.56 35.55 + 86 126.063 307 8 0 -25.3404 -118.557 34.15 + 86 141.491 773 7 1 -25.2689 -118.508 5.55 + 86 98.5408 308 7 0 -25.2673 -118.505 4.15 + 86 144.94 774 6 1 -25.236 -118.439 -24.45 + 86 174.677 308 6 0 -25.2379 -118.433 -25.85 + 86 116.716 773 5 1 -25.2554 -118.328 -54.45 + 86 146.792 309 5 0 -25.2566 -118.324 -55.85 + 86 169.44 773 4 1 -25.2733 -118.244 -84.45 + 86 101.256 309 4 0 -25.2889 -118.245 -85.85 + 86 165.642 772 3 1 -25.6021 -118.278 -114.45 + 86 133.297 309 3 0 -25.6149 -118.279 -115.85 + 86 177.649 770 2 1 -25.8668 -118.304 -144.45 + 86 120.77 309 2 0 -25.8835 -118.306 -145.85 + 86 148.986 769 1 1 -26.2339 -118.346 -174.45 + 86 111.28 309 1 0 -26.25 -118.346 -175.85 + 86 134.616 767 0 1 -26.5779 -118.344 -204.45 + 86 107.723 309 0 0 -26.5967 -118.346 -205.85 + 86 201.7 311 3 0 -26.8321 -117.867 -115.85 + 86 36.8194 312 3 0 -26.9203 -117.75 -115.887 + 86 212.427 308 5 0 -25.2699 -118.35 -56.0359 + 86 215.753 773 6 1 -25.25 -118.419 -24.6005 +Number of digits in this event = 17 Using G4ParticleGun ... -6.50203 LIN +5.97522 LIN proton Event: 87 Number of tracker hits in this event = 31 - 87 103.199 733 11 1 -33.4389 2.95127 125.55 - 87 185.372 914 11 0 -33.4388 2.95014 124.15 - 87 214.003 733 10 1 -33.4325 2.9259 95.55 - 87 108.78 914 10 0 -33.4321 2.92514 94.15 - 87 148.244 733 9 1 -33.42 2.91238 65.55 - 87 104.789 914 9 0 -33.4179 2.91228 64.15 - 87 107.169 733 8 1 -33.3727 2.91175 35.55 - 87 127.139 914 8 0 -33.372 2.91215 34.15 - 87 126.088 733 7 1 -33.3583 2.9164 5.55 - 87 171.519 914 7 0 -33.3575 2.91528 4.15 - 87 110.742 733 6 1 -33.3394 2.89526 -24.45 - 87 132.895 914 6 0 -33.3377 2.89496 -25.85 - 87 91.6289 733 5 1 -33.3116 2.8887 -54.45 - 87 190.592 914 5 0 -33.3115 2.88864 -55.85 - 87 139.031 733 4 1 -33.3087 2.88645 -84.45 - 87 108.596 914 4 0 -33.3074 2.88558 -85.85 - 87 178.176 733 3 1 -33.2769 2.86668 -114.45 - 87 98.8579 914 3 0 -33.2742 2.86698 -115.85 - 87 123.506 734 2 1 -33.2248 2.87279 -144.45 - 87 141.186 914 2 0 -33.2212 2.87398 -145.85 - 87 114.663 734 1 1 -33.1475 2.89973 -174.45 - 87 95.0536 914 1 0 -33.1438 2.90184 -175.85 - 87 159.878 734 0 1 -33.0697 2.94514 -204.45 - 87 140.632 914 0 0 -33.0659 2.94741 -205.85 - 87 68.8753 735 0 1 -33.05 2.94896 -204.808 - 87 25.5996 911 0 0 -32.1079 2.26748 -205.85 - 87 35.8216 910 0 0 -32.0711 2.25 -205.901 - 87 198.376 739 0 1 -32.1246 2.81034 -204.85 - 87 36.0672 955 1 0 -33.6044 11.05 -176.233 - 87 52.1328 915 11 0 -33.3904 3.05 124.015 - 87 222.172 731 11 1 -33.7447 3.29719 125.15 -Number of digits in this event = 17 + 87 123.425 1271 11 1 74.3186 -22.5751 125.55 + 87 104.625 787 11 0 74.3204 -22.5744 124.15 + 87 134.687 1271 10 1 74.357 -22.5605 95.55 + 87 111.548 787 10 0 74.3574 -22.5588 94.15 + 87 142.65 1271 9 1 74.3678 -22.5253 65.55 + 87 113.053 787 9 0 74.3685 -22.5231 64.15 + 87 244.347 1271 8 1 74.3773 -22.4761 35.55 + 87 104.938 787 8 0 74.3779 -22.4726 34.15 + 87 141.694 1271 7 1 74.3931 -22.3975 5.55 + 87 107.133 788 7 0 74.3958 -22.3942 4.15 + 87 172.467 1272 6 1 74.4558 -22.3293 -24.45 + 87 115.741 788 6 0 74.4579 -22.3254 -25.85 + 87 108.918 1272 5 1 74.4994 -22.2437 -54.45 + 87 131.649 789 5 0 74.5018 -22.2402 -55.85 + 87 113.211 1272 4 1 74.555 -22.1619 -84.45 + 87 179.557 789 4 0 74.5568 -22.1588 -85.85 + 87 105.216 1272 3 1 74.5914 -22.0946 -114.45 + 87 105.371 789 3 0 74.5942 -22.091 -115.85 + 87 96.8744 1273 2 1 74.6507 -22.0184 -144.45 + 87 101.878 790 2 0 74.6541 -22.0143 -145.85 + 87 123.461 1273 1 1 74.7235 -21.9308 -174.45 + 87 105.058 790 1 0 74.7276 -21.9274 -175.85 + 87 109.428 1273 0 1 74.8097 -21.8596 -204.45 + 87 117.484 790 0 0 74.8149 -21.8556 -205.85 + 87 131.481 1270 10 1 74.25 -22.7914 95.5467 + 87 183.451 786 10 0 73.6767 -22.7884 94.15 + 87 69.6198 650 10 0 69.1688 -49.9646 93.75 + 87 100.566 649 10 0 69.0933 -50.05 93.9284 + 87 7.67176 648 10 0 68.9379 -50.2502 94.1384 + 87 184.763 1241 10 1 68.3346 -52.0685 95.15 + 87 288.681 1242 10 1 68.4647 -52.4086 95.55 +Number of digits in this event = 14 Using G4ParticleGun ... -6.72272 LIN +3.88395 LIN proton Event: 88 -Number of tracker hits in this event = 19 - 88 135.406 1062 8 1 32.568 135.869 35.55 - 88 178.64 1578 8 0 32.5686 135.868 34.15 - 88 130.059 1062 7 1 32.5814 135.859 5.55 - 88 118.889 1578 7 0 32.5822 135.858 4.15 - 88 109.273 1062 6 1 32.5966 135.834 -24.45 - 88 113.622 1578 6 0 32.5971 135.833 -25.85 - 88 124.208 1062 5 1 32.6097 135.803 -54.45 - 88 113.301 1578 5 0 32.6098 135.802 -55.85 - 88 293.076 1062 4 1 32.6145 135.782 -84.45 - 88 125.852 1578 4 0 32.6141 135.78 -85.85 - 88 150.221 1062 3 1 32.6059 135.74 -114.45 - 88 112.325 1577 3 0 32.605 135.737 -115.85 - 88 189.303 1062 2 1 32.5837 135.693 -144.45 - 88 146.358 1577 2 0 32.5815 135.69 -145.85 - 88 122.651 1062 1 1 32.5467 135.632 -174.45 - 88 129.871 1577 1 0 32.5443 135.63 -175.85 - 88 144.117 1062 0 1 32.495 135.584 -204.45 - 88 138.686 1577 0 0 32.4942 135.583 -205.85 - 88 222.41 1063 4 1 32.65 135.811 -84.4908 -Number of digits in this event = 15 +Number of tracker hits in this event = 31 + 88 233.73 927 11 1 5.51096 -48.1549 125.55 + 88 108.673 659 11 0 5.51157 -48.1546 124.15 + 88 186.336 927 10 1 5.53388 -48.146 95.55 + 88 91.21 659 10 0 5.53738 -48.1458 94.15 + 88 108.92 927 9 1 5.60842 -48.1413 65.55 + 88 111.541 659 9 0 5.61276 -48.1419 64.15 + 88 101.984 928 8 1 5.6972 -48.1629 35.55 + 88 122.481 659 8 0 5.70219 -48.1632 34.15 + 88 120.113 928 7 1 5.79814 -48.1688 5.55 + 88 119.409 659 7 0 5.80064 -48.1718 4.15 + 88 119.041 928 6 1 5.84183 -48.2248 -24.45 + 88 121.634 659 6 0 5.84236 -48.2288 -25.85 + 88 106.962 929 5 1 5.85803 -48.312 -54.45 + 88 94.4917 658 5 0 5.85933 -48.3173 -55.85 + 88 120.024 929 4 1 5.8852 -48.4242 -84.45 + 88 209.596 658 4 0 5.88599 -48.43 -85.85 + 88 103.093 929 3 1 5.89996 -48.5482 -114.45 + 88 132.727 657 3 0 5.9022 -48.5545 -115.85 + 88 273.638 929 2 1 5.9438 -48.6873 -144.45 + 88 116.714 656 2 0 5.94384 -48.6946 -145.85 + 88 573.465 929 1 1 5.9457 -48.846 -174.45 + 88 156.047 655 1 0 5.95134 -48.8552 -175.85 + 88 160.088 930 0 1 6.07216 -49.0446 -204.45 + 88 123.321 654 0 0 6.07691 -49.0537 -205.85 + 88 50.6191 276 10 0 149.505 -124.95 93.9827 + 88 216.445 656 1 0 5.94284 -48.85 -175.933 + 88 147.045 928 1 1 5.84962 -48.6269 -174.695 + 88 15.6983 650 2 0 4.34982 -50.0305 -145.85 + 88 5.22262 649 2 0 4.33711 -50.0501 -145.852 + 88 207.158 913 2 1 2.76179 -54.6465 -144.85 + 88 62.0771 657 4 0 6.17713 -48.45 -86.1004 +Number of digits in this event = 20 Using G4ParticleGun ... -6.88879 LIN +3.34969 LIN proton Event: 89 -Number of tracker hits in this event = 22 - 89 153.599 657 10 1 -48.4786 -89.4952 95.55 - 89 93.0281 452 10 0 -48.4792 -89.4955 94.15 - 89 213.45 657 9 1 -48.489 -89.5027 65.55 - 89 123.089 452 9 0 -48.49 -89.5028 64.15 - 89 139.604 657 8 1 -48.5116 -89.5074 35.55 - 89 165.693 452 8 0 -48.5129 -89.5084 34.15 - 89 101.611 657 7 1 -48.5395 -89.5283 5.55 - 89 113.143 452 7 0 -48.5409 -89.5288 4.15 - 89 94.6462 657 6 1 -48.5637 -89.5392 -24.45 - 89 107.619 452 6 0 -48.5648 -89.5402 -25.85 - 89 131.402 657 5 1 -48.5865 -89.5603 -54.45 - 89 134.095 452 5 0 -48.5867 -89.5616 -55.85 - 89 105.672 657 4 1 -48.5929 -89.5844 -84.45 - 89 161.561 452 4 0 -48.5939 -89.5847 -85.85 - 89 113.311 657 3 1 -48.6159 -89.5923 -114.45 - 89 100.013 452 3 0 -48.616 -89.5925 -115.85 - 89 142.808 657 2 1 -48.6175 -89.5939 -144.45 - 89 98.407 452 2 0 -48.6173 -89.5939 -145.85 - 89 107.402 657 1 1 -48.6136 -89.5952 -174.45 - 89 142.742 452 1 0 -48.6136 -89.5954 -175.85 - 89 111.629 657 0 1 -48.6158 -89.6037 -204.45 - 89 102.184 452 0 0 -48.6162 -89.6051 -205.85 -Number of digits in this event = 11 +Number of tracker hits in this event = 96 + 89 151.19 609 11 1 -58.0968 44.4856 125.55 + 89 166.2 1122 11 0 -58.0983 44.4875 124.15 + 89 230.186 609 10 1 -58.1283 44.5316 95.55 + 89 229.284 1122 10 0 -58.1299 44.5332 94.15 + 89 115.139 609 9 1 -58.1675 44.5718 65.55 + 89 147.145 1122 9 0 -58.1693 44.5723 64.15 + 89 114.377 609 8 1 -58.2088 44.5795 35.55 + 89 105.146 1122 8 0 -58.2102 44.5837 34.15 + 89 126.302 609 7 1 -58.2383 44.6646 5.55 + 89 111.511 1123 7 0 -58.2389 44.6696 4.15 + 89 106.653 608 6 1 -58.2641 44.7659 -24.45 + 89 87.8312 1123 6 0 -58.2661 44.7711 -25.85 + 89 221.322 608 5 1 -58.3286 44.8798 -54.45 + 89 109.246 1124 5 0 -58.329 44.8843 -55.85 + 89 277.464 608 4 1 -58.3356 44.9725 -84.45 + 89 266.331 1124 4 0 -58.335 44.9779 -85.85 + 89 103.276 608 3 1 -58.3196 45.0913 -114.45 + 89 127.966 1125 3 0 -58.3213 45.0948 -115.85 + 89 250.319 608 2 1 -58.3475 45.1645 -144.45 + 89 24152.3 1125 2 0 -58.3468 45.1676 -145.85 + 89 57.8248 1082 2 0 69.5238 36.4955 -146.25 + 89 341.394 1081 2 0 69.5714 36.45 -146.125 + 89 2206.44 651 1 1 -49.8152 -17.3722 -174.45 + 89 1177.36 652 1 1 -49.65 -18.0448 -174.715 + 89 314.094 795 1 0 -48.9742 -20.9651 -175.85 + 89 828.04 794 1 0 -48.9547 -21.05 -175.883 + 89 697.144 793 1 0 -48.9077 -21.25 -175.961 + 89 717.7 792 1 0 -48.8599 -21.45 -176.041 + 89 622.417 791 1 0 -48.8097 -21.65 -176.123 + 89 457.155 790 1 0 -48.7563 -21.85 -176.202 + 89 1273.33 746 0 1 -30.7264 -93.7346 -204.45 + 89 4417.32 747 0 1 -30.65 -93.8887 -204.548 + 89 670.365 748 0 1 -30.45 -94.3281 -204.819 + 89 1744.82 420 0 0 -29.7829 -96.0225 -205.85 + 89 4739.1 419 0 0 -29.7327 -96.15 -205.928 + 89 826.617 418 0 0 -29.6555 -96.35 -206.056 + 89 151.405 333 1 1 -113.438 57.5865 -174.45 + 89 271.479 332 1 1 -113.55 57.6107 -174.51 + 89 319.56 331 1 1 -113.75 57.6538 -174.616 + 89 283.912 330 1 1 -113.95 57.6969 -174.721 + 89 56.54 329 1 1 -114.15 57.74 -174.828 + 89 682.046 1190 1 0 -116.04 58.1553 -175.85 + 89 662.469 1191 1 0 -116.471 58.25 -176.083 + 89 302.046 54 0 1 -169.221 68.9972 -204.45 + 89 378.854 53 0 1 -169.35 69.0162 -204.529 + 89 318.68 52 0 1 -169.55 69.0451 -204.653 + 89 260.929 51 0 1 -169.75 69.0736 -204.778 + 89 1214.98 1246 0 0 -171.44 69.3355 -205.85 + 89 609.506 588 1 1 -62.3656 76.9324 -174.45 + 89 86.5424 1292 1 0 -62.5822 78.5639 -175.85 + 89 279.335 1293 1 0 -62.5937 78.65 -175.924 + 89 153.461 1294 1 0 -62.6214 78.85 -176.095 + 89 531.519 564 0 1 -67.1586 111.869 -204.45 + 89 114.748 1466 0 0 -67.3552 113.472 -205.85 + 89 193.238 1467 0 0 -67.3647 113.55 -205.918 + 89 212.626 1468 0 0 -67.3895 113.75 -206.093 + 89 277.29 1289 1 0 -62.0921 77.874 -175.85 + 89 135.948 616 1 1 -56.7632 46.2098 -174.45 + 89 128.146 1131 1 0 -56.6829 46.2625 -175.85 + 89 156.809 625 0 1 -55.0434 47.3401 -204.45 + 89 135.108 1136 0 0 -54.9642 47.392 -205.85 + 89 127.903 644 1 1 -51.0997 31.6789 -174.45 + 89 228.32 645 1 1 -51.05 31.6134 -174.537 + 89 148.268 1054 1 0 -50.5021 30.8731 -175.85 + 89 144.592 1053 1 0 -50.4846 30.85 -175.892 + 89 15.6548 1052 1 0 -50.3556 30.65 -176.207 + 89 173.338 703 0 1 -39.3338 10.2139 -204.45 + 89 0.0275009 943 0 0 -39.4071 8.65029 -205.85 + 89 74.2771 942 0 0 -39.4071 8.65 -205.85 + 89 76.7796 941 0 0 -39.4261 8.45 -206.016 + 89 55.5677 940 0 0 -39.4542 8.24972 -206.164 + 89 121.177 685 0 1 -42.9992 17.0274 -204.45 + 89 175.216 981 0 0 -42.6269 16.3655 -205.85 + 89 63.9967 980 0 0 -42.564 16.25 -206.097 + 89 36.0152 1457 0 1 111.599 19.9519 -204.45 + 89 55.6247 1458 0 1 111.75 19.9319 -204.501 + 89 118.209 1459 0 1 111.95 19.9055 -204.569 + 89 65.6854 1460 0 1 112.15 19.8785 -204.637 + 89 86.301 1461 0 1 112.35 19.8519 -204.705 + 89 60.8662 1462 0 1 112.55 19.8254 -204.773 + 89 6.87758 1463 0 1 112.75 19.7991 -204.841 + 89 455.96 996 0 0 115.695 19.4128 -205.85 + 89 81.1418 995 0 0 116.706 19.25 -205.959 + 89 34.0672 1480 0 1 116.185 18.578 -204.85 + 89 129.465 1479 0 1 116.15 18.5515 -204.813 + 89 133.853 1478 0 1 115.95 18.5126 -204.679 + 89 34.9117 1454 0 1 111.122 19.9487 -204.45 + 89 92.4673 1455 0 1 111.15 19.8655 -204.56 + 89 5.05209 994 0 0 111.255 18.8599 -205.85 + 89 96.6665 993 0 0 111.255 18.8499 -205.863 + 89 43.323 992 0 0 111.246 18.65 -206.142 + 89 78.7458 609 4 1 -58.25 45.0529 -84.6528 + 89 329.467 610 4 1 -58.05 45.1061 -84.6876 + 89 11.6845 607 5 1 -58.45 45.0204 -54.8333 + 89 13.5379 1129 5 0 -58.6221 46.0316 -55.85 + 89 181.528 1130 5 0 -58.6355 46.05 -55.8753 +Number of digits in this event = 65 Using G4ParticleGun ... -2.59462 LIN +7.90427 LIN proton Event: 90 -Number of tracker hits in this event = 24 - 90 108.804 528 8 1 -74.3725 -121.659 35.55 - 90 120.499 292 8 0 -74.3722 -121.661 34.15 - 90 139.501 528 7 1 -74.357 -121.685 5.55 - 90 119.118 292 7 0 -74.3556 -121.688 4.15 - 90 117.359 528 6 1 -74.3245 -121.753 -24.45 - 90 111.89 291 6 0 -74.3209 -121.758 -25.85 - 90 288.96 528 5 1 -74.2554 -121.86 -54.45 - 90 117.446 291 5 0 -74.2549 -121.865 -55.85 - 90 100.447 529 4 1 -74.2432 -121.966 -84.45 - 90 453.545 290 4 0 -74.2435 -121.973 -85.85 - 90 93.7906 529 3 1 -74.2384 -122.107 -114.45 - 90 175.816 290 3 0 -74.2373 -122.115 -115.85 - 90 118.561 529 2 1 -74.2134 -122.291 -144.45 - 90 115.5 289 2 0 -74.21 -122.298 -145.85 - 90 189.59 529 1 1 -74.1461 -122.455 -174.45 - 90 163.815 288 1 0 -74.1409 -122.462 -175.85 - 90 90.0882 530 0 1 -74.033 -122.608 -204.45 - 90 102.183 287 0 0 -74.0286 -122.615 -205.85 - 90 98.9893 502 9 1 -79.5089 162.356 65.15 - 90 69.5199 291 4 0 -74.2862 -121.95 -85.8969 - 90 30.5538 529 5 1 -74.25 -121.84 -54.6454 - 90 453.209 256 8 0 -25.1506 -128.898 33.75 - 90 101.733 255 8 0 -25.0045 -128.95 33.8309 - 90 78.0437 257 8 0 -24.5463 -128.75 34.0419 -Number of digits in this event = 11 +Number of tracker hits in this event = 22 + 90 141.34 348 10 1 -110.422 30.876 95.55 + 90 94.1014 1054 10 0 -110.421 30.8757 94.15 + 90 125.564 348 9 1 -110.397 30.8721 65.55 + 90 131.096 1054 9 0 -110.395 30.8723 64.15 + 90 111.816 349 8 1 -110.347 30.8796 35.55 + 90 229.351 1054 8 0 -110.345 30.8801 34.15 + 90 101.491 349 7 1 -110.3 30.8916 5.55 + 90 112.856 1054 7 0 -110.299 30.8925 4.15 + 90 116.166 349 6 1 -110.275 30.9104 -24.45 + 90 92.291 1054 6 0 -110.274 30.9119 -25.85 + 90 202.628 349 5 1 -110.238 30.9443 -54.45 + 90 97.4017 1054 5 0 -110.237 30.9465 -55.85 + 90 121.827 349 4 1 -110.211 30.9924 -84.45 + 90 95.787 1054 4 0 -110.21 30.995 -85.85 + 90 96.7808 349 3 1 -110.194 31.0514 -114.45 + 90 111.284 1055 3 0 -110.192 31.0544 -115.85 + 90 97.4507 349 2 1 -110.16 31.1195 -144.45 + 90 131.673 1055 2 0 -110.159 31.1222 -145.85 + 90 102.559 350 1 1 -110.134 31.1776 -174.45 + 90 157.861 1055 1 0 -110.131 31.1786 -175.85 + 90 100.718 350 0 1 -110.058 31.1944 -204.45 + 90 105.629 1055 0 0 -110.055 31.1955 -205.85 +Number of digits in this event = 9 Using G4ParticleGun ... -4.30409 LIN +3.22184 LIN proton Event: 91 -Number of tracker hits in this event = 29 - 91 87.5798 1256 9 1 71.3621 100.507 65.55 - 91 107.611 1401 9 0 71.3607 100.507 64.15 - 91 110.42 1256 8 1 71.3237 100.508 35.55 - 91 125.124 1401 8 0 71.3223 100.508 34.15 - 91 117.041 1256 7 1 71.2962 100.511 5.55 - 91 133.331 1401 7 0 71.2952 100.514 4.15 - 91 131.678 1256 6 1 71.2748 100.565 -24.45 - 91 254.953 1402 6 0 71.2741 100.569 -25.85 - 91 216.359 1256 5 1 71.2624 100.657 -54.45 - 91 125.948 1402 5 0 71.2612 100.661 -55.85 - 91 123.662 1255 4 1 71.2367 100.733 -84.45 - 91 122.824 1402 4 0 71.235 100.735 -85.85 - 91 118.306 1255 3 1 71.195 100.79 -114.45 - 91 106.901 1403 3 0 71.1925 100.793 -115.85 - 91 124.502 1255 2 1 71.1466 100.836 -144.45 - 91 148.647 1403 2 0 71.1441 100.837 -145.85 - 91 103.507 1255 1 1 71.0964 100.866 -174.45 - 91 138.185 1403 1 0 71.0924 100.868 -175.85 - 91 108.67 1254 0 1 71.0101 100.913 -204.45 - 91 160.542 1403 0 0 71.0068 100.916 -205.85 - 91 246.043 1496 1 1 119.35 68.6292 -174.647 - 91 135.917 1497 1 1 119.55 68.6232 -174.536 - 91 103.235 1498 1 1 119.75 68.6047 -174.503 - 91 234.182 1499 1 1 119.95 68.422 -174.473 - 91 131.236 1500 1 1 120.174 67.8521 -174.45 - 91 24.4166 1501 1 1 120.35 67.7352 -174.819 - 91 49.0052 1229 1 0 121.15 65.9616 -175.85 - 91 99.893 1228 1 0 121.155 65.85 -175.931 - 91 77.5411 1227 1 0 121.185 65.65 -176.092 -Number of digits in this event = 19 +Number of tracker hits in this event = 28 + 91 106.931 718 11 1 -36.3993 -59.9121 125.55 + 91 90.4647 600 11 0 -36.3976 -59.9117 124.15 + 91 263.329 718 10 1 -36.3651 -59.9034 95.55 + 91 215.279 600 10 0 -36.3629 -59.9007 94.15 + 91 104.17 718 9 1 -36.3163 -59.8403 65.55 + 91 104.803 601 9 0 -36.3146 -59.8373 64.15 + 91 183.233 718 8 1 -36.2768 -59.779 35.55 + 91 115.236 601 8 0 -36.2732 -59.776 34.15 + 91 225.114 719 7 1 -36.1975 -59.7208 5.55 + 91 104.316 601 7 0 -36.1937 -59.7181 4.15 + 91 138.02 719 6 1 -36.1118 -59.663 -24.45 + 91 111.292 601 6 0 -36.1078 -59.6606 -25.85 + 91 121.089 720 5 1 -36.0204 -59.6124 -54.45 + 91 96.0089 602 5 0 -36.0156 -59.6104 -55.85 + 91 129.836 720 4 1 -35.9194 -59.5638 -84.45 + 91 176.504 602 4 0 -35.9161 -59.5622 -85.85 + 91 116.175 721 3 1 -35.8471 -59.5354 -114.45 + 91 127.277 602 3 0 -35.8445 -59.5351 -115.85 + 91 117.507 721 2 1 -35.7947 -59.5217 -144.45 + 91 98.1428 602 2 0 -35.791 -59.5191 -145.85 + 91 140.657 721 1 1 -35.7104 -59.4652 -174.45 + 91 130.203 602 1 0 -35.7073 -59.4619 -175.85 + 91 98.1411 722 0 1 -35.637 -59.3983 -204.45 + 91 122.439 603 0 0 -35.6319 -59.3941 -205.85 + 91 57.1293 567 9 0 -18.6883 -66.47 63.75 + 91 229.902 568 9 0 -18.6429 -66.45 63.8534 + 91 48.6449 599 10 0 -36.4593 -60.05 94.0809 + 91 165.051 597 10 0 -36.4819 -60.5471 94.15 +Number of digits in this event = 15 Using G4ParticleGun ... -7.40412 LIN +2.92876 LIN proton Event: 92 -Number of tracker hits in this event = 21 - 92 167.124 850 9 0 134.779 -9.87416 64.15 - 92 110.149 1573 8 1 134.775 -9.87423 35.55 - 92 126.114 850 8 0 134.776 -9.87393 34.15 - 92 109.591 1573 7 1 134.791 -9.86722 5.55 - 92 114.593 850 7 0 134.791 -9.86747 4.15 - 92 121.926 1573 6 1 134.791 -9.87327 -24.45 - 92 116.339 850 6 0 134.79 -9.87384 -25.85 - 92 111.354 1573 5 1 134.771 -9.88475 -54.45 - 92 125.237 850 5 0 134.77 -9.88508 -55.85 - 92 262.688 1572 4 1 134.745 -9.88633 -84.45 - 92 123.942 850 4 0 134.745 -9.88691 -85.85 - 92 195.385 1572 3 1 134.747 -9.90234 -114.45 - 92 112.128 850 3 0 134.747 -9.90362 -115.85 - 92 114.182 1572 2 1 134.733 -9.92677 -144.45 - 92 116.503 850 2 0 134.732 -9.92758 -145.85 - 92 193.719 1572 1 1 134.718 -9.94535 -174.45 - 92 131.444 850 1 0 134.716 -9.94584 -175.85 - 92 218.419 1572 0 1 134.691 -9.95682 -204.45 - 92 115.681 850 0 0 134.691 -9.95673 -205.85 - 92 216.078 1573 4 1 134.75 -9.87743 -84.5582 - 92 54.6 1574 4 1 134.95 -9.77655 -84.5117 +Number of tracker hits in this event = 23 + 92 100.732 520 10 1 -75.9125 -45.5224 95.55 + 92 136.851 672 10 0 -75.913 -45.5221 94.15 + 92 183.934 520 9 1 -75.9264 -45.5209 65.55 + 92 110.375 672 9 0 -75.926 -45.5217 64.15 + 92 236.51 520 8 1 -75.9203 -45.5362 35.55 + 92 138.266 672 8 0 -75.9212 -45.5368 34.15 + 92 159.95 520 7 1 -75.9449 -45.5532 5.55 + 92 94.9828 672 7 0 -75.9465 -45.5532 4.15 + 92 123.902 520 6 1 -75.9768 -45.5579 -24.45 + 92 106.252 672 6 0 -75.9782 -45.5587 -25.85 + 92 107.23 520 5 1 -75.9964 -45.5775 -54.45 + 92 114.934 672 5 0 -75.9987 -45.5778 -55.85 + 92 118.686 519 4 1 -76.0554 -45.58 -84.45 + 92 128.832 672 4 0 -76.0593 -45.5795 -85.85 + 92 127.294 519 3 1 -76.1396 -45.5736 -114.45 + 92 204.282 672 3 0 -76.144 -45.5719 -115.85 + 92 114.013 519 2 1 -76.2359 -45.5468 -144.45 + 92 131.782 672 2 0 -76.2406 -45.5446 -145.85 + 92 168.695 518 1 1 -76.3444 -45.5137 -174.45 + 92 90.2512 672 1 0 -76.3488 -45.5135 -175.85 + 92 144.595 518 0 1 -76.4397 -45.506 -204.45 + 92 98.6604 672 0 0 -76.4461 -45.5051 -205.85 + 92 155.778 673 3 0 -76.1714 -45.45 -116.047 Number of digits in this event = 14 Using G4ParticleGun ... -9.31117 LIN +2.76962 LIN proton Event: 93 -Number of tracker hits in this event = 22 - 93 110.629 1234 10 1 66.9782 -61.9916 95.55 - 93 149.018 590 10 0 66.9788 -61.9916 94.15 - 93 150.292 1234 9 1 66.9899 -61.9926 65.55 - 93 160.666 590 9 0 66.9901 -61.9932 64.15 - 93 118.544 1234 8 1 66.9926 -62.0025 35.55 - 93 135.237 590 8 0 66.9922 -62.0038 34.15 - 93 117.418 1234 7 1 66.9853 -62.0299 5.55 - 93 129.363 590 7 0 66.9855 -62.0312 4.15 - 93 187.896 1234 6 1 66.9908 -62.0568 -24.45 - 93 128.329 589 6 0 66.991 -62.0583 -25.85 - 93 128.608 1234 5 1 66.9921 -62.0884 -54.45 - 93 102.06 589 5 0 66.9907 -62.0903 -55.85 - 93 109.575 1234 4 1 66.9665 -62.1271 -84.45 - 93 109.282 589 4 0 66.9647 -62.1289 -85.85 - 93 138.081 1234 3 1 66.9285 -62.1689 -114.45 - 93 100.048 589 3 0 66.9271 -62.1708 -115.85 - 93 126.927 1234 2 1 66.8982 -62.2052 -144.45 - 93 107.82 589 2 0 66.8965 -62.2071 -145.85 - 93 102.834 1234 1 1 66.8595 -62.2457 -174.45 - 93 120.591 589 1 0 66.8579 -62.2479 -175.85 - 93 120.67 1233 0 1 66.8291 -62.297 -204.45 - 93 135.432 588 0 0 66.8269 -62.2995 -205.85 -Number of digits in this event = 14 +Number of tracker hits in this event = 31 + 93 170.857 605 11 1 -59.0397 -49.4182 125.55 + 93 103.617 653 11 0 -59.0398 -49.4198 124.15 + 93 127.883 605 10 1 -59.041 -49.4461 95.55 + 93 36.5299 653 10 0 -59.0405 -49.4497 94.15 + 93 79.1906 652 10 0 -59.0405 -49.45 94.0478 + 93 118.139 605 9 1 -59.0361 -49.5293 65.55 + 93 126.4 652 9 0 -59.036 -49.5333 64.15 + 93 94.1866 605 8 1 -59.0407 -49.618 35.55 + 93 126.913 652 8 0 -59.0425 -49.6207 34.15 + 93 98.1373 604 7 1 -59.0778 -49.6836 5.55 + 93 167.114 651 7 0 -59.0798 -49.6843 4.15 + 93 93.6834 604 6 1 -59.1288 -49.6978 -24.45 + 93 120.578 651 6 0 -59.1313 -49.6968 -25.85 + 93 109.642 604 5 1 -59.195 -49.6709 -54.45 + 93 119.291 651 5 0 -59.1977 -49.667 -55.85 + 93 129.491 604 4 1 -59.2441 -49.5866 -84.45 + 93 126.405 652 4 0 -59.2461 -49.582 -85.85 + 93 134.903 603 3 1 -59.2781 -49.4822 -114.45 + 93 113.028 652 3 0 -59.281 -49.4791 -115.85 + 93 170.216 603 2 1 -59.3445 -49.4078 -144.45 + 93 116.978 653 2 0 -59.3487 -49.4034 -145.85 + 93 97.6589 603 1 1 -59.4317 -49.3216 -174.45 + 93 258.361 653 1 0 -59.4327 -49.3174 -175.85 + 93 266.071 602 0 1 -59.4593 -49.2282 -204.45 + 93 220.781 654 0 0 -59.4605 -49.226 -205.85 + 93 116.15 603 0 1 -59.45 -49.2606 -204.77 + 93 74.0944 604 0 1 -59.25 -49.4382 -204.775 + 93 9.0905 651 0 0 -57.6792 -49.8425 -205.85 + 93 49.5363 650 0 0 -57.6592 -49.85 -205.866 + 93 25.6064 616 0 1 -56.7675 -49.5784 -204.85 + 93 164.48 671 0 0 -55.5471 -45.7379 -205.85 +Number of digits in this event = 17 Using G4ParticleGun ... -2.5144 LIN +3.23101 LIN proton Event: 94 -Number of tracker hits in this event = 39 - 94 120.901 552 10 1 -69.622 -91.5376 95.55 - 94 121.098 443 10 0 -69.6233 -91.5379 94.15 - 94 138.591 552 9 1 -69.647 -91.549 65.55 - 94 137.925 443 9 0 -69.6471 -91.5484 64.15 - 94 97.9435 552 8 1 -69.6353 -91.5352 35.55 - 94 108.299 443 8 0 -69.6363 -91.5354 34.15 - 94 106.532 551 7 1 -69.6523 -91.5439 5.55 - 94 139.018 443 7 0 -69.6561 -91.5433 4.15 - 94 92.3148 551 6 1 -69.7372 -91.5282 -24.45 - 94 178.616 443 6 0 -69.7453 -91.5361 -25.85 - 94 94.5933 550 5 1 -69.9148 -91.6966 -54.45 - 94 129.318 442 5 0 -69.9231 -91.7064 -55.85 - 94 11135.2 549 4 1 -70.0908 -91.9023 -84.45 - 94 123.358 443 4 0 -69.0007 -91.421 -85.85 - 94 145.497 563 4 1 -67.4256 -92.2458 -84.85 - 94 60.0165 1522 7 1 124.55 50.5593 5.45891 - 94 122.173 1523 7 1 124.75 50.6914 5.51777 - 94 351.521 1524 7 1 124.95 50.8684 5.4187 - 94 142.16 439 4 0 -70.4736 -92.2619 -85.85 - 94 49.8595 438 4 0 -70.5676 -92.35 -86.104 - 94 163.411 494 3 1 -81.0881 -102.166 -114.45 - 94 177.817 387 3 0 -81.6159 -102.642 -115.85 - 94 52.153 386 3 0 -81.7353 -102.75 -116.167 - 94 425.839 438 2 1 -92.4259 -112.361 -144.45 - 94 26.8628 437 2 1 -92.55 -112.466 -144.778 - 94 262.193 336 2 0 -92.9556 -112.81 -145.85 - 94 0.985387 382 1 1 -103.749 -121.977 -174.45 - 94 207.102 381 1 1 -103.75 -121.978 -174.453 - 94 259.643 288 1 0 -104.27 -122.423 -175.85 - 94 0.345783 287 1 0 -104.418 -122.55 -176.249 - 94 9.99114 326 0 1 -114.94 -131.576 -204.45 - 94 213.294 325 0 1 -114.95 -131.585 -204.478 - 94 180.605 240 0 0 -115.452 -132.015 -205.85 - 94 243.327 249 3 0 -66.7571 -130.333 -116.25 - 94 101.938 248 3 0 -66.7172 -130.35 -116.107 - 94 217.6 643 0 1 -51.4212 -78.1034 -204.45 - 94 139.662 510 0 0 -51.1991 -77.9425 -205.85 - 94 123.973 132 12 0 -125.786 -153.704 153.75 - 94 98.5 511 0 0 -51.147 -77.85 -205.9 -Number of digits in this event = 27 +Number of tracker hits in this event = 25 + 94 131.236 757 11 1 -28.5505 -35.9202 125.55 + 94 109.527 720 11 0 -28.5487 -35.9204 124.15 + 94 112.658 757 10 1 -28.5187 -35.9146 95.55 + 94 119.302 720 10 0 -28.5191 -35.9134 94.15 + 94 106.854 757 9 1 -28.5201 -35.8918 65.55 + 94 123.507 720 9 0 -28.5204 -35.8905 64.15 + 94 115.948 757 8 1 -28.5295 -35.8669 35.55 + 94 106.273 720 8 0 -28.5309 -35.8702 34.15 + 94 104.613 757 7 1 -28.5576 -35.9379 5.55 + 94 90.3377 720 7 0 -28.5597 -35.9402 4.15 + 94 135.024 757 6 1 -28.6161 -35.9919 -24.45 + 94 170.901 720 6 0 -28.619 -35.9943 -25.85 + 94 243.819 756 5 1 -28.6773 -36.0352 -54.45 + 94 100.24 720 5 0 -28.6789 -36.0369 -55.85 + 94 96.3049 756 4 1 -28.7171 -36.0657 -84.45 + 94 161.185 719 4 0 -28.7176 -36.0651 -85.85 + 94 128.951 756 3 1 -28.7211 -36.0544 -114.45 + 94 119.326 719 3 0 -28.7186 -36.0562 -115.85 + 94 163.424 756 2 1 -28.6651 -36.095 -144.45 + 94 263.536 719 2 0 -28.6628 -36.099 -145.85 + 94 109.475 757 1 1 -28.6195 -36.1885 -174.45 + 94 113.687 719 1 0 -28.6187 -36.1932 -175.85 + 94 120.266 757 0 1 -28.6013 -36.3007 -204.45 + 94 231.07 718 0 0 -28.5982 -36.3049 -205.85 + 94 72.7859 717 0 0 -28.5625 -36.4501 -206.105 +Number of digits in this event = 13 Using G4ParticleGun ... -6.51826 LIN +4.52594 LIN proton Event: 95 -Number of tracker hits in this event = 19 - 95 111.166 1129 8 1 46.0476 130.835 35.55 - 95 107.87 1553 8 0 46.0475 130.835 34.15 - 95 118.141 1129 7 1 46.0463 130.822 5.55 - 95 274.738 1553 7 0 46.0458 130.821 4.15 - 95 147.469 1129 6 1 46.0357 130.786 -24.45 - 95 101.648 1553 6 0 46.0347 130.785 -25.85 - 95 136.109 1129 5 1 46.0124 130.753 -54.45 - 95 119.173 1553 5 0 46.0107 130.751 -55.85 - 95 210.498 1129 4 1 45.9761 130.725 -84.45 - 95 240.638 1552 4 0 45.9728 130.724 -85.85 - 95 105.143 1129 3 1 45.9038 130.709 -114.45 - 95 81.865 1552 3 0 45.9007 130.709 -115.85 - 95 111.027 1128 2 1 45.8425 130.685 -144.45 - 95 96.8593 1552 2 0 45.8393 130.684 -145.85 - 95 125.58 1128 1 1 45.7799 130.678 -174.45 - 95 114.429 1552 1 0 45.7778 130.678 -175.85 - 95 148.741 1128 0 1 45.7322 130.678 -204.45 - 95 190.063 1552 0 0 45.7305 130.678 -205.85 - 95 151.583 1551 0 0 45.7294 130.55 -206.01 -Number of digits in this event = 10 +Number of tracker hits in this event = 31 + 95 212.159 518 11 1 -76.3561 7.53146 125.55 + 95 134.131 937 11 0 -76.354 7.52755 124.15 + 95 219.75 518 10 1 -76.3089 7.44703 95.55 + 95 205.501 936 10 0 -76.3064 7.44234 94.15 + 95 112.596 518 9 1 -76.2587 7.34789 65.55 + 95 207.629 936 9 0 -76.2565 7.34335 64.15 + 95 174.746 519 8 1 -76.21 7.24912 35.55 + 95 160.883 935 8 0 -76.2078 7.24459 34.15 + 95 118.117 519 7 1 -76.1717 7.15494 5.55 + 95 199.432 935 7 0 -76.1699 7.1502 4.15 + 95 116.035 519 6 1 -76.1329 7.05439 -24.45 + 95 126.111 934 6 0 -76.1302 7.04986 -25.85 + 95 109.788 519 5 1 -76.0742 6.95519 -54.45 + 95 141.719 934 5 0 -76.0701 6.94967 -55.85 + 95 95.8148 520 4 1 -75.9812 6.82997 -84.45 + 95 102.981 933 4 0 -75.9766 6.82305 -85.85 + 95 95.851 520 3 1 -75.876 6.68618 -114.45 + 95 152.591 933 3 0 -75.8721 6.68078 -115.85 + 95 86.2465 521 2 1 -75.7972 6.57171 -144.45 + 95 110.105 932 2 0 -75.7937 6.56663 -145.85 + 95 110.309 521 1 1 -75.7162 6.46279 -174.45 + 95 124.992 932 1 0 -75.7114 6.45825 -175.85 + 95 92.9196 522 0 1 -75.6048 6.36769 -204.45 + 95 147.343 931 0 0 -75.5988 6.36271 -205.85 + 95 56.5889 937 10 0 -76.2115 7.45 93.8737 + 95 13.7553 519 10 1 -76.2499 7.53352 95.1914 + 95 101.397 938 10 0 -75.9059 7.76694 94.15 + 95 84.6519 939 10 0 -75.8323 7.85 93.9483 + 95 42.0517 578 9 1 -64.3872 7.20876 65.55 + 95 168.437 577 9 1 -64.4501 7.16079 65.436 + 95 1.81918 935 9 0 -64.9488 7.25 63.7608 +Number of digits in this event = 15 Using G4ParticleGun ... -7.77324 LIN +7.49845 LIN proton Event: 96 -Number of tracker hits in this event = 26 - 96 96.1381 1267 10 1 73.4723 71.3349 95.55 - 96 187.676 1256 10 0 73.4717 71.3354 94.15 - 96 153.218 1267 9 1 73.457 71.3507 65.55 - 96 132.408 1256 9 0 73.4559 71.3522 64.15 - 96 132.407 1266 8 1 73.4344 71.3851 35.55 - 96 155.841 1256 8 0 73.4327 71.3866 34.15 - 96 132.088 1266 7 1 73.398 71.4181 5.55 - 96 125.663 1256 7 0 73.3971 71.4201 4.15 - 96 125.959 1266 6 1 73.3759 71.4569 -24.45 - 96 195.645 1257 6 0 73.3742 71.459 -25.85 - 96 105.494 1266 5 1 73.3422 71.4999 -54.45 - 96 111.138 1257 5 0 73.3393 71.502 -55.85 - 96 112.595 1266 4 1 73.2839 71.5438 -84.45 - 96 112.062 1257 4 0 73.2814 71.5452 -85.85 - 96 114.854 1265 3 1 73.2335 71.5771 -114.45 - 96 232.083 1257 3 0 73.231 71.5787 -115.85 - 96 109.573 1265 2 1 73.1797 71.6162 -144.45 - 96 101.719 1257 2 0 73.1779 71.6186 -145.85 - 96 195.819 1265 1 1 73.1417 71.6674 -174.45 - 96 100.816 1258 1 0 73.1406 71.6695 -175.85 - 96 156.959 1265 0 1 73.1193 71.7159 -204.45 - 96 174.73 1258 0 0 73.1183 71.7197 -205.85 - 96 69.5344 916 1 1 3.28729 107.244 -174.675 - 96 95.3085 1266 1 1 73.25 71.7236 -174.562 - 96 17.3578 1260 1 0 73.7698 72.2369 -175.85 - 96 176.709 1261 1 0 73.7945 72.2501 -175.902 -Number of digits in this event = 18 +Number of tracker hits in this event = 24 + 96 165.302 1012 11 1 22.4655 51.5518 125.55 + 96 111.377 1157 11 0 22.4655 51.5513 124.15 + 96 112.037 1012 10 1 22.4663 51.5428 95.55 + 96 127.656 1157 10 0 22.4669 51.5415 94.15 + 96 111.481 1012 9 1 22.4839 51.5148 65.55 + 96 239.89 1157 9 0 22.4838 51.5141 64.15 + 96 182.155 1012 8 1 22.483 51.5008 35.55 + 96 106.256 1157 8 0 22.483 51.4996 34.15 + 96 107.945 1012 7 1 22.4823 51.4774 5.55 + 96 117.883 1157 7 0 22.4787 51.4762 4.15 + 96 88.7401 1011 6 1 22.4015 51.4526 -24.45 + 96 111.455 1157 6 0 22.3974 51.4513 -25.85 + 96 92.7165 1011 5 1 22.3171 51.4268 -54.45 + 96 116.671 1156 5 0 22.3136 51.426 -55.85 + 96 145.01 1010 4 1 22.2455 51.4039 -84.45 + 96 109.454 1156 4 0 22.2418 51.4008 -85.85 + 96 147.848 1010 3 1 22.17 51.3399 -114.45 + 96 122.344 1156 3 0 22.1664 51.3373 -115.85 + 96 118.923 1010 2 1 22.0938 51.2802 -144.45 + 96 161.897 1156 2 0 22.0908 51.278 -145.85 + 96 119.332 1009 1 1 22.027 51.2398 -174.45 + 96 128.92 1155 1 0 22.0242 51.238 -175.85 + 96 134.957 1009 0 1 21.9668 51.2026 -204.45 + 96 140.357 1155 0 0 21.9646 51.201 -205.85 +Number of digits in this event = 12 Using G4ParticleGun ... -4.71233 LIN +8.30924 LIN proton Event: 97 -Number of tracker hits in this event = 20 - 97 114.934 310 9 1 -117.993 6.13022 65.55 - 97 121.752 930 9 0 -117.994 6.12971 64.15 - 97 113.35 310 8 1 -118.018 6.11582 35.55 - 97 93.2312 930 8 0 -118.018 6.11472 34.15 - 97 116.199 310 7 1 -118.028 6.09621 5.55 - 97 103.186 930 7 0 -118.028 6.09553 4.15 - 97 99.0861 310 6 1 -118.033 6.07963 -24.45 - 97 113.406 930 6 0 -118.033 6.07832 -25.85 - 97 156.168 310 5 1 -118.034 6.04709 -54.45 - 97 107.348 929 5 0 -118.033 6.04555 -55.85 - 97 141.604 310 4 1 -118.025 6.01054 -84.45 - 97 111.003 929 4 0 -118.024 6.00897 -85.85 - 97 123.186 310 3 1 -117.982 5.97773 -114.45 - 97 119.608 929 3 0 -117.981 5.97616 -115.85 - 97 106.868 310 2 1 -117.956 5.93955 -144.45 - 97 105.68 929 2 0 -117.956 5.93773 -145.85 - 97 116.617 310 1 1 -117.958 5.89872 -174.45 - 97 120.741 929 1 0 -117.957 5.89422 -175.85 - 97 101.806 311 0 1 -117.943 5.8087 -204.45 - 97 177.576 928 0 0 -117.942 5.80479 -205.85 -Number of digits in this event = 7 +Number of tracker hits in this event = 27 + 97 232.608 593 10 1 -61.4076 -77.084 95.55 + 97 123.317 514 10 0 -61.4073 -77.0832 94.15 + 97 141.056 593 9 1 -61.3988 -77.0653 65.55 + 97 87.5401 514 9 0 -61.398 -77.065 64.15 + 97 113.545 593 8 1 -61.3817 -77.0559 35.55 + 97 233.858 514 8 0 -61.3804 -77.0553 34.15 + 97 109.798 593 7 1 -61.3493 -77.043 5.55 + 97 162.152 515 7 0 -61.3486 -77.0433 4.15 + 97 129.33 593 6 1 -61.3288 -77.0515 -24.45 + 97 112.405 514 6 0 -61.328 -77.0517 -25.85 + 97 109.22 593 5 1 -61.3157 -77.0522 -54.45 + 97 106.208 514 5 0 -61.3153 -77.0524 -55.85 + 97 102.235 593 4 1 -61.3049 -77.0549 -84.45 + 97 98.1821 514 4 0 -61.305 -77.0557 -85.85 + 97 147.232 593 3 1 -61.3073 -77.0726 -114.45 + 97 140.241 514 3 0 -61.3083 -77.0745 -115.85 + 97 107.952 593 2 1 -61.3277 -77.1148 -144.45 + 97 110.621 514 2 0 -61.329 -77.1174 -145.85 + 97 110.359 593 1 1 -61.3554 -77.1727 -174.45 + 97 151.516 514 1 0 -61.3563 -77.175 -175.85 + 97 104.403 593 0 1 -61.3744 -77.2218 -204.45 + 97 104.593 514 0 0 -61.3761 -77.2243 -205.85 + 97 327.19 1192 2 0 -151.519 58.5959 -146.25 + 97 42.0259 1193 2 0 -151.292 58.65 -146.206 + 97 30.9521 1275 2 0 -68.9843 75.1727 -146.25 + 97 0.183284 1240 2 0 -47.5691 68.2005 -146.25 + 97 72.0707 592 10 1 -61.45 -77.0455 95.246 +Number of digits in this event = 12 Using G4ParticleGun ... -9.17629 LIN +5.42996 LIN proton Event: 98 -Number of tracker hits in this event = 75 - 98 126.668 1012 11 1 22.6481 58.1166 125.55 - 98 102.486 1190 11 0 22.6483 58.1172 124.15 - 98 131.27 1013 10 1 22.6514 58.127 95.55 - 98 108.495 1190 10 0 22.6515 58.1266 94.15 - 98 124.474 1013 9 1 22.6542 58.1167 65.55 - 98 107.455 1190 9 0 22.6539 58.1171 64.15 - 98 111.928 1012 8 1 22.6493 58.1251 35.55 - 98 159.413 1190 8 0 22.6498 58.126 34.15 - 98 116.08 1013 7 1 22.6656 58.1417 5.55 - 98 244.54 1190 7 0 22.6666 58.1428 4.15 - 98 132.82 1013 6 1 22.6846 58.1661 -24.45 - 98 115.701 1190 6 0 22.686 58.1675 -25.85 - 98 134.017 1013 5 1 22.7138 58.1971 -54.45 - 98 108.23 1190 5 0 22.7159 58.1978 -55.85 - 98 127.954 1013 4 1 22.7627 58.2181 -84.45 - 98 93.951 1190 4 0 22.7653 58.2201 -85.85 - 98 131.87 1013 3 1 22.822 58.256 -114.45 - 98 140.766 1191 3 0 22.8249 58.2582 -115.85 - 98 102.027 1014 2 1 22.8882 58.3027 -144.45 - 98 137.301 1191 2 0 22.892 58.306 -145.85 - 98 102.333 1014 1 1 22.9689 58.3706 -174.45 - 98 126.113 1191 1 0 22.973 58.3733 -175.85 - 98 138.378 1015 0 1 23.0579 58.4296 -204.45 - 98 171.81 1191 0 0 23.0633 58.4324 -205.85 - 98 192.623 1515 13 0 22.9417 123.162 183.75 - 98 66.7668 1022 13 1 24.4772 123.645 185.15 - 98 84.0557 1023 13 1 24.65 123.712 185.322 - 98 31.2611 1024 13 1 24.85 123.8 185.489 - 98 231.022 144 5 0 12.8797 -151.166 -56.25 - 98 208.75 1192 0 0 23.095 58.45 -205.979 - 98 79.96 1150 6 0 40.2406 50.0992 -26.25 - 98 55.5747 1149 6 0 40.4073 50.05 -26.0106 - 98 160.295 1102 6 1 40.6127 49.7387 -24.85 - 98 122.759 1101 6 1 40.45 49.7625 -24.5373 - 98 124.187 1145 6 0 39.0975 49.1668 -25.85 - 98 175.597 1144 6 0 38.8357 49.05 -25.9431 - 98 173.646 1143 6 0 38.8864 48.85 -25.9307 - 98 79.3664 1012 6 1 22.65 58.2046 -24.5689 - 98 26.2001 1191 6 0 22.6187 58.4392 -25.85 - 98 96.5671 1192 6 0 22.6211 58.45 -25.911 - 98 508.798 1026 5 1 25.3749 66.8967 -54.45 - 98 394.919 1025 5 1 25.25 68.2663 -54.7169 - 98 28.6045 1272 5 0 25.3529 74.5247 -55.85 - 98 45.2176 1273 5 0 25.3519 74.65 -55.877 - 98 77.3249 1274 5 0 25.3444 74.85 -55.9153 - 98 55.9089 1275 5 0 25.3257 75.0509 -55.9575 - 98 60.3502 1276 5 0 25.3091 75.25 -55.9473 - 98 54.1283 1277 5 0 25.2908 75.4506 -55.9272 - 98 60.1725 1278 5 0 25.2923 75.65 -55.9255 - 98 64.4769 1279 5 0 25.2832 75.8503 -55.9294 - 98 49.604 1280 5 0 25.2748 76.0503 -55.9444 - 98 71.6536 1281 5 0 25.2632 76.25 -55.9902 - 98 68.8686 1282 5 0 25.2639 76.45 -56.0438 - 98 53.4476 1283 5 0 25.2598 76.65 -56.0689 - 98 60.861 1284 5 0 25.2409 76.8501 -56.0945 - 98 59.9129 1285 5 0 25.2209 77.05 -56.1245 - 98 53.627 1286 5 0 25.1827 77.25 -56.1382 - 98 46.3736 1287 5 0 25.1544 77.4501 -56.1374 - 98 42.1531 1288 5 0 25.1572 77.65 -56.1245 - 98 107.767 1289 5 0 25.1367 77.85 -56.1333 - 98 56.1661 1290 5 0 25.109 78.0506 -56.1287 - 98 58.9102 1291 5 0 25.124 78.25 -56.109 - 98 62.1227 1292 5 0 25.1224 78.45 -56.0927 - 98 66.3023 1293 5 0 25.116 78.6503 -56.0627 - 98 61.6077 1294 5 0 25.1382 78.85 -56.0456 - 98 127.01 1295 5 0 25.1558 79.05 -56.0039 - 98 75.7011 1296 5 0 25.1574 79.2502 -55.9889 - 98 83.1454 1297 5 0 25.1605 79.45 -56.0029 - 98 134.834 1298 5 0 25.1393 79.6501 -56.0032 - 98 59.898 1299 5 0 25.1295 79.85 -55.9877 - 98 53.6491 1300 5 0 25.0339 80.05 -55.9186 - 98 114.831 1016 5 1 23.3909 81.6331 -54.8498 - 98 71.9344 1015 5 1 23.25 81.7553 -54.7254 - 98 46.4023 1014 5 1 23.05 81.83 -54.5097 - 98 87.4744 1191 7 0 22.6633 58.25 3.95412 -Number of digits in this event = 28 +Number of tracker hits in this event = 35 + 98 94.5045 907 10 1 1.62429 -113.358 95.55 + 98 106.916 333 10 0 1.62406 -113.359 94.15 + 98 113.399 907 9 1 1.62462 -113.359 65.55 + 98 116.701 333 9 0 1.62454 -113.36 64.15 + 98 91.8164 907 8 1 1.62242 -113.386 35.55 + 98 108.253 333 8 0 1.62303 -113.387 34.15 + 98 99.166 907 7 1 1.63894 -113.414 5.55 + 98 153.149 333 7 0 1.63939 -113.416 4.15 + 98 133.263 907 6 1 1.64863 -113.444 -24.45 + 98 116.873 333 6 0 1.64945 -113.444 -25.85 + 98 248.134 908 5 1 1.67003 -113.46 -54.45 + 98 120.816 333 5 0 1.67143 -113.461 -55.85 + 98 206.031 908 4 1 1.70164 -113.493 -84.45 + 98 116.189 333 4 0 1.70385 -113.495 -85.85 + 98 91.19 908 3 1 1.74993 -113.536 -114.45 + 98 114.268 333 3 0 1.75183 -113.538 -115.85 + 98 100.851 908 2 1 1.789 -113.592 -144.45 + 98 103.345 332 2 0 1.79061 -113.596 -145.85 + 98 84.7466 908 1 1 1.82669 -113.664 -174.45 + 98 108.038 332 1 0 1.8279 -113.668 -175.85 + 98 112.731 909 0 1 1.85079 -113.739 -204.45 + 98 104.09 332 0 0 1.85139 -113.741 -205.85 + 98 174.955 909 5 1 1.85 -113.559 -54.5024 + 98 38.0183 324 5 0 1.55809 -115.246 -55.85 + 98 67.8077 323 5 0 1.56455 -115.35 -55.863 + 98 6.98117 914 5 1 2.88456 -119.118 -54.85 + 98 23.2222 289 5 0 4.6005 -122.243 -55.85 + 98 21.5136 933 5 1 6.80108 -124.091 -54.85 + 98 304.745 934 5 1 6.85004 -124.124 -54.8251 + 98 90.7722 322 9 0 -1.76891 -115.747 63.7502 + 98 19.0675 321 9 0 -1.77391 -115.75 63.9257 + 98 57.869 883 9 1 -3.33363 -116.6 65.1509 + 98 209.687 882 9 1 -3.45007 -116.655 65.2986 + 98 183.402 313 9 0 -3.51397 -117.419 64.15 + 98 100.537 312 9 0 -3.54659 -117.55 63.8891 +Number of digits in this event = 10 Using G4ParticleGun ... -4.30548 LIN +8.62544 LIN proton Event: 99 -Number of tracker hits in this event = 44 - 99 51.394 540 11 0 44.3567 -71.9254 123.932 - 99 166.18 1121 10 1 44.3555 -71.9269 95.55 - 99 92.1749 540 10 0 44.3558 -71.9288 94.15 - 99 125.794 1121 9 1 44.358 -71.9649 65.55 - 99 99.6278 540 9 0 44.3584 -71.9648 64.15 - 99 134.999 1121 8 1 44.3628 -71.9656 35.55 - 99 112.251 540 8 0 44.3623 -71.9678 34.15 - 99 121.606 1121 7 1 44.3474 -72.0149 5.55 - 99 116.031 540 7 0 44.3457 -72.0176 4.15 - 99 114.834 1121 6 1 44.2938 -72.0693 -24.45 - 99 103.306 539 6 0 44.2916 -72.0712 -25.85 - 99 180.769 1121 5 1 44.2542 -72.1146 -54.45 - 99 112.964 539 5 0 44.2536 -72.1168 -55.85 - 99 139.938 1120 4 1 44.2418 -72.1684 -84.45 - 99 102.482 539 4 0 44.2399 -72.1715 -85.85 - 99 129.291 1120 3 1 44.1994 -72.2347 -114.45 - 99 137.276 539 3 0 44.1956 -72.2395 -115.85 - 99 125.142 1120 2 1 44.117 -72.3328 -144.45 - 99 110.373 538 2 0 44.1141 -72.3367 -145.85 - 99 120.303 1120 1 1 44.0641 -72.415 -174.45 - 99 144.426 538 1 0 44.0628 -72.4196 -175.85 - 99 114.384 1119 0 1 44.0339 -72.5133 -204.45 - 99 114.354 537 0 0 44.032 -72.518 -205.85 - 99 77.7693 1120 10 1 44.25 -71.8891 95.384 - 99 118.653 542 10 0 43.7446 -71.6254 94.15 - 99 126.028 1047 9 1 29.6281 -63.8357 65.55 - 99 170.109 582 9 0 29.534 -63.5369 64.15 - 99 12.9846 583 9 0 29.4937 -63.45 63.7984 - 99 243.243 1024 8 1 24.8766 -55.9709 35.5498 - 99 170.507 1023 8 1 24.85 -56.0346 35.4757 - 99 44.2173 612 8 0 24.3879 -57.5225 34.1498 - 99 82.4126 611 8 0 24.3566 -57.65 34.047 - 99 58.5477 610 8 0 24.295 -57.85 33.8764 - 99 50.9301 967 7 1 13.5966 -88.5322 5.5499 - 99 99.3399 966 7 1 13.45 -88.5355 5.43576 - 99 205.163 965 7 1 13.25 -88.5264 5.24612 - 99 107.218 457 7 0 12.0449 -88.458 4.14966 - 99 126.094 458 7 0 11.9335 -88.45 4.04544 - 99 152.904 819 6 1 -16.1173 -92.0088 -24.45 - 99 119.603 440 6 0 -16.4502 -92.1286 -25.85 - 99 110.773 777 5 1 -24.5814 -93.882 -54.45 - 99 107.685 435 5 0 -24.5078 -93.0989 -55.85 - 99 19.3267 436 5 0 -24.4764 -92.95 -56.1618 - 99 207.35 959 4 1 12.05 -79.5506 -84.5045 -Number of digits in this event = 20 +Number of tracker hits in this event = 26 + 99 192.819 938 11 0 83.3462 7.83169 124.15 + 99 127.09 1316 10 1 83.3481 7.82994 95.55 + 99 136.054 938 10 0 83.3481 7.82954 94.15 + 99 138.539 1316 9 1 83.351 7.81817 65.55 + 99 117.251 938 9 0 83.3506 7.81913 64.15 + 99 100.02 1316 8 1 83.3425 7.83949 35.55 + 99 104.782 938 8 0 83.3422 7.84041 34.15 + 99 117.28 1316 7 1 83.3382 7.86219 5.55 + 99 119.239 939 7 0 83.3384 7.86431 4.15 + 99 113.883 1316 6 1 83.3423 7.9093 -24.45 + 99 126.796 939 6 0 83.3422 7.91139 -25.85 + 99 163.292 1316 5 1 83.3375 7.95651 -54.45 + 99 179.223 939 5 0 83.3376 7.95808 -55.85 + 99 100.408 1316 4 1 83.3378 7.99412 -84.45 + 99 118.472 939 4 0 83.3384 7.99557 -85.85 + 99 115.682 1316 3 1 83.3519 8.02204 -114.45 + 99 131.151 939 3 0 83.3524 8.0229 -115.85 + 99 196.744 1316 2 1 83.3638 8.04342 -144.45 + 99 119.329 939 2 0 83.3638 8.04485 -145.85 + 99 145.938 1316 1 1 83.3661 8.07298 -174.45 + 99 99.6972 940 1 0 83.3669 8.0746 -175.85 + 99 170.941 1316 0 1 83.3835 8.10782 -204.45 + 99 122.574 940 0 0 83.3833 8.10997 -205.85 + 99 78.5473 938 5 0 83.4717 7.85 -56.1122 + 99 215.003 715 5 0 111.416 -36.8557 -56.25 + 99 187.723 716 5 0 111.341 -36.85 -55.9747 +Number of digits in this event = 15 Run terminated. Run Summary Number of events processed : 100 - User=3.830000s Real=4.208404s Sys=0.040000s + User=4.100000s Real=4.501723s Sys=0.050000s End of Run 0 /gun/particle gamma /gun/energy 1 GeV @@ -5623,3945 +5508,4288 @@ Cannot set FirstId as its value was already used. done Using G4ParticleGun ... -2.82123 LIN +9.59455 LIN gamma Event: 0 -Number of tracker hits in this event = 42 - 0 246.023 238 7 1 -132.496 -63.1262 5.55 - 0 295.225 584 7 0 -132.499 -63.1157 4.15 - 0 109.374 237 6 1 -132.699 -62.9094 -24.45 - 0 142.555 585 6 0 -132.718 -62.9454 -25.85 - 0 117.792 234 5 1 -133.161 -63.7973 -54.45 - 0 262.77 580 5 0 -133.151 -63.8683 -55.85 - 0 124.311 236 4 1 -132.787 -65.3505 -84.45 - 0 145.935 573 4 0 -132.776 -65.4313 -85.85 - 0 24.7512 572 4 0 -132.775 -65.45 -86.1754 - 0 142.669 237 3 1 -132.706 -66.768 -114.45 - 0 61.326 566 3 0 -132.715 -66.8396 -115.85 - 0 123.076 565 3 0 -132.716 -66.85 -116.046 - 0 331.178 238 2 1 -132.548 -68.5737 -144.45 - 0 101.903 556 2 0 -132.556 -68.6857 -145.85 - 0 120.866 237 1 1 -132.645 -70.8713 -174.45 - 0 4.23688 545 1 0 -132.564 -71.0457 -175.85 - 0 108.886 544 1 0 -132.562 -71.05 -175.884 - 0 105.191 247 0 1 -130.714 -74.5257 -204.45 - 0 110.523 526 0 0 -130.581 -74.6939 -205.85 - 0 73.9338 1400 1 0 125.879 100.15 -176.075 - 0 195.884 1401 1 0 126.023 100.35 -176.04 - 0 84.362 1402 1 0 126.138 100.55 -176.003 - 0 165.097 1533 1 1 126.94 100.834 -174.85 - 0 179.966 1534 1 1 126.95 100.836 -174.835 - 0 90.8686 1535 1 1 127.15 100.816 -174.697 - 0 201.121 238 6 1 -132.503 -63.1001 -24.45 - 0 106.73 584 6 0 -132.507 -63.0989 -25.85 - 0 95.187 237 5 1 -132.602 -63.0581 -54.45 - 0 133.739 584 5 0 -132.606 -63.0544 -55.85 - 0 91.7198 237 4 1 -132.723 -62.9647 -84.45 - 0 111.703 585 4 0 -132.73 -62.9591 -85.85 - 0 137.621 236 3 1 -132.863 -62.8478 -114.45 - 0 99.3457 586 3 0 -132.87 -62.8392 -115.85 - 0 112.605 235 2 1 -133.011 -62.6724 -144.45 - 0 162.819 586 2 0 -133.015 -62.667 -145.85 - 0 173.746 235 1 1 -133.098 -62.5722 -174.45 - 0 264.044 587 1 0 -133.101 -62.5709 -175.85 - 0 119.597 234 0 1 -133.169 -62.5355 -204.45 - 0 102.012 587 0 0 -133.175 -62.5343 -205.85 - 0 181.472 827 4 0 117.103 -14.4807 -86.25 - 0 177.798 239 6 1 -132.35 -62.9521 -24.5524 - 0 273.476 240 6 1 -132.15 -62.7598 -24.4592 -Number of digits in this event = 24 +Number of tracker hits in this event = 17 + 0 276.413 697 3 1 -40.5905 -125.426 -114.45 + 0 267.017 273 3 0 -40.5904 -125.426 -115.85 + 0 289.461 697 2 1 -40.5844 -125.43 -144.45 + 0 327.795 273 2 0 -40.5837 -125.429 -145.85 + 0 266.656 697 1 1 -40.5659 -125.42 -174.45 + 0 401.604 273 1 0 -40.5614 -125.42 -175.85 + 0 311.744 697 0 1 -40.4801 -125.408 -204.45 + 0 215.69 273 0 0 -40.4774 -125.407 -205.85 + 0 7.67833 968 13 1 13.65 102.304 185.453 + 0 50.4937 662 0 1 -47.5596 -128.359 -204.45 + 0 59.0067 661 0 1 -47.6501 -128.397 -204.66 + 0 126.674 257 0 0 -48.1676 -128.59 -205.85 + 0 64.859 698 2 1 -40.4498 -125.478 -144.663 + 0 60.3205 699 2 1 -40.25 -125.533 -144.768 + 0 80.4385 700 2 1 -40.05 -125.614 -144.778 + 0 89.0963 701 2 1 -39.8497 -125.759 -144.732 + 0 86.8873 702 2 1 -39.65 -125.852 -144.651 +Number of digits in this event = 12 Using G4ParticleGun ... -2.62802 LIN +4.03587 LIN gamma Event: 1 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 +Number of tracker hits in this event = 63 + 1 257.718 1046 6 1 29.3799 43.5698 -24.45 + 1 366.105 1117 6 0 29.378 43.5717 -25.85 + 1 106.641 1046 5 1 29.3504 43.5951 -54.45 + 1 112.366 1117 5 0 29.3471 43.5952 -55.85 + 1 185.059 1046 4 1 29.2838 43.5989 -84.45 + 1 209.301 1117 4 0 29.2824 43.6001 -85.85 + 1 415.177 1046 3 1 29.2712 43.626 -114.45 + 1 307.599 1117 3 0 29.2822 43.6307 -115.85 + 1 116.142 1047 2 1 29.5352 43.784 -144.45 + 1 170.526 1118 2 0 29.5522 43.8331 -145.85 + 1 90.0219 1049 1 1 29.8872 44.8553 -174.45 + 1 296.559 1124 1 0 29.8958 44.8693 -175.85 + 1 112.48 1049 0 1 29.8936 45.2021 -204.45 + 1 118.026 1125 0 0 29.929 45.196 -205.85 + 1 248.135 1118 4 0 29.2034 43.65 -85.9402 + 1 117.801 1048 2 1 29.8318 43.8734 -144.45 + 1 276.699 1119 2 0 29.8684 43.9829 -145.85 + 1 214.187 1053 1 1 30.7813 46.2801 -174.451 + 1 248.336 1132 1 0 30.8261 46.4522 -175.85 + 1 130.728 1057 0 1 31.6469 50.0971 -204.45 + 1 26.2747 1150 0 0 31.6208 50.2382 -205.85 + 1 76.5816 1151 0 0 31.6178 50.25 -205.972 + 1 141.662 1530 2 0 67.1854 126.309 -146.25 + 1 78.81 1045 3 1 29.25 43.6974 -114.669 + 1 98.8677 1118 3 0 29.2144 43.6799 -115.85 + 1 120.52 1037 2 1 27.6293 45.3152 -144.451 + 1 160.508 1126 2 0 27.5233 45.2905 -145.85 + 1 130.105 1025 1 1 25.1713 44.8465 -174.45 + 1 9.79875 1125 1 0 24.9921 45.05 -176.211 + 1 154.108 1013 0 1 22.6589 48.8434 -204.45 + 1 137.852 1145 0 0 22.7321 49.0914 -205.85 + 1 215.671 1012 0 1 22.65 48.8951 -204.483 + 1 132.385 1146 0 0 21.7564 49.3009 -205.85 + 1 91.9321 1011 0 1 22.4498 48.496 -204.585 + 1 90.7415 1010 0 1 22.25 48.2368 -204.715 + 1 27.6036 1132 0 0 21.053 46.5311 -205.85 + 1 75.0661 1131 0 0 20.9992 46.4499 -205.907 + 1 131.391 1130 0 0 20.8682 46.2499 -206.036 + 1 23.4791 1129 0 0 20.7391 46.05 -206.201 + 1 103.378 1047 5 1 29.4815 43.7282 -54.45 + 1 146.337 1118 5 0 29.4938 43.7346 -55.85 + 1 127.468 1048 4 1 29.7103 43.8539 -84.45 + 1 114.12 1119 4 0 29.7208 43.8753 -85.85 + 1 115.73 1049 3 1 29.9413 44.2962 -114.45 + 1 99.563 1121 3 0 29.9414 44.2762 -115.85 + 1 110.896 1050 2 1 30.119 43.9147 -144.45 + 1 108.391 1047 1 1 29.6054 43.796 -174.45 + 1 107.426 1118 1 0 29.5312 43.6928 -175.85 + 1 114.137 1040 0 1 28.1378 41.3199 -204.45 + 1 122.896 1106 0 0 28.1591 41.2656 -205.85 + 1 158.813 1041 0 1 28.4466 40.1327 -204.45 + 1 42.3389 1084 0 0 27.8611 37.0164 -205.85 + 1 49.592 1083 0 0 27.8474 36.8498 -205.926 + 1 61.0182 1082 0 0 27.8729 36.65 -205.988 + 1 69.3649 1081 0 0 27.8737 36.45 -206.049 + 1 55.6146 1080 0 0 27.8572 36.25 -206.101 + 1 20.3897 1079 0 0 27.8554 36.05 -206.201 + 1 4.04397 984 0 0 23.4735 16.8605 -206.25 + 1 89.1287 983 0 0 23.4748 16.85 -206.227 + 1 66.3669 982 0 0 23.5699 16.65 -206.009 + 1 57.7435 981 0 0 23.6361 16.45 -205.931 + 1 301.573 1016 0 1 23.3071 15.3186 -204.85 + 1 273.054 1015 0 1 23.25 15.2096 -204.657 +Number of digits in this event = 31 Using G4ParticleGun ... -5.28947 LIN +3.22442 LIN gamma Event: 2 -Number of tracker hits in this event = 22 - 2 229.587 351 6 1 -109.858 15.4132 -24.45 - 2 264.387 976 6 0 -109.858 15.4128 -25.85 - 2 246.599 351 5 1 -109.858 15.3896 -54.45 - 2 252.069 976 5 0 -109.859 15.3902 -55.85 - 2 249.19 351 4 1 -109.895 15.4017 -84.45 - 2 149.482 976 4 0 -109.895 15.4008 -85.85 - 2 104.323 351 3 1 -109.889 15.3803 -114.45 - 2 256.51 976 3 0 -109.889 15.3791 -115.85 - 2 94.483 351 2 1 -109.895 15.3491 -144.45 - 2 268.561 976 2 0 -109.898 15.3459 -145.85 - 2 199.758 350 1 1 -109.971 15.2788 -174.45 - 2 194.939 976 1 0 -109.973 15.2759 -175.85 - 2 155.517 350 0 1 -110.017 15.1951 -204.45 - 2 266.288 975 0 0 -110.02 15.1894 -205.85 - 2 103.449 977 4 0 -109.893 15.4789 -85.85 - 2 92.6429 350 3 1 -110.004 15.451 -114.45 - 2 131.861 350 2 1 -110.132 15.3448 -144.45 - 2 245.734 349 1 1 -110.319 15.2495 -174.45 - 2 407.825 975 1 0 -110.326 15.2435 -175.85 - 2 121.406 348 0 1 -110.441 15.0949 -204.45 - 2 143.881 454 5 1 -89.175 -98.2975 -54.45 - 2 38.9827 57 1 1 -168.658 -76.1926 -174.45 -Number of digits in this event = 20 -Using G4ParticleGun ... -2.20715 LIN -gamma -Event: 3 -Number of tracker hits in this event = 1 - 3 66.7508 549 0 1 -70.079 -130.023 -204.85 +Number of tracker hits in this event = 2 + 2 34.1596 938 2 1 7.85 -13.04 -144.754 + 2 45.3484 1018 5 1 23.6988 -70.8588 -54.85 Number of digits in this event = 2 Using G4ParticleGun ... -8.25015 LIN +2.1687 LIN +gamma +Event: 3 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +3.31274 LIN gamma Event: 4 -Number of tracker hits in this event = 82 - 4 284.748 717 7 1 -36.4528 143.036 5.55 - 4 232.106 1614 7 0 -36.4529 143.036 4.15 - 4 283.037 717 6 1 -36.4583 143.041 -24.45 - 4 317.442 1614 6 0 -36.4581 143.041 -25.85 - 4 465.934 717 5 1 -36.4501 143.046 -54.45 - 4 478.503 1614 5 0 -36.4501 143.046 -55.85 - 4 262.688 717 4 1 -36.4573 143.051 -84.45 - 4 156.182 1614 4 0 -36.4594 143.051 -85.85 - 4 241.655 717 3 1 -36.4985 143.069 -114.45 - 4 98.9754 1614 3 0 -36.4993 143.069 -115.85 - 4 106.536 717 2 1 -36.5061 143.077 -144.45 - 4 148.969 1614 2 0 -36.5057 143.078 -145.85 - 4 327.688 717 1 1 -36.495 143.087 -174.45 - 4 101.651 1614 1 0 -36.4945 143.085 -175.85 - 4 424.604 717 0 1 -36.4868 143.055 -204.45 - 4 323.099 1614 0 0 -36.4856 143.052 -205.85 - 4 19.8478 726 1 1 -34.6934 142.548 -174.45 - 4 83.3694 727 1 1 -34.65 142.54 -174.47 - 4 284.431 728 1 1 -34.45 142.548 -174.566 - 4 51.8822 1613 0 0 -36.382 142.95 -206.045 - 4 162.623 718 5 1 -36.4457 143.05 -54.45 - 4 100.529 1615 5 0 -36.2577 143.15 -55.9144 - 4 58.2723 735 4 1 -32.9323 142.154 -84.45 - 4 66.6915 736 4 1 -32.85 142.147 -84.6309 - 4 143.205 1609 4 0 -32.3121 142.104 -85.85 - 4 207.163 799 3 1 -20.242 142.835 -114.45 - 4 27.921 800 3 1 -20.05 142.749 -114.764 - 4 128.422 1611 3 0 -19.3926 142.463 -115.85 - 4 28.4715 883 2 1 -3.29374 134.258 -144.45 - 4 149.983 884 2 1 -3.24998 134.228 -144.551 - 4 117.887 1568 2 0 -2.69061 133.879 -145.85 - 4 37.4018 938 1 1 7.79408 127.353 -174.45 - 4 101.914 939 1 1 7.85001 127.308 -174.589 - 4 89.5323 1534 1 0 8.36761 127.017 -175.85 - 4 41.8116 1533 1 0 8.47346 126.95 -176.127 - 4 32.0711 998 0 1 19.7531 119.43 -204.45 - 4 69.17 999 0 1 19.8506 119.401 -204.527 - 4 68.346 1000 0 1 20.05 119.339 -204.696 - 4 248.398 1494 0 0 21.3452 119.043 -205.85 - 4 13.6893 1493 0 0 21.7302 118.95 -206.243 - 4 20.5778 798 3 1 -20.25 142.701 -114.769 - 4 141.35 1608 3 0 -20.559 141.907 -115.85 - 4 68.4745 1607 3 0 -20.5945 141.75 -116.065 - 4 61.1519 852 2 1 -9.45737 118.458 -144.45 - 4 80.416 851 2 1 -9.65 118.392 -144.573 - 4 85.8885 850 2 1 -9.85 118.362 -144.703 - 4 130.227 1490 2 0 -10.9104 118.266 -145.85 - 4 39.508 1491 2 0 -11.1145 118.35 -146.127 - 4 230.909 1615 4 0 -36.5469 143.171 -85.85 - 4 130.556 1615 3 0 -36.6097 143.207 -115.85 - 4 114.521 716 2 1 -36.7037 143.327 -144.45 - 4 109.13 1615 2 0 -36.7183 143.325 -145.85 - 4 105.717 715 1 1 -37.0332 143.321 -174.45 - 4 116.322 1615 1 0 -37.0597 143.316 -175.85 - 4 103.491 712 0 1 -37.554 143.228 -204.45 - 4 129.271 1615 0 0 -37.5736 143.222 -205.85 - 4 257.174 820 6 0 38.4906 -15.8765 -26.25 - 4 136.35 1066 0 1 33.293 131.483 -204.45 - 4 141.482 891 5 0 -131.562 -1.72391 -56.25 - 4 147.403 271 4 1 -125.913 -152.856 -84.45 - 4 168.298 890 5 0 -131.851 -1.85014 -56.0167 - 4 100.27 721 4 1 -35.6576 142.687 -84.45 - 4 78.4497 722 4 1 -35.65 142.686 -84.811 - 4 177.624 1612 4 0 -35.6302 142.684 -85.85 - 4 117.658 724 3 1 -35.0838 142.959 -114.45 - 4 158.901 1613 3 0 -35.1359 142.897 -115.85 - 4 127.24 721 2 1 -35.6885 144.007 -144.45 - 4 116.493 1618 2 0 -35.7222 143.905 -145.85 - 4 141.762 1607 1 0 -36.6357 141.715 -175.85 - 4 146.38 708 0 1 -38.281 139.249 -204.451 - 4 157.701 1595 0 0 -38.5094 139.308 -205.85 - 4 107.048 1606 0 0 -34.3387 141.541 -205.85 - 4 68.8869 675 0 1 -44.9985 136.409 -204.45 - 4 155.601 1617 5 0 -36.3364 143.579 -55.8505 - 4 117.568 776 4 1 -24.6956 156.782 -84.45 - 4 117.475 775 4 1 -24.85 157.082 -84.6186 - 4 67.2664 1695 4 0 -25.6738 159.193 -85.8502 - 4 60.0456 1696 4 0 -25.7311 159.351 -85.9315 - 4 80.065 1697 4 0 -25.8025 159.55 -86.0296 - 4 63.1587 1698 4 0 -25.8639 159.75 -86.117 - 4 17.196 1699 4 0 -25.9808 159.95 -86.2258 - 4 15.4224 1597 1 0 -48.008 139.68 -176.25 -Number of digits in this event = 40 +Number of tracker hits in this event = 53 + 4 219.841 1333 7 1 86.7828 84.8268 5.55 + 4 245.67 1323 7 0 86.7908 84.8243 4.15 + 4 143.073 1334 6 1 86.9267 84.7538 -24.45 + 4 231.786 1323 6 0 86.9314 84.7462 -25.85 + 4 123.84 1334 5 1 87.0171 84.5861 -54.45 + 4 119.422 1322 5 0 87.0143 84.5749 -55.85 + 4 162.853 1334 4 1 86.9419 84.3395 -84.45 + 4 109.631 1321 4 0 86.9336 84.3268 -85.85 + 4 128.685 1333 3 1 86.7537 84.0655 -114.45 + 4 80.0705 1320 3 0 86.7334 84.0528 -115.85 + 4 28.7991 1319 3 0 86.729 84.05 -116.156 + 4 122.43 1331 2 1 86.3181 83.7768 -144.45 + 4 114.345 1318 2 0 86.2968 83.7693 -145.85 + 4 120.408 1329 1 1 85.8642 83.5848 -174.45 + 4 112.538 1317 1 0 85.8514 83.5741 -175.85 + 4 166.857 1327 0 1 85.586 83.3453 -204.45 + 4 322.934 1316 0 0 85.5857 83.3562 -205.85 + 4 34.149 1319 0 0 85.4885 83.85 -206.039 + 4 496.945 1332 0 1 86.5669 83.433 -204.45 + 4 133.871 512 8 0 72.1206 -77.45 34.0011 + 4 20.0801 1311 0 0 86.9263 82.2899 -205.85 + 4 95.9965 1310 0 0 86.9372 82.25 -205.898 + 4 47.6432 1309 0 0 86.9594 82.05 -206.115 + 4 28.3065 1400 0 0 35.8199 100.15 -206.058 + 4 126.729 1333 6 1 86.8448 84.8212 -24.45 + 4 155.766 1333 5 1 86.843 84.7826 -54.45 + 4 134.345 1323 5 0 86.8427 84.7829 -55.85 + 4 216.546 1333 4 1 86.8272 84.7882 -84.45 + 4 355.281 1323 4 0 86.829 84.7887 -85.85 + 4 109.418 1334 3 1 86.8635 84.7816 -114.45 + 4 127.972 1323 3 0 86.8649 84.7852 -115.85 + 4 134.599 1333 2 1 86.8435 84.8879 -144.45 + 4 163.156 1324 2 0 86.8411 84.8951 -145.85 + 4 144.001 1333 1 1 86.8102 85.0184 -174.45 + 4 266.439 1324 1 0 86.7985 85.0321 -175.85 + 4 155.119 1326 0 0 86.5219 85.2613 -205.85 + 4 38.0318 1376 1 1 95.5172 48.7225 -174.45 + 4 119.144 1330 3 1 86.1255 83.0663 -114.45 + 4 5.01498 1331 3 1 86.25 83.1192 -114.826 + 4 120.831 1315 3 0 86.6086 83.1891 -115.85 + 4 113.448 1350 2 1 90.2726 79.5732 -144.45 + 4 122.012 1297 2 0 90.2464 79.6144 -145.85 + 4 75.7757 1346 1 1 89.2776 80.3057 -174.45 + 4 31.9188 1345 1 1 89.25 80.313 -174.719 + 4 102.721 1301 1 0 89.1173 80.3358 -175.85 + 4 35.3014 1315 0 1 83.1015 82.6087 -204.45 + 4 76.9896 1314 0 1 83.05 82.6561 -204.501 + 4 131.83 1313 0 1 82.85 82.8474 -204.678 + 4 44.5571 1312 0 1 82.65 83.015 -204.797 + 4 30.7897 1322 0 0 80.5763 84.5844 -205.85 + 4 146.593 1323 0 0 80.4917 84.65 -205.895 + 4 162.266 1324 0 0 80.1367 84.85 -206.069 + 4 67.1465 1385 0 0 13.5118 97.2336 -206.25 +Number of digits in this event = 32 Using G4ParticleGun ... -8.74568 LIN +4.69248 LIN gamma Event: 5 -Number of tracker hits in this event = 13 - 5 249.233 1638 1 1 147.923 -10.9283 -174.45 - 5 239.187 845 1 0 147.923 -10.9284 -175.85 - 5 150.774 1638 0 1 147.914 -10.933 -204.45 - 5 501.61 845 0 0 147.913 -10.9327 -205.85 - 5 129.899 1245 8 0 40.6969 69.0842 33.75 - 5 54.8742 907 4 1 1.65 -127.811 -84.8431 - 5 65.5563 1382 1 1 96.7404 112.305 -174.85 - 5 58.116 1128 3 0 64.7597 45.7714 -115.85 - 5 122.31 1383 1 1 96.75 112.566 -174.537 - 5 3.47525 1652 4 1 150.708 93.0514 -84.85 - 5 120.306 1639 0 1 147.955 -10.9457 -204.45 - 5 172.772 1715 1 1 163.236 -63.5139 -174.85 - 5 65.5066 1716 1 1 163.35 -63.497 -174.656 -Number of digits in this event = 11 +Number of tracker hits in this event = 106 + 5 394.722 984 9 1 16.9095 67.2924 65.55 + 5 220.239 1236 9 0 16.9174 67.2917 64.15 + 5 148.503 985 8 1 17.1503 67.2419 35.55 + 5 348.229 1236 8 0 17.1372 67.2565 34.15 + 5 170.336 983 7 1 16.8312 67.6607 5.55 + 5 108.433 1238 7 0 16.7807 67.6782 4.15 + 5 131.096 978 6 1 15.7508 67.9533 -24.45 + 5 122.543 1239 6 0 15.7283 68.0039 -25.85 + 5 119.91 976 5 1 15.3093 68.9792 -54.45 + 5 146.662 1244 5 0 15.2609 69.0204 -55.85 + 5 262.674 971 4 1 14.2634 69.8186 -84.45 + 5 142.512 1249 4 0 14.2437 69.879 -85.85 + 5 239.355 969 3 1 13.8702 71.1447 -114.45 + 5 96.9509 1255 3 0 13.8595 71.2104 -115.85 + 5 94.2712 967 2 1 13.6109 72.4654 -144.45 + 5 122.544 1262 2 0 13.59 72.5633 -145.85 + 5 85.1433 965 1 1 13.0649 74.5526 -174.45 + 5 32.0257 964 1 1 13.05 74.5632 -174.698 + 5 132.775 1272 1 0 12.9839 74.611 -175.85 + 5 200.182 958 0 1 11.7889 75.5665 -204.45 + 5 109.679 1277 0 0 11.5299 75.5701 -205.85 + 5 34.3902 1676 0 0 -2.31408 155.458 -206.25 + 5 61.1859 1675 0 0 -2.29892 155.35 -206.186 + 5 231.175 1649 0 0 -6.69055 149.976 -206.25 + 5 131.324 968 3 1 13.8498 71.4654 -114.475 + 5 10.9631 967 3 1 13.65 71.661 -114.827 + 5 113.915 1260 3 0 12.3493 72.0559 -115.85 + 5 92.8291 1259 3 0 12.1616 72.05 -115.998 + 5 37.5469 958 3 1 11.6895 72.378 -114.849 + 5 149.402 957 3 1 11.65 72.398 -114.76 + 5 90.1266 1262 3 0 11.2945 72.5215 -115.85 + 5 93.9176 1261 3 0 11.2847 72.4499 -115.93 + 5 118.553 918 1 1 3.82771 58.2159 -174.45 + 5 190.463 1189 1 0 3.21832 57.9204 -175.85 + 5 15.3955 1188 1 0 3.07401 57.85 -176.19 + 5 43.9361 870 0 1 -5.88118 49.7911 -204.45 + 5 264.156 869 0 1 -6.05 49.7947 -204.51 + 5 68.9385 868 0 1 -6.25008 49.7961 -204.575 + 5 69.3272 867 0 1 -6.45005 49.811 -204.648 + 5 49.6533 866 0 1 -6.65 49.7513 -204.719 + 5 43.8722 865 0 1 -6.8505 49.693 -204.802 + 5 194.864 1144 0 0 -10.3904 48.9415 -205.85 + 5 667.531 1143 0 0 -10.6795 48.85 -205.944 + 5 65.916 777 0 0 -13.4966 -24.587 -206.25 + 5 49.9061 776 0 0 -13.4664 -24.65 -206.241 + 5 63.4327 1142 0 0 -45.8669 48.6204 -206.25 + 5 45.25 1147 0 0 -11.9881 49.65 -205.991 + 5 140.045 968 2 1 13.7627 72.6898 -144.45 + 5 66.377 1267 2 0 13.3862 73.6308 -145.85 + 5 84.7321 1268 2 0 13.3741 73.6502 -145.888 + 5 22.9556 812 2 0 -47.0329 -17.594 -146.25 + 5 84.2492 811 2 0 -47.0647 -17.6508 -146.239 + 5 73.2861 810 2 0 -47.1546 -17.85 -146.155 + 5 68.9178 809 2 0 -47.0828 -18.05 -146.058 + 5 36.7014 808 2 0 -46.9728 -18.25 -145.938 + 5 41.5778 669 2 1 -46.1255 -19.9239 -144.85 + 5 76.0411 670 2 1 -46.05 -19.9973 -144.778 + 5 70.4251 671 2 1 -45.85 -20.0254 -144.678 + 5 278.858 672 2 1 -45.6499 -20.0075 -144.652 + 5 70.342 792 2 0 -45.4845 -21.4535 -145.85 + 5 26.2678 793 2 0 -45.5069 -21.4498 -145.911 + 5 14.0826 667 2 1 -46.6265 -21.3367 -144.85 + 5 73.0832 666 2 1 -46.65 -21.3391 -144.824 + 5 120.135 665 2 1 -46.85 -21.4062 -144.758 + 5 184.901 664 2 1 -47.0502 -21.2555 -144.697 + 5 7.54669 1238 6 0 15.2339 67.6572 -25.85 + 5 134.315 1237 6 0 15.2198 67.65 -25.8801 + 5 26.317 886 5 1 -2.70211 61.3125 -54.45 + 5 127.118 887 5 1 -2.65 61.3589 -54.5212 + 5 29.3773 1214 5 0 -1.70615 62.9594 -55.8501 + 5 75.3951 1215 5 0 -1.67258 63.05 -55.9131 + 5 106.149 1216 5 0 -1.59968 63.25 -56.034 + 5 21.9326 1217 5 0 -1.40101 63.4501 -56.2168 + 5 218.662 984 7 1 16.85 67.6304 5.42835 + 5 33.2317 972 4 1 14.4959 69.9338 -84.45 + 5 79.868 970 4 1 14.2499 69.919 -84.798 + 5 86.0248 1248 4 0 14.4133 69.6692 -85.85 + 5 143.959 984 8 1 16.8874 67.2982 35.55 + 5 111.107 1236 7 0 16.8589 67.3922 4.15 + 5 107.956 983 6 1 16.7764 67.402 -24.45 + 5 105.005 1236 6 0 16.7743 67.4016 -25.85 + 5 117.764 983 5 1 16.7368 67.3974 -54.45 + 5 123.76 1236 5 0 16.7357 67.3961 -55.85 + 5 149.672 983 4 1 16.7207 67.3721 -84.45 + 5 125.635 1236 4 0 16.7178 67.3472 -85.85 + 5 129.343 983 3 1 16.6524 66.8361 -114.45 + 5 130.719 1233 3 0 16.6446 66.8088 -115.85 + 5 139.819 982 2 1 16.4983 66.2575 -144.45 + 5 149.001 1230 2 0 16.4746 66.2416 -145.85 + 5 127.509 979 1 1 15.9826 65.915 -174.45 + 5 108.053 1229 1 0 15.9557 65.9004 -175.85 + 5 123.623 976 0 1 15.3788 65.594 -204.45 + 5 224.364 1227 0 0 15.3467 65.5779 -205.85 + 5 165.41 1235 8 0 17.0813 67.25 33.9986 + 5 18.2053 983 8 1 16.85 67.257 35.2064 + 5 27.3669 1230 8 0 16.3283 66.1252 34.15 + 5 80.8127 1229 8 0 16.3045 66.0497 34.0937 + 5 55.7908 1228 8 0 16.2719 65.85 33.9897 + 5 71.4676 1227 8 0 16.2602 65.6499 33.9693 + 5 94.7293 1226 8 0 16.2006 65.45 33.9297 + 5 66.8013 1225 8 0 16.1254 65.2496 33.8076 + 5 121.764 1233 9 0 17.6443 66.7417 64.15 + 5 111.684 1232 9 0 17.7468 66.65 63.9762 + 5 65.2641 1231 9 0 17.6459 66.45 63.871 + 5 86.0445 1151 9 0 -15.3456 50.3765 63.7502 + 5 192.197 1152 9 0 -15.36 50.45 63.9262 +Number of digits in this event = 45 Using G4ParticleGun ... -9.21795 LIN +7.98378 LIN gamma Event: 6 -Number of tracker hits in this event = 116 - 6 239.957 892 11 1 -1.59476 17.6121 125.55 - 6 266.749 987 11 0 -1.59431 17.6119 124.15 - 6 223.572 892 10 1 -1.58006 17.6106 95.55 - 6 233.38 987 10 0 -1.58003 17.6094 94.15 - 6 279.115 892 9 1 -1.58041 17.5882 65.55 - 6 232.607 987 9 0 -1.58315 17.5863 64.15 - 6 115.8 892 8 1 -1.64617 17.5478 35.55 - 6 105.968 987 8 0 -1.64914 17.5467 34.15 - 6 113.618 891 7 1 -1.71458 17.5206 5.55 - 6 140.083 987 7 0 -1.71756 17.5191 4.15 - 6 135.577 891 6 1 -1.76813 17.4879 -24.45 - 6 137.833 987 6 0 -1.77556 17.4845 -25.85 - 6 244.441 890 5 1 -1.92417 17.3951 -54.45 - 6 247.436 986 5 0 -1.9202 17.3809 -55.85 - 6 114.809 891 4 1 -1.79272 17.0693 -84.45 - 6 42.5552 985 4 0 -1.77669 17.0518 -85.85 - 6 88.1188 984 4 0 -1.77492 17.05 -85.9954 - 6 95.9128 893 3 1 -1.28817 16.7443 -114.45 - 6 267.773 983 3 0 -1.26325 16.6895 -115.85 - 6 104.071 896 2 1 -0.806993 15.4259 -144.45 - 6 122.655 976 2 0 -0.798182 15.3578 -145.85 - 6 188.993 896 1 1 -0.753452 14.0181 -174.45 - 6 120.722 969 1 0 -0.719767 13.9847 -175.85 - 6 108.544 966 0 0 0.0842568 13.2798 -205.85 - 6 2.13863 1372 0 0 -18.8748 94.55 -206.247 - 6 28.4832 1368 0 0 -19.5154 93.95 -205.881 - 6 150.664 668 1 1 -46.4108 26.7131 -174.45 - 6 112.175 667 1 1 -46.4504 26.9308 -174.726 - 6 112.256 895 1 1 -0.850337 14.0011 -174.468 - 6 69.5275 968 1 0 -1.5685 13.6717 -175.85 - 6 81.9316 967 1 0 -1.61628 13.65 -175.938 - 6 91.7759 859 0 1 -8.1609 11.814 -204.45 - 6 25.7307 860 0 1 -8.04995 11.8722 -204.758 - 6 115.955 960 0 0 -7.39946 12.0883 -205.85 - 6 186.102 957 0 0 1.78842 11.6256 -206.25 - 6 164.678 897 1 1 -0.65 14.0206 -174.66 - 6 175.418 973 1 0 0.114508 14.6699 -175.85 - 6 127.836 974 1 0 0.356826 14.85 -176.176 - 6 46.2517 1030 0 1 26.1208 26.6071 -204.45 - 6 90.8099 1031 0 1 26.25 26.6322 -204.582 - 6 31.5439 1032 0 1 26.45 26.6598 -204.78 - 6 178.79 1034 0 0 27.6793 26.9374 -205.85 - 6 80.3041 1035 0 0 28.0227 27.05 -206.117 - 6 204.81 899 1 1 -0.137465 16.2547 -174.45 - 6 125.526 981 1 0 -0.116561 16.2611 -175.85 - 6 268.38 902 0 1 0.629284 16.1777 -204.45 - 6 158.459 980 0 0 0.644388 16.1581 -205.85 - 6 129.783 980 1 0 -0.100062 16.2021 -175.85 - 6 57.5395 903 0 1 0.65 15.0815 -204.642 - 6 196.827 973 0 0 0.828185 14.8356 -205.85 - 6 246.469 872 2 1 -5.4925 118.569 -144.85 - 6 18.068 871 2 1 -5.65014 118.481 -144.49 - 6 231.886 890 3 1 -1.90571 17.3933 -114.45 - 6 217.108 986 3 0 -1.90805 17.3988 -115.85 - 6 99.2506 891 2 1 -1.66921 17.5089 -144.45 - 6 259.852 986 2 0 -1.61024 17.406 -145.85 - 6 129.012 900 0 1 0.0763606 11.2123 -204.45 - 6 205.235 954 0 0 0.22338 10.9724 -205.85 - 6 131.775 890 2 1 -1.94118 17.2557 -144.45 - 6 123.499 985 2 0 -1.95068 17.2468 -145.85 - 6 129.127 889 1 1 -2.15988 17.0975 -174.45 - 6 107.461 985 1 0 -2.17183 17.0918 -175.85 - 6 105.59 888 0 1 -2.4114 16.9501 -204.45 - 6 262.136 984 0 0 -2.4337 16.9441 -205.85 - 6 250.76 890 4 1 -1.93683 17.4132 -84.45 - 6 415.456 986 4 0 -1.96614 17.3587 -85.85 - 6 115.285 886 3 1 -2.72546 15.6401 -114.45 - 6 213.306 977 3 0 -2.60414 15.5628 -115.85 - 6 100.3 972 2 0 0.0604764 14.4829 -145.85 - 6 92.738 907 1 1 1.53813 15.6377 -174.45 - 6 126.694 977 1 0 1.6016 15.5718 -175.85 - 6 90.6877 916 0 1 3.31863 14.3572 -204.45 - 6 118.121 971 0 0 3.36956 14.3033 -205.85 - 6 120.928 865 3 1 -6.89197 16.9328 -114.45 - 6 0.980497 982 3 0 -7.52997 16.65 -116.244 - 6 103.635 803 2 1 -19.3074 12.1649 -144.45 - 6 32.5587 802 2 1 -19.4503 12.1482 -144.721 - 6 105.045 960 2 0 -20.0847 12.1497 -145.85 - 6 95.5445 739 1 1 -32.1549 12.1633 -174.45 - 6 84.698 738 1 1 -32.2502 12.1832 -174.692 - 6 127.305 961 1 0 -32.7338 12.2963 -175.85 - 6 367.835 889 2 1 -2.11731 17.3944 -144.45 - 6 420.566 984 2 0 -2.4364 16.9371 -145.851 - 6 36.9785 983 2 0 -2.49524 16.8496 -146.115 - 6 107.636 861 1 1 -7.72873 7.12571 -174.45 - 6 164.275 932 1 0 -7.79379 6.61704 -175.85 - 6 319.873 853 0 1 -9.43238 -6.37215 -204.45 - 6 199.424 852 0 1 -9.45 -6.3963 -204.544 - 6 100.866 866 0 0 -9.6804 -6.74076 -205.85 - 6 5.19359 865 0 0 -9.74709 -6.85 -206.227 - 6 48.6907 302 12 1 -119.719 80.2408 155.55 - 6 104.729 872 1 1 -5.45571 17.0718 -174.45 - 6 76.7245 984 1 0 -5.68196 16.9075 -175.85 - 6 34.639 983 1 0 -5.72183 16.85 -176.128 - 6 60.5869 847 0 1 -10.5617 5.8898 -204.45 - 6 85.5582 846 0 1 -10.65 5.78696 -204.653 - 6 117.383 925 0 0 -11.1901 5.22288 -205.85 - 6 7.33592 924 0 0 -11.3596 5.05 -206.222 - 6 141.984 891 9 1 -1.66709 17.6156 65.55 - 6 293.263 891 8 1 -1.78116 17.7076 35.55 - 6 108.035 988 8 0 -1.78568 17.7113 34.15 - 6 125.73 890 7 1 -1.86694 17.7961 5.55 - 6 110.32 988 7 0 -1.87009 17.802 4.15 - 6 183.93 890 6 1 -1.93518 17.9252 -24.45 - 6 161.367 989 6 0 -1.93824 17.9308 -25.85 - 6 142.468 989 5 0 -2.00684 18.046 -55.85 - 6 144.439 889 4 1 -2.07023 18.1155 -84.45 - 6 121.136 990 4 0 -2.07018 18.132 -85.85 - 6 117.452 889 3 1 -2.09606 18.4694 -114.45 - 6 116.207 992 3 0 -2.0959 18.4874 -115.85 - 6 164.303 994 2 0 -2.06081 18.9401 -145.85 - 6 146.487 890 1 1 -2.04212 19.4473 -174.45 - 6 132.966 997 1 0 -2.03902 19.4626 -175.85 - 6 132.325 890 0 1 -1.93768 19.7759 -204.45 - 6 132.442 998 0 0 -1.90959 19.811 -205.85 - 6 272.735 295 2 0 66.4673 -120.95 -146.013 -Number of digits in this event = 66 +Number of tracker hits in this event = 10 + 6 238.935 440 0 1 -91.9833 -41.68 -204.463 + 6 228.627 691 0 0 -91.9833 -41.6801 -205.85 + 6 104.449 1248 3 0 16.6082 69.6936 -116.25 + 6 96.3166 980 3 1 16.2378 69.4024 -114.85 + 6 215.361 979 3 1 16.0497 69.3568 -114.563 + 6 121.901 978 3 1 15.85 69.3969 -114.503 + 6 172.772 1249 3 0 15.3063 69.9708 -115.85 + 6 128.967 967 3 1 13.5281 69.5149 -114.85 + 6 63.368 945 1 0 -177.059 9.1205 -176.25 + 6 177.662 946 1 0 -177.12 9.25 -176.043 +Number of digits in this event = 9 Using G4ParticleGun ... -2.13587 LIN +7.07408 LIN gamma Event: 7 -Number of tracker hits in this event = 59 - 7 308.541 746 10 1 -30.7409 17.8176 95.55 - 7 336.428 988 10 0 -30.7262 17.8109 94.15 - 7 210.973 747 9 1 -30.52 17.3734 65.55 - 7 166.08 986 9 0 -30.5413 17.2784 64.15 - 7 132.796 744 8 1 -31.0727 15.3047 35.55 - 7 372.951 975 8 0 -31.1098 15.1947 34.15 - 7 148.738 740 7 1 -31.8592 13.0497 5.55 - 7 234.217 964 7 0 -31.895 12.9401 4.15 - 7 159.65 738 6 1 -32.4188 10.8265 -24.45 - 7 131.531 950 6 0 -32.0722 10.2456 -25.85 - 7 152.476 776 5 1 -24.8286 -1.79991 -54.45 - 7 27.002 888 5 0 -24.4383 -2.41241 -55.8505 - 7 139.907 887 5 0 -24.4138 -2.45051 -55.9369 - 7 158.277 816 4 1 -16.7502 -15.335 -84.45 - 7 41.8059 817 4 1 -16.65 -15.4483 -84.7246 - 7 135.196 820 4 0 -16.2388 -15.9033 -85.8501 - 7 10.8724 819 4 0 -16.1065 -16.05 -86.2237 - 7 36.5863 868 3 1 -6.39972 -27.2115 -114.451 - 7 173.523 867 3 1 -6.45 -27.1301 -114.552 - 7 95.2496 767 3 0 -6.40479 -26.5268 -115.85 - 7 23.6454 768 3 0 -6.38646 -26.45 -116.145 - 7 94.5199 862 3 0 8.48239 -7.63423 -116.25 - 7 39.9137 863 3 0 8.58262 -7.45 -115.962 - 7 40.8989 945 3 1 9.20647 -6.58881 -114.85 - 7 147.889 946 3 1 9.25 -6.52228 -114.77 - 7 201.678 947 3 1 9.62822 -6.32191 -114.45 - 7 320.961 873 3 0 8.16534 -5.30922 -115.85 - 7 268.284 815 4 1 -16.85 -15.3477 -84.5139 - 7 23.3867 979 7 0 -2.98125 16.0229 3.75004 - 7 15.0718 980 7 0 -2.95865 16.05 3.76125 - 7 113.931 988 9 0 -30.6264 17.735 64.15 - 7 218.547 747 8 1 -30.5414 17.6875 35.55 - 7 192.985 988 8 0 -30.5367 17.6886 34.15 - 7 157.224 748 7 1 -30.4468 17.7365 5.55 - 7 130.636 988 7 0 -30.4423 17.7355 4.15 - 7 135.341 748 6 1 -30.3532 17.7138 -24.45 - 7 120.962 988 6 0 -30.3418 17.7139 -25.85 - 7 181.579 749 5 1 -30.1024 17.697 -54.45 - 7 100.677 988 5 0 -30.0997 17.6968 -55.85 - 7 107.35 750 4 1 -30.0375 17.6878 -84.45 - 7 146.444 988 4 0 -30.0385 17.6835 -85.85 - 7 132.623 750 3 1 -30.026 17.6019 -114.45 - 7 122.808 987 3 0 -30.0172 17.5961 -115.85 - 7 106.237 750 2 1 -29.8764 17.4963 -144.45 - 7 114.928 987 2 0 -29.8905 17.4985 -145.85 - 7 118.874 749 1 1 -30.1939 17.5473 -174.45 - 7 104.469 987 1 0 -30.2158 17.5459 -175.85 - 7 179.257 747 0 1 -30.6251 17.5928 -204.45 - 7 111.857 987 0 0 -30.6351 17.5936 -205.85 - 7 130.891 751 0 1 -29.6936 17.724 -204.45 - 7 84.0374 984 0 0 -30.1646 16.9211 -205.85 - 7 131.666 983 0 0 -30.199 16.85 -206.05 - 7 127.113 752 0 1 -29.6411 17.6653 -204.45 - 7 145.848 988 0 0 -29.4053 17.6999 -205.85 - 7 134.411 1037 0 0 -11.2957 27.4547 -206.25 - 7 26.5226 848 0 1 -10.3119 27.5363 -204.85 - 7 91.6823 849 0 1 -10.25 27.5315 -204.77 - 7 233.372 850 0 1 -10.0497 27.5384 -204.552 - 7 112.945 851 0 1 -9.80061 27.4004 -204.45 -Number of digits in this event = 38 +Number of tracker hits in this event = 2 + 7 109.721 769 8 0 85.9237 -26.0696 33.75 + 7 0.973556 1172 11 0 176.351 54.5836 123.75 +Number of digits in this event = 2 Using G4ParticleGun ... -8.73349 LIN +7.7783 LIN gamma Event: 8 -Number of tracker hits in this event = 4 - 8 124.365 500 2 0 -123.376 -79.85 -146.142 - 8 183.512 499 2 0 -123.431 -80.05 -145.974 - 8 54.5182 281 2 1 -123.775 -80.2444 -144.85 - 8 226.974 282 2 1 -123.75 -80.2923 -144.752 -Number of digits in this event = 5 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 Using G4ParticleGun ... -2.57385 LIN +8.96467 LIN gamma Event: 9 -Number of tracker hits in this event = 2 - 9 79.08 1571 4 0 19.9429 134.426 -86.25 - 9 83.1406 1585 4 0 19.392 137.15 -85.9146 -Number of digits in this event = 1 +Number of tracker hits in this event = 12 + 9 382.21 1733 8 1 166.889 176.557 35.15 + 9 44.7465 1734 8 1 166.95 176.779 35.4944 + 9 19.5982 1732 8 1 166.75 177.57 35.5121 + 9 167.199 744 0 0 57.8276 -31.134 -206.25 + 9 30.7925 1088 7 0 -20.0211 37.827 3.75 + 9 153.803 1089 7 0 -20.043 37.85 3.81275 + 9 77.5451 797 7 1 -20.517 38.1877 5.15 + 9 91.9923 798 7 1 -20.4499 38.4228 5.31053 + 9 455.128 799 7 1 -20.25 38.7116 5.33856 + 9 158.466 800 7 1 -20.05 39.666 5.3487 + 9 245.646 801 7 1 -19.85 40.0692 5.35054 + 9 272.779 1103 7 0 -18.9522 40.7287 4.15 +Number of digits in this event = 8 Using G4ParticleGun ... -2.31187 LIN +7.29271 LIN gamma Event: 10 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 74 + 10 244.688 280 6 1 -124.029 72.2994 -24.45 + 10 213.88 1261 6 0 -124.029 72.3001 -25.85 + 10 94.2144 280 5 1 -124.029 72.3161 -54.45 + 10 228.226 1261 5 0 -124.029 72.316 -55.85 + 10 105.428 280 4 1 -124.034 72.3157 -84.45 + 10 233.593 1261 4 0 -124.035 72.315 -85.85 + 10 365.919 280 3 1 -124.056 72.3058 -114.45 + 10 689.756 1261 3 0 -124.057 72.3053 -115.85 + 10 127.255 280 2 1 -124.072 72.2994 -144.45 + 10 104.751 1261 2 0 -124.073 72.2997 -145.85 + 10 104.847 280 1 1 -124.093 72.3034 -174.45 + 10 169.221 1261 1 0 -124.095 72.3038 -175.85 + 10 467.67 280 0 1 -124.136 72.3104 -204.45 + 10 206.72 1261 0 0 -124.138 72.3095 -205.85 + 10 28.3065 1193 0 0 -127.794 58.6826 -205.85 + 10 8.92651 1679 1 0 -54.0567 156.06 -176.25 + 10 3.98506 630 1 1 -54.0451 156.854 -174.85 + 10 10.5319 629 1 1 -54.05 156.856 -174.845 + 10 161.325 1681 1 0 -54.9388 156.506 -175.85 + 10 14.7304 1127 3 0 -156.641 45.4693 -116.25 + 10 52.608 1126 3 0 -156.646 45.4499 -116.227 + 10 414.466 1262 0 0 -124.216 72.45 -205.976 + 10 267.381 1153 2 0 -89.3603 50.7922 -146.25 + 10 121.051 281 2 1 -123.779 73.0533 -144.45 + 10 117.66 1265 2 0 -123.826 73.0958 -145.85 + 10 140.783 278 1 1 -124.483 73.9815 -174.45 + 10 258.785 1269 1 0 -124.5 73.9842 -175.85 + 10 97.313 276 0 1 -124.807 73.8706 -204.45 + 10 118.717 1268 0 0 -124.863 73.8309 -205.85 + 10 107.397 278 2 1 -124.499 72.8411 -144.45 + 10 113.494 1264 2 0 -124.496 72.888 -145.85 + 10 135.886 277 1 1 -124.702 73.848 -174.45 + 10 183.969 277 0 1 -124.642 74.3401 -204.45 + 10 118.481 1271 0 0 -124.678 74.2939 -205.85 + 10 130.078 276 1 1 -124.75 73.8512 -174.791 + 10 95.2095 1270 1 0 -123.578 74.0934 -175.85 + 10 26.9181 282 1 1 -123.733 73.2991 -174.85 + 10 46.6447 1264 1 0 -123.185 72.9091 -175.85 + 10 135.37 281 5 1 -123.762 72.3636 -54.45 + 10 113.477 283 4 1 -123.495 72.4461 -84.45 + 10 230.762 284 3 1 -123.272 72.3552 -114.45 + 10 455.929 286 2 1 -122.815 71.7805 -144.45 + 10 112.302 1258 2 0 -122.807 71.7337 -145.85 + 10 98.0382 286 1 1 -122.762 70.9009 -174.45 + 10 168.371 1253 1 0 -122.762 70.8315 -175.85 + 10 115.881 287 0 1 -122.698 69.3458 -204.45 + 10 193.814 1246 0 0 -122.715 69.2699 -205.85 + 10 5.39889 1245 0 0 -122.72 69.25 -206.226 + 10 264.64 829 1 1 -14.25 -64.5054 -174.714 + 10 62.4428 830 1 1 -14.0496 -64.7584 -174.545 + 10 66.7965 828 1 1 -14.25 -65.0618 -174.578 + 10 239.166 1260 2 0 -122.738 72.1245 -145.85 + 10 88.2755 291 1 1 -121.866 72.2821 -174.45 + 10 76.9927 1260 1 0 -121.812 72.25 -176.022 + 10 101.554 296 0 1 -120.93 71.6905 -204.45 + 10 6.2504 295 0 1 -120.95 71.6958 -204.821 + 10 143.644 1258 0 0 -121.012 71.7116 -205.85 + 10 165.721 287 1 1 -122.625 71.5896 -174.45 + 10 202.655 1258 1 0 -122.686 71.6729 -175.85 + 10 153.884 283 0 1 -123.522 73.1313 -204.45 + 10 138.017 1265 0 0 -123.467 73.1938 -205.85 + 10 9.91839 1178 0 0 -109.241 55.6756 -206.25 + 10 75.2492 1177 0 0 -109.235 55.65 -206.228 + 10 89.2792 1176 0 0 -109.139 55.45 -206.034 + 10 87.5259 356 0 1 -108.911 54.3639 -204.85 + 10 47.0398 355 0 1 -108.95 54.1357 -204.563 + 10 333.526 281 0 1 -123.796 72.4649 -204.45 + 10 38.2703 1592 14 0 -113.031 138.733 213.75 + 10 229.974 1593 14 0 -113.011 138.75 213.782 + 10 79.2518 282 0 1 -123.75 72.4579 -204.669 + 10 143.144 1189 5 0 -117.216 57.9489 -56.25 + 10 3.64367 312 5 1 -117.742 58.0692 -54.85 + 10 164.054 311 5 1 -117.75 58.0711 -54.8357 + 10 197.327 310 5 1 -117.95 58.3513 -54.5859 +Number of digits in this event = 39 Using G4ParticleGun ... -1.20351 LIN +4.18536 LIN gamma Event: 11 +Number of tracker hits in this event = 85 + 11 449.244 607 9 1 -58.6101 -120.957 65.55 + 11 231.659 295 9 0 -58.6103 -120.954 64.15 + 11 250.004 607 8 1 -58.618 -120.91 35.55 + 11 220.597 296 8 0 -58.6189 -120.906 34.15 + 11 113.449 606 7 1 -58.6512 -120.822 5.55 + 11 112.036 296 7 0 -58.6507 -120.822 4.15 + 11 117.611 607 6 1 -58.6116 -120.815 -24.45 + 11 233.448 296 6 0 -58.6032 -120.809 -25.85 + 11 141.009 607 5 1 -58.4534 -120.669 -54.45 + 11 104.662 297 5 0 -58.4484 -120.662 -55.85 + 11 182.058 608 4 1 -58.3298 -120.497 -84.45 + 11 94.2835 298 4 0 -58.3244 -120.485 -85.85 + 11 144.649 609 3 1 -58.2197 -120.246 -114.45 + 11 132.859 299 3 0 -58.2157 -120.239 -115.85 + 11 206.592 609 2 1 -58.1517 -120.084 -144.45 + 11 146.006 300 2 0 -58.2009 -120.068 -145.85 + 11 142.133 603 1 1 -59.3391 -119.744 -174.45 + 11 173.337 302 1 0 -59.3905 -119.729 -175.85 + 11 129.661 598 0 1 -60.4422 -119.394 -204.45 + 11 6.92926 597 0 1 -60.45 -119.392 -204.824 + 11 192.383 303 0 0 -60.4679 -119.389 -205.85 + 11 104.8 688 13 0 135.601 -42.4198 183.75 + 11 196.994 689 13 0 135.643 -42.25 183.996 + 11 48.1116 295 2 0 -57.8579 -120.981 -145.85 + 11 3.12067 625 2 1 -55.0159 -122.227 -144.85 + 11 42.2834 287 2 0 -51.2989 -122.736 -145.85 + 11 41.7537 286 2 0 -51.2976 -122.75 -145.857 + 11 134.099 612 7 1 -57.5463 -115.093 5.55 + 11 124.834 326 7 0 -57.8185 -114.949 4.14924 + 11 14.671 581 6 1 -63.8116 -112.632 -24.4501 + 11 88.1256 580 6 1 -63.8501 -112.601 -24.4977 + 11 70.298 579 6 1 -64.0503 -112.443 -24.7637 + 11 9.51766 341 6 0 -64.7883 -111.766 -25.8501 + 11 160.184 342 6 0 -64.806 -111.75 -25.8765 + 11 24.7428 469 5 1 -86.1911 -97.4514 -54.45 + 11 114.692 468 5 1 -86.2501 -97.4015 -54.4752 + 11 70.4506 467 5 1 -86.45 -97.241 -54.563 + 11 79.8405 466 5 1 -86.65 -97.1109 -54.6497 + 11 79.3359 465 5 1 -86.85 -97.0128 -54.7237 + 11 71.3214 464 5 1 -87.05 -96.9448 -54.7823 + 11 11.9254 463 5 1 -87.25 -96.8909 -54.841 + 11 254.052 420 5 0 -90.2951 -96.0837 -55.8502 + 11 408.759 421 5 0 -91.0552 -95.95 -56.0174 + 11 59.6108 296 9 0 -58.6109 -120.95 63.9509 + 11 317.937 297 9 0 -58.626 -120.75 63.8965 + 11 126.798 298 9 0 -58.4376 -120.55 63.9798 + 11 116.649 606 9 1 -58.6501 -121.104 65.3138 + 11 285.102 608 8 1 -58.343 -121.224 35.55 + 11 151.67 294 8 0 -58.3319 -121.24 34.15 + 11 146.925 609 7 1 -58.1102 -121.559 5.55 + 11 123.002 292 7 0 -58.1031 -121.575 4.15 + 11 131.066 610 6 1 -57.9662 -121.897 -24.45 + 11 155.232 291 6 0 -57.9548 -121.91 -25.85 + 11 366.605 611 5 1 -57.7258 -122.177 -54.45 + 11 114.638 289 5 0 -57.7195 -122.192 -55.85 + 11 169.493 612 4 1 -57.5664 -122.522 -84.45 + 11 109.65 288 4 0 -57.544 -122.54 -85.85 + 11 129.673 614 3 1 -57.0562 -122.902 -114.45 + 11 132.21 286 3 0 -57.0378 -122.914 -115.85 + 11 123.536 616 2 1 -56.6627 -123.121 -144.45 + 11 90.3542 285 2 0 -56.6304 -123.145 -145.85 + 11 78.8849 284 2 0 -56.6242 -123.15 -146.12 + 11 107.722 620 1 1 -55.9651 -123.649 -174.45 + 11 109.736 282 1 0 -55.9515 -123.685 -175.85 + 11 110.759 622 0 1 -55.6442 -124.466 -204.45 + 11 168.756 278 0 0 -55.6541 -124.491 -205.85 + 11 134.972 290 5 0 -57.3838 -122.091 -55.8502 + 11 72.2863 654 4 1 -49.062 -121.135 -84.45 + 11 73.8732 653 4 1 -49.25 -121.163 -84.6068 + 11 44.7554 652 4 1 -49.4501 -121.188 -84.7553 + 11 279.233 293 4 0 -50.7848 -121.385 -85.8502 + 11 222.319 372 3 1 -105.67 -135.118 -114.45 + 11 75.1041 371 3 1 -105.75 -135.334 -114.68 + 11 123.379 219 3 0 -106.414 -136.156 -115.85 + 11 45.7914 218 3 0 -106.564 -136.35 -116.104 + 11 318.578 292 2 1 -121.623 -155.798 -144.45 + 11 101.006 291 2 1 -121.75 -154.528 -144.596 + 11 85.3247 290 2 1 -121.95 -154.159 -144.689 + 11 81.8898 289 2 1 -122.15 -153.836 -144.764 + 11 86.7235 144 2 0 -123.764 -151.323 -145.85 + 11 74.8889 145 2 0 -123.861 -151.15 -145.952 + 11 59.726 146 2 0 -123.961 -150.95 -146.137 + 11 67.7093 936 11 1 7.33697 106.578 125.15 + 11 220.56 937 11 1 7.4501 106.739 125.449 + 11 23.4268 938 11 1 7.6502 106.812 125.416 +Number of digits in this event = 44 +Using G4ParticleGun ... +4.62792 LIN +gamma +Event: 12 +Number of tracker hits in this event = 3 + 12 259.469 1194 0 1 58.9717 -102.613 -204.45 + 12 373.661 387 0 0 58.9728 -102.612 -205.85 + 12 53.0513 1146 7 1 49.315 -6.96548 5.15 +Number of digits in this event = 4 +Using G4ParticleGun ... +5.48508 LIN +gamma +Event: 13 +Number of tracker hits in this event = 0 +Number of digits in this event = 2 +Using G4ParticleGun ... +9.90847 LIN +gamma +Event: 14 +Number of tracker hits in this event = 134 + 14 201.77 1418 10 1 103.846 -43.6037 95.55 + 14 617.47 682 10 0 103.852 -43.5963 94.15 + 14 106.542 1419 9 1 103.977 -43.4452 65.55 + 14 118.75 683 9 0 103.981 -43.4378 64.15 + 14 103.87 1419 8 1 104.072 -43.2824 35.55 + 14 141.747 683 8 0 104.077 -43.2753 34.15 + 14 106.892 1420 7 1 104.168 -43.1386 5.55 + 14 104.387 684 7 0 104.172 -43.1327 4.15 + 14 104.624 1420 6 1 104.267 -43.008 -24.45 + 14 127.953 685 6 0 104.271 -43.0005 -25.85 + 14 101.347 1421 5 1 104.366 -42.848 -54.45 + 14 99.351 686 5 0 104.369 -42.8412 -55.85 + 14 356.554 1421 4 1 104.436 -42.6994 -84.45 + 14 132.6 686 4 0 104.44 -42.6915 -85.85 + 14 136.408 1421 3 1 104.517 -42.5235 -114.45 + 14 192.344 687 3 0 104.521 -42.5148 -115.85 + 14 195.884 1422 2 1 104.593 -42.3387 -144.45 + 14 118.487 688 2 0 104.6 -42.3365 -145.85 + 14 423.138 1422 1 1 104.744 -42.2881 -174.45 + 14 118.609 688 1 0 104.75 -42.2868 -175.85 + 14 333.752 1423 0 1 104.873 -42.3094 -204.45 + 14 142.143 688 0 0 104.878 -42.3046 -205.85 + 14 278.23 689 1 0 104.619 -42.2164 -175.85 + 14 126.972 1411 0 1 102.425 -40.4822 -204.45 + 14 166.695 698 0 0 102.36 -40.3439 -205.85 + 14 289.137 692 2 0 147.044 -41.5115 -146.25 + 14 64.1271 691 1 0 104.802 -41.7341 -175.85 + 14 63.3528 692 1 0 104.814 -41.65 -176.07 + 14 115.587 1433 0 1 106.937 -31.3478 -204.45 + 14 133.988 746 0 0 106.705 -30.8468 -205.85 + 14 56.2269 725 1 0 162.837 -34.9006 -175.85 + 14 50.9941 688 3 0 104.567 -42.4497 -116.195 + 14 407.5 895 3 0 156.245 -1.03034 -116.25 + 14 35.7057 894 3 0 156.22 -1.05 -116.17 + 14 40.2442 1758 7 0 -90.2496 171.785 3.75 + 14 203.828 1759 7 0 -90.3565 171.95 4.01782 + 14 132.456 1715 2 1 163.264 -71.6043 -144.85 + 14 23.005 1716 2 1 163.35 -71.6233 -144.771 + 14 136.058 1418 9 1 103.867 -43.6319 65.55 + 14 103.912 682 9 0 103.866 -43.6334 64.15 + 14 123.935 1418 8 1 103.865 -43.6603 35.55 + 14 104.507 681 8 0 103.871 -43.6624 34.15 + 14 117.776 1419 7 1 103.992 -43.6845 5.55 + 14 151.392 681 7 0 103.997 -43.6831 4.15 + 14 127.563 1419 6 1 104.103 -43.6584 -24.45 + 14 112.597 681 6 0 104.112 -43.6578 -25.85 + 14 658.025 1420 5 1 104.302 -43.6542 -54.45 + 14 436.144 681 5 0 104.312 -43.6571 -55.85 + 14 623.044 681 4 0 104.547 -43.7135 -85.85 + 14 344.499 1423 3 1 104.851 -43.7317 -114.45 + 14 131.816 681 3 0 104.864 -43.7323 -115.85 + 14 104.855 1425 2 1 105.17 -43.7368 -144.45 + 14 102.077 681 2 0 105.192 -43.7396 -145.85 + 14 337.374 1427 1 1 105.666 -43.7889 -174.45 + 14 206.403 681 1 0 105.692 -43.7938 -175.85 + 14 130.433 1430 0 1 106.26 -43.8822 -204.45 + 14 121.769 680 0 0 106.286 -43.8872 -205.85 + 14 160.986 409 2 0 156.138 -98.2797 -146.25 + 14 221.502 1025 11 0 40.0049 25.234 123.75 + 14 112.253 1026 11 0 40.0023 25.2502 123.771 + 14 158.984 680 1 0 105.655 -43.8504 -176.036 + 14 63.7296 679 1 0 105.607 -44.05 -176.02 + 14 46.5611 678 1 0 105.655 -44.25 -175.911 + 14 65.7149 1430 1 1 106.315 -44.7395 -174.85 + 14 431.477 1431 1 1 106.35 -44.8091 -174.727 + 14 7.29463 1432 1 1 106.55 -44.9793 -174.602 + 14 125.242 1422 3 1 104.671 -43.638 -114.45 + 14 233.346 682 3 0 104.681 -43.6237 -115.85 + 14 94.9023 1423 2 1 104.902 -43.3487 -144.45 + 14 127.001 683 2 0 104.907 -43.3352 -145.85 + 14 107.443 1424 1 1 105.001 -43.0547 -174.45 + 14 114.069 684 1 0 104.993 -43.0515 -175.85 + 14 119.962 684 0 0 104.772 -43.0546 -205.85 + 14 104.499 1424 4 1 105.06 -44.4307 -84.45 + 14 107.166 678 4 0 105.139 -44.4059 -85.85 + 14 143.592 1434 3 1 107.025 -43.1702 -114.45 + 14 36.4937 684 3 0 106.882 -43.0541 -115.85 + 14 223.326 685 3 0 106.877 -43.05 -115.9 + 14 201.601 1415 2 1 103.345 -39.5869 -144.45 + 14 130.437 702 2 0 103.254 -39.5478 -145.85 + 14 123.917 1406 1 1 101.42 -39.5046 -174.45 + 14 266.027 701 1 0 101.377 -39.6852 -175.85 + 14 99.9145 1395 0 1 99.2356 -43.2515 -204.45 + 14 110.562 685 0 0 99.1015 -43.0211 -205.85 + 14 111.384 1416 2 1 103.35 -39.5559 -144.597 + 14 180.354 683 5 0 104.137 -43.4463 -55.8503 + 14 24.6045 1417 4 1 103.596 -39.3255 -84.45 + 14 92.4237 1416 4 1 103.55 -39.3268 -84.5474 + 14 246.931 703 4 0 102.966 -39.3922 -85.85 + 14 132.596 1345 3 1 89.221 -43.2854 -114.45 + 14 9.19962 1344 3 1 89.05 -43.1627 -114.827 + 14 75.696 686 3 0 88.5371 -42.7476 -115.85 + 14 164.842 1278 2 1 75.8017 -28.2911 -144.45 + 14 78.2859 761 2 0 75.3563 -27.7293 -145.85 + 14 47.0461 762 2 0 75.2882 -27.65 -146.068 + 14 181.324 823 2 0 77.5407 -15.3605 -146.25 + 14 448.688 1291 2 1 78.2578 -15.2086 -144.85 + 14 63.0791 1568 0 1 133.75 -21.0806 -204.707 + 14 94.825 1403 5 1 100.902 -42.7 -54.85 + 14 56.6382 680 5 0 104.076 -43.85 -56.0525 + 14 132.609 1411 4 1 102.44 -47.3885 -84.45 + 14 43.9776 662 4 0 102.218 -47.6271 -85.8514 + 14 73.4367 661 4 0 102.198 -47.65 -85.9843 + 14 133.584 1386 3 1 97.5449 -51.6955 -114.45 + 14 134.871 641 3 0 97.377 -51.8367 -115.85 + 14 114.559 640 3 0 97.3585 -51.85 -116.012 + 14 189.442 1368 2 1 93.8836 -54.3049 -144.45 + 14 68.3369 627 2 0 93.6691 -54.619 -145.85 + 14 115.411 626 2 0 93.6497 -54.65 -145.978 + 14 21.8725 1343 1 1 88.6667 -63.805 -174.45 + 14 94.9379 1342 1 1 88.65 -63.8184 -174.525 + 14 141.158 579 1 0 88.3169 -64.0591 -175.85 + 14 134.079 1310 0 1 82.0584 -69.9957 -204.45 + 14 72.0222 545 0 0 82.1546 -70.9387 -205.85 + 14 68.2147 544 0 0 82.1659 -71.0501 -206.017 + 14 407.892 1419 4 1 103.983 -43.7197 -84.4501 + 14 204.726 678 3 0 104.905 -44.2785 -115.85 + 14 106.285 1430 2 1 106.282 -46.6623 -144.45 + 14 237.898 666 2 0 106.342 -46.7992 -145.85 + 14 116.257 1440 1 1 108.192 -49.7431 -174.45 + 14 131.724 650 1 0 108.287 -49.914 -175.85 + 14 104.774 1451 0 1 110.371 -53.419 -204.45 + 14 122.193 632 0 0 110.626 -53.5231 -205.85 + 14 144.632 633 1 0 107.077 -53.3262 -176.25 + 14 44.0168 634 1 0 107.22 -53.25 -175.94 + 14 181.907 1441 1 1 108.371 -51.5489 -174.85 + 14 240.898 1442 1 1 108.55 -51.1042 -174.466 + 14 260.457 641 1 0 107.993 -51.7341 -175.85 + 14 137.909 1419 3 1 103.999 -43.5499 -114.45 + 14 321.85 1419 2 1 103.974 -42.8967 -144.45 + 14 109.907 685 2 0 103.97 -42.8686 -145.85 + 14 113.338 1418 1 1 103.923 -42.2923 -174.45 + 14 214.688 1417 0 1 103.68 -41.3831 -204.45 + 14 99.7153 693 0 0 103.676 -41.3303 -205.85 +Number of digits in this event = 73 +Using G4ParticleGun ... +7.75566 LIN +gamma +Event: 15 +Number of tracker hits in this event = 56 + 15 344.815 902 7 1 0.528176 96.0653 5.55 + 15 377.535 1379 7 0 0.52862 96.0659 4.15 + 15 304.328 902 6 1 0.538413 96.0767 -24.45 + 15 313.31 1379 6 0 0.539677 96.0757 -25.85 + 15 142.923 902 5 1 0.565153 96.055 -54.45 + 15 112.915 1379 5 0 0.567164 96.0533 -55.85 + 15 143.169 902 4 1 0.603929 96.022 -84.45 + 15 172.461 1379 4 0 0.605397 96.0193 -85.85 + 15 170.603 902 3 1 0.635588 95.97 -114.45 + 15 130.136 1379 3 0 0.637383 95.9669 -115.85 + 15 209.97 903 2 1 0.674284 95.9052 -144.45 + 15 203.221 1378 2 0 0.677238 95.9033 -145.85 + 15 120.608 903 1 1 0.740831 95.8707 -174.45 + 15 106.698 1378 1 0 0.743373 95.8693 -175.85 + 15 112.888 903 0 1 0.795957 95.8427 -204.45 + 15 123.276 1378 0 0 0.797476 95.8419 -205.85 + 15 1.718 1696 2 0 -102.355 159.51 -145.85 + 15 111.512 1432 4 0 -3.24542 106.702 -86.25 + 15 7.51411 1433 4 0 -3.33221 106.75 -85.8779 + 15 135.012 882 4 1 -3.49268 106.922 -84.85 + 15 144.094 881 4 1 -3.65 106.958 -84.4934 + 15 85.1286 1439 4 0 -4.00087 107.998 -85.8507 + 15 45.8684 1440 4 0 -4.0586 108.15 -86.1296 + 15 99.8309 901 6 1 0.45 96.1042 -24.4567 + 15 69.194 900 6 1 0.25 96.0803 -24.6249 + 15 168.638 1378 6 0 0.542075 95.859 -25.85 + 15 247.898 1377 6 0 0.630992 95.75 -25.994 + 15 156.132 901 5 1 0.355592 96.3128 -54.45 + 15 117.649 1380 5 0 0.334769 96.3236 -55.85 + 15 130.56 899 4 1 -0.115623 96.4878 -84.45 + 15 127.56 1381 4 0 -0.137233 96.4799 -85.85 + 15 111.269 897 3 1 -0.632405 96.2924 -114.45 + 15 103.786 1380 3 0 -0.660594 96.2817 -115.85 + 15 105.272 893 2 1 -1.2835 96.0464 -144.45 + 15 101.337 1379 2 0 -1.32042 96.0546 -145.85 + 15 102 889 1 1 -2.07473 96.2843 -174.45 + 15 104.787 1380 1 0 -2.12323 96.2963 -175.85 + 15 610.296 884 0 1 -3.07638 96.5494 -204.45 + 15 141.639 1381 0 0 -3.12203 96.5378 -205.85 + 15 71.8214 885 0 1 -3.05 97.2625 -204.672 + 15 111.375 898 4 1 -0.282352 96.3943 -84.45 + 15 107.873 1380 4 0 -0.671031 96.3028 -85.85 + 15 7.02335 813 3 1 -17.2656 91.7121 -114.45 + 15 92.4979 814 3 1 -17.25 91.7051 -114.472 + 15 204.712 815 3 1 -17.05 91.6129 -114.712 + 15 85.7718 1352 3 0 -16.2493 90.7118 -115.85 + 15 95.0072 1351 3 0 -16.1409 90.5497 -116.058 + 15 58.4048 872 3 0 -18.3235 -5.53519 -116.25 + 15 68.8447 871 3 0 -18.3862 -5.65078 -116.17 + 15 96.5646 870 3 0 -18.3876 -5.85 -116.087 + 15 24.1715 869 3 0 -18.439 -6.05 -115.907 + 15 181.955 802 3 1 -19.5422 -7.6888 -114.85 + 15 38.8145 801 3 1 -19.65 -8.00585 -114.593 + 15 92.9145 1404 2 0 -14.8996 101.082 -146.25 + 15 110.187 1405 2 0 -14.9592 101.15 -146.209 + 15 452.566 1406 2 0 -15.1476 101.35 -146.031 +Number of digits in this event = 27 +Using G4ParticleGun ... +9.98881 LIN +gamma +Event: 16 Number of tracker hits in this event = 0 Number of digits in this event = 1 Using G4ParticleGun ... -8.10393 LIN -gamma -Event: 12 -Number of tracker hits in this event = 35 - 12 244.834 584 3 1 -63.212 99.8317 -114.45 - 12 330.23 1398 3 0 -63.1947 99.8236 -115.85 - 12 123.104 586 2 1 -62.7986 99.7078 -144.45 - 12 279.954 1397 2 0 -62.7973 99.7031 -145.85 - 12 165.675 586 1 1 -62.7878 99.6776 -174.45 - 12 236.234 1397 1 0 -62.7874 99.6676 -175.85 - 12 297.771 586 0 1 -62.8001 99.4805 -204.45 - 12 108.006 1396 0 0 -62.7976 99.4922 -205.85 - 12 4.67669 1401 1 0 -63.8379 100.54 -175.85 - 12 162.415 1402 1 0 -63.8496 100.55 -175.862 - 12 597.101 584 2 1 -63.2128 99.8636 -144.45 - 12 398.063 1398 2 0 -63.2128 99.8656 -145.85 - 12 418.091 584 1 1 -63.2162 99.9016 -174.45 - 12 273.769 1398 1 0 -63.2171 99.9023 -175.85 - 12 114.258 584 0 1 -63.2397 99.9122 -204.45 - 12 229.978 1398 0 0 -63.2406 99.9115 -205.85 - 12 13.1574 947 1 0 -93.1129 9.65 -175.987 - 12 7.1758 943 1 0 -93.1702 8.85 -176.024 - 12 143.163 942 1 0 -93.1938 8.65 -176.058 - 12 134.66 941 1 0 -93.3017 8.45 -176.113 - 12 54.6832 436 1 1 -92.9148 9.40327 -174.85 - 12 62.2738 435 1 1 -92.9501 9.32965 -174.705 - 12 54.3241 1495 1 0 -89.1002 119.28 -176.25 - 12 58.3387 1496 1 0 -89.2564 119.35 -176.206 - 12 231.645 1602 1 0 -100.146 140.591 -176.25 - 12 20.57 583 2 1 -63.25 99.8874 -144.833 - 12 140.555 1402 2 0 -64.1345 100.688 -145.85 - 12 94.1118 1395 0 0 -62.8299 99.2793 -205.85 - 12 77.86 1203 1 0 -107.387 60.85 -176.242 - 12 90.0993 1202 1 0 -107.514 60.65 -175.955 - 12 82.1261 1201 1 0 -107.64 60.4494 -175.9 - 12 42.1629 1200 1 0 -107.609 60.25 -175.94 - 12 303.605 361 1 1 -107.896 58.5258 -174.85 - 12 108.669 591 0 1 -61.7312 98.962 -204.45 - 12 248.448 1394 0 0 -61.6853 98.9662 -205.85 -Number of digits in this event = 22 -Using G4ParticleGun ... -6.84474 LIN -gamma -Event: 13 -Number of tracker hits in this event = 90 - 13 413.69 475 6 1 -84.8984 122.443 -24.45 - 13 655.03 1511 6 0 -84.8986 122.442 -25.85 - 13 332.716 475 5 1 -84.9036 122.419 -54.45 - 13 297.233 1511 5 0 -84.904 122.416 -55.85 - 13 444.818 475 4 1 -84.9175 122.372 -84.45 - 13 423.745 1511 4 0 -84.9226 122.372 -85.85 - 13 442.325 475 3 1 -85.0374 122.396 -114.45 - 13 247.364 1511 3 0 -85.0396 122.403 -115.85 - 13 127.127 474 2 1 -85.0911 122.551 -144.45 - 13 134.602 1512 2 0 -85.0916 122.55 -145.85 - 13 681.897 474 1 1 -85.1044 122.562 -174.45 - 13 256.87 1512 1 0 -85.0981 122.565 -175.85 - 13 132.938 475 0 1 -84.9689 122.578 -204.45 - 13 366.183 1512 0 0 -84.9582 122.573 -205.85 - 13 172.083 1516 1 0 -85.5254 123.41 -175.85 - 13 75.6923 465 1 1 -86.9333 123.42 -174.85 - 13 365.004 464 1 1 -87.05 123.497 -174.777 - 13 401.81 475 2 1 -84.9326 122.232 -144.45 - 13 134.589 476 2 1 -84.85 122.258 -144.84 - 13 416.423 1511 2 0 -84.5871 122.379 -145.85 - 13 105.435 518 1 1 -76.3462 129.07 -174.45 - 13 120.654 1543 1 0 -76.3779 128.913 -175.85 - 13 77.48 496 0 1 -80.7657 125.218 -204.45 - 13 47.0302 495 0 1 -80.8502 125.16 -204.696 - 13 167.589 1523 0 0 -81.1962 124.9 -205.85 - 13 148.339 488 1 1 -82.332 127.049 -174.45 - 13 176.144 1536 1 0 -82.1443 127.382 -175.85 - 13 112.248 509 0 1 -78.1871 133.936 -204.45 - 13 220.347 1570 0 0 -77.9463 134.275 -205.85 - 13 26.4462 1571 0 0 -77.8913 134.35 -206.161 - 13 255.576 473 0 1 -85.3136 122.717 -204.45 - 13 0.339816 1511 0 0 -85.2562 122.55 -206.249 - 13 139.748 1450 0 0 -90.789 110.255 -206.25 - 13 114.549 440 0 1 -91.9782 109.708 -204.85 - 13 50.6721 439 0 1 -92.1501 109.473 -204.591 - 13 50.5957 1500 1 0 -84.6431 120.317 -175.85 - 13 62.6103 1499 1 0 -84.5873 120.15 -175.956 - 13 74.9713 1498 1 0 -84.4915 119.95 -176.055 - 13 31.8752 1497 1 0 -84.334 119.75 -176.181 - 13 8.98372 984 1 0 -77.6785 16.897 -176.25 - 13 64.8798 983 1 0 -77.6867 16.85 -176.237 - 13 88.9496 982 1 0 -77.7098 16.65 -176.172 - 13 100.485 981 1 0 -77.8776 16.45 -176.085 - 13 132.458 507 1 1 -78.499 16.1799 -174.85 - 13 13.9464 506 1 1 -78.65 16.0851 -174.495 - 13 81.4567 508 1 1 -78.4498 16.0421 -174.457 - 13 174.141 509 1 1 -78.25 16.0574 -174.487 - 13 21.5029 987 1 0 -78.426 17.5935 -175.85 - 13 61.4696 988 1 0 -78.4412 17.6501 -175.89 - 13 84.6716 989 1 0 -78.4538 17.8502 -175.947 - 13 198.099 990 1 0 -78.352 18.05 -176.039 - 13 235.351 991 1 0 -78.2831 18.2505 -176.175 - 13 39.3906 1517 1 0 -84.8514 123.55 -176.161 - 13 184.138 508 0 1 -78.3747 135.833 -204.45 - 13 118.08 1577 0 0 -78.2172 135.694 -205.85 - 13 134.716 1531 0 0 -77.0497 126.473 -206.25 - 13 429.915 512 0 1 -77.507 126.108 -204.85 - 13 61.7917 1518 0 0 -78.2066 123.879 -205.85 - 13 67.5676 1517 0 0 -78.2365 123.75 -205.938 - 13 65.2369 1516 0 0 -78.1477 123.55 -205.921 - 13 571.793 1515 0 0 -78.135 123.35 -205.949 - 13 85.0448 1514 0 0 -78.3616 123.15 -206.046 - 13 141.894 1510 3 0 -84.9385 122.298 -115.85 - 13 280.117 1509 2 0 -84.7904 122.085 -145.85 - 13 119.395 477 1 1 -84.5216 121.958 -174.45 - 13 112.544 1509 1 0 -84.5078 121.955 -175.85 - 13 103.548 479 0 1 -84.2186 121.893 -204.45 - 13 115.365 1508 0 0 -84.1973 121.886 -205.85 - 13 197.659 373 1 1 -105.363 66.8697 -174.85 - 13 168.339 1213 1 0 -110.145 62.85 -175.935 - 13 43.172 1182 6 1 56.4787 7.48798 -24.85 - 13 164.063 476 5 1 -84.71 122.499 -54.4502 - 13 74.2813 477 5 1 -84.65 122.455 -54.595 - 13 183.063 1510 5 0 -84.5706 122.297 -55.85 - 13 123.318 1512 4 0 -84.9837 122.572 -85.85 - 13 109.357 474 3 1 -85.1067 122.669 -114.45 - 13 183.404 1512 3 0 -85.1146 122.679 -115.85 - 13 96.9034 473 2 1 -85.2926 122.89 -144.45 - 13 92.219 1513 2 0 -85.304 122.897 -145.85 - 13 110.7 472 1 1 -85.539 123.037 -174.45 - 13 115.76 1514 1 0 -85.5515 123.044 -175.85 - 13 182.6 471 0 1 -85.807 123.206 -204.45 - 13 78.4233 697 1 1 -40.5238 24.7507 -174.85 - 13 152.433 696 1 1 -40.65 24.7449 -174.839 - 13 24.3564 1022 1 0 -40.9596 24.529 -175.85 - 13 24.6263 1457 13 1 111.727 155.97 185.55 - 13 66.3379 1458 13 1 111.75 155.981 185.544 - 13 115.026 1512 6 0 -85.0369 122.55 -26.0141 - 13 103.503 1724 2 0 -58.042 165.053 -146.25 - 13 125.693 1725 2 0 -58.0079 165.15 -146.001 -Number of digits in this event = 48 -Using G4ParticleGun ... -8.35445 LIN -gamma -Event: 14 -Number of tracker hits in this event = 1 - 14 68.0622 1026 3 1 25.2532 25.6221 -114.45 -Number of digits in this event = 3 -Using G4ParticleGun ... -2.27547 LIN -gamma -Event: 15 -Number of tracker hits in this event = 8 - 15 244.356 164 0 1 -147.209 -0.425989 -204.45 - 15 257.605 898 0 0 -147.208 -0.426187 -205.85 - 15 1.79614 483 12 0 -94.4144 -83.2551 153.75 - 15 158.288 484 12 0 -94.4213 -83.25 153.756 - 15 689.752 426 12 1 -94.7803 -82.9123 155.15 - 15 30.7017 425 12 1 -94.9506 -82.7722 155.511 - 15 116.636 481 12 0 -95.1006 -83.7591 154.15 - 15 238.766 480 12 0 -95.1166 -83.8501 154.101 -Number of digits in this event = 7 -Using G4ParticleGun ... -3.74435 LIN -gamma -Event: 16 -Number of tracker hits in this event = 10 - 16 1.77988 859 10 1 -8.06234 -76.3753 95.15 - 16 133.912 1433 9 1 106.75 22.8381 65.3056 - 16 94.2282 1434 9 1 107.076 22.8489 65.5498 - 16 70.9125 1013 9 0 106.639 22.7957 64.15 - 16 75.8813 1014 9 0 106.61 22.85 63.9732 - 16 170.136 1008 9 0 105.201 21.8185 63.7502 - 16 188.407 1007 9 0 105.372 21.6498 63.8179 - 16 81.305 890 9 0 117.136 -1.85421 63.75 - 16 58.3796 891 9 0 117.141 -1.84996 63.7558 - 16 55.5094 326 0 0 -96.7527 -114.773 -205.85 -Number of digits in this event = 5 -Using G4ParticleGun ... -1.26166 LIN +7.6262 LIN gamma Event: 17 Number of tracker hits in this event = 2 - 17 231.112 1145 0 1 49.2284 58.4238 -204.45 - 17 233.386 1191 0 0 49.2372 58.4265 -205.85 -Number of digits in this event = 3 -Using G4ParticleGun ... -3.77549 LIN -gamma -Event: 18 -Number of tracker hits in this event = 58 - 18 264.275 351 8 1 -109.876 -84.1012 35.55 - 18 211.46 479 8 0 -109.876 -84.0991 34.15 - 18 284.725 351 7 1 -109.885 -84.0466 5.55 - 18 249.041 480 7 0 -109.889 -84.0406 4.15 - 18 229.35 351 6 1 -109.945 -83.8793 -24.45 - 18 233.762 480 6 0 -109.948 -83.8734 -25.85 - 18 113.541 350 5 1 -109.987 -83.773 -54.45 - 18 202.83 481 5 0 -109.99 -83.7687 -55.85 - 18 104.077 350 4 1 -110.056 -83.717 -84.45 - 18 108.473 481 4 0 -110.056 -83.7094 -85.85 - 18 174.893 350 3 1 -110.084 -83.5529 -114.45 - 18 111.359 482 3 0 -110.085 -83.5463 -115.85 - 18 130.845 350 2 1 -110.099 -83.4367 -144.451 - 18 380.865 483 2 0 -110.019 -83.4434 -145.85 - 18 117.401 362 1 1 -107.707 -83.9677 -174.45 - 18 168.714 479 1 0 -107.716 -84.0566 -175.85 - 18 204.641 363 0 1 -107.425 -86.0525 -204.45 - 18 80.8148 470 0 0 -107.433 -85.884 -205.85 - 18 70.6691 471 0 0 -107.431 -85.85 -206.141 - 18 10.4449 364 0 1 -107.35 -85.8516 -204.829 - 18 191.489 468 0 0 -108.024 -86.3142 -205.85 - 18 233.504 350 1 1 -110.085 -83.259 -174.45 - 18 115.565 484 1 0 -110.092 -83.22 -175.85 - 18 108.244 348 0 1 -110.365 -82.2785 -204.45 - 18 204.74 489 0 0 -110.4 -82.221 -205.85 - 18 124.163 483 1 0 -110.081 -83.2621 -175.85 - 18 134.036 350 0 1 -110.007 -83.2887 -204.45 - 18 109.468 483 0 0 -109.995 -83.2804 -205.85 - 18 302.124 349 2 1 -110.288 -83.2914 -144.45 - 18 55.4778 335 1 1 -113.08 -82.7156 -174.45 - 18 79.8637 334 1 1 -113.15 -82.7081 -174.644 - 18 218.215 487 1 0 -113.559 -82.626 -175.85 - 18 172.109 279 0 1 -124.231 -80.2613 -204.45 - 18 318.082 497 0 0 -124.53 -80.521 -205.85 - 18 119.729 469 0 0 -85.294 -86.1879 -206.25 - 18 53.0949 465 0 0 -84.6252 -86.85 -206.078 - 18 19.6977 496 0 0 -125.037 -80.65 -206.239 - 18 4.54779 676 0 0 -175.496 -44.6638 -206.25 - 18 59.1486 677 0 0 -175.501 -44.65 -206.246 - 18 248.055 678 0 0 -175.536 -44.4496 -206.143 - 18 18.7877 11 0 1 -177.913 -46.4212 -204.85 - 18 353.776 10 0 1 -177.95 -46.4465 -204.799 - 18 151.795 332 1 1 -113.672 -83.9263 -174.451 - 18 109.914 480 1 0 -113.748 -83.9428 -175.85 - 18 158.192 325 0 1 -115.017 -84.6104 -204.45 - 18 138.645 477 0 0 -115.146 -84.6049 -205.85 - 18 114.153 352 5 1 -109.715 -83.999 -54.45 - 18 109.285 480 5 0 -109.708 -84.0039 -55.85 - 18 103.546 352 4 1 -109.559 -84.106 -84.45 - 18 213.066 479 4 0 -109.556 -84.1165 -85.85 - 18 253.332 353 3 1 -109.475 -84.2974 -114.45 - 18 125.995 478 3 0 -109.478 -84.3007 -115.85 - 18 116.275 352 2 1 -109.567 -84.3634 -144.45 - 18 103.918 478 2 0 -109.567 -84.3703 -145.85 - 18 123.919 352 1 1 -109.556 -84.5187 -174.45 - 18 117.706 477 1 0 -109.557 -84.5265 -175.85 - 18 87.3319 352 0 1 -109.57 -84.7106 -204.45 - 18 112.607 476 0 0 -109.572 -84.7146 -205.85 -Number of digits in this event = 32 -Using G4ParticleGun ... -2.07364 LIN -gamma -Event: 19 -Number of tracker hits in this event = 62 - 19 235.147 809 6 1 -18.1815 34.2052 -24.45 - 19 507.074 1070 6 0 -18.1825 34.2076 -25.85 - 19 111.749 809 5 1 -18.183 34.2921 -54.45 - 19 544.913 1071 5 0 -18.1747 34.2956 -55.85 - 19 114.362 810 4 1 -17.9984 34.3333 -84.45 - 19 179.461 1071 4 0 -17.9913 34.3299 -85.85 - 19 52.9052 810 3 1 -17.851 34.2582 -114.45 - 19 58.3116 811 3 1 -17.85 34.2578 -114.631 - 19 253.186 1071 3 0 -17.8426 34.2551 -115.85 - 19 119.804 811 2 1 -17.6567 34.2169 -144.45 - 19 110.952 1070 2 0 -17.646 34.2115 -145.85 - 19 134.999 812 1 1 -17.458 34.0851 -174.45 - 19 156.089 1070 1 0 -17.4573 34.0825 -175.85 - 19 235.485 813 0 1 -17.4363 34.0229 -204.45 - 19 199.006 1069 0 0 -17.4227 34.0184 -205.85 - 19 110.448 836 2 1 -12.85 81.5695 -144.627 - 19 65.0034 812 0 1 -17.45 33.9077 -204.585 - 19 70.3299 811 0 1 -17.65 34.0621 -204.717 - 19 220.562 1073 0 0 -18.1046 34.7234 -205.85 - 19 61.671 1074 0 0 -18.1751 34.85 -206.08 - 19 109.942 814 0 1 -17.25 33.8707 -204.536 - 19 78.9206 1070 0 0 -16.1021 34.0501 -206.056 - 19 3.71501 1071 0 0 -15.9396 34.25 -206.24 - 19 25.636 1071 6 0 -18.1518 34.2501 -26.2409 - 19 23.1926 1438 6 0 -54.4692 107.932 -26.25 - 19 268.83 1439 6 0 -54.4589 107.95 -26.2192 - 19 104.235 808 5 1 -18.3312 34.2573 -54.45 - 19 93.3635 807 4 1 -18.5608 34.2155 -84.45 - 19 214.628 1070 4 0 -18.5826 34.2168 -85.85 - 19 131.447 805 3 1 -19.0038 34.2759 -114.45 - 19 143.705 802 2 1 -19.4989 34.3016 -144.45 - 19 105.575 1071 2 0 -19.5185 34.3074 -145.85 - 19 115.053 800 1 1 -19.8884 34.4427 -174.45 - 19 126.576 1072 1 0 -19.9095 34.4548 -175.85 - 19 114.782 798 0 1 -20.3458 34.7213 -204.45 - 19 87.7569 1283 2 0 1.26684 76.686 -146.25 - 19 39.6879 904 2 1 0.900093 76.5176 -144.85 - 19 153.64 903 2 1 0.849824 76.5313 -144.788 - 19 15.0671 891 2 1 -1.82098 85.5694 -144.85 - 19 26.9406 1332 2 0 -1.89219 86.6218 -145.85 - 19 47.9218 892 2 1 -1.46885 86.239 -144.85 - 19 2.42143 782 6 0 -6.87938 -23.45 -26.159 - 19 6.14845 866 6 1 -6.84917 -23.8785 -24.8499 - 19 224.332 865 6 1 -6.85 -23.886 -24.8273 - 19 301.21 864 6 1 -7.05 -23.6769 -24.5336 - 19 19.5718 870 14 0 124.327 -5.94722 213.75 - 19 75.8556 869 14 0 124.415 -6.05 214.046 - 19 82.2737 1520 14 1 124.334 -7.75864 215.15 - 19 82.7954 1070 3 0 -18.7541 34.2358 -115.85 - 19 51.1609 776 2 1 -24.8056 28.9921 -144.45 - 19 129.19 775 2 1 -24.85 28.8827 -144.578 - 19 15.5325 1037 2 0 -25.4827 27.5046 -145.85 - 19 233.599 1036 2 0 -25.5075 27.45 -145.893 - 19 247.903 1035 2 0 -25.5875 27.25 -146.021 - 19 45.582 1034 2 0 -25.6873 27.05 -146.145 - 19 62.0333 514 2 0 -49.9374 -77.0833 -146.25 - 19 65.304 513 2 0 -49.9145 -77.25 -146.168 - 19 100.588 512 2 0 -49.9028 -77.45 -146.063 - 19 69.6308 511 2 0 -49.9001 -77.65 -145.959 - 19 360.769 649 2 1 -50.1137 -79.865 -144.85 - 19 122.16 650 2 1 -50.0492 -80.9861 -144.532 - 19 191.662 651 2 1 -49.85 -81.2182 -144.604 -Number of digits in this event = 26 -Using G4ParticleGun ... -8.32871 LIN -gamma -Event: 20 -Number of tracker hits in this event = 19 - 20 7.57024 1405 2 0 -160.616 101.332 -146.25 - 20 98.501 1406 2 0 -160.638 101.35 -146.241 - 20 188.256 1407 2 0 -160.889 101.55 -146.175 - 20 140.799 1408 2 0 -161.191 101.75 -146.096 - 20 80.4315 1409 2 0 -161.49 101.95 -146.062 - 20 101.529 1410 2 0 -161.71 102.15 -146.015 - 20 55.358 1411 2 0 -161.906 102.35 -145.953 - 20 51.9696 1412 2 0 -162.011 102.55 -145.909 - 20 13.987 82 2 1 -163.718 105.915 -144.85 - 20 98.8593 81 2 1 -163.75 105.965 -144.832 - 20 72.3276 80 2 1 -163.95 106.208 -144.759 - 20 89.3788 79 2 1 -164.15 106.428 -144.647 - 20 167.933 78 2 1 -164.35 106.689 -144.547 - 20 157.225 77 2 1 -164.597 107.13 -144.45 - 20 86.6039 1444 2 0 -164.597 108.961 -145.85 - 20 157.485 1445 2 0 -164.596 109.15 -146.044 - 20 223.101 414 14 1 -97.1681 121.558 215.15 - 20 26.2929 415 14 1 -97.15 121.723 215.521 - 20 46.8124 1650 0 1 150.15 -75.9338 -204.654 -Number of digits in this event = 8 -Using G4ParticleGun ... -4.99709 LIN -gamma -Event: 21 -Number of tracker hits in this event = 182 - 21 7.91946 695 10 0 -81.9362 -40.9283 93.7607 - 21 300.453 490 9 1 -81.9628 -40.8772 65.55 - 21 311.474 695 9 0 -81.9685 -40.8849 64.15 - 21 243.603 489 8 1 -82.0744 -41.0717 35.55 - 21 122.556 694 8 0 -82.0918 -41.0839 34.15 - 21 114.798 487 7 1 -82.4969 -41.3617 5.55 - 21 118.277 693 7 0 -82.5126 -41.3628 4.15 - 21 157.617 486 6 1 -82.8242 -41.3671 -24.45 - 21 108.103 693 6 0 -82.8442 -41.3623 -25.85 - 21 42.1138 484 5 1 -83.2471 -41.2939 -54.45 - 21 60.9754 483 5 1 -83.25 -41.2927 -54.5957 - 21 106.645 693 5 0 -83.275 -41.2816 -55.85 - 21 367.896 481 4 1 -83.8486 -41.0833 -84.45 - 21 150.813 480 4 1 -83.85 -41.0831 -84.532 - 21 292.42 694 4 0 -83.8711 -41.0786 -85.85 - 21 121.755 478 3 1 -84.2916 -40.9855 -114.45 - 21 135.585 695 3 0 -84.3132 -40.9801 -115.85 - 21 110.149 476 2 1 -84.8336 -40.9006 -144.45 - 21 243.677 695 2 0 -84.8603 -40.8713 -145.85 - 21 107.17 473 1 1 -85.44 -40.2607 -174.45 - 21 198.842 699 1 0 -85.4643 -40.2408 -175.85 - 21 111.735 470 0 1 -85.9277 -39.8799 -204.45 - 21 121.125 700 0 0 -85.9457 -39.8609 -205.85 - 21 213.562 765 5 0 -56.309 -27.0022 -56.25 - 21 75.2891 696 3 0 -84.1031 -40.85 -115.945 - 21 173.298 507 2 1 -78.556 -36.5534 -144.45 - 21 129.817 717 2 0 -78.424 -36.5404 -145.85 - 21 156.504 525 1 1 -74.8928 -35.9214 -174.45 - 21 115.626 723 1 0 -75.1322 -35.3994 -175.85 - 21 1.06509 724 1 0 -75.2064 -35.25 -176.243 - 21 94.723 493 0 1 -81.3129 -23.7312 -204.45 - 21 57.3854 492 0 1 -81.45 -23.6691 -204.718 - 21 117.441 783 0 0 -82.0408 -23.3828 -205.85 - 21 147.477 708 0 0 -90.8682 -38.2522 -206.25 - 21 27.1632 707 0 0 -91.0766 -38.45 -205.918 - 21 404.988 448 0 1 -90.531 -39.0541 -204.85 - 21 155.048 475 1 1 -84.8673 -40.7482 -174.451 - 21 70.4287 476 1 1 -84.85 -40.788 -174.575 - 21 179.146 694 1 0 -84.7133 -41.176 -175.85 - 21 57.3169 693 1 0 -84.6869 -41.25 -176.09 - 21 138.029 495 0 1 -80.8727 -50.3717 -204.45 - 21 143.719 646 0 0 -80.9021 -50.6839 -205.85 - 21 152.126 469 0 1 -86.0681 -47.3792 -204.45 - 21 241.168 661 0 0 -85.98 -47.7436 -205.85 - 21 33.1463 674 4 0 -85.0564 -45.1909 -85.85 - 21 59.7086 673 4 0 -85.0436 -45.2508 -85.8872 - 21 129.432 672 4 0 -85.1017 -45.45 -85.9509 - 21 54.4871 671 4 0 -85.3631 -45.6501 -86.1621 - 21 54.8757 276 4 0 -47.9212 -124.878 -86.25 - 21 229.869 490 8 1 -82.05 -41.0316 35.499 - 21 11.2899 696 9 0 -81.9633 -40.85 63.8122 - 21 2.22953 920 9 0 -78.8338 4.24131 63.75 - 21 122.511 921 9 0 -78.8341 4.25019 63.7598 - 21 64.9825 922 9 0 -79.0102 4.45 64.0144 - 21 269.983 501 9 1 -79.7594 4.82574 65.15 - 21 249.165 500 9 1 -79.85 4.82382 65.2618 - 21 201.419 499 9 1 -80.05 4.98242 65.3261 - 21 106.197 695 8 0 -81.8989 -40.9901 34.15 - 21 87.7669 490 7 1 -81.876 -41.0499 5.55 - 21 35.3337 491 7 1 -81.85 -41.0636 5.24157 - 21 129.583 694 7 0 -81.7511 -41.1138 4.15 - 21 94.3781 505 6 1 -79.016 -42.0997 -24.45 - 21 170.285 689 6 0 -79.0971 -42.0831 -25.8502 - 21 124.155 493 5 1 -81.3262 -42.2901 -54.45 - 21 156.297 688 5 0 -81.3868 -42.3063 -55.85 - 21 86.5928 489 4 1 -82.2137 -42.729 -84.45 - 21 22.1351 488 4 1 -82.25 -42.6898 -84.7418 - 21 159.71 687 4 0 -82.3857 -42.538 -85.8501 - 21 116.148 472 3 1 -85.5437 -38.8096 -114.45 - 21 423.064 703 3 0 -85.6537 -39.3114 -115.85 - 21 52.5281 702 3 0 -85.6851 -39.4501 -116.229 - 21 119.443 459 2 1 -88.106 -49.6855 -144.45 - 21 117.522 649 2 0 -88.2432 -50.146 -145.85 - 21 23.7173 648 2 0 -88.2737 -50.25 -146.17 - 21 87.7944 447 1 1 -90.6902 -59.6757 -174.45 - 21 20.3404 446 1 1 -90.75 -59.8354 -174.774 - 21 31.495 598 1 0 -90.9417 -60.3925 -175.85 - 21 88.161 597 1 0 -90.9613 -60.45 -175.961 - 21 210.613 419 0 1 -96.2385 -75.4788 -204.45 - 21 113.133 518 0 0 -96.6233 -76.2966 -205.85 - 21 47.8087 517 0 0 -96.6991 -76.45 -206.117 - 21 96.1042 753 3 0 -102.427 -29.4226 -116.25 - 21 110.084 690 6 0 -78.9886 -42.05 -25.985 - 21 120.572 763 6 0 -68.9815 -27.3678 -26.25 - 21 314.77 764 6 0 -69.1447 -27.25 -26.0622 - 21 273.121 490 6 1 -81.8794 -41.1179 -24.45 - 21 364.582 694 6 0 -81.879 -41.1207 -25.85 - 21 130.258 490 5 1 -81.8654 -41.1835 -54.45 - 21 263.902 694 5 0 -81.8674 -41.1885 -55.85 - 21 237.631 490 4 1 -81.9136 -41.279 -84.45 - 21 394.645 693 4 0 -81.942 -41.2749 -85.85 - 21 120.756 487 3 1 -82.5201 -41.1976 -114.45 - 21 265.479 694 3 0 -82.5576 -41.1917 -115.85 - 21 167.062 483 2 1 -83.3641 -41.0247 -144.45 - 21 138.661 480 1 1 -84.034 -40.7634 -174.45 - 21 109.587 696 1 0 -84.0599 -40.7531 -175.85 - 21 114.231 477 0 1 -84.5755 -40.543 -204.45 - 21 114.171 697 0 0 -84.5891 -40.537 -205.85 - 21 15.8481 387 0 1 -102.646 -69.2878 -204.85 - 21 44.7846 1445 10 0 49.8348 109.213 93.75 - 21 40.3391 1148 10 1 49.714 108.203 95.15 - 21 91.8146 692 1 0 -82.1486 -41.5236 -176.102 - 21 105.399 489 0 1 -82.1648 -41.6792 -204.45 - 21 140.086 692 0 0 -82.1881 -41.6461 -205.85 - 21 241.299 488 0 1 -82.2562 -41.651 -204.45 - 21 160.548 691 0 0 -82.2617 -41.6596 -205.85 - 21 173.457 383 8 1 -103.475 79.1645 35.15 - 21 260.632 491 4 1 -81.8349 -41.281 -84.45 - 21 118.239 695 4 0 -81.8284 -40.9804 -85.85 - 21 11.6091 501 3 1 -79.6685 -36.8187 -114.45 - 21 125.212 502 3 1 -79.6499 -36.8248 -114.495 - 21 129.182 715 3 0 -79.1641 -37.017 -115.85 - 21 41.8688 714 3 0 -79.0798 -37.05 -116.112 - 21 16.9069 552 2 1 -69.6248 -41.8362 -144.45 - 21 153.023 551 2 1 -69.65 -41.8442 -144.51 - 21 123.701 690 2 0 -70.0495 -42.0488 -145.85 - 21 133.996 689 2 0 -70.0516 -42.05 -145.858 - 21 37.8912 501 1 1 -79.7745 -45.3347 -174.45 - 21 648.728 500 1 1 -79.85 -45.3208 -174.514 - 21 135.838 499 1 1 -80.05 -45.2915 -174.68 - 21 32.7454 498 1 1 -80.2501 -45.242 -174.826 - 21 161.376 676 1 0 -81.7493 -44.799 -175.85 - 21 37.6531 367 0 1 -106.698 -40.5003 -204.45 - 21 100.301 366 0 1 -106.75 -40.4795 -204.495 - 21 68.2044 365 0 1 -106.95 -40.3765 -204.679 - 21 52.8546 701 0 0 -108.003 -39.6783 -205.85 - 21 115.391 702 0 0 -108.043 -39.6499 -205.895 - 21 58.7967 703 0 0 -108.253 -39.45 -206.143 - 21 111.449 491 3 1 -81.836 -41.3751 -114.45 - 21 110.088 693 3 0 -81.8322 -41.3345 -115.85 - 21 161.652 491 2 1 -81.7301 -40.4992 -144.45 - 21 110.639 698 2 0 -81.6942 -40.4375 -145.85 - 21 126.421 495 1 1 -81.0073 -39.1605 -174.45 - 21 145.799 704 1 0 -80.947 -39.0764 -175.85 - 21 109.259 502 0 1 -79.5666 -37.4409 -204.45 - 21 129.941 713 0 0 -79.5096 -37.3995 -205.85 - 21 72.3212 1100 0 0 -89.0391 40.05 -206.147 - 21 108.273 1101 0 0 -88.9747 40.25 -206.114 - 21 94.6895 705 1 0 -80.8656 -39.05 -175.994 - 21 125.36 492 4 1 -81.5934 -42.3979 -84.85 - 21 184.554 491 5 1 -81.7995 -41.1839 -54.45 - 21 192.166 490 3 1 -81.8973 -41.6619 -114.45 - 21 131.954 691 3 0 -81.8584 -41.6785 -115.85 - 21 190.834 494 2 1 -81.0749 -42.0091 -144.45 - 21 105.761 685 1 0 -79.8243 -42.9511 -175.85 - 21 263.056 512 0 1 -77.4909 -47.4491 -204.45 - 21 5.0698 681 1 0 -80.2272 -43.8368 -175.85 - 21 147.066 680 1 0 -80.2302 -43.85 -175.868 - 21 29.0785 679 1 0 -80.2839 -44.05 -176.165 - 21 142.028 548 1 0 -79.2472 -70.2638 -176.25 - 21 150.157 505 1 1 -79.0119 -70.2978 -174.85 - 21 332.563 686 1 0 -79.9539 -42.7273 -175.85 - 21 131.017 503 0 1 -79.4239 -44.8307 -204.45 - 21 118.789 674 0 0 -79.2879 -45.0594 -205.85 - 21 10.0894 1038 0 1 27.65 -6.93244 -204.571 - 21 61.7291 1039 0 1 27.85 -6.85904 -204.533 - 21 171.876 1040 0 1 28.0504 -6.84575 -204.514 - 21 218.943 1041 0 1 28.25 -6.89965 -204.53 - 21 56.5596 1042 0 1 28.45 -6.97705 -204.481 - 21 52.4778 1043 0 1 28.65 -6.93494 -204.488 - 21 76.3755 1044 0 1 28.85 -6.80628 -204.576 - 21 89.0261 1045 0 1 29.05 -6.68211 -204.681 - 21 32.5228 1046 0 1 29.25 -6.64567 -204.793 - 21 7.71556 869 0 0 31.0226 -6.05338 -205.85 - 21 223.702 870 0 0 31.0321 -6.05 -205.856 - 21 42.5587 1683 5 0 -37.6771 156.75 -56.0207 - 21 7.02711 711 5 1 -37.8222 157.244 -54.85 - 21 100.955 710 5 1 -37.85 157.325 -54.6452 - 21 174.01 656 3 0 -35.724 -48.6871 -116.25 - 21 154.188 687 1 0 -79.0275 -42.65 -175.954 - 21 40.3529 688 1 0 -78.5365 -42.4499 -175.946 - 21 80.5036 514 1 1 -77.2224 -42.3356 -174.85 - 21 62.9935 515 1 1 -77.0497 -42.3257 -174.652 - 21 91.7021 516 1 1 -76.8493 -42.388 -174.538 - 21 172.024 517 1 1 -76.6499 -42.4633 -174.539 - 21 125.062 690 1 0 -75.3896 -41.8917 -175.85 - 21 258.058 691 1 0 -75.157 -41.85 -175.962 - 21 145.605 484 0 1 -83.1471 -43.8825 -204.45 - 21 114.131 679 0 0 -83.0968 -44.0631 -205.85 - 21 172.838 485 0 1 -83.05 -43.9153 -204.793 - 21 7.4878 677 0 0 -82.8143 -44.4514 -205.85 - 21 101.235 775 0 0 -152.751 -25.0225 -206.25 -Number of digits in this event = 91 -Using G4ParticleGun ... -3.32933 LIN -gamma -Event: 22 -Number of tracker hits in this event = 1 - 22 6.83186 746 4 0 53.7311 -30.65 -85.9756 + 17 59.0007 605 10 1 -58.9408 78.0611 95.15 + 17 118.386 604 10 1 -59.05 78.2158 95.4333 Number of digits in this event = 1 Using G4ParticleGun ... -1.43412 LIN +8.60436 LIN +gamma +Event: 18 +Number of tracker hits in this event = 214 + 18 274.139 369 10 1 -106.188 -18.8099 95.55 + 18 373.085 806 10 0 -106.189 -18.8085 94.15 + 18 243.776 369 9 1 -106.205 -18.7831 65.55 + 18 264.965 806 9 0 -106.206 -18.7816 64.15 + 18 610.146 369 8 1 -106.229 -18.7532 35.55 + 18 368.366 806 8 0 -106.231 -18.7525 34.15 + 18 111.052 369 7 1 -106.259 -18.7387 5.55 + 18 322.483 806 7 0 -106.261 -18.738 4.15 + 18 182.53 369 6 1 -106.303 -18.7247 -24.45 + 18 271.289 806 6 0 -106.304 -18.7244 -25.85 + 18 145.944 369 5 1 -106.337 -18.7164 -54.45 + 18 200.763 806 5 0 -106.339 -18.7177 -55.85 + 18 403.96 368 4 1 -106.373 -18.7358 -84.45 + 18 420.884 806 4 0 -106.374 -18.7374 -85.85 + 18 102.696 368 3 1 -106.408 -18.7727 -114.45 + 18 102.886 806 3 0 -106.41 -18.7778 -115.85 + 18 109.758 368 2 1 -106.451 -18.8807 -144.45 + 18 106.176 805 2 0 -106.451 -18.8837 -145.85 + 18 149.016 368 1 1 -106.465 -18.9392 -174.45 + 18 226.951 805 1 0 -106.468 -18.9412 -175.85 + 18 555.909 368 0 1 -106.535 -18.9808 -204.45 + 18 126.687 805 0 0 -106.538 -18.9854 -205.85 + 18 6.26972 380 1 0 -53.3325 -103.95 -176.001 + 18 100.04 379 1 0 -52.9911 -104.15 -175.888 + 18 144.706 801 0 0 -102.582 -19.7383 -206.25 + 18 74.3346 380 0 1 -104.015 -19.298 -204.85 + 18 252.835 379 0 1 -104.151 -19.21 -204.708 + 18 484.528 378 0 1 -104.35 -19.0272 -204.453 + 18 80.8688 1018 1 0 -121.88 23.6848 -176.25 + 18 93.7382 280 1 1 -123.95 24.4983 -174.733 + 18 333.721 369 4 1 -106.35 -18.7547 -84.6909 + 18 184.546 805 4 0 -106.267 -18.85 -86.0003 + 18 142.415 377 3 1 -104.628 -21.2979 -114.45 + 18 2.63253 378 3 1 -104.55 -21.4129 -114.835 + 18 295.971 791 3 0 -104.356 -21.7208 -115.851 + 18 100.475 408 2 1 -98.3757 -29.9453 -144.45 + 18 254.626 748 2 0 -98.4456 -30.3098 -145.85 + 18 125.879 400 1 1 -100.099 -37.5143 -174.45 + 18 134.193 711 1 0 -100.238 -37.7256 -175.85 + 18 44.493 393 0 1 -101.468 -42.205 -204.45 + 18 78.222 392 0 1 -101.55 -42.2551 -204.582 + 18 79.3675 391 0 1 -101.75 -42.3334 -204.692 + 18 59.6193 680 0 0 -102.698 -43.8758 -205.85 + 18 137.956 679 0 0 -102.756 -44.05 -205.956 + 18 68.8425 678 0 0 -102.77 -44.2501 -206.142 + 18 127.351 363 3 1 -107.509 -18.5493 -114.45 + 18 266.055 807 3 0 -107.559 -18.5359 -115.85 + 18 116.932 358 2 1 -108.503 -18.4966 -144.45 + 18 206.534 807 2 0 -108.591 -18.4641 -145.85 + 18 95.7624 349 1 1 -110.294 -17.6028 -174.45 + 18 224.71 812 1 0 -110.345 -17.6365 -175.85 + 18 293.225 344 0 1 -111.3 -18.4505 -204.45 + 18 109.589 808 0 0 -111.414 -18.3857 -205.85 + 18 46.7334 1164 2 0 -99.8095 52.903 -146.25 + 18 17.467 1165 2 0 -99.8604 53.0502 -146.227 + 18 31.6302 830 2 0 21.2816 -13.9909 -146.25 + 18 62.8682 829 2 0 21.3525 -14.0501 -146.212 + 18 138.91 828 2 0 21.3434 -14.2505 -146.111 + 18 73.6271 827 2 0 21.1451 -14.4501 -145.88 + 18 57.7485 1002 2 1 20.5257 -13.0268 -144.85 + 18 98.0887 1001 2 1 20.4497 -13.0158 -144.75 + 18 6.59968 985 2 1 17.0584 -15.3463 -144.85 + 18 111.872 984 2 1 17.05 -15.3455 -144.842 + 18 120.192 343 0 1 -111.35 -18.4231 -204.784 + 18 59.483 708 5 1 -38.3347 -53.9131 -54.45 + 18 258.961 809 0 0 -106.034 -18.2406 -205.85 + 18 114.724 805 8 0 -106.294 -18.9082 34.15 + 18 108.767 357 7 1 -108.67 -20.989 5.54971 + 18 103.233 794 7 0 -108.834 -21.1347 4.1499 + 18 108.595 343 6 1 -111.476 -24.5698 -24.45 + 18 22.3283 776 6 0 -111.6 -24.8424 -25.85 + 18 117.652 775 6 0 -111.603 -24.85 -25.889 + 18 128.512 330 5 1 -114.144 -31.2055 -54.45 + 18 129.6 742 5 0 -113.916 -31.5486 -55.85 + 18 0.344784 741 5 0 -113.853 -31.65 -56.2485 + 18 130.747 353 4 1 -109.497 -39.0781 -84.4501 + 18 47.4362 703 4 0 -109.275 -39.4207 -85.85 + 18 111.703 702 4 0 -109.257 -39.45 -85.9693 + 18 13.2633 375 3 1 -104.965 -46.0007 -114.45 + 18 116.688 376 3 1 -104.95 -46.0103 -114.486 + 18 59.405 668 3 0 -104.392 -46.4127 -115.85 + 18 177.821 667 3 0 -104.339 -46.45 -115.976 + 18 91.5221 434 2 1 -93.2877 -55.2649 -144.45 + 18 54.7301 435 2 1 -93.15 -55.3388 -144.717 + 18 35.2393 622 2 0 -92.5612 -55.6229 -145.85 + 18 316.086 621 2 0 -92.5047 -55.65 -145.96 + 18 100.462 510 1 1 -77.9856 -62.591 -174.45 + 18 42.5052 511 1 1 -77.85 -62.6405 -174.735 + 18 10.9215 586 1 0 -77.3164 -62.8433 -175.85 + 18 209.653 585 1 0 -77.2986 -62.8501 -175.887 + 18 49.3775 600 0 1 -59.9563 -66.7098 -204.45 + 18 66.5031 601 0 1 -59.8499 -66.6925 -204.63 + 18 131.732 567 0 0 -59.096 -66.5822 -205.85 + 18 461.63 594 0 0 -63.7825 -61.0583 -206.25 + 18 7.88236 561 0 1 -67.8242 -61.6999 -204.85 + 18 58.0396 560 0 1 -67.8503 -61.705 -204.842 + 18 71.1629 559 0 1 -68.0505 -61.7549 -204.799 + 18 40.8827 558 0 1 -68.25 -61.8136 -204.797 + 18 127.008 557 0 1 -68.45 -61.8675 -204.752 + 18 89.8955 556 0 1 -68.6503 -61.8653 -204.687 + 18 81.3942 555 0 1 -68.85 -61.7846 -204.538 + 18 97.7758 554 0 1 -69.05 -61.6375 -204.593 + 18 121.813 553 0 1 -69.25 -61.7659 -204.615 + 18 101.293 552 0 1 -69.45 -62.0977 -204.65 + 18 53.7344 551 0 1 -69.65 -62.4259 -204.71 + 18 54.6851 550 0 1 -69.8503 -62.3543 -204.651 + 18 102.804 549 0 1 -70.05 -62.3124 -204.605 + 18 58.116 217 0 1 -136.55 -160.531 -204.794 + 18 29.2344 535 0 0 -47.1012 -72.9912 -206.25 + 18 252.216 534 0 0 -47.1343 -73.05 -206.189 + 18 175.313 660 0 1 -48.0275 -73.1766 -204.85 + 18 5.25471 659 0 1 -48.05 -73.1598 -204.765 + 18 211.775 661 0 1 -47.85 -72.9263 -204.502 + 18 199.153 662 0 1 -47.65 -72.5153 -204.549 + 18 24.1645 533 0 0 -47.2108 -73.25 -206.19 + 18 4.74488 573 0 0 -70.3447 -65.4111 -206.25 + 18 55.6854 715 4 0 -116.977 -36.9935 -85.85 + 18 3.91052 132 2 0 -150.191 -153.55 -145.902 + 18 624.834 368 7 1 -106.432 -19.3308 5.55 + 18 177.133 803 7 0 -106.429 -19.356 4.15 + 18 64.4451 368 6 1 -106.541 -19.9062 -24.4507 + 18 224.81 367 6 1 -106.55 -19.9191 -24.6869 + 18 126.743 800 6 0 -106.601 -20.0061 -25.8507 + 18 133.799 362 5 1 -107.648 -20.6478 -54.45 + 18 152.277 797 5 0 -107.58 -20.6424 -55.85 + 18 127.625 801 4 0 -106.425 -19.6539 -85.85 + 18 14.4003 328 3 1 -114.524 -20.1027 -114.45 + 18 87.2382 327 3 1 -114.55 -20.1202 -114.47 + 18 113.326 326 3 1 -114.75 -20.2554 -114.629 + 18 28.9827 325 3 1 -114.95 -20.3882 -114.786 + 18 22.6012 793 3 0 -116.34 -21.4103 -115.85 + 18 148.076 792 3 0 -116.402 -21.4503 -115.898 + 18 51.3044 146 2 1 -150.825 -40.0887 -144.45 + 18 108.346 145 2 1 -150.95 -40.1717 -144.584 + 18 25.8154 144 2 1 -151.15 -40.3063 -144.808 + 18 37.5952 695 2 0 -152.029 -40.9761 -145.85 + 18 110.473 694 2 0 -152.129 -41.05 -145.969 + 18 46.3328 27 1 1 -174.607 -55.2264 -174.45 + 18 72.8766 26 1 1 -174.75 -55.2848 -174.541 + 18 102.207 25 1 1 -174.95 -55.3702 -174.668 + 18 39.7646 24 1 1 -175.15 -55.4557 -174.783 + 18 66.6612 619 1 0 -176.714 -56.1713 -175.85 + 18 135.092 618 1 0 -176.891 -56.25 -175.979 + 18 8.09902 313 1 1 -117.351 -18.2653 -174.45 + 18 96.632 317 1 1 -116.591 -18.096 -174.85 + 18 255.598 335 0 1 -113.015 -25.6504 -204.45 + 18 241.694 771 0 0 -113.113 -25.7119 -205.85 + 18 57.0214 896 2 0 -167.912 -0.85 -146.129 + 18 23.251 366 7 1 -106.813 -18.566 5.15 + 18 21.3358 813 7 0 -107.477 -17.3968 4.14998 + 18 45.5059 378 7 1 -104.416 -17.826 5.15 + 18 117.765 808 8 0 -104.607 -18.3061 34.1496 + 18 212.547 809 8 0 -104.438 -18.25 34.0152 + 18 20.162 384 8 1 -103.284 -18.0916 35.15 + 18 344.24 367 0 1 -106.554 -16.8886 -204.45 + 18 305.631 815 0 0 -106.535 -16.9611 -205.85 + 18 202.786 365 5 1 -107.034 -18.7501 -54.45 + 18 279.927 363 4 1 -107.365 -18.7036 -84.45 + 18 99.6823 362 3 1 -107.735 -18.5767 -114.45 + 18 285.093 360 2 1 -108.141 -18.4274 -144.45 + 18 157.581 808 2 0 -108.157 -18.4193 -145.85 + 18 116.538 358 1 1 -108.472 -18.2527 -174.45 + 18 113.425 809 1 0 -108.49 -18.2401 -175.85 + 18 102.07 356 0 1 -108.849 -17.9769 -204.45 + 18 102.015 810 0 0 -108.864 -17.9588 -205.85 + 18 25.9589 850 0 0 85.0708 -9.85 -206.244 + 18 119.922 886 0 0 72.3162 -2.67357 -206.25 + 18 246.611 810 4 0 -107.869 -17.8843 -85.85 + 18 233.595 811 4 0 -107.897 -17.85 -85.9001 + 18 68.2239 359 2 1 -108.15 -18.5214 -144.646 + 18 22.1533 334 1 1 -113.188 -21.6689 -174.451 + 18 162.547 335 1 1 -113.15 -21.6371 -174.525 + 18 75.779 795 1 0 -112.629 -20.9598 -175.85 + 18 63.287 796 1 0 -112.56 -20.85 -176.075 + 18 51.4116 373 0 1 -105.409 -10.4537 -204.45 + 18 62.3081 372 0 1 -105.55 -10.4004 -204.472 + 18 46.2688 371 0 1 -105.75 -10.3449 -204.479 + 18 62.6171 370 0 1 -105.95 -10.2925 -204.481 + 18 131.172 369 0 1 -106.15 -10.2207 -204.501 + 18 17.608 361 2 1 -107.95 -18.2739 -144.802 + 18 79.0059 814 2 0 -107.297 -17.2104 -145.85 + 18 68.8334 815 2 0 -107.198 -17.05 -146.034 + 18 20.4714 420 1 1 -95.9999 3.513 -174.45 + 18 77.3689 421 1 1 -95.9499 3.52893 -174.46 + 18 64.2731 422 1 1 -95.75 3.60307 -174.501 + 18 73.2522 423 1 1 -95.55 3.65855 -174.524 + 18 67.1855 424 1 1 -95.35 3.70617 -174.559 + 18 89.5995 425 1 1 -95.15 3.79418 -174.616 + 18 135.136 426 1 1 -94.9497 3.92211 -174.666 + 18 74.1443 427 1 1 -94.75 4.04502 -174.717 + 18 44.3997 428 1 1 -94.55 4.13956 -174.747 + 18 61.5751 429 1 1 -94.35 4.22917 -174.794 + 18 9.56446 430 1 1 -94.15 4.29445 -174.844 + 18 71.503 928 1 0 -89.3864 5.75363 -175.85 + 18 121.145 929 1 0 -89.1506 5.85 -175.898 + 18 179.343 930 1 0 -88.77 6.05 -175.98 + 18 100.538 931 1 0 -88.4195 6.25 -176.07 + 18 254.5 932 1 0 -88.1044 6.45 -176.195 + 18 47.3598 852 1 0 85.6113 -9.55319 -176.25 + 18 146.87 851 1 0 85.7034 -9.65026 -176.213 + 18 173.582 850 1 0 85.9263 -9.85 -176.086 + 18 102.247 849 1 0 86.4196 -10.05 -175.991 + 18 24.1856 1341 1 1 88.3636 -10.9888 -174.85 + 18 55.3651 1342 1 1 88.45 -11.0218 -174.801 + 18 66.8373 1343 1 1 88.6508 -11.1171 -174.722 + 18 144.093 1344 1 1 88.85 -11.2403 -174.657 + 18 53.4471 1345 1 1 89.0502 -11.5276 -174.538 + 18 109.059 366 6 1 -106.75 -18.978 -24.5051 + 18 368.269 365 6 1 -106.951 -19.2343 -24.6279 + 18 32.1255 790 6 0 -106.803 -21.9843 -25.85 + 18 349.384 789 6 0 -106.771 -22.05 -25.921 + 18 111.872 367 7 1 -106.55 -18.5169 5.34639 + 18 180.002 802 7 0 -107.418 -19.4572 4.15 + 18 63.9293 801 7 0 -107.32 -19.65 4.09623 +Number of digits in this event = 85 +Using G4ParticleGun ... +4.301 LIN +gamma +Event: 19 +Number of tracker hits in this event = 90 + 19 301.137 201 8 1 -139.93 -33.8786 35.55 + 19 229.016 730 8 0 -139.93 -33.8785 34.15 + 19 321.154 201 7 1 -139.935 -33.8769 5.55 + 19 318.084 730 7 0 -139.934 -33.8776 4.15 + 19 134.556 201 6 1 -139.918 -33.8949 -24.45 + 19 117.607 730 6 0 -139.916 -33.8955 -25.85 + 19 264.959 201 5 1 -139.867 -33.8874 -54.45 + 19 284.895 730 5 0 -139.872 -33.8928 -55.85 + 19 145.394 200 4 1 -139.98 -34.0119 -84.45 + 19 250.228 730 4 0 -139.985 -34.0194 -85.85 + 19 129.583 200 3 1 -140.102 -34.1657 -114.45 + 19 97.0534 729 3 0 -140.105 -34.1726 -115.85 + 19 257.679 199 2 1 -140.154 -34.3077 -144.45 + 19 680.213 728 2 0 -140.156 -34.3143 -145.85 + 19 148.984 199 1 1 -140.21 -34.4599 -174.45 + 19 230.184 727 1 0 -140.213 -34.4643 -175.85 + 19 161.599 199 0 1 -140.273 -34.5521 -204.45 + 19 136.156 727 0 0 -140.277 -34.5551 -205.85 + 19 179.62 727 2 0 -139.966 -34.45 -146.219 + 19 137.142 200 2 1 -140.15 -34.5046 -144.682 + 19 32.2278 198 2 1 -140.401 -34.3823 -144.45 + 19 293.071 197 2 1 -140.55 -34.2946 -144.477 + 19 206.814 196 2 1 -140.75 -33.8681 -144.659 + 19 1.98132 773 2 0 -143.412 -25.2577 -145.85 + 19 66.4299 774 2 0 -143.415 -25.25 -145.851 + 19 53.6599 775 2 0 -143.475 -25.05 -145.898 + 19 134.576 776 2 0 -143.532 -24.85 -145.97 + 19 90.1276 777 2 0 -143.612 -24.6499 -146.075 + 19 9.20917 518 3 0 -134.699 -76.4196 -116.25 + 19 90.1997 517 3 0 -134.694 -76.45 -116.231 + 19 61.681 516 3 0 -134.693 -76.6501 -116.1 + 19 48.7636 515 3 0 -134.67 -76.8502 -115.999 + 19 10.367 514 3 0 -134.654 -77.05 -115.884 + 19 87.8336 226 3 1 -134.912 -78.393 -114.85 + 19 97.7589 227 3 1 -134.75 -78.685 -114.756 + 19 201.38 228 3 1 -134.55 -78.9456 -114.614 + 19 303.694 229 3 1 -134.35 -79.3871 -114.59 + 19 127.375 230 3 1 -134.15 -79.7565 -114.624 + 19 70.8378 231 3 1 -133.95 -80.1461 -114.583 + 19 63.4042 232 3 1 -133.75 -80.3014 -114.547 + 19 66.3365 233 3 1 -133.547 -80.4268 -114.505 + 19 98.1581 234 3 1 -133.35 -80.5626 -114.56 + 19 79.1432 235 3 1 -133.15 -80.8309 -114.598 + 19 93.3276 236 3 1 -132.95 -80.9273 -114.632 + 19 64.3211 237 3 1 -132.75 -80.9333 -114.671 + 19 51.9333 238 3 1 -132.55 -80.9467 -114.561 + 19 84.834 734 5 0 -139.806 -33.1509 -55.85 + 19 43.3043 735 5 0 -139.782 -33.05 -56.0831 + 19 21.5157 221 4 1 -135.83 -22.285 -84.4501 + 19 59.3041 222 4 1 -135.75 -22.2757 -84.4955 + 19 48.1625 223 4 1 -135.55 -22.2614 -84.6051 + 19 66.101 224 4 1 -135.35 -22.271 -84.7186 + 19 0.00705347 225 4 1 -135.15 -22.2934 -84.8497 + 19 69.1482 787 4 0 -133.635 -22.5966 -85.85 + 19 225.823 786 4 0 -133.417 -22.65 -85.9847 + 19 105.444 662 4 0 -94.055 -47.5354 -86.25 + 19 42.464 661 4 0 -94.1279 -47.65 -85.9699 + 19 119.216 427 4 1 -94.5626 -48.1403 -84.8491 + 19 123.5 202 6 1 -139.65 -34.1373 -24.45 + 19 153.196 729 6 0 -139.638 -34.1319 -25.85 + 19 119.456 203 5 1 -139.398 -34.0233 -54.45 + 19 215.445 204 4 1 -139.166 -33.9401 -84.45 + 19 108.639 206 3 1 -138.9 -34.3909 -114.45 + 19 137.373 728 3 0 -138.879 -34.4038 -115.85 + 19 119.057 208 2 1 -138.407 -34.6139 -144.45 + 19 113.228 209 1 1 -138.167 -34.5729 -174.45 + 19 121.792 213 0 1 -137.534 -34.8312 -204.45 + 19 125.265 725 0 0 -137.527 -34.866 -205.85 + 19 15.1777 728 4 0 -139.274 -34.4301 -85.85 + 19 135.416 727 4 0 -139.264 -34.45 -85.9028 + 19 100.064 726 4 0 -139.299 -34.65 -86.14 + 19 81.6175 725 4 0 -139.431 -34.85 -86.0064 + 19 274.355 724 4 0 -139.531 -35.05 -85.9796 + 19 170.355 204 5 1 -139.265 -33.9105 -54.4502 + 19 13.372 724 5 0 -141.581 -35.2263 -55.85 + 19 154.641 723 5 0 -141.625 -35.25 -55.8655 + 19 64.0642 722 5 0 -142.047 -35.4501 -55.9251 + 19 50.8728 174 5 1 -145.18 -37.4348 -54.85 + 19 107.975 173 5 1 -145.35 -37.5376 -54.802 + 19 100.825 172 5 1 -145.55 -37.6118 -54.7617 + 19 65.8135 171 5 1 -145.75 -37.7139 -54.7565 + 19 14.32 701 5 0 -147.803 -39.8009 -55.85 + 19 98.1404 700 5 0 -147.841 -39.85 -55.8701 + 19 74.0537 699 5 0 -147.936 -40.05 -55.9382 + 19 63.0762 698 5 0 -148.03 -40.2501 -56.0184 + 19 82.724 697 5 0 -148.154 -40.45 -56.0238 + 19 87.6628 696 5 0 -148.332 -40.65 -56.0121 + 19 24.5311 151 5 1 -149.874 -40.935 -54.8497 + 19 150.933 150 5 1 -149.95 -40.9607 -54.789 + 19 343.873 149 5 1 -150.15 -41.154 -54.5106 +Number of digits in this event = 40 +Using G4ParticleGun ... +1.98474 LIN +gamma +Event: 20 +Number of tracker hits in this event = 11 + 20 225.212 264 1 1 -127.161 9.68194 -174.45 + 20 270.124 948 1 0 -127.16 9.68929 -175.85 + 20 109.829 265 0 1 -127.138 9.8267 -204.45 + 20 247.241 948 0 0 -127.14 9.8271 -205.85 + 20 24.0052 528 9 0 -69.0502 -74.4071 63.75 + 20 227.814 527 9 0 -69.0091 -74.45 63.9116 + 20 207.756 949 0 0 -126.932 9.85 -206.018 + 20 158.722 264 0 1 -127.15 9.82667 -204.568 + 20 88.5335 263 0 1 -127.35 9.75435 -204.611 + 20 170.752 266 0 1 -126.914 9.62335 -204.45 + 20 133.503 947 0 0 -126.903 9.62356 -205.85 +Number of digits in this event = 10 +Using G4ParticleGun ... +7.91823 LIN +gamma +Event: 21 +Number of tracker hits in this event = 6 + 21 149.793 1587 1 1 137.678 -119.368 -174.45 + 21 167.665 1586 1 1 137.55 -119.234 -174.599 + 21 49.085 1073 6 0 -8.05661 34.7209 -26.25 + 21 48.775 1072 6 0 -8.04594 34.65 -26.0222 + 21 71.091 859 6 1 -8.12421 34.2825 -24.85 + 21 195.761 858 6 1 -8.25 34.2848 -24.7832 +Number of digits in this event = 5 +Using G4ParticleGun ... +6.71834 LIN +gamma +Event: 22 +Number of tracker hits in this event = 32 + 22 230.276 1416 1 1 103.483 64.5537 -174.45 + 22 285.257 1222 1 0 103.488 64.5606 -175.85 + 22 232.55 1417 0 1 103.621 64.646 -204.45 + 22 377.266 1223 0 0 103.621 64.6502 -205.85 + 22 251.151 1335 2 0 -125.763 87.1283 -146.25 + 22 72.6204 270 2 1 -126.028 87.1564 -144.85 + 22 70.4753 1348 2 0 -126.831 89.8301 -145.85 + 22 66.9845 1349 2 0 -126.833 89.85 -145.861 + 22 293.113 1222 0 0 103.622 64.65 -206.044 + 22 381.421 1416 0 1 103.493 64.5287 -204.45 + 22 147.18 1230 2 1 66.1668 45.4674 -144.85 + 22 59.483 1743 1 1 168.95 25.6013 -174.742 + 22 22.8687 1447 0 0 96.7405 109.649 -206.25 + 22 74.5227 1448 0 0 96.7291 109.75 -206.213 + 22 49.4905 1449 0 0 96.7006 109.951 -206.148 + 22 50.9644 1450 0 0 96.6644 110.15 -206.085 + 22 46.7192 1451 0 0 96.6241 110.35 -206.022 + 22 203.882 1452 0 0 96.577 110.55 -205.961 + 22 78.6291 1453 0 0 96.5425 110.751 -205.891 + 22 280.047 1380 0 1 96.2943 113.491 -204.85 + 22 116.526 1472 1 0 78.7326 114.724 -176.25 + 22 287.753 1290 1 1 78.2349 114.654 -174.85 + 22 151.886 1289 1 1 78.0219 114.664 -174.45 + 22 45.1539 1288 1 1 77.85 114.618 -174.473 + 22 45.4212 1287 1 1 77.65 114.604 -174.489 + 22 37.7422 1286 1 1 77.4496 114.597 -174.479 + 22 59.5468 1503 0 0 85.156 120.75 -205.908 + 22 146.471 1502 0 0 84.9108 120.75 -205.884 + 22 162.549 1501 0 0 84.9052 120.55 -205.931 + 22 47.269 1571 0 0 99.224 134.487 -206.25 + 22 133.227 1572 0 0 99.2 134.55 -206.195 + 22 142.895 1573 0 0 99.1659 134.75 -206.137 +Number of digits in this event = 18 +Using G4ParticleGun ... +7.14393 LIN gamma Event: 23 -Number of tracker hits in this event = 18 - 23 247.652 1369 3 1 94.023 86.137 -114.45 - 23 100.488 1329 3 0 94.0071 86.0485 -115.85 - 23 128.459 1368 2 1 93.863 84.4047 -144.45 - 23 120.33 1321 2 0 93.8225 84.3151 -145.85 - 23 119.504 1363 1 1 92.8389 82.6389 -174.45 - 23 150.012 1312 1 0 92.8077 82.5964 -175.85 - 23 133.018 1358 0 1 91.8139 84.2869 -204.45 - 23 115.967 1321 0 0 91.7508 84.3112 -205.85 - 23 128.717 1330 3 0 94.0212 86.1395 -115.85 - 23 183.166 1369 2 1 93.9896 86.1627 -144.45 - 23 114.345 1330 2 0 93.9884 86.1605 -145.85 - 23 267.423 1369 1 1 93.9765 86.1075 -174.45 - 23 134.748 1330 1 0 93.9777 86.1061 -175.85 - 23 163.194 1369 0 1 93.9693 86.0922 -204.45 - 23 124.814 1330 0 0 93.9737 86.091 -205.85 - 23 13.246 1326 1 0 94.2049 85.2747 -175.851 - 23 170.124 1325 1 0 94.2128 85.25 -175.887 - 23 195.755 657 10 0 -33.1535 -48.4734 93.75 -Number of digits in this event = 15 +Number of tracker hits in this event = 2 + 23 245.88 921 0 1 4.38047 148.421 -204.45 + 23 215.936 1641 0 0 4.38269 148.42 -205.85 +Number of digits in this event = 4 Using G4ParticleGun ... -6.746 LIN +3.55794 LIN gamma Event: 24 +Number of tracker hits in this event = 1 + 24 73.6525 1711 3 0 40.736 162.35 -115.945 +Number of digits in this event = 2 +Using G4ParticleGun ... +5.29139 LIN +gamma +Event: 25 +Number of tracker hits in this event = 128 + 25 260.031 747 10 1 -30.5251 -53.4351 95.55 + 25 238.755 633 10 0 -30.5281 -53.4326 94.15 + 25 228.776 747 9 1 -30.5967 -53.3785 65.55 + 25 263.592 633 9 0 -30.6001 -53.3769 64.15 + 25 141.487 746 8 1 -30.669 -53.3338 35.55 + 25 128.818 633 8 0 -30.6731 -53.3311 34.15 + 25 95.8589 746 7 1 -30.7556 -53.2718 5.55 + 25 112.795 633 7 0 -30.7618 -53.2665 4.15 + 25 144.304 745 6 1 -30.8941 -53.1592 -24.45 + 25 84.3088 634 6 0 -30.9015 -53.1582 -25.85 + 25 122.339 744 5 1 -31.0596 -53.1347 -54.45 + 25 252.821 634 5 0 -31.0675 -53.1358 -55.85 + 25 111.245 744 4 1 -31.2217 -53.1553 -84.45 + 25 116.805 634 4 0 -31.2293 -53.1588 -85.85 + 25 148.163 743 3 1 -31.3734 -53.2373 -114.45 + 25 311.431 634 3 0 -31.3826 -53.2456 -115.85 + 25 323.045 742 2 1 -31.5836 -53.4279 -144.45 + 25 131.741 633 2 0 -31.596 -53.4396 -145.85 + 25 280.484 741 1 1 -31.8384 -53.6851 -174.45 + 25 112.666 631 1 0 -31.8465 -53.7015 -175.85 + 25 459.149 740 0 1 -32.0272 -54.0554 -204.45 + 25 113.912 629 0 0 -32.0454 -54.0722 -205.85 + 25 348.894 630 0 0 -31.9687 -53.8566 -205.85 + 25 91.3967 632 2 0 26.5441 -53.4663 -146.25 + 25 177.599 1014 0 1 22.85 -59.3012 -204.675 + 25 133.202 698 0 1 -40.422 -132.25 -204.45 + 25 154.94 743 2 1 -31.3939 -52.8008 -144.45 + 25 93.9868 637 2 0 -32.1072 -52.46 -145.85 + 25 27.5087 638 2 0 -32.2345 -52.45 -146.075 + 25 138.657 618 3 1 -56.3363 -56.972 -114.45 + 25 122.984 636 2 0 -31.5236 -52.7695 -145.851 + 25 106.55 636 1 0 -31.817 -52.8246 -175.85 + 25 175.772 746 5 1 -30.8487 -53.1766 -54.45 + 25 118.911 747 4 1 -30.4946 -53.6467 -84.45 + 25 119.564 632 4 0 -30.5097 -53.6366 -85.85 + 25 542.071 746 3 1 -30.7225 -53.4215 -114.45 + 25 124.516 632 3 0 -30.6874 -53.4506 -115.85 + 25 98.3509 750 2 1 -29.9225 -54.1647 -144.45 + 25 110.487 629 2 0 -29.8248 -54.1959 -145.85 + 25 134.975 760 1 1 -27.8842 -55.0243 -174.45 + 25 152.295 625 1 0 -27.8039 -55.0173 -175.85 + 25 111.244 769 0 1 -26.19 -54.6342 -204.45 + 25 146.133 627 0 0 -26.0881 -54.6343 -205.85 + 25 132.127 702 4 0 -0.736696 -39.5471 -86.25 + 25 115.722 745 5 1 -30.8506 -53.1821 -54.45 + 25 104.063 632 5 0 -31.1951 -53.5078 -55.85 + 25 98.9342 717 4 1 -36.5862 -60.9404 -84.45 + 25 10.3172 718 4 1 -36.4498 -61.0208 -84.8001 + 25 109.839 593 4 0 -36.0301 -61.2956 -85.8504 + 25 150.703 776 3 1 -24.7586 -68.8534 -114.45 + 25 61.3732 553 3 0 -24.4718 -69.3711 -115.85 + 25 46.7197 552 3 0 -24.4252 -69.45 -116.091 + 25 59.0281 799 2 1 -20.1062 -78.5215 -144.45 + 25 95.721 798 2 1 -20.25 -78.4983 -144.609 + 25 9.7029 797 2 1 -20.45 -78.4646 -144.829 + 25 164.224 508 2 0 -21.2966 -78.3247 -145.85 + 25 13.7954 683 1 1 -43.4089 -74.1082 -174.45 + 25 109.026 682 1 1 -43.45 -74.101 -174.492 + 25 69.4797 681 1 1 -43.65 -74.0578 -174.699 + 25 161.239 531 1 0 -44.7612 -73.7981 -175.85 + 25 60.8554 669 1 0 -103.394 -46.1596 -176.25 + 25 115.28 670 1 0 -103.541 -46.0499 -176.108 + 25 66.4615 671 1 0 -103.944 -45.85 -175.956 + 25 48.6576 369 1 1 -106.227 -46.0534 -174.85 + 25 78.0719 368 1 1 -106.35 -46.0903 -174.719 + 25 113.561 506 2 0 -20.834 -78.65 -145.895 + 25 120.382 777 3 1 -24.6499 -68.7249 -114.491 + 25 138.437 560 3 0 -24.3074 -67.9815 -115.85 + 25 107.541 732 8 1 -33.5051 -52.6028 35.5498 + 25 47.3881 637 8 0 -33.7086 -52.4651 34.15 + 25 114.302 638 8 0 -33.7282 -52.45 34.0054 + 25 186.987 713 7 1 -37.3756 -50.1354 5.55 + 25 111.031 650 7 0 -37.6004 -49.906 4.14965 + 25 11.8836 651 7 0 -37.6603 -49.85 3.79953 + 25 28.7482 687 6 1 -42.6267 -45.3497 -24.4503 + 25 122.258 686 6 1 -42.65 -45.3426 -24.5332 + 25 266.824 674 6 0 -43.0035 -45.2437 -25.8506 + 25 19.3255 633 5 1 -53.4218 -43.0283 -54.45 + 25 177.674 632 5 1 -53.45 -43.0197 -54.5154 + 25 264.367 685 5 0 -53.9349 -42.8829 -55.8502 + 25 12.2408 686 5 0 -54.0533 -42.85 -56.2094 + 25 37.9438 586 4 1 -62.6906 -40.8706 -84.4504 + 25 104.643 587 4 1 -62.65 -40.8871 -84.4865 + 25 77.3068 588 4 1 -62.45 -40.9748 -84.6529 + 25 5.99132 589 4 1 -62.25 -41.0644 -84.8283 + 25 210.402 691 4 0 -60.9878 -41.6573 -85.85 + 25 18.7056 690 4 0 -60.5695 -41.85 -86.2015 + 25 32.4347 771 3 1 -25.7333 -54.7388 -114.45 + 25 67.1956 772 3 1 -25.65 -54.7868 -114.53 + 25 88.6238 773 3 1 -25.45 -54.9017 -114.715 + 25 117.138 622 3 0 -24.3208 -55.5081 -115.85 + 25 57.7607 621 3 0 -24.0234 -55.65 -116.126 + 25 46.6285 936 2 1 7.42228 -70.6045 -144.45 + 25 175.907 937 2 1 7.45 -70.6727 -144.569 + 25 134.272 542 2 0 7.85652 -71.4698 -145.85 + 25 12.9061 541 2 0 7.96304 -71.6501 -146.195 + 25 79.0058 972 1 1 14.5262 -83.9637 -174.45 + 25 122.917 973 1 1 14.65 -84.1075 -174.584 + 25 92.2694 974 1 1 14.85 -84.3644 -174.781 + 25 54.2216 470 1 0 16.2988 -85.9523 -175.85 + 25 86.7455 469 1 0 16.4092 -86.05 -175.919 + 25 135.392 468 1 0 16.6523 -86.25 -176.101 + 25 6.73794 1120 0 1 44.0697 -112.663 -204.45 + 25 80.6892 1119 0 1 44.0498 -112.664 -204.47 + 25 61.7785 1118 0 1 43.8499 -112.648 -204.628 + 25 30.0632 1117 0 1 43.6498 -112.61 -204.799 + 25 177.797 338 0 0 42.1113 -112.478 -205.85 + 25 13.3955 337 0 0 41.657 -112.55 -206.211 + 25 105.905 938 2 1 7.65 -70.8499 -144.468 + 25 157.503 939 2 1 7.85 -71.0623 -144.51 + 25 102.888 940 2 1 8.0501 -71.4343 -144.809 + 25 40.2225 536 2 0 8.96371 -72.7576 -145.85 + 25 120.885 535 2 0 9.05037 -72.85 -145.955 + 25 0.530889 304 2 0 16.0824 -119.348 -146.25 + 25 57.2073 303 2 0 16.0818 -119.35 -146.248 + 25 65.9233 302 2 0 15.9519 -119.55 -146.163 + 25 81.6955 301 2 0 15.8028 -119.75 -146.092 + 25 85.6186 300 2 0 15.736 -119.95 -146.14 + 25 236.158 299 2 0 15.8033 -120.15 -146.17 + 25 279.911 298 2 0 15.9764 -120.35 -146.151 + 25 276.809 297 2 0 16.2367 -120.55 -146.026 + 25 67.902 631 5 1 -53.65 -43.019 -54.662 + 25 127.772 309 0 1 -118.285 -35.7626 -204.45 + 25 37.0859 308 0 1 -118.35 -35.725 -204.738 + 25 109.565 722 0 0 -118.596 -35.5936 -205.85 + 25 207.225 673 6 0 -43.0217 -45.25 -25.927 + 25 260.412 402 14 1 -99.7069 -99.1095 215.15 + 25 131.335 504 0 1 -79.0577 -49.2468 -204.45 +Number of digits in this event = 55 +Using G4ParticleGun ... +7.75598 LIN +gamma +Event: 26 +Number of tracker hits in this event = 10 + 26 96.0971 954 4 0 -146.554 10.9848 -86.25 + 26 107.802 955 4 0 -146.429 11.0501 -86.006 + 26 15.0489 956 4 0 -146.553 11.25 -85.8794 + 26 155.853 168 4 1 -146.386 12.5713 -84.85 + 26 183.906 667 0 1 -46.65 -9.10915 -204.605 + 26 7.38356 1095 1 0 -15.6665 39.05 -176.077 + 26 47.7764 1096 1 0 -15.5376 39.25 -175.954 + 26 118.345 824 1 1 -15.0831 39.636 -174.85 + 26 100.948 823 1 1 -15.25 39.786 -174.621 + 26 50.1514 822 1 1 -15.4502 39.9887 -174.522 +Number of digits in this event = 4 +Using G4ParticleGun ... +5.68776 LIN +gamma +Event: 27 +Number of tracker hits in this event = 35 + 27 251.27 1461 7 1 112.514 -63.0286 5.55 + 27 257.82 585 7 0 112.514 -63.0278 4.15 + 27 148.644 1461 6 1 112.523 -63.0133 -24.45 + 27 111.074 585 6 0 112.524 -63.0148 -25.85 + 27 171.747 1461 5 1 112.548 -63.0439 -54.45 + 27 215.659 585 5 0 112.549 -63.0465 -55.85 + 27 179.911 1462 4 1 112.569 -63.1026 -84.45 + 27 123.404 584 4 0 112.571 -63.1057 -85.85 + 27 104.124 1462 3 1 112.604 -63.1694 -114.45 + 27 122.646 584 3 0 112.607 -63.1725 -115.85 + 27 98.5808 1462 2 1 112.667 -63.2257 -144.45 + 27 212.062 584 2 0 112.66 -63.2307 -145.85 + 27 104.687 1461 1 1 112.535 -63.3723 -174.45 + 27 138.549 583 1 0 112.535 -63.3935 -175.85 + 27 101.331 1461 0 1 112.519 -63.8574 -204.45 + 27 115.108 580 0 0 112.511 -63.8847 -205.85 + 27 87.1694 1361 2 1 92.5353 -110.017 -144.85 + 27 147.268 584 5 0 112.502 -63.05 -56.0611 + 27 188.686 1462 5 1 112.55 -63.044 -54.7416 + 27 163.742 1462 6 1 112.55 -63.0199 -24.5207 + 27 300.321 587 6 0 112.322 -62.5795 -25.85 + 27 124.736 1464 6 1 113.023 -62.7434 -24.45 + 27 109.874 586 6 0 113.061 -62.7345 -25.85 + 27 105.411 1468 5 1 113.828 -62.6457 -54.45 + 27 115.954 587 5 0 113.873 -62.6441 -55.85 + 27 123.302 1473 4 1 114.783 -62.6285 -84.45 + 27 109.629 587 4 0 114.813 -62.6427 -85.85 + 27 116.377 1476 3 1 115.385 -62.9192 -114.45 + 27 177.86 585 3 0 115.41 -62.926 -115.85 + 27 117.214 1479 2 1 116.02 -63.1028 -144.45 + 27 145.959 1484 1 1 117.073 -62.6571 -174.45 + 27 133.541 587 1 0 117.166 -62.6224 -175.85 + 27 201.402 1491 0 1 118.519 -62.2217 -204.45 + 27 122.48 589 0 0 118.539 -62.1904 -205.85 + 27 186.263 1492 0 1 118.55 -62.3173 -204.454 +Number of digits in this event = 24 +Using G4ParticleGun ... +2.48451 LIN +gamma +Event: 28 Number of tracker hits in this event = 0 Number of digits in this event = 1 Using G4ParticleGun ... -3.99603 LIN -gamma -Event: 25 -Number of tracker hits in this event = 68 - 25 239.206 619 9 1 -56.0694 -118.83 65.55 - 25 136.807 306 9 0 -56.0693 -118.83 64.15 - 25 154.193 619 8 1 -56.063 -118.833 35.55 - 25 188.233 306 8 0 -56.0673 -118.829 34.15 - 25 120.937 619 7 1 -56.1524 -118.745 5.55 - 25 112.191 307 7 0 -56.1551 -118.741 4.15 - 25 112.012 619 6 1 -56.2135 -118.652 -24.45 - 25 159.363 307 6 0 -56.2112 -118.653 -25.85 - 25 366.089 618 5 1 -56.363 -118.738 -54.45 - 25 142.963 306 5 0 -56.3588 -118.753 -55.85 - 25 147.745 619 4 1 -56.248 -119.024 -84.45 - 25 132.41 305 4 0 -56.2513 -119.034 -85.85 - 25 113.44 618 3 1 -56.4254 -119.142 -114.45 - 25 121.764 304 3 0 -56.4284 -119.157 -115.85 - 25 122.388 617 2 1 -56.5281 -119.482 -144.45 - 25 145.298 303 2 0 -56.513 -119.467 -145.85 - 25 226.385 619 1 1 -56.1487 -118.955 -174.45 - 25 198.522 306 1 0 -56.143 -118.853 -175.85 - 25 124.55 621 0 1 -55.8266 -116.524 -204.45 - 25 177.426 317 0 0 -55.676 -116.666 -205.85 - 25 181.199 620 1 1 -56.05 -119.077 -174.638 - 25 127.743 304 1 0 -55.2465 -119.278 -175.85 - 25 11.8492 470 5 0 -55.0739 -85.888 -56.25 - 25 169.667 471 5 0 -55.0706 -85.8494 -56.2221 - 25 41.1175 472 5 0 -55.0969 -85.6498 -56.1678 - 25 150.948 384 5 0 -117.567 -103.349 -56.25 - 25 310.024 385 5 0 -117.74 -103.15 -56.1979 - 25 206.431 623 0 1 -55.44 -121.917 -204.45 - 25 234.017 291 0 0 -55.3891 -121.891 -205.85 - 25 296.326 307 5 0 -56.272 -118.559 -55.85 - 25 174.208 616 4 1 -56.6603 -118.547 -84.45 - 25 104.269 307 4 0 -56.6924 -118.572 -85.8503 - 25 124.837 613 3 1 -57.4021 -119.29 -114.45 - 25 115.161 303 3 0 -57.4733 -119.365 -115.85 - 25 128.592 607 2 1 -58.4524 -121.816 -144.45 - 25 74.6872 291 2 0 -58.5411 -121.927 -145.85 - 25 28.6332 290 2 0 -58.5555 -121.95 -146.131 - 25 92.2421 601 1 1 -59.8172 -124.492 -174.45 - 25 36.1372 600 1 1 -59.85 -124.528 -174.72 - 25 195.606 277 1 0 -60.009 -124.641 -175.85 - 25 140.064 579 0 1 -64.0507 -127.447 -204.45 - 25 128.45 263 0 0 -64.3419 -127.447 -205.85 - 25 106.38 617 4 1 -56.5953 -118.577 -84.45 - 25 312.747 618 4 1 -56.45 -118.609 -84.6413 - 25 54.692 299 4 0 -54.2838 -120.16 -85.85 - 25 76.1151 649 4 1 -50.0856 -123.415 -84.8499 - 25 448.018 614 3 1 -57.1619 -118.696 -114.45 - 25 28.8688 615 3 1 -57.05 -118.608 -114.723 - 25 185.123 309 3 0 -56.3634 -118.327 -115.85 - 25 64.7732 479 5 0 6.79294 -84.2222 -56.25 - 25 118.023 308 4 0 -56.2542 -118.467 -85.85 - 25 113.175 619 3 1 -56.189 -118.428 -114.45 - 25 113.388 308 3 0 -56.1861 -118.426 -115.85 - 25 120.023 619 2 1 -56.1195 -118.377 -144.45 - 25 109.728 308 2 0 -56.1154 -118.377 -145.85 - 25 99.6578 308 1 0 -56.0288 -118.39 -175.85 - 25 131.962 620 0 1 -55.8758 -118.43 -204.45 - 25 104.331 308 0 0 -55.8714 -118.432 -205.85 - 25 58.6026 1100 5 0 101.241 40.05 -56.1294 - 25 162.364 307 9 0 -56.4329 -118.64 64.15 - 25 129.572 582 8 1 -63.5662 -116.3 35.5491 - 25 123.308 320 8 0 -63.8344 -116.125 34.15 - 25 66.6311 544 7 1 -71.2082 -112.3 5.55 - 25 29.3717 543 7 1 -71.25 -112.303 5.29103 - 25 132.214 339 7 0 -71.4874 -112.328 4.14961 - 25 59.0447 514 6 1 -77.1592 -112.267 -24.45 - 25 70.1062 513 6 1 -77.2501 -112.33 -24.6458 - 25 303.501 338 6 0 -78.2642 -112.494 -25.8501 -Number of digits in this event = 44 -Using G4ParticleGun ... -5.95615 LIN -gamma -Event: 26 -Number of tracker hits in this event = 27 - 26 287.354 1027 6 1 25.618 106.243 -24.45 - 26 273.689 1430 6 0 25.6179 106.246 -25.85 - 26 130.93 1027 5 1 25.6216 106.312 -54.45 - 26 244.159 1430 5 0 25.6209 106.317 -55.85 - 26 118.978 1027 4 1 25.6004 106.399 -84.45 - 26 328.455 1431 4 0 25.6014 106.401 -85.85 - 26 110.759 1027 3 1 25.626 106.445 -114.45 - 26 230.371 1431 3 0 25.6267 106.449 -115.85 - 26 164.732 1028 2 1 25.6516 106.522 -144.45 - 26 275.98 1431 2 0 25.6534 106.525 -145.85 - 26 134.852 1028 1 1 25.6938 106.585 -174.45 - 26 311.6 1432 1 0 25.6956 106.589 -175.85 - 26 102.269 1028 0 1 25.727 106.665 -204.45 - 26 275.688 1432 0 0 25.7279 106.671 -205.85 - 26 13.506 1242 4 0 -18.7662 68.6116 -86.2499 - 26 131.129 1243 4 0 -18.7715 68.65 -86.2358 - 26 242.516 1244 4 0 -18.8016 68.8505 -86.2332 - 26 33.2245 1245 4 0 -18.8536 69.05 -86.0774 - 26 6.89069 1027 2 1 25.626 106.49 -144.45 - 26 135.059 1028 5 1 25.7075 106.293 -54.45 - 26 130.454 1029 4 1 25.8939 106.345 -84.45 - 26 107.374 1030 3 1 26.1569 106.473 -114.45 - 26 117.615 1031 2 1 26.4179 106.518 -144.45 - 26 123.09 1032 1 1 26.6095 106.612 -174.45 - 26 318.621 1032 0 1 26.6328 106.737 -204.45 - 26 118.053 1432 4 0 26.0853 106.551 -86.0018 - 26 75.435 1707 14 1 161.55 111.13 215.209 -Number of digits in this event = 19 -Using G4ParticleGun ... -3.88901 LIN -gamma -Event: 27 -Number of tracker hits in this event = 2 - 27 321.876 1160 1 1 52.2465 -59.6463 -174.85 - 27 3.97159 1161 1 1 52.25 -59.5409 -174.688 -Number of digits in this event = 4 -Using G4ParticleGun ... -4.40504 LIN -gamma -Event: 28 -Number of tracker hits in this event = 13 - 28 246.903 1536 3 1 127.523 -38.3544 -114.45 - 28 241.745 708 3 0 127.52 -38.3567 -115.85 - 28 224.378 1536 2 1 127.468 -38.4237 -144.45 - 28 250.458 708 2 0 127.471 -38.4212 -145.85 - 28 219.8 1536 1 1 127.533 -38.3785 -174.45 - 28 218.935 708 1 0 127.54 -38.3717 -175.85 - 28 194.527 1537 0 1 127.677 -38.22 -204.45 - 28 318.636 709 0 0 127.687 -38.2136 -205.85 - 28 145.067 1537 1 1 127.588 -38.2852 -174.45 - 28 242.458 921 0 0 94.2216 4.36242 -206.25 - 28 56.408 920 0 0 94.1717 4.24999 -206.044 - 28 241.326 1738 2 1 167.79 15.1368 -144.85 - 28 123.917 761 1 0 140.139 -27.8312 -176.25 -Number of digits in this event = 15 -Using G4ParticleGun ... -2.83324 LIN +5.5043 LIN gamma Event: 29 Number of tracker hits in this event = 0 Number of digits in this event = 1 Using G4ParticleGun ... -6.93264 LIN +3.5718 LIN gamma Event: 30 -Number of tracker hits in this event = 5 - 30 215.487 1054 6 0 27.1802 30.9488 -26.25 - 30 165.46 1036 6 1 27.3201 30.8761 -24.85 - 30 163.288 1053 6 0 27.1538 30.8495 -25.982 - 30 111.448 611 0 1 -57.85 80.6933 -204.814 - 30 34.8027 1314 0 0 -44.8222 82.85 -206.041 -Number of digits in this event = 5 +Number of tracker hits in this event = 35 + 30 217.761 1150 4 1 50.1377 -121.594 -84.45 + 30 311.845 292 4 0 50.1529 -121.616 -85.85 + 30 99.1908 1151 3 1 50.3619 -122.018 -114.45 + 30 106.704 290 3 0 50.4579 -122.055 -115.85 + 30 122.912 1161 2 1 52.2525 -122.806 -144.451 + 30 127.557 286 2 0 52.2639 -122.87 -145.85 + 30 117.385 1161 1 1 52.4396 -124.513 -174.45 + 30 48.3461 1162 1 1 52.45 -124.551 -174.736 + 30 127.687 277 1 0 52.5346 -124.571 -175.85 + 30 101.758 1166 0 1 53.3698 -124.418 -204.45 + 30 117.405 279 0 0 53.2735 -124.335 -205.85 + 30 196.272 1150 3 1 50.1165 -121.587 -114.45 + 30 131.238 292 3 0 50.1146 -121.585 -115.85 + 30 121.222 1149 2 1 50.019 -121.601 -144.45 + 30 127.175 292 2 0 50.0129 -121.607 -145.85 + 30 343.297 1149 1 1 49.8976 -121.741 -174.45 + 30 168.821 291 1 0 49.8984 -121.752 -175.85 + 30 404.022 1149 0 1 49.8964 -121.985 -204.45 + 30 141.347 290 0 0 49.8885 -121.992 -205.85 + 30 197.324 1581 5 1 136.35 -48.0471 -54.6647 + 30 120.918 1148 0 1 49.85 -121.983 -204.47 + 30 37.359 1147 0 1 49.65 -121.786 -204.78 + 30 25.4657 299 0 0 49.3892 -120.252 -205.85 + 30 66.6672 300 0 0 49.3745 -120.15 -205.891 + 30 50.2372 301 0 0 49.3256 -119.95 -205.936 + 30 53.5242 302 0 0 49.288 -119.749 -206.06 + 30 206.76 303 0 0 49.2986 -119.55 -206.102 + 30 303.911 304 0 0 49.2849 -119.35 -206.117 + 30 68.6257 305 0 0 49.3076 -119.15 -206.031 + 30 165.748 1150 0 1 50.05 -118.998 -204.789 + 30 221.527 1151 0 1 50.25 -119.194 -204.603 + 30 51.2601 1139 0 1 47.9486 -117.711 -204.85 + 30 597.674 292 0 0 49.8981 -121.609 -205.85 + 30 273.694 288 3 0 50.7372 -122.384 -115.85 + 30 91.8919 383 0 0 -5.88848 -103.493 -206.25 +Number of digits in this event = 23 Using G4ParticleGun ... -8.11128 LIN +6.91958 LIN gamma Event: 31 -Number of tracker hits in this event = 79 - 31 256.905 746 7 1 -30.829 51.3956 5.55 - 31 244.811 1156 7 0 -30.8331 51.4012 4.15 - 31 143.304 745 6 1 -30.9123 51.4682 -24.45 - 31 147.327 1157 6 0 -30.9193 51.4697 -25.85 - 31 118.864 744 5 1 -31.0744 51.4822 -54.45 - 31 135.479 1157 5 0 -31.082 51.4811 -55.85 - 31 133.918 743 4 1 -31.2743 51.4618 -84.45 - 31 160.104 1157 4 0 -31.2805 51.461 -85.85 - 31 149.906 743 3 1 -31.409 51.4436 -114.45 - 31 244.325 1156 3 0 -31.418 51.4469 -115.85 - 31 108.024 742 2 1 -31.5249 51.4969 -144.45 - 31 171.836 1157 2 0 -31.5358 51.4961 -145.85 - 31 97.0559 741 1 1 -31.7578 51.4886 -174.45 - 31 181.924 1157 1 0 -31.7622 51.5001 -175.85 - 31 175.996 741 0 1 -31.8396 51.7501 -204.45 - 31 176.248 1158 0 0 -31.8389 51.7612 -205.85 - 31 297.88 742 3 1 -31.5012 51.4964 -114.45 - 31 256.026 1157 3 0 -31.5048 51.6083 -115.851 - 31 18.551 740 2 1 -32.024 52.9028 -144.45 - 31 125.797 739 2 1 -32.05 52.9023 -144.522 - 31 123.658 1163 2 0 -32.4355 52.8174 -145.85 - 31 175.088 692 1 1 -41.5719 49.6527 -174.45 - 31 19.8803 691 1 1 -41.65 49.6754 -174.778 - 31 109.711 1148 1 0 -41.8973 49.7572 -175.85 - 31 124.134 647 0 1 -50.4771 53.1558 -204.45 - 31 122.579 1164 0 0 -50.4082 53.0487 -205.85 - 31 191.576 738 2 1 -32.4147 53.3087 -144.45 - 31 157.942 1167 2 0 -32.1899 53.5606 -145.85 - 31 143.062 766 1 1 -26.7468 59.7434 -174.45 - 31 57.7419 767 1 1 -26.65 59.9461 -174.716 - 31 147.713 1203 1 0 -26.2137 60.6648 -175.85 - 31 153.441 1204 1 0 -26.1021 60.8502 -176.161 - 31 99.2839 815 0 1 -17.026 76.6418 -204.45 - 31 198.645 1284 0 0 -16.6263 76.8554 -205.85 - 31 106.881 819 5 0 -156.783 -16.1518 -56.25 - 31 144.053 1205 1 0 -26.2404 61.05 -175.97 - 31 143.989 746 6 1 -30.8243 51.3942 -24.45 - 31 212.855 1156 6 0 -30.8248 51.3926 -25.85 - 31 103.24 746 5 1 -30.8331 51.3589 -54.45 - 31 114.865 1156 5 0 -30.8326 51.3576 -55.85 - 31 97.3449 746 4 1 -30.8252 51.3344 -84.45 - 31 186.684 1156 4 0 -30.8256 51.3336 -85.85 - 31 129.032 746 3 1 -30.8324 51.3166 -114.45 - 31 171.744 746 2 1 -30.8335 51.29 -144.45 - 31 101.129 1156 2 0 -30.8308 51.2858 -145.85 - 31 99.9522 746 1 1 -30.7877 51.1997 -174.45 - 31 104.359 1155 1 0 -30.7864 51.1938 -175.85 - 31 214.693 746 0 1 -30.7764 51.0765 -204.45 - 31 248.727 1155 0 0 -30.7727 51.0731 -205.85 - 31 48.4412 996 2 1 19.25 29.8758 -144.643 - 31 34.3165 1688 10 0 167.914 157.752 93.75 - 31 274.417 1687 10 0 167.978 157.75 93.9331 - 31 42.9082 1735 10 1 167.288 157.163 95.15 - 31 3.46547 1734 10 1 167.15 157.174 95.1572 - 31 249.552 1686 10 0 165.498 157.55 93.9777 - 31 7.27979 1188 0 0 -84.7805 57.6755 -206.25 - 31 71.9355 1187 0 0 -84.7654 57.65 -206.231 - 31 85.69 1186 0 0 -84.6558 57.4499 -206.152 - 31 118.234 1185 0 0 -84.5272 57.2491 -206.062 - 31 96.6212 1184 0 0 -84.3506 57.0499 -205.974 - 31 249.806 1183 0 0 -84.1197 56.85 -205.944 - 31 24.6788 1133 0 0 -46.0218 46.6822 -206.25 - 31 551.999 1132 0 0 -45.9418 46.6496 -206.201 - 31 352.485 1131 0 0 -45.6172 46.4499 -205.952 - 31 122.438 1130 0 0 -45.3342 46.2499 -205.975 - 31 160.325 747 0 1 -30.65 51.0546 -204.611 - 31 20.1474 748 0 1 -30.45 51.0002 -204.805 - 31 73.9611 1156 0 0 -30.0566 51.3409 -205.85 - 31 58.9253 1157 0 0 -30.0193 51.4504 -206.045 - 31 374.647 1159 0 0 -30.0015 51.85 -206.177 - 31 135.368 1160 0 0 -30.1094 52.0503 -206.145 - 31 46.8004 1276 2 0 128.232 75.2832 -146.25 - 31 149.108 1275 2 0 128.37 75.25 -146.184 - 31 73.3614 1274 2 0 128.703 75.0499 -146.144 - 31 79.702 1273 2 0 128.856 74.8497 -146.122 - 31 117.416 1272 2 0 128.991 74.65 -146.059 - 31 55.9507 1543 2 1 128.852 74.7781 -144.85 - 31 175.328 1542 2 1 128.75 74.7519 -144.728 - 31 3.41292 1277 0 0 163.51 75.5892 -206.25 -Number of digits in this event = 48 +Number of tracker hits in this event = 64 + 31 235.884 438 9 1 -92.4373 48.7352 65.55 + 31 555.834 1143 9 0 -92.433 48.7282 64.15 + 31 294.326 438 8 1 -92.3714 48.4933 35.55 + 31 137.522 1142 8 0 -92.3589 48.4672 34.15 + 31 160.641 440 7 1 -92.069 48.0554 5.55 + 31 119.24 1139 7 0 -92.0751 48.0252 4.15 + 31 288.876 439 6 1 -92.2714 47.4934 -24.45 + 31 106.147 1137 6 0 -92.2348 47.4835 -25.85 + 31 121.477 443 5 1 -91.5288 47.1412 -54.45 + 31 68.3897 1135 5 0 -91.4652 47.0655 -55.85 + 31 35.3533 1134 5 0 -91.4515 47.05 -56.1361 + 31 129.731 450 4 1 -90.0044 45.5117 -84.45 + 31 120.532 1126 4 0 -89.8982 45.4134 -85.85 + 31 23.2435 460 3 1 -87.8543 43.2889 -114.45 + 31 243.302 461 3 1 -87.85 43.2866 -114.497 + 31 106.391 1115 3 0 -87.7212 43.2195 -115.85 + 31 125.808 474 2 1 -85.101 41.8413 -144.45 + 31 209.838 1108 2 0 -84.9965 41.7476 -145.85 + 31 127.517 485 1 1 -82.9632 39.9596 -174.45 + 31 103.695 1099 1 0 -82.8854 39.8914 -175.85 + 31 122.013 493 0 1 -81.435 38.5082 -204.45 + 31 100.83 1091 0 0 -81.4362 38.4369 -205.85 + 31 146.862 1143 8 0 -92.4384 48.7172 34.15 + 31 183.47 439 7 1 -92.3457 48.7492 5.55 + 31 239.882 1143 7 0 -92.3419 48.7499 4.15 + 31 132.056 1143 6 0 -92.266 48.7602 -25.85 + 31 94.9793 439 5 1 -92.2161 48.719 -54.45 + 31 111.8 1143 5 0 -92.2128 48.7193 -55.85 + 31 155.763 439 4 1 -92.1526 48.7286 -84.45 + 31 142.453 1143 4 0 -92.147 48.7283 -85.85 + 31 116.579 440 3 1 -92.0333 48.7279 -114.45 + 31 260.958 1143 3 0 -92.0297 48.7309 -115.85 + 31 151.978 440 2 1 -91.9893 48.7951 -144.45 + 31 421.326 1143 2 0 -91.9879 48.8001 -145.85 + 31 137.075 440 1 1 -91.9794 48.9198 -174.45 + 31 123.417 1144 1 0 -91.9769 48.9257 -175.85 + 31 125.672 441 0 1 -91.9136 49.0318 -204.45 + 31 114.504 1144 0 0 -91.9156 49.0353 -205.85 + 31 175.93 1223 2 0 -143.976 64.65 -146.016 + 31 0.567068 931 2 0 -85.0071 6.45 -146.184 + 31 28.037 930 2 0 -84.9822 6.24994 -146.039 + 31 13.432 26 9 1 -174.75 178.56 65.1662 + 31 87.922 27 9 1 -174.75 178.572 65.203 + 31 44.0072 529 4 1 -74.25 25.2023 -84.4814 + 31 43.4801 1142 3 0 -92.0075 48.65 -116.223 + 31 77.5702 1007 3 0 -90.544 21.5833 -116.25 + 31 65.6914 1006 3 0 -90.5674 21.45 -116.06 + 31 196.686 449 3 1 -90.2241 21.0866 -114.85 + 31 49.6982 1368 8 0 -47.3579 93.8592 33.75 + 31 84.0725 1369 8 0 -47.2718 93.9503 33.8518 + 31 149.309 1370 8 0 -47.2037 94.15 33.8719 + 31 359.365 438 4 1 -92.4583 48.6075 -84.45 + 31 175.099 1142 4 0 -92.459 48.6101 -85.85 + 31 129.556 438 3 1 -92.5182 48.6424 -114.45 + 31 139.47 437 2 1 -92.6799 48.8064 -144.45 + 31 109.924 434 1 1 -93.2399 49.2705 -174.45 + 31 164.972 1146 1 0 -93.2673 49.3137 -175.85 + 31 136.168 431 0 1 -93.8225 50.1645 -204.45 + 31 145.574 1150 0 0 -93.8587 50.2093 -205.85 + 31 197.379 657 8 0 15.2421 -48.5963 33.75 + 31 297.325 973 8 1 14.8328 -47.6077 35.15 + 31 47.9782 1148 4 0 -92.4809 49.7576 -85.85 + 31 111.205 1149 4 0 -92.4743 49.85 -85.9691 + 31 20.5262 1150 4 0 -92.4537 50.05 -86.1885 +Number of digits in this event = 41 Using G4ParticleGun ... -4.32239 LIN +1.41598 LIN gamma Event: 32 -Number of tracker hits in this event = 5 - 32 15.5476 1334 1 0 -0.78006 86.9686 -176.227 - 32 203.969 896 0 1 -0.77955 86.9722 -204.45 - 32 248.985 1334 0 0 -0.781007 86.9708 -205.85 - 32 202.63 449 1 0 -7.4224 -90.15 -175.956 - 32 0.40033 87 1 0 27.5765 -162.55 -176.073 -Number of digits in this event = 5 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 Using G4ParticleGun ... -9.24321 LIN +3.07173 LIN gamma Event: 33 -Number of tracker hits in this event = 34 - 33 218.319 1359 3 1 92.0683 -84.1842 -114.45 - 33 270.341 479 3 0 92.0683 -84.1838 -115.85 - 33 188.594 1359 2 1 92.066 -84.1728 -144.45 - 33 117.173 479 2 0 92.0652 -84.1716 -145.85 - 33 307.188 1359 1 1 92.0502 -84.1449 -174.45 - 33 118.487 479 1 0 92.0492 -84.1433 -175.85 - 33 106.086 1359 0 1 92.029 -84.1085 -204.45 - 33 129.813 479 0 0 92.0275 -84.1057 -205.85 - 33 84.8589 936 2 0 148.908 7.32127 -146.25 - 33 153.879 935 2 0 149.06 7.25 -146.186 - 33 80.7734 934 2 0 149.669 7.05 -146.052 - 33 106.272 933 2 0 149.921 6.85 -146.003 - 33 114.026 932 2 0 150.107 6.65 -145.997 - 33 158.17 931 2 0 150.348 6.44971 -146.013 - 33 81.1227 930 2 0 150.506 6.25 -146.052 - 33 246.541 929 2 0 150.707 6.05 -146.112 - 33 1.77575 1111 3 0 -49.7123 42.25 -116.167 - 33 171.655 254 6 1 -129.15 -70.9975 -24.6618 - 33 16.0426 1112 3 0 -49.9514 42.45 -115.869 - 33 33.5856 650 3 1 -49.9165 44.0429 -114.849 - 33 269.767 651 3 1 -49.8499 44.0728 -114.774 - 33 176.644 652 3 1 -49.65 44.0442 -114.787 - 33 70.8445 816 0 0 161.564 -16.85 -205.919 - 33 225.123 1709 0 1 162.022 -17.7714 -204.85 - 33 6.6002 1052 7 0 -18.7408 30.5569 3.75 - 33 168.954 1053 7 0 -18.8092 30.65 3.93914 - 33 122.676 711 10 0 -47.7721 -37.7018 93.75 - 33 135.518 710 10 0 -47.844 -37.8501 93.8626 - 33 120.518 1361 2 1 92.4653 -83.8753 -144.45 - 33 219.978 480 2 0 92.4788 -83.8565 -145.85 - 33 86.3499 1363 1 1 92.7693 -83.4696 -174.45 - 33 119.244 482 1 0 92.7823 -83.4607 -175.85 - 33 107.106 1364 0 1 93.0746 -83.3085 -204.45 - 33 141.678 483 0 0 93.0844 -83.3002 -205.85 -Number of digits in this event = 21 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 Using G4ParticleGun ... -6.10168 LIN +6.58744 LIN gamma Event: 34 Number of tracker hits in this event = 0 -Number of digits in this event = 2 +Number of digits in this event = 1 Using G4ParticleGun ... -3.09042 LIN +6.35099 LIN gamma Event: 35 -Number of tracker hits in this event = 0 -Number of digits in this event = 3 +Number of tracker hits in this event = 38 + 35 227.248 1185 8 1 57.1105 73.8274 35.55 + 35 242.608 1268 8 0 57.1087 73.8289 34.15 + 35 374.122 1185 7 1 57.0773 73.866 5.55 + 35 242.469 1269 7 0 57.0762 73.8673 4.15 + 35 123.876 1184 6 1 57.0452 73.9016 -24.45 + 35 237.414 1269 6 0 57.0423 73.9037 -25.85 + 35 284.371 1184 5 1 56.9858 73.928 -54.45 + 35 302.44 1269 5 0 56.983 73.9274 -55.85 + 35 273.376 1184 4 1 56.9276 73.911 -84.45 + 35 132.891 1269 4 0 56.9252 73.9092 -85.85 + 35 108.045 1184 3 1 56.8732 73.8771 -114.45 + 35 111.866 1269 3 0 56.8682 73.8771 -115.85 + 35 115.612 1183 2 1 56.7616 73.8885 -144.45 + 35 143.266 1269 2 0 56.7554 73.8875 -145.85 + 35 207.941 1182 1 1 56.6412 73.8683 -174.45 + 35 197.784 1269 1 0 56.6308 73.864 -175.85 + 35 313.769 1181 0 1 56.4094 73.7868 -204.45 + 35 118.253 1268 0 0 56.3921 73.7831 -205.85 + 35 120.903 1181 1 1 56.45 74.0634 -174.525 + 35 34.8068 1180 1 1 56.25 74.2061 -174.759 + 35 0.38853 1274 1 0 55.6565 75.0492 -175.85 + 35 115.361 1275 1 0 55.656 75.05 -175.851 + 35 41.7001 1276 1 0 55.5648 75.25 -176.152 + 35 33.9433 1669 3 1 153.95 -166.829 -114.524 + 35 107.348 1185 6 1 57.0602 73.9522 -24.45 + 35 129.841 1270 4 0 57.0196 74.0564 -85.85 + 35 122.96 1185 3 1 57.0728 74.0683 -114.45 + 35 145.083 1270 3 0 57.0738 74.071 -115.85 + 35 218.103 1185 2 1 57.0902 74.1318 -144.45 + 35 97.7922 1270 2 0 57.0907 74.1357 -145.85 + 35 123.66 1185 1 1 57.1193 74.2075 -174.45 + 35 121.155 1270 1 0 57.1181 74.2204 -175.85 + 35 130.187 1184 0 1 56.9884 74.5373 -204.45 + 35 123.591 1272 0 0 56.9779 74.5478 -205.85 + 35 84.701 1075 0 1 35.0815 88.6289 -204.45 + 35 241.182 1184 2 1 57.05 74.0459 -144.534 + 35 210.634 1598 6 1 139.75 -53.6352 -24.7313 + 35 233.093 1184 7 1 57.05 73.8528 5.30962 +Number of digits in this event = 29 Using G4ParticleGun ... -4.92202 LIN +9.98822 LIN gamma Event: 36 -Number of tracker hits in this event = 36 - 36 276.099 590 4 1 -61.8717 25.7214 -84.45 - 36 513.6 1028 4 0 -61.873 25.7259 -85.85 - 36 580.099 590 3 1 -61.8902 25.8045 -114.45 - 36 546.108 1028 3 0 -61.8923 25.8091 -115.85 - 36 319.001 590 2 1 -61.9271 25.8969 -144.45 - 36 183.125 1029 2 0 -61.9274 25.9059 -145.85 - 36 247.958 590 1 1 -61.9416 26.0818 -174.45 - 36 145.902 1030 1 0 -61.9407 26.0921 -175.85 - 36 172.592 590 0 1 -61.934 26.3014 -204.45 - 36 116.2 1031 0 0 -61.9376 26.3098 -205.85 - 36 27.5886 859 10 0 -21.7918 -8.07565 93.7501 - 36 146.3 860 10 0 -21.8127 -8.05 93.7967 - 36 121.232 1028 2 0 -61.9162 25.8149 -145.85 - 36 101.802 1029 1 0 -61.9919 25.9352 -175.85 - 36 396.658 589 0 1 -62.0801 26.0525 -204.45 - 36 403.927 1030 0 0 -62.0883 26.0546 -205.85 - 36 76.6942 1432 12 0 -141.058 106.586 153.75 - 36 1.79273 582 2 1 -63.4502 24.8723 -144.45 - 36 122.591 583 2 1 -63.45 24.871 -144.458 - 36 124.459 1022 2 0 -63.3694 24.6417 -145.85 - 36 126.507 594 1 1 -61.16 20.2086 -174.45 - 36 120.704 999 1 0 -60.9657 19.9327 -175.85 - 36 1.59743 998 1 0 -60.9126 19.85 -176.245 - 36 207.567 613 0 1 -57.3809 13.6184 -204.45 - 36 59.0984 966 0 0 -57.3869 13.3035 -205.85 - 36 96.5899 965 0 0 -57.3876 13.25 -206.086 - 36 136.426 595 2 1 -61.0384 27.6696 -144.45 - 36 113.635 1037 2 0 -60.8019 27.6193 -145.85 - 36 333.882 629 1 1 -54.2402 28.2611 -174.45 - 36 145.016 1040 1 0 -53.7951 28.229 -175.85 - 36 16.5971 677 0 1 -44.4776 27.723 -204.45 - 36 126.745 678 0 1 -44.45 27.7147 -204.504 - 36 178.245 1037 0 0 -43.7494 27.5099 -205.85 - 36 5.89292 1036 0 0 -43.5599 27.4499 -206.221 - 36 294.455 584 4 1 -63.1174 26.6948 -84.85 - 36 77.3128 583 4 1 -63.2502 26.6902 -84.6596 -Number of digits in this event = 27 +Number of tracker hits in this event = 23 + 36 80.65 556 6 0 58.1985 -68.7324 -26.0809 + 36 213.394 1190 5 1 58.1991 -68.7333 -54.45 + 36 372.186 556 5 0 58.2012 -68.7348 -55.85 + 36 292.061 1190 4 1 58.2483 -68.7648 -84.45 + 36 226.428 556 4 0 58.2494 -68.7682 -85.85 + 36 121.834 1191 3 1 58.2727 -68.8327 -114.45 + 36 197.72 556 3 0 58.2722 -68.8356 -115.85 + 36 233.755 1190 2 1 58.2458 -68.9133 -144.45 + 36 142.018 555 2 0 58.2433 -68.9147 -145.85 + 36 224.093 1190 1 1 58.1852 -68.9263 -174.45 + 36 138.365 555 1 0 58.1809 -68.9269 -175.85 + 36 562.42 1190 0 1 58.1004 -68.9317 -204.45 + 36 346.732 555 0 0 58.098 -68.9345 -205.85 + 36 17.6714 557 5 0 58.2544 -68.65 -56.0606 + 36 105.785 1190 3 1 58.1581 -68.7574 -114.45 + 36 182.832 556 2 0 58.1421 -68.7528 -145.85 + 36 120.143 556 1 0 58.1352 -68.764 -175.85 + 36 112.532 556 0 0 58.176 -68.7654 -205.85 + 36 8.55135 1191 0 1 58.25 -68.8078 -204.82 + 36 109.509 553 0 0 58.8487 -69.275 -205.85 + 36 85.6594 552 0 0 59.1278 -69.45 -206.126 + 36 57.8742 551 0 0 59.3043 -69.6503 -206.233 + 36 32.4166 550 0 0 59.4082 -69.8503 -206.232 +Number of digits in this event = 17 Using G4ParticleGun ... -3.34505 LIN +7.70193 LIN gamma Event: 37 -Number of tracker hits in this event = 63 - 37 68.2822 1194 7 0 -37.5976 58.8826 3.85657 - 37 271.943 712 6 1 -37.5947 58.8965 -24.45 - 37 420.684 1194 6 0 -37.5931 58.899 -25.85 - 37 128.287 712 5 1 -37.5636 58.9369 -54.45 - 37 108.624 1194 5 0 -37.5606 58.9323 -55.85 - 37 211.533 712 4 1 -37.5064 58.8446 -84.45 - 37 105.371 1193 4 0 -37.5068 58.8434 -85.85 - 37 107.056 712 3 1 -37.5179 58.823 -114.45 - 37 156.845 1193 3 0 -37.516 58.8214 -115.85 - 37 166.379 712 2 1 -37.4594 58.7998 -144.45 - 37 116.601 1193 2 0 -37.451 58.7907 -145.85 - 37 120.558 713 1 1 -37.2931 58.6295 -174.45 - 37 132.824 1192 1 0 -37.2846 58.622 -175.85 - 37 357.666 714 0 1 -37.1268 58.4913 -204.45 - 37 113.758 1192 0 0 -37.119 58.4834 -205.85 - 37 12.8198 1466 1 0 -117.578 113.358 -176.25 - 37 125.486 1190 0 0 -37.3909 58.2325 -205.85 - 37 87.4125 713 4 1 -37.45 58.9373 -84.568 - 37 46.2695 714 4 1 -37.25 59.0112 -84.6605 - 37 88.4319 715 4 1 -37.05 58.9942 -84.6627 - 37 107.447 716 4 1 -36.85 59.0931 -84.6298 - 37 93.3345 717 4 1 -36.65 59.3605 -84.6689 - 37 77.4227 718 4 1 -36.45 59.5043 -84.7257 - 37 55.5731 719 4 1 -36.25 59.5856 -84.6643 - 37 343.708 720 4 1 -36.05 59.661 -84.6063 - 37 55.1344 721 4 1 -35.85 60.2647 -84.7533 - 37 229.649 1196 4 0 -34.4472 59.3714 -85.8506 - 37 130.894 711 5 1 -37.7911 58.619 -54.45 - 37 122.802 1192 5 0 -37.7994 58.6039 -55.85 - 37 119.557 710 4 1 -37.9674 58.2831 -84.45 - 37 162.44 1191 4 0 -37.9709 58.2685 -85.85 - 37 113.92 710 3 1 -38.04 57.97 -114.45 - 37 108.739 1189 3 0 -38.0467 57.9591 -115.85 - 37 397.145 709 2 1 -38.1677 57.7393 -144.45 - 37 324.139 1188 2 0 -38.1869 57.743 -145.85 - 37 121.046 706 1 1 -38.761 57.9094 -174.45 - 37 105.741 1189 1 0 -38.8232 57.8713 -175.85 - 37 134.348 699 0 1 -40.1041 57.1119 -204.45 - 37 125.401 1185 0 0 -40.1784 57.1175 -205.85 - 37 636.119 708 1 1 -38.3848 57.4012 -174.45 - 37 520.537 1186 1 0 -38.3994 57.3791 -175.85 - 37 132.42 706 0 1 -38.6906 56.9278 -204.45 - 37 308.278 1184 0 0 -38.7135 56.9113 -205.85 - 37 1.16696 1181 0 0 -49.458 56.45 -205.911 - 37 237.703 655 0 1 -49.0134 56.2648 -204.85 - 37 135.37 712 1 1 -37.5513 57.8007 -174.45 - 37 208.801 1188 1 0 -37.4848 57.7862 -175.85 - 37 455.738 718 0 1 -36.2957 57.6026 -204.45 - 37 147.479 1187 0 0 -36.212 57.6031 -205.85 - 37 288.419 719 0 1 -36.2498 57.1915 -204.548 - 37 85.3298 720 0 1 -36.0499 56.8932 -204.466 - 37 158.687 710 0 1 -38.0488 55.9308 -204.45 - 37 168.1 709 0 1 -38.05 55.9308 -204.484 - 37 168.588 1179 0 0 -38.1046 55.9201 -205.85 - 37 101.965 1167 0 0 -36.2592 53.5991 -205.85 - 37 7.21588 1166 0 0 -36.2159 53.4499 -206.218 - 37 66.6155 1060 0 0 -36.388 32.1483 -206.25 - 37 99.2163 1059 0 0 -36.3737 32.05 -206.127 - 37 107.933 1187 1 0 -38.4024 57.5138 -175.85 - 37 99.679 1189 0 0 -37.878 58.0136 -205.85 - 37 8.79071 703 0 1 -39.4329 55.3227 -204.45 - 37 288.841 702 0 1 -39.4501 55.3367 -204.483 - 37 31.5991 1178 0 0 -40.0584 55.8071 -205.85 -Number of digits in this event = 37 -Using G4ParticleGun ... -6.72078 LIN -gamma -Event: 38 -Number of tracker hits in this event = 67 - 38 260.873 1168 10 1 53.7564 -64.9992 95.55 - 38 221.275 575 10 0 53.7562 -65.0008 94.15 - 38 247.516 1168 9 1 53.7603 -65.0269 65.55 - 38 307.68 575 9 0 53.7609 -65.0268 64.15 - 38 313.416 1168 8 1 53.8243 -64.9998 35.55 - 38 216.186 575 8 0 53.8242 -64.9946 34.15 - 38 351.128 1168 7 1 53.8458 -64.9408 5.55 - 38 222.9 575 7 0 53.847 -64.9544 4.15 - 38 122.349 1168 6 1 53.8317 -65.228 -24.45 - 38 13.6695 574 6 0 53.8193 -65.249 -25.85 - 38 108.583 573 6 0 53.8188 -65.25 -25.915 - 38 140.359 1167 5 1 53.574 -65.6955 -54.45 - 38 126.924 571 5 0 53.5609 -65.703 -55.85 - 38 128.361 1166 4 1 53.279 -65.842 -84.45 - 38 140.358 570 4 0 53.2569 -65.854 -85.85 - 38 112.687 1163 3 1 52.7925 -66.0842 -114.45 - 38 120.281 569 3 0 52.7626 -66.1123 -115.85 - 38 188.685 1160 2 1 52.1919 -66.6624 -144.45 - 38 383.863 566 2 0 52.1689 -66.6865 -145.85 - 38 97.0273 1158 1 1 51.7508 -67.1687 -174.45 - 38 105.284 564 1 0 51.7402 -67.1805 -175.85 - 38 108.983 1157 0 1 51.5185 -67.4465 -204.45 - 38 126.53 562 0 0 51.5092 -67.4764 -205.85 - 38 36.0156 563 0 0 51.5492 -67.45 -206.21 - 38 124.566 1161 2 1 52.25 -66.6927 -144.743 - 38 118.275 565 2 0 51.9034 -66.85 -146.03 - 38 194.148 568 2 0 52.4726 -66.4375 -145.85 - 38 172.899 756 0 1 -28.65 -56.519 -204.669 - 38 0.60895 1169 7 1 53.8987 -64.8844 5.55 - 38 218.988 635 5 0 47.0746 -52.9137 -56.25 - 38 72.338 636 5 0 47.1453 -52.8499 -55.9295 - 38 71.7917 1136 5 1 47.3841 -50.6272 -54.85 - 38 60.2122 662 5 0 48.0307 -47.6216 -55.85 - 38 95.1448 663 5 0 48.0767 -47.45 -55.8923 - 38 416.481 664 5 0 47.9324 -47.2497 -55.9528 - 38 69.7182 121 2 0 75.9296 -155.794 -146.25 - 38 76.0884 120 2 0 76.0503 -155.95 -146.17 - 38 75.2352 119 2 0 76.2668 -156.15 -146.117 - 38 71.0582 118 2 0 76.4299 -156.35 -146.107 - 38 115.035 117 2 0 76.5297 -156.55 -146.105 - 38 90.8546 116 2 0 76.5581 -156.75 -146.129 - 38 53.9856 115 2 0 76.6969 -156.95 -146.118 - 38 58.6884 114 2 0 76.7768 -157.15 -146.135 - 38 37.9342 113 2 0 76.81 -157.35 -146.185 - 38 288.137 1169 6 1 53.9138 -64.9351 -24.4505 - 38 19.17 575 6 0 53.9112 -64.8555 -25.85 - 38 82.4388 576 6 0 53.9111 -64.85 -25.9424 - 38 147.134 1169 5 1 53.9675 -62.8591 -54.4502 - 38 123.997 586 5 0 53.9716 -62.8399 -55.85 - 38 123.087 1170 4 1 54.1888 -62.7979 -84.45 - 38 113.731 586 4 0 54.1873 -62.7952 -85.8505 - 38 398.254 1171 3 1 54.2897 -62.6064 -114.45 - 38 111.901 587 3 0 54.3165 -62.591 -115.85 - 38 119.629 1173 2 1 54.7398 -62.2336 -144.45 - 38 108.664 588 2 0 54.5634 -62.3312 -145.85 - 38 123.983 1155 1 1 51.202 -64.5177 -174.45 - 38 204.894 575 1 0 50.8362 -64.8996 -175.851 - 38 92.7803 1121 0 1 44.3473 -72.2934 -204.45 - 38 137.489 537 0 0 44.0917 -72.5671 -205.85 - 38 163.413 1172 3 1 54.45 -62.5468 -114.644 - 38 160.043 0 7 0 -99.4687 -180.011 3.7501 - 38 15.5849 427 3 0 78.8137 -94.7215 -116.25 - 38 94.5917 426 3 0 78.8382 -94.7502 -116.205 - 38 64.802 425 3 0 78.9544 -94.9503 -115.984 - 38 4.56105 424 3 0 79.0626 -95.15 -115.868 - 38 81.5269 1295 3 1 79.1029 -95.4495 -114.85 - 38 30.5416 1294 3 1 79.05 -95.5424 -114.561 -Number of digits in this event = 34 -Using G4ParticleGun ... -4.16566 LIN -gamma -Event: 39 -Number of tracker hits in this event = 50 - 39 322.5 885 7 1 -2.88954 141.687 5.55 - 39 262.152 1607 7 0 -2.88913 141.685 4.15 - 39 570.256 885 6 1 -2.85305 141.662 -24.45 - 39 216.995 1607 6 0 -2.84709 141.656 -25.85 - 39 230.395 886 5 1 -2.71796 141.523 -54.45 - 39 219.41 1606 5 0 -2.71029 141.514 -55.85 - 39 117.252 887 4 1 -2.55681 141.324 -84.45 - 39 524.42 1605 4 0 -2.52838 141.344 -85.85 - 39 50.475 1606 4 0 -2.52156 141.35 -86.204 - 39 107.58 889 3 1 -2.1685 142.008 -114.45 - 39 470.373 1609 3 0 -2.13512 142.011 -115.85 - 39 157.708 892 2 1 -1.54172 142.281 -144.45 - 39 140.748 1610 2 0 -1.53679 142.31 -145.85 - 39 217.083 893 1 1 -1.44246 143.093 -174.45 - 39 88.7011 892 1 1 -1.45 143.102 -174.627 - 39 108.009 1615 1 0 -1.50374 143.151 -175.85 - 39 267.963 885 0 1 -2.86625 144.242 -204.45 - 39 131.026 1620 0 0 -2.92365 144.258 -205.85 - 39 218.704 884 6 1 -3.05023 142.306 -24.8278 - 39 164.203 886 6 1 -2.79666 141.573 -24.45 - 39 328.042 886 4 1 -2.77016 141.24 -84.45 - 39 202.709 885 3 1 -2.92578 141.075 -114.45 - 39 205.881 1604 3 0 -2.92888 141.074 -115.85 - 39 262.374 885 2 1 -2.98158 141.072 -144.45 - 39 228.178 1604 2 0 -2.98309 141.079 -145.85 - 39 136.68 885 1 1 -3.01248 141.228 -174.45 - 39 116.318 1605 1 0 -3.0134 141.231 -175.85 - 39 126.076 1605 0 0 -2.99293 141.313 -205.85 - 39 251.372 884 2 1 -3.05 140.983 -144.654 - 39 313.465 886 3 1 -2.83321 141.209 -114.45 - 39 140.307 1605 3 0 -2.81632 141.237 -115.85 - 39 117.972 888 2 1 -2.40802 141.739 -144.45 - 39 125.301 1608 2 0 -2.3597 141.777 -145.85 - 39 155.83 1611 1 0 -1.27291 142.476 -175.85 - 39 168.794 896 0 1 -0.832946 142.81 -204.45 - 39 121.719 1613 0 0 -0.819408 142.823 -205.85 - 39 43.9304 894 0 1 -1.11473 142.625 -204.45 - 39 127.472 1615 0 0 -0.438253 143.207 -205.85 - 39 41.2571 1612 0 0 -0.285749 142.732 -205.85 - 39 127.279 895 2 1 -0.994107 140.307 -144.45 - 39 146.45 1600 2 0 -0.869766 140.232 -145.85 - 39 115.422 911 1 1 2.27598 138.917 -174.45 - 39 112.283 1593 1 0 2.37951 138.861 -175.85 - 39 43.1545 921 0 1 4.43106 137.782 -204.45 - 39 94.0415 922 0 1 4.45 137.761 -204.642 - 39 116.829 1587 0 0 4.58766 137.618 -205.85 - 39 106.084 887 3 1 -2.61826 141.307 -114.45 - 39 8.90504 888 3 1 -2.45 141.327 -114.819 - 39 53.6476 1607 3 0 -1.70324 141.73 -115.85 - 39 103.907 1608 3 0 -1.68591 141.75 -115.9 -Number of digits in this event = 35 -Using G4ParticleGun ... -4.26988 LIN -gamma -Event: 40 -Number of tracker hits in this event = 108 - 40 238.052 1336 8 1 87.2895 56.1046 35.55 - 40 230.644 1180 8 0 87.2807 56.1065 34.15 - 40 96.6356 1335 7 1 87.08 56.1858 5.55 - 40 281.752 1180 7 0 87.0304 56.1937 4.15 - 40 112.623 1330 6 1 86.0705 56.4456 -24.45 - 40 113.106 1182 6 0 86.0975 56.4605 -25.85 - 40 99.1203 1332 5 1 86.5201 56.8433 -54.45 - 40 311.2 1184 5 0 86.532 56.8653 -55.85 - 40 257.446 1333 4 1 86.6748 57.498 -84.45 - 40 303.128 1187 4 0 86.6735 57.5609 -85.85 - 40 146.728 1333 3 1 86.6658 58.8894 -114.45 - 40 115.162 1194 3 0 86.6613 58.9752 -115.85 - 40 295.201 1333 2 1 86.7219 60.7121 -144.45 - 40 91.9833 1203 2 0 86.7357 60.8244 -145.85 - 40 23.6946 1204 2 0 86.7383 60.85 -146.164 - 40 91.6619 1334 1 1 86.8783 63.1016 -174.45 - 40 9.82519 1215 1 0 86.892 63.2453 -175.85 - 40 106.299 1216 1 0 86.8924 63.25 -175.896 - 40 210.745 1336 0 1 87.3197 66.147 -204.45 - 40 118.741 1231 0 0 87.3713 66.3348 -205.85 - 40 23.1299 1337 3 1 87.503 57.0744 -114.45 - 40 106.536 1336 3 1 87.45 57.0702 -114.525 - 40 243.787 1335 3 1 87.25 57.0522 -114.79 - 40 205.432 1184 3 0 86.5456 57.0372 -115.85 - 40 184.794 1171 2 1 54.3359 37.1206 -144.45 - 40 52.161 1078 2 0 54.3398 35.7653 -145.85 - 40 73.4678 1077 2 0 54.3347 35.6499 -145.974 - 40 15.0226 1076 2 0 54.2994 35.4497 -146.196 - 40 16.8092 1126 1 1 45.4165 13.9388 -174.45 - 40 163.007 1127 1 1 45.45 13.963 -174.498 - 40 17.2581 972 1 0 45.3644 14.62 -175.85 - 40 86.3039 973 1 0 45.3511 14.6501 -175.912 - 40 144.127 1185 3 0 86.4916 57.05 -115.946 - 40 109.008 1336 7 1 87.2962 56.105 5.55 - 40 106.332 1335 6 1 87.2435 56.0978 -24.45 - 40 330.282 1180 6 0 87.2357 56.0921 -25.85 - 40 121.075 1334 5 1 87.0312 56.0221 -54.45 - 40 113.64 1179 5 0 87.0161 56.0074 -55.85 - 40 438.611 1178 4 0 86.6526 55.7222 -85.85 - 40 153.556 1330 3 1 86.1542 55.5438 -114.45 - 40 124.47 1177 3 0 86.1394 55.5348 -115.85 - 40 169.616 1328 2 1 85.8415 55.2983 -144.45 - 40 115.322 1176 2 0 85.8336 55.2929 -145.85 - 40 128.945 1328 1 1 85.698 55.1448 -174.45 - 40 167.344 1175 1 0 85.692 55.1336 -175.85 - 40 131.864 1327 0 1 85.5615 54.9026 -204.45 - 40 150.587 1174 0 0 85.548 54.8882 -205.85 - 40 60.1934 1332 4 1 86.65 55.7144 -84.7074 - 40 144.478 1177 4 0 85.6929 55.65 -86.1389 - 40 4.8904 949 4 0 93.4462 9.85688 -86.25 - 40 163.31 948 4 0 93.4531 9.84997 -86.2287 - 40 28.4225 947 4 0 93.8143 9.65 -85.9365 - 40 105.738 1367 4 1 93.6706 9.42819 -84.8496 - 40 211.564 1366 4 1 93.55 9.32981 -84.6824 - 40 262.224 1365 4 1 93.35 8.9461 -84.5292 - 40 34.3499 1364 4 1 93.15 8.7984 -84.6362 - 40 228.762 1180 3 0 87.0965 56.0909 -115.85 - 40 139.623 1334 2 1 87.0497 56.0694 -144.45 - 40 141.326 1180 2 0 87.05 56.0635 -145.85 - 40 141.287 1335 1 1 87.0934 55.8404 -174.45 - 40 109.39 1178 1 0 87.0854 55.8311 -175.85 - 40 104.997 1334 0 1 86.9133 55.6423 -204.45 - 40 234.291 1177 0 0 86.9111 55.6301 -205.85 - 40 49.423 1383 2 0 -24.7692 96.8353 -146.25 - 40 73.078 770 2 1 -25.9419 97.2666 -144.85 - 40 65.7481 771 2 1 -25.8498 97.2183 -144.78 - 40 70.908 1389 2 0 -26.1996 97.9795 -145.85 - 40 46.8811 766 2 1 -26.8201 97.8638 -144.85 - 40 44.4838 765 2 1 -26.85 97.8633 -144.848 - 40 30.67 779 2 1 -24.25 96.8546 -144.84 - 40 99.7138 1332 2 1 86.596 56.3879 -144.45 - 40 205.797 1181 2 0 86.5795 56.4313 -145.85 - 40 121.516 1331 1 1 86.3572 57.2731 -174.45 - 40 96.5184 1186 1 0 86.3302 57.3175 -175.85 - 40 470.064 1328 0 1 85.8039 58.258 -204.45 - 40 249.741 1191 0 0 85.7839 58.2739 -205.85 - 40 314.649 1336 6 1 87.2805 56.0681 -24.45 - 40 144.861 1340 5 1 88.0858 56.8508 -54.45 - 40 102.327 1340 4 1 88.1068 57.4942 -84.45 - 40 110.968 1338 3 1 87.6683 57.8804 -114.45 - 40 106.603 1189 3 0 87.6301 57.901 -115.85 - 40 120.561 1191 2 0 86.7279 58.3853 -145.85 - 40 154.17 1329 1 1 85.9297 59.0841 -174.45 - 40 109.875 1195 1 0 85.9005 59.1342 -175.85 - 40 97.9737 1325 0 1 85.147 60.0469 -204.45 - 40 140.901 1199 0 0 85.0836 60.0311 -205.85 - 40 103.324 1335 5 1 87.2234 57.4958 -54.45 - 40 106.671 1185 5 0 87.2893 57.2112 -55.8501 - 40 131.061 1305 4 1 81.2348 55.7419 -84.45 - 40 163.8 1274 3 1 74.9852 56.9835 -114.45 - 40 124.365 1183 3 0 74.7499 56.7898 -115.85 - 40 51.9068 1243 2 1 68.7687 49.1371 -144.45 - 40 91.8758 1244 2 1 68.85 49.0073 -144.604 - 40 52.7555 1139 2 0 69.5194 47.9784 -145.85 - 40 103.638 1138 2 0 69.5918 47.85 -145.994 - 40 111.473 1312 1 1 82.4887 28.9768 -174.45 - 40 48.9553 1311 1 1 82.4496 29.0239 -174.502 - 40 115.364 1049 1 0 83.1085 29.9101 -175.85 - 40 14.901 1318 0 1 83.8089 36.6495 -204.45 - 40 64.0872 1319 0 1 83.85 36.6373 -204.462 - 40 59.9233 1320 0 1 84.0506 36.5738 -204.517 - 40 75.6241 1321 0 1 84.2502 36.5044 -204.601 - 40 79.5888 1322 0 1 84.4507 36.4132 -204.717 - 40 109.705 1076 0 0 85.9701 35.4116 -205.85 - 40 82.6922 1075 0 0 86.2766 35.25 -206.056 - 40 219.001 1345 0 1 89.1291 74.02 -204.45 - 40 113.587 1271 0 0 89.3206 74.3534 -205.85 - 40 119.858 1269 0 0 88.9465 73.9036 -205.85 -Number of digits in this event = 48 -Using G4ParticleGun ... -1.42414 LIN -gamma -Event: 41 -Number of tracker hits in this event = 0 -Number of digits in this event = 3 -Using G4ParticleGun ... -8.55176 LIN -gamma -Event: 42 -Number of tracker hits in this event = 152 - 42 319.234 660 10 1 -47.8675 -52.3101 95.55 - 42 227.882 638 10 0 -47.8663 -52.3101 94.15 - 42 111.007 661 9 1 -47.8426 -52.3096 65.55 - 42 245.715 638 9 0 -47.8409 -52.3085 64.15 - 42 223.777 661 8 1 -47.8043 -52.2917 35.55 - 42 145.237 638 8 0 -47.803 -52.2904 34.15 - 42 114.051 661 7 1 -47.7793 -52.2662 5.55 - 42 96.5246 638 7 0 -47.7782 -52.2652 4.15 - 42 130.204 661 6 1 -47.7589 -52.2404 -24.45 - 42 109.568 639 6 0 -47.7585 -52.2379 -25.85 - 42 628.642 661 5 1 -47.7597 -52.1907 -54.45 - 42 200.2 639 5 0 -47.7601 -52.1884 -55.85 - 42 127.074 661 4 1 -47.7698 -52.1451 -84.45 - 42 134.46 639 4 0 -47.768 -52.1414 -85.85 - 42 630.649 661 3 1 -47.7246 -52.068 -114.45 - 42 496.866 639 3 0 -47.7187 -52.0605 -115.85 - 42 368.947 662 2 1 -47.5931 -51.9118 -144.45 - 42 893.348 640 2 0 -47.5962 -51.9035 -145.85 - 42 457.657 662 1 1 -47.6468 -51.6978 -174.45 - 42 149.004 661 1 1 -47.65 -51.6997 -174.81 - 42 350.41 641 1 0 -47.6596 -51.705 -175.85 - 42 132.015 660 0 1 -47.9391 -51.8515 -204.45 - 42 452.166 640 0 0 -47.9517 -51.8563 -205.85 - 42 52.3853 495 2 0 -57.3727 -80.9539 -146.25 - 42 141.964 494 2 0 -57.3332 -81.05 -146.141 - 42 63.956 493 2 0 -57.3383 -81.25 -146.008 - 42 129.751 492 2 0 -57.2172 -81.45 -145.991 - 42 72.1317 491 2 0 -56.9073 -81.65 -145.932 - 42 44.4701 625 2 1 -54.9433 -82.1387 -144.85 - 42 98.4697 626 2 1 -54.85 -82.1233 -144.768 - 42 79.6086 627 2 1 -54.65 -82.061 -144.661 - 42 219.939 628 2 1 -54.45 -82.1414 -144.696 - 42 38.436 629 2 1 -54.2499 -82.1055 -144.585 - 42 225.049 640 1 0 -47.5259 -51.8872 -175.85 - 42 110.832 662 0 1 -47.4913 -51.923 -204.45 - 42 187.919 641 0 0 -47.4758 -51.8498 -206.119 - 42 114.024 663 0 1 -47.3017 -51.7025 -204.45 - 42 30.967 363 0 0 -50.6194 -107.35 -206.211 - 42 191.033 362 0 0 -50.6339 -107.55 -206.088 - 42 101.978 649 0 1 -50.2121 -107.776 -204.85 - 42 387.269 650 0 1 -50.05 -107.725 -204.724 - 42 102.404 361 0 0 -50.5306 -107.75 -205.938 - 42 478.855 639 2 0 -47.4547 -52.05 -145.915 - 42 282.478 661 2 1 -47.764 -52.0235 -144.45 - 42 170.749 661 0 1 -47.6849 -51.8572 -204.45 - 42 212.723 734 1 0 -24.6506 -33.0541 -176.25 - 42 15.7527 735 1 0 -24.6465 -33.05 -176.239 - 42 21.2603 776 1 1 -24.8365 -32.6101 -174.85 - 42 69.8907 775 1 1 -24.85 -32.5894 -174.836 - 42 93.4221 737 1 0 -24.8099 -32.4844 -175.85 - 42 106.279 657 2 1 -48.476 -52.2472 -144.45 - 42 167.515 652 1 1 -49.5321 -52.104 -174.45 - 42 180.667 639 1 0 -49.619 -52.1076 -175.85 - 42 125.346 643 0 1 -51.3431 -52.2191 -204.45 - 42 121.159 638 0 0 -51.4515 -52.2579 -205.85 - 42 45.1877 635 3 0 -47.3211 -52.9805 -115.85 - 42 160.124 634 3 0 -47.3271 -53.05 -115.858 - 42 48.5285 1468 1 0 -78.9567 113.75 -176.2 - 42 225.581 630 2 0 -47.803 -53.8775 -145.85 - 42 77.851 665 1 1 -46.9328 -56.1988 -174.45 - 42 36.1125 702 2 0 -95.4231 -39.4764 -146.25 - 42 127.745 703 2 0 -95.4919 -39.4499 -146.191 - 42 86.2664 418 2 1 -96.3768 -39.5555 -144.85 - 42 85.1391 417 2 1 -96.5501 -39.5315 -144.62 - 42 74.9702 416 2 1 -96.7501 -39.4442 -144.498 - 42 74.5473 415 2 1 -96.95 -39.3535 -144.51 - 42 77.6877 414 2 1 -97.15 -39.1659 -144.495 - 42 75.0345 413 2 1 -97.3503 -39.0613 -144.463 - 42 65.434 412 2 1 -97.55 -39.0495 -144.528 - 42 255.424 411 2 1 -97.75 -39.0859 -144.548 - 42 28.1585 410 2 1 -97.95 -39.0542 -144.476 - 42 90.0776 638 3 0 -47.9063 -52.25 -115.892 - 42 111.772 647 2 1 -50.6297 -55.6855 -144.45 - 42 116.43 619 2 0 -50.62 -56.1509 -145.85 - 42 30.9213 618 2 0 -50.6068 -56.2502 -146.163 - 42 198.163 654 1 1 -49.2297 -65.0518 -174.45 - 42 108.946 655 1 1 -49.05 -65.0032 -174.663 - 42 162.119 576 1 0 -47.9712 -64.7631 -175.85 - 42 18.9047 789 0 1 -22.1075 -59.8284 -204.45 - 42 87.626 790 0 1 -22.0498 -59.8285 -204.499 - 42 75.0505 791 0 1 -21.85 -59.8283 -204.672 - 42 1.5421 792 0 1 -21.65 -59.8282 -204.844 - 42 216.822 600 0 0 -20.3379 -59.883 -205.85 - 42 91.5111 601 0 0 -20.1409 -59.85 -205.995 - 42 178.604 657 4 1 -48.5599 -52.4367 -84.45 - 42 140.881 638 4 0 -48.4981 -52.4414 -85.85 - 42 174.985 668 3 1 -46.2726 -52.108 -114.45 - 42 126.509 640 3 0 -46.2262 -52.0361 -115.85 - 42 160.478 670 2 1 -45.9733 -59.3147 -144.45 - 42 32.0333 599 2 0 -46.0429 -60.1657 -145.85 - 42 93.8092 598 2 0 -46.0525 -60.25 -145.984 - 42 36.3211 653 1 1 -49.3044 -77.2175 -174.45 - 42 124.627 510 1 0 -47.8338 -77.9135 -175.85 - 42 47.9062 509 1 0 -47.5235 -78.05 -176.158 - 42 126.323 823 0 1 -15.3169 -90.6462 -204.45 - 42 5.47522 445 0 0 -15.2396 -91.1388 -205.85 - 42 181.119 444 0 0 -15.239 -91.1501 -205.879 - 42 74.252 641 4 0 -49.1352 -51.7188 -85.85 - 42 71.2893 642 4 0 -49.1854 -51.6497 -85.9647 - 42 158.242 673 3 1 -45.45 -59.8571 -114.568 - 42 57.4387 244 2 0 27.1331 -131.15 -146.07 - 42 173.734 243 2 0 27.2783 -131.35 -146.104 - 42 35.657 292 2 0 -33.7998 -121.67 -146.25 - 42 87.2305 398 2 0 -31.4813 -100.531 -146.25 - 42 65.4993 660 5 1 -47.85 -52.1983 -54.5805 - 42 54.1085 659 5 1 -48.05 -52.1537 -54.7499 - 42 228.862 641 5 0 -48.9529 -51.7976 -55.85 - 42 98.51 637 5 0 -47.6072 -52.5978 -55.85 - 42 60.4402 636 5 0 -47.5879 -52.65 -56.0428 - 42 118.012 676 4 1 -44.7778 -60.2208 -84.45 - 42 109.689 597 4 0 -44.6317 -60.4574 -85.85 - 42 182.176 689 3 1 -42.1097 -63.9521 -114.45 - 42 114.934 579 3 0 -42.1552 -64.1877 -115.85 - 42 2.97841 578 3 0 -42.169 -64.25 -116.234 - 42 114.21 684 2 1 -43.2016 -68.8392 -144.45 - 42 65.9574 554 2 0 -43.1471 -69.1957 -145.85 - 42 152.082 553 2 0 -43.1391 -69.25 -146.065 - 42 116.719 688 1 1 -42.3044 -76.4218 -174.45 - 42 146.496 516 1 0 -42.2829 -76.6911 -175.85 - 42 152.681 691 0 1 -41.833 -82.1512 -204.45 - 42 145.573 487 0 0 -41.716 -82.5163 -205.85 - 42 473.515 660 9 1 -47.85 -52.3138 65.3358 - 42 125.87 637 8 0 -47.7753 -52.6278 34.15 - 42 173.514 660 7 1 -47.8797 -53.2692 5.55 - 42 212.149 633 7 0 -47.8825 -53.2996 4.15 - 42 109.75 660 6 1 -48.0333 -53.9538 -24.45 - 42 165.081 630 6 0 -48.0217 -53.9765 -25.85 - 42 126.386 627 5 0 -47.7931 -54.5662 -55.85 - 42 183.945 664 4 1 -47.194 -55.2974 -84.45 - 42 112.767 623 4 0 -47.1714 -55.3441 -85.85 - 42 139.501 666 3 1 -46.7128 -56.233 -114.45 - 42 126.712 618 3 0 -46.682 -56.2832 -115.85 - 42 128.153 669 2 1 -46.0995 -57.3518 -144.45 - 42 140.425 613 2 0 -46.0866 -57.3871 -145.85 - 42 137.016 671 1 1 -45.8422 -58.1745 -174.45 - 42 105.395 609 1 0 -45.841 -58.2045 -175.85 - 42 128.492 671 0 1 -45.8299 -58.8567 -204.45 - 42 182.025 605 0 0 -45.8158 -58.8708 -205.85 - 42 123.605 751 8 0 45.0904 -29.845 33.75 - 42 87.1409 667 3 1 -46.65 -56.2259 -114.498 - 42 44.2094 620 3 0 -45.4079 -55.9007 -115.85 - 42 160.945 621 3 0 -45.2875 -55.85 -115.976 - 42 67.2891 622 3 0 -45.0505 -55.65 -116.139 - 42 38.108 837 3 0 -64.932 -12.4972 -116.25 - 42 138.656 838 3 0 -65.0015 -12.45 -116.205 - 42 59.4224 839 3 0 -65.2375 -12.2499 -115.879 - 42 262.987 573 3 1 -65.3306 -11.315 -114.85 - 42 121.975 574 3 1 -65.2495 -11.1272 -114.687 - 42 26.7792 831 3 0 -64.8663 -13.7774 -115.85 - 42 82.7496 830 3 0 -64.8415 -13.85 -115.904 - 42 154.744 829 3 0 -64.8721 -14.05 -116.062 - 42 101.83 982 3 0 -54.6807 16.468 -116.25 -Number of digits in this event = 79 -Using G4ParticleGun ... -2.94248 LIN -gamma -Event: 43 -Number of tracker hits in this event = 1 - 43 59.483 1073 1 0 -29.2275 34.6992 -175.85 -Number of digits in this event = 1 -Using G4ParticleGun ... -3.62429 LIN -gamma -Event: 44 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -1.64214 LIN -gamma -Event: 45 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 -Using G4ParticleGun ... -6.43426 LIN -gamma -Event: 46 -Number of tracker hits in this event = 75 - 46 231.859 694 10 1 -41.1886 20.3107 95.55 - 46 335.92 1001 10 0 -41.1723 20.3043 94.15 - 46 131.599 695 9 1 -40.983 20.0994 65.55 - 46 120.004 1000 9 0 -40.9732 20.0886 64.15 - 46 127.501 696 8 1 -40.8053 19.8553 35.55 - 46 125.945 998 8 0 -40.8023 19.8424 34.15 - 46 158.147 697 7 1 -40.648 19.6494 5.55 - 46 137.061 997 7 0 -40.5646 19.6292 4.15 - 46 152.379 707 6 1 -38.4929 19.2888 -24.4501 - 46 118.396 996 6 0 -38.4039 19.2566 -25.85 - 46 116.005 995 6 0 -38.386 19.25 -26.1701 - 46 138.416 715 5 1 -36.9615 18.4756 -54.45 - 46 110.061 992 5 0 -37.0776 18.4814 -55.85 - 46 104.212 702 4 1 -39.5718 18.4227 -84.45 - 46 177.961 991 4 0 -39.7078 18.4199 -85.85 - 46 217.714 686 3 1 -42.7396 18.2948 -114.45 - 46 148.315 991 3 0 -42.8593 18.2804 -115.85 - 46 110.73 672 2 1 -45.4971 17.9895 -144.45 - 46 123.278 989 2 0 -45.6952 17.9354 -145.85 - 46 105.331 652 1 1 -49.584 16.7291 -174.45 - 46 9.1076 651 1 1 -49.65 16.6964 -174.812 - 46 184.471 982 1 0 -49.8475 16.6075 -175.85 - 46 128.11 624 0 1 -55.1485 14.0924 -204.45 - 46 253.132 969 0 0 -55.3715 13.9698 -205.851 - 46 29.6528 992 4 0 -39.7166 18.45 -85.9847 - 46 327.195 873 4 0 25.2115 -5.27493 -86.25 - 46 129.325 872 4 0 25.618 -5.45046 -86.1462 - 46 78.3189 871 4 0 25.9381 -5.65 -85.9993 - 46 99.9408 870 4 0 26.0603 -5.85 -85.8628 - 46 124.265 869 4 0 26.1448 -6.05007 -86.0114 - 46 345.322 994 5 0 -39.9367 18.9843 -55.85 - 46 40.3033 995 5 0 -39.8862 19.05 -56.1883 - 46 121.351 694 9 1 -41.1772 20.3062 65.55 - 46 361.796 1001 9 0 -41.1775 20.306 64.15 - 46 103.237 694 8 1 -41.1833 20.3007 35.55 - 46 213.772 1001 8 0 -41.1848 20.3009 34.15 - 46 135.74 694 7 1 -41.2081 20.3031 5.55 - 46 114.41 1001 7 0 -41.2093 20.3024 4.15 - 46 339.51 694 6 1 -41.2308 20.2833 -24.45 - 46 223.706 1001 6 0 -41.231 20.2822 -25.85 - 46 194.404 694 5 1 -41.2329 20.2598 -54.45 - 46 208.751 1001 5 0 -41.2329 20.2592 -55.85 - 46 116.21 694 4 1 -41.2303 20.2428 -84.45 - 46 135.776 1000 4 0 -41.2323 20.242 -85.85 - 46 117.963 693 3 1 -41.2757 20.2299 -114.45 - 46 122.519 1000 3 0 -41.2783 20.2283 -115.85 - 46 110.226 693 2 1 -41.3288 20.1966 -144.45 - 46 137.368 1000 2 0 -41.3318 20.1936 -145.85 - 46 208.853 693 1 1 -41.3889 20.1308 -174.45 - 46 123.815 1000 1 0 -41.3922 20.1289 -175.85 - 46 117.029 692 0 1 -41.4656 20.0933 -204.45 - 46 166.004 1000 0 0 -41.4701 20.0927 -205.85 - 46 207.042 693 4 1 -41.2954 20.2935 -84.45 - 46 34.8487 1001 4 0 -41.4512 20.4346 -85.8502 - 46 70.4024 1002 4 0 -41.4719 20.45 -85.9976 - 46 147.304 693 6 1 -41.25 20.3137 -24.5187 - 46 70.5233 656 5 1 -48.6639 18.919 -54.45 - 46 67.4414 655 5 1 -48.85 18.9216 -54.7088 - 46 153.922 550 4 1 -69.9419 16.3849 -84.45 - 46 18.0185 549 4 1 -70.05 16.5037 -84.8077 - 46 27.2648 983 4 0 -70.3247 16.8208 -85.85 - 46 97.8038 984 4 0 -70.3513 16.85 -85.9546 - 46 99.6593 994 6 0 -41.1677 19.0499 -26.05 - 46 15.8245 993 6 0 -41.1934 18.85 -26.2202 - 46 181.468 921 6 0 10.0206 4.36767 -26.25 - 46 148.04 922 6 0 10.1529 4.45 -26.1802 - 46 40.5714 923 6 0 10.5195 4.65 -25.9396 - 46 17.0132 957 6 1 11.6006 5.90119 -24.85 - 46 124.149 958 6 1 11.65 5.95516 -24.8123 - 46 360.185 959 6 1 11.85 6.27319 -24.7883 - 46 22.2662 934 6 0 13.3257 7.01272 -25.85 - 46 33.7571 935 6 0 13.386 7.0509 -25.867 - 46 136.186 974 6 1 14.8873 9.72245 -24.85 - 46 97.1161 973 6 1 14.85 9.78368 -24.6154 - 46 171.072 972 6 1 14.6496 9.79775 -24.6571 -Number of digits in this event = 47 -Using G4ParticleGun ... -3.51215 LIN -gamma -Event: 47 -Number of tracker hits in this event = 2 - 47 99.6384 737 3 0 -136.837 -32.45 -116.009 - 47 76.5378 730 5 0 177.994 -33.85 -56.0628 -Number of digits in this event = 3 -Using G4ParticleGun ... -9.24039 LIN -gamma -Event: 48 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 -Using G4ParticleGun ... -7.53267 LIN -gamma -Event: 49 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 -Using G4ParticleGun ... -7.19228 LIN -gamma -Event: 50 -Number of tracker hits in this event = 11 - 50 265.775 840 1 1 -11.9336 -123.412 -174.45 - 50 263.059 283 1 0 -11.9328 -123.419 -175.85 - 50 241.641 840 0 1 -11.9058 -123.577 -204.45 - 50 140.375 282 0 0 -11.9048 -123.585 -205.85 - 50 105.705 283 0 0 -11.9159 -123.415 -205.85 - 50 10.4463 147 4 0 -62.5385 -150.564 -86.2498 - 50 276.303 148 4 0 -62.5343 -150.55 -86.2312 - 50 103.07 587 4 1 -62.5833 -150.606 -84.85 - 50 6.00718 1425 1 1 105.15 -107.751 -174.506 - 50 29.0146 320 1 0 104.661 -115.95 -176.164 - 50 54.3816 101 10 0 89.881 -159.767 93.75 -Number of digits in this event = 7 -Using G4ParticleGun ... -7.39378 LIN -gamma -Event: 51 -Number of tracker hits in this event = 33 - 51 279.202 1339 6 1 87.9705 -69.0612 -24.45 - 51 306.71 554 6 0 87.9711 -69.0643 -25.85 - 51 283.939 1339 5 1 87.9914 -69.1339 -54.45 - 51 199.395 554 5 0 87.9934 -69.1358 -55.85 - 51 134.813 1340 4 1 88.0557 -69.1652 -84.45 - 51 103.822 554 4 0 88.0642 -69.1688 -85.85 - 51 118.408 1340 3 1 88.2378 -69.2339 -114.45 - 51 180.407 554 3 0 88.2473 -69.2368 -115.85 - 51 104.054 1342 2 1 88.4685 -69.3323 -144.45 - 51 103.367 553 2 0 88.4716 -69.3385 -145.85 - 51 147.565 1342 1 1 88.5053 -69.4728 -174.45 - 51 108.943 552 1 0 88.5049 -69.484 -175.85 - 51 127.434 1342 0 1 88.4785 -69.7119 -204.45 - 51 127.57 551 0 0 88.4731 -69.7205 -205.85 - 51 154.222 1339 4 1 88.0496 -69.1589 -84.8059 - 51 124.985 555 5 0 87.9004 -69.0423 -55.85 - 51 120.126 1338 4 1 87.8013 -69.0095 -84.45 - 51 134.447 555 4 0 87.796 -69.0075 -85.85 - 51 111.247 1338 3 1 87.6798 -68.9762 -114.45 - 51 143.826 555 3 0 87.6745 -68.9751 -115.85 - 51 107.912 1337 2 1 87.5698 -68.9499 -144.45 - 51 155.884 555 2 0 87.5641 -68.9494 -145.85 - 51 35.7321 1337 1 1 87.4506 -68.9382 -174.45 - 51 86.9817 1336 1 1 87.45 -68.9382 -174.581 - 51 123.301 555 1 0 87.4445 -68.9373 -175.85 - 51 225.036 1336 0 1 87.3189 -68.9176 -204.45 - 51 206.709 555 0 0 87.3102 -68.9174 -205.85 - 51 158.436 1568 1 1 133.75 -66.3504 -174.603 - 51 87.599 1569 1 1 133.95 -66.2153 -174.457 - 51 75.0909 314 3 1 -117.15 -81.22 -114.803 - 51 113.585 1347 3 1 89.4513 -73.4978 -114.85 - 51 186.125 413 0 0 135.729 -97.4871 -206.25 - 51 241.25 412 0 0 135.923 -97.55 -206.146 +Number of tracker hits in this event = 36 + 37 423.961 984 4 1 16.9919 82.7675 -84.45 + 37 297.38 1313 4 0 16.9939 82.7678 -85.85 + 37 374.948 984 3 1 17.0384 82.7678 -114.45 + 37 736.69 1313 3 0 17.0388 82.7681 -115.85 + 37 478.346 985 2 1 17.0506 82.7707 -144.45 + 37 378.717 1313 2 0 17.051 82.7714 -145.85 + 37 207.805 985 1 1 17.0609 82.7898 -174.45 + 37 263.516 1313 1 0 17.0616 82.7922 -175.85 + 37 118.165 985 0 1 17.0733 82.8226 -204.45 + 37 127.554 1313 0 0 17.0747 82.8219 -205.85 + 37 1.85645 1147 10 0 -38.6523 49.5123 93.75 + 37 181.616 1136 2 0 -10.6377 47.3223 -146.25 + 37 166.12 857 8 0 -38.7001 -8.46283 33.75 + 37 162.637 986 0 1 17.3619 82.8617 -204.45 + 37 131.605 1314 0 0 17.3678 82.8633 -205.85 + 37 245.792 1347 0 0 79.2943 89.5597 -206.25 + 37 5.84288 1348 0 0 79.5782 89.65 -205.992 + 37 17.4621 906 0 0 9.12018 1.45 -206.03 + 37 177.147 1314 2 0 17.1589 82.8969 -145.85 + 37 158.366 991 1 1 18.278 81.8468 -174.45 + 37 92.8272 1308 1 0 18.3429 81.8197 -175.85 + 37 201.809 999 0 1 19.8734 81.1195 -204.45 + 37 133.508 1305 0 0 19.9789 81.0832 -205.85 + 37 170.228 1479 1 1 116.106 -103.288 -174.45 + 37 334.553 993 2 1 18.7796 81.9638 -144.45 + 37 115.734 994 2 1 18.85 81.8425 -144.6 + 37 64.1867 1303 2 0 19.3883 80.8073 -145.85 + 37 72.4198 1302 2 0 19.4615 80.6499 -146.033 + 37 139.558 1047 1 1 29.4605 54.3208 -174.45 + 37 114.684 1168 1 0 29.6054 53.7962 -175.85 + 37 32.1307 1167 1 0 29.6299 53.6499 -176.181 + 37 54.6957 1054 0 1 30.977 38.9705 -204.45 + 37 115.944 1055 0 1 31.05 38.9039 -204.607 + 37 0.495 1091 0 0 31.1898 38.2512 -205.85 + 37 123.748 1090 0 0 31.19 38.25 -205.852 + 37 10.7266 1089 0 0 31.2304 38.05 -206.214 Number of digits in this event = 25 Using G4ParticleGun ... -3.82005 LIN +7.54392 LIN gamma -Event: 52 -Number of tracker hits in this event = 6 - 52 81.8191 1482 0 0 -156.52 116.58 -206.25 - 52 242.047 1481 0 0 -156.975 116.55 -205.994 - 52 15.3546 1231 4 0 -160.52 66.3421 -86.25 - 52 294.848 95 4 1 -161.055 66.1672 -84.8499 - 52 78.6092 285 7 1 -123.078 114.251 5.15 - 52 0.118301 1493 9 0 -21.3369 118.915 63.75 -Number of digits in this event = 5 +Event: 38 +Number of tracker hits in this event = 61 + 38 209.94 960 8 1 12.2251 3.34887 35.55 + 38 226.142 916 8 0 12.2342 3.3589 34.15 + 38 185.464 961 7 1 12.4372 3.53703 5.55 + 38 126.506 917 7 0 12.4598 3.5507 4.15 + 38 114.75 964 6 1 12.9218 3.77931 -24.45 + 38 233.883 918 6 0 12.934 3.78814 -25.85 + 38 117.863 965 5 1 13.2347 3.99007 -54.45 + 38 133.362 919 5 0 13.2469 3.97972 -55.85 + 38 99.2586 966 4 1 13.4222 3.72213 -84.45 + 38 148.888 918 4 0 13.4345 3.70475 -85.85 + 38 107.936 968 3 1 13.7414 3.24012 -114.45 + 38 116.981 915 3 0 13.755 3.19751 -115.85 + 38 119.67 970 2 1 14.0811 2.33519 -144.45 + 38 121.373 911 2 0 14.0868 2.30772 -145.85 + 38 124.113 971 1 1 14.2867 1.7673 -174.45 + 38 174.618 908 1 0 14.2962 1.76525 -175.85 + 38 110.478 972 0 1 14.4944 1.67141 -204.45 + 38 101.466 908 0 0 14.5116 1.66568 -205.85 + 38 113.232 973 0 1 14.6975 3.3119 -204.45 + 38 109.657 914 0 0 14.8173 2.98266 -205.85 + 38 107.904 960 7 1 12.2282 3.35566 5.55 + 38 148.742 916 7 0 12.2288 3.35622 4.15 + 38 135.828 960 6 1 12.2381 3.36909 -24.45 + 38 92.2846 916 6 0 12.239 3.36958 -25.85 + 38 149.236 961 5 1 12.2624 3.38138 -54.45 + 38 130.753 916 5 0 12.2638 3.38195 -55.85 + 38 307.12 961 4 1 12.2888 3.38793 -84.45 + 38 125.523 916 4 0 12.2881 3.38916 -85.85 + 38 188.001 961 3 1 12.275 3.41526 -114.45 + 38 143.157 916 3 0 12.2747 3.41675 -115.85 + 38 128.221 961 2 1 12.2708 3.44704 -144.45 + 38 118.317 916 2 0 12.2717 3.44773 -145.85 + 38 110.552 961 1 1 12.2799 3.4434 -174.45 + 38 95.7114 916 1 0 12.282 3.44352 -175.85 + 38 107.547 961 0 1 12.3278 3.43965 -204.45 + 38 286.837 916 0 0 12.3248 3.42788 -205.85 + 38 247.697 917 4 0 12.354 3.50181 -85.85 + 38 153.202 972 3 1 14.5722 5.16107 -114.45 + 38 18.618 925 3 0 14.5861 5.24566 -115.85 + 38 82.606 926 3 0 14.5866 5.25 -115.923 + 38 122.244 975 2 1 15.2066 6.99046 -144.45 + 38 97.4481 934 2 0 15.29 6.94072 -145.85 + 38 1.70577 986 1 1 17.4477 5.76562 -174.45 + 38 113.286 987 1 1 17.45 5.7642 -174.462 + 38 256.473 927 1 0 17.7288 5.58934 -175.85 + 38 109.833 1016 0 1 23.3665 1.59568 -204.45 + 38 117.944 906 0 0 23.6414 1.32376 -205.85 + 38 4.3017 905 0 0 23.7185 1.25 -206.236 + 38 49.4805 960 4 1 12.25 3.42598 -84.7431 + 38 5.96365 958 3 1 11.6599 5.91245 -114.45 + 38 105.572 957 3 1 11.65 5.92142 -114.476 + 38 112.828 931 3 0 11.1751 6.29944 -115.85 + 38 110.883 988 3 0 1.74944 17.7535 -116.25 + 38 17.3889 989 3 0 1.69819 17.8501 -116.062 + 38 412.57 909 3 1 2.00321 16.983 -114.85 + 38 156.427 910 3 1 2.05 16.2147 -114.669 + 38 154.251 911 3 1 2.25024 16.4009 -114.716 + 38 131.785 900 0 0 6.3872 0.221694 -206.249 + 38 60.2042 928 0 1 5.74106 0.130215 -204.849 + 38 97.0935 927 0 1 5.64988 0.108129 -204.692 + 38 15.1687 926 0 1 5.44976 0.0601985 -204.494 +Number of digits in this event = 30 Using G4ParticleGun ... -7.65588 LIN +4.2889 LIN gamma -Event: 53 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Event: 39 +Number of tracker hits in this event = 4 + 39 27.2757 329 2 0 99.7369 -114.264 -146.25 + 39 289.721 328 2 0 99.7476 -114.35 -146.22 + 39 158.671 987 2 1 17.65 -24.3354 -144.774 + 39 84.4523 988 2 1 17.65 -24.4635 -144.54 +Number of digits in this event = 4 Using G4ParticleGun ... -7.12057 LIN +6.26687 LIN gamma -Event: 54 -Number of tracker hits in this event = 22 - 54 228.665 976 3 1 15.337 77.7657 -114.45 - 54 273.325 1288 3 0 15.3357 77.7655 -115.85 - 54 254.133 976 2 1 15.3135 77.7652 -144.45 - 54 229.14 1288 2 0 15.3121 77.7613 -145.85 - 54 115.06 976 1 1 15.2651 77.6834 -174.45 - 54 295.68 1288 1 0 15.26 77.6844 -175.85 - 54 444.96 975 0 1 15.1692 77.708 -204.45 - 54 360.555 1288 0 0 15.1659 77.7115 -205.85 - 54 133.964 1024 5 0 -40.7658 24.9911 -56.25 - 54 56.6878 707 5 1 -38.5719 24.1592 -54.4501 - 54 282.6 706 5 1 -38.6501 24.0495 -54.5425 - 54 195.257 697 5 1 -40.5194 24.2994 -54.8497 - 54 39.2674 528 13 0 74.6094 -74.345 183.75 - 54 57.9596 529 13 0 74.5221 -74.2497 183.817 - 54 11.3129 1041 1 1 28.45 123.603 -174.452 - 54 258.338 975 1 1 15.25 77.6145 -174.474 - 54 155.988 1287 1 0 15.5957 77.6347 -175.85 - 54 129.928 1452 1 0 -11.5208 110.594 -176.25 - 54 208.63 843 1 1 -11.3904 110.311 -174.85 - 54 277.279 1448 1 0 -11.4516 109.751 -175.85 - 54 109.785 1447 1 0 -11.4515 109.75 -175.854 - 54 143.796 395 13 1 -100.968 149.117 185.15 +Event: 40 +Number of tracker hits in this event = 66 + 40 302.47 1353 7 1 90.9384 2.87925 5.55 + 40 267.36 914 7 0 90.9384 2.87909 4.15 + 40 304.969 1353 6 1 90.9317 2.86984 -24.45 + 40 326.864 914 6 0 90.9794 2.94258 -25.85 + 40 123.035 1358 5 1 91.8833 4.39541 -54.45 + 40 106.592 922 5 0 91.9436 4.46723 -55.8502 + 40 146.038 1365 4 1 93.1574 6.1466 -84.4502 + 40 89.1068 930 4 0 93.1642 6.22954 -85.85 + 40 17.6814 931 4 0 93.1647 6.25001 -86.2005 + 40 219.1 1364 3 1 93.1415 7.89968 -114.45 + 40 177.946 939 3 0 93.1464 7.97686 -115.85 + 40 136.785 1364 2 1 93.0566 9.98253 -144.45 + 40 89.2657 949 2 0 93.1407 10.0126 -145.85 + 40 124.345 1372 1 1 94.6685 10.6695 -174.45 + 40 117.93 953 1 0 94.7709 10.6725 -175.85 + 40 21.6677 1381 0 1 96.5425 10.815 -204.45 + 40 104.555 1382 0 1 96.55 10.8154 -204.552 + 40 107.515 953 0 0 96.6581 10.8314 -205.85 + 40 51.0734 942 0 0 95.1188 8.56856 -205.85 + 40 385.923 938 3 0 93.0951 7.85 -115.996 + 40 397.447 937 3 0 93.0741 7.64971 -115.949 + 40 114.562 1363 3 1 92.95 8.13797 -114.616 + 40 51.0247 1364 4 1 93.15 6.18347 -84.7741 + 40 18.407 936 4 0 90.6107 7.40067 -85.8505 + 40 17.6746 1342 4 1 88.4897 9.56118 -84.8499 + 40 326.863 1341 4 1 88.45 9.60823 -84.833 + 40 85.998 953 4 0 86.9525 10.7964 -85.8502 + 40 2.85466 952 4 0 86.855 10.65 -85.8513 + 40 150.489 1338 4 1 87.7753 6.89295 -84.8499 + 40 274.119 1337 4 1 87.6497 6.719 -84.6921 + 40 265.55 1092 2 1 38.5668 57.6069 -144.85 + 40 128.936 1109 1 0 81.3349 41.999 -176.25 + 40 106.962 1353 5 1 90.882 2.85505 -54.45 + 40 100.909 914 5 0 90.8814 2.85549 -55.85 + 40 338.027 1353 4 1 90.8644 2.84831 -84.45 + 40 318.061 913 4 0 90.864 2.84775 -85.85 + 40 153.391 1353 3 1 90.8668 2.82925 -114.45 + 40 219.672 913 3 0 90.8685 2.82972 -115.85 + 40 134.846 1353 2 1 90.9064 2.84044 -144.45 + 40 112.43 913 2 0 90.9097 2.83977 -145.85 + 40 175.431 1354 1 1 90.9765 2.83174 -174.45 + 40 148.225 913 1 0 90.9797 2.83019 -175.85 + 40 138.361 1354 0 1 91.0473 2.79984 -204.45 + 40 326.977 913 0 0 91.0499 2.79844 -205.85 + 40 160.865 1651 5 0 96.5031 150.388 -56.25 + 40 142.775 1396 1 1 99.4586 -44.0939 -174.451 + 40 164.131 678 1 0 99.8738 -44.2533 -175.85 + 40 344.389 1013 1 0 -6.30109 22.7934 -176.25 + 40 73.3799 1014 1 0 -6.64368 22.85 -176.215 + 40 108.09 1354 2 1 91.1431 0.67243 -144.45 + 40 179.602 901 2 0 91.1459 0.365344 -145.85 + 40 138.676 1356 1 1 91.3762 -5.3941 -174.45 + 40 119.57 871 1 0 91.5651 -5.76579 -175.85 + 40 22.8341 870 1 0 91.6108 -5.85 -176.184 + 40 69.2749 1375 0 1 95.2624 -12.7064 -204.45 + 40 82.2052 1376 0 1 95.3503 -12.7416 -204.642 + 40 119.651 835 0 0 95.9057 -12.9531 -205.85 + 40 92.6426 900 2 0 91.1297 0.25 -146.216 + 40 194.275 840 3 0 119.111 -11.9706 -116.25 + 40 134.011 911 4 0 90.8175 2.38378 -85.85 + 40 51.6956 1227 2 1 65.4791 -12.9486 -144.45 + 40 80.8828 1226 2 1 65.4498 -13.0144 -144.583 + 40 187.545 833 2 0 65.4256 -13.2954 -145.85 + 40 65.2319 1223 2 1 64.7245 -13.0399 -144.45 + 40 95.1842 1222 2 1 64.65 -13.0065 -144.525 + 40 139.65 836 2 0 65.1972 -12.7689 -145.85 +Number of digits in this event = 39 +Using G4ParticleGun ... +3.62699 LIN +gamma +Event: 41 +Number of tracker hits in this event = 82 + 41 493.634 246 8 1 -130.876 -63.3557 35.55 + 41 238.847 583 8 0 -130.874 -63.3574 34.15 + 41 288.673 246 7 1 -130.834 -63.3889 5.55 + 41 345.841 583 7 0 -130.827 -63.389 4.15 + 41 156.84 247 6 1 -130.706 -63.3897 -24.45 + 41 225.979 583 6 0 -130.7 -63.3899 -25.85 + 41 114.692 247 5 1 -130.583 -63.3865 -54.45 + 41 126.629 583 5 0 -130.579 -63.3851 -55.85 + 41 113.435 248 4 1 -130.494 -63.3466 -84.45 + 41 116.225 583 4 0 -130.49 -63.348 -85.85 + 41 103.699 248 3 1 -130.407 -63.3956 -114.45 + 41 328.033 583 3 0 -130.405 -63.3955 -115.85 + 41 121.303 248 2 1 -130.367 -63.403 -144.45 + 41 367.903 583 2 0 -130.363 -63.4093 -145.85 + 41 229.342 249 1 1 -130.316 -63.51 -174.45 + 41 341.158 582 1 0 -130.311 -63.5139 -175.85 + 41 318.198 249 0 1 -130.217 -63.5995 -204.45 + 41 140.211 582 0 0 -130.218 -63.6056 -205.85 + 41 236.154 1406 10 0 170.462 101.35 93.7617 + 41 89.353 1405 10 0 170.984 101.35 93.9859 + 41 657.36 584 0 0 -130.134 -63.1209 -205.85 + 41 43.5394 585 0 0 -130.048 -63.05 -206.107 + 41 633.7 250 0 1 -130.15 -63.1535 -204.723 + 41 40.7427 583 0 0 -130.055 -63.25 -206.13 + 41 37.4231 251 0 1 -129.95 -63.1509 -204.491 + 41 126.852 246 6 1 -130.88 -63.278 -24.4501 + 41 284.878 245 6 1 -130.95 -63.2782 -24.472 + 41 67.1926 244 6 1 -131.15 -63.1468 -24.4957 + 41 101.965 584 6 0 -130.987 -63.109 -25.8503 + 41 68.5665 585 6 0 -131.014 -63.0499 -25.988 + 41 11.4069 582 6 0 -130.881 -63.45 -26.2085 + 41 115.88 246 5 1 -130.927 -63.5381 -54.45 + 41 137.195 582 5 0 -130.942 -63.5369 -55.85 + 41 133.014 244 4 1 -131.224 -63.5017 -84.45 + 41 192.373 582 4 0 -131.247 -63.4951 -85.85 + 41 228.285 242 3 1 -131.709 -63.373 -114.45 + 41 146.366 238 2 1 -132.437 -63.3118 -144.45 + 41 146.356 235 1 1 -133.117 -63.537 -174.45 + 41 212.501 231 0 1 -133.77 -63.7382 -204.45 + 41 144.194 581 0 0 -133.798 -63.7519 -205.85 + 41 225.387 584 3 0 -131.656 -63.25 -116.123 + 41 72.5644 247 2 1 -130.604 -60.6111 -144.45 + 41 166.201 246 2 1 -130.75 -60.5606 -144.676 + 41 26.3375 600 2 0 -131.949 -59.9015 -145.85 + 41 74.5553 601 2 0 -132.029 -59.8498 -145.932 + 41 120.799 602 2 0 -132.126 -59.65 -146.066 + 41 74.4128 603 2 0 -132.046 -59.45 -146.064 + 41 66.5771 604 2 0 -132.032 -59.25 -146.032 + 41 168.975 605 2 0 -132.077 -59.05 -145.976 + 41 56.3043 606 2 0 -132.229 -58.8499 -145.919 + 41 102.206 607 2 0 -132.305 -58.65 -145.912 + 41 90.3752 608 2 0 -132.515 -58.45 -145.899 + 41 65.7915 609 2 0 -132.59 -58.25 -145.97 + 41 178.786 610 2 0 -132.623 -58.05 -146.021 + 41 217.413 585 3 0 -131.435 -63.0069 -115.85 + 41 317.763 240 2 1 -132.072 -63.3268 -144.45 + 41 115.195 243 1 1 -131.369 -64.187 -174.45 + 41 128.859 579 1 0 -131.463 -64.1197 -175.85 + 41 114.643 236 0 1 -132.777 -64.7672 -204.45 + 41 141.703 577 0 0 -132.942 -64.5912 -205.851 + 41 260.128 584 2 0 -132.084 -63.1011 -145.85 + 41 30.4727 585 2 0 -132.096 -63.05 -146.183 + 41 150.314 239 1 1 -132.199 -58.6255 -174.45 + 41 25.6944 240 1 1 -132.15 -58.6806 -174.777 + 41 102.734 605 1 0 -132.002 -58.8577 -175.85 + 41 87.5801 254 0 1 -129.34 -62.9726 -204.45 + 41 17.5051 253 0 1 -129.35 -62.909 -204.776 + 41 5.23018 586 0 0 -129.372 -62.6547 -205.85 + 41 130.949 587 0 0 -129.373 -62.65 -205.869 + 41 46.6225 1012 14 1 22.45 27.0779 215.231 + 41 166.414 247 1 1 -130.678 -62.9223 -174.45 + 41 107.914 585 1 0 -130.639 -62.8772 -175.85 + 41 11.0679 594 0 0 -130.047 -61.0548 -205.85 + 41 107.479 595 0 0 -130.046 -61.05 -205.904 + 41 104.177 245 2 1 -131.029 -63.4451 -144.45 + 41 148.615 582 2 0 -131.29 -63.5678 -145.85 + 41 91.7699 218 1 1 -136.449 -66.5835 -174.45 + 41 22.0463 217 1 1 -136.55 -66.6295 -174.763 + 41 145.545 566 1 0 -136.92 -66.787 -175.85 + 41 228.856 164 0 1 -147.283 -70.7771 -204.451 + 41 54.7316 163 0 1 -147.35 -70.7667 -204.666 + 41 116.568 546 0 0 -147.73 -70.6929 -205.85 +Number of digits in this event = 45 +Using G4ParticleGun ... +6.99333 LIN +gamma +Event: 42 +Number of tracker hits in this event = 59 + 42 252.992 1211 9 1 62.4117 -84.0265 65.55 + 42 213.62 480 9 0 62.4112 -84.0266 64.15 + 42 282.452 1211 8 1 62.3999 -84.0309 35.55 + 42 99.2484 480 8 0 62.3986 -84.0315 34.15 + 42 116.818 1211 7 1 62.3678 -84.0488 5.55 + 42 260.295 480 7 0 62.3656 -84.0486 4.15 + 42 402.926 1211 6 1 62.321 -84.0472 -24.45 + 42 327.667 480 6 0 62.3188 -84.0474 -25.85 + 42 303.216 1211 5 1 62.2769 -84.0487 -54.45 + 42 104.192 480 5 0 62.2759 -84.0484 -55.85 + 42 170.83 1211 4 1 62.2542 -84.048 -84.45 + 42 35.8515 480 4 0 62.2529 -84.0499 -85.85 + 42 83.7287 479 4 0 62.2528 -84.05 -85.9439 + 42 144.058 1210 3 1 62.2263 -84.086 -114.45 + 42 126.058 479 3 0 62.2247 -84.0893 -115.85 + 42 258.726 1210 2 1 62.1931 -84.1607 -144.45 + 42 126.236 479 2 0 62.1866 -84.1644 -145.85 + 42 27.8874 1210 1 1 62.0502 -84.256 -174.45 + 42 204.892 1209 1 1 62.05 -84.2561 -174.5 + 42 133.743 478 1 0 62.0449 -84.2594 -175.85 + 42 111.194 1209 0 1 61.9425 -84.3361 -204.45 + 42 195.334 478 0 0 61.9409 -84.3376 -205.85 + 42 154.687 517 9 1 -76.45 -4.60541 65.2644 + 42 170.331 486 0 0 46.9166 -82.6557 -206.25 + 42 12.1025 1129 0 1 45.8849 -83.8138 -204.85 + 42 51.2871 1128 0 1 45.8499 -83.8366 -204.826 + 42 71.2365 1127 0 1 45.65 -83.9294 -204.755 + 42 88.3223 1126 0 1 45.45 -83.9772 -204.679 + 42 270.509 1125 0 1 45.25 -84.0527 -204.609 + 42 382.112 1124 0 1 45.05 -84.0939 -204.51 + 42 12.2253 694 1 0 92.593 -41.25 -176.196 + 42 87.025 580 9 0 -19.9137 -63.8682 63.75 + 42 75.7259 695 1 0 92.8072 -41.05 -176.017 + 42 30.8131 480 2 0 62.0272 -83.8747 -145.851 + 42 78.9508 481 2 0 62.0162 -83.8498 -145.975 + 42 173.004 1203 1 1 60.7114 -77.5845 -174.45 + 42 129.198 511 1 0 61.05 -77.7601 -175.85 + 42 23.3024 1226 0 1 65.3816 -80.3633 -204.45 + 42 82.3214 1227 0 1 65.45 -80.2949 -204.489 + 42 86.1836 1228 0 1 65.65 -80.0579 -204.592 + 42 124.234 1229 0 1 65.85 -79.8278 -204.669 + 42 28.2077 1230 0 1 66.05 -79.6617 -204.796 + 42 8.66805 507 0 0 67.4306 -78.466 -205.85 + 42 170.325 508 0 0 67.4493 -78.45 -205.864 + 42 55.3852 509 0 0 67.7053 -78.25 -206.11 + 42 134.004 1210 4 1 62.2499 -84.04 -84.8037 + 42 134.106 479 8 0 62.2654 -84.0521 34.15 + 42 108.967 1210 7 1 62.1446 -84.0434 5.55 + 42 184.4 481 5 0 62.4096 -83.8369 -55.85 + 42 182.833 1212 4 1 62.59 -84.2852 -84.45 + 42 148.461 478 4 0 62.6042 -84.311 -85.85 + 42 126.017 1214 3 1 62.9034 -84.8306 -114.45 + 42 161.552 475 3 0 62.9185 -84.855 -115.85 + 42 174.715 1215 2 1 63.1893 -85.3743 -144.45 + 42 117.85 473 2 0 63.2027 -85.4021 -145.85 + 42 116.848 1217 1 1 63.4684 -85.983 -174.45 + 42 108.52 470 1 0 63.4788 -86.0089 -175.85 + 42 495.597 1218 0 1 63.6768 -86.5906 -204.45 + 42 403.392 467 0 0 63.6999 -86.6127 -205.85 +Number of digits in this event = 37 +Using G4ParticleGun ... +4.447 LIN +gamma +Event: 43 +Number of tracker hits in this event = 165 + 43 204.674 697 9 1 -40.4566 82.9545 65.55 + 43 234.18 1314 9 0 -40.4589 82.9569 64.15 + 43 210.965 697 8 1 -40.5024 83.0002 35.55 + 43 251.578 1314 8 0 -40.5036 83.0027 34.15 + 43 116.59 697 7 1 -40.5365 83.053 5.55 + 43 325.088 1315 7 0 -40.5407 83.0579 4.15 + 43 124.213 697 6 1 -40.6238 83.1491 -24.45 + 43 287.374 1315 6 0 -40.6276 83.1553 -25.85 + 43 462.073 696 5 1 -40.7294 83.2807 -54.45 + 43 105.99 1316 5 0 -40.7278 83.2906 -55.85 + 43 203.482 696 4 1 -40.6952 83.4717 -84.45 + 43 137.378 1317 4 0 -40.6922 83.4781 -85.85 + 43 122.307 697 3 1 -40.5985 83.6323 -114.45 + 43 372.623 1317 3 0 -40.5935 83.6427 -115.85 + 43 115.734 697 2 1 -40.5162 83.8719 -144.45 + 43 302.599 1319 2 0 -40.5134 83.881 -145.85 + 43 431.684 697 1 1 -40.462 84.0544 -174.45 + 43 416.934 1320 1 0 -40.4563 84.0653 -175.85 + 43 160.689 698 0 1 -40.3341 84.2835 -204.45 + 43 138.267 1321 0 0 -40.3292 84.2953 -205.85 + 43 42.2758 566 0 0 -131.325 -66.8109 -206.25 + 43 235.942 565 0 0 -131.455 -66.85 -206.112 + 43 200.904 237 0 1 -132.652 -67.1477 -204.85 + 43 392.2 236 0 1 -132.75 -66.9051 -204.542 + 43 319.702 235 0 1 -132.95 -67.6457 -204.83 + 43 180.14 696 1 1 -40.7516 85.712 -174.85 + 43 229.218 699 0 1 -40.2025 84.2142 -204.45 + 43 117.48 1320 0 0 -40.1864 84.2186 -205.85 + 43 44.9302 1318 0 0 -40.2345 83.6558 -205.85 + 43 292.992 1317 0 0 -40.2351 83.65 -205.961 + 43 97.5671 1028 3 0 -24.7126 25.7464 -116.25 + 43 201.168 696 2 1 -40.7105 83.8961 -144.451 + 43 84.0425 1318 2 0 -40.8617 83.8219 -145.85 + 43 86.953 678 1 1 -44.3773 82.9176 -174.45 + 43 28.9552 677 1 1 -44.45 82.801 -174.746 + 43 93.93 1311 1 0 -44.7998 82.3979 -175.85 + 43 40.0605 636 0 1 -52.7449 73.5421 -204.45 + 43 78.8699 635 0 1 -52.85 73.5183 -204.574 + 43 15.2043 634 0 1 -53.05 73.4711 -204.824 + 43 153.918 1265 0 0 -53.8528 73.2464 -205.85 + 43 58.9006 1159 0 0 -97.4035 51.9536 -206.25 + 43 92.6482 1158 0 0 -97.5667 51.85 -206.137 + 43 20.3797 1157 0 0 -97.786 51.6499 -205.9 + 43 36.9045 407 0 1 -98.6863 50.6619 -204.85 + 43 127.213 406 0 1 -98.75 50.5882 -204.778 + 43 278.82 405 0 1 -98.9501 50.3155 -204.537 + 43 1.61857 1163 0 0 -98.8837 52.8437 -205.85 + 43 55.1061 1164 0 0 -98.8828 52.85 -205.854 + 43 84.4436 1165 0 0 -98.8657 53.0501 -205.967 + 43 48.2631 1166 0 0 -98.8413 53.25 -206.093 + 43 216.958 404 0 1 -99.15 50.666 -204.527 + 43 15.7353 1273 2 0 -38.5889 74.668 -146.25 + 43 354.171 1272 2 0 -38.5713 74.6498 -146.205 + 43 77.948 1271 2 0 -38.4703 74.45 -145.972 + 43 483.294 695 1 1 -40.9624 84.1003 -174.45 + 43 134.003 1321 1 0 -40.9898 84.2618 -175.85 + 43 70.1444 693 0 1 -41.4434 87.8387 -204.45 + 43 44.0707 692 0 1 -41.45 87.8801 -204.692 + 43 90.3743 1340 0 0 -41.477 88.0696 -205.85 + 43 230.258 763 0 1 -27.45 69.6553 -204.772 + 43 33.2327 764 0 1 -27.25 69.6069 -204.581 + 43 211.067 694 1 1 -41.05 83.7528 -174.568 + 43 80.7361 1308 1 0 -40.0475 81.8226 -175.85 + 43 113.887 1307 1 0 -39.9631 81.65 -176.006 + 43 72.8876 1202 1 0 -40.7546 60.5608 -176.25 + 43 102.381 1201 1 0 -40.7949 60.4499 -176.013 + 43 415.904 694 2 1 -41.1411 83.7285 -144.45 + 43 45.3376 695 2 1 -41.05 83.847 -144.718 + 43 99.0701 1321 2 0 -40.7118 84.3391 -145.85 + 43 46.2342 1322 2 0 -40.6282 84.45 -146.117 + 43 15.4657 747 1 1 -30.5198 95.6608 -174.45 + 43 55.67 748 1 1 -30.45 95.6495 -174.472 + 43 53.2936 749 1 1 -30.2495 95.6173 -174.528 + 43 76.9227 750 1 1 -30.05 95.5906 -174.569 + 43 53.8058 751 1 1 -29.85 95.5548 -174.634 + 43 52.9123 752 1 1 -29.65 95.5287 -174.694 + 43 146.548 753 1 1 -29.45 95.5033 -174.755 + 43 26.5138 754 1 1 -29.2499 95.472 -174.813 + 43 320.326 1372 1 0 -25.9794 94.7048 -175.85 + 43 124.751 1371 1 0 -25.3215 94.55 -176.116 + 43 23.8849 1088 0 1 37.8031 75.2288 -204.45 + 43 97.8549 1089 0 1 37.85 75.272 -204.53 + 43 36.0722 1278 0 0 38.4654 75.8003 -205.85 + 43 100.097 1279 0 0 38.5161 75.8501 -205.96 + 43 146.04 1317 2 0 -41.3308 83.6076 -145.85 + 43 152.487 679 1 1 -44.1094 80.9127 -174.45 + 43 194.536 1304 1 0 -44.2532 80.9863 -175.85 + 43 85.004 661 0 1 -47.8371 83.0748 -204.451 + 43 82.4429 660 0 1 -47.85 83.0877 -204.573 + 43 45.8377 1315 0 0 -48.0527 83.2324 -205.85 + 43 260.576 1316 0 0 -48.0763 83.25 -205.994 + 43 23.8609 1281 0 0 -47.7828 76.3015 -205.85 + 43 122.053 1280 0 0 -47.8128 76.25 -206.084 + 43 183.223 696 8 1 -40.6501 82.9232 35.4157 + 43 76.6719 697 5 1 -40.65 83.1448 -54.4719 + 43 93.5308 698 5 1 -40.45 83.0499 -54.5772 + 43 78.2629 699 5 1 -40.2495 82.9802 -54.6457 + 43 426.008 700 5 1 -40.05 82.909 -54.7554 + 43 16.2349 1311 5 0 -38.9282 82.2799 -55.85 + 43 116.787 1310 5 0 -38.8808 82.25 -55.8978 + 43 49.1994 1309 5 0 -38.5842 82.0499 -56.1835 + 43 125.023 561 5 0 95.6136 -67.6999 -56.25 + 43 219.82 560 5 0 95.7257 -67.85 -56.1536 + 43 97.3928 559 5 0 95.9087 -68.05 -56.0591 + 43 216.551 558 5 0 96.1448 -68.25 -56.0092 + 43 61.1187 1387 5 1 97.5839 -68.2124 -54.85 + 43 78.1939 1388 5 1 97.75 -68.2062 -54.6672 + 43 80.5327 1389 5 1 97.9501 -68.2409 -54.5128 + 43 211.059 1390 5 1 98.15 -68.223 -54.568 + 43 57.0018 1391 5 1 98.3506 -68.1236 -54.7806 + 43 76.1507 1415 5 1 103.316 -66.1369 -54.85 + 43 90.1439 1416 5 1 103.35 -66.1193 -54.8392 + 43 483.144 1417 5 1 103.55 -65.9201 -54.7687 + 43 152.82 574 5 0 103.567 -65.1684 -55.85 + 43 52.8212 575 5 0 103.593 -65.05 -56.0899 + 43 93.207 576 5 0 103.566 -64.8499 -56.0792 + 43 22.8423 577 5 0 103.557 -64.65 -55.8778 + 43 237.28 1315 5 0 -40.6383 83.1257 -55.85 + 43 25.6831 707 4 1 -38.4676 83.4319 -84.45 + 43 114.676 708 4 1 -38.45 83.4112 -84.5486 + 43 107.442 1315 4 0 -38.1862 83.2024 -85.85 + 43 129.693 740 3 1 -31.9586 79.2761 -114.45 + 43 107.829 1297 3 0 -31.6215 79.4526 -115.85 + 43 112.044 773 2 1 -25.3552 82.5119 -144.45 + 43 114.527 1312 2 0 -25.1653 82.6036 -145.85 + 43 90.5264 791 1 1 -21.7492 83.0306 -174.45 + 43 82.2053 792 1 1 -21.6499 83.0748 -174.711 + 43 2.19084 1315 1 0 -21.272 83.2485 -175.85 + 43 220.82 1316 1 0 -21.2686 83.25 -175.86 + 43 56.6144 838 0 1 -12.3938 84.878 -204.45 + 43 108.008 839 0 1 -12.25 84.8014 -204.511 + 43 60.1992 840 0 1 -12.0499 84.7002 -204.586 + 43 64.7583 841 0 1 -11.85 84.5986 -204.652 + 43 58.0305 842 0 1 -11.65 84.5024 -204.729 + 43 64.178 843 0 1 -11.45 84.4081 -204.834 + 43 85.6084 1399 0 0 -8.77475 100.043 -206.25 + 43 90.8667 1400 0 0 -9.01811 100.15 -206.168 + 43 79.9487 1401 0 0 -9.3092 100.35 -206.102 + 43 34.3623 1402 0 0 -9.27691 100.55 -205.921 + 43 125.509 851 0 1 -9.81855 103.224 -204.85 + 43 55.8042 850 0 1 -9.85 103.674 -204.802 + 43 100.274 849 0 1 -10.05 103.747 -204.777 + 43 55.1093 848 0 1 -10.25 103.778 -204.763 + 43 50.2803 847 0 1 -10.45 103.854 -204.759 + 43 88.6078 846 0 1 -10.6502 103.934 -204.719 + 43 76.7164 845 0 1 -10.85 104.02 -204.716 + 43 68.3282 844 0 1 -11.05 104.092 -204.621 + 43 202.963 698 8 1 -40.3623 83.0018 35.55 + 43 57.7877 698 7 1 -40.251 83.0782 5.55 + 43 76.7484 699 7 1 -40.25 83.0785 5.36473 + 43 144.416 699 6 1 -40.0961 83.1405 -24.45 + 43 113.069 700 4 1 -39.8979 83.3998 -84.45 + 43 109.076 1316 4 0 -39.8955 83.4035 -85.85 + 43 127.564 701 3 1 -39.8493 83.4529 -114.45 + 43 126.27 701 2 1 -39.835 83.4208 -144.45 + 43 185.124 1316 2 0 -39.8365 83.4201 -145.85 + 43 156.346 700 1 1 -39.879 83.3992 -174.45 + 43 131.162 700 0 1 -39.9794 83.3164 -204.45 + 43 25.1252 1450 0 0 -176.657 110.184 -205.85 + 43 79.4922 1317 6 0 -41.2631 83.4559 -25.8504 + 43 225.744 1316 6 0 -41.4271 83.45 -25.9659 + 43 413.806 682 6 1 -43.5194 82.4785 -24.8493 + 43 278.865 683 6 1 -43.45 82.5262 -24.646 + 43 164.607 700 6 1 -40.05 83.1574 -24.5479 + 43 382.335 701 6 1 -39.8499 83.2437 -24.4902 +Number of digits in this event = 70 +Using G4ParticleGun ... +8.7361 LIN +gamma +Event: 44 +Number of tracker hits in this event = 23 + 44 300.71 1094 4 1 38.9089 103.431 -84.45 + 44 206.927 1416 4 0 38.9089 103.431 -85.85 + 44 214.053 1094 3 1 38.9157 103.421 -114.45 + 44 310.672 1416 3 0 38.9156 103.419 -115.85 + 44 200.799 1094 2 1 38.9129 103.356 -144.45 + 44 307.236 1416 2 0 38.9142 103.353 -145.85 + 44 145.28 1094 1 1 38.9336 103.292 -174.45 + 44 177.932 1415 1 0 38.9405 103.288 -175.85 + 44 129.527 1095 0 1 39.0783 103.196 -204.45 + 44 120.868 1415 0 0 39.0834 103.187 -205.85 + 44 16.6885 761 10 0 60.9131 -27.8199 93.75 + 44 408.364 760 10 0 60.8888 -27.85 93.7987 + 44 20.7537 1147 3 1 49.45 -122.893 -114.686 + 44 120.607 1094 0 1 39.0373 103.286 -204.45 + 44 112.736 1418 0 0 38.9445 103.803 -205.85 + 44 52.7221 1404 2 0 38.4152 101.111 -145.85 + 44 106.832 1093 2 1 38.8162 103.464 -144.45 + 44 120.875 1092 1 1 38.6402 103.522 -174.45 + 44 182.107 1416 1 0 38.6299 103.529 -175.85 + 44 136.838 1091 0 1 38.4284 103.678 -204.45 + 44 97.9104 1417 0 0 38.425 103.696 -205.85 + 44 18.857 1023 0 1 24.85 103.153 -204.775 + 44 142.976 1022 0 1 24.65 103.15 -204.675 Number of digits in this event = 18 Using G4ParticleGun ... -4.43889 LIN +5.72829 LIN +gamma +Event: 45 +Number of tracker hits in this event = 104 + 45 356.143 443 9 1 -91.4564 14.2011 65.55 + 45 427.861 970 9 0 -91.4568 14.2017 64.15 + 45 262.753 443 8 1 -91.4707 14.2129 35.55 + 45 308.763 970 8 0 -91.4722 14.2125 34.15 + 45 227.771 443 7 1 -91.5016 14.2039 5.55 + 45 130.172 970 7 0 -91.5007 14.2024 4.15 + 45 112.466 443 6 1 -91.4781 14.1577 -24.45 + 45 130.312 970 6 0 -91.4748 14.1592 -25.85 + 45 306.311 443 5 1 -91.3958 14.1898 -54.45 + 45 211.19 970 5 0 -91.394 14.1933 -55.85 + 45 138.264 443 4 1 -91.3718 14.2641 -84.45 + 45 143.477 971 4 0 -91.371 14.2689 -85.85 + 45 143.797 443 3 1 -91.3562 14.3665 -114.45 + 45 119.525 971 3 0 -91.356 14.3703 -115.85 + 45 173.548 443 2 1 -91.3522 14.4484 -144.45 + 45 204.422 971 2 0 -91.3522 14.4469 -145.85 + 45 101.811 444 1 1 -91.3433 14.421 -174.45 + 45 180.846 971 1 0 -91.3464 14.421 -175.85 + 45 399.745 443 0 1 -91.379 14.4334 -204.45 + 45 346.161 971 0 0 -91.3985 14.438 -205.85 + 45 138.653 614 6 0 -53.5305 -57.05 -26.214 + 45 11.5355 630 6 1 -54.0475 -56.7243 -24.85 + 45 23.179 629 6 1 -54.05 -56.7201 -24.8498 + 45 28.3065 913 0 1 2.74864 146.555 -204.85 + 45 9.76842 1463 0 0 31.3423 112.768 -206.25 + 45 232.64 1462 0 0 31.3554 112.75 -206.242 + 45 249.678 1461 0 0 31.5508 112.55 -206.208 + 45 413.705 1460 0 0 31.6749 112.35 -206.187 + 45 162.425 444 0 1 -91.35 14.4527 -204.716 + 45 117.456 972 0 0 -91.2686 14.4911 -205.85 + 45 77.4051 442 2 1 -91.55 14.4814 -144.635 + 45 112.438 976 2 0 -91.372 15.2821 -145.85 + 45 72.8974 977 2 0 -91.275 15.45 -146.033 + 45 147.471 978 2 0 -91.1887 15.65 -146.119 + 45 49.0865 979 2 0 -91.1163 15.8505 -146.161 + 45 37.8726 980 2 0 -91.0828 16.05 -146.219 + 45 302.466 970 4 0 -91.3014 14.25 -86.0479 + 45 70.6979 442 5 1 -91.55 14.1872 -54.6082 + 45 43.096 414 4 1 -97.3027 14.919 -84.4501 + 45 83.3194 413 4 1 -97.35 14.9263 -84.582 + 45 133.162 975 4 0 -97.8493 15.0747 -85.85 + 45 77.294 364 3 1 -107.174 18.3524 -114.45 + 45 90.7431 363 3 1 -107.35 18.3987 -114.63 + 45 3.38731 362 3 1 -107.55 18.4552 -114.838 + 45 257.42 993 3 0 -108.475 18.7503 -115.85 + 45 8.80479 994 3 0 -108.792 18.85 -116.226 + 45 33.0489 235 2 1 -133.108 28.0358 -144.45 + 45 85.6946 234 2 1 -133.15 28.0265 -144.578 + 45 174.408 1039 2 0 -133.562 27.9896 -145.85 + 45 67.0244 189 1 1 -142.245 23.7321 -174.45 + 45 91.1779 188 1 1 -142.35 23.8537 -174.603 + 45 80.5284 1023 1 0 -143.15 24.6905 -175.85 + 45 64.7888 1024 1 0 -143.304 24.85 -176.067 + 45 127.2 971 5 0 -91.7971 14.25 -56.1218 + 45 70.5762 968 5 0 -91.4246 13.6888 -55.8501 + 45 217.083 967 5 0 -91.4163 13.6499 -55.9606 + 45 28.8882 457 4 1 -88.5061 5.47472 -84.45 + 45 97.1268 458 4 1 -88.45 5.46792 -84.5537 + 45 145.208 926 4 0 -87.5909 5.43162 -85.8503 + 45 11.3774 927 4 0 -87.3763 5.45 -86.2253 + 45 12.653 532 3 1 -73.4551 6.91743 -114.45 + 45 94.8838 533 3 1 -73.45 6.91011 -114.5 + 45 106.154 932 3 0 -73.2273 6.63929 -115.85 + 45 94.3444 567 2 1 -66.5553 1.739 -144.45 + 45 45.896 566 2 1 -66.65 1.83702 -144.7 + 45 103.593 911 2 0 -67.2039 2.32867 -145.85 + 45 15.2761 912 2 0 -67.2807 2.45 -146.203 + 45 173.566 1390 7 1 98.2522 -46.677 5.54993 + 45 253.959 1391 7 1 98.3503 -46.6379 5.29127 + 45 393.584 443 1 1 -91.4243 14.1575 -174.45 + 45 297.919 970 1 0 -91.4171 14.1562 -175.85 + 45 104.665 446 0 1 -90.8371 14.6468 -204.45 + 45 122.429 973 0 0 -90.8119 14.6868 -205.85 + 45 22.4096 770 1 0 -121.117 -26.0057 -176.25 + 45 295.653 769 1 0 -121.153 -26.05 -176.21 + 45 113.958 961 1 0 -118.601 12.3735 -176.25 + 45 239.084 960 1 0 -118.526 12.25 -175.932 + 45 119.652 308 1 1 -118.475 12.1672 -174.85 + 45 126.251 309 1 1 -118.35 12.1068 -174.558 + 45 12.6173 310 1 1 -118.15 12.1111 -174.452 + 45 118.435 969 7 0 -91.3573 13.9789 4.15 + 45 115.488 445 6 1 -91.0912 13.8895 -24.45 + 45 129.054 969 6 0 -91.0802 13.8905 -25.85 + 45 224.486 446 5 1 -90.854 13.9409 -54.45 + 45 153.574 969 5 0 -90.8389 13.9327 -55.85 + 45 116.085 447 4 1 -90.5747 13.786 -84.45 + 45 109.901 968 4 0 -90.5587 13.781 -85.85 + 45 94.4309 449 3 1 -90.2305 13.7012 -114.45 + 45 158.746 968 3 0 -90.2034 13.6961 -115.85 + 45 146.246 452 2 1 -89.6183 13.6022 -144.45 + 45 108.597 967 2 0 -89.5902 13.6018 -145.85 + 45 123.396 455 1 1 -89.0193 13.5937 -174.45 + 45 128.759 967 1 0 -89.0071 13.5848 -175.85 + 45 123.822 456 0 1 -88.7614 13.4171 -204.45 + 45 107.653 966 0 0 -88.7479 13.4041 -205.85 + 45 60.7986 447 5 1 -90.7498 13.8422 -54.7507 + 45 265.308 903 5 0 -94.2984 0.757895 -56.25 + 45 131.645 968 6 0 -91.0878 13.85 -25.9746 + 45 104.997 967 6 0 -91.1449 13.65 -26.0921 + 45 75.9018 966 6 0 -91.1539 13.45 -26.1411 + 45 422.861 965 6 0 -91.0323 13.249 -26.1805 + 45 404.246 964 6 0 -90.4746 13.05 -26.0454 + 45 29.5464 166 4 0 -131.307 -146.75 -85.933 + 45 192.873 245 4 1 -131.073 -147.743 -84.85 +Number of digits in this event = 54 +Using G4ParticleGun ... +9.65164 LIN +gamma +Event: 46 +Number of tracker hits in this event = 7 + 46 70.9687 1187 0 0 -21.1448 57.6013 -206.25 + 46 119.615 1189 0 0 -21.3842 57.85 -205.99 + 46 61.0896 1188 0 0 -21.1579 57.6503 -206.092 + 46 15.3347 1607 1 0 -30.3171 141.55 -175.995 + 46 310.761 747 1 1 -30.5917 142.517 -174.85 + 46 82.7748 304 5 0 -125.833 -119.199 -56.2499 + 46 164.746 305 5 0 -125.811 -119.15 -56.1643 +Number of digits in this event = 4 +Using G4ParticleGun ... +8.76965 LIN +gamma +Event: 47 +Number of tracker hits in this event = 24 + 47 392.424 380 5 1 -104.004 -21.7659 -54.45 + 47 218.735 791 5 0 -104.001 -21.7649 -55.85 + 47 127.459 381 4 1 -103.948 -21.7254 -84.45 + 47 234.192 791 4 0 -103.943 -21.7226 -85.85 + 47 111.2 381 3 1 -103.836 -21.661 -114.45 + 47 313.852 791 3 0 -103.836 -21.6539 -115.85 + 47 113.904 381 2 1 -103.84 -21.5079 -144.45 + 47 274.819 792 2 0 -103.836 -21.5021 -145.85 + 47 572.37 381 1 1 -103.76 -21.4203 -174.45 + 47 259.972 793 1 0 -103.757 -21.4204 -175.85 + 47 119.459 382 0 1 -103.679 -21.4166 -204.45 + 47 240.606 793 0 0 -103.671 -21.4098 -205.85 + 47 160.77 382 1 1 -103.75 -21.4299 -174.688 + 47 155.953 380 1 1 -103.95 -21.3367 -174.668 + 47 3.22013 795 1 0 -103.849 -20.8548 -175.85 + 47 114.003 796 1 0 -103.849 -20.85 -175.861 + 47 110.35 793 2 0 -103.841 -21.45 -146.016 + 47 140.246 380 4 1 -104.013 -21.7242 -84.45 + 47 104.832 380 3 1 -104.013 -21.6942 -114.45 + 47 120.686 380 2 1 -104.007 -21.6136 -144.45 + 47 331.674 792 1 0 -103.996 -21.5225 -175.85 + 47 133.702 380 0 1 -103.998 -21.4263 -204.45 + 47 23.7937 797 3 0 -76.9727 -20.65 -115.855 + 47 133.138 833 0 1 -13.3995 -51.1301 -204.85 +Number of digits in this event = 19 +Using G4ParticleGun ... +7.64174 LIN +gamma +Event: 48 +Number of tracker hits in this event = 89 + 48 243.505 306 5 1 -118.903 -23.3387 -54.45 + 48 393.175 783 5 0 -118.903 -23.3385 -55.85 + 48 163.598 306 4 1 -118.913 -23.3336 -84.45 + 48 124.308 783 4 0 -118.912 -23.335 -85.85 + 48 190.853 306 3 1 -118.905 -23.365 -114.45 + 48 322.695 783 3 0 -118.905 -23.3719 -115.85 + 48 219.184 306 2 1 -118.913 -23.514 -144.45 + 48 167.958 782 2 0 -118.915 -23.5172 -145.85 + 48 242.516 305 1 1 -118.954 -23.5834 -174.45 + 48 209.344 782 1 0 -118.957 -23.5887 -175.85 + 48 251.64 305 0 1 -118.991 -23.6998 -204.45 + 48 164.79 781 0 0 -118.987 -23.7055 -205.85 + 48 90.7574 996 2 0 19.2068 19.25 -146.065 + 48 141.364 995 2 0 19.241 19.2499 -146.036 + 48 21.0947 411 2 0 63.2466 -97.8482 -146.25 + 48 61.3322 410 2 0 63.2194 -97.95 -146.232 + 48 133.459 409 2 0 63.1083 -98.15 -146.212 + 48 70.0299 408 2 0 63.0233 -98.3505 -146.14 + 48 70.194 407 2 0 62.9074 -98.5502 -146.155 + 48 59.3708 406 2 0 62.7577 -98.7504 -146.157 + 48 155.975 783 2 0 -118.908 -23.45 -145.975 + 48 71.4828 929 2 0 -0.489057 5.95763 -146.25 + 48 77.866 930 2 0 -0.248498 6.05 -146.17 + 48 37.3601 931 2 0 0.05 6.32759 -146.093 + 48 80.1657 932 2 0 0.122386 6.45 -146.085 + 48 81.9419 933 2 0 0.311112 6.65 -146.021 + 48 55.2837 934 2 0 0.532524 6.85 -145.937 + 48 209.007 907 2 1 1.45025 8.66929 -144.85 + 48 362.459 908 2 1 1.65123 8.85461 -144.626 + 48 538.638 909 2 1 1.85 8.83452 -144.513 + 48 379.586 910 2 1 2.05 8.73394 -144.53 + 48 143.469 793 4 0 -120.356 -21.3237 -85.85 + 48 375.387 305 3 1 -118.954 -23.3281 -114.45 + 48 315.868 295 2 1 -121.081 -23.6415 -144.45 + 48 92.7592 775 2 0 -120.747 -24.9115 -145.85 + 48 89.397 774 2 0 -120.716 -25.05 -146.052 + 48 104.427 247 1 1 -130.634 -50.7884 -174.45 + 48 132.41 646 1 0 -130.906 -50.8208 -175.85 + 48 55.5576 242 0 1 -131.673 -54.3008 -204.45 + 48 73.0234 243 0 1 -131.55 -54.2812 -204.493 + 48 65.7121 244 0 1 -131.35 -54.2672 -204.495 + 48 43.811 701 1 0 -170.165 -39.7816 -176.25 + 48 382.589 700 1 0 -170.252 -39.85 -176.174 + 48 209.579 699 1 0 -170.211 -40.05 -175.886 + 48 68.7303 779 3 0 -119.059 -24.1672 -115.85 + 48 77.8745 778 3 0 -119.064 -24.25 -116.003 + 48 54.0324 323 2 1 -115.511 -47.9536 -144.45 + 48 152.185 322 2 1 -115.55 -47.7754 -144.576 + 48 87.4411 671 2 0 -116.691 -45.8348 -145.85 + 48 59.9683 672 2 0 -116.817 -45.65 -145.963 + 48 86.3288 673 2 0 -116.968 -45.45 -146.064 + 48 14.9589 674 2 0 -117.057 -45.25 -146.205 + 48 60.1402 863 2 0 -140.088 -7.28022 -146.25 + 48 77.1575 864 2 0 -140.166 -7.25 -146.078 + 48 147.933 189 2 1 -142.292 -7.43337 -144.85 + 48 135.281 188 2 1 -142.35 -7.44763 -144.819 + 48 144.789 187 2 1 -142.55 -7.49437 -144.704 + 48 12.749 186 2 1 -142.75 -7.5313 -144.485 + 48 110.171 190 2 1 -142.15 -7.55187 -144.67 + 48 556.835 191 2 1 -141.949 -7.43959 -144.594 + 48 27.0741 192 2 1 -141.75 -6.90756 -144.758 + 48 169.218 866 2 0 -142.245 -6.75595 -145.85 + 48 265.558 306 1 1 -118.911 -23.3458 -174.45 + 48 108.189 306 0 1 -118.817 -26.5708 -204.45 + 48 9.12717 766 0 0 -118.818 -26.8427 -205.85 + 48 129.533 765 0 0 -118.818 -26.85 -205.889 + 48 142.794 783 1 0 -118.98 -23.3136 -175.85 + 48 112.707 300 0 1 -120.018 -22.5104 -204.45 + 48 174.719 787 0 0 -120.06 -22.4649 -205.85 + 48 72.5881 682 4 0 -122.002 -43.4667 -86.25 + 48 66.9685 681 4 0 -122.012 -43.6501 -86.0709 + 48 401.54 292 4 1 -121.693 -44.1921 -84.85 + 48 118.341 291 4 1 -121.75 -45.1063 -84.7518 + 48 198.983 290 4 1 -121.95 -45.2375 -84.7318 + 48 291.64 289 4 1 -122.15 -45.5393 -84.4583 + 48 45.8545 665 4 0 -122.71 -46.9893 -85.85 + 48 85.9339 664 4 0 -122.735 -47.05 -85.9202 + 48 96.1458 663 4 0 -122.692 -47.25 -86.0185 + 48 248.687 662 4 0 -122.634 -47.45 -86.1258 + 48 305.339 305 4 1 -119.051 -23.5255 -84.45 + 48 108.045 782 4 0 -119.052 -23.5257 -85.85 + 48 144.922 782 3 0 -119.023 -23.5255 -115.85 + 48 116.75 781 2 0 -118.908 -23.7639 -145.85 + 48 123.865 781 1 0 -118.97 -23.7995 -175.85 + 48 138.508 779 0 0 -119.122 -24.1069 -205.85 + 48 8.05579 834 2 0 -96.6136 -13.1328 -146.25 + 48 85.4175 664 3 0 -98.2728 -47.1163 -116.25 + 48 43.0127 663 3 0 -98.1339 -47.25 -116.01 + 48 106.989 407 3 1 -98.5531 -47.7062 -114.85 +Number of digits in this event = 46 +Using G4ParticleGun ... +9.09915 LIN +gamma +Event: 49 +Number of tracker hits in this event = 3 + 49 105.08 1420 8 0 -58.1535 104.15 33.8183 + 49 369.084 571 1 0 17.4052 -65.6704 -176.249 + 49 55.0298 572 1 0 17.3231 -65.6497 -176.078 +Number of digits in this event = 3 +Using G4ParticleGun ... +7.14789 LIN +gamma +Event: 50 +Number of tracker hits in this event = 68 + 50 421.172 939 7 1 7.90818 -113.26 5.55 + 50 457.234 334 7 0 7.90806 -113.259 4.15 + 50 242.585 939 6 1 7.90383 -113.244 -24.45 + 50 432.577 334 6 0 7.90295 -113.244 -25.85 + 50 261.516 939 5 1 7.88631 -113.225 -54.45 + 50 286.621 334 5 0 7.88701 -113.224 -55.85 + 50 257.377 939 4 1 7.89685 -113.193 -84.45 + 50 249.73 334 4 0 7.89711 -113.191 -85.85 + 50 289.362 939 3 1 7.9021 -113.158 -114.45 + 50 151.137 334 3 0 7.90152 -113.156 -115.85 + 50 558.103 939 2 1 7.8843 -113.1 -144.45 + 50 223.537 335 2 0 7.88154 -113.099 -145.85 + 50 186.787 938 1 1 7.82925 -113.075 -174.45 + 50 171.832 335 1 0 7.82317 -113.072 -175.85 + 50 239.108 938 0 1 7.69034 -113.016 -204.45 + 50 209.48 335 0 0 7.68416 -113.014 -205.85 + 50 67.1523 938 2 1 7.85 -113.024 -144.645 + 50 83.9137 338 2 0 7.78079 -112.489 -145.85 + 50 19.8348 339 2 0 7.75999 -112.35 -146.165 + 50 107.595 941 1 1 8.38131 -96.0903 -174.45 + 50 155.512 423 1 0 8.91376 -95.5468 -175.85 + 50 63.8199 1024 0 1 24.9029 -81.8706 -204.45 + 50 61.484 1025 0 1 25.05 -81.9415 -204.585 + 50 96.9473 1026 0 1 25.25 -81.9956 -204.658 + 50 79.9348 486 0 0 25.6361 -82.722 -205.85 + 50 100.57 485 0 0 25.7317 -82.85 -206.025 + 50 72.1926 484 0 0 25.8306 -83.0503 -206.001 + 50 73.9608 483 0 0 25.8236 -83.25 -205.961 + 50 1.52503 1022 0 1 24.455 -84.2017 -204.85 + 50 99.9681 1021 0 1 24.45 -84.2047 -204.846 + 50 65.5473 1020 0 1 24.2499 -84.329 -204.642 + 50 15.631 1019 0 1 24.05 -84.3302 -204.497 + 50 5.04349 419 1 0 98.891 -96.15 -176.055 + 50 72.1256 917 2 1 3.63571 -13.7478 -144.85 + 50 266.806 918 2 1 3.65 -13.419 -144.671 + 50 36.3228 336 2 0 7.83871 -112.95 -146.147 + 50 222.552 929 1 1 6.03131 -107.339 -174.45 + 50 11.0813 928 1 1 5.84994 -107.068 -174.813 + 50 136.297 368 1 0 5.04252 -106.518 -175.85 + 50 20.9341 369 1 0 4.78731 -106.35 -176.201 + 50 7.21259 835 0 1 -13.0297 -90.665 -204.45 + 50 70.7203 834 0 1 -13.0504 -90.6648 -204.464 + 50 60.4178 833 0 1 -13.25 -90.7017 -204.59 + 50 63.7859 832 0 1 -13.4501 -90.7629 -204.683 + 50 42.8693 831 0 1 -13.65 -90.8035 -204.793 + 50 287.969 446 0 0 -16.3368 -90.8931 -205.85 + 50 437.662 445 0 0 -16.8558 -90.95 -206.038 + 50 24.4078 443 0 0 -101.098 -91.396 -206.25 + 50 141.624 444 0 0 -101.16 -91.35 -206.202 + 50 90.3325 447 0 0 -102.368 -90.75 -205.957 + 50 123.175 448 0 0 -102.628 -90.55 -205.972 + 50 72.3998 449 0 0 -102.883 -90.35 -205.935 + 50 5.70197 376 0 1 -104.935 -87.8446 -204.85 + 50 100.656 375 0 1 -104.95 -87.8249 -204.842 + 50 81.5581 374 0 1 -105.15 -87.5725 -204.711 + 50 69.2384 373 0 1 -105.35 -87.4362 -204.572 + 50 164.8 333 3 0 8.01635 -113.395 -115.85 + 50 221.918 332 2 0 7.9886 -113.565 -145.85 + 50 134.019 939 1 1 7.88066 -113.76 -174.45 + 50 151.858 331 1 0 7.87884 -113.772 -175.85 + 50 113.595 330 0 0 7.82612 -114.048 -205.85 + 50 105.554 562 1 1 -67.45 -79.9452 -174.645 + 50 35.6207 331 2 0 8.06731 -113.75 -146.239 + 50 142.109 940 7 1 8.05 -113.175 5.39003 + 50 7.87608 941 7 1 8.25 -112.887 5.17114 + 50 164.132 338 7 0 9.4626 -112.377 4.15 + 50 317.462 339 7 0 9.68065 -112.35 3.98806 + 50 82.3466 948 7 1 9.70252 -111.774 5.15 +Number of digits in this event = 33 +Using G4ParticleGun ... +1.87678 LIN +gamma +Event: 51 +Number of tracker hits in this event = 4 + 51 27.2403 779 2 0 -64.4079 -24.1128 -146.25 + 51 113.705 780 2 0 -64.4454 -24.0499 -146.139 + 51 77.001 573 2 1 -65.2965 -23.6849 -144.85 + 51 341.07 572 2 1 -65.45 -23.6796 -144.655 +Number of digits in this event = 2 +Using G4ParticleGun ... +4.19459 LIN +gamma +Event: 52 +Number of tracker hits in this event = 146 + 52 212.829 638 8 1 -52.4142 -84.7724 35.55 + 52 240.431 476 8 0 -52.3964 -84.7847 34.15 + 52 385.383 640 7 1 -52.0144 -84.9517 5.55 + 52 290.072 475 7 0 -52.0164 -84.995 4.15 + 52 116.5 639 6 1 -52.1377 -86.0119 -24.45 + 52 128.296 469 6 0 -52.1304 -86.0694 -25.85 + 52 116.383 640 5 1 -51.9211 -87.1405 -54.45 + 52 184.115 464 5 0 -51.9301 -87.2028 -55.85 + 52 205.292 638 4 1 -52.2583 -88.5107 -84.45 + 52 117.47 457 4 0 -52.2518 -88.5485 -85.85 + 52 114.502 639 3 1 -52.1876 -89.3038 -114.45 + 52 188.667 453 3 0 -52.1511 -89.3411 -115.85 + 52 228.868 449 2 0 -51.4476 -90.1576 -145.85 + 52 107.21 647 1 1 -50.5877 -90.9679 -174.45 + 52 125.126 445 1 0 -50.5367 -90.9857 -175.85 + 52 135.412 652 0 1 -49.5012 -91.3748 -204.45 + 52 216.1 443 0 0 -49.4441 -91.3993 -205.85 + 52 99.3121 450 2 0 -51.3707 -89.9957 -145.85 + 52 117.058 649 1 1 -50.1031 -93.0064 -174.45 + 52 111.595 434 1 0 -50.0128 -93.2099 -175.851 + 52 112.933 655 0 1 -48.9855 -98.5126 -204.45 + 52 23.1281 656 0 1 -48.85 -98.5835 -204.773 + 52 121.194 406 0 0 -48.4106 -98.7932 -205.85 + 52 19.7718 305 0 0 -55.8453 -119.092 -206.25 + 52 121.451 304 0 0 -55.8899 -119.15 -206.195 + 52 84.2261 303 0 0 -56.0491 -119.35 -206.014 + 52 12.2552 615 0 1 -57.0254 -120.683 -204.85 + 52 136.27 614 0 1 -57.05 -120.719 -204.82 + 52 83.2825 613 0 1 -57.25 -121.016 -204.612 + 52 10.2891 132 1 0 -77.0373 -153.73 -176.25 + 52 92.4476 131 1 0 -77.0501 -153.751 -176.232 + 52 247.084 130 1 0 -77.1927 -153.95 -176.06 + 52 18.5075 129 1 0 -77.325 -154.15 -175.895 + 52 21.6518 510 1 1 -78.0256 -155.464 -174.85 + 52 148.068 509 1 1 -78.0502 -155.508 -174.812 + 52 35.0073 508 1 1 -78.25 -155.855 -174.516 + 52 157.107 506 1 1 -78.688 -156.667 -174.45 + 52 104.612 118 1 0 -79.1376 -156.547 -175.852 + 52 233.724 642 2 1 -51.4934 -90.1501 -144.617 + 52 81.9022 643 2 1 -51.4498 -90.3963 -144.637 + 52 56.5291 613 1 1 -57.3587 -91.7698 -174.45 + 52 86.2991 614 1 1 -57.25 -91.8155 -174.598 + 52 0.690078 615 1 1 -57.0499 -91.9044 -174.847 + 52 31.8925 439 1 0 -56.0445 -92.3084 -175.85 + 52 114.832 438 1 0 -55.944 -92.3501 -175.951 + 52 7.03509 757 0 1 -28.617 -104.308 -204.45 + 52 87.1531 756 0 1 -28.6502 -104.295 -204.469 + 52 73.6536 755 0 1 -28.85 -104.209 -204.575 + 52 81.1812 754 0 1 -29.05 -104.111 -204.703 + 52 3.34062 753 0 1 -29.25 -103.983 -204.844 + 52 49.8262 385 0 0 -30.6901 -103.04 -205.85 + 52 183.453 386 0 0 -30.8192 -102.95 -205.943 + 52 2.56935 387 0 0 -31.1938 -102.75 -206.243 + 52 25.3572 645 1 1 -51.005 -91.806 -174.45 + 52 103.586 644 1 1 -51.0501 -91.7999 -174.496 + 52 27.4374 643 1 1 -51.25 -91.7222 -174.76 + 52 94.6362 442 1 0 -51.6266 -91.6018 -175.85 + 52 30.9338 443 1 0 -51.6448 -91.55 -176.151 + 52 181.191 667 0 1 -46.4861 -86.0968 -204.45 + 52 247.92 668 0 1 -46.45 -86.582 -204.493 + 52 146.714 669 0 1 -46.25 -86.7192 -204.742 + 52 157.881 639 4 1 -52.25 -88.4639 -84.5866 + 52 607.344 639 7 1 -52.1117 -84.7438 5.55 + 52 116.564 674 6 1 -45.1929 -87.0758 -24.45 + 52 11.2419 675 6 1 -45.0495 -87.1311 -24.8085 + 52 121.864 463 6 0 -44.6222 -87.3007 -25.8501 + 52 116.166 732 5 1 -33.5242 -91.8387 -54.45 + 52 132.247 438 5 0 -33.6902 -92.3565 -55.85 + 52 111.222 701 4 1 -39.7474 -104.207 -84.45 + 52 119.783 377 4 0 -40.0684 -104.645 -85.85 + 52 13.9659 663 3 1 -47.4246 -107.935 -114.45 + 52 135.992 662 3 1 -47.45 -107.959 -114.497 + 52 98.7054 661 3 1 -47.65 -108.148 -114.731 + 52 91.4495 355 3 0 -49.0119 -109.016 -115.85 + 52 104.236 354 3 0 -49.2305 -109.15 -116.019 + 52 30.1855 353 3 0 -49.4859 -109.35 -116.193 + 52 396.911 403 2 1 -99.5463 -151.842 -144.45 + 52 149.917 404 2 1 -99.35 -152.229 -144.68 + 52 114.733 405 2 1 -99.1498 -152.486 -144.72 + 52 2.87068 406 2 1 -98.9499 -152.503 -144.847 + 52 96.3911 138 2 0 -97.0646 -152.439 -145.85 + 52 53.8798 139 2 0 -96.886 -152.35 -146.106 + 52 76.9658 402 2 1 -99.5502 -151.902 -144.56 + 52 13.3619 679 6 1 -44.1439 -88.8723 -24.45 + 52 121.298 638 7 1 -52.4031 -84.7552 5.55 + 52 125.193 476 7 0 -52.4044 -84.7532 4.15 + 52 148.086 638 6 1 -52.435 -84.7268 -24.45 + 52 124.852 476 6 0 -52.4358 -84.7268 -25.85 + 52 138.366 637 5 1 -52.4511 -84.723 -54.45 + 52 113.406 476 5 0 -52.452 -84.7252 -55.85 + 52 130.58 637 4 1 -52.4745 -84.7717 -84.45 + 52 105.41 476 4 0 -52.4754 -84.7735 -85.85 + 52 138.02 637 3 1 -52.4948 -84.8106 -114.45 + 52 108.155 476 3 0 -52.4945 -84.8137 -115.85 + 52 141.159 637 2 1 -52.4777 -84.8671 -144.45 + 52 144.838 475 2 0 -52.4802 -84.8697 -145.85 + 52 366.18 637 1 1 -52.537 -84.91 -174.45 + 52 244.233 476 1 0 -52.5624 -84.8456 -175.85 + 52 107.944 635 0 1 -53.0099 -83.7019 -204.45 + 52 106.933 482 0 0 -53.1273 -83.5709 -205.85 + 52 290.831 1073 2 1 34.65 -48.7337 -144.727 + 52 475.953 637 0 1 -52.635 -84.9872 -204.45 + 52 355.942 475 0 0 -52.6386 -84.9934 -205.85 + 52 314.825 665 6 1 -47.05 33.7663 -24.6141 + 52 12.5032 664 6 1 -47.05 33.7734 -24.6025 + 52 139.77 570 0 0 -62.4735 -66.0321 -206.25 + 52 75.9332 569 0 0 -62.3986 -66.05 -206.088 + 52 103.159 659 1 1 -48.1341 -108.19 -174.45 + 52 77.6734 1195 10 0 38.5179 59.1512 93.75 + 52 150.258 1196 10 0 38.5859 59.25 94.0131 + 52 218.061 475 1 0 -52.5484 -84.9228 -175.85 + 52 243.009 474 0 0 -52.6267 -85.0693 -205.85 + 52 205.393 632 0 1 -53.6191 -85.5873 -204.45 + 52 113.154 472 0 0 -53.5627 -85.6291 -205.85 + 52 78.3549 507 7 0 -59.6197 -78.5128 3.75012 + 52 34.9342 508 7 0 -59.6409 -78.4499 4.04473 + 52 231.662 602 7 1 -59.6232 -77.8149 5.15019 + 52 98.153 603 7 1 -59.4499 -77.5265 5.4624 + 52 70.0906 921 13 1 4.34441 -24.743 185.55 + 52 120.23 337 3 0 -102.327 -112.55 -115.967 + 52 16.1977 338 3 0 -102.343 -112.55 -116.019 + 52 56.4236 336 3 0 -102.434 -112.75 -115.956 + 52 122.936 393 3 1 -101.411 -111.412 -114.85 + 52 279.637 637 6 1 -52.45 -84.7666 -24.5373 + 52 194.836 475 6 0 -52.5718 -84.8512 -25.85 + 52 106.748 624 5 1 -55.2465 -87.3246 -54.4502 + 52 70.2924 462 5 0 -55.0225 -87.6141 -55.85 + 52 68.6086 461 5 0 -54.9922 -87.65 -56.03 + 52 96.9631 647 4 1 -50.5128 -93.1807 -84.45 + 52 121.473 435 4 0 -50.3068 -93.0305 -85.8501 + 52 16.7674 669 3 1 -46.1045 -88.6149 -114.45 + 52 123.041 670 3 1 -46.05 -88.5888 -114.503 + 52 63.7968 671 3 1 -45.85 -88.485 -114.706 + 52 27.9562 460 3 0 -44.5753 -87.8852 -115.85 + 52 278.717 461 3 0 -44.4989 -87.85 -115.921 + 52 49.3096 844 2 1 -11.131 -74.9413 -144.45 + 52 112.451 845 2 1 -11.05 -75.0016 -144.617 + 52 102.449 521 2 0 -10.3827 -75.6729 -145.85 + 52 48.3373 520 2 0 -10.2334 -75.85 -146.121 + 52 150.53 928 1 1 5.73289 -96.5097 -174.45 + 52 83.5895 413 1 0 5.84158 -97.4142 -175.85 + 52 74.6306 412 1 0 5.85983 -97.55 -176.053 + 52 134.534 945 0 1 9.17542 -120.062 -204.45 + 52 97.5105 300 0 0 8.86749 -120.103 -205.85 + 52 20.5357 299 0 0 8.85958 -120.15 -206.207 + 52 18.596 646 4 1 -50.65 -93.2028 -84.7226 +Number of digits in this event = 63 +Using G4ParticleGun ... +5.91872 LIN +gamma +Event: 53 +Number of tracker hits in this event = 12 + 53 223.749 1140 3 1 48.1802 137.125 -114.45 + 53 225.646 1584 3 0 48.1782 137.125 -115.85 + 53 261.178 1140 2 1 48.1327 137.127 -144.45 + 53 327.461 1584 2 0 48.1359 137.123 -145.85 + 53 112.498 1140 1 1 48.1973 137.035 -174.45 + 53 263.768 1584 1 0 48.1937 137.035 -175.85 + 53 229.864 1140 0 1 48.1246 137.048 -204.45 + 53 150.335 1584 0 0 48.1208 137.05 -205.85 + 53 113.446 1141 1 1 48.2995 137.013 -174.45 + 53 127.303 1142 0 1 48.6381 136.594 -204.45 + 53 133.065 1582 0 0 48.6603 136.579 -205.85 + 53 30.7074 867 3 0 -8.4037 -6.65 -116.102 +Number of digits in this event = 12 +Using G4ParticleGun ... +1.59405 LIN +gamma +Event: 54 +Number of tracker hits in this event = 24 + 54 250.223 899 3 1 -0.0612125 57.4158 -114.45 + 54 111.456 1187 3 0 -0.218778 57.4635 -115.85 + 54 125.987 885 2 1 -2.89501 58.4119 -144.45 + 54 141.861 1190 2 0 -3.25619 58.1599 -145.85 + 54 219.99 846 1 1 -10.6869 54.0485 -174.45 + 54 152.1 1169 1 0 -11.0309 53.9688 -175.85 + 54 12.3924 804 0 1 -19.2328 51.882 -204.45 + 54 101.94 803 0 1 -19.25 51.8811 -204.488 + 54 115.247 1159 0 0 -19.8052 51.8702 -205.85 + 54 155.086 1287 5 1 77.5313 -41.069 -54.4501 + 54 52.0068 1288 5 1 77.65 -41.2446 -54.7695 + 54 224.543 695 5 0 77.2639 -40.9805 -55.85 + 54 113.304 1186 3 0 -0.0581606 57.4128 -115.85 + 54 115.442 900 1 1 0.165273 57.4577 -174.45 + 54 136.358 1187 1 0 0.175909 57.4614 -175.85 + 54 195.828 901 0 1 0.387989 57.5254 -204.45 + 54 242.069 1187 0 0 0.397906 57.5282 -205.85 + 54 55.409 1082 8 0 20.0762 36.65 33.8741 + 54 3.56963 717 8 0 43.3497 -36.5418 34.15 + 54 228.307 902 0 1 0.45 57.5172 -204.587 + 54 19.9095 903 0 1 0.65 57.4309 -204.809 + 54 7.59713 1186 0 0 1.65561 57.3175 -205.85 + 54 233.675 913 0 1 2.70001 56.6597 -204.85 + 54 102.07 912 0 1 2.65 56.4492 -204.79 +Number of digits in this event = 13 +Using G4ParticleGun ... +6.22399 LIN gamma Event: 55 Number of tracker hits in this event = 0 Number of digits in this event = 2 Using G4ParticleGun ... -8.79389 LIN +9.63157 LIN gamma Event: 56 -Number of tracker hits in this event = 6 - 56 112.757 301 1 0 3.02498 -119.88 -176.25 - 56 72.5171 913 1 1 2.82089 -118.806 -174.85 - 56 301.567 1045 6 1 29.198 -29.2293 -24.45 - 56 22.8618 1046 6 1 29.25 -29.3835 -24.6301 - 56 76.2466 1044 6 1 29.0499 -29.4364 -24.8096 - 56 5.88014 951 11 0 -135.61 10.3992 123.75 -Number of digits in this event = 4 +Number of tracker hits in this event = 50 + 56 286.782 875 3 1 -5.01224 87.9899 -114.45 + 56 270.927 1339 3 0 -5.01331 87.9905 -115.85 + 56 669.344 875 2 1 -5.0361 88.0052 -144.45 + 56 957.95 1339 2 0 -5.03585 88.0062 -145.85 + 56 247.897 875 1 1 -5.03719 88.0321 -174.45 + 56 328.993 1339 1 0 -5.03605 88.0327 -175.85 + 56 242.263 875 0 1 -5.01389 88.0344 -204.45 + 56 252.589 1339 0 0 -5.01199 88.0345 -205.85 + 56 65.3588 135 5 1 -152.95 151.24 -54.7685 + 56 17.6255 822 5 0 -44.7433 -15.5545 -56.25 + 56 235.46 821 5 0 -44.6834 -15.65 -56.0842 + 56 27.7909 820 5 0 -44.5134 -15.85 -55.9393 + 56 131.985 879 1 1 -4.19537 87.865 -174.45 + 56 99.8395 1338 1 0 -4.15886 87.8433 -175.85 + 56 151.775 883 0 1 -3.38631 87.4693 -204.45 + 56 97.6799 1336 0 0 -3.35367 87.4185 -205.85 + 56 25.994 874 2 1 -5.05 88.0134 -144.78 + 56 147.624 1340 2 0 -5.11012 88.05 -146.236 + 56 140.844 868 1 1 -6.2925 88.7441 -174.45 + 56 100.636 1343 1 0 -6.29008 88.7295 -175.85 + 56 107.253 870 0 1 -6.01235 88.613 -204.45 + 56 134.968 1343 0 0 -6.0805 88.6816 -205.85 + 56 62.2203 1338 3 0 -4.29238 87.7255 -115.85 + 56 130.594 1337 3 0 -4.11019 87.65 -115.951 + 56 130.981 1542 3 0 -29.0203 128.561 -116.25 + 56 79.4211 1543 3 0 -29.201 128.75 -116.082 + 56 63.7521 1544 3 0 -29.2988 128.95 -116.105 + 56 310.912 849 1 1 -10.1561 93.8445 -174.45 + 56 344.487 850 1 1 -10.05 94.3525 -174.56 + 56 13.0705 851 1 1 -9.85 95.065 -174.486 + 56 91.2572 1375 1 0 -10.116 95.2373 -175.85 + 56 83.4214 1376 1 0 -10.2561 95.35 -175.986 + 56 67.7837 1377 1 0 -10.407 95.55 -175.935 + 56 41.4918 1378 1 0 -10.5063 95.75 -175.911 + 56 84.4421 845 1 1 -10.9525 95.9989 -174.85 + 56 158.313 844 1 1 -11.05 96.0864 -174.687 + 56 242.115 843 1 1 -11.2502 96.2742 -174.525 + 56 1.15337 1351 1 0 -25.8378 90.4467 -175.85 + 56 73.8838 755 1 1 -28.8949 88.1924 -174.85 + 56 114.253 1516 3 0 -128.074 123.35 -116.157 + 56 69.9222 1515 3 0 -128.193 123.35 -116.005 + 56 98.7295 878 1 1 -4.29861 86.6995 -174.45 + 56 168.539 1331 1 0 -4.28249 86.3776 -175.85 + 56 97.1107 884 0 1 -3.13875 79.7148 -204.45 + 56 87.9084 1297 0 0 -2.89087 79.4871 -205.852 + 56 42.6093 1296 0 0 -2.84424 79.45 -206.094 + 56 8.21927 874 1 1 -5.05009 87.9566 -174.45 + 56 116.137 608 4 1 -58.256 5.26918 -84.85 + 56 53.6717 609 4 1 -58.25 5.19537 -84.7674 + 56 107.782 738 2 1 -32.3279 115.504 -144.85 +Number of digits in this event = 24 Using G4ParticleGun ... -9.85821 LIN +3.08027 LIN gamma Event: 57 -Number of tracker hits in this event = 30 - 57 227.362 986 6 1 17.3432 6.30022 -24.45 - 57 297.074 931 6 0 17.3455 6.29948 -25.85 - 57 238.464 986 5 1 17.3846 6.28704 -54.45 - 57 358.733 931 5 0 17.3925 6.28396 -55.85 - 57 145.688 987 4 1 17.5768 6.22681 -84.45 - 57 242.58 930 4 0 17.5927 6.21811 -85.85 - 57 132.52 989 3 1 17.9216 6.05219 -114.45 - 57 133.739 929 3 0 17.9452 6.04547 -115.85 - 57 140.671 991 2 1 18.4208 5.91015 -144.45 - 57 202.056 929 2 0 18.4465 5.90318 -145.85 - 57 246.995 994 1 1 18.9684 5.73932 -174.45 - 57 107.958 928 1 0 18.9916 5.73704 -175.85 - 57 129.67 996 0 1 19.4444 5.68683 -204.45 - 57 3.00986 997 0 1 19.45 5.68543 -204.837 - 57 181.432 928 0 0 19.4636 5.68195 -205.85 - 57 94.7014 965 1 1 13.2109 -25.1631 -174.85 - 57 139.862 986 4 1 17.3241 6.28933 -84.45 - 57 120.8 931 4 0 17.3231 6.28812 -85.85 - 57 199.707 986 3 1 17.2983 6.26141 -114.45 - 57 121.816 931 3 0 17.2961 6.26018 -115.85 - 57 127.44 986 2 1 17.2514 6.23364 -144.45 - 57 225.776 930 2 0 17.2468 6.23099 -145.85 - 57 126.826 985 1 1 17.1501 6.1701 -174.45 - 57 108.515 930 1 0 17.1431 6.16617 -175.85 - 57 110.594 984 0 1 16.9939 6.0449 -204.45 - 57 106.457 929 0 0 16.9919 6.03802 -205.85 - 57 151.952 919 2 0 35.0935 3.92817 -146.25 - 57 23.4246 8 6 1 -178.404 80.3162 -24.85 - 57 58.116 716 2 0 -107.439 -36.65 -146.171 - 57 263.971 931 2 0 -120.906 6.25005 -145.954 -Number of digits in this event = 25 -Using G4ParticleGun ... -1.13866 LIN -gamma -Event: 58 -Number of tracker hits in this event = 2 - 58 292.498 111 2 0 -33.0445 -157.916 -146.25 - 58 339.072 941 4 0 -6.52988 8.26727 -86.25 -Number of digits in this event = 4 -Using G4ParticleGun ... -1.14711 LIN -gamma -Event: 59 -Number of tracker hits in this event = 8 - 59 258.29 1039 1 1 27.8595 -1.99841 -174.45 - 59 629.664 890 1 0 27.8479 -1.99318 -175.85 - 59 320.81 1038 0 1 27.6883 -1.93986 -204.45 - 59 297.521 890 0 0 27.6884 -1.90659 -205.85 - 59 37.1468 1179 2 0 -88.2488 55.9977 -145.85 - 59 122.824 1267 0 0 62.5516 73.5251 -206.25 - 59 176.014 1210 0 1 62.1808 73.1944 -204.85 - 59 176.708 1209 0 1 62.05 73.1213 -204.518 -Number of digits in this event = 9 -Using G4ParticleGun ... -6.46944 LIN -gamma -Event: 60 -Number of tracker hits in this event = 40 - 60 211.374 897 6 1 -0.526328 2.11402 -24.45 - 60 251.32 910 6 0 -0.538516 2.1094 -25.85 - 60 115.827 896 5 1 -0.762882 1.9534 -54.45 - 60 142.898 909 5 0 -0.765938 1.94097 -55.85 - 60 127.778 895 4 1 -0.913047 1.79899 -84.45 - 60 110.116 908 4 0 -0.916927 1.81323 -85.85 - 60 142.207 895 3 1 -0.932259 2.05681 -114.45 - 60 359.039 909 3 0 -0.980884 2.03712 -115.85 - 60 195.918 890 2 1 -1.92372 1.62783 -144.45 - 60 212.81 907 2 0 -1.95066 1.57917 -145.85 - 60 122.017 887 1 1 -2.45954 0.594478 -174.45 - 60 155.885 902 1 0 -2.47519 0.517839 -175.85 - 60 121.217 886 0 1 -2.73655 -1.03147 -204.45 - 60 112.354 894 0 0 -2.7879 -1.10328 -205.85 - 60 58.7583 883 0 1 -3.31138 1.20583 -204.45 - 60 9.40321 906 0 0 -3.12768 1.44003 -205.85 - 60 211.979 907 0 0 -3.12113 1.45 -205.891 - 60 109.791 897 5 1 -0.503243 2.10514 -54.45 - 60 148.943 910 5 0 -0.501997 2.10549 -55.85 - 60 213.31 897 4 1 -0.479154 2.11234 -84.45 - 60 278.028 910 4 0 -0.480796 2.10675 -85.85 - 60 112.649 897 3 1 -0.502016 1.98426 -114.45 - 60 130.668 897 2 1 -0.528417 1.83219 -144.45 - 60 124.698 908 2 0 -0.529615 1.82646 -145.85 - 60 108.774 897 1 1 -0.56393 1.7152 -174.45 - 60 113.086 908 1 0 -0.569092 1.71035 -175.85 - 60 330.254 897 0 1 -0.646237 1.60408 -204.45 - 60 355.145 898 0 1 -0.45 1.8588 -204.837 - 60 8.96088 911 0 0 0.0764742 2.43372 -205.85 - 60 159.105 912 0 0 0.0905987 2.45 -205.877 - 60 72.9232 1559 5 0 155.044 132.026 -56.25 - 60 71.8278 1560 5 0 155.108 132.15 -56.2032 - 60 9.64594 911 4 0 -0.745696 2.25011 -86.243 - 60 279.278 1250 4 0 -83.8161 70.1307 -86.25 - 60 202.55 909 1 0 -0.351851 1.95908 -175.91 - 60 207.821 909 0 0 -0.322157 1.95308 -205.85 - 60 16.3008 407 1 0 -42.075 -98.5803 -176.25 - 60 94.9964 1637 10 0 -2.78319 147.55 93.8135 - 60 20.9838 552 10 1 -69.45 120.164 95.3422 - 60 180.348 887 10 1 -2.54715 147.299 95.15 -Number of digits in this event = 27 -Using G4ParticleGun ... -1.66224 LIN -gamma -Event: 61 -Number of tracker hits in this event = 35 - 61 207.065 465 6 1 -86.8856 100.138 -24.45 - 61 248.906 1399 6 0 -86.8858 100.137 -25.85 - 61 252.361 465 5 1 -86.9088 100.125 -54.45 - 61 284.923 1399 5 0 -86.9156 100.124 -55.85 - 61 216.916 465 4 1 -87.0168 100.072 -84.45 - 61 274.394 1399 4 0 -87.0139 100.089 -85.85 - 61 113.386 465 3 1 -86.8895 100.372 -114.45 - 61 294.213 1401 3 0 -86.8928 100.386 -115.85 - 61 105.516 465 2 1 -86.9952 100.674 -144.45 - 61 104.917 1402 2 0 -86.9895 100.699 -145.85 - 61 102.836 465 1 1 -86.8641 101.139 -174.45 - 61 116.674 1405 1 0 -86.9207 101.186 -175.85 - 61 111.997 459 0 1 -88.1744 102.199 -204.45 - 61 136.747 1410 0 0 -88.232 102.249 -205.85 - 61 231.558 461 0 1 -87.6973 102.01 -204.45 - 61 141.573 1409 0 0 -87.7307 102.023 -205.85 - 61 102.477 1408 0 0 -87.5501 101.851 -205.85 - 61 61.373 1400 4 0 -87.1016 100.15 -86.1159 - 61 45.2192 1602 4 0 -105.35 140.685 -86.25 - 61 73.7372 1603 4 0 -105.354 140.75 -86.1593 - 61 82.441 1604 4 0 -105.383 140.95 -86.2161 - 61 139.547 1589 4 0 -145.941 138.118 -86.2499 - 61 38.6409 800 1 0 -102.26 -19.9608 -176.25 - 61 25.1398 846 1 0 -105.659 -10.667 -176.25 - 61 5.87259 847 1 0 -105.672 -10.65 -176.243 - 61 251.435 467 3 1 -86.491 100.344 -114.45 - 61 133.978 469 2 1 -86.1335 100.815 -144.45 - 61 132.403 1403 2 0 -86.1037 100.854 -145.85 - 61 115.33 473 1 1 -85.429 101.644 -174.45 - 61 92.8597 1407 1 0 -85.4192 101.685 -175.85 - 61 124.997 474 0 1 -85.1309 102.526 -204.45 - 61 104.414 1412 0 0 -85.1057 102.57 -205.85 - 61 225.284 1530 4 1 126.157 -64.227 -84.4503 - 61 189.191 1491 0 0 -80.7473 118.364 -206.25 - 61 6.80483 468 3 1 -86.45 100.288 -114.61 -Number of digits in this event = 19 -Using G4ParticleGun ... -6.54452 LIN -gamma -Event: 62 -Number of tracker hits in this event = 4 - 62 92.2034 1174 3 0 -50.6125 55.0106 -116.25 - 62 97.7963 1175 3 0 -50.608 55.0501 -116.221 - 62 38.0864 1394 3 0 -52.0563 98.9819 -116.25 - 62 214.787 405 6 0 42.5418 -99.0373 -26.2498 -Number of digits in this event = 3 -Using G4ParticleGun ... -6.29934 LIN -gamma -Event: 63 -Number of tracker hits in this event = 50 - 63 147.664 1060 9 1 32.1142 -68.2694 65.2448 - 63 466.196 558 9 0 32.1141 -68.2695 64.15 - 63 260.698 1060 8 1 32.1187 -68.2697 35.55 - 63 227.549 558 8 0 32.1208 -68.2697 34.15 - 63 217.287 1060 7 1 32.1561 -68.263 5.55 - 63 287.017 558 7 0 32.1574 -68.2655 4.15 - 63 152.251 1060 6 1 32.1832 -68.3108 -24.45 - 63 114.928 558 6 0 32.1853 -68.3125 -25.85 - 63 119.51 1060 5 1 32.2351 -68.3482 -54.45 - 63 246.139 558 5 0 32.237 -68.3493 -55.85 - 63 104.27 1061 4 1 32.2811 -68.3714 -84.45 - 63 184.264 558 4 0 32.2866 -68.3706 -85.85 - 63 127.936 1061 3 1 32.4047 -68.3508 -114.45 - 63 157.102 558 3 0 32.413 -68.3467 -115.85 - 63 108.349 1062 2 1 32.578 -68.2595 -144.45 - 63 142.464 558 2 0 32.5854 -68.2535 -145.85 - 63 122.735 1063 1 1 32.7456 -68.1287 -174.45 - 63 143.82 559 1 0 32.7516 -68.1216 -175.85 - 63 238.802 1064 0 1 32.8903 -67.9693 -204.45 - 63 123.606 560 0 0 32.8988 -67.9611 -205.85 - 63 31.3053 250 4 1 -129.95 -110.592 -84.6982 - 63 89.4171 1064 1 1 32.85 -68.0904 -174.484 - 63 88.0109 1065 1 1 33.05 -68.1754 -174.638 - 63 105.414 1066 1 1 33.25 -68.2811 -174.825 - 63 91.6235 1067 1 1 33.4503 -68.4886 -174.775 - 63 57.2226 1068 1 1 33.6502 -68.6819 -174.822 - 63 4.91486 550 1 0 35.2312 -70.0336 -175.85 - 63 20.5998 1091 1 1 38.3966 -72.4432 -174.85 - 63 91.4982 1092 1 1 38.45 -72.4394 -174.844 - 63 26.0786 513 1 0 37.9905 -77.3668 -175.85 - 63 163.364 1090 1 1 38.139 -79.8813 -174.85 - 63 186.317 892 3 1 -1.62302 -175.506 -114.45 - 63 15.7984 559 8 0 32.128 -68.2498 34.15 - 63 166.336 1061 7 1 32.3285 -68.3347 5.55 - 63 168.907 1063 6 1 32.8014 -68.2161 -24.45 - 63 106.377 559 6 0 32.8222 -68.2196 -25.85 - 63 345.643 1065 5 1 33.1895 -68.3318 -54.45 - 63 119.164 1069 4 1 33.9064 -68.5827 -84.45 - 63 127.22 557 4 0 33.9509 -68.5916 -85.85 - 63 134.092 1074 3 1 34.8676 -68.8331 -114.45 - 63 145.6 556 3 0 34.8881 -68.833 -115.85 - 63 111.481 1076 2 1 35.295 -68.8131 -144.45 - 63 58.7666 556 2 0 35.3043 -68.8456 -145.85 - 63 52.2369 555 2 0 35.3059 -68.85 -146.037 - 63 116.292 1077 1 1 35.5626 -69.4767 -174.45 - 63 104.154 552 1 0 35.5615 -69.5255 -175.85 - 63 112.893 1077 0 1 35.4954 -70.4151 -204.45 - 63 63.1935 548 0 0 35.4858 -70.4455 -205.85 - 63 49.4946 547 0 0 35.4843 -70.45 -206.059 - 63 115.264 1066 5 1 33.25 -68.2332 -54.7004 -Number of digits in this event = 26 -Using G4ParticleGun ... -1.76605 LIN -gamma -Event: 64 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -7.36904 LIN -gamma -Event: 65 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -2.7824 LIN -gamma -Event: 66 -Number of tracker hits in this event = 29 - 66 247.348 725 5 1 -34.9681 22.6317 -54.45 - 66 264.151 1012 5 0 -34.9575 22.6092 -55.85 - 66 106.81 726 4 1 -34.7502 22.1213 -84.45 - 66 189.141 1010 4 0 -34.7497 22.1328 -85.85 - 66 130.516 726 3 1 -34.7535 22.2577 -114.45 - 66 126.258 1011 3 0 -34.7509 22.2615 -115.85 - 66 124.602 726 2 1 -34.7417 22.3903 -144.45 - 66 133.739 1011 2 0 -34.7498 22.4031 -145.85 - 66 233.625 725 1 1 -34.869 22.6497 -174.45 - 66 101.483 1013 1 0 -34.8834 22.6579 -175.85 - 66 200.593 724 0 1 -35.1529 22.851 -204.45 - 66 104.291 1014 0 0 -35.1479 22.8686 -205.85 - 66 124.56 992 1 0 55.3994 18.4515 -176.25 - 66 11.788 993 1 0 55.7378 18.65 -176.034 - 66 174.183 1001 1 1 20.25 13.6659 -174.527 - 66 0.421015 727 3 1 -34.5855 21.4898 -114.45 - 66 96.7078 1002 3 0 -34.9562 20.5934 -115.85 - 66 153.828 725 4 1 -34.9227 22.6359 -84.45 - 66 125.624 1012 4 0 -34.9199 22.6387 -85.85 - 66 111.244 725 3 1 -34.8643 22.6925 -114.45 - 66 104.604 1013 3 0 -34.8652 22.6968 -115.85 - 66 188.854 725 2 1 -34.887 22.7983 -144.45 - 66 162.058 1013 2 0 -34.893 22.8038 -145.85 - 66 114.771 1014 1 0 -35.0172 22.9363 -175.85 - 66 129.615 1015 0 0 -35.2233 23.1485 -205.85 - 66 26.7347 460 2 0 -35.4301 -87.85 -146.171 - 66 126.666 724 2 1 -35.0573 -88.8831 -144.85 - 66 403.692 723 2 1 -35.25 -89.3247 -144.633 - 66 226.213 722 2 1 -35.45 -89.531 -144.564 -Number of digits in this event = 22 -Using G4ParticleGun ... -3.84044 LIN -gamma -Event: 67 -Number of tracker hits in this event = 30 - 67 207.034 802 4 1 -19.502 81.0196 -84.45 - 67 256.471 1304 4 0 -19.5001 81.0171 -85.85 - 67 313.624 802 3 1 -19.4816 80.9478 -114.45 - 67 96.8502 1304 3 0 -19.4797 80.9369 -115.85 - 67 121.381 803 2 1 -19.4458 80.7165 -144.45 - 67 107.858 1303 2 0 -19.4453 80.7023 -145.85 - 67 202.865 803 1 1 -19.4137 80.4196 -174.45 - 67 108.731 1301 1 0 -19.4119 80.4096 -175.85 - 67 117.98 803 0 1 -19.3727 80.1765 -204.45 - 67 126.733 1300 0 0 -19.374 80.1639 -205.85 - 67 8.3898 128 1 1 -154.41 -94.2845 -174.45 - 67 139.741 1263 0 0 -8.57078 72.781 -206.25 - 67 66.387 1262 0 0 -8.18803 72.6497 -205.947 - 67 58.3411 869 0 1 -6.18658 70.914 -204.85 - 67 87.0133 870 0 1 -6.05 70.8086 -204.795 - 67 99.2662 871 0 1 -5.84994 70.6762 -204.757 - 67 52.9666 872 0 1 -5.6498 70.6113 -204.762 - 67 369.121 873 0 1 -5.44975 70.5416 -204.718 - 67 123.417 874 0 1 -5.25 70.5935 -204.491 - 67 99.0021 1305 3 0 -19.5215 81.1474 -115.85 - 67 103.51 801 2 1 -19.7635 81.2127 -144.45 - 67 102.374 1305 2 0 -19.7743 81.2143 -145.85 - 67 105.164 800 1 1 -19.9979 81.2317 -174.45 - 67 106.675 1305 1 0 -20.0067 81.2371 -175.85 - 67 110.721 799 0 1 -20.2115 81.3462 -204.45 - 67 122.226 1306 0 0 -20.2192 81.3539 -205.85 - 67 8.25421 647 1 1 -50.474 102.522 -174.85 - 67 110.861 646 1 1 -50.65 102.566 -174.577 - 67 164.877 800 7 1 -19.9758 139.328 5.15 - 67 1.87572 994 4 1 18.8725 96.5845 -84.45 -Number of digits in this event = 13 -Using G4ParticleGun ... -7.26214 LIN -gamma -Event: 68 -Number of tracker hits in this event = 11 - 68 206.863 1204 2 1 61.0462 62.9801 -144.45 - 68 257.273 1214 2 0 61.0469 62.98 -145.85 - 68 128.412 1205 1 1 61.0695 62.9724 -174.45 - 68 337.195 1214 1 0 61.0717 62.972 -175.85 - 68 384.194 1205 0 1 61.1263 62.9667 -204.45 - 68 342.468 1214 0 0 61.13 62.9661 -205.85 - 68 121.294 1204 1 1 61.0167 62.9176 -174.45 - 68 92.4015 1060 5 1 32.135 60.2621 -54.85 - 68 122.818 1059 5 1 32.05 60.2595 -54.5276 - 68 219.547 1345 1 0 76.4736 89.1537 -176.25 - 68 76.5685 1213 0 0 61.1642 62.8497 -205.976 -Number of digits in this event = 11 -Using G4ParticleGun ... -1.08202 LIN -gamma -Event: 69 -Number of tracker hits in this event = 100 - 69 318.824 778 9 1 -24.3996 49.8708 65.55 - 69 267.616 1149 9 0 -24.3907 49.8708 64.15 - 69 337.512 779 8 1 -24.2485 49.8754 35.55 - 69 128.909 1149 8 0 -24.2422 49.871 34.15 - 69 199.701 779 7 1 -24.1147 49.781 5.55 - 69 170.922 1148 7 0 -24.1096 49.7771 4.15 - 69 127.139 780 6 1 -24.0003 49.6997 -24.45 - 69 245.33 1148 6 0 -23.9933 49.7 -25.85 - 69 129.256 780 5 1 -23.8647 49.7197 -54.45 - 69 107.144 1148 5 0 -23.8372 49.7117 -55.85 - 69 117.748 784 4 1 -23.2323 50.0454 -84.45 - 69 187.213 1150 4 0 -23.244 50.0549 -85.85 - 69 207.225 782 3 1 -23.5007 50.2889 -114.45 - 69 116.573 1151 3 0 -23.4812 50.3278 -115.85 - 69 191.938 785 2 1 -22.9805 51.2002 -144.45 - 69 133.457 1156 2 0 -22.9535 51.2621 -145.85 - 69 119.606 786 1 1 -22.6863 52.45 -174.45 - 69 129.629 1162 1 0 -22.7012 52.5347 -175.85 - 69 1.81581 784 0 1 -23.249 54.1689 -204.451 - 69 98.8508 783 0 1 -23.25 54.1691 -204.461 - 69 108.784 1170 0 0 -23.3596 54.1895 -205.85 - 69 11.9521 1120 5 0 0.329003 44.057 -56.25 - 69 137.081 1119 5 0 0.357276 44.05 -56.2166 - 69 36.2686 907 5 1 1.57296 43.5457 -54.85 - 69 89.271 908 5 1 1.65138 43.5091 -54.7515 - 69 69.2708 909 5 1 1.85008 43.4065 -54.5421 - 69 238.397 790 2 1 -22.0171 48.879 -144.45 - 69 134.41 1144 2 0 -21.886 48.889 -145.85 - 69 132.818 805 1 1 -18.9816 48.8408 -174.45 - 69 152.207 1144 1 0 -18.5173 48.8793 -175.85 - 69 58.0784 853 0 1 -9.29745 49.0907 -204.45 - 69 41.3617 854 0 1 -9.25 49.0689 -204.675 - 69 133.972 1144 0 0 -9.01986 48.9614 -205.85 - 69 12.357 791 2 1 -21.8499 48.7658 -144.804 - 69 39.4053 1142 2 0 -21.4616 48.4845 -145.85 - 69 123.338 1141 2 0 -21.3911 48.45 -145.999 - 69 139.277 861 1 1 -7.84418 39.3422 -174.45 - 69 90.393 1099 1 0 -7.36909 39.9228 -175.851 - 69 12.1958 1100 1 0 -7.22193 40.05 -176.199 - 69 46.8281 954 0 1 11.0211 49.9924 -204.45 - 69 54.638 955 0 1 11.05 49.9748 -204.615 - 69 107.501 1149 0 0 11.0307 49.9122 -205.85 - 69 202.917 778 8 1 -24.2502 49.7884 35.4589 - 69 67.9321 778 7 1 -24.25 50.136 5.35963 - 69 168.163 1152 7 0 -25.0442 50.4863 4.15 - 69 100.856 1153 7 0 -25.4322 50.65 3.82863 - 69 7.87791 311 6 1 -117.765 67.5519 -24.45 - 69 130.292 312 6 1 -117.75 67.5647 -24.486 - 69 25.8354 313 6 1 -117.55 67.7121 -24.782 - 69 42.4059 1242 6 0 -116.23 68.5586 -25.85 - 69 422.376 1243 6 0 -116.086 68.6501 -25.9598 - 69 42.6109 362 6 1 -107.659 71.7319 -24.8499 - 69 97.9549 363 6 1 -107.55 71.7778 -24.8298 - 69 73.8352 364 6 1 -107.35 71.8255 -24.7765 - 69 60.9305 365 6 1 -107.15 71.8298 -24.7026 - 69 80.4587 366 6 1 -106.95 71.8205 -24.6343 - 69 58.2661 367 6 1 -106.75 71.8613 -24.6008 - 69 102.642 368 6 1 -106.55 71.9639 -24.6491 - 69 112.468 369 6 1 -106.35 72.0842 -24.7374 - 69 44.7798 370 6 1 -106.15 72.338 -24.8286 - 69 60.4594 1271 6 0 -103.864 74.3443 -25.85 - 69 105.67 1272 6 0 -103.693 74.45 -25.9676 - 69 106.917 1273 6 0 -103.398 74.65 -26.0884 - 69 142.489 384 6 1 -103.306 75.4576 -24.8499 - 69 231.44 385 6 1 -103.15 75.8148 -24.5277 - 69 44.9989 386 6 1 -102.95 75.9201 -24.7578 - 69 118.008 1286 6 0 -105.066 77.3956 -25.8501 - 69 9.48961 1282 6 0 -103.212 76.5247 -25.85 - 69 114.594 770 8 1 -26.0056 50.8582 35.55 - 69 111.696 1154 8 0 -26.0827 50.907 34.15 - 69 113.111 761 7 1 -27.7904 51.7723 5.55 - 69 104.285 1159 7 0 -27.9458 51.8886 4.15 - 69 135.1 744 6 1 -31.1898 54.2596 -24.45 - 69 109.051 1172 6 0 -31.3125 54.4648 -25.85 - 69 94.7058 728 5 1 -34.2606 58.8067 -54.45 - 69 151.948 1195 5 0 -34.3701 59.0603 -55.85 - 69 105.717 718 4 1 -36.3124 64.0516 -84.45 - 69 125.121 1221 4 0 -36.3117 64.2666 -85.85 - 69 215.135 719 3 1 -36.235 68.4538 -114.45 - 69 107.65 1242 3 0 -36.207 68.5801 -115.85 - 69 110.746 723 2 1 -35.4427 70.8742 -144.45 - 69 128.221 1255 2 0 -35.3735 71.1252 -145.85 - 69 115.571 731 1 1 -33.7455 76.3939 -174.45 - 69 77.9132 1282 1 0 -33.6675 76.607 -175.85 - 69 49.5397 1283 1 0 -33.6507 76.65 -176.109 - 69 0.977328 741 0 1 -31.6505 81.4233 -204.45 - 69 154.916 742 0 1 -31.65 81.424 -204.454 - 69 116.282 1308 0 0 -31.4945 81.6641 -205.85 - 69 168.863 777 9 1 -24.4567 49.9487 65.55 - 69 46.5943 776 9 1 -24.65 50.388 65.2465 - 69 33.349 1159 9 0 -25.4794 51.9541 64.15 - 69 87.2498 1160 9 0 -25.5315 52.05 64.0781 - 69 77.9452 1161 9 0 -25.6539 52.25 63.9284 - 69 120.547 1162 9 0 -25.7698 52.45 63.787 - 69 19.7901 661 8 1 -47.6761 93.4812 35.5496 - 69 106.016 662 8 1 -47.65 93.4614 35.4995 - 69 35.1737 1361 8 0 -46.3482 92.4005 34.15 - 69 116.223 1360 8 0 -46.2945 92.35 34.1012 - 69 106.669 1359 8 0 -46.0334 92.15 33.9176 - 69 27.0099 1358 8 0 -45.7796 91.95 33.7523 -Number of digits in this event = 38 -Using G4ParticleGun ... -1.31939 LIN -gamma -Event: 70 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -8.02498 LIN -gamma -Event: 71 -Number of tracker hits in this event = 25 - 71 283.135 1460 0 1 112.264 -69.7712 -204.45 - 71 406.514 551 0 0 112.264 -69.7756 -205.85 - 71 153.861 1451 3 1 110.544 6.34273 -114.85 - 71 29.142 954 4 0 143.177 10.91 -86.25 - 71 137.275 1615 4 1 143.193 11.4936 -84.8499 - 71 218.703 735 5 0 33.251 -33.0082 -56.2498 - 71 102.843 736 5 0 33.0552 -32.85 -56.1397 - 71 303.243 287 4 0 178.053 -122.735 -86.25 - 71 48.9121 1673 6 1 154.871 52.0289 -24.45 - 71 41.384 1202 4 0 155.35 60.45 -85.9495 - 71 4.70584 1201 4 0 155.411 60.45 -85.8526 - 71 21.8001 1676 4 1 155.466 48.1362 -84.85 - 71 7.05219 1111 4 0 156.998 42.2691 -85.85 - 71 7.33843 1110 4 0 157.003 42.25 -85.8513 - 71 36.3683 1688 4 1 157.87 39.4404 -84.85 - 71 39.0727 1071 4 0 166.257 34.3121 -85.85 - 71 25.3209 1070 4 0 166.295 34.25 -85.8567 - 71 76.4435 1730 4 1 166.187 31.6937 -84.8499 - 71 33.2363 1055 4 0 167.161 31.2097 -85.85 - 71 38.5045 1742 8 0 55.9564 168.55 34.0626 - 71 12.1252 1176 8 1 55.3238 170.315 35.15 - 71 0.945603 1755 8 0 55.2494 171.348 34.1496 - 71 109.14 1756 8 0 55.2494 171.35 34.147 - 71 75.6703 1182 8 1 56.641 170.7 35.15 - 71 52.7347 1183 8 1 56.65 170.691 35.1582 -Number of digits in this event = 9 -Using G4ParticleGun ... -5.64827 LIN -gamma -Event: 72 -Number of tracker hits in this event = 21 - 72 335.102 268 0 1 -126.516 58.5841 -204.45 - 72 269.069 1192 0 0 -126.516 58.5834 -205.85 - 72 230.272 1183 0 0 -159.825 56.6759 -206.25 - 72 34.5525 1182 0 0 -159.984 56.6498 -206.062 - 72 145.23 1184 0 0 -160.483 56.8503 -205.937 - 72 104.442 1185 0 0 -161.012 57.05 -206.079 - 72 115.42 1186 0 0 -161.287 57.25 -206.128 - 72 88.2891 1187 0 0 -161.406 57.4503 -206.121 - 72 233.318 1188 0 0 -161.547 57.65 -206.056 - 72 188.877 1189 0 0 -161.807 57.8502 -206.026 - 72 527.879 1190 0 0 -162.298 58.05 -205.968 - 72 138.853 1266 6 0 -30.0603 73.2501 -26.25 - 72 187.955 860 5 0 -93.5038 -7.9058 -56.25 - 72 209.574 859 5 0 -93.6994 -8.05006 -56.1352 - 72 74.6159 269 0 1 -126.35 58.5824 -204.694 - 72 132.972 270 0 1 -126.15 58.5635 -204.744 - 72 235.673 271 0 1 -125.95 58.4661 -204.695 - 72 44.9386 267 0 1 -126.55 58.5944 -204.796 - 72 170.953 1194 0 0 -127.648 58.9494 -205.85 - 72 0.743127 1195 0 0 -127.918 59.05 -206.248 - 72 62.7342 1339 0 0 -133.07 87.85 -206.217 -Number of digits in this event = 15 -Using G4ParticleGun ... -1.19084 LIN -gamma -Event: 73 -Number of tracker hits in this event = 76 - 73 231.789 401 8 1 -99.7643 -16.318 35.55 - 73 227.041 818 8 0 -99.7684 -16.3155 34.15 - 73 265.386 401 7 1 -99.8687 -16.2668 5.55 - 73 162.041 818 7 0 -99.8691 -16.2659 4.15 - 73 123.096 401 6 1 -99.8355 -16.2332 -24.45 - 73 255.603 819 6 0 -99.8088 -16.2347 -25.85 - 73 144.231 405 5 1 -99.0874 -16.3624 -54.45 - 73 112.411 818 5 0 -99.0244 -16.4026 -55.85 - 73 112.242 411 4 1 -97.9015 -17.3102 -84.45 - 73 118.753 813 4 0 -97.844 -17.3907 -85.85 - 73 213.807 419 3 1 -96.3151 -18.8336 -114.45 - 73 117.478 805 3 0 -96.233 -18.8836 -115.85 - 73 137.688 427 2 1 -94.5655 -19.8448 -144.45 - 73 183.55 801 2 0 -94.5828 -19.8071 -145.85 - 73 205.631 424 1 1 -95.1894 -19.098 -174.451 - 73 172.576 804 1 0 -95.0979 -19.1263 -175.85 - 73 110.931 435 0 1 -93.1205 -19.8877 -204.45 - 73 200.212 800 0 0 -92.9723 -19.9585 -205.85 - 73 178.331 800 2 0 -94.4943 -19.85 -145.89 - 73 111.743 428 2 1 -94.55 -19.8677 -144.532 - 73 132.269 799 2 0 -94.3473 -20.1336 -145.85 - 73 103.395 450 1 1 -89.957 -25.2612 -174.45 - 73 12.8136 451 1 1 -89.85 -25.4069 -174.813 - 73 79.8154 771 1 0 -89.5727 -25.7658 -175.85 - 73 44.3863 770 1 0 -89.5047 -25.85 -176.088 - 73 86.1133 498 0 1 -80.4135 -35.8419 -204.45 - 73 202.913 719 0 0 -80.1022 -36.1101 -205.85 - 73 3.57563 588 3 0 11.2222 -62.2568 -116.25 - 73 381.211 589 3 0 11.229 -62.2495 -116.24 - 73 164.421 819 7 0 -99.846 -16.2452 4.15 - 73 148.169 400 6 1 -100.071 -16.244 -24.45 - 73 110.062 400 5 1 -100.003 -16.2017 -54.45 - 73 135.278 819 5 0 -100.002 -16.1915 -55.85 - 73 137.984 400 4 1 -100.001 -15.9573 -84.45 - 73 112.642 820 4 0 -100.006 -15.9553 -85.85 - 73 106.469 400 3 1 -100.126 -15.9284 -114.45 - 73 89.074 820 3 0 -100.127 -15.9078 -115.85 - 73 122.283 400 2 1 -100.122 -15.4418 -144.45 - 73 310.389 823 2 0 -100.12 -15.4255 -145.85 - 73 114.108 400 1 1 -100.084 -15.1136 -174.45 - 73 115.735 824 1 0 -100.095 -15.0923 -175.85 - 73 136.569 399 0 1 -100.321 -14.8157 -204.45 - 73 118.353 826 0 0 -100.387 -14.8396 -205.85 - 73 65.5956 822 2 0 -100.078 -15.45 -146.071 - 73 365.006 402 4 1 -99.679 -16.7951 -84.45 - 73 299.088 815 4 0 -99.8261 -16.8766 -85.85 - 73 131.17 376 3 1 -104.818 -18.1592 -114.45 - 73 79.4247 809 3 0 -104.856 -18.2311 -115.85 - 73 43.5794 808 3 0 -104.862 -18.25 -116.085 - 73 203.954 374 2 1 -105.209 -20.8035 -144.45 - 73 0.78317 794 2 0 -105.582 -21.249 -145.85 - 73 133.702 793 2 0 -105.583 -21.25 -145.853 - 73 125.022 343 1 1 -111.482 -29.3085 -174.45 - 73 142.656 747 1 0 -111.42 -30.4561 -175.852 - 73 32.4856 746 1 0 -111.403 -30.6501 -176.14 - 73 118.453 354 0 1 -109.263 -49.3872 -204.45 - 73 42.9269 353 0 1 -109.35 -49.4247 -204.734 - 73 125.523 652 0 0 -109.759 -49.5804 -205.85 - 73 20.8513 121 2 0 14.1822 -155.75 -146.183 - 73 45.5019 411 3 1 -97.774 -16.9921 -114.45 - 73 54.1944 412 3 1 -97.75 -17.0032 -114.625 - 73 112.18 814 3 0 -97.6243 -17.0526 -115.85 - 73 136.051 436 2 1 -92.7851 -18.178 -144.45 - 73 36.4124 437 2 1 -92.75 -18.3748 -144.745 - 73 118.577 803 2 0 -92.5481 -19.2788 -145.85 - 73 101.524 802 2 0 -92.4874 -19.45 -146.039 - 73 9.77948 489 1 1 -82.0636 -45.1586 -174.45 - 73 207.142 490 1 1 -82.05 -45.1857 -174.479 - 73 84.3355 491 1 1 -81.85 -45.5264 -174.771 - 73 48.4604 665 1 0 -80.9139 -46.9497 -175.85 - 73 86.9457 664 1 0 -80.8396 -47.05 -175.936 - 73 208.431 663 1 0 -80.6991 -47.25 -176.109 - 73 30.5088 627 0 1 -54.481 -80.4991 -204.45 - 73 219.254 628 0 1 -54.4499 -80.4349 -204.508 - 73 48.2372 503 0 0 -54.0924 -79.3439 -205.851 - 73 91.0173 504 0 0 -54.0687 -79.2497 -205.985 -Number of digits in this event = 38 -Using G4ParticleGun ... -9.22968 LIN -gamma -Event: 74 -Number of tracker hits in this event = 96 - 74 335.245 862 8 1 -7.63947 78.5846 35.55 - 74 309.18 1292 8 0 -7.64165 78.585 34.15 - 74 402.266 861 7 1 -7.69566 78.6245 5.55 - 74 291.064 1292 7 0 -7.6953 78.6292 4.15 - 74 119.565 861 6 1 -7.67943 78.7005 -24.45 - 74 148.94 1293 6 0 -7.69142 78.6953 -25.85 - 74 142.267 860 5 1 -7.92049 78.5719 -54.45 - 74 309.014 1292 5 0 -7.93766 78.5651 -55.85 - 74 405.916 858 4 1 -8.30711 78.4022 -84.45 - 74 113.543 1291 4 0 -8.32428 78.3855 -85.85 - 74 420.145 857 3 1 -8.64298 78.0135 -114.45 - 74 110.505 1289 3 0 -8.65619 77.9873 -115.85 - 74 268.386 855 2 1 -8.9619 77.5249 -144.45 - 74 109.729 1287 2 0 -8.97415 77.4951 -145.85 - 74 118.956 854 1 1 -9.22393 76.8826 -174.45 - 74 69.5086 1284 1 0 -9.24237 76.8551 -175.85 - 74 34.3901 1283 1 0 -9.24585 76.85 -176.111 - 74 105.008 852 0 1 -9.58445 76.2695 -204.45 - 74 134.179 1280 0 0 -9.58701 76.2358 -205.85 - 74 51.6194 854 2 1 -9.05012 77.7576 -144.745 - 74 176.199 1293 2 0 -10.8546 78.82 -145.85 - 74 261.161 1294 2 0 -10.9071 78.85 -145.877 - 74 322.985 1295 2 0 -11.2426 79.05 -146.194 - 74 124.115 1296 2 0 -11.5286 79.25 -146.058 - 74 121.34 1297 2 0 -11.5344 79.4501 -145.875 - 74 76.492 847 2 1 -10.5884 79.624 -144.85 - 74 318.351 859 4 1 -8.25 78.4645 -84.5269 - 74 55.9486 1293 4 0 -7.78819 78.8112 -85.85 - 74 75.1431 1294 4 0 -7.71741 78.85 -86.0553 - 74 80.0573 899 3 1 -0.0500408 86.2211 -114.576 - 74 57.0232 898 3 1 -0.250332 86.1702 -114.696 - 74 67.7538 897 3 1 -0.45 86.1432 -114.757 - 74 59.2943 896 3 1 -0.65 86.1152 -114.806 - 74 96.3683 895 3 1 -0.85 86.0102 -114.755 - 74 85.911 894 3 1 -1.05 85.8271 -114.679 - 74 106.038 893 3 1 -1.25013 85.6341 -114.577 - 74 94.8262 892 3 1 -1.45 85.4232 -114.565 - 74 171.37 891 3 1 -1.65003 85.2665 -114.517 - 74 334.132 890 3 1 -1.85 85.1631 -114.573 - 74 49.9114 1284 4 0 -8.18728 77.0189 -85.8501 - 74 92.1376 1283 4 0 -8.17788 76.8499 -85.8777 - 74 64.3915 1282 4 0 -7.95014 76.65 -85.8819 - 74 98.3455 863 4 1 -7.32074 75.9311 -84.85 - 74 157.71 864 4 1 -7.24989 75.9185 -84.6902 - 74 249.714 1290 3 0 -8.63264 78.0897 -115.85 - 74 116.595 846 2 1 -10.6829 75.425 -144.45 - 74 307.842 1275 2 0 -10.7208 75.2284 -145.85 - 74 171.226 843 1 1 -11.335 72.553 -174.45 - 74 138.982 1263 1 0 -11.4544 72.6937 -175.85 - 74 188.055 834 0 1 -13.2073 75.1367 -204.45 - 74 21.0445 1270 0 0 -13.017 74.0848 -205.85 - 74 85.5731 1269 0 0 -13.0139 74.0496 -205.892 - 74 54.1266 1268 0 0 -12.997 73.85 -206.11 - 74 242.819 1287 3 0 -7.6576 77.594 -115.85 - 74 106.558 832 2 1 -13.5753 74.9721 -144.45 - 74 11.3647 831 2 1 -13.65 75.0206 -144.795 - 74 304.636 796 1 1 -20.6744 78.2896 -174.45 - 74 197.129 1292 1 0 -20.8671 78.5759 -175.85 - 74 130.464 1293 1 0 -20.9343 78.65 -176.24 - 74 13.1375 797 1 1 -20.6499 78.3061 -174.634 - 74 131.069 862 7 1 -7.65 78.6013 5.30935 - 74 253.128 860 1 1 -7.9743 79.2885 -174.45 - 74 158.104 1296 1 0 -8.00764 79.2778 -175.85 - 74 113.942 857 0 1 -8.5535 78.9451 -204.45 - 74 94.4559 1294 0 0 -8.59451 78.9283 -205.85 - 74 121.666 1295 1 0 -7.95093 79.2219 -175.85 - 74 121.149 860 0 1 -7.91736 78.1452 -204.45 - 74 115.594 1290 0 0 -7.89551 78.1968 -205.85 - 74 6.5747 987 12 0 20.7267 17.65 153.936 - 74 2.64175 1004 12 1 21.0472 17.4783 155.15 - 74 110.446 1005 12 1 21.05 17.4763 155.161 - 74 20.4756 1008 12 0 26.1825 21.6895 154.15 - 74 132.918 862 6 1 -7.64641 78.6067 -24.45 - 74 123.232 1292 6 0 -7.64715 78.6072 -25.85 - 74 134.367 861 5 1 -7.65931 78.6175 -54.45 - 74 175.458 861 4 1 -7.6793 78.6288 -84.45 - 74 148.86 1292 4 0 -7.68003 78.6297 -85.85 - 74 112.797 861 3 1 -7.69625 78.654 -114.45 - 74 225.815 1293 3 0 -7.69649 78.6555 -115.85 - 74 165.973 861 2 1 -7.70513 78.6874 -144.45 - 74 147.366 861 1 1 -7.6995 78.7248 -174.45 - 74 103.773 861 0 1 -7.69616 78.7952 -204.45 - 74 133.352 1293 0 0 -7.69682 78.7988 -205.85 - 74 65.296 1389 0 0 -114.685 98.0688 -206.25 - 74 67.9259 1388 0 0 -114.713 97.95 -206.198 - 74 60.3555 1387 0 0 -114.713 97.7499 -205.999 - 74 418.433 328 0 1 -114.527 97.0291 -204.85 - 74 31.816 1370 0 0 -115.049 94.2292 -205.85 - 74 67.8462 1369 0 0 -115.09 94.1499 -205.895 - 74 79.742 1368 0 0 -115.108 93.9498 -205.944 - 74 36.5963 1367 0 0 -114.938 93.75 -205.899 - 74 55.4909 336 0 1 -112.919 90.7296 -204.85 - 74 70.7322 337 0 1 -112.75 90.6375 -204.771 - 74 508.049 338 0 1 -112.55 90.4692 -204.679 - 74 26.1324 339 0 1 -112.35 90.2165 -204.812 - 74 137.619 862 4 1 -7.65 78.6584 -84.5182 +Number of tracker hits in this event = 82 + 57 243.679 293 8 1 -121.401 -30.5912 35.55 + 57 221.303 747 8 0 -121.395 -30.5888 34.15 + 57 152.228 294 7 1 -121.275 -30.5571 5.55 + 57 118.959 747 7 0 -121.266 -30.56 4.15 + 57 114.069 295 6 1 -121.09 -30.6235 -24.45 + 57 110.954 747 6 0 -121.081 -30.6254 -25.85 + 57 146.047 296 5 1 -120.886 -30.6601 -54.45 + 57 335.329 746 5 0 -120.875 -30.6609 -55.85 + 57 307.845 297 4 1 -120.651 -30.6803 -84.45 + 57 105.735 746 4 0 -120.642 -30.6858 -85.85 + 57 124.655 298 3 1 -120.453 -30.7895 -114.45 + 57 204.245 746 3 0 -120.446 -30.7867 -115.85 + 57 144.143 299 2 1 -120.295 -30.7034 -144.45 + 57 104.536 746 2 0 -120.29 -30.6987 -145.85 + 57 326.733 299 1 1 -120.188 -30.5752 -174.45 + 57 483.801 747 1 0 -120.179 -30.5667 -175.85 + 57 535.65 300 0 1 -119.984 -30.4227 -204.45 + 57 235.704 748 0 0 -119.973 -30.4192 -205.85 + 57 239.076 747 0 0 -119.978 -30.45 -205.869 + 57 53.7965 299 0 1 -120.15 -30.456 -204.705 + 57 24.772 300 1 1 -120.149 -30.5795 -174.451 + 57 166.077 296 0 1 -120.939 -29.1606 -204.45 + 57 188.238 754 0 0 -120.899 -29.1816 -205.85 + 57 11.3832 887 0 0 -119.667 -2.62108 -206.25 + 57 124.215 294 0 1 -121.199 -30.204 -204.45 + 57 126.296 749 0 0 -121.259 -30.1071 -205.85 + 57 212.591 294 5 1 -121.185 -30.5098 -54.5296 + 57 347.159 747 5 0 -121.212 -30.5645 -55.85 + 57 177.022 290 4 1 -122.053 -31.9034 -84.45 + 57 94.816 739 4 0 -122.363 -32.2122 -85.8506 + 57 76.3397 738 4 0 -122.398 -32.25 -86.0067 + 57 71.6017 254 3 1 -129.263 -39.724 -114.45 + 57 108.681 253 3 1 -129.35 -39.7488 -114.597 + 57 148.865 700 3 0 -130.036 -39.9576 -115.85 + 57 121.155 294 4 1 -121.206 -30.4296 -84.45 + 57 134.514 748 4 0 -121.213 -30.4443 -85.85 + 57 183.616 294 3 1 -121.287 -30.727 -114.45 + 57 269.859 294 2 1 -121.276 -30.8995 -144.45 + 57 148.333 745 2 0 -121.289 -30.9177 -145.85 + 57 111.523 292 1 1 -121.569 -31.352 -174.45 + 57 128.306 743 1 0 -121.598 -31.3992 -175.85 + 57 123.688 290 0 1 -122.124 -32.2269 -204.45 + 57 184.58 738 0 0 -122.126 -32.3145 -205.85 + 57 131.205 729 2 0 -126.914 -34.1662 -146.25 + 57 116.809 730 2 0 -126.849 -34.0498 -146.06 + 57 137.632 293 7 1 -121.358 -30.726 5.55 + 57 207.688 746 7 0 -121.374 -30.7029 4.15 + 57 233.129 290 6 1 -122.107 -29.3633 -24.45 + 57 17.8107 753 6 0 -122.055 -29.446 -25.85 + 57 182.939 752 6 0 -122.052 -29.45 -25.9246 + 57 82.6216 298 5 1 -120.439 -30.7001 -54.45 + 57 136.269 737 4 0 -120.631 -32.5771 -85.85 + 57 176.099 300 3 1 -120.007 -35.1438 -114.45 + 57 192.759 723 3 0 -120.013 -35.2857 -115.851 + 57 117.03 300 2 1 -120.097 -38.5678 -144.45 + 57 151.288 706 2 0 -120.33 -38.7011 -145.85 + 57 15.3809 275 1 1 -125.137 -41.2217 -174.45 + 57 118.566 274 1 1 -125.15 -41.2296 -174.507 + 57 48.0359 693 1 0 -125.446 -41.4242 -175.85 + 57 96.8572 692 1 0 -125.485 -41.4501 -176.027 + 57 98.2976 240 0 1 -132.035 -45.4972 -204.45 + 57 18.1651 239 0 1 -132.15 -45.5527 -204.793 + 57 118.662 671 0 0 -132.477 -45.731 -205.85 + 57 186.823 745 5 0 -120.45 -30.8505 -56.0231 + 57 83.3602 289 6 1 -122.15 -29.2097 -24.7091 + 57 69.9694 757 6 0 -122.376 -28.5378 -25.85 + 57 68.954 758 6 0 -122.398 -28.45 -25.9965 + 57 121.985 292 5 1 -121.718 -12.5014 -54.45 + 57 61.4162 842 5 0 -121.76 -11.5554 -55.85 + 57 82.7859 843 5 0 -121.766 -11.45 -55.9919 + 57 7.97528 844 5 0 -121.753 -11.2498 -56.2231 + 57 48.4825 298 4 1 -120.519 15.3528 -84.45 + 57 62.048 299 4 1 -120.35 15.3328 -84.5542 + 57 71.3005 300 4 1 -120.15 15.3106 -84.716 + 57 2.21161 301 4 1 -119.95 15.2986 -84.8463 + 57 230.994 975 4 0 -118.432 15.1602 -85.85 + 57 4.52499 725 4 0 -54.2421 -35.0312 -86.2499 + 57 88.351 724 4 0 -54.2327 -35.0505 -86.2366 + 57 68.793 723 4 0 -54.075 -35.25 -86.0173 + 57 236.815 631 4 1 -53.7685 -34.9663 -84.8493 + 57 426.579 632 4 1 -53.65 -34.5397 -84.5771 + 57 168.84 633 4 1 -53.45 -34.4392 -84.7813 Number of digits in this event = 48 Using G4ParticleGun ... -1.99184 LIN +5.53858 LIN gamma -Event: 75 -Number of tracker hits in this event = 3 - 75 87.6359 230 1 0 -132.278 -134.081 -176.25 - 75 191.96 231 1 0 -132.366 -133.95 -176.094 - 75 111.613 232 1 0 -132.398 -133.75 -176.111 +Event: 58 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +3.96746 LIN +gamma +Event: 59 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +2.38563 LIN +gamma +Event: 60 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +9.55303 LIN +gamma +Event: 61 +Number of tracker hits in this event = 1 + 61 95.5455 202 0 0 57.2897 -139.55 -205.983 Number of digits in this event = 2 Using G4ParticleGun ... -3.25469 LIN +3.61231 LIN gamma -Event: 76 -Number of tracker hits in this event = 7 - 76 241.47 839 0 1 -12.2151 -76.562 -204.45 - 76 243.135 517 0 0 -12.2195 -76.5607 -205.85 - 76 1.69035 670 2 0 17.2899 -46.0364 -146.25 - 76 45.289 1092 2 1 38.536 -118.175 -144.85 - 76 1.8796 1244 5 1 68.9297 -68.35 -54.85 - 76 415.267 1093 2 1 38.6501 -118.356 -144.647 - 76 94.4354 1094 2 1 38.85 -118.474 -144.549 +Event: 62 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +6.30491 LIN +gamma +Event: 63 +Number of tracker hits in this event = 37 + 63 67.9702 1310 4 0 23.0651 82.1903 -86.14 + 63 328.346 1015 3 1 23.0604 82.2684 -114.45 + 63 123.471 1311 3 0 23.0464 82.279 -115.85 + 63 122.394 1013 2 1 22.783 82.6072 -144.45 + 63 153.127 1312 2 0 22.7686 82.6339 -145.85 + 63 194.327 1011 1 1 22.4499 83.1274 -174.45 + 63 156.514 1315 1 0 22.4283 83.1524 -175.85 + 63 116.125 1009 0 1 21.8832 83.7025 -204.45 + 63 131.275 1318 0 0 21.8697 83.7219 -205.85 + 63 77.6885 518 13 0 -12.5604 -76.334 183.751 + 63 137.42 519 13 0 -12.7647 -76.25 183.87 + 63 69.8179 347 13 0 -68.0487 -110.611 183.75 + 63 113.066 346 13 0 -68.1397 -110.751 183.93 + 63 60.1927 560 13 1 -67.904 -112.018 185.15 + 63 191.061 561 13 1 -67.85 -112.089 185.248 + 63 173.682 562 13 1 -67.65 -112.145 185.458 + 63 57.6501 1010 1 1 22.133 83.1708 -174.45 + 63 168.946 1314 1 0 23.2611 83.05 -175.995 + 63 2.55642 1313 1 0 23.5855 82.85 -176.244 + 63 35.5352 1096 1 0 72.5388 39.3098 -176.25 + 63 122.6 1095 1 0 72.6391 39.25 -176.196 + 63 149.925 1310 3 0 23.0508 82.1867 -115.85 + 63 115.334 1014 2 1 23.0041 82.172 -144.45 + 63 121.107 1310 2 0 22.9993 82.1674 -145.85 + 63 408.722 1014 1 1 22.8955 82.0741 -174.45 + 63 364.6 1310 1 0 22.9057 82.054 -175.85 + 63 128.642 1309 1 0 22.9075 82.05 -176.142 + 63 407.647 1014 0 1 23.0454 81.6367 -204.45 + 63 108.242 1307 0 0 23.0244 81.62 -205.85 + 63 2.46251 1421 7 0 95.8718 104.49 3.75 + 63 88.5898 1389 6 1 97.9766 65.8328 -24.45 + 63 64.1808 1380 7 1 96.2765 104.984 5.1504 + 63 250.522 1381 7 1 96.3501 105.06 5.26255 + 63 239.413 1476 4 0 -13.2671 115.433 -86.2499 + 63 34.4966 1477 4 0 -13.0862 115.55 -86.0681 + 63 136.485 1311 0 0 22.9906 82.266 -205.85 + 63 104.643 1310 0 0 22.8649 82.2379 -205.85 +Number of digits in this event = 24 +Using G4ParticleGun ... +7.32876 LIN +gamma +Event: 64 +Number of tracker hits in this event = 190 + 64 576.853 1118 10 1 43.6726 42.0108 95.55 + 64 279.766 1109 10 0 43.6754 42.0105 94.15 + 64 388.407 1118 9 1 43.7344 41.9912 65.55 + 64 159.78 1109 9 0 43.7402 41.9895 64.15 + 64 262.186 1118 8 1 43.8499 41.9433 35.55 + 64 113.118 1109 8 0 43.759 41.8801 34.15 + 64 139.626 1108 7 1 41.6945 40.6313 5.55 + 64 126.242 1102 7 0 41.5567 40.5388 4.15 + 64 120.798 1091 6 1 38.4481 38.539 -24.45 + 64 126.523 1092 6 0 38.0796 38.5293 -25.85 + 64 10.7984 1052 5 1 30.4639 37.1255 -54.45 + 64 111.046 1051 5 1 30.45 37.125 -54.4775 + 64 118.209 1085 5 0 29.7895 37.1345 -55.85 + 64 131.852 976 4 1 15.4277 37.556 -84.45 + 64 16.4062 975 4 1 15.2497 37.5601 -84.7973 + 64 136.698 1087 4 0 14.7044 37.5572 -85.85 + 64 48.4056 894 3 1 -1.15593 37.3195 -114.45 + 64 59.8912 893 3 1 -1.25 37.3254 -114.621 + 64 113.039 1086 3 0 -1.92518 37.3945 -115.85 + 64 5.32116 810 2 1 -18.0444 38.0776 -144.45 + 64 121.074 809 2 1 -18.05 38.0782 -144.467 + 64 120.853 1090 2 0 -18.5519 38.1446 -145.85 + 64 55.5488 762 1 1 -27.6078 39.5675 -174.45 + 64 80.8672 761 1 1 -27.65 39.5795 -174.555 + 64 126.625 1098 1 0 -28.1541 39.7417 -175.85 + 64 12.3002 704 0 1 -39.2333 43.5104 -204.45 + 64 136.017 703 0 1 -39.25 43.5175 -204.48 + 64 2.76266 702 0 1 -39.45 43.6164 -204.838 + 64 194.58 1119 0 0 -39.9737 43.918 -205.85 + 64 64.1842 1040 3 1 28.2278 32.6437 -114.45 + 64 84.5126 1039 3 1 28.0497 32.6408 -114.62 + 64 72.0143 1038 3 1 27.85 32.6116 -114.802 + 64 108.898 1058 3 0 26.4888 31.8085 -115.85 + 64 65.3443 1057 3 0 26.2484 31.65 -116.046 + 64 69.5256 1056 3 0 26.0895 31.45 -116.096 + 64 32.863 1055 3 0 25.9457 31.25 -116.191 + 64 0.0173673 844 3 0 33.4102 -11.2498 -116.249 + 64 222.861 843 3 0 33.4104 -11.25 -116.249 + 64 17.5357 1079 3 1 35.9582 -9.85066 -114.85 + 64 22.4135 862 3 0 37.4194 -7.5383 -115.85 + 64 78.2919 1094 3 1 38.9537 -2.68778 -114.85 + 64 163.268 1093 3 1 38.8499 -2.58473 -114.784 + 64 209.716 1092 3 1 38.65 -2.47639 -114.738 + 64 3.18124 983 4 0 -39.5451 16.6558 -86.2499 + 64 215.257 982 4 0 -39.5483 16.6498 -86.2381 + 64 30.1871 366 13 0 137.281 -106.868 183.75 + 64 327.158 365 13 0 137.317 -106.95 183.907 + 64 3.49314 1120 4 1 44.1566 41.814 -84.842 + 64 79.0341 1108 4 0 44.1405 41.8293 -85.8501 + 64 23.6558 1109 4 0 44.1308 41.85 -86.1718 + 64 91.7255 1110 3 1 42.0745 45.2363 -114.45 + 64 83.5258 1111 3 1 42.25 45.0834 -114.572 + 64 92.635 1112 3 1 42.45 44.952 -114.661 + 64 24.5773 1113 3 1 42.6508 44.8138 -114.782 + 64 197.002 1117 3 0 43.9665 43.6204 -115.85 + 64 99.6377 1116 3 0 44.1545 43.45 -116.022 + 64 8.03681 1115 3 0 44.3312 43.25 -116.227 + 64 105.016 1243 2 1 68.7697 20.5347 -144.45 + 64 103.309 1001 2 0 68.7674 20.3386 -145.85 + 64 4.88591 1229 1 1 66.0406 20.3013 -174.45 + 64 102.688 1230 1 1 66.05 20.3013 -174.467 + 64 17.8507 1231 1 1 66.25 20.254 -174.78 + 64 149.013 1000 1 0 67.0171 20.1617 -175.85 + 64 143.432 1107 4 0 44.0773 41.6298 -85.85 + 64 82.8911 1106 4 0 43.913 41.45 -86.0534 + 64 51.8681 1115 4 1 43.1452 41.1803 -84.85 + 64 60.4202 1114 4 1 43.0495 41.1545 -84.6871 + 64 80.8542 1113 4 1 42.8499 41.1143 -84.4511 + 64 69.6956 1112 4 1 42.65 41.0669 -84.4946 + 64 83.014 1111 4 1 42.45 41.0952 -84.5798 + 64 44.9767 1110 4 1 42.2497 41.1579 -84.6993 + 64 86.1992 1109 4 1 42.05 41.2214 -84.7267 + 64 339.109 1108 4 1 41.8496 41.2717 -84.7589 + 64 19.735 1107 4 1 41.65 41.3576 -84.8206 + 64 257.695 1110 4 0 39.624 42.1564 -85.8503 + 64 68.18 1111 4 0 39.2679 42.25 -86.0665 + 64 136.27 1130 4 0 46.0968 46.1421 -86.2498 + 64 62.3292 1131 4 0 46.43 46.25 -86.0393 + 64 105.389 1132 4 0 46.503 46.45 -86.016 + 64 314.812 1133 4 0 46.539 46.6503 -85.9752 + 64 138.792 1134 4 0 46.6184 46.8501 -86.0275 + 64 61.0528 1108 10 0 43.7353 41.85 94.0097 + 64 467.286 1122 9 1 44.5702 38.8835 65.55 + 64 15.8258 1121 9 1 44.4499 38.8793 65.1964 + 64 146.185 1094 9 0 44.0676 38.8746 64.15 + 64 55.5122 1064 8 1 32.9244 39.3474 35.5491 + 64 119.185 1063 8 1 32.85 39.3352 35.4372 + 64 132.287 1095 8 0 32.0574 39.167 34.15 + 64 111.191 976 7 1 15.4134 35.4384 5.55 + 64 29.5461 975 7 1 15.25 35.3835 5.23231 + 64 89.5335 1075 7 0 14.691 35.1181 4.15 + 64 71.6425 1074 7 0 14.5623 35.0499 3.89551 + 64 111.904 899 6 1 -0.165984 26.7833 -24.4506 + 64 110.04 1032 6 0 -0.445485 26.6325 -25.85 + 64 124.18 863 5 1 -7.36195 24.8663 -54.45 + 64 86.8943 1024 5 0 -7.61637 25.0258 -55.8501 + 64 56.239 1025 5 0 -7.65204 25.05 -56.0404 + 64 15.5127 830 4 1 -14.0354 28.9179 -84.45 + 64 176.794 829 4 1 -14.05 28.9511 -84.4992 + 64 22.4065 1048 4 0 -14.445 29.7996 -85.85 + 64 103.143 1049 4 0 -14.4692 29.85 -85.9311 + 64 7.65645 1050 4 0 -14.5641 30.0501 -86.2302 + 64 15.2537 777 3 1 -24.623 50.8356 -114.45 + 64 176.343 776 3 1 -24.65 50.8787 -114.471 + 64 97.5576 775 3 1 -24.8501 51.1956 -114.588 + 64 105.275 774 3 1 -25.05 51.5279 -114.68 + 64 163.652 773 3 1 -25.2503 51.8258 -114.774 + 64 1.13118 1174 3 0 -28.1751 55.0462 -115.85 + 64 91.2171 1175 3 0 -28.1786 55.05 -115.851 + 64 74.4783 1176 3 0 -28.3697 55.25 -115.908 + 64 81.8603 1177 3 0 -28.5774 55.45 -115.954 + 64 78.3188 1178 3 0 -28.7718 55.65 -115.993 + 64 81.4267 1179 3 0 -28.984 55.85 -116.016 + 64 77.9932 1180 3 0 -29.2256 56.0503 -116.026 + 64 138.765 1181 3 0 -29.4763 56.25 -116.023 + 64 93.3976 1182 3 0 -29.7167 56.45 -116.011 + 64 93.0136 1183 3 0 -29.9552 56.65 -116.007 + 64 163.611 1184 3 0 -30.2122 56.85 -115.998 + 64 104.599 1185 3 0 -30.4937 57.05 -115.98 + 64 101.29 1186 3 0 -30.7322 57.25 -115.953 + 64 93.1049 1187 3 0 -30.9735 57.45 -115.902 + 64 14.7437 1188 3 0 -31.2026 57.65 -115.856 + 64 68.2027 722 3 1 -35.4895 61.5228 -114.85 + 64 117.091 721 3 1 -35.6509 61.6681 -114.806 + 64 168.516 720 3 1 -35.85 61.8153 -114.767 + 64 112.443 719 3 1 -36.05 61.9516 -114.731 + 64 57.84 718 3 1 -36.25 62.0659 -114.705 + 64 87.3839 717 3 1 -36.45 62.1768 -114.676 + 64 74.0287 716 3 1 -36.65 62.2981 -114.656 + 64 71.071 715 3 1 -36.8501 62.4198 -114.649 + 64 59.2464 714 3 1 -37.0505 62.5545 -114.647 + 64 66.0116 713 3 1 -37.2501 62.6957 -114.641 + 64 73.0232 712 3 1 -37.45 62.8336 -114.65 + 64 69.5259 711 3 1 -37.6501 62.9816 -114.666 + 64 82.0645 710 3 1 -37.85 63.1312 -114.678 + 64 91.0257 709 3 1 -38.05 63.2847 -114.692 + 64 54.0913 708 3 1 -38.2502 63.4274 -114.678 + 64 77.7171 707 3 1 -38.45 63.541 -114.648 + 64 62.9493 706 3 1 -38.65 63.6421 -114.611 + 64 80.4948 705 3 1 -38.85 63.7668 -114.568 + 64 81.5682 704 3 1 -39.05 63.9076 -114.508 + 64 84.9339 1269 4 0 -72.1006 74.0238 -86.2493 + 64 174.079 1270 4 0 -72.1736 74.05 -86.1916 + 64 11.0012 532 4 1 -73.6316 74.3998 -84.8499 + 64 70.2369 531 4 1 -73.65 74.4035 -84.8325 + 64 317.653 530 4 1 -73.85 74.4358 -84.672 + 64 124.45 529 4 1 -74.05 74.4587 -84.535 + 64 29.2505 527 4 1 -74.4981 74.6207 -84.45 + 64 222.091 528 4 1 -74.45 74.6191 -84.4863 + 64 224.87 1216 3 0 -35.5786 63.2943 -115.85 + 64 508.342 1117 10 1 43.65 41.9584 95.5351 + 64 41.2707 1116 10 1 43.45 41.5996 95.2327 + 64 108.717 1102 10 0 42.7036 40.5726 94.1499 + 64 58.6001 1101 10 0 42.492 40.4498 93.9039 + 64 127.964 883 10 0 65.2084 -3.28456 93.75 + 64 110.146 882 10 0 65.3225 -3.45 93.8175 + 64 73.5124 881 10 0 65.3794 -3.65 93.9344 + 64 72.2064 880 10 0 65.4267 -3.85007 93.9529 + 64 488.369 879 10 0 65.436 -4.05 94.032 + 64 134.36 1110 9 0 43.7159 42.0522 64.15 + 64 107.569 1110 8 0 43.7489 42.1191 34.15 + 64 94.0912 1118 7 1 43.7827 42.1735 5.55 + 64 118.123 1110 7 0 43.7843 42.1765 4.15 + 64 104.374 1118 6 1 43.8193 42.2273 -24.45 + 64 159.622 1110 6 0 43.821 42.2284 -25.85 + 64 158.751 1119 5 1 43.856 42.2448 -54.45 + 64 190.402 1110 5 0 43.8602 42.2445 -55.85 + 64 109.308 1119 4 1 43.9369 42.2321 -84.45 + 64 357.882 1119 3 1 43.9678 42.2137 -114.45 + 64 136.994 1110 3 0 43.9722 42.2209 -115.85 + 64 165.839 1120 2 1 44.054 42.3816 -144.45 + 64 156.94 1111 2 0 44.062 42.3922 -145.85 + 64 126.841 1120 1 1 44.2253 42.6181 -174.45 + 64 115.495 1112 1 0 44.2344 42.6305 -175.85 + 64 110.408 1121 0 1 44.4255 42.8808 -204.45 + 64 145.939 1114 0 0 44.4283 42.8929 -205.85 + 64 137.742 1123 7 1 44.7222 -101.858 5.15 + 64 173.292 1122 7 1 44.6498 -101.686 5.28754 + 64 104.194 327 5 1 -114.55 0.467815 -54.6735 + 64 138.433 618 6 1 -56.2758 -120.16 -24.85 + 64 2.30807 617 6 1 -56.45 -120.2 -24.7597 + 64 15.1706 1348 3 1 89.7574 -7.334 -114.85 + 64 41.5872 1118 3 1 43.85 42.1418 -114.78 + 64 34.4951 1101 3 0 42.2651 40.3052 -115.85 + 64 104.598 1100 3 0 42.2211 40.25 -115.878 + 64 195.407 1099 3 0 42.1915 40.05 -115.952 + 64 42.4133 1107 3 0 43.8071 41.5105 -115.85 + 64 143.605 1106 3 0 43.7822 41.4497 -116.021 + 64 261.276 1380 2 0 44.9886 96.1867 -146.25 + 64 42.5028 928 4 1 5.85 48.0992 -84.7599 +Number of digits in this event = 66 +Using G4ParticleGun ... +8.05546 LIN +gamma +Event: 65 +Number of tracker hits in this event = 14 + 65 390.071 1716 8 0 -54.6585 163.523 33.75 + 65 251.367 1715 8 0 -54.1189 163.35 33.981 + 65 26.6867 1368 11 1 93.7548 19.8206 125.15 + 65 38.5753 804 1 1 -19.0564 108.857 -174.85 + 65 65.2796 806 1 1 -18.85 108.625 -174.539 + 65 158.475 1080 2 0 34.4292 36.0863 -146.25 + 65 125.056 1079 2 0 34.434 36.05 -145.974 + 65 146.526 922 8 0 1.10362 4.4734 33.75 + 65 310.545 1625 4 0 52.0652 145.251 -86.25 + 65 5.55711 1626 4 0 52.179 145.35 -85.8738 + 65 38.8967 1165 4 1 53.1438 145.725 -84.85 + 65 89.199 1166 4 1 53.25 145.728 -84.7713 + 65 32.0457 1167 4 1 53.45 145.77 -84.8462 + 65 183.42 1632 4 0 53.2888 146.614 -85.8502 +Number of digits in this event = 9 +Using G4ParticleGun ... +1.44358 LIN +gamma +Event: 66 +Number of tracker hits in this event = 50 + 66 107.935 1071 9 1 34.3497 98.0465 65.3319 + 66 201.882 1389 9 0 34.3459 98.0559 64.15 + 66 243.342 1071 8 1 34.3848 97.9958 35.55 + 66 230.376 1389 8 0 34.3922 98.018 34.15 + 66 259.876 1071 7 1 34.3122 97.4573 5.55 + 66 116.559 1387 7 0 34.3372 97.6299 4.15 + 66 130.775 1073 6 1 34.7783 101.029 -24.4502 + 66 119.666 1405 6 0 34.796 101.155 -25.8502 + 66 130.145 1075 5 1 35.0581 104.149 -54.45 + 66 105.568 1420 5 0 35.0652 104.275 -55.8501 + 66 123.06 1074 4 1 34.895 106.797 -84.4504 + 66 1.63628 1433 4 0 34.9261 106.949 -85.85 + 66 104.655 1434 4 0 34.9264 106.95 -85.8601 + 66 92.9825 1078 3 1 35.736 109.989 -114.45 + 66 128.309 1447 3 0 35.7012 109.647 -115.85 + 66 178.822 1068 2 1 33.801 103.955 -144.45 + 66 38.3015 1069 2 1 33.8501 103.912 -144.707 + 66 109.277 1417 2 0 34.0501 103.727 -145.85 + 66 81.412 1091 1 1 38.3747 97.8458 -174.45 + 66 26.0316 1092 1 1 38.45 97.7606 -174.748 + 66 204.863 1386 1 0 38.7492 97.3979 -175.85 + 66 70.438 1385 1 0 38.7882 97.35 -175.979 + 66 155.131 1138 0 1 47.7599 86.5662 -204.45 + 66 58.5303 1326 0 0 47.6944 85.4048 -205.851 + 66 126.596 1325 0 0 47.6877 85.25 -206.012 + 66 33.1122 1324 0 0 47.6819 85.05 -206.206 + 66 45.1958 537 6 1 -72.5939 -55.3857 -24.85 + 66 166.149 1446 3 0 35.6919 109.55 -116.137 + 66 154.209 1445 3 0 35.5027 109.35 -116.157 + 66 35.2213 1450 6 0 24.3295 110.276 -26.25 + 66 24.2617 1451 6 0 24.1619 110.35 -25.8816 + 66 126.526 1389 7 0 34.3152 98.0122 4.15 + 66 191.542 1070 6 1 34.2352 98.0238 -24.45 + 66 110.925 1389 6 0 34.2305 98.0248 -25.85 + 66 121.973 1070 5 1 34.1561 98.0568 -54.45 + 66 140.167 1389 5 0 34.1499 98.0621 -55.85 + 66 107.078 1069 4 1 34.0214 98.1786 -84.45 + 66 136.993 1390 4 0 34.0148 98.1888 -85.85 + 66 101.004 1069 3 1 33.87 98.3747 -114.45 + 66 113.627 1391 3 0 33.8628 98.38 -115.85 + 66 142.601 1391 2 0 33.7012 98.4706 -145.85 + 66 108.667 1067 1 1 33.541 98.5094 -174.45 + 66 212.615 1391 1 0 33.5319 98.5069 -175.85 + 66 118.483 1066 0 1 33.3462 98.4462 -204.45 + 66 323.686 1391 0 0 33.3383 98.4417 -205.85 + 66 17.7907 1630 4 0 22.1059 146.231 -86.25 + 66 77.6033 1662 6 0 32.0744 152.728 -26.25 + 66 189.557 1663 6 0 32.1061 152.75 -26.0541 + 66 26.3258 1650 0 1 150.15 71.8151 -204.606 + 66 116.587 1137 1 0 -19.6853 47.65 -176.221 +Number of digits in this event = 25 +Using G4ParticleGun ... +4.57496 LIN +gamma +Event: 67 +Number of tracker hits in this event = 39 + 67 280.564 1134 5 1 46.9299 -114.145 -54.45 + 67 226.881 330 5 0 46.9193 -114.149 -55.85 + 67 109.095 1133 4 1 46.7152 -114.206 -84.45 + 67 120.474 329 4 0 46.7011 -114.204 -85.85 + 67 113.288 1131 3 1 46.2807 -114.129 -114.45 + 67 361.928 330 3 0 46.2684 -114.14 -115.85 + 67 119.74 1129 2 1 46.0315 -114.364 -144.45 + 67 114.106 328 2 0 46.0261 -114.386 -145.85 + 67 100.369 1129 1 1 45.9087 -114.882 -174.45 + 67 136.81 326 1 0 45.8956 -114.876 -175.85 + 67 404.612 1127 0 1 45.5837 -114.772 -204.45 + 67 121.266 326 0 0 45.5514 -114.767 -205.85 + 67 164.708 1267 2 1 73.45 -46.8173 -144.782 + 67 214.125 1126 0 1 45.45 -114.727 -204.627 + 67 137.895 1125 0 1 45.2499 -114.594 -204.582 + 67 29.5721 1130 2 1 46.1653 -114.275 -144.45 + 67 252.383 1131 2 1 46.2503 -114.215 -144.501 + 67 59.2131 1132 2 1 46.45 -114.099 -144.686 + 67 65.4162 332 2 0 47.1356 -113.64 -145.85 + 67 161.882 333 2 0 47.281 -113.55 -146.075 + 67 99.7257 329 3 0 46.2592 -114.15 -116.049 + 67 103.245 1134 4 1 46.9702 -114.146 -84.45 + 67 107.732 330 4 0 46.9743 -114.147 -85.85 + 67 110.219 1135 3 1 47.0513 -114.158 -114.45 + 67 191.683 1135 2 1 47.1026 -113.933 -144.45 + 67 105.924 331 2 0 47.1089 -113.928 -145.85 + 67 114.408 1135 1 1 47.2367 -113.824 -174.45 + 67 105.567 331 1 0 47.2475 -113.808 -175.85 + 67 142.144 1137 0 1 47.4923 -113.476 -204.45 + 67 190.394 335 0 0 47.504 -113.144 -205.85 + 67 8.23318 1134 2 1 47.05 -113.861 -144.828 + 67 107.904 334 2 0 46.2376 -113.35 -146.054 + 67 157.304 345 2 0 -29.6334 -110.954 -146.25 + 67 34.7611 346 2 0 -30.028 -110.95 -145.918 + 67 28.2017 740 2 1 -31.9752 -110.521 -144.85 + 67 64.6008 739 2 1 -32.05 -110.502 -144.811 + 67 78.0234 738 2 1 -32.2507 -110.406 -144.679 + 67 68.7054 737 2 1 -32.45 -110.221 -144.533 + 67 112.964 857 7 0 94.2606 -8.65 3.96709 +Number of digits in this event = 17 +Using G4ParticleGun ... +5.15901 LIN +gamma +Event: 68 +Number of tracker hits in this event = 118 + 68 246.465 1324 10 1 84.9801 -55.57 95.55 + 68 309.046 622 10 0 85.0579 -55.4599 94.15 + 68 110.074 623 10 0 85.0638 -55.45 94.0459 + 68 105.669 1336 9 1 87.4127 -53.0794 65.55 + 68 114.412 635 9 0 87.4737 -53.0477 64.15 + 68 105.665 1343 8 1 88.7622 -50.0524 35.55 + 68 32.8484 1344 8 1 88.8501 -50.0223 35.2653 + 68 176.082 650 8 0 89.207 -49.8948 34.1496 + 68 164.7 1394 7 1 99.0417 -47.0336 5.55 + 68 83.536 663 7 0 99.3639 -47.3764 4.15 + 68 34.6613 662 7 0 99.4361 -47.45 3.85749 + 68 5.64351 1430 6 1 106.343 -54.0872 -24.45 + 68 114.08 1431 6 1 106.35 -54.0947 -24.4793 + 68 115.903 627 6 0 106.744 -54.4654 -25.85 + 68 4.51302 1471 5 1 114.543 -62.0818 -54.45 + 68 130.201 1472 5 1 114.55 -62.0809 -54.4631 + 68 157.484 590 5 0 115.178 -62.0263 -55.85 + 68 34.7159 1545 4 1 129.258 -58.0283 -84.45 + 68 110.78 1546 4 1 129.35 -58.073 -84.5269 + 68 68.287 1547 4 1 129.55 -58.1669 -84.69 + 68 137.703 606 4 0 131.032 -58.7216 -85.85 + 68 69.6928 605 4 0 131.377 -58.85 -86.1133 + 68 227.641 1731 3 1 166.363 -76.4615 -114.45 + 68 122.504 1732 3 1 166.55 -76.9938 -114.718 + 68 16.3002 505 3 0 168.276 -79.0296 -115.85 + 68 78.6896 504 3 0 168.294 -79.05 -115.862 + 68 72.9368 503 3 0 168.468 -79.2502 -115.973 + 68 61.0883 502 3 0 168.62 -79.45 -116.077 + 68 101.268 501 3 0 168.748 -79.65 -116.121 + 68 53.8649 500 3 0 168.875 -79.85 -116.129 + 68 175.767 499 3 0 168.969 -80.0502 -116.1 + 68 59.915 498 3 0 169.045 -80.25 -116.081 + 68 72.8588 497 3 0 169.134 -80.45 -116.088 + 68 57.1849 496 3 0 169.199 -80.65 -116.096 + 68 61.3935 495 3 0 169.278 -80.85 -116.097 + 68 57.086 494 3 0 169.362 -81.05 -116.123 + 68 97.7215 493 3 0 169.454 -81.2501 -116.171 + 68 28.3142 492 3 0 169.555 -81.45 -116.218 + 68 59.483 1344 7 1 88.8526 -56.9786 5.55 + 68 115.204 1324 9 1 84.9973 -55.5774 65.55 + 68 205.849 622 9 0 85.0006 -55.5768 64.15 + 68 144.441 1325 8 1 85.0785 -55.5565 35.55 + 68 193.759 622 8 0 85.0831 -55.5549 34.15 + 68 429.166 1325 7 1 85.1766 -55.5345 5.55 + 68 476.807 622 7 0 85.1786 -55.5313 4.15 + 68 216.863 1325 6 1 85.2141 -55.4609 -24.45 + 68 332.925 622 6 0 85.2152 -55.4581 -25.85 + 68 278.459 1325 5 1 85.2385 -55.3972 -54.45 + 68 184.597 623 5 0 85.2392 -55.3926 -55.85 + 68 135.168 1326 4 1 85.2512 -55.297 -84.45 + 68 235.24 623 4 0 85.2512 -55.2916 -85.85 + 68 113.745 1326 3 1 85.2593 -55.1867 -114.45 + 68 207.676 624 3 0 85.2594 -55.183 -115.85 + 68 106.377 1326 2 1 85.297 -55.0911 -144.45 + 68 321.53 624 2 0 85.302 -55.0793 -145.85 + 68 209.799 1326 1 1 85.4181 -54.7408 -174.45 + 68 124.899 626 1 0 85.4325 -54.7274 -175.85 + 68 186.395 1328 0 1 85.7305 -54.4998 -204.45 + 68 99.5531 627 0 0 85.7332 -54.4971 -205.85 + 68 186.146 726 3 0 56.4446 -34.8173 -116.25 + 68 13.6979 1320 1 1 84.0633 -54.2891 -174.45 + 68 112.257 1319 1 1 84.0498 -54.2855 -174.495 + 68 99.8815 629 1 0 83.6186 -54.2159 -175.85 + 68 37.186 1275 0 1 75.082 -53.981 -204.45 + 68 122.184 1274 0 1 75.0499 -53.971 -204.519 + 68 277.673 631 0 0 74.4551 -53.7947 -205.85 + 68 165.808 1322 1 1 84.4813 -55.3116 -174.45 + 68 198.502 622 1 0 84.5015 -55.5493 -175.85 + 68 168.848 1320 0 1 84.1061 -59.1771 -204.45 + 68 105.892 605 0 0 84.4483 -58.9792 -205.85 + 68 269.096 1542 0 1 128.55 79.426 -204.702 + 68 22.9999 1541 0 1 128.55 79.6256 -204.71 + 68 281.746 1326 0 1 85.2642 -54.8312 -204.451 + 68 113.305 625 0 0 85.308 -54.8985 -205.85 + 68 100.287 626 0 0 85.2804 -54.8003 -205.85 + 68 224.815 810 3 1 -17.9058 -102.308 -114.85 + 68 88.2638 246 6 0 127.626 -130.856 -26.25 + 68 110.907 1326 7 1 85.25 -55.4698 5.30566 + 68 130.701 1327 6 1 85.4529 -55.279 -24.45 + 68 113.647 623 6 0 85.4434 -55.3248 -25.85 + 68 149.604 618 5 0 85.2214 -56.3701 -55.85 + 68 278.362 1323 4 1 84.665 -56.9762 -84.45 + 68 97.9107 615 4 0 84.6306 -57.0114 -85.85 + 68 114.15 1319 3 1 83.9928 -57.623 -114.45 + 68 109.834 612 3 0 83.9482 -57.6252 -115.85 + 68 79.5751 1314 2 1 82.8592 -57.8238 -144.45 + 68 34.5586 1313 2 1 82.85 -57.8288 -144.725 + 68 103.624 610 2 0 82.8123 -57.8517 -145.85 + 68 154.528 1308 1 1 81.8159 -58.4585 -174.45 + 68 123.239 607 1 0 81.7496 -58.4687 -175.85 + 68 130.534 1301 0 1 80.4154 -58.6782 -204.45 + 68 133.32 606 0 0 80.3569 -58.6873 -205.85 + 68 108.428 1323 5 1 84.759 -55.8112 -54.45 + 68 105.762 621 5 0 84.7617 -55.8295 -55.85 + 68 112.631 618 4 0 84.8158 -56.3419 -85.85 + 68 121.204 1327 3 1 85.4768 -56.329 -114.45 + 68 102.024 618 3 0 85.5198 -56.3385 -115.85 + 68 102.393 1331 2 1 86.4353 -56.6639 -144.45 + 68 18.6514 1332 2 1 86.45 -56.6683 -144.787 + 68 128.67 616 2 0 86.4912 -56.6841 -145.85 + 68 111.447 1338 1 1 87.7016 -57.208 -174.45 + 68 108.03 614 1 0 87.7188 -57.2025 -175.85 + 68 109.891 1340 0 1 88.0995 -57.0802 -204.45 + 68 141.237 614 0 0 88.1023 -57.0815 -205.85 + 68 326.535 1488 4 1 117.75 -73.7292 -84.8168 + 68 39.3881 540 4 0 115.994 -72.05 -85.8855 + 68 15.5973 1487 4 1 117.75 -73.7992 -84.5504 + 68 403.078 1489 4 1 117.95 -74.479 -84.6782 + 68 179.172 1321 1 1 84.45 -55.1603 -174.515 + 68 317.51 624 1 0 84.4128 -55.211 -175.85 + 68 111.013 1317 0 1 83.4734 -56.3627 -204.45 + 68 233.77 618 0 0 83.4299 -56.3712 -205.85 + 68 306.601 1316 0 1 83.4183 -56.3777 -204.45 + 68 49.7192 1315 0 1 83.2499 -56.1024 -204.652 + 68 268.547 619 0 0 83.4412 -56.1613 -205.85 + 68 102.436 1318 0 1 83.7833 -53.7068 -204.45 + 68 187.646 623 7 0 85.2356 -55.45 3.91547 + 68 152.023 738 7 0 172.881 -32.407 3.75 +Number of digits in this event = 57 +Using G4ParticleGun ... +4.72128 LIN +gamma +Event: 69 +Number of tracker hits in this event = 58 + 69 247.232 996 8 1 19.4405 42.9095 35.55 + 69 322.707 1114 8 0 19.4401 42.9102 34.15 + 69 97.1472 997 7 1 19.4539 42.9385 5.55 + 69 139.941 996 7 1 19.45 42.941 5.21481 + 69 344.881 1114 7 0 19.4364 42.9512 4.15 + 69 150.278 995 6 1 19.0576 43.4254 -24.45 + 69 120.145 1116 6 0 19.0404 43.431 -25.85 + 69 104.128 993 5 1 18.6923 43.4644 -54.45 + 69 130.542 1117 5 0 18.6824 43.4599 -55.85 + 69 149.677 991 4 1 18.4405 43.4421 -84.45 + 69 168.031 1117 4 0 18.4075 43.4513 -85.85 + 69 191.59 987 3 1 17.5724 43.4217 -114.45 + 69 174.541 1117 3 0 17.5069 43.4869 -115.85 + 69 130.996 980 2 1 16.1241 44.903 -144.45 + 69 119.796 1124 2 0 16.0672 45.0146 -145.85 + 69 109.985 974 1 1 14.9707 47.0617 -174.45 + 69 237.148 1135 1 0 14.9804 47.2027 -175.851 + 69 116.192 976 0 1 15.4204 49.3093 -204.45 + 69 130.719 1146 0 0 15.4402 49.4119 -205.85 + 69 29.0518 1113 8 0 19.4435 42.85 33.82 + 69 367.283 972 8 0 43.4099 14.5089 33.7501 + 69 138.744 997 6 1 19.4595 42.9036 -24.45 + 69 88.3961 1114 6 0 19.4594 42.9013 -25.85 + 69 113.95 997 5 1 19.4511 42.8552 -54.45 + 69 121.121 1114 5 0 19.4496 42.854 -55.85 + 69 130.878 996 4 1 19.4172 42.8327 -84.45 + 69 95.4256 1113 4 0 19.4159 42.8324 -85.85 + 69 119.927 996 3 1 19.3833 42.8236 -114.45 + 69 110.377 1113 3 0 19.3822 42.8242 -115.85 + 69 391.327 996 2 1 19.3607 42.8454 -144.45 + 69 233.866 1113 2 0 19.3593 42.8448 -145.85 + 69 293.293 996 1 1 19.3349 42.8289 -174.45 + 69 331.283 1113 1 0 19.3331 42.8274 -175.85 + 69 118.428 996 0 1 19.2954 42.7934 -204.45 + 69 177.541 1113 0 0 19.2938 42.7918 -205.85 + 69 89.2046 1502 3 0 -49.6918 120.748 -116.25 + 69 320.112 652 3 1 -49.4985 120.74 -114.85 + 69 127.239 887 3 0 108.274 -2.45 -116.243 + 69 7.49206 1488 1 0 61.1314 117.925 -176.25 + 69 70.0855 1489 1 0 61.1428 117.95 -176.245 + 69 70.5187 1490 1 0 61.1141 118.15 -176.221 + 69 26.3505 1491 1 0 61.0963 118.35 -176.198 + 69 109.409 997 1 1 19.4774 42.6525 -174.45 + 69 173.186 995 0 1 19.146 42.9514 -204.45 + 69 120.525 1114 0 0 19.1381 42.9727 -205.85 + 69 305.597 994 0 1 19.05 42.9637 -204.76 + 69 126.236 1112 2 0 19.4619 42.5527 -145.85 + 69 140.123 1003 1 1 20.6783 42.0072 -174.45 + 69 104.587 1107 1 0 20.6004 41.5012 -175.85 + 69 89.3073 1106 1 0 20.5941 41.4498 -175.996 + 69 183.77 999 0 1 19.9783 30.6132 -204.45 + 69 35.2532 1049 0 0 19.9743 29.913 -205.85 + 69 132.232 1048 0 0 19.9742 29.8497 -205.974 + 69 116.226 1004 0 0 27.97 20.902 -206.25 + 69 92.8166 1042 0 1 28.5048 20.8545 -204.85 + 69 62.3866 1043 0 1 28.65 20.8396 -204.603 + 69 153.622 1000 0 1 20.05 30.5216 -204.536 + 69 67.1212 876 1 0 94.329 -4.6503 -176.25 +Number of digits in this event = 35 +Using G4ParticleGun ... +5.11998 LIN +gamma +Event: 70 +Number of tracker hits in this event = 5 + 70 30.5911 1476 0 1 115.389 -49.5024 -204.85 + 70 233.858 1477 0 1 115.55 -50.1267 -204.483 + 70 38.7273 639 0 0 116.771 -52.0671 -205.85 + 70 182.514 1490 0 1 118.152 -51.7518 -204.85 + 70 172.116 1491 0 1 118.35 -51.6611 -204.739 Number of digits in this event = 5 Using G4ParticleGun ... -9.65984 LIN +5.62133 LIN +gamma +Event: 71 +Number of tracker hits in this event = 52 + 71 367.843 596 8 1 -60.7893 36.2722 35.55 + 71 230.28 1081 8 0 -60.7897 36.2744 34.15 + 71 411.154 596 7 1 -60.7993 36.3744 5.55 + 71 264.94 1081 7 0 -60.7951 36.3797 4.15 + 71 124.235 597 6 1 -60.6438 36.4294 -24.45 + 71 300.686 1081 6 0 -60.6236 36.4206 -25.85 + 71 27.532 598 5 1 -60.2513 36.2174 -54.45 + 71 88.6557 599 5 1 -60.25 36.2167 -54.5582 + 71 146.288 1080 5 0 -60.2345 36.2101 -55.85 + 71 158.202 600 4 1 -59.8778 36.0659 -84.45 + 71 120.959 1080 4 0 -59.8428 36.0651 -85.85 + 71 109.343 605 3 1 -59.0435 36.0287 -114.45 + 71 89.846 1079 3 0 -59.0052 36.0134 -115.85 + 71 157.113 608 2 1 -58.2992 35.6361 -144.45 + 71 123.355 1078 2 0 -58.2812 35.6797 -145.85 + 71 116.199 610 1 1 -57.8917 36.6988 -174.45 + 71 144.638 1083 1 0 -57.874 36.7402 -175.85 + 71 118.347 613 0 1 -57.439 37.5972 -204.45 + 71 137.35 1087 0 0 -57.4239 37.6344 -205.85 + 71 45.7346 1075 2 0 -58.1093 35.1392 -145.85 + 71 119.679 1074 2 0 -58.0444 35.0492 -146.042 + 71 200.292 895 1 1 -1.05 0.972656 -174.707 + 71 124.818 899 1 1 -0.185876 1.0028 -174.45 + 71 16.4186 1082 7 0 -60.0471 36.631 4.14968 + 71 104.185 1083 7 0 -60.0117 36.65 4.09194 + 71 106.08 596 6 1 -60.7906 36.294 -24.45 + 71 139.565 596 5 1 -60.699 36.2672 -54.45 + 71 128.002 1081 5 0 -60.6977 36.2709 -55.85 + 71 99.6431 596 4 1 -60.6748 36.343 -84.45 + 71 130.212 1081 4 0 -60.6665 36.3557 -85.85 + 71 93.5039 597 3 1 -60.5105 36.623 -114.45 + 71 117.14 1082 3 0 -60.5038 36.6432 -115.85 + 71 245.423 598 2 1 -60.3472 37.0641 -144.45 + 71 213.039 1085 2 0 -60.3294 37.0825 -145.85 + 71 112.267 600 1 1 -59.9641 37.5181 -174.45 + 71 135.721 1087 1 0 -59.9449 37.5503 -175.85 + 71 152.613 602 0 1 -59.5513 38.1985 -204.45 + 71 175.321 1090 0 0 -59.5361 38.236 -205.85 + 71 11.411 597 2 1 -60.45 37.1083 -144.808 + 71 118.652 1086 2 0 -60.8631 37.25 -145.938 + 71 106.265 1087 2 0 -61.1957 37.45 -146.005 + 71 16.4928 1088 2 0 -61.4558 37.65 -146.199 + 71 136.5 1469 2 0 -116.703 114.034 -146.25 + 71 201.874 1470 2 0 -116.771 114.15 -146.198 + 71 63.7961 1468 2 0 -117.233 113.95 -145.917 + 71 176.494 1467 2 0 -117.271 113.75 -145.985 + 71 108.524 1466 2 0 -117.216 113.55 -145.894 + 71 96.9815 328 2 1 -114.495 114.096 -144.85 + 71 144.169 1471 2 0 -115.566 114.432 -145.85 + 71 113.057 596 0 1 -60.7347 36.1403 -204.45 + 71 145.387 1080 0 0 -60.7152 36.0811 -205.85 + 71 11.1388 435 0 1 -92.9551 -68.9459 -204.45 +Number of digits in this event = 32 +Using G4ParticleGun ... +1.48761 LIN +gamma +Event: 72 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +5.9321 LIN +gamma +Event: 73 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +4.22909 LIN +gamma +Event: 74 +Number of tracker hits in this event = 1 + 74 177.191 785 6 1 -22.8669 -79.3963 -24.85 +Number of digits in this event = 3 +Using G4ParticleGun ... +6.62938 LIN +gamma +Event: 75 +Number of tracker hits in this event = 6 + 75 220.719 1475 1 1 115.176 25.6588 -174.45 + 75 259.006 1028 1 0 115.176 25.6584 -175.85 + 75 289.57 1475 0 1 115.161 25.6643 -204.45 + 75 242.416 1028 0 0 115.162 25.6657 -205.85 + 75 28.6095 1125 0 0 145.206 45.25 -206.182 + 75 130.06 1405 0 1 101.35 68.6713 -204.789 +Number of digits in this event = 7 +Using G4ParticleGun ... +3.06663 LIN +gamma +Event: 76 +Number of tracker hits in this event = 0 +Number of digits in this event = 2 +Using G4ParticleGun ... +5.92719 LIN gamma Event: 77 -Number of tracker hits in this event = 2 - 77 11.0745 476 0 1 -84.6892 170.505 -204.85 - 77 148.41 477 0 1 -84.65 170.77 -204.572 -Number of digits in this event = 4 +Number of tracker hits in this event = 10 + 77 274.297 860 2 1 -8.03991 -9.76287 -144.45 + 77 281.179 851 2 0 -8.03959 -9.76271 -145.85 + 77 245.379 860 1 1 -8.03098 -9.75283 -174.45 + 77 220.032 851 1 0 -8.02872 -9.75634 -175.85 + 77 383.87 860 0 1 -7.98364 -9.83402 -204.45 + 77 271.109 851 0 0 -7.9779 -9.84032 -205.85 + 77 5.77037 1122 2 0 -25.5295 44.65 -146.156 + 77 99.7163 859 0 1 -8.05 -9.84197 -204.501 + 77 30.4359 850 0 0 -8.63873 -10.0356 -205.85 + 77 96.4639 849 0 0 -8.68212 -10.05 -205.937 +Number of digits in this event = 9 Using G4ParticleGun ... -7.18667 LIN +4.17256 LIN gamma Event: 78 Number of tracker hits in this event = 0 Number of digits in this event = 1 Using G4ParticleGun ... -6.05888 LIN +3.49763 LIN gamma Event: 79 -Number of tracker hits in this event = 44 - 79 270.842 441 9 1 -91.785 37.1673 65.55 - 79 247.266 1085 9 0 -91.7845 37.1687 64.15 - 79 227.766 441 8 1 -91.7751 37.1989 35.55 - 79 373.837 1085 8 0 -91.7755 37.2004 34.15 - 79 222.015 441 7 1 -91.7691 37.2344 5.55 - 79 223.846 1085 7 0 -91.7674 37.2354 4.15 - 79 333.931 442 6 1 -91.7241 37.2545 -24.45 - 79 105.345 1086 6 0 -91.7201 37.2548 -25.85 - 79 225.124 442 5 1 -91.6382 37.262 -54.45 - 79 140.096 1086 5 0 -91.6324 37.2627 -55.85 - 79 154.732 443 4 1 -91.5109 37.2709 -84.45 - 79 97.9995 1086 4 0 -91.5046 37.2721 -85.85 - 79 118.547 443 3 1 -91.3682 37.3047 -114.45 - 79 287.26 1086 3 0 -91.3614 37.3049 -115.85 - 79 127.185 444 2 1 -91.2251 37.3063 -144.45 - 79 135.892 1086 2 0 -91.2178 37.3058 -145.85 - 79 133.082 445 1 1 -91.0731 37.2964 -174.45 - 79 143.161 1086 1 0 -91.0672 37.2975 -175.85 - 79 225.992 446 0 1 -90.9417 37.314 -204.45 - 79 112.643 1086 0 0 -90.9432 37.3054 -205.85 - 79 137.88 1023 1 0 18.9752 24.7674 -176.25 - 79 177.993 1024 1 0 19.0103 24.85 -176.077 - 79 130.659 1084 0 0 -91.2313 37.0383 -205.85 - 79 42.5036 913 0 0 -81.2627 2.69991 -206.25 - 79 83.9419 912 0 0 -81.2428 2.65 -206.219 - 79 74.1161 911 0 0 -81.2346 2.45 -206.123 - 79 39.9087 941 0 0 -117.506 8.38222 -206.25 - 79 72.1235 942 0 0 -117.566 8.45023 -206.215 - 79 66.095 934 0 0 -46.6531 7.02232 -206.25 - 79 38.1503 647 8 0 -134.024 -50.45 33.8271 - 79 58.116 1089 6 0 -91.0332 37.8983 -25.85 - 79 94.0674 442 7 1 -91.6315 37.1112 5.55 - 79 161.918 1085 6 0 -91.5966 37.062 -25.85 - 79 205.265 1085 5 0 -91.7034 37.1438 -55.85 - 79 124.503 441 4 1 -91.8479 37.21 -84.45 - 79 107.126 1085 4 0 -91.8585 37.2175 -85.85 - 79 196.609 440 3 1 -92.0696 37.3644 -114.45 - 79 140.378 438 2 1 -92.3897 37.6142 -144.45 - 79 139.324 1087 2 0 -92.3957 37.619 -145.85 - 79 104.164 438 1 1 -92.5135 37.6726 -174.45 - 79 154.882 1088 1 0 -92.5202 37.6813 -175.85 - 79 121.285 437 0 1 -92.6822 37.8391 -204.45 - 79 124.168 1088 0 0 -92.6874 37.8373 -205.85 - 79 196.702 444 3 1 -91.1586 10.8776 -114.85 -Number of digits in this event = 32 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 Using G4ParticleGun ... -6.2923 LIN +2.12611 LIN gamma Event: 80 -Number of tracker hits in this event = 3 - 80 146.116 1292 9 0 83.0252 78.5815 63.75 - 80 136.719 229 4 1 -134.211 138.595 -84.85 - 80 58.4821 230 4 1 -134.15 138.59 -84.7197 -Number of digits in this event = 3 +Number of tracker hits in this event = 20 + 80 269.487 948 2 1 9.84734 -78.6484 -144.45 + 80 364.633 507 2 0 9.84728 -78.6479 -145.85 + 80 324.846 948 1 1 9.82564 -78.6709 -174.45 + 80 646.859 506 1 0 9.83054 -78.6721 -175.85 + 80 110.351 949 0 1 9.94826 -78.6929 -204.45 + 80 254.562 506 0 0 9.96061 -78.6899 -205.85 + 80 9.6919 1244 0 1 68.8997 -67.3017 -204.45 + 80 179.913 948 0 1 9.72625 -78.6789 -204.45 + 80 273.914 947 0 1 9.63545 -78.482 -204.45 + 80 115.928 507 0 0 9.60642 -78.5232 -205.85 + 80 327.699 507 1 0 9.82532 -78.6499 -176.016 + 80 142.255 949 1 1 9.86979 -78.4962 -174.45 + 80 117.596 508 0 0 9.60255 -78.2965 -205.85 + 80 5.41669 792 0 1 -21.4869 -72.5526 -204.85 + 80 49.9962 604 0 0 -19.2069 -59.25 -205.933 + 80 230.545 791 0 1 -21.6501 -72.5702 -204.619 + 80 84.0969 949 2 1 9.85 -78.6463 -144.567 + 80 34.8483 950 2 1 10.05 -78.6333 -144.781 + 80 9.69432 504 2 0 10.858 -79.235 -145.85 + 80 133.487 503 2 0 10.8858 -79.2501 -145.885 +Number of digits in this event = 12 Using G4ParticleGun ... -1.76588 LIN +2.28744 LIN gamma Event: 81 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -4.98688 LIN -gamma -Event: 82 -Number of tracker hits in this event = 258 - 82 244.697 1091 10 1 38.3423 -59.5027 95.55 - 82 341.538 602 10 0 38.3415 -59.5066 94.15 - 82 309.904 1091 9 1 38.3098 -59.5735 65.55 - 82 219.971 602 9 0 38.3177 -59.5779 64.15 - 82 213.196 1092 8 1 38.4758 -59.6884 35.55 - 82 118.422 601 8 0 38.4847 -59.6914 34.15 - 82 139.508 1093 7 1 38.6732 -59.748 5.55 - 82 266.866 601 7 0 38.6839 -59.7531 4.15 - 82 120.963 1094 6 1 38.8795 -59.8554 -24.45 - 82 230.178 600 6 0 38.8852 -59.8652 -25.85 - 82 424.883 1094 5 1 39.0328 -60.094 -54.45 - 82 134.675 599 5 0 39.0563 -60.0999 -55.85 - 82 445.052 1097 4 1 39.5789 -60.2095 -84.45 - 82 331.061 599 4 0 39.5994 -60.2144 -85.85 - 82 135.349 1099 3 1 40.0102 -60.2844 -114.45 - 82 113.845 598 3 0 40.0368 -60.2833 -115.85 - 82 113.99 1102 2 1 40.6046 -60.2433 -144.45 - 82 129.888 599 2 0 40.6249 -60.2333 -145.85 - 82 108.399 1104 1 1 41.0416 -60.0126 -174.45 - 82 357.647 600 1 0 41.0663 -59.9858 -175.85 - 82 148.466 1107 0 1 41.5454 -59.4178 -204.45 - 82 106.976 603 0 0 41.5826 -59.3933 -205.85 - 82 268.318 1096 4 1 39.3898 -59.9492 -84.4502 - 82 428.66 600 4 0 39.492 -60.0396 -85.85 - 82 104.549 1108 3 1 41.6891 -62.5099 -114.45 - 82 132.758 586 3 0 41.6767 -62.6646 -115.85 - 82 137.553 1112 2 1 42.5669 -69.302 -144.45 - 82 107.499 549 2 0 42.5929 -70.0663 -145.85 - 82 18.2312 548 2 0 42.5965 -70.25 -146.195 - 82 125 1126 1 1 45.3517 -85.4364 -174.45 - 82 85.5134 470 1 0 45.414 -85.9686 -175.85 - 82 119.008 469 1 0 45.4172 -86.05 -176.066 - 82 338.169 1122 0 1 44.6182 -96.7079 -204.45 - 82 135.499 413 0 0 44.4889 -97.3947 -205.85 - 82 27.5524 412 0 0 44.4619 -97.5501 -206.17 - 82 107.171 1092 3 1 38.5738 -60.5397 -114.45 - 82 89.838 597 3 0 38.4796 -60.6255 -115.85 - 82 82.1118 596 3 0 38.4554 -60.65 -116.173 - 82 42.1514 1080 2 1 36.1965 -63.2279 -144.45 - 82 272.676 1081 2 1 36.25 -63.2765 -144.638 - 82 145.536 582 2 0 36.4334 -63.5489 -145.85 - 82 32.2696 479 2 0 27.7459 -84.1985 -146.25 - 82 86.8463 478 2 0 27.7063 -84.25 -146.172 - 82 46.9501 477 2 0 27.6031 -84.4502 -145.945 - 82 88.9851 1033 2 1 26.7694 -85.6909 -144.85 - 82 75.4749 1032 2 1 26.65 -85.8093 -144.724 - 82 71.8461 1031 2 1 26.45 -85.9587 -144.596 - 82 16.1796 379 1 0 32.9101 -104.318 -176.25 - 82 221.031 378 1 0 32.8952 -104.35 -176.198 - 82 86.1471 1063 1 1 32.8173 -105.63 -174.85 - 82 72.1623 641 2 0 6.3902 -51.7924 -146.25 - 82 103.047 1082 2 1 36.45 -63.2483 -144.512 - 82 372.098 1099 1 1 39.9493 -60.352 -174.45 - 82 327.121 598 1 0 39.9701 -60.3637 -175.85 - 82 107.114 1100 0 1 40.2228 -60.6275 -204.45 - 82 148.772 597 0 0 40.1678 -60.5675 -205.85 - 82 98.7368 1098 1 1 39.85 -60.3067 -174.714 - 82 108.493 1097 1 1 39.65 -60.3664 -174.702 - 82 69.9901 1096 1 1 39.45 -60.4205 -174.786 - 82 396.732 591 1 0 38.5462 -61.6582 -175.85 - 82 25.018 1105 0 1 41.1392 -59.342 -204.45 - 82 54.2603 1106 0 1 41.25 -59.3209 -204.472 - 82 48.5927 1108 0 1 41.65 -59.3303 -204.509 - 82 49.9223 1109 0 1 41.85 -59.355 -204.536 - 82 61.5936 1110 0 1 42.05 -59.393 -204.578 - 82 44.1652 1111 0 1 42.25 -59.4269 -204.631 - 82 69.8558 1112 0 1 42.45 -59.4492 -204.677 - 82 50.1375 1113 0 1 42.65 -59.4751 -204.706 - 82 93.3923 1114 0 1 42.85 -59.4808 -204.713 - 82 61.8246 1115 0 1 43.0508 -59.4959 -204.744 - 82 61.2591 1116 0 1 43.25 -59.533 -204.776 - 82 175.194 1117 0 1 43.45 -59.5445 -204.789 - 82 48.9786 1118 0 1 43.65 -59.5758 -204.757 - 82 67.6244 1119 0 1 43.85 -59.618 -204.743 - 82 316.142 1120 0 1 44.05 -59.6639 -204.739 - 82 50.1032 1121 0 1 44.25 -59.7385 -204.737 - 82 84.8555 1123 0 1 44.6504 -59.9054 -204.742 - 82 54.2224 1124 0 1 44.85 -60.0104 -204.758 - 82 93.877 1125 0 1 45.05 -60.1118 -204.773 - 82 91.1413 1126 0 1 45.25 -60.2318 -204.79 - 82 21.283 589 0 0 46.2159 -62.193 -205.85 - 82 59.3551 588 0 0 46.2383 -62.2514 -205.885 - 82 63.402 587 0 0 46.2944 -62.45 -205.941 - 82 53.1378 586 0 0 46.348 -62.65 -205.911 - 82 129.459 1133 0 1 46.7458 -65.0073 -204.85 - 82 60.9132 1134 0 1 46.85 -65.4745 -204.56 - 82 17.0176 598 9 0 38.4064 -60.4195 64.15 - 82 105.564 597 9 0 38.4093 -60.4503 64.1125 - 82 74.9858 596 9 0 38.4418 -60.65 63.9047 - 82 3.87974 595 9 0 38.4879 -60.85 63.7585 - 82 35.1024 304 9 0 30.5897 -119.262 63.75 - 82 75.0526 303 9 0 30.5396 -119.35 63.8217 - 82 76.4028 302 9 0 30.4827 -119.55 63.9151 - 82 100.707 301 9 0 30.3532 -119.75 63.9539 - 82 63.6084 300 9 0 30.1907 -119.95 63.9284 - 82 97.4071 299 9 0 30.0423 -120.15 63.9644 - 82 77.5767 298 9 0 30.0772 -120.35 63.8361 - 82 128.027 187 9 0 86.4106 -142.58 63.75 - 82 108.385 600 5 0 38.955 -59.8531 -55.85 - 82 113.798 1095 4 1 39.1394 -59.9984 -84.45 - 82 202.079 1097 3 1 39.511 -59.3034 -114.45 - 82 177.607 603 3 0 39.5545 -59.3164 -115.851 - 82 122.401 1105 2 1 41.1239 -59.472 -144.45 - 82 283.682 602 2 0 41.1813 -59.5449 -145.85 - 82 122.914 1110 1 1 42.1861 -61.217 -174.45 - 82 100.352 593 1 0 42.2411 -61.3087 -175.851 - 82 20.5069 582 0 0 43.161 -63.6295 -205.85 - 82 165.234 581 0 0 43.1433 -63.65 -205.912 - 82 115.015 602 5 0 38.8916 -59.6493 -55.8501 - 82 412.625 1090 4 1 38.1919 -55.5112 -84.45 - 82 159.8 623 4 0 38.1104 -55.4313 -85.85 - 82 134.847 1081 3 1 36.3288 -53.3684 -114.45 - 82 111.942 633 3 0 36.2652 -53.3407 -115.85 - 82 143.457 1074 2 1 34.9661 -52.6826 -144.45 - 82 111.836 636 2 0 35.0757 -52.786 -145.85 - 82 222.075 1088 1 1 37.6712 -55.4146 -174.45 - 82 14.7615 1087 1 1 37.65 -55.5027 -174.797 - 82 122.05 621 1 0 37.6008 -55.7593 -175.85 - 82 22.4685 620 1 0 37.5831 -55.85 -176.224 - 82 113.435 1080 0 1 36.1698 -62.6324 -204.45 - 82 128.433 584 0 0 35.9459 -63.1086 -205.85 - 82 34.7193 492 0 0 24.4159 -81.6022 -206.25 - 82 86.3935 491 0 0 24.4055 -81.65 -206.143 - 82 126.761 1021 0 1 24.3492 -82.4418 -204.85 - 82 125.779 468 1 0 23.6308 -86.25 -176.206 - 82 100.092 1019 1 1 23.9081 -86.5459 -174.85 - 82 45.6121 643 2 0 54.693 -51.3662 -146.25 - 82 251.553 644 2 0 54.8214 -51.25 -146.13 - 82 126.62 1183 2 1 56.6827 -50.1653 -144.85 - 82 99.9588 1184 2 1 56.8504 -50.0167 -144.701 - 82 42.9009 1185 2 1 57.05 -49.8912 -144.513 - 82 130.68 589 2 0 36.3826 -62.2337 -146.25 - 82 328.035 1091 7 1 38.3869 -59.5753 5.55 - 82 277.358 602 7 0 38.4024 -59.5734 4.15 - 82 190.252 1093 6 1 38.8193 -59.4957 -24.45 - 82 505.295 602 6 0 38.7959 -59.4852 -25.85 - 82 141.042 1091 5 1 38.3822 -59.1727 -54.45 - 82 112.277 604 5 0 38.4364 -59.2172 -55.85 - 82 126.724 1101 3 1 40.2802 -61.7873 -114.45 - 82 128.606 591 3 0 40.3682 -61.801 -115.85 - 82 121.842 1111 2 1 42.2714 -62.2178 -144.45 - 82 288.703 1117 1 1 43.4616 -62.529 -174.45 - 82 137.015 587 1 0 43.488 -62.6034 -175.85 - 82 108.795 579 0 0 44.0814 -64.2015 -205.85 - 82 18.9475 583 1 0 43.6759 -63.3947 -175.85 - 82 150.955 582 1 0 43.6854 -63.45 -175.919 - 82 47.2223 1116 1 1 43.45 -62.4611 -174.528 - 82 136.774 589 1 0 44.2354 -62.2185 -175.85 - 82 52.4628 590 1 0 44.4128 -62.05 -176.105 - 82 103.109 592 1 0 44.6215 -61.65 -176.229 - 82 249.787 1149 1 1 49.8615 113.702 -174.45 - 82 71.6813 1148 1 1 49.8499 113.696 -174.456 - 82 102.51 1092 4 1 38.5858 -59.9378 -84.45 - 82 128.427 1093 4 1 38.6502 -59.8802 -84.5095 - 82 125.915 1059 6 1 31.9219 -59.409 -24.45 - 82 192.611 1057 5 1 31.6164 -61.5983 -54.45 - 82 22.7125 586 5 0 31.5425 -62.8141 -55.8504 - 82 89.1434 585 5 0 31.5412 -62.8505 -55.8906 - 82 46.8845 584 5 0 31.5363 -63.05 -56.1141 - 82 174.364 416 5 0 -0.05 -96.8172 -56.1681 - 82 77.0906 893 5 1 -1.42245 -97.2013 -54.85 - 82 120.791 892 5 1 -1.45 -97.2099 -54.8238 - 82 359.572 891 5 1 -1.65011 -97.2794 -54.6349 - 82 129.249 890 5 1 -1.85 -97.3463 -54.4754 - 82 86.5494 894 5 1 -1.25 -98.1463 -54.6303 - 82 73.8507 895 5 1 -1.04943 -98.2284 -54.7423 - 82 2.52818 896 5 1 -0.85 -98.3057 -54.8442 - 82 1.58238 405 5 0 1.16384 -99.1473 -55.8503 - 82 135.518 404 5 0 1.17148 -99.1505 -55.8542 - 82 97.8508 403 5 0 1.56348 -99.35 -56.0176 - 82 131.933 402 5 0 1.75774 -99.55 -56.0767 - 82 238.243 401 5 0 2.14173 -99.75 -56.1372 - 82 97.6495 400 5 0 2.77969 -99.95 -55.94 - 82 16.7588 940 5 1 8.18478 -100.853 -54.85 - 82 53.9775 941 5 1 8.25038 -100.866 -54.836 - 82 60.6682 942 5 1 8.45 -100.93 -54.7829 - 82 51.9637 943 5 1 8.65 -100.979 -54.7293 - 82 50.7176 944 5 1 8.85 -101.011 -54.6736 - 82 58.6051 945 5 1 9.05 -101.045 -54.6139 - 82 65.838 946 5 1 9.25 -101.058 -54.5476 - 82 54.9455 947 5 1 9.45 -101.079 -54.5097 - 82 46.727 948 5 1 9.66254 -101.114 -54.45 - 82 104.439 949 5 1 9.85 -101.114 -54.4918 - 82 56.0427 950 5 1 10.05 -101.091 -54.5418 - 82 48.1923 951 5 1 10.2511 -101.073 -54.572 - 82 49.1918 952 5 1 10.4504 -101.04 -54.5866 - 82 61.0372 953 5 1 10.6503 -101.014 -54.5903 - 82 60.0047 954 5 1 10.85 -100.983 -54.566 - 82 63.1138 955 5 1 11.0517 -100.931 -54.532 - 82 134.982 956 5 1 11.25 -100.902 -54.5004 - 82 11.3194 957 5 1 11.45 -100.907 -54.4679 - 82 58.116 280 6 0 -116.024 -123.95 -26.0695 - 82 120.117 1091 8 1 38.2903 -59.482 35.55 - 82 145.739 602 8 0 38.2902 -59.4811 34.15 - 82 125.741 1090 6 1 38.218 -59.4328 -24.45 - 82 91.7525 603 6 0 38.2146 -59.4286 -25.85 - 82 100.291 1090 5 1 38.1076 -59.3395 -54.45 - 82 107.754 603 5 0 38.1046 -59.334 -55.85 - 82 102.62 1089 4 1 38.0427 -59.2181 -84.45 - 82 104.158 604 4 0 38.0404 -59.2114 -85.85 - 82 307.056 1089 3 1 37.987 -59.0708 -114.45 - 82 173.985 604 3 0 37.9881 -59.0627 -115.85 - 82 134.934 1089 2 1 38.0201 -58.8992 -144.45 - 82 133.768 605 2 0 38.0214 -58.8915 -145.85 - 82 179.488 1089 1 1 38.047 -58.7314 -174.45 - 82 144.385 606 1 0 38.0462 -58.7257 -175.85 - 82 104.155 1089 0 1 38.0278 -58.5998 -204.45 - 82 102.594 607 0 0 38.0256 -58.5944 -205.85 - 82 145.224 903 0 1 0.696905 -80.3729 -204.45 - 82 156.167 375 9 0 125.366 -105.121 63.75 - 82 3.91235 611 3 0 37.9463 -57.6646 -115.85 - 82 109.537 612 3 0 37.946 -57.65 -115.863 - 82 73.0577 613 3 0 37.9754 -57.4495 -116.024 - 82 58.7335 614 3 0 38.016 -57.25 -116.16 - 82 38.6274 615 3 0 38.0915 -57.05 -116.22 - 82 145.804 1437 3 0 60.4623 107.569 -116.25 - 82 48.6179 1438 3 0 60.4888 107.75 -116.2 - 82 27.2312 1439 3 0 60.472 107.95 -116.2 - 82 117.632 1436 3 0 51.7483 107.55 -116.167 - 82 198.565 1153 3 1 50.8451 106.474 -114.85 - 82 159.603 1154 3 1 50.85 106.552 -114.548 - 82 344.521 197 8 0 7.72213 -140.56 33.75 - 82 151.762 601 4 0 38.1781 -59.6721 -85.85 - 82 100.498 1090 3 1 38.2106 -59.6106 -114.45 - 82 264.054 602 3 0 38.2194 -59.6173 -115.85 - 82 98.8099 1090 2 1 38.095 -59.7102 -144.45 - 82 131.469 601 2 0 38.0774 -59.7182 -145.85 - 82 112.881 1088 0 1 37.6943 -60.1088 -204.45 - 82 129.534 599 0 0 37.6884 -60.1228 -205.85 - 82 144.953 602 4 0 38.1092 -59.6459 -85.85 - 82 108.085 1084 3 1 37.0341 -59.1636 -114.45 - 82 68.5938 605 3 0 36.8966 -59.05 -116.017 - 82 120.743 1071 2 1 34.263 -56.8294 -144.45 - 82 59.2679 616 2 0 34.2874 -56.6765 -145.85 - 82 43.6334 617 2 0 34.291 -56.65 -146.108 - 82 491.542 1073 1 1 34.7284 -53.7473 -174.45 - 82 106.305 632 1 0 34.764 -53.5821 -175.85 - 82 20.9428 1077 0 1 35.6412 -50.4089 -204.45 - 82 107.835 1078 0 1 35.65 -50.4023 -204.524 - 82 74.1112 648 0 0 35.8235 -50.2786 -205.85 - 82 29.615 649 0 0 35.8645 -50.25 -206.143 - 82 73.2648 1107 2 1 41.561 -56.3783 -144.45 - 82 52.4174 1108 2 1 41.6501 -56.3924 -144.688 - 82 105.827 618 2 0 42.1012 -56.3491 -145.85 - 82 69.8168 489 2 0 47.8359 -82.1341 -146.25 - 82 163.009 488 2 0 47.7848 -82.2504 -146.124 - 82 35.183 487 2 0 47.6659 -82.45 -145.94 - 82 119.463 1134 2 1 47.0163 -83.6198 -144.85 - 82 68.6837 1133 2 1 46.85 -83.9159 -144.624 - 82 51.3044 1132 2 1 46.5987 -84.2731 -144.45 - 82 93.1538 1131 2 1 46.45 -84.3416 -144.58 - 82 43.3084 1130 2 1 46.25 -84.4521 -144.754 - 82 112.106 476 2 0 45.65 -84.7644 -145.85 - 82 19.8165 429 2 0 25.6013 -94.3263 -146.25 - 82 81.2988 428 2 0 25.6032 -94.3501 -146.176 - 82 51.9267 1027 2 1 25.6198 -94.4892 -144.85 - 82 50.3104 1028 2 1 25.65 -94.5215 -144.626 - 82 117.129 599 3 0 37.9066 -60.0556 -115.851 -Number of digits in this event = 103 -Using G4ParticleGun ... -3.02453 LIN -gamma -Event: 83 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -Using G4ParticleGun ... -3.03625 LIN -gamma -Event: 84 -Number of tracker hits in this event = 209 - 84 81.5058 1030 8 0 -45.5133 26.0578 33.9337 - 84 263.458 672 7 1 -45.5433 26.0777 5.55 - 84 208.374 1030 7 0 -45.5208 26.0779 4.15 - 84 113.939 675 6 1 -45.0111 26.1037 -24.45 - 84 299.686 1030 6 0 -44.9955 26.1355 -25.8502 - 84 251.368 677 5 1 -44.485 27.3741 -54.4502 - 84 224.258 1037 5 0 -44.4651 27.5082 -55.85 - 84 181.236 680 4 1 -43.9968 30.0764 -84.4506 - 84 108.273 1050 4 0 -43.9921 30.2051 -85.85 - 84 114.022 679 3 1 -44.1218 33.1035 -114.45 - 84 119.908 1065 3 0 -44.1434 33.206 -115.851 - 84 147.275 677 2 1 -44.646 34.9921 -144.45 - 84 196.686 676 2 1 -44.65 34.9933 -144.523 - 84 138.723 1074 2 0 -44.7166 35.0106 -145.85 - 84 228.99 670 1 1 -46.0231 35.2661 -174.45 - 84 113.714 1076 1 0 -46.1187 35.3416 -175.85 - 84 132.665 659 0 1 -48.1155 36.9654 -204.45 - 84 172.607 1084 0 0 -48.1659 37.039 -205.85 - 84 40.8242 1085 0 0 -48.1739 37.05 -206.096 - 84 90.2812 669 1 1 -46.05 35.2816 -174.48 - 84 124.393 668 1 1 -46.25 35.2766 -174.718 - 84 86.8543 1075 1 0 -47.3752 35.2048 -175.85 - 84 117.031 1074 1 0 -47.5022 35.0499 -176.025 - 84 103.379 1073 1 0 -47.7281 34.8499 -176.08 - 84 97.6984 1072 1 0 -47.9583 34.65 -176.041 - 84 50.9961 1071 1 0 -48.0958 34.45 -176.131 - 84 162.389 1100 1 0 -46.7117 40.2356 -176.25 - 84 14.7947 1032 5 0 -44.53 26.4815 -55.8501 - 84 93.3879 1031 5 0 -44.529 26.45 -55.8957 - 84 387.325 1030 5 0 -44.5128 26.25 -56.2032 - 84 143.164 687 4 1 -42.6241 8.88943 -84.45 - 84 88.0162 941 4 0 -42.2427 8.3299 -85.85 - 84 61.1791 940 4 0 -42.1789 8.25 -86.0649 - 84 108.98 729 3 1 -34.1595 -1.98846 -114.45 - 84 190.913 892 3 0 -33.6602 -1.56429 -115.851 - 84 32.7167 893 3 0 -33.5475 -1.45 -116.127 - 84 16.0221 799 2 1 -20.0825 10.7126 -144.45 - 84 63.7929 800 2 1 -20.05 10.7253 -144.46 - 84 60.2587 801 2 1 -19.85 10.8076 -144.508 - 84 85.2075 802 2 1 -19.65 10.8658 -144.526 - 84 59.3397 803 2 1 -19.45 10.9232 -144.533 - 84 63.2627 804 2 1 -19.2488 10.9769 -144.524 - 84 25.0244 805 2 1 -19.05 11.024 -144.478 - 84 117.297 1020 3 0 -15.0522 24.1019 -116.25 - 84 27.8905 1021 3 0 -14.9129 24.2503 -115.92 - 84 38.6243 826 3 1 -14.676 25.1375 -114.85 - 84 144.643 827 3 1 -14.65 25.2138 -114.769 - 84 208.235 828 3 1 -14.45 25.5341 -114.451 - 84 5.18326 829 3 1 -14.25 26.3641 -114.843 - 84 190.274 1036 3 0 -12.9484 27.2866 -115.85 - 84 134.149 447 7 0 111.902 -90.55 3.95787 - 84 55.4122 1467 7 1 113.559 -91.1971 5.15 - 84 79.1427 1468 7 1 113.75 -91.2577 5.21882 - 84 93.8485 1469 7 1 113.95 -91.3272 5.33894 - 84 157.379 1470 7 1 114.15 -91.4854 5.41311 - 84 145.25 1471 7 1 114.35 -91.6485 5.39383 - 84 143.624 433 7 0 115.6 -93.4742 4.15 - 84 149.929 432 7 0 115.743 -93.55 4.03697 - 84 36.6703 891 3 0 -33.473 -1.65027 -116.143 - 84 116.37 608 3 0 -14.6752 -58.3458 -116.25 - 84 123.759 666 3 1 -46.681 27.507 -114.45 - 84 109.076 667 3 1 -46.65 27.5148 -114.508 - 84 108.965 1039 3 0 -46.0189 27.8632 -115.85 - 84 63.7866 689 2 1 -42.1385 32.4009 -144.45 - 84 171.208 690 2 1 -42.05 32.3822 -144.722 - 84 120.998 1060 2 0 -41.7625 32.2488 -145.851 - 84 20.8898 1374 2 0 -26.2845 95.0929 -146.25 - 84 65.1149 1375 2 0 -26.2729 95.15 -146.225 - 84 70.6048 1376 2 0 -26.1911 95.35 -146.098 - 84 8.10173 1377 2 0 -26.1356 95.55 -145.883 - 84 179.348 770 2 1 -25.8875 96.5182 -144.85 - 84 378.458 771 2 1 -25.85 96.8982 -144.483 - 84 321.806 772 2 1 -25.6499 97.7114 -144.563 - 84 286.535 1395 2 0 -25.9982 99.2012 -145.85 - 84 105.462 1037 3 0 -46.4936 27.6011 -115.85 - 84 17.1519 1052 2 0 -41.7272 30.6039 -145.85 - 84 111.194 1053 2 0 -41.7163 30.6501 -145.913 - 84 28.799 1054 2 0 -41.6874 30.85 -146.169 - 84 4.41661 702 1 1 -39.4588 50.4395 -174.45 - 84 131.167 703 1 1 -39.45 50.4364 -174.465 - 84 29.1021 704 1 1 -39.25 50.3595 -174.754 - 84 294.195 1149 1 0 -38.4223 49.95 -175.85 - 84 67.3176 705 0 1 -38.9552 53.4796 -204.45 - 84 47.1776 706 0 1 -38.85 53.489 -204.686 - 84 211.524 1167 0 0 -38.2479 53.574 -205.85 - 84 179.361 672 6 1 -45.4912 26.1037 -24.45 - 84 548.51 672 5 1 -45.5803 26.072 -54.45 - 84 431.004 671 4 1 -45.6909 26.1522 -84.45 - 84 507.246 1030 4 0 -45.6943 26.1571 -85.85 - 84 144.963 671 3 1 -45.7431 26.264 -114.45 - 84 110.282 1031 3 0 -45.751 26.2786 -115.85 - 84 135.243 670 2 1 -45.9031 26.5507 -144.45 - 84 324.855 1032 2 0 -45.9078 26.5657 -145.85 - 84 104.769 1034 1 0 -45.992 26.8898 -175.85 - 84 128.722 669 0 1 -46.1093 27.1277 -204.45 - 84 152.49 1035 0 0 -46.1151 27.1651 -205.85 - 84 105.83 591 2 1 -61.6692 97.1628 -144.45 - 84 220.921 592 2 1 -61.6499 97.1462 -144.504 - 84 22.5938 1033 2 0 -45.9993 26.65 -146.077 - 84 412.66 306 13 0 -25.2217 -118.791 183.75 - 84 152.613 773 13 1 -25.3197 -119.667 185.15 - 84 1.84237 772 13 1 -25.45 -119.872 185.158 - 84 16.2004 303 13 0 -26.516 -119.361 184.15 - 84 93.2888 304 13 0 -26.5639 -119.35 184.102 - 84 70.0594 305 13 0 -26.7258 -119.15 184.047 - 84 178.097 612 10 0 8.21316 -57.4792 93.75 - 84 61.9674 391 1 0 25.1742 -101.934 -176.25 - 84 152.182 392 1 0 25.1399 -101.75 -176.197 - 84 22.3334 1031 1 1 26.3809 -102.609 -174.85 - 84 146.292 1032 1 1 26.45 -102.6 -174.804 - 84 285.813 1033 1 1 26.65 -102.634 -174.497 - 84 134.692 673 5 1 -45.4499 26.1386 -54.7569 - 84 142.427 1029 4 0 -45.8197 26.0393 -85.85 - 84 148.702 652 3 1 -49.5415 26.6376 -114.45 - 84 126.733 1034 3 0 -49.7052 26.8633 -115.85 - 84 139.343 630 2 1 -53.8535 32.6176 -144.45 - 84 119.488 1065 2 0 -54.0169 33.1052 -145.85 - 84 122.546 615 1 1 -56.9228 42.1017 -174.45 - 84 53.1763 1111 1 0 -57.0218 42.4094 -175.85 - 84 58.6109 1112 1 0 -57.0312 42.45 -176.026 - 84 107.133 612 0 1 -57.4822 49.3651 -204.45 - 84 168.387 1147 0 0 -57.4404 49.56 -205.85 - 84 144.646 1148 0 0 -57.3736 49.65 -205.91 - 84 109.453 1027 4 0 -45.8017 25.6315 -85.85 - 84 96.5806 658 3 1 -48.3332 14.5578 -114.45 - 84 14.7091 657 3 1 -48.45 14.6371 -114.8 - 84 26.9836 974 3 0 -48.8338 15.0245 -115.85 - 84 100.962 975 3 0 -48.8558 15.05 -115.914 - 84 85.1354 584 2 1 -63.2041 32.5362 -144.45 - 84 24.3123 583 2 1 -63.25 32.5977 -144.757 - 84 115.847 1063 2 0 -63.4893 32.757 -145.85 - 84 29.463 556 1 1 -68.7377 38.6009 -174.45 - 84 143.715 557 1 1 -68.65 38.688 -174.51 - 84 132.412 558 1 1 -68.45 38.9141 -174.555 - 84 225.978 559 1 1 -68.25 39.1149 -174.498 - 84 34.5651 560 1 1 -68.05 39.417 -174.735 - 84 130.286 1096 1 0 -67.374 39.3353 -175.85 - 84 238.884 1097 1 0 -67.4818 39.5859 -175.85 - 84 3.30382 1044 1 0 -15.2839 28.9634 -176.25 - 84 184.119 941 1 0 35.2638 8.40114 -176.25 - 84 84.8968 1098 1 0 -67.2794 39.6501 -176.122 - 84 81.6235 666 4 0 -107.363 -46.6864 -86.25 - 84 292.508 665 4 0 -107.546 -46.85 -86.1857 - 84 65.3771 664 4 0 -107.675 -47.05 -86.2161 - 84 8.73266 663 4 0 -107.776 -47.25 -86.248 - 84 582.67 672 4 1 -45.5183 25.9593 -84.45 - 84 123.64 1028 4 0 -45.509 25.85 -85.8617 - 84 117.757 673 3 1 -45.3876 23.6417 -114.45 - 84 110.135 1017 3 0 -45.3694 23.5587 -115.85 - 84 126.433 675 2 1 -44.8983 21.7558 -144.45 - 84 109.763 1008 2 0 -44.8404 21.6691 -145.85 - 84 48.3612 1007 2 0 -44.8271 21.65 -146.164 - 84 114.121 682 1 1 -43.5656 19.9935 -174.45 - 84 116.161 999 1 0 -43.4874 19.9561 -175.85 - 84 111.336 690 0 1 -41.8863 19.1018 -204.45 - 84 346.577 994 0 0 -41.8494 19.0336 -205.85 - 84 108.1 1564 8 0 98.7711 132.982 33.75 - 84 53.8184 1388 8 1 97.8736 133.505 35.1505 - 84 45.2945 1387 8 1 97.75 133.507 35.239 - 84 149.947 1386 8 1 97.55 133.523 35.2943 - 84 70.0644 1385 8 1 97.35 133.429 35.3019 - 84 33.1464 1384 8 1 97.1496 133.437 35.2163 - 84 86.6971 1565 8 0 96.1892 133.169 34.1498 - 84 221.566 1566 8 0 96.1426 133.35 33.9784 - 84 176.53 1084 9 1 36.9638 -3.03768 65.15 - 84 132.606 1085 9 1 37.05 -3.03406 65.4491 - 84 169.201 995 0 0 -41.8231 19.05 -206.183 - 84 127.112 670 3 1 -45.9847 26.0432 -114.45 - 84 110.902 1029 3 0 -46.0446 26.0248 -115.85 - 84 63.6343 663 2 1 -47.4379 25.6062 -144.45 - 84 120.712 662 2 1 -47.45 25.6086 -144.679 - 84 96.7882 1027 2 0 -47.5151 25.6167 -145.85 - 84 101.27 654 1 1 -49.1766 25.8087 -174.45 - 84 110.31 1029 1 0 -49.2552 25.9942 -175.85 - 84 120.17 645 0 1 -50.9625 29.7873 -204.45 - 84 121.12 1049 0 0 -51.0732 29.9703 -205.85 - 84 130.059 681 3 1 -43.7429 25.2616 -114.45 - 84 67.0447 1023 3 0 -43.7663 24.7272 -115.85 - 84 51.7448 1022 3 0 -43.7714 24.65 -116.049 - 84 149.124 964 2 0 -44.4142 12.9621 -145.85 - 84 347.98 685 1 1 -42.9227 5.51197 -174.45 - 84 137.359 923 1 0 -43.3858 4.82613 -175.85 - 84 2.07787 922 1 0 -43.5162 4.65 -176.24 - 84 128.153 639 0 1 -52.088 -7.54198 -204.451 - 84 258.342 860 0 0 -52.6596 -7.85603 -205.85 - 84 42.5551 942 1 0 -3.42153 8.45 -176.211 - 84 241.674 686 1 1 -42.85 5.17718 -174.734 - 84 149.851 687 1 1 -42.65 4.76682 -174.719 - 84 212.622 688 1 1 -42.4499 4.6768 -174.515 - 84 117.229 646 3 1 -50.6979 25.5349 -114.45 - 84 117.838 1026 3 0 -50.9741 25.312 -115.85 - 84 0.517924 1025 3 0 -51.0559 25.2499 -116.246 - 84 84.1818 615 2 1 -56.8887 20.5618 -144.45 - 84 41.4496 614 2 1 -57.05 20.6775 -144.728 - 84 255.972 1005 2 0 -57.6998 21.1275 -145.85 - 84 224.126 1006 2 0 -57.8774 21.25 -146.161 - 84 77.8455 533 1 1 -73.3268 31.7693 -174.45 - 84 92.7661 532 1 1 -73.45 31.8393 -174.593 - 84 30.3596 531 1 1 -73.65 31.9482 -174.811 - 84 154.355 1062 1 0 -74.6113 32.4743 -175.85 - 84 21.8936 1063 1 0 -74.9293 32.65 -176.2 - 84 11.7354 400 0 1 -100.131 47.2004 -204.45 - 84 67.1626 399 0 1 -100.15 47.2088 -204.465 - 84 77.8931 398 0 1 -100.35 47.2929 -204.622 - 84 32.4385 397 0 1 -100.55 47.3697 -204.777 - 84 143.084 1139 0 0 -101.874 47.9185 -205.85 - 84 99.7359 1140 0 0 -102.225 48.05 -206.136 - 84 70.9491 605 2 1 -58.9614 21.1093 -144.85 - 84 180.3 606 2 1 -58.85 21.0749 -144.791 -Number of digits in this event = 97 -Using G4ParticleGun ... -3.24826 LIN -gamma -Event: 85 -Number of tracker hits in this event = 4 - 85 13.3404 1134 2 0 44.8659 47.0365 -146.25 - 85 216.28 1135 2 0 44.8446 47.05 -146.231 - 85 94.8348 1343 10 0 -71.3852 88.8341 93.75 - 85 34.1932 1344 10 0 -71.3721 88.85 93.8485 -Number of digits in this event = 3 -Using G4ParticleGun ... -5.89477 LIN -gamma -Event: 86 -Number of tracker hits in this event = 47 - 86 167.316 1341 7 0 116.821 88.3454 3.97882 - 86 269.883 1483 6 1 116.824 88.3369 -24.45 - 86 235.903 1341 6 0 116.825 88.3352 -25.85 - 86 231.945 1483 5 1 116.835 88.3363 -54.45 - 86 284.163 1341 5 0 116.836 88.3358 -55.85 - 86 187.843 1483 4 1 116.842 88.3162 -84.45 - 86 443.425 1341 4 0 116.844 88.3128 -85.85 - 86 138.886 1483 3 1 116.878 88.2392 -114.45 - 86 259.794 1340 3 0 116.877 88.2352 -115.85 - 86 268.386 1483 2 1 116.868 88.1379 -144.45 - 86 113.2 1340 2 0 116.871 88.1334 -145.85 - 86 261.235 1483 1 1 116.923 88.0402 -174.45 - 86 224.65 1339 1 0 116.916 88.038 -175.85 - 86 343.274 1483 0 1 116.759 87.9914 -204.45 - 86 141.225 1339 0 0 116.761 87.9846 -205.85 - 86 164.717 1484 1 1 116.95 88.0462 -174.493 - 86 50.7265 1485 1 1 117.15 88.1489 -174.813 - 86 20.4974 1342 1 0 117.974 88.6177 -175.85 - 86 114.354 1343 1 0 118.021 88.65 -175.912 - 86 36.0361 1344 1 0 118.327 88.85 -176.181 - 86 218.113 1635 0 1 147.223 107.09 -204.45 - 86 61.3335 1636 0 1 147.35 107.742 -204.742 - 86 50.1495 1447 0 0 147.895 109.593 -205.85 - 86 83.7589 1448 0 0 147.952 109.75 -205.937 - 86 121.043 1449 0 0 148.063 109.95 -206.044 - 86 43.8341 1450 0 0 148.173 110.15 -206.173 - 86 141.31 1340 1 0 116.922 88.05 -176.059 - 86 343.935 1340 0 0 116.856 88.1246 -205.85 - 86 64.3122 1200 1 0 16.3912 60.05 -175.951 - 86 99.0511 1199 1 0 16.6925 60.05 -176.105 - 86 152.297 1482 4 1 116.75 88.1854 -84.7713 - 86 15.1462 1336 4 0 115.974 87.2877 -85.85 - 86 127.038 1335 4 0 115.937 87.2499 -85.8962 - 86 129.226 1334 4 0 115.634 87.05 -86.0908 - 86 101.128 1481 3 1 116.494 88.5017 -114.45 - 86 124.895 1342 3 0 116.484 88.5 -115.85 - 86 124.966 1480 2 1 116.26 88.4432 -144.45 - 86 154.895 1341 2 0 116.247 88.4313 -145.85 - 86 147.476 1479 1 1 115.96 88.181 -174.45 - 86 156.81 1478 0 1 115.856 87.6391 -204.45 - 86 123.946 1337 0 0 115.861 87.6065 -205.85 - 86 83.1817 1231 2 0 26.2341 66.45 -145.995 - 86 39.8053 1232 2 0 26.0244 66.4501 -145.883 - 86 22.6913 1037 2 1 27.5408 69.4954 -144.85 - 86 64.2697 1243 2 0 27.5168 68.7875 -145.85 - 86 238.67 1481 0 1 116.505 88.3997 -204.45 - 86 91.122 1482 0 1 116.55 88.4168 -204.673 +Number of tracker hits in this event = 82 + 81 268.757 858 6 1 -8.32574 2.23396 -24.45 + 81 169.909 910 6 0 -8.32745 2.23664 -25.85 + 81 275.808 858 5 1 -8.36164 2.29919 -54.45 + 81 120.182 911 5 0 -8.36342 2.30301 -55.85 + 81 215.681 858 4 1 -8.39261 2.39617 -84.45 + 81 127.391 911 4 0 -8.39858 2.40212 -85.85 + 81 106.36 857 3 1 -8.4501 2.35493 -114.45 + 81 208.062 911 3 0 -8.45065 2.35409 -115.85 + 81 159.595 857 2 1 -8.46333 2.34045 -144.45 + 81 114.581 911 2 0 -8.46232 2.34107 -145.85 + 81 111.982 858 1 1 -8.44405 2.365 -174.45 + 81 100.078 911 1 0 -8.44307 2.36696 -175.85 + 81 139.413 858 0 1 -8.43738 2.40687 -204.45 + 81 239.637 911 0 0 -8.43743 2.40468 -205.85 + 81 42.2744 1354 7 0 58.9161 91.0374 3.75 + 81 120.018 1355 7 0 58.9057 91.1502 3.86164 + 81 73.5252 1356 7 0 58.8719 91.35 3.94261 + 81 53.1316 1357 7 0 58.908 91.55 3.846 + 81 147.023 1358 7 0 58.8843 91.7502 3.81668 + 81 136.459 1359 7 0 58.9677 91.95 3.93634 + 81 201.716 1192 7 1 58.5512 93.3481 5.15001 + 81 247.8 911 6 0 -8.44863 2.28791 -25.8501 + 81 148.951 846 5 1 -10.682 3.38182 -54.45 + 81 259.146 917 5 0 -10.7392 3.52408 -55.8503 + 81 176.68 847 4 1 -10.5734 10.5056 -84.45 + 81 42.7565 952 4 0 -10.5778 10.6357 -85.8501 + 81 79.6359 953 4 0 -10.5815 10.65 -86.003 + 81 126.563 845 3 1 -11.0164 13.4359 -114.45 + 81 2.14795 846 3 1 -10.85 13.3884 -114.839 + 81 53.0865 966 3 0 -10.4386 13.2615 -115.851 + 81 185.082 965 3 0 -10.399 13.2499 -115.948 + 81 118.679 914 2 1 2.8893 9.7262 -144.45 + 81 129.083 915 2 1 3.0508 9.61834 -144.681 + 81 71.5554 945 2 0 3.7908 9.08927 -145.85 + 81 218.242 944 2 0 3.84383 9.05 -145.934 + 81 33.9257 1023 1 1 24.7622 -3.67504 -174.45 + 81 156.011 1024 1 1 24.85 -3.68546 -174.485 + 81 52.0963 1025 1 1 25.05 -3.70785 -174.562 + 81 51.7747 1026 1 1 25.25 -3.74201 -174.634 + 81 167.398 1027 1 1 25.45 -3.78677 -174.707 + 81 57.8381 1028 1 1 25.6509 -3.8361 -174.775 + 81 1.78092 1029 1 1 25.85 -3.89308 -174.846 + 81 28.6942 876 1 0 28.869 -4.83046 -175.85 + 81 219.87 875 1 0 28.9316 -4.85014 -175.87 + 81 151.834 874 1 0 29.6303 -5.05 -176.118 + 81 128.99 1617 0 1 143.665 -31.3225 -204.45 + 81 116.726 1616 0 1 143.55 -31.0809 -204.632 + 81 279.404 755 0 0 143.083 -28.9832 -205.85 + 81 95.6072 756 0 0 143.067 -28.85 -205.927 + 81 58.639 757 0 0 143.063 -28.65 -206.045 + 81 60.7238 758 0 0 143.115 -28.45 -206.156 + 81 159.797 733 1 0 132.161 -33.378 -176.25 + 81 14.9652 1551 1 1 130.409 -33.6089 -174.85 + 81 55.7336 1550 1 1 130.35 -33.623 -174.815 + 81 72.2007 1549 1 1 130.15 -33.6516 -174.708 + 81 53.4127 1548 1 1 129.949 -33.6783 -174.605 + 81 32.9595 1547 1 1 129.75 -33.7379 -174.512 + 81 70.654 916 2 1 3.25 9.69497 -144.593 + 81 48.4821 917 2 1 3.45022 9.6967 -144.6 + 81 45.7735 918 2 1 3.65031 9.68873 -144.61 + 81 42.0133 919 2 1 3.85 9.65181 -144.658 + 81 389.717 920 2 1 4.05011 9.62186 -144.704 + 81 50.608 921 2 1 4.25 9.62773 -144.735 + 81 56.9753 922 2 1 4.45 9.6494 -144.762 + 81 78.2418 923 2 1 4.65 9.68498 -144.786 + 81 67.1264 924 2 1 4.85 9.85126 -144.687 + 81 91.7058 925 2 1 5.05016 10.0075 -144.637 + 81 92.505 926 2 1 5.2509 10.1784 -144.636 + 81 68.6599 927 2 1 5.45 10.2495 -144.72 + 81 94.0694 928 2 1 5.65 10.3293 -144.758 + 81 73.3036 929 2 1 5.85 10.5711 -144.843 + 81 111.699 930 2 1 6.05 10.6786 -144.831 + 81 82.3673 931 2 1 6.25 10.6266 -144.807 + 81 60.5363 932 2 1 6.45008 10.5086 -144.768 + 81 65.0402 933 2 1 6.65 10.4168 -144.742 + 81 54.9756 934 2 1 6.85 10.3898 -144.67 + 81 76.3011 935 2 1 7.05 10.4006 -144.608 + 81 73.1759 936 2 1 7.25 10.344 -144.606 + 81 59.2032 937 2 1 7.45 10.2566 -144.616 + 81 66.0606 938 2 1 7.65 10.1036 -144.625 + 81 59.2248 939 2 1 7.85 10.0496 -144.561 + 81 78.2542 918 5 0 -10.6986 3.65 -56.1904 Number of digits in this event = 32 Using G4ParticleGun ... -1.88337 LIN +7.17917 LIN +gamma +Event: 82 +Number of tracker hits in this event = 1 + 82 1.14107 919 0 0 -93.3149 3.85 -206.122 +Number of digits in this event = 3 +Using G4ParticleGun ... +7.44218 LIN +gamma +Event: 83 +Number of tracker hits in this event = 22 + 83 257.978 1122 5 1 44.5651 -42.0372 -54.45 + 83 357.88 690 5 0 44.5619 -42.0332 -55.85 + 83 244.483 1122 4 1 44.565 -41.9379 -84.45 + 83 134.421 690 4 0 44.5603 -41.924 -85.85 + 83 360.026 1122 3 1 44.484 -41.6963 -114.45 + 83 182.992 691 3 0 44.4801 -41.6873 -115.85 + 83 138.275 1121 2 1 44.4023 -41.5448 -144.45 + 83 124.272 692 2 0 44.411 -41.5345 -145.85 + 83 106.755 1122 1 1 44.5846 -41.301 -174.45 + 83 116.212 693 1 0 44.5917 -41.3014 -175.85 + 83 108.715 1123 0 1 44.7233 -41.304 -204.45 + 83 136.812 693 0 0 44.7165 -41.3004 -205.85 + 83 147.934 689 4 0 44.5623 -42.0599 -85.85 + 83 184.838 689 3 0 44.5361 -42.0529 -115.85 + 83 152.239 1122 2 1 44.4995 -42.0756 -144.45 + 83 147.847 689 2 0 44.4971 -42.0767 -145.85 + 83 185.429 1121 1 1 44.4487 -42.1031 -174.45 + 83 241.983 689 1 0 44.445 -42.1031 -175.85 + 83 139.012 1121 0 1 44.3716 -42.1006 -204.45 + 83 142.163 689 0 0 44.3678 -42.1018 -205.85 + 83 38.7378 1493 2 1 118.803 -21.9534 -144.85 + 83 115.688 690 1 0 44.4964 -42.05 -175.896 +Number of digits in this event = 20 +Using G4ParticleGun ... +6.52253 LIN +gamma +Event: 84 +Number of tracker hits in this event = 23 + 84 283.846 734 4 1 -33.1512 -108.519 -84.45 + 84 300.994 358 4 0 -33.152 -108.52 -85.85 + 84 113.526 734 3 1 -33.1687 -108.547 -114.45 + 84 246.561 358 3 0 -33.1696 -108.547 -115.85 + 84 164.153 734 2 1 -33.1911 -108.555 -144.45 + 84 105.442 357 2 0 -33.1925 -108.555 -145.85 + 84 257.547 734 1 1 -33.2134 -108.542 -174.45 + 84 187.759 358 1 0 -33.2144 -108.542 -175.85 + 84 123.33 734 0 1 -33.2278 -108.543 -204.45 + 84 533.374 358 0 0 -33.2289 -108.544 -205.85 + 84 133.403 733 2 1 -33.2505 -108.481 -144.537 + 84 43.8559 361 2 0 -34.4551 -107.83 -145.85 + 84 154.527 362 2 0 -34.5339 -107.75 -145.963 + 84 0.898716 363 2 0 -34.6782 -107.55 -146.249 + 84 373.303 359 1 0 -33.0966 -108.255 -175.85 + 84 101.14 741 0 1 -31.8198 -103.862 -204.45 + 84 115.744 381 0 0 -31.6261 -103.763 -205.85 + 84 142.828 733 3 1 -33.4007 -108.47 -114.45 + 84 99.0742 731 2 1 -33.8238 -108.224 -144.45 + 84 163.975 359 2 0 -33.8677 -108.229 -145.85 + 84 98.3921 726 1 1 -34.7654 -108.296 -174.45 + 84 348.979 721 0 1 -35.6902 -108.488 -204.45 + 84 197.677 357 0 0 -35.7144 -108.684 -205.85 +Number of digits in this event = 18 +Using G4ParticleGun ... +4.53208 LIN +gamma +Event: 85 +Number of tracker hits in this event = 140 + 85 6.0435 1117 10 0 -56.6732 43.5575 93.7635 + 85 373.585 616 9 1 -56.6773 43.5578 65.55 + 85 397.716 1117 9 0 -56.678 43.5537 64.15 + 85 112.078 616 8 1 -56.6877 43.4557 35.55 + 85 317.81 1117 8 0 -56.6871 43.4535 34.15 + 85 151.698 616 7 1 -56.6637 43.435 5.55 + 85 103.107 1116 7 0 -56.6621 43.4318 4.15 + 85 282.443 617 6 1 -56.6335 43.3513 -24.45 + 85 256.877 1116 6 0 -56.6379 43.3423 -25.85 + 85 217.958 616 5 1 -56.7301 43.1576 -54.45 + 85 118.754 1115 5 0 -56.7297 43.1493 -55.85 + 85 101.013 616 4 1 -56.7205 42.9869 -84.45 + 85 111.079 1114 4 0 -56.7241 42.9819 -85.85 + 85 106.399 616 3 1 -56.7834 42.8848 -114.45 + 85 123.445 1114 3 0 -56.783 42.8737 -115.85 + 85 160.203 616 2 1 -56.7826 42.6515 -144.45 + 85 331.658 1112 2 0 -56.7831 42.6442 -145.85 + 85 134.421 616 1 1 -56.795 42.4958 -174.45 + 85 195.713 1112 1 0 -56.7913 42.4856 -175.85 + 85 131.039 616 0 1 -56.7115 42.2838 -204.45 + 85 127.907 1111 0 0 -56.7105 42.2778 -205.85 + 85 369.702 1113 1 0 -56.6844 42.6509 -176.153 + 85 322.435 615 3 1 -56.9202 42.7366 -114.45 + 85 309.564 1113 3 0 -56.9207 42.7135 -115.85 + 85 133.349 615 2 1 -56.8596 42.3904 -144.45 + 85 149.353 601 1 1 -59.7865 44.981 -174.45 + 85 4.62933 600 1 1 -59.85 44.9712 -174.838 + 85 121.181 1124 1 0 -60.0079 44.9569 -175.85 + 85 410.403 574 0 1 -65.1065 44.6474 -204.451 + 85 104.619 1122 0 0 -65.2333 44.6381 -205.85 + 85 157.96 601 2 1 -59.7534 42.155 -144.45 + 85 190.906 1110 2 0 -59.9961 42.1057 -145.85 + 85 43.214 573 1 1 -65.4107 40.6898 -174.45 + 85 71.8478 572 1 1 -65.4501 40.6991 -174.601 + 85 160.374 1103 1 0 -65.6211 40.706 -175.85 + 85 122.373 536 0 1 -72.8209 36.6936 -204.45 + 85 48.8769 1078 0 0 -72.3868 35.7616 -205.85 + 85 80.4196 1077 0 0 -72.3411 35.6496 -206 + 85 110.876 1104 1 0 -66.0251 40.9358 -175.851 + 85 341.319 1105 1 0 -66.1693 41.05 -176.065 + 85 236.797 1106 1 0 -66.3696 41.2501 -176.065 + 85 109.541 617 8 1 -56.5681 43.54 35.55 + 85 127.543 618 7 1 -56.4374 43.4885 5.55 + 85 180.156 1117 7 0 -56.4313 43.4856 4.15 + 85 108.848 618 6 1 -56.3164 43.4277 -24.45 + 85 114.538 619 5 1 -56.1985 43.364 -54.45 + 85 204.34 1116 5 0 -56.1948 43.3589 -55.85 + 85 112.098 619 4 1 -56.1054 43.2639 -84.45 + 85 130.175 1116 4 0 -56.1001 43.2594 -85.85 + 85 119.299 620 3 1 -55.9955 43.1664 -114.45 + 85 133.817 1115 3 0 -55.9904 43.162 -115.85 + 85 135.552 620 2 1 -55.8985 43.0754 -144.45 + 85 113.069 1115 2 0 -55.894 43.0723 -145.85 + 85 170.17 621 1 1 -55.7881 42.9984 -174.45 + 85 157.938 1114 1 0 -55.7856 42.994 -175.85 + 85 338.815 621 0 1 -55.7328 42.908 -204.45 + 85 117.553 1114 0 0 -55.7268 42.905 -205.85 + 85 48.8045 882 12 0 -2.9117 -3.52034 153.75 + 85 88.4247 599 8 1 -60.121 44.9763 35.55 + 85 155.308 1125 8 0 -60.32 45.0976 34.15 + 85 123.216 578 7 1 -64.2806 47.3935 5.55 + 85 171.816 1137 7 0 -64.4997 47.6009 4.15 + 85 15.2892 1138 7 0 -64.5498 47.65 3.80937 + 85 29.7693 556 6 1 -68.8402 51.6408 -24.45 + 85 110.537 555 6 1 -68.85 51.6524 -24.5579 + 85 98.4152 1158 6 0 -68.9653 51.8097 -25.8513 + 85 5.58183 1159 6 0 -69.0024 51.85 -26.2242 + 85 187.901 539 5 1 -72.0657 54.7125 -54.45 + 85 0.523111 1174 5 0 -72.1652 55.0494 -55.85 + 85 133.003 1175 5 0 -72.1654 55.0501 -55.8529 + 85 160.016 528 4 1 -74.3553 62.1511 -84.45 + 85 75.11 1211 4 0 -74.1955 62.399 -85.85 + 85 35.5853 1212 4 0 -74.1677 62.45 -86.123 + 85 120.151 542 3 1 -71.6128 67.5814 -114.45 + 85 56.9147 1237 3 0 -71.3068 67.464 -115.85 + 85 165.001 1236 3 0 -71.2721 67.45 -116.004 + 85 173.001 572 2 1 -65.5907 64.189 -144.45 + 85 111.476 1219 2 0 -65.5175 63.9735 -145.85 + 85 180.57 577 1 1 -64.6339 59.7643 -174.45 + 85 120.808 1198 1 0 -64.5938 59.7632 -175.85 + 85 110.092 578 0 1 -64.4469 60.5518 -204.45 + 85 162.767 577 0 1 -64.45 60.5521 -204.521 + 85 113.691 1202 0 0 -64.5101 60.5691 -205.85 + 85 59.5459 576 0 1 -64.65 60.4149 -204.526 + 85 144.56 575 0 1 -64.85 60.322 -204.639 + 85 128.787 1198 0 0 -66.0969 59.7205 -205.85 + 85 72.2215 1197 0 0 -66.3006 59.6499 -206.073 + 85 56.2975 573 0 1 -65.25 60.3483 -204.51 + 85 42.9469 1499 1 0 -43.1048 119.952 -176.25 + 85 15.4507 544 1 1 -71.0621 90.6213 -174.45 + 85 101.116 545 1 1 -71.05 90.6235 -174.456 + 85 17.5128 1197 1 0 -64.6056 59.65 -176.197 + 85 197.502 517 4 1 -76.6458 55.4296 -84.4503 + 85 136.058 1176 4 0 -76.6215 55.3004 -85.8501 + 85 280.383 524 3 1 -75.0845 52.7169 -114.45 + 85 308.397 1164 3 0 -75.559 52.9157 -115.85 + 85 151.101 470 2 1 -85.8719 52.6147 -144.45 + 85 66.2794 1167 2 0 -86.3369 53.5175 -145.85 + 85 179.309 1168 2 0 -86.402 53.6502 -146.062 + 85 118.74 475 1 1 -84.9522 64.72 -174.45 + 85 182.094 476 1 1 -84.8497 64.9166 -174.579 + 85 67.2048 1236 1 0 -83.8503 67.2629 -175.85 + 85 58.1945 1237 1 0 -83.7611 67.45 -175.935 + 85 66.4292 1238 1 0 -83.7181 67.6505 -176.039 + 85 21.8607 1239 1 0 -83.624 67.8505 -176.198 + 85 23.0644 1405 1 0 -74.0715 101.2 -176.25 + 85 76.9274 1404 1 0 -74.0724 101.15 -176.183 + 85 72.8505 1403 1 0 -74.0998 100.95 -176.046 + 85 59.6952 528 1 1 -74.3961 100.182 -174.85 + 85 102.178 527 1 1 -74.45 100.05 -174.691 + 85 66.5218 526 1 1 -74.65 99.9438 -174.641 + 85 50.1073 525 1 1 -74.85 99.9947 -174.549 + 85 96.3297 467 2 1 -86.475 54.2385 -144.85 + 85 376.766 1163 3 0 -75.1852 52.6793 -115.85 + 85 199.681 1162 3 0 -75.2516 52.65 -116.087 + 85 67.8703 1161 3 0 -75.1483 52.45 -116.169 + 85 176.277 516 4 1 -76.65 55.4645 -84.4595 + 85 22.4954 1184 4 0 -76.9887 56.9931 -85.8501 + 85 85.1915 1185 4 0 -77.0018 57.0502 -85.9052 + 85 50.4692 1186 4 0 -77.043 57.25 -86.1084 + 85 154.281 498 3 1 -80.2821 73.6485 -114.451 + 85 131.141 1276 3 0 -80.7162 75.2783 -115.85 + 85 98.0075 1277 3 0 -80.764 75.45 -115.976 + 85 41.3846 1278 3 0 -80.8453 75.65 -116.158 + 85 116.875 1362 3 0 -86.6029 92.7306 -116.25 + 85 126.662 464 3 1 -87.1074 92.3574 -114.85 + 85 186.572 560 4 1 -67.9692 50.7724 -84.45 + 85 100.558 559 4 1 -68.05 50.8821 -84.4814 + 85 108.983 558 4 1 -68.25 51.1432 -84.5044 + 85 87.8904 557 4 1 -68.45 51.41 -84.5041 + 85 126.19 556 4 1 -68.65 51.6732 -84.5435 + 85 52.0044 555 4 1 -68.85 51.8956 -84.687 + 85 28.4314 1155 4 0 -69.4843 51.0737 -85.8501 + 85 128.151 1154 4 0 -69.5026 51.05 -85.8822 + 85 5.99963 1153 4 0 -69.6036 50.8498 -86.2314 + 85 49.495 913 4 0 -66.1883 2.77345 -86.25 + 85 128.12 912 4 0 -66.1543 2.65 -86.1461 + 85 28.9057 571 4 1 -65.6974 1.91181 -84.85 + 85 105.742 1156 4 0 -68.6881 51.3817 -85.85 + 85 84.1971 1157 4 0 -68.7577 51.4501 -85.9714 +Number of digits in this event = 71 +Using G4ParticleGun ... +2.89101 LIN +gamma +Event: 86 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 +Using G4ParticleGun ... +8.80209 LIN gamma Event: 87 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 Using G4ParticleGun ... -2.69182 LIN +3.67925 LIN gamma Event: 88 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 +Number of tracker hits in this event = 29 + 88 435.296 1257 3 1 71.5131 -23.8344 -114.45 + 88 224.319 781 3 0 71.5148 -23.8356 -115.85 + 88 241.089 1257 2 1 71.5288 -23.8562 -144.45 + 88 118.897 780 2 0 71.5285 -23.8557 -145.85 + 88 282.861 1257 1 1 71.5229 -23.8335 -174.45 + 88 117.183 781 1 0 71.5204 -23.8308 -175.85 + 88 159.139 1257 0 1 71.4618 -23.7772 -204.45 + 88 98.8288 781 0 0 71.4614 -23.7756 -205.85 + 88 64.5181 780 3 0 71.5355 -23.85 -116.081 + 88 171.879 782 2 0 71.5235 -23.5564 -145.85 + 88 106.158 783 1 0 71.461 -23.3176 -175.85 + 88 124.115 1256 0 1 71.4381 -23.0697 -204.45 + 88 10.6665 784 0 0 71.4403 -23.0506 -205.85 + 88 93.5294 785 0 0 71.4403 -23.05 -205.895 + 88 192.22 998 3 0 89.5593 19.8208 -116.25 + 88 45.1319 1347 3 1 89.5774 19.4746 -114.85 + 88 245.359 1348 3 1 89.65 19.4084 -114.732 + 88 264.776 1349 3 1 89.85 19.0679 -114.559 + 88 317.55 993 3 0 89.0939 18.8002 -115.85 + 88 26.5752 992 3 0 89.2061 18.65 -115.964 + 88 84.5315 1386 2 1 97.4307 23.5807 -144.45 + 88 57.4268 1387 2 1 97.5505 23.4479 -144.723 + 88 46.7918 1388 2 1 97.75 23.4527 -144.818 + 88 13.199 1028 2 0 102.478 25.8211 -145.85 + 88 30.4266 1029 2 0 102.539 25.85 -145.855 + 88 43.4014 1427 2 1 105.609 25.3766 -144.85 + 88 168.974 1428 2 1 105.752 25.3497 -144.789 + 88 35.0421 1295 5 0 67.369 79.05 -56.2303 + 88 403.626 1233 5 1 66.8065 79.3879 -54.8494 +Number of digits in this event = 15 Using G4ParticleGun ... -1.20977 LIN +3.38845 LIN gamma Event: 89 -Number of tracker hits in this event = 52 - 89 180.786 1501 6 1 120.364 38.6463 -24.5607 - 89 269.775 1092 6 0 120.365 38.6448 -25.85 - 89 132.775 1501 5 1 120.476 38.5449 -54.45 - 89 120.78 1092 5 0 120.481 38.542 -55.85 - 89 254.707 1501 4 1 120.45 38.4968 -84.45 - 89 135.221 1092 4 0 120.446 38.4722 -85.85 - 89 104.14 1501 3 1 120.433 37.9361 -114.45 - 89 109.663 1089 3 0 120.432 37.8996 -115.85 - 89 219.734 1500 2 1 120.334 37.1868 -144.45 - 89 121.969 1085 2 0 120.31 37.1542 -145.85 - 89 267.168 1498 1 1 119.817 36.4309 -174.45 - 89 135.062 1081 1 0 119.792 36.3811 -175.85 - 89 145.15 1500 0 1 120.16 36.2312 -204.45 - 89 2.21687 1499 0 1 120.15 36.2279 -204.839 - 89 109.598 1080 0 0 120.122 36.2182 -205.85 - 89 71.1232 1250 3 1 70.2016 -52.1558 -114.85 - 89 10.0658 1088 4 0 120.315 37.6667 -85.85 - 89 73.777 1087 4 0 120.31 37.65 -85.8708 - 89 190.488 1086 4 0 120.28 37.45 -86.0213 - 89 58.2673 1085 4 0 120.299 37.2495 -86.0237 - 89 61.7891 1084 4 0 120.364 37.0498 -86.0502 - 89 56.8651 1083 4 0 120.408 36.85 -86.0777 - 89 123.474 1082 4 0 120.435 36.6499 -86.0073 - 89 78.0083 1507 4 1 121.617 37.0948 -84.85 - 89 9.95428 1508 4 1 121.75 37.2167 -84.8354 - 89 0.345924 1540 4 1 128.27 40.1268 -84.85 - 89 147.434 1112 4 0 130.191 42.5934 -85.85 - 89 116.066 1500 5 1 120.34 38.7334 -54.45 - 89 83.0217 1093 5 0 120.336 38.7336 -55.85 - 89 132.334 1500 4 1 120.219 38.7304 -84.45 - 89 221.329 1093 4 0 120.225 38.7228 -85.85 - 89 157.087 1500 3 1 120.252 38.577 -114.45 - 89 209.701 1092 3 0 120.249 38.5696 -115.85 - 89 182.327 1091 2 0 120.176 38.4311 -145.85 - 89 118.323 1091 1 0 119.785 38.2899 -175.85 - 89 258.435 1496 0 1 119.537 38.2397 -204.45 - 89 131.436 1090 0 0 119.515 38.2253 -205.85 - 89 36.4753 1497 0 1 119.55 38.2465 -204.464 - 89 102.587 1499 3 1 120.15 38.6191 -114.596 - 89 61.3651 1091 3 0 119.473 38.45 -116.047 - 89 130.753 1107 3 0 111.008 41.4836 -116.25 - 89 34.7656 1108 3 0 111.168 41.6501 -115.904 - 89 35.3251 1466 3 1 113.485 42.8378 -114.85 - 89 52.3618 1467 3 1 113.55 42.8782 -114.816 - 89 69.5147 1468 3 1 113.75 42.8483 -114.845 - 89 59.0359 1469 3 1 113.95 42.7962 -114.822 - 89 14.3699 1470 3 1 114.15 42.7338 -114.844 - 89 173.858 1105 3 0 115.905 41.1978 -115.85 - 89 79.5438 1104 3 0 116.184 41.0499 -116.035 - 89 63.3833 1103 3 0 116.353 40.85 -115.952 - 89 203.634 1481 3 1 116.352 39.8188 -114.85 - 89 293.129 1480 3 1 116.35 39.8037 -114.831 -Number of digits in this event = 26 +Number of tracker hits in this event = 2 + 89 236.061 1617 0 1 143.601 -22.3889 -204.45 + 89 228.115 788 0 0 143.602 -22.3882 -205.85 +Number of digits in this event = 4 Using G4ParticleGun ... -8.42086 LIN +6.22443 LIN gamma Event: 90 -Number of tracker hits in this event = 6 - 90 55.0385 1508 9 0 -51.7143 121.904 63.75 - 90 10.999 613 8 1 -57.2845 146.11 35.55 - 90 131.568 614 8 1 -57.25 146.086 35.5237 - 90 10.1772 615 8 1 -57.05 146.025 35.163 - 90 156.846 1632 8 0 -56.3094 146.602 34.15 - 90 176.351 347 0 0 45.1086 -110.684 -206.25 -Number of digits in this event = 6 +Number of tracker hits in this event = 4 + 90 2.91693 988 4 1 17.749 -124.92 -84.85 + 90 27.9056 987 4 1 17.65 -124.968 -84.5251 + 90 215.652 925 7 1 5.17906 -94.2386 5.15 + 90 4.48309 304 7 0 -21.9062 -119.15 3.79959 +Number of digits in this event = 3 Using G4ParticleGun ... -7.30546 LIN +7.14444 LIN gamma Event: 91 -Number of tracker hits in this event = 1 - 91 441.395 1297 1 1 79.45 144.64 -174.59 -Number of digits in this event = 2 +Number of tracker hits in this event = 181 + 91 281.766 998 9 1 19.8239 56.4184 65.55 + 91 632.287 1181 9 0 19.8247 56.4215 64.15 + 91 253.925 998 8 1 19.8325 56.4894 35.55 + 91 268.28 1182 8 0 19.8276 56.4917 34.15 + 91 661.194 998 7 1 19.704 56.5583 5.55 + 91 302.538 1182 7 0 19.7121 56.564 4.15 + 91 245.713 999 6 1 19.8923 56.6654 -24.45 + 91 505.165 1183 6 0 19.9191 56.6634 -25.85 + 91 126.335 1001 5 1 20.4497 56.5183 -54.45 + 91 215.601 1182 5 0 20.3982 56.5125 -55.85 + 91 46.293 997 4 1 19.4556 56.2496 -84.45 + 91 75.2787 996 4 1 19.45 56.2412 -84.6167 + 91 128.895 1180 4 0 19.4249 56.1621 -85.85 + 91 150.97 995 3 1 19.0982 53.6237 -114.45 + 91 93.1933 1167 3 0 19.148 53.5213 -115.85 + 91 98.5758 1002 2 1 20.5738 51.4569 -144.45 + 91 115.859 1155 2 0 20.5635 51.2113 -145.85 + 91 252.809 1003 1 1 20.6622 46.3733 -174.451 + 91 93.1401 1130 1 0 20.793 46.1022 -175.85 + 91 44.8917 1129 1 0 20.8218 46.05 -176.13 + 91 98.2446 1016 0 1 23.3701 40.9218 -204.45 + 91 118.497 1104 0 0 23.595 40.9098 -205.85 + 91 228.788 997 6 1 19.581 56.6888 -24.45 + 91 140.947 994 5 1 18.8865 56.4741 -54.4502 + 91 265.386 1181 5 0 18.8219 56.3469 -55.85 + 91 9.38017 982 4 1 16.4533 53.2452 -84.45 + 91 119.118 981 4 1 16.4499 53.2438 -84.4808 + 91 137.957 1165 4 0 16.3202 53.1849 -85.8501 + 91 124.013 971 3 1 14.3679 52.3843 -114.45 + 91 6.89995 1162 3 0 14.2555 52.6442 -115.85 + 91 111.293 1163 3 0 14.2529 52.65 -115.881 + 91 357.315 959 2 1 11.9662 57.0846 -144.45 + 91 113.777 1187 2 0 11.7637 57.5328 -145.85 + 91 10.2153 1188 2 0 11.7128 57.6501 -146.222 + 91 49.4122 933 1 1 6.71445 66.5571 -174.45 + 91 105.579 932 1 1 6.65 66.6496 -174.611 + 91 2.3783 1236 1 0 6.18737 67.4444 -175.85 + 91 133.284 1237 1 0 6.18418 67.45 -175.859 + 91 25.7711 1238 1 0 6.06548 67.65 -176.165 + 91 137.331 881 0 1 -3.79365 86.4159 -204.45 + 91 37.146 1333 0 0 -3.86048 86.8205 -205.85 + 91 76.0508 1334 0 0 -3.86613 86.85 -205.955 + 91 111.517 1003 5 1 20.8338 56.5238 -54.45 + 91 107.982 1183 5 0 20.6518 56.65 -56.0479 + 91 193.903 993 4 1 18.7676 59.2724 -84.4504 + 91 78.6676 1198 4 0 18.9277 59.7469 -85.8501 + 91 27.466 1199 4 0 18.9593 59.85 -86.1211 + 91 71.0281 1017 3 1 23.5422 69.6751 -114.45 + 91 63.8444 1018 3 1 23.65 69.6905 -114.667 + 91 45.6683 1248 3 0 24.1967 69.8276 -115.85 + 91 78.0794 1249 3 0 24.2748 69.8501 -116.01 + 91 166.372 1084 2 1 37.0216 72.695 -144.45 + 91 209.392 1265 2 0 37.0969 73.0648 -145.85 + 91 6.736 1095 1 1 39.2458 83.171 -174.45 + 91 121.188 1096 1 1 39.25 83.1615 -174.472 + 91 76.638 1312 1 0 39.5172 82.5663 -175.85 + 91 47.5818 1311 1 0 39.5711 82.45 -176.113 + 91 113.337 1124 0 1 44.9504 70.9975 -204.45 + 91 52.8255 1252 0 0 45.2002 70.5169 -205.85 + 91 47.9656 1251 0 0 45.2374 70.45 -206.038 + 91 86.5976 1085 2 1 37.05 72.7775 -144.715 + 91 103.375 995 6 1 19.1383 56.6509 -24.45 + 91 179.481 995 5 1 19.071 57.0154 -54.45 + 91 137.833 1184 5 0 19.1075 57.0191 -55.85 + 91 167.171 1000 4 1 20.064 57.2016 -84.45 + 91 76.0058 1185 4 0 20.1476 57.243 -85.85 + 91 51.982 1186 4 0 20.1613 57.25 -86.0753 + 91 111.633 1009 3 1 21.85 58.281 -114.45 + 91 120.551 1191 3 0 22.0251 58.3049 -115.85 + 91 127.366 1027 2 1 25.4824 58.7239 -144.45 + 91 146.653 1193 2 0 25.705 58.7158 -145.85 + 91 112.022 1055 1 1 31.1117 58.798 -174.45 + 91 154.174 1194 1 0 31.4935 58.9443 -175.85 + 91 38.7197 1094 0 1 39.0082 59.6431 -204.45 + 91 96.5509 1095 0 1 39.0501 59.6202 -204.583 + 91 173.641 1196 0 0 39.4332 59.4195 -205.85 + 91 11.6035 903 0 1 0.84554 122.123 -204.85 + 91 6.1981 904 0 1 0.85008 122.123 -204.849 + 91 2.11487 1521 0 0 2.01119 124.465 -205.85 + 91 15.7445 914 0 1 2.89885 125.368 -204.85 + 91 38.0123 627 0 1 -54.5921 75.8268 -204.45 + 91 114.025 626 0 1 -54.65 75.8329 -204.575 + 91 166.801 1280 0 0 -55.2207 76.1912 -205.85 + 91 58.7194 1279 0 0 -55.3956 76.05 -205.894 + 91 271.274 621 0 1 -55.7832 73.0336 -204.85 + 91 231.917 620 0 1 -55.85 72.3846 -204.794 + 91 297.457 1241 0 0 -57.0062 68.3438 -205.85 + 91 7.10328 712 3 1 -37.45 121.422 -114.801 + 91 52.024 997 7 1 19.65 57.4114 5.19848 + 91 0.751324 1198 7 0 19.4584 59.8436 4.15 + 91 81.9395 1199 7 0 19.4579 59.85 4.14724 + 91 49.3319 1200 7 0 19.4423 60.05 4.06479 + 91 62.0047 1201 7 0 19.426 60.25 3.98585 + 91 85.4312 1202 7 0 19.4068 60.4503 3.90764 + 91 79.5035 1203 7 0 19.3871 60.65 3.82886 + 91 8.25312 1204 7 0 19.3608 60.85 3.75471 + 91 287.588 937 6 1 7.47584 142.219 -24.45 + 91 3.71244 1625 6 0 8.08101 145.341 -25.85 + 91 63.5069 1626 6 0 8.08283 145.35 -25.854 + 91 59.5357 1627 6 0 8.12294 145.55 -25.9396 + 91 56.4224 1628 6 0 8.16539 145.75 -26.0247 + 91 48.9354 1629 6 0 8.20654 145.95 -26.1128 + 91 40.2481 1630 6 0 8.24855 146.15 -26.1982 + 91 161.829 1181 8 0 19.8211 56.4104 34.15 + 91 97.3911 1181 7 0 19.8379 56.3809 4.15 + 91 127.727 1181 6 0 19.8702 56.3704 -25.85 + 91 287.782 999 5 1 19.9252 56.3629 -54.45 + 91 147.988 999 4 1 19.9665 56.3634 -84.45 + 91 105.524 1181 4 0 19.9686 56.3622 -85.85 + 91 114.633 999 3 1 20.01 56.3395 -114.45 + 91 114.484 1181 3 0 20.0131 56.3365 -115.85 + 91 115.951 1000 2 1 20.0804 56.2809 -144.45 + 91 207.388 1181 2 0 20.0844 56.279 -145.85 + 91 99.8683 1000 1 1 20.1674 56.2423 -174.45 + 91 143.656 1180 1 0 20.1702 56.2418 -175.85 + 91 250.582 1000 0 1 20.2324 56.2357 -204.45 + 91 287.884 1180 0 0 20.2363 56.2334 -205.85 + 91 205.845 945 2 1 9.25 146.219 -144.685 + 91 112.18 1267 2 0 133.454 73.5983 -146.249 + 91 129.651 1570 2 1 134.151 73.4102 -144.85 + 91 17.3335 1571 2 1 134.35 73.3633 -144.515 + 91 84.085 1190 3 0 153.494 58.1706 -116.25 + 91 139.417 1189 3 0 153.654 58.05 -116.04 + 91 87.9463 1672 3 1 154.642 57.4311 -114.85 + 91 86.8816 1673 3 1 154.75 57.357 -114.712 + 91 30.4228 1674 3 1 155.051 57.2824 -114.45 + 91 68.7143 1675 3 1 155.15 57.3257 -114.513 + 91 59.1595 1676 3 1 155.35 57.4161 -114.636 + 91 56.1424 1677 3 1 155.55 57.5385 -114.777 + 91 129.138 1195 3 0 157.955 59.0612 -115.85 + 91 185.321 1196 3 0 158.281 59.25 -116.012 + 91 79.9597 1197 3 0 158.588 59.45 -116.182 + 91 117.209 1198 3 0 158.747 59.65 -116.133 + 91 104.772 1199 3 0 159.089 59.85 -115.997 + 91 62.13 1200 3 0 159.334 60.05 -115.958 + 91 56.5173 1699 3 1 160.068 61.2465 -114.85 + 91 177.419 1700 3 1 160.15 61.3757 -114.727 + 91 66.8937 1701 3 1 160.35 61.7225 -114.612 + 91 124.415 1702 3 1 160.55 61.7573 -114.715 + 91 107.044 1203 3 0 161.076 60.8305 -115.85 + 91 41.655 1202 3 0 161.1 60.65 -116.158 + 91 107.244 610 3 0 138.923 -57.9532 -116.25 + 91 122.344 609 3 0 138.695 -58.05 -116.051 + 91 72.1278 608 3 0 138.446 -58.25 -115.869 + 91 25.3746 607 3 0 138.39 -58.45 -115.876 + 91 298.844 1590 3 1 138.244 -62.0982 -114.85 + 91 157.62 1589 3 1 138.15 -62.5633 -114.575 + 91 180.212 1188 3 0 153.866 57.85 -115.949 + 91 222.05 1187 3 0 153.984 57.65 -116.009 + 91 150.079 411 1 0 96.6573 -97.75 -176.076 + 91 143.166 1401 1 1 100.434 -99.6084 -174.45 + 91 25.7961 406 1 0 100.465 -98.81 -175.85 + 91 69.6276 407 1 0 100.522 -98.75 -175.913 + 91 88.15 408 1 0 100.581 -98.5495 -175.93 + 91 47.1861 1400 1 1 100.176 -97.2503 -174.85 + 91 210.025 1399 1 1 100.15 -97.1793 -174.781 + 91 279.005 1398 1 1 99.95 -97.2693 -174.686 + 91 122.41 1402 1 1 100.668 -97.8884 -174.85 + 91 15.0293 402 1 0 101.497 -99.6821 -175.85 + 91 71.2209 1408 1 1 101.777 -101.266 -174.85 + 91 257.888 1001 0 1 20.2633 56.1595 -204.45 + 91 172.807 1179 0 0 20.0031 55.9637 -205.85 + 91 261.343 1000 5 1 20.05 56.0046 -54.8136 + 91 11.3898 1336 3 1 87.45 133.189 -114.823 + 91 216.075 999 2 1 19.925 56.2564 -144.45 + 91 108.373 1180 2 0 19.9878 56.1966 -145.85 + 91 126.626 1007 1 1 21.5663 55.4232 -174.45 + 91 126.419 1175 1 0 21.8265 55.2326 -175.85 + 91 14.2409 1034 0 1 27.0306 51.0375 -204.45 + 91 117.103 1035 0 1 27.05 51.0203 -204.496 + 91 64.2553 1152 0 0 27.6249 50.5079 -205.85 + 91 154.837 1151 0 0 27.6905 50.45 -206.005 + 91 98.4571 1080 0 1 36.1729 76.5538 -204.45 + 91 134.597 1181 1 0 20.6898 56.4387 -175.85 + 91 165.835 1005 0 1 21.1094 55.5412 -204.45 + 91 138.88 1177 0 0 21.186 55.4822 -205.85 + 91 1.12984 999 9 1 19.8501 56.4151 65.1533 + 91 125.151 1180 9 0 22.065 56.25 63.9514 + 91 24.678 1179 9 0 22.1003 56.05 64.1165 + 91 209.382 1017 9 1 23.4738 55.067 65.15 + 91 104.585 1016 9 1 23.45 54.9315 65.3186 +Number of digits in this event = 77 Using G4ParticleGun ... -4.12384 LIN +4.57652 LIN gamma Event: 92 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 Using G4ParticleGun ... -1.46468 LIN +8.70513 LIN gamma Event: 93 +Number of tracker hits in this event = 8 + 93 218.675 1211 2 1 62.3404 15.2024 -144.45 + 93 247.741 975 2 0 62.3406 15.2027 -145.85 + 93 236.091 1211 1 1 62.3342 15.2111 -174.45 + 93 314.084 975 1 0 62.333 15.2117 -175.85 + 93 386.582 1211 0 1 62.3092 15.223 -204.45 + 93 277.553 975 0 0 62.307 15.2215 -205.85 + 93 301.44 1341 5 0 -16.9534 88.3771 -56.25 + 93 95.5099 1342 5 0 -17.34 88.45 -56.0284 +Number of digits in this event = 9 +Using G4ParticleGun ... +8.36332 LIN +gamma +Event: 94 +Number of tracker hits in this event = 0 +Number of digits in this event = 3 +Using G4ParticleGun ... +1.86208 LIN +gamma +Event: 95 Number of tracker hits in this event = 0 Number of digits in this event = 1 Using G4ParticleGun ... -3.32718 LIN -gamma -Event: 94 -Number of tracker hits in this event = 135 - 94 292.05 532 9 1 -73.6161 1.68166 65.55 - 94 257.287 908 9 0 -73.6173 1.68001 64.15 - 94 112.849 531 8 1 -73.6546 1.65018 35.55 - 94 124.304 908 8 0 -73.6544 1.65011 34.15 - 94 155.092 531 7 1 -73.6522 1.65404 5.55 - 94 104.459 907 7 0 -73.6521 1.64425 4.15 - 94 183.764 531 6 1 -73.6525 1.38282 -24.45 - 94 153.371 906 6 0 -73.657 1.37302 -25.85 - 94 243.427 531 5 1 -73.7652 1.1975 -54.45 - 94 100.877 905 5 0 -73.7698 1.19331 -55.85 - 94 324.018 531 4 1 -73.8369 1.10147 -84.45 - 94 113.148 905 4 0 -73.8371 1.09709 -85.85 - 94 134.232 531 3 1 -73.8336 0.98872 -114.45 - 94 106.573 904 3 0 -73.7704 0.996848 -115.85 - 94 122.301 537 2 1 -72.4872 1.17652 -144.45 - 94 117.924 905 2 0 -72.4125 1.20385 -145.85 - 94 114.025 545 1 1 -70.8691 1.7447 -174.45 - 94 11.3688 546 1 1 -70.85 1.7502 -174.789 - 94 154.019 908 1 0 -70.7918 1.76808 -175.85 - 94 419.644 554 0 1 -69.1689 2.16526 -204.45 - 94 97.0978 910 0 0 -69.0645 2.19768 -205.85 - 94 332.657 532 4 1 -73.65 0.909789 -84.7975 - 94 251.95 533 4 1 -73.45 0.745175 -84.496 - 94 435.121 531 0 1 -73.8215 0.941086 -204.45 - 94 407.384 904 0 0 -73.823 0.939922 -205.85 - 94 108.086 530 0 1 -73.85 0.90249 -204.627 - 94 125.214 902 0 0 -73.895 0.583155 -205.85 - 94 283.834 530 6 1 -73.85 1.66865 -24.7101 - 94 51.2175 912 6 0 -74.3609 2.5431 -25.85 - 94 94.7235 913 6 0 -74.4286 2.65 -25.9899 - 94 155.344 456 5 1 -88.7666 25.9419 -54.45 - 94 233.368 455 5 1 -88.8501 26.0985 -54.5398 - 94 207.804 454 5 1 -89.05 26.4332 -54.7013 - 94 27.6795 453 5 1 -89.25 26.7124 -54.824 - 94 38.5423 1048 5 0 -91.4741 29.7324 -55.85 - 94 73.1524 1049 5 0 -91.5655 29.85 -55.8907 - 94 77.7895 1050 5 0 -91.7212 30.0502 -55.9573 - 94 56.1527 1051 5 0 -91.8788 30.25 -56.0143 - 94 111.806 1052 5 0 -92.0457 30.45 -56.0735 - 94 69.2933 1053 5 0 -92.2319 30.65 -56.1538 - 94 56.3461 493 2 1 -81.3058 -42.716 -144.45 - 94 97.0973 494 2 1 -81.2497 -42.7794 -144.587 - 94 25.6605 679 2 0 -80.6006 -44.1858 -145.85 - 94 148.772 678 2 0 -80.5826 -44.2501 -145.905 - 94 212.709 532 7 1 -73.65 1.6628 5.52036 - 94 39.7766 533 7 1 -73.45 2.01738 5.26464 - 94 251.635 916 7 0 -74.7157 3.29271 4.14989 - 94 208.213 531 1 1 -73.819 1.62239 -174.45 - 94 137.133 530 1 1 -73.85 1.67981 -174.718 - 94 122.177 909 1 0 -73.9704 1.90595 -175.85 - 94 83.8632 511 0 1 -77.7714 7.34733 -204.45 - 94 47.0195 510 0 1 -77.85 7.36313 -204.711 - 94 157.901 936 0 0 -78.1996 7.42308 -205.85 - 94 3.36142 1053 3 0 -3.11214 30.65 -115.964 - 94 133.726 907 1 0 -73.8148 1.6258 -175.85 - 94 124.35 908 0 0 -73.8204 1.72689 -205.85 - 94 99.0465 532 8 1 -73.4739 1.56495 35.55 - 94 97.8584 907 8 0 -73.487 1.57505 34.15 - 94 134.076 530 7 1 -73.8635 2.07004 5.55 - 94 115.834 910 7 0 -73.8495 2.17344 4.15 - 94 202.936 534 6 1 -73.0666 4.16225 -24.45 - 94 188.737 921 6 0 -73.0481 4.32472 -25.85 - 94 420.567 538 5 1 -72.3935 7.51917 -54.45 - 94 225.242 938 5 0 -72.3949 7.69353 -55.85 - 94 122.3 538 4 1 -72.3707 11.328 -84.45 - 94 469.582 958 4 0 -72.4523 11.707 -85.85 - 94 137.955 529 3 1 -74.2451 19.4468 -114.45 - 94 22.9578 998 3 0 -74.1965 19.8299 -115.85 - 94 96.5129 999 3 0 -74.1941 19.8503 -115.924 - 94 252.91 533 2 1 -73.3248 27.9811 -144.45 - 94 21.3798 1041 2 0 -73.1859 28.4305 -145.85 - 94 139.228 1042 2 0 -73.1798 28.45 -145.91 - 94 143.031 548 1 1 -70.3357 37.2219 -174.45 - 94 469.824 1088 1 0 -70.2492 37.692 -175.85 - 94 312.162 555 0 1 -68.9438 47.5946 -204.45 - 94 112.167 1140 0 0 -68.9323 48.1532 -205.85 - 94 39.7846 1141 0 0 -68.9263 48.2502 -206.091 - 94 657.253 1087 1 0 -70.0389 37.65 -176.189 - 94 59.6975 532 2 1 -73.4503 28.1719 -144.739 - 94 65.8176 1046 2 0 -73.9827 29.3248 -145.85 - 94 79.2649 1047 2 0 -74.0126 29.45 -145.976 - 94 48.219 1048 2 0 -73.9088 29.65 -146.174 - 94 178.553 1399 2 0 -28.8932 100.092 -146.25 - 94 215.641 758 2 1 -28.4193 99.6197 -144.85 - 94 56.0355 959 4 0 -72.4347 11.8501 -86.1467 - 94 74.8916 960 4 0 -72.3862 12.05 -86.0979 - 94 87.2068 961 4 0 -72.375 12.25 -86.0701 - 94 97.4117 962 4 0 -72.4711 12.45 -86.0561 - 94 62.5547 1007 4 0 -85.4324 21.5167 -86.25 - 94 79.2098 1008 4 0 -85.3787 21.6507 -86.1516 - 94 250.562 1009 4 0 -85.3858 21.85 -86.0836 - 94 91.3106 931 5 0 -72.3055 6.39235 -55.85 - 94 12.1791 932 5 0 -72.2823 6.45 -56.1938 - 94 230.617 548 4 1 -70.3422 11.1679 -84.4503 - 94 13.3017 957 4 0 -70.384 11.6373 -85.85 - 94 131.193 542 3 1 -71.4969 20.0909 -114.45 - 94 108.51 1002 3 0 -71.6417 20.5846 -115.851 - 94 171.563 1003 3 0 -71.6638 20.6501 -116.036 - 94 116.281 527 2 1 -74.5911 29.4202 -144.45 - 94 128.386 1049 2 0 -74.4734 29.8534 -145.85 - 94 43.04 525 1 1 -74.8609 43.7915 -174.45 - 94 112.207 526 1 1 -74.85 43.8584 -174.554 - 94 28.6704 1122 1 0 -74.6932 44.6142 -175.85 - 94 138.878 1123 1 0 -74.6859 44.65 -175.912 - 94 212.57 547 0 1 -70.6187 59.2131 -204.45 - 94 0.705053 1196 0 0 -70.5901 59.4493 -205.85 - 94 204.983 1197 0 0 -70.59 59.45 -205.854 - 94 69.8403 537 5 1 -72.45 6.0494 -54.6559 - 94 19.266 928 5 0 -73.9641 5.66343 -55.85 - 94 128.373 927 5 0 -74.013 5.64996 -55.8791 - 94 13.8752 926 5 0 -74.2623 5.45 -56.198 - 94 102.776 922 6 0 -74.1025 4.45 -25.9683 - 94 128.166 920 6 0 -74.0949 4.21088 -25.85 - 94 150.896 528 5 1 -74.344 6.58211 -54.4501 - 94 102.038 939 5 0 -74.6299 7.85 -55.9484 - 94 0.584622 940 5 0 -74.7252 8.05 -56.2487 - 94 2.10141 481 4 1 -83.6576 24.066 -84.45 - 94 42.8838 482 4 1 -83.65 24.0664 -84.4532 - 94 75.4138 483 4 1 -83.4499 24.073 -84.5327 - 94 60.2573 484 4 1 -83.2499 24.0806 -84.6339 - 94 114.294 485 4 1 -83.05 24.109 -84.7265 - 94 17.28 486 4 1 -82.85 24.1426 -84.8246 - 94 273.889 1021 4 0 -80.5257 24.3419 -85.85 - 94 299.217 685 3 1 -43.0187 22.9863 -114.45 - 94 139.202 684 3 1 -43.05 22.7812 -114.508 - 94 90.9324 683 3 1 -43.25 22.3152 -114.682 - 94 7.61577 1004 3 0 -43.8505 20.88 -115.85 - 94 48.998 1001 3 0 -43.8699 20.45 -116.216 - 94 244.175 759 3 0 -22.3232 -28.1994 -116.25 - 94 19.055 760 3 0 -22.1864 -28.05 -115.903 - 94 54.3787 794 3 1 -21.1182 -27.3992 -114.85 - 94 82.0352 795 3 1 -21.05 -27.3594 -114.774 - 94 232.393 796 3 1 -20.85 -27.2013 -114.655 - 94 350.578 767 3 0 -20.18 -26.5598 -115.851 - 94 18.7663 597 3 0 -40.8513 -60.45 -116.002 -Number of digits in this event = 66 -Using G4ParticleGun ... -4.009 LIN -gamma -Event: 95 -Number of tracker hits in this event = 137 - 95 225.832 1063 8 1 32.735 -108.165 35.55 - 95 245.442 359 8 0 32.7348 -108.164 34.15 - 95 327.519 1063 7 1 32.7374 -108.163 5.55 - 95 135.362 359 7 0 32.737 -108.16 4.15 - 95 273.867 1063 6 1 32.7411 -108.107 -24.45 - 95 240.566 360 6 0 32.741 -108.105 -25.85 - 95 531.922 1063 5 1 32.7451 -108.058 -54.45 - 95 256.789 360 5 0 32.7449 -108.053 -55.85 - 95 130.863 1063 4 1 32.7453 -107.948 -84.45 - 95 106.307 361 4 0 32.7472 -107.945 -85.85 - 95 408.161 1063 3 1 32.7825 -107.875 -114.45 - 95 112.333 361 3 0 32.7992 -107.852 -115.85 - 95 119 1065 2 1 33.1949 -107.82 -144.45 - 95 167.948 361 2 0 33.1763 -107.859 -145.85 - 95 102.153 1061 1 1 32.3991 -108.651 -174.45 - 95 151.695 356 1 0 32.3859 -108.839 -175.85 - 95 127.798 1059 0 1 31.8676 -112.794 -204.45 - 95 124.187 336 0 0 31.8412 -112.871 -205.85 - 95 211.659 1067 1 1 33.5666 -107.607 -174.45 - 95 388.872 362 1 0 33.5168 -107.573 -175.85 - 95 86.559 1060 0 1 32.1359 -107.635 -204.45 - 95 121.037 363 0 0 31.7896 -107.544 -205.85 - 95 9.1486 363 1 0 33.5857 -107.55 -176.217 - 95 97.1609 1069 0 1 33.9164 -106.59 -204.45 - 95 111.595 367 0 0 33.9025 -106.585 -205.85 - 95 109.132 360 7 0 32.8015 -108.1 4.15 - 95 152.382 359 5 0 32.7103 -108.188 -55.85 - 95 98.4865 1062 4 1 32.5873 -108.639 -84.45 - 95 107.332 357 4 0 32.5888 -108.612 -85.85 - 95 122.957 360 3 0 32.8742 -108.017 -115.85 - 95 116.623 1075 2 1 35.1721 -107.368 -144.45 - 95 129.286 364 2 0 35.3448 -107.255 -145.85 - 95 119.431 1094 1 1 38.9314 -105.008 -174.45 - 95 130.786 376 1 0 39.0011 -104.886 -175.85 - 95 166.458 1102 0 1 40.5183 -102.158 -204.45 - 95 62.8939 390 0 0 40.6012 -101.979 -205.85 - 95 46.4002 391 0 0 40.6141 -101.95 -206.079 - 95 207.863 361 5 0 32.7507 -107.95 -55.8593 - 95 42.8836 1070 4 1 34.2114 -104.6 -84.45 - 95 72.512 1071 4 1 34.25 -104.678 -84.6027 - 95 91.0139 373 4 0 34.638 -105.373 -85.85 - 95 43.2361 372 4 0 34.7414 -105.55 -86.167 - 95 209.539 1139 3 1 47.8973 -123.306 -114.45 - 95 47.8509 277 3 0 47.8938 -124.666 -115.85 - 95 157.065 276 3 0 47.8936 -124.75 -115.941 - 95 41.1096 275 3 0 47.8853 -124.95 -116.159 - 95 50.9253 1091 2 1 38.2637 -152.821 -144.45 - 95 264.298 1090 2 1 38.25 -152.846 -144.574 - 95 38.7245 135 2 0 38.2015 -153.12 -145.85 - 95 78.7285 134 2 0 38.1972 -153.15 -145.989 - 95 42.4411 149 2 0 68.7386 -150.194 -146.25 - 95 135.088 150 2 0 68.8437 -150.15 -146.158 - 95 6.71589 1250 2 1 70.2382 -149.4 -144.85 - 95 243.505 1251 2 1 70.25 -149.394 -144.839 - 95 74.6483 1252 2 1 70.4502 -149.279 -144.652 - 95 16.2135 266 3 0 93.0135 -126.793 -116.25 - 95 111.181 267 3 0 93.0546 -126.75 -116.197 - 95 122.722 268 3 0 93.2031 -126.55 -115.992 - 95 91.8765 1368 3 1 93.9152 -124.754 -114.85 - 95 206.371 1369 3 1 93.9501 -124.657 -114.788 - 95 11.4311 1206 4 0 145.376 61.4197 -86.2499 - 95 112.535 1207 4 0 145.385 61.45 -86.2447 - 95 74.24 1208 4 0 145.472 61.65 -86.2244 - 95 87.0545 1209 4 0 145.573 61.85 -86.2227 - 95 67.6633 1210 4 0 145.625 62.05 -86.2304 - 95 52.9959 1211 4 0 145.61 62.2501 -86.2228 - 95 68.6799 1212 4 0 145.549 62.45 -86.2153 - 95 65.494 1213 4 0 145.539 62.65 -86.1865 - 95 42.2732 1214 4 0 145.55 62.85 -86.214 - 95 47.7141 1215 4 0 145.564 63.0504 -86.2458 - 95 20.155 1253 2 1 70.65 -149.129 -144.634 - 95 77.3479 1066 4 1 33.2848 -111.511 -84.45 - 95 20.3738 1065 4 1 33.25 -111.479 -84.7721 - 95 104.749 343 4 0 33.068 -111.386 -85.85 - 95 0.0788595 1034 3 1 26.8502 -110.097 -114.45 - 95 135.907 1033 3 1 26.85 -110.097 -114.451 - 95 118.252 347 3 0 26.318 -110.582 -115.85 - 95 139.696 981 2 1 16.4448 -122.526 -144.45 - 95 115.658 286 2 0 16.0293 -122.872 -145.85 - 95 28.9529 941 1 1 8.27903 -126.802 -174.45 - 95 152.945 940 1 1 8.24984 -126.858 -174.547 - 95 27.3462 263 1 0 7.68632 -127.501 -175.85 - 95 107.036 262 1 0 7.645 -127.55 -175.946 - 95 137.672 888 0 1 -2.26821 -140.973 -204.45 - 95 120.977 193 0 0 -2.86064 -141.4 -205.85 - 95 17.6711 1062 3 1 32.6498 -108.672 -114.791 - 95 87.9689 356 3 0 32.3603 -108.86 -115.85 - 95 80.0653 355 3 0 32.2987 -108.951 -116.084 - 95 185.258 190 3 0 21.9777 -141.952 -116.25 - 95 112.079 1007 3 1 21.5026 -143.231 -114.85 - 95 209.548 1006 3 1 21.45 -143.479 -114.647 - 95 95.9456 1005 3 1 21.25 -143.689 -114.527 - 95 87.5396 1004 3 1 21.0498 -143.87 -114.633 - 95 106.494 1003 3 1 20.8495 -143.959 -114.707 - 95 182.961 1002 3 1 20.65 -143.943 -114.697 - 95 1.00724 1001 3 1 20.45 -143.697 -114.849 - 95 131.746 188 3 0 19.4751 -142.468 -115.85 - 95 234.798 996 3 1 19.3005 -143.135 -114.85 - 95 126.609 1064 5 1 32.8716 -108.227 -54.4511 - 95 91.4881 363 5 0 32.524 -107.54 -55.8502 - 95 42.5175 364 5 0 32.4458 -107.35 -56.1309 - 95 19.2527 889 5 0 23.5242 -2.12209 -56.25 - 95 55.3995 890 5 0 23.5287 -2.05 -56.2244 - 95 74.9285 891 5 0 23.5402 -1.85 -56.1563 - 95 71.6184 892 5 0 23.55 -1.65 -56.1091 - 95 65.2019 893 5 0 23.5393 -1.44949 -56.0643 - 95 67.2721 894 5 0 23.5589 -1.25 -55.9257 - 95 201.401 1017 5 1 23.5762 0.0500739 -54.7919 - 95 130.645 1040 6 0 -15.8255 28.0962 -26.25 - 95 128.233 1041 6 0 -16.1288 28.25 -26.0565 - 95 17.2615 811 6 1 -17.7564 28.2694 -24.85 - 95 44.7108 1032 6 0 -20.5056 26.521 -25.85 - 95 83.0916 1031 6 0 -20.5992 26.4497 -25.8868 - 95 70.1499 1030 6 0 -20.8415 26.25 -25.9788 - 95 144.506 1029 6 0 -21.0967 26.05 -26.0738 - 95 148.623 1028 6 0 -21.289 25.85 -26.1099 - 95 51.4807 1027 6 0 -21.4204 25.6499 -26.0757 - 95 79.4272 1026 6 0 -21.536 25.45 -26.0763 - 95 75.4658 1025 6 0 -21.6507 25.25 -26.0755 - 95 173.571 1024 6 0 -21.8633 25.0497 -26.047 - 95 734.705 1023 6 0 -22.0795 24.85 -26.0012 - 95 100.868 358 5 0 33.0154 -108.47 -55.85 - 95 10.6576 357 5 0 33.0565 -108.55 -56.1949 - 95 112.968 1081 4 1 36.2693 -115.521 -84.4501 - 95 177.436 323 4 0 36.3495 -115.397 -85.85 - 95 113.964 1085 3 1 37.2234 -113.2 -114.45 - 95 182.619 337 3 0 36.7847 -112.739 -115.85 - 95 177.755 1047 2 1 29.5903 -103.282 -144.45 - 95 93.0337 1046 2 1 29.45 -103.388 -144.633 - 95 86.9216 379 2 0 28.7276 -104.196 -145.85 - 95 46.7303 378 2 0 28.5957 -104.35 -146.085 - 95 120.645 989 1 1 18.0115 -125.688 -174.45 - 95 36.2037 988 1 1 17.85 -125.716 -174.733 - 95 143.026 272 1 0 17.11 -125.609 -175.85 - 95 129.593 862 0 1 -7.56417 -127.461 -204.45 - 95 88.773 257 0 0 -7.68715 -128.63 -205.85 - 95 45.0833 256 0 0 -7.76215 -128.75 -206.08 -Number of digits in this event = 57 -Using G4ParticleGun ... -6.73739 LIN +1.98382 LIN gamma Event: 96 -Number of tracker hits in this event = 102 - 96 262.424 1116 11 1 43.3085 29.3853 125.55 - 96 202.38 1046 11 0 43.3071 29.3876 124.15 - 96 251.802 1116 10 1 43.2628 29.4395 95.55 - 96 323.455 1046 10 0 43.2574 29.4469 94.15 - 96 101.889 1115 9 1 43.1276 29.5792 65.55 - 96 116.677 1047 9 0 43.1191 29.5845 64.15 - 96 103.81 1114 8 1 42.9481 29.6985 35.55 - 96 108.364 1048 8 0 42.9404 29.711 34.15 - 96 130.791 1113 7 1 42.7697 29.9773 5.55 - 96 110.567 1049 7 0 42.7586 29.9859 4.15 - 96 147.517 1112 6 1 42.5446 30.1533 -24.45 - 96 273.822 1050 6 0 42.5327 30.1575 -25.85 - 96 134.867 1111 5 1 42.2977 30.2373 -54.45 - 96 338.041 1050 5 0 42.2852 30.2462 -55.85 - 96 185.009 1109 4 1 42.014 30.4381 -84.45 - 96 34.0739 1051 4 0 41.9981 30.4492 -85.85 - 96 76.283 1052 4 0 41.9968 30.45 -85.9565 - 96 102.972 1108 3 1 41.6642 30.6213 -114.45 - 96 112.621 1052 3 0 41.6558 30.6294 -115.85 - 96 128.797 1107 2 1 41.4793 30.7578 -144.45 - 96 393.759 1053 2 0 41.4669 30.764 -145.85 - 96 229.416 1105 1 1 41.1306 30.96 -174.45 - 96 127.535 1054 1 0 41.0954 31.0151 -175.85 - 96 109.378 1101 0 1 40.2958 32.007 -204.45 - 96 110.883 1056 0 0 40.2545 31.4004 -205.85 - 96 187.396 1055 0 0 40.2764 31.25 -206.135 - 96 112.95 1110 4 1 42.05 30.4978 -84.6514 - 96 233.526 1106 2 1 41.4329 30.7288 -144.45 - 96 93.8181 1053 1 0 41.2461 30.7412 -175.85 - 96 115.462 1109 0 1 41.9027 31.0658 -204.45 - 96 89.5039 1106 1 1 41.4155 30.4946 -174.45 - 96 155.414 1052 1 0 41.4442 30.4535 -175.85 - 96 79.4766 1051 1 0 41.4466 30.45 -175.967 - 96 145.557 1110 0 1 42.1132 29.571 -204.45 - 96 104.949 1047 0 0 42.1667 29.4911 -205.85 - 96 121.678 1116 9 1 43.271 29.3756 65.55 - 96 117.014 1046 9 0 43.2677 29.3753 64.15 - 96 175.476 1115 8 1 43.1966 29.3701 35.55 - 96 344.483 1046 8 0 43.1927 29.3718 34.15 - 96 224.335 1115 7 1 43.1193 29.3951 5.55 - 96 234.338 1046 7 0 43.1178 29.3938 4.15 - 96 219.662 1115 6 1 43.1092 29.3432 -24.45 - 96 102.438 1046 6 0 43.1152 29.3337 -25.85 - 96 119.925 1115 5 1 43.2333 29.1078 -54.45 - 96 137.888 1045 5 0 43.2431 29.0841 -55.85 - 96 136.521 1116 4 1 43.4146 28.5937 -84.45 - 96 114.831 1042 4 0 43.4052 28.5658 -85.85 - 96 305.945 1115 3 1 43.2169 27.9895 -114.45 - 96 248.31 1039 3 0 43.2512 28.0052 -115.85 - 96 183.718 1120 2 1 44.0582 28.0668 -144.45 - 96 120.369 1040 2 0 44.1151 28.0966 -145.85 - 96 103.7 1126 1 1 45.252 29.007 -174.45 - 96 31.7808 1044 1 0 45.3216 29.0474 -175.85 - 96 105.955 1045 1 0 45.3263 29.05 -175.943 - 96 96.2017 1132 0 1 46.5799 30.107 -204.45 - 96 140.92 1050 0 0 46.7147 30.2117 -205.85 - 96 258.788 1116 3 1 43.2502 28.0224 -114.565 - 96 12.3935 1042 3 0 43.2093 28.6294 -115.85 - 96 187.803 1043 3 0 43.2082 28.65 -115.891 - 96 95.0814 1110 2 1 42.0868 39.0095 -144.45 - 96 92.1347 1111 2 1 42.25 39.1431 -144.61 - 96 79.7089 1112 2 1 42.4501 39.3349 -144.752 - 96 154.884 1103 2 0 44.4993 40.699 -145.85 - 96 80.2491 1104 2 0 44.8081 40.85 -146.091 - 96 31.1529 1260 2 0 89.4625 72.199 -146.25 - 96 151.828 1261 2 0 89.4857 72.25 -146.132 - 96 492.303 1345 2 1 89.2076 73.1069 -144.85 - 96 201.881 1346 2 1 89.25 73.2855 -144.559 - 96 9.49037 1258 3 0 94.1635 71.6956 -116.25 - 96 291.59 1369 3 1 94.0859 71.4526 -114.85 - 96 9.06811 695 3 0 -9.84306 -40.85 -115.951 - 96 516.333 1116 8 1 43.3333 29.4016 35.55 - 96 129.953 1128 6 1 45.6577 29.8317 -24.45 - 96 113.53 1048 6 0 45.8432 29.843 -25.8502 - 96 135.842 1152 5 1 50.5284 30.0241 -54.45 - 96 111.129 1182 4 1 56.571 32.126 -84.45 - 96 112.087 1060 4 0 56.9271 32.1685 -85.85 - 96 120.726 1223 3 1 64.6909 32.4554 -114.45 - 96 132.588 1062 3 0 64.9424 32.4637 -115.85 - 96 141.846 1250 2 1 70.0599 32.5514 -144.45 - 96 120.388 1061 2 0 70.2513 32.4435 -145.851 - 96 109.602 1271 1 1 74.3072 30.5059 -174.45 - 96 160.981 1287 0 1 77.4887 31.7948 -204.45 - 96 155.778 1058 0 0 77.7496 31.8088 -205.85 - 96 121.971 1150 4 1 50.1815 28.0565 -84.45 - 96 101.609 1109 7 1 41.9533 27.1297 5.55 - 96 119.953 1035 7 0 41.921 27.1857 4.15 - 96 110.605 1108 6 1 41.7645 31.7072 -24.45 - 96 5.50666 1109 6 1 41.85 31.6717 -24.8348 - 96 153.527 1057 6 0 42.1129 31.6025 -25.85 - 96 27.6309 1134 5 1 46.8775 29.5561 -54.4504 - 96 114.12 1133 5 1 46.85 29.575 -54.5404 - 96 89.31 1051 5 0 46.7184 30.25 -56.0324 - 96 112.877 1137 4 1 47.5793 45.3462 -84.45 - 96 213.568 1128 4 0 47.7172 45.6795 -85.85 - 96 101.848 1136 3 1 47.3389 48.8626 -114.45 - 96 16.2213 1137 3 1 47.45 48.6878 -114.814 - 96 178.884 1140 3 0 47.7218 48.2268 -115.85 - 96 44.625 1170 2 1 54.1488 42.4416 -144.45 - 96 100.863 1171 2 1 54.2502 42.4673 -144.584 - 96 185.858 1113 2 0 55.1657 42.6671 -145.85 - 96 59.483 624 2 0 142.524 -55.05 -146.162 -Number of digits in this event = 54 +Number of tracker hits in this event = 106 + 96 565.79 995 8 1 19.2347 69.2591 35.55 + 96 282.678 1246 8 0 19.2186 69.2675 34.15 + 96 187.279 994 7 1 18.9313 69.4308 5.55 + 96 263.348 1246 7 0 18.9225 69.4373 4.15 + 96 122.514 993 6 1 18.7603 69.4994 -24.45 + 96 182.577 1247 6 0 18.6897 69.4945 -25.85 + 96 128.238 986 5 1 17.2772 69.4785 -54.45 + 96 130.604 1247 5 0 17.2092 69.4837 -55.85 + 96 53.0919 979 4 1 15.8666 69.7074 -84.45 + 96 161.946 978 4 1 15.85 69.7094 -84.6652 + 96 158.226 1248 4 0 15.757 69.7209 -85.85 + 96 116.728 967 3 1 13.4814 69.9788 -114.45 + 96 107.443 1249 3 0 13.3908 69.9424 -115.85 + 96 147.914 956 2 1 11.4276 69.2188 -144.45 + 96 105.071 1245 2 0 11.3578 69.1838 -145.85 + 96 124.463 949 1 1 9.9758 68.5369 -174.45 + 96 39.6427 1242 1 0 9.91925 68.4593 -175.85 + 96 101.695 1241 1 0 9.91277 68.45 -176.014 + 96 107.282 943 0 1 8.74506 66.8636 -204.45 + 96 114.445 1233 0 0 8.71179 66.8118 -205.85 + 96 84.9447 1248 6 0 18.6501 69.7995 -25.85 + 96 273.038 996 8 1 19.25 69.2289 35.2624 + 96 205.747 994 8 1 19.0498 69.0903 35.3134 + 96 150.917 996 7 1 19.343 69.3443 5.55 + 96 154.395 997 6 1 19.5419 69.3177 -24.45 + 96 131.427 1246 6 0 19.5548 69.3121 -25.85 + 96 218.792 998 5 1 19.8045 69.1775 -54.45 + 96 113.183 1245 5 0 19.8105 69.176 -55.85 + 96 143.556 999 4 1 19.9357 69.1513 -84.45 + 96 145.326 1245 4 0 19.9402 69.161 -85.85 + 96 116.794 999 3 1 20.021 69.363 -114.45 + 96 234.975 1246 3 0 20.0288 69.3664 -115.85 + 96 99.4349 1000 2 1 20.1632 69.3968 -144.45 + 96 104.533 1246 2 0 20.1826 69.3864 -145.85 + 96 128.423 1002 1 1 20.6024 69.1692 -174.45 + 96 633.451 1245 1 0 20.6482 69.1882 -175.85 + 96 130.486 1007 0 1 21.5862 69.5805 -204.45 + 96 107.941 1247 0 0 21.6261 69.5868 -205.85 + 96 219.929 1001 1 1 20.3677 69.2007 -174.45 + 96 115.82 1003 0 1 20.7447 69.1606 -204.45 + 96 106.359 1245 0 0 20.7646 69.1642 -205.85 + 96 133.078 1002 0 1 20.4848 69.2489 -204.45 + 96 116.828 1246 0 0 20.499 69.2598 -205.85 + 96 83.5164 995 7 1 19.25 69.2677 5.41654 + 96 32.1769 1243 7 0 18.9838 68.6829 4.15 + 96 102.442 1242 7 0 18.9726 68.65 4.07807 + 96 119.83 975 6 1 15.062 60.4601 -24.45 + 96 94.2703 976 6 1 15.2505 60.1643 -24.5789 + 96 385.351 977 6 1 15.45 59.8988 -24.7225 + 96 166.333 978 6 1 15.65 59.7083 -24.8293 + 96 56.959 1188 6 0 17.9398 57.715 -25.8501 + 96 186.143 1187 6 0 18.0161 57.65 -25.8766 + 96 82.2105 1186 6 0 18.2081 57.45 -25.9204 + 96 52.4438 1185 6 0 18.3826 57.25 -25.9437 + 96 56.3456 1184 6 0 18.51 57.05 -25.948 + 96 63.9754 1183 6 0 18.5909 56.8499 -25.9131 + 96 179.382 1182 6 0 18.7149 56.65 -25.8979 + 96 318.714 1181 6 0 18.8565 56.45 -25.8849 + 96 54.5968 1002 6 1 20.4949 54.468 -24.8498 + 96 72.2781 1003 6 1 20.65 54.3392 -24.7808 + 96 72.6066 1004 6 1 20.85 54.2281 -24.7085 + 96 86.0522 1005 6 1 21.0503 54.041 -24.66 + 96 55.8311 1006 6 1 21.25 53.8006 -24.5924 + 96 100.934 1007 6 1 21.45 53.6202 -24.5878 + 96 71.927 1008 6 1 21.6513 53.5489 -24.5768 + 96 101.703 1009 6 1 21.85 53.473 -24.562 + 96 78.9229 1010 6 1 22.05 53.3895 -24.5817 + 96 65.7549 1011 6 1 22.25 53.3283 -24.6707 + 96 205.164 1012 6 1 22.45 53.4559 -24.7281 + 96 76.0435 1013 6 1 22.65 53.5692 -24.7826 + 96 126.347 1014 6 1 22.85 53.7781 -24.7244 + 96 359.411 1015 6 1 23.05 54.0419 -24.7244 + 96 92.8319 1016 6 1 23.25 54.2939 -24.8375 + 96 96.0998 1178 6 0 24.1025 55.7173 -25.85 + 96 65.2342 1179 6 0 24.1981 55.85 -25.9924 + 96 75.6322 1180 6 0 24.2687 56.0505 -26.0536 + 96 142.726 996 1 1 19.2819 68.8569 -174.45 + 96 104.948 1244 1 0 19.2546 68.9262 -175.85 + 96 124.977 992 0 1 18.6325 70.366 -204.45 + 96 130.244 1252 0 0 18.6281 70.5397 -205.85 + 96 216.853 714 1 1 -37.05 -13.8735 -174.613 + 96 49.6245 713 1 1 -37.25 -14.143 -174.591 + 96 44.9983 388 1 0 129.847 -102.35 -176.163 + 96 108.894 387 1 0 129.864 -102.55 -176.166 + 96 194.565 386 1 0 129.733 -102.75 -176.081 + 96 74.3097 385 1 0 129.893 -102.95 -175.958 + 96 371.947 1269 2 0 58.8094 73.8665 -146.25 + 96 298.509 1202 2 1 60.516 73.9135 -144.85 + 96 64.7606 1203 2 1 60.651 73.9175 -144.755 + 96 61.3064 1204 2 1 60.85 73.9271 -144.635 + 96 24.6763 1205 2 1 61.05 73.9278 -144.502 + 96 93.7171 1206 2 1 61.3953 73.3872 -144.45 + 96 126.272 1207 2 1 61.4501 73.1065 -144.614 + 96 21.0198 1257 2 0 62.7001 71.4805 -145.85 + 96 134.978 1256 2 0 62.7257 71.4499 -145.876 + 96 101.356 1255 2 0 63.0021 71.2499 -146.143 + 96 65.2732 1033 2 0 116.315 26.7939 -146.25 + 96 77.5664 1032 2 0 116.304 26.65 -146.067 + 96 65.7609 1031 2 0 116.274 26.45 -145.91 + 96 157.305 1480 2 1 116.19 25.4811 -144.85 + 96 66.7516 1481 2 1 116.35 25.1811 -144.643 + 96 100.583 1482 2 1 116.55 25.0619 -144.635 + 96 78.5208 1483 2 1 116.75 24.7329 -144.687 + 96 8.09799 1484 2 1 116.95 24.5725 -144.837 + 96 99.4732 1019 2 0 117.475 23.9705 -145.85 + 96 78.5636 1018 2 0 117.628 23.85 -146.085 +Number of digits in this event = 46 Using G4ParticleGun ... -8.02643 LIN +8.72218 LIN gamma Event: 97 -Number of tracker hits in this event = 6 - 97 289.142 1483 0 0 -49.1763 116.815 -206.25 - 97 65.4493 936 0 1 7.25 13.6521 -204.75 - 97 4.14169 1453 0 0 9.75836 110.855 -206.25 - 97 52.6261 1382 5 1 96.55 -66.3288 -54.7067 - 97 69.2167 1465 1 0 -80.797 113.22 -176.25 - 97 194.56 494 1 1 -81.1842 113.699 -174.85 -Number of digits in this event = 5 +Number of tracker hits in this event = 0 +Number of digits in this event = 3 Using G4ParticleGun ... -8.14196 LIN +1.81227 LIN gamma Event: 98 -Number of tracker hits in this event = 67 - 98 303.638 267 8 1 -126.735 54.7305 35.55 - 98 208.516 1173 8 0 -126.735 54.7306 34.15 - 98 240.857 267 7 1 -126.741 54.7346 5.55 - 98 149.643 1173 7 0 -126.742 54.7345 4.15 - 98 152.536 266 6 1 -126.767 54.7303 -24.45 - 98 145.56 1173 6 0 -126.769 54.7302 -25.85 - 98 439.173 266 5 1 -126.811 54.7315 -54.45 - 98 147.821 1173 5 0 -126.814 54.7316 -55.85 - 98 93.8637 266 4 1 -126.862 54.7309 -84.45 - 98 126.921 1173 4 0 -126.865 54.7295 -85.85 - 98 188.468 266 3 1 -126.915 54.7019 -114.45 - 98 116.937 1173 3 0 -126.918 54.7007 -115.85 - 98 139.965 265 2 1 -126.994 54.6707 -144.45 - 98 109.852 1173 2 0 -127 54.6711 -145.85 - 98 682.925 265 1 1 -127.109 54.6847 -174.45 - 98 105.637 1173 1 0 -127.114 54.6855 -175.85 - 98 106.914 264 0 1 -127.209 54.7117 -204.45 - 98 228.398 1173 0 0 -127.213 54.7131 -205.85 - 98 61.7562 1043 0 0 -176.147 28.8413 -206.25 - 98 126.861 23 0 1 -175.456 28.1599 -204.85 - 98 27.9459 1213 2 0 -127.97 62.6781 -146.25 - 98 251.685 1212 2 0 -127.961 62.6499 -146.166 - 98 35.6877 1211 2 0 -127.935 62.4493 -145.9 - 98 265.199 259 2 1 -128.151 61.2067 -144.85 - 98 5.4899 260 2 1 -128.15 60.5597 -144.469 - 98 104.7 466 0 1 -86.85 65.2552 -204.815 - 98 95.4152 467 0 1 -86.65 65.2058 -204.731 - 98 36.5937 1229 0 0 -86.5643 65.9126 -205.85 - 98 13.5259 465 0 1 -86.9668 65.9142 -204.85 - 98 87.1707 1227 0 0 -87.4191 65.4954 -205.85 - 98 56.6658 267 5 1 -126.75 54.7841 -54.6909 - 98 24.5434 266 7 1 -126.752 54.9292 5.55 - 98 234.581 1174 7 0 -126.73 54.8702 4.15 - 98 260.918 267 6 1 -126.593 53.7616 -24.45 - 98 144.178 1167 6 0 -126.608 53.5994 -25.85 - 98 95.5751 1149 5 0 -126.98 49.8726 -55.85 - 98 58.5535 1148 5 0 -126.989 49.8499 -56.0611 - 98 172.162 256 4 1 -128.768 46.8296 -84.45 - 98 123.028 1133 4 0 -128.76 46.8046 -85.85 - 98 113.382 258 3 1 -128.409 46.0042 -114.45 - 98 2.24258 1129 3 0 -128.51 46.0495 -115.85 - 98 130.487 1130 3 0 -128.511 46.05 -115.865 - 98 128.279 250 2 1 -130.006 47.45 -144.45 - 98 117.195 1137 2 0 -129.887 47.515 -145.85 - 98 124.913 1145 1 0 -126.987 49.1862 -175.85 - 98 158.36 278 0 1 -124.539 51.5111 -204.45 - 98 113.034 1156 0 0 -124.487 51.436 -205.85 - 98 204.717 1254 3 0 -60.935 70.9439 -116.25 - 98 35.4107 1253 3 0 -60.8649 70.85 -116.192 - 98 208.843 282 1 1 -123.596 48.1229 -174.45 - 98 81.3256 281 1 1 -123.75 48.0973 -174.622 - 98 72.5593 1142 1 0 -123.847 48.5689 -175.85 - 98 51.0483 1143 1 0 -123.826 48.65 -176.082 - 98 161.901 1064 1 0 134.381 32.8993 -176.25 - 98 114.755 1063 1 0 134.756 32.85 -176.073 - 98 40.3657 1575 1 1 135.26 33.7159 -174.85 - 98 286.113 1576 1 1 135.35 33.7568 -174.816 - 98 39.2732 1139 1 0 -123.959 47.8771 -175.85 - 98 109.202 1138 1 0 -123.993 47.85 -175.975 - 98 25.4678 1114 1 0 -126.879 43.0026 -175.85 - 98 101.564 1115 1 0 -126.874 43.0506 -175.919 - 98 42.5351 1116 1 0 -126.897 43.25 -176.178 - 98 115.89 1370 1 0 -145.148 94.2226 -176.25 - 98 113.487 174 1 1 -145.239 94.3104 -174.85 - 98 128.175 1109 1 0 -126.891 41.9625 -175.85 - 98 145.995 287 0 1 -122.744 42.0735 -204.45 - 98 188.709 1110 0 0 -122.154 42.1657 -205.85 -Number of digits in this event = 36 +Number of tracker hits in this event = 2 + 98 6.27413 317 7 1 -116.662 -8.27538 5.15 + 98 305.531 517 11 0 -156.758 -76.5186 123.75 +Number of digits in this event = 2 Using G4ParticleGun ... -8.2384 LIN +9.96689 LIN gamma Event: 99 -Number of tracker hits in this event = 4 - 99 42.3503 257 9 1 -128.555 10.1884 65.15 - 99 72.8098 258 9 1 -128.55 10.1596 65.3221 - 99 92.9623 1195 0 0 -140.544 59.1738 -206.25 - 99 202.206 1196 0 0 -140.499 59.25 -206.088 -Number of digits in this event = 5 +Number of tracker hits in this event = 61 + 99 241.58 1214 8 1 63.0115 -67.3615 35.55 + 99 294.391 563 8 0 63.0107 -67.3614 34.15 + 99 150.431 1214 7 1 62.9913 -67.3608 5.55 + 99 435.42 563 7 0 62.9831 -67.3593 4.15 + 99 201.233 1213 6 1 62.8114 -67.2867 -24.45 + 99 103.95 563 6 0 62.802 -67.2608 -25.85 + 99 109.434 1212 5 1 62.5102 -66.7963 -54.45 + 99 305.65 566 5 0 62.4585 -66.7666 -55.85 + 99 128.501 1203 4 1 60.7855 -64.7149 -84.45 + 99 310.127 577 4 0 60.5415 -64.6179 -85.85 + 99 154.526 1174 3 1 54.898 -64.0555 -114.45 + 99 141.715 578 3 0 54.9404 -64.2505 -115.85 + 99 194.893 1176 2 1 55.4381 -68.1368 -144.45 + 99 179.691 557 2 0 55.2994 -68.5146 -145.85 + 99 190.572 1163 1 1 52.7407 -77.1363 -174.45 + 99 66.1573 1164 1 1 52.85 -77.1731 -174.775 + 99 124.636 513 1 0 53.1371 -77.272 -175.85 + 99 108.806 1199 0 1 59.8563 -80.9712 -204.45 + 99 40.9226 494 0 0 60.0796 -81.228 -205.85 + 99 102.803 493 0 0 60.0987 -81.25 -205.973 + 99 52.7345 459 2 0 54.5595 -88.1991 -146.25 + 99 231.284 458 2 0 54.6692 -88.25 -146.168 + 99 313.466 1215 7 1 63.05 -67.3771 5.28973 + 99 437.205 1214 4 1 62.9217 -67.3721 -84.45 + 99 261.907 563 4 0 62.9258 -67.3701 -85.85 + 99 239.101 1214 3 1 63.0051 -67.3313 -114.45 + 99 261.312 563 3 0 63.002 -67.3274 -115.85 + 99 400.219 1214 2 1 62.9231 -67.2246 -144.45 + 99 116.358 564 2 0 62.9221 -67.2182 -145.85 + 99 312.414 1214 1 1 62.9198 -67.0871 -174.45 + 99 186.862 564 1 0 62.9171 -67.0786 -175.85 + 99 136.79 1214 0 1 62.8851 -66.8818 -204.45 + 99 114.985 565 0 0 62.8846 -66.8668 -205.85 + 99 67.2694 945 2 1 9.2396 -108.178 -144.85 + 99 123.806 563 2 0 62.8922 -67.3688 -145.85 + 99 137.311 563 1 0 62.8549 -67.355 -175.85 + 99 141.842 1213 0 1 62.8152 -67.3343 -204.45 + 99 122.238 563 0 0 62.8099 -67.3331 -205.85 + 99 32.24 782 2 1 -23.45 -46.6993 -144.65 + 99 23.2523 568 1 0 53.5043 -66.25 -176.077 + 99 16.0761 1162 1 1 52.6498 -66.9708 -174.813 + 99 182.023 565 1 0 52.0687 -67.05 -175.919 + 99 55.2062 1155 1 1 51.1674 -67.5414 -174.85 + 99 190.733 1154 1 1 51.05 -67.5848 -174.833 + 99 157.394 1090 2 1 38.2081 139.2 -144.45 + 99 125.367 1216 6 1 63.4452 -67.1524 -24.45 + 99 106.492 564 6 0 63.4583 -67.1388 -25.85 + 99 154.235 1218 5 1 63.7074 -66.8533 -54.45 + 99 129.12 1220 4 1 64.21 -66.3348 -84.45 + 99 98.5766 568 4 0 64.2287 -66.3178 -85.85 + 99 98.462 1223 3 1 64.7567 -66.212 -114.45 + 99 107.245 569 3 0 64.7887 -66.2154 -115.85 + 99 162.545 1227 2 1 65.5376 -66.2949 -144.45 + 99 127.017 568 2 0 65.5767 -66.2893 -145.85 + 99 155.677 1231 1 1 66.3589 -66.1918 -174.45 + 99 120.97 569 1 0 66.4024 -66.1861 -175.85 + 99 125.394 1236 0 1 67.3845 -66.0794 -204.45 + 99 98.5415 569 0 0 67.4209 -66.0691 -205.85 + 99 58.9363 1229 0 1 65.9386 -65.0467 -204.45 + 99 70.3019 1230 0 1 66.05 -65.0341 -204.633 + 99 232.844 574 0 0 66.6664 -65.1236 -205.85 +Number of digits in this event = 43 Run terminated. Run Summary Number of events processed : 100 - User=42.100000s Real=42.451651s Sys=0.030000s + User=43.770000s Real=43.948630s Sys=0.030000s End of Run 1 /gun/particle e- /gun/energy 1 GeV @@ -9630,7814 +9858,8450 @@ Cannot set FirstId as its value was already used. done Using G4ParticleGun ... -7.63173 LIN +6.40108 LIN e- Event: 0 -Number of tracker hits in this event = 28 - 0 253.003 359 10 1 -108.169 -19.0375 95.55 - 0 106.762 805 10 0 -108.17 -19.0375 94.15 - 0 185.403 359 9 1 -108.183 -19.0415 65.55 - 0 143.598 805 9 0 -108.183 -19.0442 64.15 - 0 117.05 359 8 1 -108.153 -19.1142 35.55 - 0 135.379 804 8 0 -108.153 -19.1176 34.15 - 0 179.619 360 7 1 -108.141 -19.1897 5.55 - 0 87.1283 804 7 0 -108.143 -19.1936 4.15 - 0 121.288 359 6 1 -108.163 -19.2763 -24.45 - 0 155.406 803 6 0 -108.164 -19.2812 -25.85 - 0 325.925 359 5 1 -108.169 -19.3773 -54.45 - 0 125.189 803 5 0 -108.168 -19.3827 -55.85 - 0 125.27 359 4 1 -108.157 -19.4915 -84.45 - 0 203.148 802 4 0 -108.157 -19.4966 -85.85 - 0 105.165 359 3 1 -108.153 -19.5998 -114.45 - 0 117.298 802 3 0 -108.152 -19.6044 -115.85 - 0 240.426 360 2 1 -108.133 -19.6997 -144.45 - 0 110.913 801 2 0 -108.132 -19.7034 -145.85 - 0 117.053 360 1 1 -108.12 -19.7789 -174.45 - 0 185.169 801 1 0 -108.122 -19.7826 -175.85 - 0 405.897 359 0 1 -108.161 -19.8504 -204.45 - 0 146.707 801 0 0 -108.159 -19.849 -205.85 - 0 268.656 490 0 1 -82.0275 28.5219 -204.85 - 0 132.993 489 0 1 -82.0501 28.952 -204.472 - 0 149.328 358 5 1 -108.35 -19.4109 -54.5191 - 0 136.173 359 7 1 -108.15 -19.1755 5.41062 - 0 240.947 805 0 0 -108.285 -18.9985 -205.85 - 0 26.974 531 4 0 -150.73 -73.85 -86.0248 -Number of digits in this event = 22 -Using G4ParticleGun ... -2.04913 LIN -e- -Event: 1 -Number of tracker hits in this event = 26 - 1 343.631 612 7 1 -57.4775 137.417 5.55 - 1 116.263 1586 7 0 -57.4755 137.417 4.15 - 1 138.643 613 6 1 -57.4239 137.387 -24.45 - 1 111.748 1586 6 0 -57.4212 137.378 -25.85 - 1 110.086 613 5 1 -57.3432 137.181 -54.45 - 1 182.645 1585 5 0 -57.3392 137.174 -55.85 - 1 102.301 613 4 1 -57.2577 137.023 -84.45 - 1 126.747 1584 4 0 -57.2587 137.018 -85.85 - 1 115.822 613 3 1 -57.2951 136.918 -114.45 - 1 134.137 1583 3 0 -57.2972 136.911 -115.85 - 1 299.682 613 2 1 -57.3322 136.788 -144.45 - 1 110.513 1583 2 0 -57.3214 136.784 -145.85 - 1 116.375 614 1 1 -57.1234 136.69 -174.45 - 1 132.593 1582 1 0 -57.1105 136.675 -175.85 - 1 250.818 616 0 1 -56.8205 136.381 -204.45 - 1 128.192 1581 0 0 -56.8137 136.371 -205.85 - 1 50.2042 1310 0 0 -91.2144 82.25 -206.137 - 1 158.143 1311 0 0 -91.2726 82.25 -205.978 - 1 26.5237 612 2 1 -57.45 136.755 -144.798 - 1 175.508 1580 2 0 -57.9998 136.244 -145.85 - 1 23.2623 618 2 1 -56.333 137.899 -144.85 - 1 117.706 1591 2 0 -55.0026 138.534 -145.85 - 1 46.8366 1388 0 0 -86.4559 97.95 -206.046 - 1 179.922 613 7 1 -57.45 137.394 5.42436 - 1 19.4309 1591 7 0 -57.7059 138.512 4.15 - 1 93.1244 1592 7 0 -57.7102 138.55 4.09028 -Number of digits in this event = 15 -Using G4ParticleGun ... -8.62161 LIN -e- -Event: 2 -Number of tracker hits in this event = 44 - 2 107.541 434 10 1 -93.2847 -45.37 95.55 - 2 165.161 673 10 0 -93.2843 -45.3701 94.15 - 2 256.918 434 9 1 -93.2715 -45.367 65.55 - 2 128.28 673 9 0 -93.2705 -45.3668 64.15 - 2 124.322 434 8 1 -93.251 -45.3655 35.55 - 2 136.385 673 8 0 -93.2501 -45.3654 34.15 - 2 116.065 434 7 1 -93.2333 -45.3619 5.55 - 2 137.766 673 7 0 -93.2326 -45.3611 4.15 - 2 102.126 434 6 1 -93.219 -45.3473 -24.45 - 2 138.217 673 6 0 -93.2179 -45.3461 -25.85 - 2 179.584 434 5 1 -93.1915 -45.324 -54.45 - 2 161.433 673 5 0 -93.1889 -45.3219 -55.85 - 2 141.755 435 4 1 -93.135 -45.2739 -84.45 - 2 122.809 673 4 0 -93.1327 -45.2714 -85.85 - 2 124.724 435 3 1 -93.0839 -45.2237 -114.45 - 2 117.413 674 3 0 -93.0813 -45.2201 -115.85 - 2 101.764 435 2 1 -93.0266 -45.1434 -144.45 - 2 113.607 674 2 0 -93.0246 -45.1396 -145.85 - 2 348.961 435 1 1 -92.9863 -45.0622 -174.45 - 2 110.275 674 1 0 -92.9842 -45.0585 -175.85 - 2 205.22 436 0 1 -92.9413 -44.9898 -204.45 - 2 116.436 675 0 0 -92.9402 -44.9867 -205.85 - 2 161.483 1307 1 1 81.45 -108.674 -174.719 - 2 67.1212 815 1 0 -154.195 -16.9458 -175.85 - 2 79.1063 1552 13 1 130.55 -23.8562 185.481 - 2 180.045 1553 13 1 130.75 -23.8356 185.504 - 2 351.848 386 2 0 -138.182 -102.904 -146.25 - 2 10.8616 241 0 1 -131.931 -1.10632 -204.45 - 2 153.114 240 0 1 -131.95 -1.12059 -204.477 - 2 183.164 239 0 1 -132.15 -1.12054 -204.701 - 2 431.853 183 6 0 160.752 -143.433 -26.25 - 2 144.831 333 0 1 -113.37 3.93488 -204.45 - 2 138.681 917 0 0 -113.997 3.58709 -205.85 - 2 162.285 1111 0 0 -111.6 42.2965 -206.25 - 2 223.454 1112 0 0 -111.638 42.45 -205.884 - 2 306.328 435 5 1 -93.15 -45.388 -54.6633 - 2 52.7479 437 2 1 -92.5655 -45.2496 -144.45 - 2 110.043 462 2 1 -87.592 -129.238 -144.85 - 2 265.105 673 1 0 -93.108 -45.3112 -175.85 - 2 223.606 435 0 1 -93.1022 -45.2364 -204.45 - 2 136.646 674 0 0 -93.1174 -45.2454 -205.85 - 2 164.762 443 0 1 -91.4969 -47.0008 -204.45 - 2 254.437 659 0 0 -91.2352 -48.0751 -205.85 - 2 41.3892 658 0 0 -91.1712 -48.25 -206.098 -Number of digits in this event = 33 -Using G4ParticleGun ... -2.96652 LIN -e- -Event: 3 -Number of tracker hits in this event = 68 - 3 112.843 363 10 1 -107.431 30.7488 95.55 - 3 110.501 1053 10 0 -107.433 30.752 94.15 - 3 103.273 363 9 1 -107.452 30.8187 65.55 - 3 129.545 1053 9 0 -107.453 30.8239 64.15 - 3 129.105 363 8 1 -107.486 30.9262 35.55 - 3 148.347 1054 8 0 -107.49 30.933 34.15 - 3 136.762 362 7 1 -107.564 31.0854 5.55 - 3 134.592 1055 7 0 -107.557 31.1212 4.15 - 3 126.198 363 6 1 -107.424 31.843 -24.45 - 3 123.031 1059 6 0 -107.424 31.8793 -25.85 - 3 121.264 363 5 1 -107.447 32.6411 -54.45 - 3 151.879 1063 5 0 -107.451 32.68 -55.85 - 3 140.99 363 4 1 -107.521 33.491 -84.45 - 3 274.659 1067 4 0 -107.525 33.529 -85.85 - 3 201.996 362 3 1 -107.618 34.3025 -114.45 - 3 147.459 1071 3 0 -107.623 34.3472 -115.85 - 3 105.975 362 2 1 -107.719 35.2506 -144.45 - 3 112.947 1076 2 0 -107.724 35.2984 -145.85 - 3 443.473 361 1 1 -107.81 36.2773 -174.45 - 3 253.377 1081 1 0 -107.807 36.3227 -175.85 - 3 131.747 362 0 1 -107.749 37.2365 -204.45 - 3 499.192 1086 0 0 -107.746 37.2757 -205.85 - 3 26.2161 124 4 1 -155.247 134.709 -84.85 - 3 208.892 362 1 1 -107.75 36.3012 -174.785 - 3 186.979 361 0 1 -107.777 37.2666 -204.45 - 3 179.929 937 0 0 -109.412 7.56903 -206.25 - 3 68.5062 363 1 1 -107.55 36.4378 -174.69 - 3 121.352 1083 1 0 -106.977 36.6816 -175.85 - 3 138.362 398 0 1 -100.511 37.6719 -204.45 - 3 4.31567 397 0 1 -100.55 37.6899 -204.509 - 3 180.664 854 0 0 -79.588 -9.08997 -206.25 - 3 95.9805 1140 1 0 -89.0152 48.0736 -176.25 - 3 96.9838 1141 1 0 -88.9992 48.25 -176.151 - 3 571.408 363 0 1 -107.428 31.7139 -204.45 - 3 237.408 1058 0 0 -107.429 31.7194 -205.85 - 3 278.868 362 5 1 -107.579 31.058 -54.45 - 3 75.0774 1055 5 0 -107.797 31.2364 -55.85 - 3 455.394 1056 5 0 -107.815 31.25 -55.9614 - 3 121.448 340 4 1 -112.034 34.1224 -84.45 - 3 19.8558 1072 4 0 -112.131 34.6206 -85.85 - 3 119.001 1073 4 0 -112.137 34.65 -85.9289 - 3 104.511 340 3 1 -112.072 43.8032 -114.45 - 3 144.562 1120 3 0 -111.977 44.1439 -115.85 - 3 8.53842 1121 3 0 -111.948 44.25 -116.213 - 3 16.5309 351 2 1 -109.765 53.6283 -144.45 - 3 96.1245 352 2 1 -109.75 53.6417 -144.489 - 3 89.4033 1170 2 0 -109.254 54.1378 -145.85 - 3 39.4344 1171 2 0 -109.151 54.25 -146.132 - 3 53.6336 403 1 1 -99.4305 66.6609 -174.45 - 3 91.3252 404 1 1 -99.35 66.699 -174.596 - 3 130.244 1234 1 0 -98.6712 66.9734 -175.85 - 3 146.056 485 0 1 -82.9458 67.8966 -204.45 - 3 142.951 1239 0 0 -82.6304 68.0035 -205.85 - 3 77.1965 1424 1 0 -1.84682 105.15 -175.928 - 3 155.812 1054 5 0 -107.696 31.0073 -55.85 - 3 158.319 344 4 1 -111.23 29.7819 -84.45 - 3 107.639 1048 4 0 -111.369 29.6962 -85.85 - 3 116.703 323 3 1 -115.373 28.9019 -114.45 - 3 95.7935 1043 3 0 -115.466 28.6968 -115.85 - 3 27.4208 1042 3 0 -115.483 28.65 -116.144 - 3 26.7288 308 2 1 -118.54 24.3528 -144.45 - 3 152.594 307 2 1 -118.55 24.3268 -144.522 - 3 30.9288 1019 2 0 -118.758 23.8845 -145.85 - 3 81.1015 1018 2 0 -118.776 23.85 -145.952 - 3 161.787 281 1 1 -123.783 16.0058 -174.45 - 3 103.218 978 1 0 -123.917 15.7458 -175.85 - 3 124.48 273 0 1 -125.456 10.4108 -204.45 - 3 130.808 949 0 0 -125.74 10.0133 -205.85 -Number of digits in this event = 41 -Using G4ParticleGun ... -2.98269 LIN -e- -Event: 4 -Number of tracker hits in this event = 22 - 4 108.907 295 8 0 81.4621 -120.991 34.15 - 4 225.551 1307 7 1 81.4615 -120.985 5.55 - 4 100.623 295 7 0 81.4585 -120.985 4.15 - 4 303.417 1306 6 1 81.4078 -120.986 -24.45 - 4 149.344 295 6 0 81.4062 -120.988 -25.85 - 4 130.655 1306 5 1 81.379 -121.039 -54.45 - 4 143.205 295 5 0 81.379 -121.043 -55.85 - 4 164.839 1306 4 1 81.3824 -121.127 -84.45 - 4 136.26 295 4 0 81.3799 -121.13 -85.85 - 4 136.763 1306 3 1 81.3363 -121.177 -114.45 - 4 139.943 294 3 0 81.3354 -121.18 -115.85 - 4 106.788 1306 2 1 81.3194 -121.248 -144.45 - 4 195.754 294 2 0 81.319 -121.251 -145.85 - 4 163.616 1306 1 1 81.3232 -121.313 -174.45 - 4 121.818 294 1 0 81.2884 -121.306 -175.85 - 4 145.54 1302 0 1 80.6082 -121.133 -204.45 - 4 104.796 295 0 0 80.5676 -121.116 -205.85 - 4 4.84362 293 2 0 81.316 -121.35 -146.245 - 4 62.2086 296 6 0 81.4011 -120.95 -25.9005 - 4 133.782 297 6 0 81.392 -120.75 -25.9834 - 4 38.9729 298 6 0 81.4496 -120.55 -25.8949 - 4 72.7525 1307 6 1 81.4828 -118.876 -24.85 -Number of digits in this event = 16 -Using G4ParticleGun ... -2.43129 LIN -e- -Event: 5 -Number of tracker hits in this event = 186 - 5 157.584 1061 11 1 32.2935 24.8857 125.55 - 5 109.77 1024 11 0 32.2965 24.8912 124.15 - 5 121.716 1061 10 1 32.3615 24.9911 95.55 - 5 209.85 1024 10 0 32.3661 24.9945 94.15 - 5 106.581 1062 9 1 32.4533 25.0587 65.55 - 5 107.816 1025 9 0 32.4593 25.063 64.15 - 5 124.325 1062 8 1 32.5827 25.1522 35.55 - 5 117.201 1025 8 0 32.5927 25.1558 34.15 - 5 268.191 1063 7 1 32.7882 25.2376 5.55 - 5 139.106 1025 7 0 32.7935 25.2383 4.15 - 5 273.904 1064 6 1 32.9172 25.2547 -24.45 - 5 179.237 1025 6 0 32.918 25.2388 -25.85 - 5 204.392 1064 5 1 32.9393 24.8498 -54.45 - 5 106.574 1023 5 0 32.9402 24.8358 -55.85 - 5 176.049 1063 4 1 32.7759 24.7186 -84.45 - 5 148.848 1023 4 0 32.7287 24.7321 -85.85 - 5 309.555 1059 3 1 31.8862 25.0012 -114.45 - 5 161.092 1025 3 0 31.8251 25.0831 -115.85 - 5 112.197 1052 2 1 30.6225 26.6738 -144.45 - 5 145.731 1033 2 0 30.5646 26.7525 -145.85 - 5 150.904 1046 1 1 29.2788 28.3256 -174.45 - 5 214.379 1040 1 0 29.1812 28.2346 -175.85 - 5 159.659 1035 0 1 27.1169 26.3345 -204.45 - 5 170.168 1031 0 0 27.0171 26.2741 -205.85 - 5 43.5793 1030 0 0 27.0159 26.25 -205.969 - 5 84.5486 1058 3 1 31.85 24.9278 -114.656 - 5 52.5898 1021 3 0 31.4787 24.3364 -115.851 - 5 61.8354 1020 3 0 31.4397 24.2499 -116.026 - 5 63.2932 1014 4 0 41.3374 22.9897 -86.2499 - 5 204.187 1015 4 0 41.4534 23.0501 -86.0874 - 5 128.432 1110 4 1 42.1183 23.4551 -84.85 - 5 8.50585 1109 4 1 42.05 23.4482 -84.4744 - 5 232.231 1069 0 1 33.9485 25.4157 -204.45 - 5 243.047 1026 0 0 33.9385 25.4039 -205.85 - 5 111.345 1377 14 0 -178.919 95.5688 213.75 - 5 140.221 4 14 1 -179.238 95.9558 215.15 - 5 189.118 1002 2 0 66.866 20.6092 -146.25 - 5 90.2483 1003 2 0 66.8843 20.65 -146.058 - 5 263.728 120 4 0 128.033 -156.076 -86.25 - 5 104.012 1027 7 0 32.8952 25.5078 4.15 - 5 206.429 1076 6 1 35.3157 30.9452 -24.45 - 5 110.845 1054 6 0 35.1945 30.9373 -25.85 - 5 130.421 1066 5 1 33.4328 29.7783 -54.45 - 5 140.916 1046 5 0 33.1298 29.3736 -55.85 - 5 131.584 1036 4 1 27.4206 21.9281 -84.4503 - 5 74.0583 1003 4 0 27.3331 20.8269 -85.85 - 5 64.7807 1002 4 0 27.3088 20.65 -86.0794 - 5 16.75 1030 3 1 26.224 0.915744 -114.45 - 5 76.6253 1031 3 1 26.25 0.887634 -114.467 - 5 95.8083 1032 3 1 26.4501 0.652038 -114.589 - 5 209.622 1033 3 1 26.65 0.41328 -114.711 - 5 15.8416 892 3 0 28.2914 -1.64544 -115.85 - 5 120.764 891 3 0 28.295 -1.65 -115.852 - 5 74.0985 890 3 0 28.4477 -1.85 -115.964 - 5 232.099 889 3 0 28.5785 -2.05 -116.106 - 5 53.2697 888 3 0 28.5746 -2.25003 -116.182 - 5 365.015 887 3 0 28.5879 -2.45004 -116.191 - 5 107.642 886 3 0 28.6308 -2.65 -116.175 - 5 33.9176 1057 6 0 35.8053 31.5786 -25.85 - 5 83.3071 1058 6 0 35.8536 31.65 -25.9692 - 5 56.6766 1110 5 1 42.0766 37.7916 -54.45 - 5 58.4118 1109 5 1 42.0498 37.759 -54.614 - 5 111.404 1087 5 0 41.9488 37.4954 -55.85 - 5 124.772 1063 6 1 32.8411 25.3252 -24.4502 - 5 211.749 1026 6 0 32.9101 25.2646 -25.85 - 5 127.27 1071 5 1 34.2634 23.7545 -54.45 - 5 128.525 1018 5 0 34.6061 23.6854 -55.85 - 5 138.094 1114 4 1 42.8859 22.8527 -84.4501 - 5 19.904 1115 4 1 43.05 22.7761 -84.7775 - 5 75.0699 1012 4 0 43.5962 22.5042 -85.8505 - 5 56.1995 1011 4 0 43.7171 22.4499 -86.0882 - 5 9.36581 1189 3 1 58.0366 16.0088 -114.45 - 5 120.595 1190 3 1 58.05 16.0086 -114.466 - 5 42.146 1191 3 1 58.2502 16.0084 -114.707 - 5 270.724 979 3 0 59.1484 16.0172 -115.85 - 5 116.55 1296 2 1 79.3216 16.9725 -144.451 - 5 33.3627 1297 2 1 79.45 17.021 -144.752 - 5 41.9633 985 2 0 79.8638 17.224 -145.85 - 5 83.1442 986 2 0 79.9187 17.2501 -145.988 - 5 56.9603 1353 1 1 90.7886 20.5251 -174.45 - 5 112.698 1354 1 1 90.95 20.5579 -174.604 - 5 9.61628 1355 1 1 91.15 20.5974 -174.819 - 5 83.6393 1003 1 0 92.0166 20.8072 -175.85 - 5 68.0569 1004 1 0 92.1821 20.85 -176.061 - 5 172.5 1469 0 1 114.096 27.6688 -204.45 - 5 145.401 1039 0 0 114.153 27.8521 -205.85 - 5 137.314 1062 5 1 32.5366 27.0173 -54.4501 - 5 169.271 1035 5 0 32.5138 27.0934 -55.85 - 5 106.046 1062 4 1 32.579 28.6349 -84.45 - 5 98.6232 1043 4 0 32.8319 28.7894 -85.8501 - 5 1.68763 1093 3 1 38.8436 29.115 -114.45 - 5 69.7156 1094 3 1 38.85 29.111 -114.453 - 5 192.735 1095 3 1 39.05 28.9866 -114.558 - 5 125.843 1096 3 1 39.25 28.8661 -114.696 - 5 82.633 1097 3 1 39.45 28.7655 -114.835 - 5 36.9931 1040 3 0 40.7752 28.0967 -115.85 - 5 203.617 1039 3 0 40.8538 28.05 -115.919 - 5 123.48 1038 3 0 40.9942 27.8498 -116.028 - 5 56.1237 1037 3 0 41.0935 27.65 -116.08 - 5 107.13 1036 3 0 41.2022 27.45 -116.11 - 5 67.2934 1035 3 0 41.3036 27.2499 -116.126 - 5 73.672 1034 3 0 41.3946 27.05 -116.127 - 5 54.9867 1033 3 0 41.4762 26.85 -116.136 - 5 65.6247 1032 3 0 41.5633 26.6497 -116.16 - 5 86.4496 1031 3 0 41.6638 26.45 -116.206 - 5 450.865 1030 3 0 41.7525 26.25 -116.232 - 5 36.9241 1029 3 0 41.8332 26.0498 -116.245 - 5 142.858 1098 3 1 39.65 28.688 -114.722 - 5 1.06756 1099 3 1 39.8501 28.5522 -114.843 - 5 87.6551 718 3 0 102.894 -36.2603 -116.25 - 5 49.508 717 3 0 102.871 -36.4501 -115.951 - 5 63.6886 1412 3 1 102.594 -36.9224 -114.85 - 5 70.27 1411 3 1 102.55 -36.9933 -114.637 - 5 86.9721 593 4 0 110.522 -61.3195 -86.25 - 5 126.351 841 3 0 120.974 -11.8135 -116.25 - 5 122.466 1072 3 1 34.4543 26.1672 -114.45 - 5 134.967 1071 3 1 34.45 26.1667 -114.492 - 5 128.101 1044 2 1 28.9587 26.168 -144.45 - 5 42.971 1027 2 0 28.7397 25.4983 -145.85 - 5 105.993 1026 2 0 28.7253 25.45 -145.945 - 5 87.6598 1032 1 1 26.5408 5.98471 -174.45 - 5 253.229 1033 1 1 26.65 5.80428 -174.54 - 5 102.287 1034 1 1 26.85 5.49932 -174.719 - 5 69.1326 917 1 0 28.1541 3.63024 -175.85 - 5 77.6262 916 1 0 28.2716 3.45 -175.963 - 5 88.4428 915 1 0 28.3815 3.25 -176.095 - 5 11.8724 914 1 0 28.4917 3.05 -176.225 - 5 63.7577 1162 0 1 52.4911 -43.1123 -204.45 - 5 94.8351 1163 0 1 52.65 -43.2911 -204.522 - 5 93.8226 1164 0 1 52.85 -43.5233 -204.649 - 5 98.5328 1165 0 1 53.05 -43.7527 -204.769 - 5 4.64355 670 0 0 55.0438 -46.0323 -205.85 - 5 92.1372 669 0 0 55.0588 -46.0501 -205.859 - 5 72.0229 668 0 0 55.2253 -46.25 -205.956 - 5 95.9961 667 0 0 55.3802 -46.45 -206.073 - 5 31.1241 666 0 0 55.5289 -46.6504 -206.196 - 5 230.375 560 0 0 94.0657 -67.9355 -206.25 - 5 8.1626 1392 0 1 98.7092 -67.5519 -204.85 - 5 69.1657 1393 0 1 98.75 -67.5468 -204.839 - 5 67.9967 1394 0 1 98.95 -67.5122 -204.809 - 5 44.522 1395 0 1 99.15 -67.4634 -204.808 - 5 99.1032 1396 0 1 99.35 -67.398 -204.815 - 5 27.2612 1397 0 1 99.55 -67.1696 -204.835 - 5 46.5761 588 0 0 101.657 -62.4194 -205.85 - 5 72.7775 589 0 0 101.715 -62.25 -205.9 - 5 57.6922 590 0 0 101.769 -62.05 -205.999 - 5 69.3702 591 0 0 101.78 -61.85 -206.116 - 5 32.1297 592 0 0 101.766 -61.65 -206.215 - 5 55.6685 1107 2 1 41.5357 25.9119 -144.45 - 5 84.6435 1108 2 1 41.6501 25.8876 -144.626 - 5 128.078 1028 2 0 42.3953 25.7577 -145.85 - 5 78.8953 1201 1 1 60.3155 17.7045 -174.45 - 5 68.9765 1202 1 1 60.45 17.7884 -174.655 - 5 62.8941 991 1 0 61.2633 18.3664 -175.85 - 5 66.9848 992 1 0 61.3842 18.45 -176.023 - 5 195.798 1311 0 1 82.3405 31.3188 -204.45 - 5 66.2597 1065 0 0 82.5321 33.1058 -205.85 - 5 68.9441 1066 0 0 82.5456 33.25 -205.958 - 5 72.8125 1067 0 0 82.5607 33.45 -206.093 - 5 13.7062 1068 0 0 82.5802 33.6502 -206.23 - 5 12.092 1259 0 0 121.378 72.0383 -206.25 - 5 258.276 1260 0 0 121.41 72.0501 -206.237 - 5 217.632 1261 0 0 121.94 72.25 -205.988 - 5 96.0017 1516 0 1 123.403 73.1118 -204.85 - 5 71.8556 1517 0 1 123.55 73.2011 -204.736 - 5 71.3495 1518 0 1 123.75 73.3196 -204.589 - 5 8.0208 1519 0 1 123.95 73.3853 -204.467 - 5 78.0015 1520 0 1 124.189 73.4382 -204.45 - 5 69.6352 1521 0 1 124.35 73.4964 -204.574 - 5 35.2955 1522 0 1 124.55 73.5669 -204.729 - 5 9.65774 1268 0 0 125.25 73.8436 -205.85 - 5 97.9966 1269 0 0 125.264 73.8501 -205.874 - 5 70.8937 1166 0 0 115.183 53.4328 -206.25 - 5 458.631 1165 0 0 115.069 53.2497 -206.128 - 5 163.503 1164 0 0 114.912 53.0499 -206.065 - 5 117.412 1163 0 0 114.683 52.85 -205.936 - 5 65.9913 1463 0 1 112.829 51.0136 -204.85 - 5 82.0732 1462 0 1 112.75 50.9294 -204.814 - 5 77.5347 1461 0 1 112.55 50.7673 -204.739 - 5 80.2782 1460 0 1 112.35 50.6995 -204.662 - 5 207.528 1459 0 1 112.15 50.6381 -204.609 - 5 163.914 1458 0 1 111.95 50.6267 -204.555 - 5 293.598 1457 0 1 111.75 50.6185 -204.496 - 5 67.2907 1160 0 0 112.94 52.1978 -205.85 - 5 80.532 1161 0 0 112.981 52.25 -205.973 - 5 111.092 1162 0 0 112.847 52.45 -206.145 -Number of digits in this event = 68 -Using G4ParticleGun ... -4.44063 LIN -e- -Event: 6 -Number of tracker hits in this event = 86 - 6 229.321 589 10 1 -62.108 75.5394 95.55 - 6 114.729 1277 10 0 -62.1081 75.5392 94.15 - 6 369.85 589 9 1 -62.1116 75.5325 65.55 - 6 107.032 1277 9 0 -62.1114 75.5331 64.15 - 6 130.238 589 8 1 -62.1147 75.5457 35.55 - 6 146.524 1277 8 0 -62.1136 75.5464 34.15 - 6 107.63 589 7 1 -62.0849 75.5545 5.55 - 6 125.747 1277 7 0 -62.0852 75.5575 4.15 - 6 202.631 589 6 1 -62.1115 75.6803 -24.45 - 6 370.514 1278 6 0 -62.1158 75.6847 -25.85 - 6 277.626 589 5 1 -62.2151 75.7509 -54.45 - 6 147.215 1278 5 0 -62.2243 75.757 -55.85 - 6 111.346 588 4 1 -62.436 75.8624 -84.45 - 6 171.179 1279 4 0 -62.4458 75.862 -85.85 - 6 251.608 587 3 1 -62.6452 75.8196 -114.45 - 6 121.77 1278 3 0 -62.6556 75.8018 -115.85 - 6 359.626 585 2 1 -62.8999 75.4082 -144.45 - 6 102.682 1276 2 0 -62.9205 75.4011 -145.85 - 6 119.769 583 1 1 -63.3793 75.2893 -174.45 - 6 107.307 1276 1 0 -63.4135 75.2789 -175.85 - 6 124.116 580 0 1 -64.0421 75.0541 -204.45 - 6 219.362 1274 0 0 -63.9917 75.0206 -205.85 - 6 159.014 1275 0 0 -64.0812 75.0521 -206.012 - 6 171.895 586 2 1 -62.85 75.4262 -144.723 - 6 432.68 588 3 1 -62.45 75.9145 -114.456 - 6 121.316 589 3 1 -62.2496 75.963 -114.459 - 6 65.6186 590 3 1 -62.0498 76.0098 -114.477 - 6 50.3866 591 3 1 -61.85 76.0861 -114.489 - 6 69.7995 592 3 1 -61.65 76.1058 -114.524 - 6 35.3409 593 3 1 -61.4494 76.1088 -114.508 - 6 111.383 1294 3 0 -60.6121 78.8826 -115.85 - 6 144.125 1295 3 0 -60.4949 79.0503 -115.926 - 6 356.443 1296 3 0 -60.2756 79.25 -115.911 - 6 31.9195 609 3 1 -58.1104 78.1289 -114.85 - 6 97.1295 610 3 1 -58.0489 78.0947 -114.839 - 6 7.67883 611 3 1 -57.85 77.9408 -114.845 - 6 183.892 1284 3 0 -55.614 76.9604 -115.85 - 6 237.133 1283 3 0 -55.4454 76.85 -116.032 - 6 224.109 586 3 1 -62.7044 75.8436 -114.45 - 6 10.1765 1282 3 0 -62.8154 76.6265 -115.85 - 6 146.437 579 2 1 -64.0771 88.8689 -144.45 - 6 41.8418 580 2 1 -64.05 89.1474 -144.725 - 6 107.907 1349 2 0 -63.8962 89.9571 -145.85 - 6 45.1369 1350 2 0 -63.8691 90.15 -146.12 - 6 47.5518 610 1 1 -57.9687 105.367 -174.45 - 6 67.4362 609 1 1 -58.0501 105.31 -174.533 - 6 56.0112 608 1 1 -58.2503 105.207 -174.738 - 6 152.346 1421 1 0 -59.2729 104.545 -175.85 - 6 26.399 1420 1 0 -59.6142 104.35 -176.179 - 6 145.191 410 0 1 -98.1232 84.1835 -204.45 - 6 116.58 411 0 1 -97.95 83.9702 -204.579 - 6 109.64 412 0 1 -97.75 83.6206 -204.71 - 6 10.605 1305 0 0 -97.1771 81.0929 -205.85 - 6 51.4193 1304 0 0 -97.1696 81.0497 -205.868 - 6 95.4381 1303 0 0 -97.1557 80.85 -205.97 - 6 55.9234 1302 0 0 -97.1459 80.65 -206.068 - 6 23.0714 1301 0 0 -97.1105 80.45 -206.2 - 6 111.2 1279 5 0 -62.1774 75.8627 -55.85 - 6 166.226 587 4 1 -62.6117 76.1165 -84.45 - 6 140.757 1280 4 0 -62.6628 76.1575 -85.85 - 6 56.306 585 3 1 -62.8688 79.8133 -114.45 - 6 214.045 1299 3 0 -62.7393 79.978 -115.85 - 6 107.043 599 2 1 -60.142 82.8538 -144.45 - 6 159.851 1314 2 0 -60.1591 82.9897 -145.85 - 6 130.331 599 1 1 -60.1151 85.3178 -174.45 - 6 202.027 1327 1 0 -60.338 85.5011 -175.85 - 6 96.5088 575 0 1 -64.979 89.5875 -204.45 - 6 169.199 1349 0 0 -65.0775 89.891 -205.85 - 6 203.573 586 5 1 -62.8378 81.8234 -54.45 - 6 123.055 585 5 1 -62.85 81.8524 -54.5984 - 6 105.635 1311 5 0 -62.9701 82.2845 -55.85 - 6 141.794 581 4 1 -63.8096 89.0215 -84.45 - 6 104.613 1342 4 0 -63.2392 88.5166 -85.85 - 6 94.3016 1341 4 0 -63.155 88.45 -86.0344 - 6 225.861 649 3 1 -50.1795 81.8164 -114.45 - 6 4.60628 1298 3 0 -49.953 79.667 -115.85 - 6 62.2803 1297 3 0 -49.9511 79.6496 -115.861 - 6 138.796 723 2 1 -35.3489 23.2577 -144.45 - 6 136.839 724 2 1 -35.25 23.0647 -144.565 - 6 34.0055 1009 2 0 -34.6321 21.9292 -145.85 - 6 66.8818 1008 2 0 -34.5839 21.85 -145.943 - 6 69.3231 1007 2 0 -34.5307 21.65 -146.133 - 6 8.85171 709 2 0 2.20091 -38.2321 -146.25 - 6 158.514 708 2 0 2.22043 -38.25 -146.232 - 6 197.922 707 2 0 2.45976 -38.45 -146.082 - 6 2.18144 706 2 0 2.8629 -38.65 -146.24 -Number of digits in this event = 44 -Using G4ParticleGun ... -3.73821 LIN -e- -Event: 7 -Number of tracker hits in this event = 32 - 7 122.875 1080 11 1 36.1266 -3.35342 125.55 - 7 131.47 883 11 0 36.1261 -3.35072 124.15 - 7 143.706 1080 10 1 36.1153 -3.29834 95.55 - 7 143.817 883 10 0 36.1123 -3.2938 94.15 - 7 192.515 1079 9 1 36.0457 -3.21004 65.55 - 7 115.16 884 9 0 36.0425 -3.206 64.15 - 7 112.978 1079 8 1 35.985 -3.12187 35.55 - 7 115.6 884 8 0 35.9809 -3.12155 34.15 - 7 124.942 1079 7 1 35.8927 -3.10888 5.55 - 7 142.661 884 7 0 35.8891 -3.10825 4.15 - 7 154.144 1078 6 1 35.8088 -3.10065 -24.45 - 7 116.758 884 6 0 35.8066 -3.10008 -25.85 - 7 155.361 1078 5 1 35.7613 -3.07925 -54.45 - 7 199.136 884 5 0 35.7593 -3.07701 -55.85 - 7 104.258 1078 4 1 35.7204 -3.02624 -84.45 - 7 139.069 885 4 0 35.7216 -3.02324 -85.85 - 7 149.126 1078 3 1 35.7543 -2.96225 -114.45 - 7 138.111 885 3 0 35.7572 -2.95755 -115.85 - 7 116.069 1078 2 1 35.8217 -2.86644 -144.45 - 7 216.71 885 2 0 35.8258 -2.86252 -145.85 - 7 110.014 1079 1 1 35.8999 -2.78764 -174.45 - 7 115.14 886 1 0 35.9045 -2.78753 -175.85 - 7 152.226 1079 0 1 36.0017 -2.78816 -204.45 - 7 137.728 886 0 0 36.0067 -2.78725 -205.85 - 7 187.833 1521 5 1 124.376 -11.6452 -54.85 - 7 16.915 883 5 0 35.7292 -3.25 -56.1917 - 7 10.2143 752 0 0 82.6946 -29.6134 -206.25 - 7 101.462 1078 9 1 35.85 -3.26777 65.4151 - 7 39.2806 1077 9 1 35.65 -3.25317 65.2284 - 7 14.0247 887 9 0 34.9408 -2.48024 64.1499 - 7 282.396 888 9 0 34.9271 -2.4497 64.1118 - 7 129.263 889 9 0 35.1356 -2.24993 63.8619 -Number of digits in this event = 21 -Using G4ParticleGun ... -1.69533 LIN -e- -Event: 8 -Number of tracker hits in this event = 78 - 8 120.957 370 8 1 -105.961 -98.1677 35.55 - 8 257.862 409 8 0 -105.957 -98.1774 34.15 - 8 135.024 371 7 1 -105.892 -98.3652 5.55 - 8 112.593 408 7 0 -105.885 -98.3738 4.15 - 8 119.025 372 6 1 -105.731 -98.5503 -24.45 - 8 132.629 407 6 0 -105.72 -98.5639 -25.85 - 8 94.4698 373 5 1 -105.473 -98.8281 -54.45 - 8 114.117 406 5 0 -105.465 -98.838 -55.85 - 8 131.372 374 4 1 -105.294 -99.032 -84.45 - 8 116.046 405 4 0 -105.286 -99.0371 -85.85 - 8 185.187 374 3 1 -105.169 -99.1105 -114.45 - 8 132.041 405 3 0 -105.161 -99.1025 -115.85 - 8 233.348 375 2 1 -104.991 -98.9643 -144.45 - 8 103.152 405 2 0 -104.979 -98.96 -145.85 - 8 124.331 377 1 1 -104.722 -98.862 -174.45 - 8 101.265 406 1 0 -104.72 -98.861 -175.85 - 8 107.473 377 0 1 -104.731 -98.8521 -204.45 - 8 185.881 406 0 0 -104.733 -98.86 -205.85 - 8 337.489 370 3 1 -106.149 -98.6097 -114.45 - 8 99.3058 369 3 1 -106.15 -98.6077 -114.469 - 8 111.989 408 3 0 -106.214 -98.4836 -115.85 - 8 185.861 364 2 1 -107.256 -96.5225 -144.45 - 8 118.806 417 2 0 -107.46 -96.5856 -145.85 - 8 139.713 347 1 1 -110.746 -96.3978 -174.45 - 8 98.6261 420 1 0 -110.577 -96.1431 -175.85 - 8 116.511 365 0 1 -107.067 -90.4455 -204.45 - 8 105.304 450 0 0 -106.996 -90.05 -205.91 - 8 9.57763 551 0 0 -92.4491 -69.7901 -206.25 - 8 0.108238 442 0 1 -91.5501 -70.6834 -204.85 - 8 63.5121 443 0 1 -91.55 -70.6835 -204.85 - 8 67.6692 544 0 0 -92.1028 -71.1827 -205.85 - 8 42.4882 417 3 0 -105.018 -96.6134 -115.85 - 8 80.8281 418 3 0 -104.982 -96.5499 -115.886 - 8 84.1757 376 3 1 -104.79 -96.5242 -114.85 - 8 101.733 407 3 0 -106.152 -98.5895 -115.851 - 8 522.668 369 2 1 -106.324 -98.3253 -144.45 - 8 153.577 409 2 0 -106.383 -98.2447 -145.85 - 8 127.263 361 1 1 -107.825 -96.5824 -174.45 - 8 102.499 418 1 0 -107.875 -96.5424 -175.85 - 8 224.756 355 0 1 -109.099 -96.1125 -204.45 - 8 117.604 420 0 0 -109.244 -96.0285 -205.85 - 8 250.71 371 5 1 -105.882 -98.1614 -54.45 - 8 525.013 409 5 0 -105.889 -98.1748 -55.85 - 8 136.939 370 4 1 -106.106 -98.4234 -84.45 - 8 330.91 408 4 0 -106.106 -98.4128 -85.85 - 8 119.476 410 3 0 -106.115 -98.1363 -115.85 - 8 131.367 412 2 0 -106.313 -97.7174 -145.85 - 8 137.393 367 1 1 -106.592 -97.3238 -174.45 - 8 134.219 414 1 0 -106.593 -97.3094 -175.85 - 8 116.172 367 0 1 -106.558 -97.044 -204.45 - 8 250.416 415 0 0 -106.631 -97.0236 -205.85 - 8 52.5406 349 4 1 -110.298 -97.2044 -84.45 - 8 80.4569 348 4 1 -110.35 -97.2625 -84.6368 - 8 35.7233 412 4 0 -110.757 -97.7057 -85.85 - 8 162.221 411 4 0 -110.8 -97.75 -85.9795 - 8 204.453 315 3 1 -117.122 -108.362 -114.45 - 8 30.7943 316 3 1 -116.95 -108.491 -114.784 - 8 41.7047 356 3 0 -116.364 -108.896 -115.85 - 8 115.531 355 3 0 -116.289 -108.95 -115.985 - 8 115.407 417 2 1 -96.7341 -120.54 -144.45 - 8 54.2957 418 2 1 -96.55 -120.585 -144.694 - 8 123.629 297 2 0 -95.6825 -120.577 -145.85 - 8 50.4058 520 1 1 -75.975 -117.658 -174.45 - 8 74.0121 521 1 1 -75.8497 -117.568 -174.512 - 8 138.119 522 1 1 -75.65 -117.402 -174.634 - 8 52.2129 523 1 1 -75.45 -117.242 -174.761 - 8 27.6155 320 1 0 -73.6549 -116.008 -175.85 - 8 140.132 321 1 0 -73.5608 -115.95 -175.914 - 8 65.6805 322 1 0 -73.289 -115.75 -176.096 - 8 108.428 376 4 1 -104.912 -98.439 -84.45 - 8 366.324 384 3 1 -103.306 -98.2348 -114.45 - 8 117.755 409 3 0 -103.219 -98.1723 -115.85 - 8 96.28 394 2 1 -101.264 -97.0442 -144.45 - 8 115.528 415 2 0 -101.121 -96.9874 -145.85 - 8 144.235 409 1 1 -98.3436 -95.9733 -174.45 - 8 124.353 421 1 0 -98.2133 -95.9051 -175.85 - 8 132.887 422 0 1 -95.6709 -94.4603 -204.45 - 8 99.0931 428 0 0 -95.4915 -94.4319 -205.85 -Number of digits in this event = 36 -Using G4ParticleGun ... -1.43103 LIN -e- -Event: 9 -Number of tracker hits in this event = 78 - 9 107.296 332 10 1 -113.559 -19.0741 95.55 - 9 117.272 804 10 0 -113.556 -19.0737 94.15 - 9 125.917 333 9 1 -113.54 -19.0556 65.55 - 9 189.966 804 9 0 -113.538 -19.0532 64.15 - 9 242.378 333 8 1 -113.48 -18.9941 35.55 - 9 118.492 805 8 0 -113.475 -18.9901 34.15 - 9 677.21 333 7 1 -113.393 -18.9013 5.55 - 9 267.944 805 7 0 -113.391 -18.8909 4.15 - 9 201.636 333 6 1 -113.379 -18.6463 -24.45 - 9 122.913 807 6 0 -113.378 -18.6331 -25.85 - 9 119.655 333 5 1 -113.372 -18.3611 -54.45 - 9 208.349 808 5 0 -113.37 -18.3508 -55.85 - 9 110.301 334 4 1 -113.283 -18.1409 -84.45 - 9 142.356 809 4 0 -113.298 -18.1094 -85.85 - 9 169.302 332 3 1 -113.597 -17.4184 -114.45 - 9 126.861 813 3 0 -113.601 -17.374 -115.85 - 9 113.791 332 2 1 -113.644 -16.4793 -144.45 - 9 106.409 818 2 0 -113.662 -16.4298 -145.85 - 9 168.617 330 1 1 -114.071 -15.4318 -174.45 - 9 116.71 823 1 0 -114.105 -15.3824 -175.85 - 9 167.511 326 0 1 -114.787 -14.3623 -204.45 - 9 319.54 828 0 0 -114.821 -14.3325 -205.85 - 9 42.2901 332 0 1 -113.632 -17.09 -204.45 - 9 83.515 331 0 1 -113.75 -17.1053 -204.533 - 9 142.565 330 0 1 -113.95 -17.1793 -204.652 - 9 52.0304 329 0 1 -114.15 -17.1771 -204.783 - 9 34.5125 819 0 0 -115.189 -16.2403 -205.85 - 9 13.5135 317 0 1 -116.723 -15.8466 -204.85 - 9 360.314 316 0 1 -116.75 -15.8351 -204.83 - 9 314.548 850 8 0 -139.375 -10.0122 33.75 - 9 240.109 849 8 0 -139.477 -10.0503 33.8571 - 9 89.8854 16 1 1 -176.75 -61.0453 -174.641 - 9 11.3466 17 1 1 -176.75 -61.0486 -174.62 - 9 13.5734 334 8 1 -113.35 -19.0399 35.2018 - 9 82.0438 804 8 0 -113.048 -19.1917 34.15 - 9 26.753 803 8 0 -113.008 -19.25 33.8744 - 9 419.394 334 7 1 -113.35 -19.0441 5.49189 - 9 640.483 335 7 1 -113.15 -19.4194 5.20001 - 9 66.6555 795 7 0 -112.221 -20.8734 4.14973 - 9 112.697 794 7 0 -112.104 -21.05 4.02968 - 9 114.638 793 7 0 -111.968 -21.25 3.93596 - 9 101.972 792 7 0 -111.737 -21.45 3.89474 - 9 189.093 791 7 0 -111.439 -21.6503 3.89693 - 9 146.811 790 7 0 -110.984 -21.8502 3.98277 - 9 14.5685 789 7 0 -110.758 -22.05 4.11879 - 9 89.9292 356 7 1 -108.826 -23.5075 5.15 - 9 66.3035 355 7 1 -108.95 -23.7692 5.1749 - 9 69.609 763 7 0 -111.671 -27.2862 4.15 - 9 66.1256 762 7 0 -111.806 -27.45 4.1271 - 9 51.4979 761 7 0 -111.944 -27.65 4.12509 - 9 267.933 332 7 1 -113.55 -33.6775 5.21278 - 9 77.3761 336 7 1 -112.95 -37.2274 5.34192 - 9 75.088 337 7 1 -112.75 -37.3573 5.34373 - 9 133.03 338 7 1 -112.55 -37.3802 5.35393 - 9 67.7483 339 7 1 -112.35 -37.6204 5.51705 - 9 72.689 340 7 1 -112.15 -37.7061 5.5041 - 9 234.926 341 7 1 -111.95 -37.767 5.38894 - 9 112.372 330 6 1 -114.115 -18.9754 -24.45 - 9 250.728 805 6 0 -114.121 -18.9639 -25.85 - 9 110.072 328 5 1 -114.395 -18.9108 -54.45 - 9 143.608 805 5 0 -114.385 -18.9462 -55.85 - 9 110.638 328 4 1 -114.437 -19.7644 -84.45 - 9 111.645 800 4 0 -114.457 -19.8952 -85.85 - 9 149.886 338 3 1 -112.377 -25.4236 -114.45 - 9 104.727 772 3 0 -112.378 -25.484 -115.85 - 9 125.307 367 2 1 -106.642 -32.0951 -144.45 - 9 3.44018 366 2 1 -106.75 -32.1824 -144.834 - 9 47.2948 738 2 0 -107.082 -32.4148 -145.85 - 9 109.151 737 2 0 -107.139 -32.45 -146.012 - 9 177.186 314 1 1 -117.206 -38.7273 -174.45 - 9 77.5627 313 1 1 -117.35 -38.7469 -174.567 - 9 56.7143 312 1 1 -117.55 -38.7694 -174.725 - 9 250.572 705 1 0 -119.103 -38.9672 -175.85 - 9 108.938 17 0 1 -176.638 -43.2843 -204.45 - 9 20.4862 16 0 1 -176.75 -43.3539 -204.783 - 9 153.022 681 0 0 -177.187 -43.6637 -205.85 - 9 103.255 124 2 1 -155.19 91.4293 -144.45 - 9 380.131 125 2 1 -155.15 91.3916 -144.554 -Number of digits in this event = 35 -Using G4ParticleGun ... -4.89481 LIN -e- -Event: 10 -Number of tracker hits in this event = 221 - 10 139.039 755 11 1 -28.9671 -9.17942 125.55 - 10 110.711 854 11 0 -28.9641 -9.18484 124.15 - 10 479.604 755 10 1 -28.9083 -9.30688 95.55 - 10 112.234 853 10 0 -28.9054 -9.30818 94.15 - 10 272.197 755 9 1 -28.853 -9.34704 65.55 - 10 47.0947 756 9 1 -28.85 -9.34691 65.3176 - 10 123.584 853 9 0 -28.8339 -9.34722 64.15 - 10 127.483 758 8 1 -28.4488 -9.3502 35.55 - 10 267.865 853 8 0 -28.4225 -9.35036 34.15 - 10 105.72 760 7 1 -27.883 -9.36734 5.55 - 10 609.991 853 7 0 -27.8594 -9.37036 4.15 - 10 156.412 763 6 1 -27.3684 -9.41965 -24.45 - 10 524.906 853 6 0 -27.3458 -9.42597 -25.85 - 10 150.276 765 5 1 -26.8958 -9.57475 -54.45 - 10 290.887 852 5 0 -26.8756 -9.58946 -55.85 - 10 268.905 767 4 1 -26.4671 -9.84947 -84.45 - 10 107.067 850 4 0 -26.4449 -9.87085 -85.85 - 10 117.011 770 3 1 -26.0112 -10.3426 -114.45 - 10 113.075 848 3 0 -25.9961 -10.3663 -115.85 - 10 129.103 771 2 1 -25.7041 -10.8396 -144.45 - 10 216.65 845 2 0 -25.6844 -10.8659 -145.85 - 10 115.165 773 1 1 -25.2823 -11.3726 -174.45 - 10 141.073 843 1 0 -25.261 -11.3955 -175.85 - 10 141.263 776 0 1 -24.8159 -11.8832 -204.45 - 10 147.885 840 0 0 -24.7974 -11.9096 -205.85 - 10 245.111 1277 5 1 75.4925 65.602 -54.85 - 10 400.907 757 8 1 -28.4504 -9.34462 35.3825 - 10 220.213 759 1 1 -28.0807 -10.0155 -174.45 - 10 33.3992 760 1 1 -28.05 -10.0336 -174.799 - 10 144.951 849 1 0 -27.9727 -10.0725 -175.85 - 10 101.042 769 0 1 -26.2388 -11.574 -204.45 - 10 135.22 842 0 0 -26.0369 -11.5248 -205.85 - 10 72.9749 980 0 0 -61.7816 16.056 -206.25 - 10 34.9481 1242 0 0 -54.0015 68.5014 -206.25 - 10 509.08 851 1 0 -26.7591 -9.83075 -175.85 - 10 189.278 850 1 0 -26.6574 -9.85 -175.911 - 10 152.607 773 0 1 -25.3884 -6.76024 -204.45 - 10 104.353 772 0 1 -25.4502 -6.71111 -204.539 - 10 20.8863 771 0 1 -25.65 -6.55907 -204.81 - 10 22.2001 870 0 0 -26.5642 -5.88226 -205.85 - 10 135.475 871 0 0 -26.6067 -5.85 -205.897 - 10 36.7681 872 0 0 -26.8513 -5.64994 -206.168 - 10 244.728 854 10 0 -28.972 -9.17205 94.15 - 10 234.574 854 9 0 -29.0481 -9.16737 64.15 - 10 151.7 755 8 1 -29.0038 -9.12056 35.55 - 10 141.821 854 8 0 -29.0027 -9.12522 34.15 - 10 244.909 755 7 1 -28.9814 -9.22974 5.55 - 10 119.685 854 7 0 -28.98 -9.23409 4.15 - 10 151.489 755 6 1 -28.9646 -9.31737 -24.45 - 10 153.349 754 5 1 -29.0683 -9.50949 -54.45 - 10 106.657 753 4 1 -29.3092 -9.5753 -84.45 - 10 112.027 852 4 0 -29.3212 -9.57394 -85.85 - 10 279.021 752 3 1 -29.5243 -9.55012 -114.45 - 10 230.658 852 3 0 -29.5376 -9.54321 -115.85 - 10 138.027 751 2 1 -29.8018 -9.38876 -144.45 - 10 259.749 853 2 0 -29.8175 -9.37197 -145.85 - 10 207.392 749 1 1 -30.1142 -9.03131 -174.45 - 10 166.329 855 1 0 -30.135 -9.01681 -175.85 - 10 93.3246 747 0 1 -30.5396 -8.72993 -204.45 - 10 122.129 856 0 0 -30.5536 -8.70872 -205.85 - 10 177.179 980 7 1 16.1819 -78.3714 5.15 - 10 32.1553 46 0 1 -170.75 14.1423 -204.505 - 10 127.111 800 3 1 -20.05 16.82 -114.838 - 10 95.0357 801 3 1 -19.8496 16.9513 -114.486 - 10 318.495 753 3 1 -29.45 -9.48578 -114.628 - 10 63.7296 754 3 1 -29.25 -9.34894 -114.795 - 10 34.7916 755 3 1 -29.0493 -9.17544 -114.831 - 10 189.216 874 3 0 -25.1526 -5.20932 -115.85 - 10 6.36643 875 3 0 -25.0274 -5.05 -115.852 - 10 75.2827 805 3 1 -18.9986 3.3015 -114.85 - 10 132.389 806 3 1 -18.85 3.55703 -114.818 - 10 117.128 807 3 1 -18.65 3.85419 -114.734 - 10 154.398 808 3 1 -18.45 4.18181 -114.737 - 10 65.9677 809 3 1 -18.25 4.4969 -114.718 - 10 196.414 810 3 1 -18.05 4.76655 -114.678 - 10 60.6989 811 3 1 -17.85 5.123 -114.725 - 10 8.38848 812 3 1 -17.65 5.20756 -114.831 - 10 16.1295 927 3 0 -17.0281 5.62172 -115.85 - 10 89.8351 928 3 0 -17.0028 5.6503 -115.89 - 10 77.2429 929 3 0 -16.8598 5.8501 -116.015 - 10 178.679 930 3 0 -16.6819 6.05017 -116.092 - 10 174.44 931 3 0 -16.21 6.25 -116.101 - 10 121.04 822 3 1 -15.6279 6.57782 -114.85 - 10 307.179 823 3 1 -15.4493 6.61974 -114.612 - 10 102.862 824 3 1 -15.2462 6.58682 -114.45 - 10 98.2977 932 3 0 -15.5797 6.45416 -115.85 - 10 520.473 825 3 1 -14.9081 5.95938 -114.85 - 10 248.77 590 2 0 -60.7787 -61.85 -146.218 - 10 113.528 691 2 1 -41.7035 -10.9079 -144.45 - 10 15.8327 690 2 1 -41.85 -10.7791 -144.786 - 10 73.7642 848 2 0 -42.4921 -10.3558 -145.85 - 10 60.4869 849 2 0 -42.6594 -10.2499 -146.09 - 10 38.3048 588 1 1 -62.3905 -1.06124 -174.45 - 10 135.614 587 1 1 -62.45 -0.995416 -174.512 - 10 133.164 586 1 1 -62.65 -0.844282 -174.712 - 10 112.764 900 1 0 -63.7141 0.0501219 -175.925 - 10 22.2079 901 1 0 -63.9637 0.250521 -176.182 - 10 36.7765 497 0 1 -80.5729 16.0214 -204.45 - 10 285.95 496 0 1 -80.6502 16.0204 -204.594 - 10 74.3334 981 0 0 -81.4735 16.25 -205.959 - 10 82.6337 851 3 0 -29.4914 -9.80299 -115.85 - 10 30.7775 850 3 0 -29.5384 -9.85 -116.144 - 10 146.844 722 2 1 -35.6418 -13.2095 -144.45 - 10 107.718 833 2 0 -35.2647 -13.2838 -145.85 - 10 28.1485 745 1 1 -30.8858 -12.9139 -174.45 - 10 140.446 746 1 1 -30.85 -12.8324 -174.494 - 10 101.084 747 1 1 -30.65 -12.3782 -174.702 - 10 80.1943 748 1 1 -30.4499 -12.0526 -174.753 - 10 20.5641 751 1 1 -29.7227 -11.8493 -174.45 - 10 142.317 752 1 1 -29.6499 -11.8886 -174.521 - 10 80.0542 834 1 0 -29.0126 -13.0669 -175.85 - 10 156.841 833 1 0 -28.9181 -13.25 -176.041 - 10 68.7877 453 1 0 -22.5672 -89.2739 -176.25 - 10 77.5943 452 1 0 -22.6109 -89.45 -176.196 - 10 105.477 451 1 0 -22.7354 -89.65 -176.107 - 10 3.38547 450 1 0 -22.9113 -89.85 -175.862 - 10 86.7598 781 1 1 -23.6899 -90.4873 -174.85 - 10 88.9711 780 1 1 -23.85 -90.6573 -174.591 - 10 65.7155 779 1 1 -24.0501 -90.8009 -174.545 - 10 60.1837 778 1 1 -24.25 -90.8993 -174.509 - 10 90.2556 777 1 1 -24.4501 -90.9849 -174.54 - 10 159.285 776 1 1 -24.65 -91.0405 -174.677 - 10 243.677 775 1 1 -24.85 -91.3887 -174.696 - 10 185.407 774 1 1 -25.05 -91.7909 -174.719 - 10 58.116 759 4 1 -28.25 -9.99872 -84.6136 - 10 45.9979 756 7 1 -28.8499 -9.05656 5.25359 - 10 151.525 855 7 0 -28.5008 -8.95204 4.14985 - 10 143.703 795 6 1 -20.9756 -7.50825 -24.45 - 10 131.21 863 6 0 -20.6645 -7.32203 -25.85 - 10 116.223 835 5 1 -12.9032 -1.77405 -54.4502 - 10 191.646 892 5 0 -12.8138 -1.57168 -55.8503 - 10 117.564 842 4 1 -11.6209 3.34547 -84.45 - 10 118.519 917 4 0 -11.5318 3.54144 -85.85 - 10 37.2443 981 3 0 -14.5846 16.2882 -115.85 - 10 57.044 982 3 0 -14.5755 16.45 -115.876 - 10 81.8604 983 3 0 -14.5727 16.65 -115.905 - 10 49.3985 984 3 0 -14.59 16.851 -115.943 - 10 63.0785 985 3 0 -14.6143 17.0505 -115.989 - 10 59.7327 986 3 0 -14.6465 17.25 -116.049 - 10 73.1313 987 3 0 -14.6826 17.45 -116.125 - 10 29.2281 988 3 0 -14.709 17.65 -116.199 - 10 277.735 783 2 1 -23.2519 73.8067 -144.45 - 10 67.9936 782 2 1 -23.4502 73.1471 -144.733 - 10 19.3268 1252 2 0 -24.2139 70.5293 -145.85 - 10 80.3586 1251 2 0 -24.2382 70.45 -145.866 - 10 54.9658 1250 2 0 -24.2893 70.25 -145.875 - 10 57.7836 1249 2 0 -24.3158 70.05 -145.875 - 10 44.9341 1248 2 0 -24.321 69.85 -145.882 - 10 49.0317 1247 2 0 -24.3085 69.65 -145.901 - 10 44.989 1246 2 0 -24.2766 69.45 -145.914 - 10 69.303 1245 2 0 -24.2448 69.25 -145.911 - 10 52.817 1244 2 0 -24.2311 69.05 -145.901 - 10 62.6096 1243 2 0 -24.2175 68.85 -145.922 - 10 46.5343 1242 2 0 -24.1876 68.65 -145.957 - 10 53.7123 1241 2 0 -24.1604 68.45 -145.999 - 10 50.1032 1240 2 0 -24.1335 68.25 -146.048 - 10 117.637 1239 2 0 -24.1187 68.05 -146.052 - 10 56.4833 1238 2 0 -24.0912 67.8496 -146.064 - 10 60.8953 1237 2 0 -24.0774 67.65 -146.082 - 10 95.938 1236 2 0 -24.0657 67.4498 -146.111 - 10 68.0542 1235 2 0 -24.015 67.25 -146.157 - 10 47.2534 1234 2 0 -23.9677 67.05 -146.197 - 10 51.7821 1233 2 0 -23.968 66.85 -146.217 - 10 7.81475 1232 2 0 -23.969 66.65 -146.244 - 10 42.7879 941 1 0 28.225 8.35573 -175.85 - 10 238.857 942 1 0 28.2581 8.45 -176.13 - 10 165.103 754 9 1 -29.05 -9.169 65.4888 - 10 116.421 754 8 1 -29.1944 -9.2978 35.55 - 10 306.224 753 7 1 -29.3624 -9.35514 5.55 - 10 138.171 752 6 1 -29.6028 -9.39831 -24.45 - 10 107.1 749 5 1 -30.0733 -9.6821 -54.45 - 10 34.2034 851 5 0 -30.0659 -9.65245 -55.85 - 10 179.602 750 4 1 -29.9241 -9.04257 -84.45 - 10 163.041 855 4 0 -29.9101 -9.03008 -85.85 - 10 109.255 856 3 0 -29.6324 -8.82005 -115.85 - 10 167.594 753 2 1 -29.3473 -8.63398 -144.45 - 10 133.76 857 2 0 -29.3357 -8.63254 -145.85 - 10 108.215 755 1 1 -29.0151 -8.58425 -174.45 - 10 190.171 857 1 0 -29.001 -8.5771 -175.85 - 10 117.378 756 0 1 -28.6676 -8.44152 -204.45 - 10 144.021 858 0 0 -28.6524 -8.43732 -205.85 - 10 280.593 535 0 0 127.383 -72.85 -206.211 - 10 112.821 754 2 1 -29.186 -8.98626 -144.451 - 10 39.0481 755 2 1 -29.05 -9.08526 -144.73 - 10 149.55 817 2 0 -20.8396 -16.5312 -146.25 - 10 97.2344 797 2 1 -20.6291 -16.3767 -144.85 - 10 14.7506 789 2 1 -22.2277 -18.9317 -144.85 - 10 102.881 788 2 1 -22.25 -18.9707 -144.837 - 10 125.792 799 2 0 -22.6172 -20.1308 -145.85 - 10 223.718 800 2 0 -22.7755 -20.05 -146.046 - 10 9.06393 792 2 0 -21.3205 -21.45 -145.939 - 10 292.01 751 5 1 -29.8208 -9.41749 -54.45 - 10 234.435 853 5 0 -29.818 -9.35899 -55.85 - 10 161.6 751 4 1 -29.7516 -8.47214 -84.45 - 10 160.747 858 4 0 -29.6919 -8.41413 -85.85 - 10 133.29 756 3 1 -28.7639 -7.10752 -114.45 - 10 170.682 865 3 0 -28.7341 -7.04554 -115.85 - 10 0.380497 758 2 1 -28.25 -5.60206 -144.45 - 10 101.109 759 2 1 -28.25 -5.602 -144.451 - 10 110.455 872 2 0 -28.2206 -5.49942 -145.85 - 10 229.815 761 1 1 -27.8073 -3.36176 -174.45 - 10 133.702 883 1 0 -27.708 -3.31579 -175.85 - 10 133.025 886 0 0 -25.1449 -2.74711 -205.85 - 10 31.2549 941 0 0 -54.8467 8.36516 -206.25 - 10 93.6102 942 0 0 -54.916 8.45032 -206.221 - 10 272.931 943 0 0 -55.1804 8.65 -206.151 - 10 92.211 944 0 0 -55.4097 8.85 -206.176 - 10 173.201 882 1 0 -29.2441 -3.58753 -175.85 - 10 49.1261 881 1 0 -29.2877 -3.65 -175.988 - 10 149.772 854 4 0 -29.8734 -9.23104 -85.85 - 10 118.972 748 3 1 -30.393 -9.31187 -114.45 - 10 133.753 853 3 0 -30.4212 -9.31671 -115.85 - 10 118.183 745 2 1 -30.9656 -9.45471 -144.45 - 10 129.385 852 2 0 -30.9845 -9.47869 -145.85 - 10 100.461 743 1 1 -31.4172 -9.94256 -174.45 - 10 216.21 740 0 1 -31.9568 -10.3525 -204.45 - 10 98.9567 848 0 0 -31.9866 -10.3946 -205.85 - 10 110.938 749 0 1 -30.2316 -9.63327 -204.45 - 10 142.622 852 0 0 -30.2353 -9.64764 -205.85 - 10 74.3293 851 0 0 -30.2357 -9.65 -206.058 - 10 17.6947 994 1 0 -101.235 18.8927 -176.25 -Number of digits in this event = 101 -Using G4ParticleGun ... -3.02703 LIN -e- -Event: 11 -Number of tracker hits in this event = 27 - 11 162.637 729 11 1 -34.203 6.93022 125.55 - 11 153.447 934 11 0 -34.2019 6.9322 124.15 - 11 115.518 729 10 1 -34.1723 6.97364 95.55 - 11 163.978 934 10 0 -34.1688 6.9772 94.15 - 11 144.239 729 9 1 -34.0906 7.05267 65.55 - 11 112.472 935 9 0 -34.0881 7.05443 64.15 - 11 154.2 730 8 1 -34.0337 7.08856 35.55 - 11 106.926 935 8 0 -34.0285 7.09249 34.15 - 11 187.057 730 7 1 -33.8869 7.2379 5.55 - 11 110.448 935 7 0 -33.8893 7.24595 4.15 - 11 207.193 730 6 1 -33.8908 7.42445 -24.45 - 11 111.876 936 6 0 -33.8983 7.42842 -25.85 - 11 128.693 730 5 1 -34.0315 7.52422 -54.45 - 11 96.3575 937 5 0 -34.0167 7.50833 -55.85 - 11 110.008 731 4 1 -33.7372 7.101 -84.45 - 11 67.0197 935 4 0 -33.7232 7.05802 -85.85 - 11 34.2792 934 4 0 -33.7208 7.05 -86.1087 - 11 246.791 733 3 1 -33.3895 6.19384 -114.45 - 11 101.853 930 3 0 -33.3537 6.16553 -115.85 - 11 113.901 737 2 1 -32.5245 5.63139 -144.45 - 11 230.92 927 2 0 -32.4405 5.57355 -145.85 - 11 122.637 747 1 1 -30.5613 4.32331 -174.45 - 11 88.2134 921 1 0 -30.4584 4.26255 -175.85 - 11 29.6732 920 1 0 -30.4371 4.25 -176.141 - 11 155.257 758 0 1 -28.3856 3.03666 -204.45 - 11 120.325 914 0 0 -28.262 2.95293 -205.85 - 11 92.7875 731 6 1 -33.85 7.4899 -24.7135 -Number of digits in this event = 14 -Using G4ParticleGun ... -8.01934 LIN -e- -Event: 12 -Number of tracker hits in this event = 113 - 12 119.777 685 11 1 -42.9836 19.0791 125.55 - 12 134.972 995 11 0 -42.984 19.0781 124.15 - 12 134.768 685 10 1 -42.9935 19.0676 95.55 - 12 143.177 995 10 0 -42.9936 19.0666 94.15 - 12 128.771 685 9 1 -43.0035 19.0528 65.55 - 12 110.893 995 9 0 -43.0035 19.0522 64.15 - 12 117.625 685 8 1 -43.0063 19.0219 35.55 - 12 206.416 994 8 0 -43.0065 19.0196 34.15 - 12 95.9175 685 7 1 -43.005 19.0181 5.55 - 12 112.036 994 7 0 -43.0056 19.0295 4.15 - 12 101.741 685 6 1 -43.0224 19.2865 -24.45 - 12 152.283 996 6 0 -43.0241 19.2974 -25.85 - 12 127.64 685 5 1 -43.047 19.5597 -54.45 - 12 159.958 997 5 0 -43.0494 19.5786 -55.85 - 12 129.389 684 4 1 -43.079 19.9676 -84.45 - 12 135.255 999 4 0 -43.0881 19.9882 -85.85 - 12 137.44 684 3 1 -43.2101 20.3958 -114.45 - 12 161.333 1001 3 0 -43.204 20.4129 -115.85 - 12 158.553 684 2 1 -43.0812 20.7533 -144.45 - 12 127.901 1003 2 0 -43.0727 20.777 -145.85 - 12 230.473 685 1 1 -42.9237 21.3006 -174.45 - 12 106.119 1006 1 0 -42.9 21.3651 -175.85 - 12 103.297 688 0 1 -42.4372 22.642 -204.45 - 12 90.8715 1013 0 0 -42.4153 22.6929 -205.85 - 12 132.762 1076 6 0 -7.62632 35.3646 -26.25 - 12 242.765 1077 6 0 -7.34699 35.45 -26.1322 - 12 518.831 684 1 1 -43.1551 18.7947 -174.45 - 12 199.917 686 1 1 -42.85 17.756 -174.681 - 12 159.017 687 1 1 -42.65 17.5392 -174.726 - 12 179.592 688 1 1 -42.4492 17.3904 -174.727 - 12 69.6386 689 1 1 -42.25 17.1873 -174.736 - 12 96.713 690 1 1 -42.05 17.0385 -174.762 - 12 91.6285 691 1 1 -41.8499 16.864 -174.741 - 12 98.379 692 1 1 -41.65 16.6673 -174.787 - 12 1.42625 947 1 0 -37.6495 9.45629 -175.85 - 12 72.0631 946 1 0 -37.646 9.45 -175.851 - 12 78.4479 945 1 0 -37.5297 9.25 -175.862 - 12 100.158 944 1 0 -37.3751 9.05 -175.897 - 12 46.9255 943 1 0 -37.2225 8.85 -176.086 - 12 116.877 663 1 0 -28.3286 -47.2979 -176.25 - 12 34.1037 662 1 0 -28.137 -47.4501 -175.953 - 12 3.77485 762 1 1 -27.4592 -47.5481 -174.85 - 12 83.5981 763 1 1 -27.45 -47.5492 -174.836 - 12 59.4631 764 1 1 -27.25 -47.5526 -174.659 - 12 169.03 765 1 1 -27.05 -47.568 -174.603 - 12 201.335 766 1 1 -26.85 -47.7921 -174.463 - 12 110.458 767 1 1 -26.65 -48.2147 -174.753 - 12 156.674 768 1 1 -26.45 -48.3484 -174.737 - 12 148.644 769 1 1 -26.25 -48.3939 -174.787 - 12 356.281 993 1 0 -43.2433 18.8293 -175.85 - 12 66.426 678 0 1 -44.4216 19.2316 -204.45 - 12 188.464 679 0 1 -44.25 19.2163 -204.631 - 12 21.1653 680 0 1 -44.05 19.1792 -204.801 - 12 195.871 994 0 0 -42.9571 18.9477 -205.85 - 12 247.468 850 1 0 -109.394 -9.92107 -176.25 - 12 57.5105 851 1 0 -109.613 -9.84999 -176.145 - 12 230.731 684 0 1 -43.1392 18.7277 -204.45 - 12 140.481 993 0 0 -43.1381 18.7151 -205.85 - 12 268.337 684 5 1 -43.0969 18.9893 -54.45 - 12 220.359 994 5 0 -43.1143 18.9637 -55.85 - 12 113.125 683 4 1 -43.3942 18.6118 -84.45 - 12 162.278 992 4 0 -43.4225 18.6196 -85.85 - 12 258.142 680 3 1 -43.9468 19.2142 -114.45 - 12 96.2434 996 3 0 -44.0445 19.3069 -115.85 - 12 99.7428 664 2 1 -47.0846 21.8821 -144.45 - 12 13.2536 1009 2 0 -47.2215 22.0458 -145.85 - 12 155.68 1010 2 0 -47.2251 22.05 -145.887 - 12 99.5734 651 1 1 -49.839 25.2268 -174.45 - 12 113.876 1025 1 0 -49.7398 25.2261 -175.85 - 12 158.871 661 0 1 -47.7262 24.9959 -204.45 - 12 123.836 1024 0 0 -47.6548 24.9153 -205.85 - 12 74.3494 679 3 1 -44.05 19.1377 -114.751 - 12 225.441 682 4 1 -43.6062 19.6005 -84.45 - 12 282.021 998 4 0 -43.5669 19.6543 -85.85 - 12 418.398 686 3 1 -42.7919 20.7894 -114.45 - 12 185.79 1003 3 0 -42.9177 20.7636 -115.85 - 12 148.355 671 2 1 -45.784 20.2077 -144.45 - 12 106.778 1000 2 0 -45.7903 20.0902 -145.85 - 12 4.59118 672 1 1 -45.4508 17.6803 -174.45 - 12 128.828 673 1 1 -45.45 17.6762 -174.475 - 12 35.4371 987 1 0 -45.3879 17.4674 -175.85 - 12 93.7097 986 1 0 -45.3826 17.45 -175.969 - 12 128.313 966 0 0 -43.9985 13.3102 -205.85 - 12 207.384 681 4 1 -43.6501 19.26 -84.5386 - 12 163.842 680 4 1 -43.8504 18.855 -84.6881 - 12 248.498 997 4 0 -44.2526 19.643 -85.8501 - 12 2.64446 996 4 0 -45.0618 19.4499 -86.2446 - 12 154.848 994 3 0 -42.8349 19.0249 -115.85 - 12 106.787 685 2 1 -42.8785 18.9839 -144.45 - 12 123.907 994 2 0 -42.8698 18.9956 -145.85 - 12 123.078 997 1 0 -42.7523 19.5392 -175.85 - 12 400.706 689 0 1 -42.1103 20.2482 -204.45 - 12 126.203 1001 0 0 -42.0585 20.3316 -205.85 - 12 40.6937 411 9 0 14.2703 -97.885 63.7501 - 12 5.30956 737 10 0 123.834 -32.4618 93.75 - 12 274.414 738 10 0 123.847 -32.45 93.7619 - 12 115.103 1525 10 1 125.181 -32.3703 95.15 - 12 133.04 1526 10 1 125.35 -32.278 95.2407 - 12 105.341 735 10 0 126.11 -33.0032 94.1498 - 12 97.847 997 0 0 -42.1314 19.5746 -205.85 - 12 146.017 996 0 0 -42.13 19.45 -206.117 - 12 135.034 995 3 0 -42.8468 19.0736 -115.85 - 12 151.788 683 2 1 -43.4218 19.8539 -144.45 - 12 104.056 998 2 0 -43.4257 19.8254 -145.85 - 12 113.217 683 1 1 -43.4428 18.923 -174.45 - 12 114.107 994 1 0 -43.4361 18.9321 -175.85 - 12 120.153 770 1 0 -49.656 -25.85 -176.14 - 12 128.399 771 1 0 -49.5456 -25.85 -176.075 - 12 135.797 610 1 1 -57.8932 -21.2508 -174.85 - 12 29.1858 611 1 1 -57.85 -21.1104 -174.83 - 12 2.12819 799 1 0 -55.4682 -20.1042 -175.85 - 12 59.8362 622 1 1 -55.6281 -20.6514 -174.85 - 12 83.4959 621 1 1 -55.65 -20.6965 -174.803 -Number of digits in this event = 62 -Using G4ParticleGun ... -2.99595 LIN -e- -Event: 13 -Number of tracker hits in this event = 46 - 13 228.606 938 11 1 7.73396 33.1589 125.55 - 13 120.221 1065 11 0 7.7368 33.1591 124.15 - 13 148.47 938 10 1 7.79781 33.1569 95.55 - 13 216.537 1065 10 0 7.80312 33.1574 94.15 - 13 157.8 939 9 1 7.90901 33.1756 65.55 - 13 217.414 1065 9 0 7.91288 33.1766 64.15 - 13 157.663 939 8 1 7.99651 33.2081 35.55 - 13 137.022 1065 8 0 7.99868 33.211 34.15 - 13 166.938 940 7 1 8.05043 33.263 5.55 - 13 261.447 1066 7 0 8.05193 33.2664 4.15 - 13 123.899 940 6 1 8.0779 33.3324 -24.45 - 13 181.388 1066 6 0 8.08179 33.3356 -25.85 - 13 116.998 940 5 1 8.17062 33.389 -54.45 - 13 129.339 1066 5 0 8.17596 33.3921 -55.85 - 13 95.6105 941 4 1 8.27974 33.4524 -84.45 - 13 116.189 1067 4 0 8.28482 33.458 -85.85 - 13 98.1358 941 3 1 8.38849 33.5731 -114.45 - 13 124.432 1067 3 0 8.39195 33.5783 -115.85 - 13 144.971 942 2 1 8.45063 33.6758 -144.45 - 13 141.562 1068 2 0 8.45604 33.6793 -145.85 - 13 186.853 942 1 1 8.57344 33.7637 -174.45 - 13 114.898 1068 1 0 8.57833 33.767 -175.85 - 13 173.713 943 0 1 8.67462 33.8029 -204.45 - 13 120.575 1068 0 0 8.68088 33.8022 -205.85 - 13 53.1905 801 6 0 147.222 -19.8219 -26.2499 - 13 48.7078 643 6 0 119.797 -51.2637 -26.25 - 13 208.32 938 9 1 7.85 33.2154 65.3511 - 13 145.122 937 9 1 7.65 33.349 65.2125 - 13 19.4009 937 11 1 7.65 33.2212 125.227 - 13 114.205 1067 11 0 7.19815 33.4855 124.15 - 13 76.1933 1488 11 0 -48.9505 117.762 123.75 - 13 66.1867 1489 11 0 -49.0738 117.95 123.809 - 13 104.661 1490 11 0 -49.2172 118.15 123.843 - 13 82.8046 1491 11 0 -49.3361 118.35 123.865 - 13 58.7736 1492 11 0 -49.4087 118.55 123.911 - 13 64.2283 1493 11 0 -49.5098 118.75 123.965 - 13 66.1205 1494 11 0 -49.6314 118.95 124.006 - 13 71.5931 1495 11 0 -49.7416 119.151 124.039 - 13 52.0847 1496 11 0 -49.8301 119.35 124.052 - 13 59.658 1497 11 0 -49.9267 119.55 124.059 - 13 76.8998 1498 11 0 -50.03 119.75 124.089 - 13 161.91 1499 11 0 -50.1247 119.95 124.12 - 13 172.999 1500 11 0 -50.681 120.15 123.981 - 13 76.9187 1588 11 0 -81.7363 137.802 123.75 - 13 236.428 1589 11 0 -81.5546 137.95 123.896 - 13 95.6876 1590 11 0 -80.7634 138.15 123.933 -Number of digits in this event = 26 -Using G4ParticleGun ... -7.12519 LIN -e- -Event: 14 -Number of tracker hits in this event = 47 - 14 115.475 821 11 1 -15.6945 70.6052 125.55 - 14 113.405 1252 11 0 -15.6935 70.6052 124.15 - 14 135.025 821 10 1 -15.6729 70.6055 95.55 - 14 114.312 1252 10 0 -15.6723 70.6054 94.15 - 14 174.477 821 9 1 -15.6629 70.5997 65.55 - 14 116.428 1252 9 0 -15.6627 70.5989 64.15 - 14 135.494 821 8 1 -15.6573 70.582 35.55 - 14 133.775 1252 8 0 -15.6575 70.5812 34.15 - 14 112.074 821 7 1 -15.6646 70.5645 5.55 - 14 99.7969 1252 7 0 -15.6651 70.5646 4.15 - 14 135.026 821 6 1 -15.676 70.5656 -24.45 - 14 106.343 1252 6 0 -15.6757 70.5633 -25.85 - 14 106.216 821 5 1 -15.6713 70.5245 -54.45 - 14 138.654 1252 5 0 -15.6706 70.5237 -55.85 - 14 209.769 821 4 1 -15.6602 70.5062 -84.45 - 14 150.262 1252 4 0 -15.6595 70.5069 -85.85 - 14 108.902 822 3 1 -15.6476 70.52 -114.45 - 14 255.89 1252 3 0 -15.6481 70.5202 -115.85 - 14 120.184 821 2 1 -15.6663 70.5275 -144.45 - 14 132.887 1252 2 0 -15.6656 70.5268 -145.85 - 14 123.656 821 1 1 -15.6555 70.5135 -174.45 - 14 188.325 1252 1 0 -15.6548 70.5119 -175.85 - 14 274.501 822 0 1 -15.6354 70.4784 -204.45 - 14 542.797 1252 0 0 -15.6364 70.4765 -205.85 - 14 50.8441 1253 0 0 -15.6613 70.65 -206.216 - 14 7.87 1052 1 0 157.221 30.6491 -176.25 - 14 486.249 1053 1 0 157.241 30.65 -176.24 - 14 42.9762 1693 1 1 158.851 30.6576 -174.85 - 14 361.447 1694 1 1 158.95 30.6403 -174.755 - 14 141.844 1695 1 1 159.15 30.6373 -174.596 - 14 415.603 1049 1 0 158.253 30.0098 -175.85 - 14 352.992 1048 1 0 157.765 29.8499 -176.017 - 14 85.7982 1050 1 0 158.412 30.0504 -175.882 - 14 250.761 821 3 1 -15.6782 70.5461 -114.45 - 14 243.222 1251 3 0 -15.6381 70.3161 -115.85 - 14 108.58 820 2 1 -16.0317 70.1285 -144.45 - 14 108.433 1250 2 0 -16.033 70.1048 -145.85 - 14 277.005 820 1 1 -15.9959 69.6204 -174.45 - 14 240.049 1247 1 0 -15.9809 69.5905 -175.85 - 14 110.61 1244 0 0 -15.6601 68.9922 -205.85 - 14 22.9636 1368 1 0 -32.8865 93.882 -176.25 - 14 24.2765 1254 1 0 -16.071 70.9795 -175.85 - 14 64.6129 1255 1 0 -16.0866 71.05 -175.902 - 14 22.8509 1256 1 0 -16.1222 71.25 -175.926 - 14 66.4609 819 1 1 -16.2149 72.3763 -174.85 - 14 50.7765 818 1 1 -16.25 72.3616 -174.678 - 14 236.942 822 8 1 -15.65 70.5848 35.3967 -Number of digits in this event = 28 -Using G4ParticleGun ... -5.06681 LIN -e- -Event: 15 -Number of tracker hits in this event = 113 - 15 117.186 836 11 1 -12.8047 55.1279 125.55 - 15 116.814 1175 11 0 -12.8052 55.1281 124.15 - 15 201.576 836 10 1 -12.8173 55.1333 95.55 - 15 103.146 1175 10 0 -12.817 55.1328 94.15 - 15 129.844 836 9 1 -12.8127 55.1287 65.55 - 15 116.486 1175 9 0 -12.8115 55.1272 64.15 - 15 133.732 836 8 1 -12.7906 55.0923 35.55 - 15 104.016 1175 8 0 -12.791 55.0899 34.15 - 15 539.763 836 7 1 -12.7981 55.0374 5.55 - 15 235.981 1174 7 0 -12.7985 55.0341 4.15 - 15 265.365 836 6 1 -12.8339 54.945 -24.45 - 15 98.8724 1174 6 0 -12.8358 54.9419 -25.85 - 15 487.207 835 5 1 -12.8766 54.8808 -54.45 - 15 332.011 1174 5 0 -12.8794 54.8774 -55.85 - 15 206.55 835 4 1 -12.9301 54.8131 -84.45 - 15 130.278 1173 4 0 -12.9309 54.8133 -85.85 - 15 373.534 835 3 1 -12.9416 54.8206 -114.45 - 15 217.923 1173 3 0 -12.9429 54.8203 -115.85 - 15 236.756 835 2 1 -12.9637 54.8134 -144.45 - 15 164.67 1173 2 0 -12.965 54.8115 -145.85 - 15 98.7909 835 1 1 -12.9932 54.7698 -174.45 - 15 132.893 1173 1 0 -12.9963 54.7698 -175.85 - 15 332.899 834 0 1 -13.0769 54.755 -204.45 - 15 126.858 1173 0 0 -13.0806 54.7545 -205.85 - 15 250.453 1172 0 0 -13.0647 54.509 -205.85 - 15 18.1637 1178 7 0 -12.6624 55.8223 4.1498 - 15 130.214 1179 7 0 -12.6549 55.8502 4.1006 - 15 44.0042 1180 7 0 -12.6193 56.0502 3.82172 - 15 8.11991 1762 7 0 16.8388 172.723 3.75 - 15 72.0372 1763 7 0 16.8489 172.75 3.76073 - 15 57.488 1764 7 0 16.9899 172.951 3.89748 - 15 58.5945 1765 7 0 17.0527 173.15 3.94841 - 15 439.642 1766 7 0 17.1526 173.35 3.98396 - 15 279.13 1767 7 0 18.0814 173.55 4.01309 - 15 253.714 1768 7 0 18.6753 173.75 4.1027 - 15 118.607 1175 7 0 -12.794 55.0716 4.15 - 15 105.378 1179 6 0 -12.8466 55.9094 -25.8501 - 15 85.0363 834 5 1 -13.05 56.3579 -54.5733 - 15 248.373 1180 5 0 -13.2351 56.1711 -55.85 - 15 120.815 816 4 1 -16.7627 51.939 -84.45 - 15 76.6991 1157 4 0 -16.6712 51.5331 -85.85 - 15 38.2773 1156 4 0 -16.651 51.4497 -86.1296 - 15 161.119 826 3 1 -14.7329 43.3157 -114.45 - 15 128.598 1115 3 0 -14.7397 43.1104 -115.85 - 15 123.186 826 2 1 -14.7981 38.9155 -144.45 - 15 145.925 1094 2 0 -14.7728 38.9892 -145.85 - 15 115 830 1 1 -13.9665 39.5125 -174.45 - 15 2.26646 1097 1 0 -13.824 39.6488 -175.85 - 15 103.433 1098 1 0 -13.8228 39.65 -175.863 - 15 101.894 847 0 1 -10.5965 43.0743 -204.45 - 15 134.43 1115 0 0 -10.4193 43.1786 -205.85 - 15 127.307 723 13 1 -35.3502 -32.0984 185.15 - 15 106.929 1176 3 0 -13.069 55.4185 -115.85 - 15 135.242 814 2 1 -17.0559 50.7341 -144.45 - 15 23.0606 813 2 1 -17.2501 50.8254 -144.804 - 15 136.035 1155 2 0 -17.8323 51.0754 -145.85 - 15 130.423 720 1 1 -35.8636 54.9236 -174.45 - 15 118.067 1175 1 0 -36.4237 55.1834 -175.85 - 15 10.7783 1176 1 0 -36.57 55.25 -176.202 - 15 75.8824 670 0 1 -46.0223 58.9227 -204.45 - 15 259.626 669 0 1 -46.05 59.0056 -204.707 - 15 241.787 1196 0 0 -46.1274 59.326 -205.85 - 15 61.6597 634 0 1 -53.0808 53.7621 -204.85 - 15 217.301 633 0 1 -53.2501 53.6126 -204.459 - 15 37.7197 632 0 1 -53.45 53.6661 -204.54 - 15 22.9411 668 0 1 -46.25 59.0604 -204.539 - 15 125.928 1178 3 0 -13.0119 55.7862 -115.85 - 15 57.7672 834 2 1 -13.092 59.2471 -144.45 - 15 161.154 1196 2 0 -12.8305 59.3587 -145.85 - 15 133.264 865 1 1 -6.92574 60.6176 -174.451 - 15 93.083 1202 1 0 -7.09727 60.4744 -175.85 - 15 27.033 1201 1 0 -7.12077 60.45 -176.175 - 15 138.752 853 0 1 -9.34778 59.4631 -204.45 - 15 153.946 1203 0 0 1.44543 60.7298 -206.25 - 15 443.221 1204 0 0 1.65668 60.8507 -205.965 - 15 158.789 913 0 1 2.67306 61.3466 -204.85 - 15 154.828 914 0 1 2.85 61.4361 -204.662 - 15 33.2959 915 0 1 3.05 61.5467 -204.471 - 15 33.8721 1212 0 0 2.2072 62.5915 -205.85 - 15 100.73 1213 0 0 2.15594 62.65 -205.924 - 15 36.8027 1214 0 0 1.97657 62.85 -206.176 - 15 57.5842 1206 0 0 8.35788 61.404 -206.25 - 15 136.128 1205 0 0 8.46113 61.2497 -206.13 - 15 106.778 835 6 1 -12.9537 55.0837 -24.45 - 15 145.62 1175 6 0 -12.9628 55.0841 -25.85 - 15 182.582 1176 5 0 -12.896 55.3594 -55.85 - 15 101.051 832 4 1 -13.5453 56.8799 -84.45 - 15 135.683 1184 4 0 -13.6208 56.9812 -85.85 - 15 108.089 823 3 1 -15.3191 59.0704 -114.45 - 15 118.449 1196 3 0 -15.3552 59.2505 -115.85 - 15 171.234 819 2 1 -16.1135 62.8116 -144.45 - 15 143.144 1215 2 0 -16.1302 63.0576 -145.85 - 15 303.085 815 1 1 -16.8603 68.4194 -174.45 - 15 117.238 1243 1 0 -16.851 68.7015 -175.85 - 15 132.401 817 0 1 -16.6432 74.4761 -204.45 - 15 130.725 1273 0 0 -16.6256 74.7191 -205.85 - 15 30.6218 1722 0 1 164.55 -15.7023 -204.708 - 15 25.2031 816 1 1 -16.85 68.4455 -174.512 - 15 89.3148 1177 5 0 -12.8387 55.4501 -56.0144 - 15 79.206 1449 5 0 62.2898 109.956 -56.25 - 15 115.306 1450 5 0 62.4662 110.15 -56.2046 - 15 101.062 1451 5 0 62.7434 110.35 -56.1039 - 15 72.4333 1452 5 0 62.8272 110.55 -55.947 - 15 144.577 1453 5 0 62.8024 110.75 -55.9141 - 15 64.7104 1454 5 0 62.77 110.95 -56.0211 - 15 141.089 1455 5 0 62.6661 111.15 -56.0506 - 15 345.388 1211 5 1 62.4378 111.662 -54.8499 - 15 35.2566 1212 5 1 62.45 111.762 -54.779 - 15 38.3961 474 1 1 -85.1647 18.5133 -174.45 - 15 113.374 836 5 1 -12.8499 55.2711 -54.5541 - 15 79.2655 835 7 1 -12.85 55.192 5.27457 - 15 121.123 1176 7 0 -13.1241 55.4475 4.15 - 15 246.055 1177 7 0 -13.1273 55.45 3.98267 -Number of digits in this event = 60 -Using G4ParticleGun ... -6.90015 LIN -e- -Event: 16 -Number of tracker hits in this event = 35 - 16 103.769 991 11 1 18.4208 -6.19522 125.55 - 16 87.5799 869 11 0 18.4215 -6.19585 124.15 - 16 117.903 991 10 1 18.4409 -6.20785 95.55 - 16 115.225 869 10 0 18.4424 -6.21047 94.15 - 16 135.538 992 9 1 18.4789 -6.2676 65.55 - 16 106.003 868 9 0 18.4792 -6.2699 64.15 - 16 171.447 992 8 1 18.4866 -6.31972 35.55 - 16 145.433 868 8 0 18.4877 -6.32211 34.15 - 16 115.618 992 7 1 18.5113 -6.37492 5.55 - 16 156.638 868 7 0 18.5116 -6.37705 4.15 - 16 130.876 992 6 1 18.5183 -6.4172 -24.45 - 16 154.629 868 6 0 18.5187 -6.41789 -25.85 - 16 113.492 992 5 1 18.5343 -6.42797 -54.45 - 16 140.878 868 5 0 18.5359 -6.42889 -55.85 - 16 146.384 992 4 1 18.5753 -6.44409 -84.45 - 16 152.128 868 4 0 18.5783 -6.44466 -85.85 - 16 111.001 992 3 1 18.6431 -6.45242 -114.45 - 16 136.646 867 3 0 18.6462 -6.45423 -115.85 - 16 102.149 993 2 1 18.7026 -6.49818 -144.45 - 16 126.582 867 2 0 18.703 -6.50034 -145.85 - 16 109.327 993 1 1 18.7126 -6.55098 -174.45 - 16 104.004 867 1 0 18.7148 -6.55669 -175.85 - 16 125.934 993 0 1 18.7578 -6.67272 -204.45 - 16 107.947 866 0 0 18.7587 -6.67927 -205.85 - 16 34.0227 375 4 0 -9.08049 -105.087 -86.25 - 16 52.9125 374 4 0 -9.12382 -105.15 -86.2392 - 16 131.225 1286 1 0 134.89 77.25 -176.138 - 16 28.8369 1583 1 1 136.903 76.4775 -174.85 - 16 177.345 1278 1 0 137.866 75.8027 -175.85 - 16 41.805 471 1 0 -11.1814 -85.65 -176.047 - 16 71.1056 843 1 1 -11.2834 -86.0421 -174.85 - 16 119.562 844 1 1 -11.25 -85.9955 -174.665 - 16 82.528 1215 1 1 63.1417 -23.1234 -174.85 - 16 23.9406 1347 2 1 89.4815 -48.9018 -144.45 - 16 154.86 1346 2 1 89.4497 -48.885 -144.453 -Number of digits in this event = 17 -Using G4ParticleGun ... -9.60557 LIN -e- -Event: 17 -Number of tracker hits in this event = 109 - 17 139.644 298 9 1 -120.42 -6.2282 65.55 - 17 145.676 869 9 0 -120.42 -6.22914 64.15 - 17 125.526 298 8 1 -120.427 -6.24378 35.55 - 17 105.044 869 8 0 -120.428 -6.24526 34.15 - 17 371.149 298 7 1 -120.442 -6.26998 5.55 - 17 227.549 868 7 0 -120.442 -6.27112 4.15 - 17 99.7778 298 6 1 -120.429 -6.29257 -24.45 - 17 129.593 868 6 0 -120.429 -6.2936 -25.85 - 17 134.222 298 5 1 -120.424 -6.31527 -54.45 - 17 99.0437 868 5 0 -120.424 -6.31624 -55.85 - 17 110.147 298 4 1 -120.42 -6.33524 -84.45 - 17 135.385 868 4 0 -120.42 -6.33495 -85.85 - 17 732.295 298 3 1 -120.408 -6.35469 -114.45 - 17 435.89 868 3 0 -120.4 -6.35798 -115.85 - 17 112.219 299 2 1 -120.198 -6.45025 -144.45 - 17 329.71 867 2 0 -120.2 -6.45356 -145.85 - 17 132.467 299 1 1 -120.261 -6.56143 -174.45 - 17 776.173 867 1 0 -120.264 -6.56955 -175.85 - 17 226.796 299 0 1 -120.306 -6.7405 -204.45 - 17 624.401 866 0 0 -120.313 -6.74279 -205.85 - 17 311.004 298 2 1 -120.445 -6.34217 -144.45 - 17 113.39 868 2 0 -120.447 -6.33612 -145.85 - 17 668.896 298 1 1 -120.475 -6.21864 -174.45 - 17 102.238 869 1 0 -120.478 -6.21369 -175.85 - 17 362.812 298 0 1 -120.511 -6.10044 -204.45 - 17 128.431 869 0 0 -120.511 -6.09577 -205.85 - 17 40.9343 297 1 1 -120.55 -6.17577 -174.552 - 17 215.64 870 2 0 -121.842 -5.91038 -145.85 - 17 52.9573 291 2 1 -121.877 -8.52562 -144.85 - 17 222.875 1105 3 0 -95.8808 41.1389 -116.25 - 17 55.8545 423 3 1 -95.4541 40.0698 -114.85 - 17 281.871 424 3 1 -95.35 39.9484 -114.779 - 17 52.9231 835 0 0 -53.019 -12.9508 -206.25 - 17 339.285 834 0 0 -53.0308 -13.0504 -206.17 - 17 139.137 301 0 1 -119.775 -6.78963 -204.45 - 17 129.31 296 0 1 -120.844 -6.37769 -204.45 - 17 388.55 868 0 0 -120.867 -6.3991 -205.85 - 17 212.906 265 7 0 -127.672 -126.98 3.75 - 17 33.5117 137 3 1 -152.55 62.1997 -114.797 - 17 249.538 138 3 1 -152.55 62.3283 -114.57 - 17 141.391 869 7 0 -120.426 -6.18806 4.15 - 17 6.56088 301 6 1 -119.754 -4.82925 -24.45 - 17 93.6439 302 6 1 -119.75 -4.82848 -24.4907 - 17 124.942 876 6 0 -119.618 -4.81236 -25.85 - 17 120.001 314 5 1 -117.255 -5.25188 -54.45 - 17 123.717 874 5 0 -116.92 -5.22949 -55.85 - 17 110.366 355 4 1 -109.098 -5.0691 -84.4508 - 17 143.498 874 4 0 -108.606 -5.14681 -85.85 - 17 110.709 406 3 1 -98.918 -7.05192 -114.45 - 17 12.6032 407 3 1 -98.75 -7.05292 -114.801 - 17 133.358 864 3 0 -98.2107 -7.06133 -115.85 - 17 91.6055 481 2 1 -83.7744 -5.85046 -144.45 - 17 185.716 482 2 1 -83.65 -5.8706 -144.637 - 17 20.2171 592 1 1 -61.5047 -7.4773 -174.45 - 17 79.8261 593 1 1 -61.45 -7.48397 -174.509 - 17 73.9024 594 1 1 -61.25 -7.50771 -174.727 - 17 88.6924 862 1 0 -60.2689 -7.63117 -175.85 - 17 79.0822 861 1 0 -60.1012 -7.65 -176.041 - 17 106.797 728 0 1 -34.4258 -10.4777 -204.45 - 17 48.5066 729 0 1 -34.25 -10.4953 -204.687 - 17 246.352 847 0 0 -33.3774 -10.5708 -205.85 - 17 129.263 1419 8 0 110.594 104.107 33.75 - 17 83.147 1418 8 0 110.909 103.95 33.917 - 17 108.16 1417 8 0 111.102 103.75 33.8918 - 17 295.118 1326 8 0 114.31 85.3571 33.75 - 17 51.8478 1325 8 0 114.429 85.2497 34.0003 - 17 191.218 294 6 1 -121.292 -6.5797 -24.45 - 17 115.689 866 6 0 -121.415 -6.73565 -25.85 - 17 210.262 281 5 1 -123.783 -9.96495 -54.45 - 17 149.595 850 5 0 -123.743 -10.018 -55.8502 - 17 170.251 284 4 1 -123.188 -12.1073 -84.45 - 17 154.181 837 4 0 -123.439 -12.4636 -85.85 - 17 121.744 257 3 1 -128.682 -19.7251 -114.45 - 17 182.098 799 3 0 -128.789 -20.0519 -115.85 - 17 141.223 250 2 1 -129.978 -26.1473 -144.45 - 17 123.803 768 2 0 -130.009 -26.337 -145.85 - 17 122.417 240 1 1 -132.059 -29.2757 -174.45 - 17 20.569 239 1 1 -132.15 -29.3332 -174.759 - 17 110.5 752 1 0 -132.461 -29.5571 -175.85 - 17 0.910008 751 1 0 -132.585 -29.6501 -176.243 - 17 63.2057 184 0 1 -143.209 -38.3382 -204.45 - 17 94.5071 183 0 1 -143.35 -38.4222 -204.614 - 17 20.5533 705 0 0 -144.2 -39.0317 -205.85 - 17 120.689 704 0 0 -144.224 -39.05 -205.885 - 17 231.984 493 3 0 -113.636 -81.3219 -116.25 - 17 204.698 492 3 0 -113.629 -81.45 -116.144 - 17 23.9804 690 3 0 7.69484 -42.031 -116.25 - 17 42.2335 689 3 0 7.74544 -42.05 -116.242 - 17 25.1544 498 3 0 -11.1164 -80.2632 -116.25 - 17 49.3727 715 3 0 29.2849 -36.8837 -116.25 - 17 162.74 282 5 1 -123.75 -10.0106 -54.4844 - 17 84.3307 283 5 1 -123.55 -10.1636 -54.5958 - 17 194.978 284 5 1 -123.35 -10.3022 -54.7079 - 17 7.62291 285 5 1 -123.15 -10.4127 -54.8311 - 17 79.8369 845 5 0 -121.461 -10.9413 -55.85 - 17 103.415 844 5 0 -121.232 -11.05 -56.0037 - 17 22.4709 843 5 0 -120.876 -11.25 -56.216 - 17 140.46 851 5 0 -123.627 -9.71835 -55.8504 - 17 83.1712 852 5 0 -123.612 -9.64998 -56.1164 - 17 2.44812 260 4 1 -128.146 4.77548 -84.45 - 17 192.149 259 4 1 -128.15 4.76713 -84.4539 - 17 114.262 258 4 1 -128.35 4.35522 -84.6597 - 17 63.5701 910 4 0 -129.418 2.24952 -85.85 - 17 81.3341 909 4 0 -129.572 2.05 -85.9638 - 17 73.5877 908 4 0 -129.758 1.85 -86.0761 - 17 22.0361 907 4 0 -129.905 1.65 -86.2074 - 17 10.9632 249 4 1 -130.224 -0.05 -84.4735 - 17 160.717 828 5 0 -128.187 -14.3942 -56.2499 - 17 146.688 867 0 0 -120.501 -6.54961 -205.85 -Number of digits in this event = 59 -Using G4ParticleGun ... -3.20856 LIN -e- -Event: 18 -Number of tracker hits in this event = 29 - 18 117.836 638 11 1 -52.3301 12.8526 125.55 - 18 109.329 963 11 0 -52.3245 12.8499 124.15 - 18 136.361 639 10 1 -52.2049 12.7743 95.55 - 18 113.937 963 10 0 -52.193 12.773 94.15 - 18 107.933 640 9 1 -51.9689 12.7462 65.55 - 18 160.95 963 9 0 -51.9632 12.7435 64.15 - 18 198.425 641 8 1 -51.8394 12.6857 35.55 - 18 152.546 963 8 0 -51.8239 12.6812 34.15 - 18 127.021 642 7 1 -51.4938 12.5851 5.55 - 18 131.778 962 7 0 -51.4729 12.5879 4.15 - 18 59.6742 644 6 1 -51.053 12.6545 -24.45 - 18 59.0469 645 6 1 -51.05 12.6555 -24.6371 - 18 145.568 963 6 0 -51.0305 12.6617 -25.85 - 18 128.432 647 5 1 -50.5708 12.8059 -54.45 - 18 111.188 963 5 0 -50.5484 12.8097 -55.85 - 18 99.8596 649 4 1 -50.0769 12.8773 -84.45 - 18 103.141 964 4 0 -50.0525 12.8874 -85.85 - 18 143.82 653 3 1 -49.4427 13.2637 -114.45 - 18 109.144 966 3 0 -49.4084 13.2859 -115.85 - 18 116.08 656 2 1 -48.693 13.7387 -144.45 - 18 163.963 968 2 0 -48.6568 13.7546 -145.85 - 18 154.919 660 1 1 -47.9166 14.1012 -174.45 - 18 122.856 970 1 0 -47.8773 14.1147 -175.85 - 18 124.666 664 0 1 -47.0839 14.3555 -204.45 - 18 357.694 971 0 0 -47.0459 14.3733 -205.85 - 18 29.2849 970 0 0 -46.9455 14.2499 -205.86 - 18 76.8947 660 0 1 -47.8956 13.3318 -204.85 - 18 157.483 613 0 1 -57.25 -6.39093 -204.849 - 18 106.485 1307 2 1 81.45 0.511808 -144.775 -Number of digits in this event = 17 -Using G4ParticleGun ... -3.87615 LIN -e- -Event: 19 -Number of tracker hits in this event = 29 - 19 110.46 717 11 1 -36.5735 7.88653 125.55 - 19 158.74 939 11 0 -36.5731 7.88667 124.15 - 19 118.073 717 10 1 -36.5645 7.88932 95.55 - 19 131.022 939 10 0 -36.5622 7.88833 94.15 - 19 131.052 717 9 1 -36.5232 7.87053 65.55 - 19 105.198 939 9 0 -36.5203 7.87047 64.15 - 19 171.222 717 8 1 -36.4543 7.86813 35.55 - 19 95.1807 939 8 0 -36.451 7.86759 34.15 - 19 256.282 718 7 1 -36.3826 7.86111 5.55 - 19 115.272 939 7 0 -36.3821 7.85942 4.15 - 19 139.289 718 6 1 -36.3649 7.82888 -24.45 - 19 103.504 938 6 0 -36.3637 7.8274 -25.85 - 19 127.483 718 5 1 -36.3485 7.80825 -54.45 - 19 120.091 938 5 0 -36.3477 7.80725 -55.85 - 19 109.924 718 4 1 -36.334 7.78925 -84.45 - 19 146.237 938 4 0 -36.3306 7.79113 -85.85 - 19 103.314 719 3 1 -36.2495 7.83392 -114.45 - 19 124.766 938 3 0 -36.2404 7.83339 -115.85 - 19 180.453 720 2 1 -36.0453 7.84191 -144.45 - 19 124.513 938 2 0 -36.0359 7.83066 -145.85 - 19 157.746 721 1 1 -35.8177 7.61119 -174.45 - 19 163.225 937 1 0 -35.8132 7.5997 -175.85 - 19 128.033 721 0 1 -35.7227 7.37047 -204.45 - 19 266.604 936 0 0 -35.72 7.35729 -205.85 - 19 102.782 1128 6 1 45.65 -111.209 -24.5604 - 19 61.5148 258 2 1 -128.35 4.3086 -144.604 - 19 450.83 938 0 0 -37.0185 7.79533 -205.85 - 19 236.54 720 0 1 -36.0071 7.809 -204.45 - 19 164.495 937 0 0 -35.9819 7.65 -205.862 -Number of digits in this event = 22 -Using G4ParticleGun ... -7.79148 LIN -e- -Event: 20 -Number of tracker hits in this event = 22 - 20 98.4659 696 8 1 -40.7212 -138.078 35.55 - 20 308.989 210 8 0 -40.7207 -138.077 34.15 - 20 127.683 696 7 1 -40.7125 -138.073 5.55 - 20 116.288 210 7 0 -40.7125 -138.071 4.15 - 20 123.686 696 6 1 -40.7095 -138.049 -24.45 - 20 292.582 210 6 0 -40.7091 -138.049 -25.85 - 20 182.494 696 5 1 -40.6849 -138.062 -54.45 - 20 145.017 210 5 0 -40.6831 -138.063 -55.85 - 20 101.02 697 4 1 -40.6368 -138.072 -84.45 - 20 127.454 210 4 0 -40.635 -138.071 -85.85 - 20 123.06 697 3 1 -40.6104 -138.054 -114.45 - 20 114.561 210 3 0 -40.6097 -138.052 -115.85 - 20 107.395 697 2 1 -40.5984 -138.017 -144.45 - 20 112.329 210 2 0 -40.5944 -138.013 -145.85 - 20 131.193 697 1 1 -40.5088 -137.954 -174.45 - 20 133.466 211 1 0 -40.5015 -137.95 -175.85 - 20 189.451 698 0 1 -40.3572 -137.858 -204.45 - 20 159.132 211 0 0 -40.3453 -137.849 -205.85 - 20 110.769 459 2 0 -125.21 -88.25 -146.248 - 20 8.63455 458 2 0 -125.337 -88.25 -146.09 - 20 32.0517 749 0 1 -30.1518 -140.131 -204.85 - 20 64.6716 515 0 0 -28.3847 -77.05 -206.134 -Number of digits in this event = 14 -Using G4ParticleGun ... -6.52854 LIN -e- -Event: 21 -Number of tracker hits in this event = 53 - 21 248.308 1382 10 1 96.6742 -52.679 95.55 - 21 394.468 636 10 0 96.6729 -52.6792 94.15 - 21 109.958 1382 9 1 96.6469 -52.683 65.55 - 21 125.362 636 9 0 96.6463 -52.6832 64.15 - 21 154.49 1382 8 1 96.6384 -52.6855 35.55 - 21 173.632 636 8 0 96.6385 -52.686 34.15 - 21 101.921 1382 7 1 96.6394 -52.694 5.55 - 21 115.663 636 7 0 96.6397 -52.6946 4.15 - 21 115.191 1382 6 1 96.6508 -52.7038 -24.45 - 21 123.711 636 6 0 96.6494 -52.7059 -25.85 - 21 235.414 1382 5 1 96.6251 -52.7479 -54.45 - 21 133.387 636 5 0 96.6244 -52.7503 -55.85 - 21 191.506 1382 4 1 96.6079 -52.7986 -84.45 - 21 141.289 636 4 0 96.6075 -52.7986 -85.85 - 21 351.674 1382 3 1 96.6002 -52.7934 -114.45 - 21 193.215 636 3 0 96.6001 -52.7919 -115.85 - 21 376.916 1382 2 1 96.5917 -52.7622 -144.45 - 21 252.878 636 2 0 96.5923 -52.7595 -145.85 - 21 113.393 1382 1 1 96.6126 -52.6991 -174.45 - 21 146.88 636 1 0 96.6154 -52.6938 -175.85 - 21 120.373 1382 0 1 96.6662 -52.59 -204.45 - 21 156.353 637 0 0 96.6682 -52.5856 -205.85 - 21 75.0575 579 1 0 137.074 -64.2053 -176.25 - 21 36.3291 1381 2 1 96.55 -52.572 -144.766 - 21 141.212 640 2 0 95.6429 -52.0112 -145.851 - 21 11.6728 635 3 0 96.6781 -52.85 -116.209 - 21 68.4532 610 2 0 96.6798 -57.8708 -145.85 - 21 84.5177 609 2 0 96.6788 -58.05 -146.037 - 21 0.613867 608 2 0 96.6656 -58.25 -146.248 - 21 34.4602 1366 1 1 93.458 -83.4098 -174.45 - 21 101.908 1365 1 1 93.35 -83.5039 -174.521 - 21 71.8105 1364 1 1 93.15 -83.6872 -174.635 - 21 77.0715 1363 1 1 92.9499 -83.8714 -174.73 - 21 49.5891 1362 1 1 92.75 -84.0776 -174.817 - 21 61.3778 461 1 0 89.0453 -87.723 -175.85 - 21 77.5765 460 1 0 88.9169 -87.8501 -175.89 - 21 85.635 459 1 0 88.7076 -88.05 -175.96 - 21 88.9105 458 1 0 88.4928 -88.25 -176.028 - 21 152.806 457 1 0 88.2795 -88.45 -176.094 - 21 95.5556 456 1 0 88.0282 -88.65 -176.183 - 21 29.633 637 3 0 96.6424 -52.4662 -115.85 - 21 79.6039 638 3 0 96.6446 -52.45 -115.944 - 21 107.851 1390 2 1 98.1559 -48.3314 -144.45 - 21 9.32316 660 2 0 98.3625 -47.8645 -145.85 - 21 108.269 661 2 0 98.3691 -47.8499 -145.892 - 21 102.042 1417 1 1 103.665 -37.47 -174.45 - 21 117.938 714 1 0 103.567 -37.198 -175.85 - 21 117.488 1403 0 1 100.863 -32.993 -204.45 - 21 52.1621 736 0 0 101.107 -32.6931 -205.85 - 21 71.5881 737 0 0 101.144 -32.65 -206.059 - 21 72.8228 574 10 0 138.028 -65.1855 93.75 - 21 32.2692 390 10 0 114.209 -102.106 93.7501 - 21 31.6001 389 10 0 114.244 -102.15 93.7657 -Number of digits in this event = 22 -Using G4ParticleGun ... -9.9477 LIN -e- -Event: 22 -Number of tracker hits in this event = 57 - 22 157.421 437 10 1 -92.6248 63.0381 95.55 - 22 114.557 1214 10 0 -92.6251 63.0386 94.15 - 22 163.496 437 9 1 -92.632 63.0473 65.55 - 22 143.108 1214 9 0 -92.6316 63.0474 64.15 - 22 101.425 437 8 1 -92.623 63.0536 35.55 - 22 118.355 1215 8 0 -92.6221 63.0532 34.15 - 22 115.229 437 7 1 -92.6087 63.0499 5.55 - 22 116.361 1215 7 0 -92.6056 63.0559 4.15 - 22 66.0995 437 6 1 -92.5503 63.1672 -24.45 - 22 63.6629 438 6 1 -92.55 63.168 -24.6723 - 22 125.221 1215 6 0 -92.5488 63.1714 -25.85 - 22 124.727 438 5 1 -92.5087 63.2451 -54.45 - 22 86.5352 1215 5 0 -92.5053 63.2495 -55.85 - 22 113.165 1216 5 0 -92.5049 63.25 -56.0099 - 22 505.882 438 4 1 -92.4393 63.3454 -84.45 - 22 102.942 1216 4 0 -92.4352 63.3517 -85.85 - 22 195.924 439 3 1 -92.3326 63.4751 -114.45 - 22 122.281 1217 3 0 -92.3322 63.4814 -115.85 - 22 129.484 439 2 1 -92.324 63.6042 -144.45 - 22 108.973 1217 2 0 -92.3231 63.6075 -145.85 - 22 140.557 439 1 1 -92.2995 63.6825 -174.45 - 22 187.589 1218 1 0 -92.2955 63.6891 -175.85 - 22 118.211 439 0 1 -92.2121 63.8214 -204.45 - 22 99.829 1218 0 0 -92.2035 63.8319 -205.85 - 22 354.242 438 3 1 -92.35 63.6491 -114.67 - 22 140.237 1218 3 0 -92.4836 63.7121 -115.85 - 22 243.055 1214 4 0 -92.5292 63.0016 -85.85 - 22 138.924 1215 3 0 -92.5416 63.0603 -115.85 - 22 285.37 437 2 1 -92.6592 63.1062 -144.45 - 22 139.379 1215 2 0 -92.6633 63.1042 -145.85 - 22 222.587 436 1 1 -92.7831 63.0758 -174.45 - 22 445.454 1215 1 0 -92.7918 63.0721 -175.85 - 22 126.167 435 0 1 -92.9722 63.0034 -204.45 - 22 210.893 1214 0 0 -92.9891 63.014 -205.85 - 22 397.289 438 2 1 -92.5498 63.2332 -144.606 - 22 68.1093 1221 2 0 -92.0568 64.3124 -145.85 - 22 83.205 1222 2 0 -92.0251 64.45 -146.046 - 22 20.3277 531 3 0 -74.8613 -73.65 -116.156 - 22 33.0229 530 3 0 -74.8674 -73.8503 -115.949 - 22 158.489 523 3 1 -75.3018 -73.3182 -114.85 - 22 2.29627 522 3 1 -75.45 -72.9633 -114.459 - 22 227.066 1214 3 0 -92.5149 62.9964 -115.85 - 22 131.578 1214 2 0 -92.5046 63.0028 -145.85 - 22 361.553 438 1 1 -92.5015 62.9551 -174.45 - 22 308.251 1214 1 0 -92.503 62.953 -175.85 - 22 158.285 438 0 1 -92.5301 62.9139 -204.45 - 22 93.6706 1245 5 0 8.70771 69.25 -56.0072 - 22 7.91886 1495 4 0 -104.698 119.299 -86.25 - 22 113.702 1211 2 0 -93.8674 62.3957 -145.85 - 22 95.5839 428 2 1 -94.3518 61.6708 -144.85 - 22 103.415 429 2 1 -94.3497 61.6021 -144.785 - 22 68.5109 1215 4 0 -92.6063 63.05 -85.9902 - 22 133.008 433 0 1 -93.505 65.2534 -204.45 - 22 52.9714 1226 0 0 -93.5067 65.4265 -205.85 - 22 68.6453 1227 0 0 -93.5067 65.45 -206.035 - 22 117.235 436 0 1 -92.7571 62.9461 -204.45 - 22 239.555 1213 0 0 -92.7593 62.8436 -205.85 -Number of digits in this event = 33 -Using G4ParticleGun ... -5.31346 LIN -e- -Event: 23 -Number of tracker hits in this event = 94 - 23 144.989 563 10 1 -67.4112 89.2786 95.55 - 23 86.6363 1346 10 0 -67.4103 89.2779 94.15 - 23 363.572 563 9 1 -67.3948 89.2649 65.55 - 23 125.422 1346 9 0 -67.3938 89.2647 64.15 - 23 129.866 563 8 1 -67.3739 89.2661 35.55 - 23 127.654 1346 8 0 -67.3739 89.2658 34.15 - 23 646.041 563 7 1 -67.3795 89.2575 5.55 - 23 238.043 1346 7 0 -67.3805 89.2571 4.15 - 23 252.892 563 6 1 -67.39 89.2483 -24.45 - 23 220.199 1345 6 0 -67.392 89.247 -25.85 - 23 280.331 563 5 1 -67.4403 89.2284 -54.45 - 23 111.283 1345 5 0 -67.4434 89.2286 -55.85 - 23 121.792 562 4 1 -67.5171 89.227 -84.45 - 23 116.024 1345 4 0 -67.5248 89.2262 -85.85 - 23 118.489 561 3 1 -67.68 89.2152 -114.45 - 23 124.848 1345 3 0 -67.6876 89.2123 -115.85 - 23 108.715 561 2 1 -67.8461 89.167 -144.45 - 23 128.159 1345 2 0 -67.8553 89.1663 -145.85 - 23 124.592 560 1 1 -68.0444 89.164 -174.45 - 23 534.287 1345 1 0 -68.0521 89.1613 -175.85 - 23 189.07 559 0 1 -68.2102 89.1235 -204.45 - 23 360.922 1345 0 0 -68.2138 89.1218 -205.85 - 23 39.1608 725 9 0 -19.8071 -34.9838 63.75 - 23 206.85 724 9 0 -19.8348 -35.0504 63.9046 - 23 12.227 1699 12 1 159.968 109.922 155.15 - 23 73.1202 1307 5 0 -4.09912 81.5693 -56.25 - 23 138.823 1306 5 0 -3.94527 81.45 -56.187 - 23 125.577 1305 5 0 -3.8081 81.25 -56.0847 - 23 107.521 1304 5 0 -3.79842 81.05 -55.9369 - 23 234.483 1303 5 0 -3.85558 80.85 -55.9042 - 23 245.296 561 1 1 -67.7065 89.2305 -174.45 - 23 159.267 563 0 1 -67.4372 89.2718 -204.45 - 23 44.2292 241 13 1 -131.831 129.184 185.15 - 23 118.268 1270 2 0 -141.722 74.1339 -146.25 - 23 83.5984 186 2 1 -142.773 73.7337 -144.85 - 23 107.1 185 2 1 -142.95 73.67 -144.672 - 23 63.2989 184 2 1 -143.15 73.5967 -144.502 - 23 68.0002 183 2 1 -143.35 73.6332 -144.462 - 23 54.4506 182 2 1 -143.55 73.6448 -144.505 - 23 51.3232 181 2 1 -143.75 73.6145 -144.508 - 23 91.2035 180 2 1 -143.95 73.5323 -144.499 - 23 65.4545 179 2 1 -144.15 73.4421 -144.508 - 23 62.165 178 2 1 -144.35 73.3137 -144.522 - 23 75.2354 177 2 1 -144.55 73.2206 -144.523 - 23 476.325 176 2 1 -144.75 73.1103 -144.512 - 23 138.975 175 2 1 -144.95 72.6193 -144.574 - 23 80.2861 1456 1 0 -77.6736 111.363 -176.25 - 23 141.889 1457 1 0 -77.8795 111.55 -176.241 - 23 48.0908 1458 1 0 -77.8671 111.75 -175.957 - 23 285.743 512 1 1 -77.5007 112.686 -174.85 - 23 121.635 560 0 1 -67.8981 89.1507 -204.45 - 23 79.0982 1344 7 0 -67.0208 88.9631 4.15 - 23 83.5081 1343 7 0 -66.924 88.8496 3.95391 - 23 12.506 997 7 0 -52.999 19.4979 3.75011 - 23 72.252 996 7 0 -52.998 19.4496 3.80344 - 23 210.831 995 7 0 -52.885 19.25 3.97186 - 23 192.668 634 7 1 -53.0919 18.9646 5.15 - 23 183.326 635 7 1 -53.05 18.5334 5.45082 - 23 82.2326 990 7 0 -53.2987 18.1768 4.15 - 23 96.2228 989 7 0 -53.3592 18.0499 4.06098 - 23 231.676 988 7 0 -53.3223 17.85 4.00153 - 23 127.796 1345 7 0 -67.384 89.2454 4.15 - 23 173.722 1344 5 0 -67.3797 88.9827 -55.85 - 23 112.724 565 4 1 -66.904 88.8337 -84.45 - 23 105.742 1343 4 0 -66.8778 88.7984 -85.85 - 23 247.893 568 3 1 -66.354 88.0053 -114.45 - 23 106.904 1339 3 0 -66.3286 88.0086 -115.85 - 23 275.908 570 2 1 -65.9557 88.1592 -144.45 - 23 301.666 1340 2 0 -65.9086 88.1559 -145.85 - 23 113.474 576 1 1 -64.6896 88.2941 -174.45 - 23 156.138 1341 1 0 -64.623 88.3679 -175.85 - 23 111.239 583 0 1 -63.3452 89.7516 -204.45 - 23 106.348 1348 0 0 -63.3086 89.82 -205.85 - 23 84.0403 569 2 1 -66.05 88.0524 -144.729 - 23 79.9306 1336 2 0 -66.1657 87.3797 -145.85 - 23 21.7916 1335 2 0 -66.1366 87.25 -146.181 - 23 56.4548 542 0 1 -71.5305 133.081 -204.85 - 23 134.278 578 6 1 -64.3479 91.2804 -24.45 - 23 190.92 1356 6 0 -64.1967 91.3973 -25.8503 - 23 109.496 594 5 1 -61.2007 94.0922 -54.45 - 23 133.528 1370 5 0 -61.0488 94.2651 -55.85 - 23 163.49 610 4 1 -57.9423 97.5153 -84.4501 - 23 129.841 1387 4 0 -57.7505 97.6759 -85.8502 - 23 161.182 629 3 1 -54.1431 101.137 -114.45 - 23 149.98 1405 3 0 -53.8861 101.28 -115.85 - 23 97.7774 657 2 1 -48.4915 104.022 -144.451 - 23 25.5477 658 2 1 -48.45 104.062 -144.753 - 23 110.874 1420 2 0 -48.2891 104.204 -145.85 - 23 74.3554 680 1 1 -43.8798 108.024 -174.45 - 23 68.2457 681 1 1 -43.85 108.057 -174.688 - 23 217.696 1440 1 0 -43.712 108.219 -175.85 - 23 97.2938 699 0 1 -40.232 112.114 -204.45 - 23 113.954 1460 0 0 -40.0772 112.275 -205.85 - 23 161.645 562 7 1 -67.45 89.3525 5.35161 -Number of digits in this event = 51 -Using G4ParticleGun ... -1.82217 LIN -e- -Event: 24 -Number of tracker hits in this event = 144 - 24 314.9 1259 10 1 71.9338 -71.2993 95.55 - 24 108.505 543 10 0 71.9421 -71.3147 94.15 - 24 118.33 1261 9 1 72.3128 -71.3133 65.55 - 24 104.72 543 9 0 72.3623 -71.2845 64.15 - 24 103.134 1266 8 1 73.3952 -70.5426 35.55 - 24 105.11 548 8 0 73.5049 -70.4181 34.15 - 24 59.7605 1278 7 1 75.8316 -68.0851 5.55 - 24 56.2382 1279 7 1 75.85 -68.0578 5.3263 - 24 175.038 560 7 0 75.946 -67.9204 4.15 - 24 129.988 1289 6 1 78.021 -64.8418 -24.45 - 24 109.888 576 6 0 78.1209 -64.6987 -25.85 - 24 117.282 1299 5 1 79.9338 -61.8078 -54.45 - 24 102.408 591 5 0 80.1002 -61.6795 -55.85 - 24 21.5811 592 5 0 80.1391 -61.65 -56.1656 - 24 110.281 1317 4 1 83.5018 -59.1311 -84.45 - 24 151.976 605 4 0 83.6756 -58.9537 -85.8502 - 24 111.661 1335 3 1 87.18 -55.5388 -114.45 - 24 117.746 623 3 0 87.3075 -55.393 -115.85 - 24 99.3547 1351 2 1 90.3816 -52.3996 -144.45 - 24 104.988 638 2 0 90.5733 -52.2867 -145.85 - 24 82.549 1374 1 1 95.1007 -50.2798 -174.451 - 24 21.5293 1375 1 1 95.15 -50.2641 -174.755 - 24 112.157 649 1 0 95.3296 -50.198 -175.85 - 24 120.452 1399 0 1 100.063 -48.156 -204.45 - 24 13.0205 660 0 0 100.228 -47.8584 -205.85 - 24 143.646 661 0 0 100.233 -47.8499 -205.89 - 24 59.483 1311 6 1 82.3172 -98.5218 -24.85 - 24 130.329 1290 6 1 78.05 -64.8161 -24.7375 - 24 212.91 1258 8 1 71.8114 -71.3586 35.55 - 24 227.336 543 8 0 71.7931 -71.3504 34.15 - 24 195.781 1256 7 1 71.3758 -71.1972 5.55 - 24 115.938 544 7 0 71.3553 -71.1907 4.15 - 24 120.066 1254 6 1 70.8863 -71.0416 -24.45 - 24 116.714 545 6 0 70.8701 -71.0359 -25.85 - 24 118.639 1252 5 1 70.4887 -70.9246 -54.45 - 24 171.06 545 5 0 70.4719 -70.9156 -55.85 - 24 123.681 1250 4 1 70.0976 -70.8054 -84.45 - 24 484.97 546 4 0 70.0781 -70.7942 -85.85 - 24 39.4606 1248 3 1 69.6528 -70.5106 -114.45 - 24 69.8471 1247 3 1 69.65 -70.5093 -114.597 - 24 121.128 547 3 0 69.6267 -70.4971 -115.85 - 24 98.3062 1245 2 1 69.075 -70.2887 -144.45 - 24 117.054 548 2 0 69.0358 -70.2678 -145.85 - 24 91.0558 1241 1 1 68.2582 -69.8265 -174.45 - 24 34.9574 1240 1 1 68.25 -69.8218 -174.75 - 24 127.128 551 1 0 68.2199 -69.8058 -175.85 - 24 121.195 1236 0 1 67.4314 -69.3624 -204.45 - 24 148.99 553 0 0 67.4067 -69.3511 -205.85 - 24 262.431 1237 0 1 67.4501 -69.3476 -204.46 - 24 282.883 1238 0 1 67.65 -69.242 -204.487 - 24 258.087 547 4 0 70.3996 -70.65 -85.927 - 24 65.1801 530 6 0 72.9374 -73.9928 -26.2497 - 24 95.6109 529 6 0 72.9551 -74.05 -26.0161 - 24 30.6779 528 6 0 72.9506 -74.25 -25.8964 - 24 216.707 1262 6 1 72.5252 -76.0279 -24.8499 - 24 205.665 1261 6 1 72.4499 -76.7737 -24.5922 - 24 85.6521 1260 6 1 72.2499 -77.3507 -24.4792 - 24 125.452 1259 6 1 72.0497 -77.1169 -24.5504 - 24 61.7603 1258 6 1 71.85 -76.8457 -24.5487 - 24 391.816 1257 6 1 71.65 -76.7522 -24.6211 - 24 305.72 1256 6 1 71.45 -76.6131 -24.6747 - 24 291.894 1106 9 0 171.692 41.39 63.75 - 24 39.3936 1259 8 1 71.9547 -71.3571 35.55 - 24 118.496 1260 8 1 72.05 -71.3467 35.4316 - 24 17.9412 1261 8 1 72.25 -71.3425 35.1962 - 24 177.906 542 8 0 73.064 -71.451 34.1499 - 24 59.2425 1386 7 1 97.51 -70.9885 5.55 - 24 81.891 1385 7 1 97.35 -70.8846 5.51528 - 24 69.1721 1384 7 1 97.15 -70.7058 5.45842 - 24 90.6751 1383 7 1 96.9497 -70.5089 5.42406 - 24 89.201 1382 7 1 96.75 -70.3084 5.41051 - 24 120.66 1381 7 1 96.5499 -70.0891 5.40838 - 24 130.21 1380 7 1 96.35 -69.748 5.42635 - 24 146.682 1379 7 1 96.1499 -69.429 5.44807 - 24 117.268 1378 7 1 95.95 -69.1318 5.48168 - 24 113.031 1377 7 1 95.75 -68.8562 5.51502 - 24 250.041 501 8 0 82.2368 -79.6595 33.75 - 24 39.1871 1307 8 1 81.503 -80.2949 35.1504 - 24 156.856 1306 8 1 81.45 -80.357 35.2442 - 24 276.383 1305 8 1 81.2499 -80.7208 35.5004 - 24 16.3852 485 8 0 80.7333 -82.9652 34.15 - 24 55.4845 484 8 0 80.7157 -83.05 34.1272 - 24 44.7858 483 8 0 80.6625 -83.25 34.0854 - 24 46.5175 482 8 0 80.588 -83.45 34.0726 - 24 59.0795 481 8 0 80.5212 -83.65 34.0521 - 24 101.106 480 8 0 80.4046 -83.8502 34.0597 - 24 94.2626 479 8 0 80.1926 -84.0517 34.0954 - 24 66.8667 478 8 0 79.9764 -84.2501 34.1216 - 24 100.891 477 8 0 79.8461 -84.4507 34.1369 - 24 100.445 476 8 0 79.691 -84.6502 34.0922 - 24 74.3876 475 8 0 79.4887 -84.85 33.9987 - 24 51.7817 474 8 0 79.299 -85.05 33.9393 - 24 63.9986 473 8 0 79.1644 -85.25 33.8975 - 24 59.3866 472 8 0 79.1555 -85.45 33.8952 - 24 87.3426 471 8 0 79.0712 -85.65 33.9395 - 24 67.1334 470 8 0 78.8746 -85.85 34.0378 - 24 78.2112 469 8 0 78.7239 -86.0501 34.1094 - 24 16.8947 1274 8 1 74.911 -88.8406 35.15 - 24 56.99 1273 8 1 74.85 -88.8872 35.169 - 24 103.582 1272 8 1 74.6491 -89.0179 35.2382 - 24 65.9498 1271 8 1 74.4491 -89.045 35.5408 - 24 99.8625 1376 7 1 95.55 -68.5872 5.44195 - 24 73.6806 1375 7 1 95.35 -68.4495 5.3518 - 24 97.2017 1374 7 1 95.1499 -68.3352 5.28985 - 24 38.7094 1373 7 1 94.95 -68.0876 5.16804 - 24 67.0522 565 7 0 93.4501 -66.9156 4.14997 - 24 8.04837 566 7 0 93.3291 -66.85 4.13159 - 24 7.52464 1355 7 1 91.1748 -67.4325 5.15 - 24 127.355 1354 7 1 91.15 -67.4368 5.15915 - 24 115.581 1353 7 1 90.95 -67.1933 5.23418 - 24 292.559 1352 7 1 90.75 -67.2839 5.36665 - 24 119.682 1257 7 1 71.5607 -71.3903 5.55 - 24 109.987 543 7 0 71.5495 -71.3918 4.15 - 24 145.222 542 6 0 71.3214 -71.4602 -25.85 - 24 189.818 1254 5 1 71.0097 -71.499 -54.45 - 24 118.799 542 5 0 70.9932 -71.5015 -55.85 - 24 136.648 1253 4 1 70.6633 -71.6206 -84.45 - 24 103.397 542 4 0 70.6584 -71.6331 -85.85 - 24 199.75 1252 3 1 70.555 -71.9017 -114.45 - 24 163.988 540 3 0 70.5461 -71.9086 -115.85 - 24 100.506 1251 2 1 70.3602 -72.0258 -144.45 - 24 225.295 540 2 0 70.3466 -72.0354 -145.85 - 24 210.32 1250 1 1 70.073 -72.1726 -174.45 - 24 130.614 539 1 0 70.0663 -72.1828 -175.85 - 24 381.068 1249 0 1 69.9196 -72.3662 -204.45 - 24 475.541 538 0 0 69.9081 -72.38 -205.85 - 24 313.866 541 0 0 71.0731 -71.8109 -205.989 - 24 76.0776 542 0 0 70.3366 -71.65 -206.123 - 24 172.256 543 0 0 70.1791 -71.45 -206.1 - 24 41.7463 544 0 0 69.8361 -71.2498 -205.911 - 24 83.4926 1244 0 1 69.0383 -70.9247 -204.85 - 24 20.1129 1243 0 1 68.85 -70.8776 -204.526 - 24 161.817 1242 0 1 68.6317 -70.8463 -204.45 - 24 132.936 549 0 0 69.5497 -70.1206 -205.85 - 24 56.8586 550 0 0 69.671 -70.05 -205.961 - 24 71.6629 551 0 0 69.764 -69.8499 -206.004 - 24 95.2094 552 0 0 69.9087 -69.65 -205.9 - 24 59.9339 1254 0 1 70.9786 -68.0164 -204.85 - 24 6.05831 570 0 0 72.0264 -65.8678 -205.85 - 24 41.0145 571 0 0 72.0371 -65.85 -205.86 - 24 0.782224 1270 0 1 74.2496 -63.7601 -204.85 - 24 121.431 1271 0 1 74.2501 -63.7597 -204.85 - 24 75.0033 581 0 0 73.4571 -63.7866 -205.85 - 24 137.717 1259 0 1 72.0172 -62.3491 -204.85 -Number of digits in this event = 54 -Using G4ParticleGun ... -9.80946 LIN -e- -Event: 25 -Number of tracker hits in this event = 82 - 25 103.976 976 11 1 15.3923 32.8837 125.55 - 25 129.064 1064 11 0 15.3922 32.8831 124.15 - 25 210.64 976 10 1 15.3888 32.8674 95.55 - 25 129.177 1064 10 0 15.3873 32.8677 94.15 - 25 206.446 976 9 1 15.3552 32.8715 65.55 - 25 125.546 1064 9 0 15.3537 32.872 64.15 - 25 235.412 976 8 1 15.3239 32.8814 35.55 - 25 122.347 1064 8 0 15.3227 32.8817 34.15 - 25 118.456 976 7 1 15.3003 32.8867 5.55 - 25 112.952 1064 7 0 15.2996 32.8866 4.15 - 25 123.473 976 6 1 15.2856 32.8833 -24.45 - 25 117.054 1064 6 0 15.2852 32.883 -25.85 - 25 424.164 976 5 1 15.2802 32.8729 -54.45 - 25 110.527 1064 5 0 15.2806 32.8727 -55.85 - 25 138.681 976 4 1 15.2961 32.8697 -84.45 - 25 94.2861 1064 4 0 15.297 32.8681 -85.85 - 25 214.846 976 3 1 15.3117 32.8327 -114.45 - 25 169.51 1063 3 0 15.3118 32.8316 -115.85 - 25 91.2429 976 2 1 15.3148 32.82 -144.45 - 25 203.924 1063 2 0 15.3178 32.8185 -145.85 - 25 112.383 976 1 1 15.4072 32.7986 -174.45 - 25 117.891 1063 1 0 15.4286 32.7948 -175.85 - 25 119.795 979 0 1 15.9103 32.697 -204.45 - 25 424.265 1063 0 0 15.9347 32.6939 -205.85 - 25 49.2618 1165 0 0 -2.25626 53.205 -206.25 - 25 228.008 1166 0 0 -2.30698 53.25 -206.096 - 25 107.65 884 0 1 -3.17361 53.7849 -204.85 - 25 232.932 883 0 1 -3.25034 53.8582 -204.739 - 25 17.2088 882 0 1 -3.45006 54.1114 -204.489 - 25 91.1513 885 0 1 -3.04855 54.0812 -204.589 - 25 149.916 1169 0 0 -3.64722 53.9407 -205.85 - 25 79.6315 1168 0 0 -3.7813 53.85 -205.992 - 25 64.451 1170 0 0 -4.0746 54.05 -206.162 - 25 444.377 1171 0 0 -4.1605 54.2501 -206.11 - 25 80.5139 890 0 1 -1.9396 53.252 -204.85 - 25 165.477 891 0 1 -1.84983 53.2078 -204.742 - 25 72.1277 185 4 1 -143.001 95.766 -84.85 - 25 3.98868 1437 1 0 4.15987 107.55 -175.975 - 25 151.759 593 9 0 -61.5686 -61.2964 63.75 - 25 128.945 592 9 1 -61.5613 -61.598 65.15 - 25 312.363 976 0 1 15.376 32.7123 -204.45 - 25 255.96 1063 5 0 15.8236 32.741 -55.8503 - 25 221.493 1035 4 1 27.0796 27.7424 -84.45 - 25 55.1836 1027 4 0 27.669 25.6428 -85.8505 - 25 79.9711 1026 4 0 27.7654 25.45 -85.9795 - 25 98.0494 1025 4 0 27.9018 25.2499 -86.1034 - 25 31.6457 1141 3 1 48.4111 -3.79649 -114.45 - 25 97.8065 1142 3 1 48.45 -3.78676 -114.521 - 25 12.1986 1143 3 1 48.6503 -3.78711 -114.81 - 25 228.498 879 3 0 49.5636 -4.0511 -115.85 - 25 24.3788 878 3 0 50.2022 -4.25009 -116.238 - 25 80.2983 1007 3 0 169.386 21.5033 -116.25 - 25 88.2643 1008 3 0 169.515 21.6505 -116.08 - 25 17.5089 1009 3 0 169.738 21.8504 -115.888 - 25 49.5748 1755 3 1 171.223 23.0561 -114.85 - 25 110.728 1756 3 1 171.35 23.1684 -114.723 - 25 60.016 996 3 0 172.788 19.3818 -115.85 - 25 135.864 995 3 0 172.794 19.25 -115.891 - 25 125.175 975 4 1 15.0945 31.5403 -84.4502 - 25 64.9248 1056 4 0 15.0787 31.2956 -85.85 - 25 128.785 1055 4 0 15.0798 31.25 -86.1179 - 25 206.674 1033 3 0 15.2377 26.7939 -115.85 - 25 186.765 964 2 1 12.9341 16.5897 -144.45 - 25 20.1836 980 2 0 12.8371 16.0825 -145.85 - 25 160.589 979 2 0 12.8301 16.05 -145.942 - 25 98.9205 955 1 1 11.0612 5.60906 -174.45 - 25 192.378 954 1 1 11.05 5.59525 -174.515 - 25 142.278 925 1 0 10.8557 5.24418 -175.85 - 25 145.161 934 0 1 6.86536 -4.63656 -204.45 - 25 45.6809 873 0 0 6.86485 -5.38058 -205.85 - 25 119.193 872 0 0 6.86334 -5.45 -205.975 - 25 0.248967 922 1 0 10.7801 4.45133 -175.85 - 25 96.5371 921 1 0 10.7797 4.45 -175.852 - 25 69.671 920 1 0 10.7279 4.25 -176.059 - 25 12.7492 919 1 0 10.666 4.05 -176.226 - 25 57.5584 877 0 1 -4.53403 -32.5211 -204.45 - 25 101.18 876 0 1 -4.65 -32.4969 -204.616 - 25 118.883 740 0 0 -5.72717 -31.9919 -205.85 - 25 45.5083 741 0 0 -5.97293 -31.85 -206.123 - 25 4.24122 957 1 1 11.45 5.76365 -174.52 - 25 98.4498 1020 3 0 19.2753 24.096 -116.25 - 25 126.527 996 3 1 19.3459 24.2809 -114.85 -Number of digits in this event = 38 -Using G4ParticleGun ... -5.22763 LIN -e- -Event: 26 -Number of tracker hits in this event = 48 - 26 131.169 869 10 1 -6.05155 -92.4562 95.55 - 26 129.088 438 10 0 -6.05055 -92.4568 94.15 - 26 107.57 870 9 1 -6.02835 -92.4639 65.55 - 26 106.516 438 9 0 -6.02674 -92.4636 64.15 - 26 142.709 870 8 1 -5.98751 -92.4621 35.55 - 26 105.761 438 8 0 -5.98598 -92.4629 34.15 - 26 177.505 870 7 1 -5.96099 -92.4743 5.55 - 26 118.7 438 7 0 -5.96101 -92.4753 4.15 - 26 247.567 870 6 1 -5.95835 -92.4963 -24.45 - 26 195.438 438 6 0 -5.95666 -92.4971 -25.85 - 26 146.624 870 5 1 -5.92105 -92.5205 -54.45 - 26 144.384 438 5 0 -5.91821 -92.5224 -55.85 - 26 113.552 870 4 1 -5.85806 -92.5628 -84.45 - 26 98.5559 437 4 0 -5.85691 -92.5666 -85.85 - 26 102.847 871 3 1 -5.83345 -92.643 -114.45 - 26 134.559 437 3 0 -5.83075 -92.6463 -115.85 - 26 118.867 871 2 1 -5.77343 -92.7152 -144.45 - 26 106.797 437 2 0 -5.76977 -92.7192 -145.85 - 26 148.774 871 1 1 -5.69398 -92.8026 -174.45 - 26 193.911 436 1 0 -5.68852 -92.8077 -175.85 - 26 199.094 872 0 1 -5.57786 -92.9114 -204.45 - 26 140.198 436 0 0 -5.57119 -92.9159 -205.85 - 26 194.936 575 7 0 -34.2067 -64.9778 3.75 - 26 18.8425 726 7 1 -34.7255 -61.0083 5.15 - 26 155.902 871 4 1 -5.84999 -92.5659 -84.4629 - 26 138.903 438 4 0 -5.74126 -92.4475 -85.85 - 26 39.6647 881 3 1 -3.73028 -90.7104 -114.45 - 26 96.9834 882 3 1 -3.65 -90.6926 -114.58 - 26 151.002 448 3 0 -2.87785 -90.4883 -115.85 - 26 95.4891 968 2 1 13.7056 -85.8155 -144.451 - 26 75.2454 969 2 1 13.85 -85.6983 -144.675 - 26 47.9368 474 2 0 14.4906 -85.1224 -145.85 - 26 92.031 475 2 0 14.5678 -85.05 -145.997 - 26 4.77674 1054 1 1 31.0371 -73.4326 -174.45 - 26 130.298 1055 1 1 31.0507 -73.4286 -174.464 - 26 53.81 1056 1 1 31.2501 -73.3682 -174.676 - 26 141.522 535 1 0 32.2393 -72.9623 -175.85 - 26 111.849 1158 0 1 51.8283 -69.2693 -204.45 - 26 26.195 556 0 0 51.5256 -68.6717 -205.85 - 26 100.697 557 0 0 51.5175 -68.65 -205.898 - 26 101.599 463 0 0 68.6331 -87.3622 -206.25 - 26 192.88 462 0 0 68.7176 -87.45 -206.173 - 26 83.2933 461 0 0 68.813 -87.65 -205.919 - 26 228.299 1248 0 1 69.699 -88.4216 -204.85 - 26 92.8035 1249 0 1 69.8501 -88.5755 -204.556 - 26 20.0558 763 0 0 -45.6154 -27.3724 -206.25 - 26 280.61 615 0 0 45.0071 -56.9716 -206.249 - 26 9.38863 81 1 1 -163.75 -90.9601 -174.598 -Number of digits in this event = 25 -Using G4ParticleGun ... -4.31475 LIN -e- -Event: 27 -Number of tracker hits in this event = 162 - 27 109.263 678 11 1 -44.3625 44.6873 125.55 - 27 122.444 1123 11 0 -44.3633 44.6881 124.15 - 27 132.403 678 10 1 -44.3825 44.7019 95.55 - 27 184.862 1123 10 0 -44.385 44.7019 94.15 - 27 380.728 678 9 1 -44.4345 44.6954 65.55 - 27 484.851 1123 9 0 -44.4358 44.698 64.15 - 27 220.544 678 8 1 -44.4488 44.7449 35.55 - 27 375.314 1123 8 0 -44.4506 44.7474 34.15 - 27 263.841 677 7 1 -44.4875 44.8036 5.55 - 27 110.497 1123 7 0 -44.4938 44.8065 4.15 - 27 135.076 677 6 1 -44.6262 44.8626 -24.45 - 27 207.782 1124 6 0 -44.6183 44.8588 -25.85 - 27 123.058 678 5 1 -44.4498 44.7928 -54.45 - 27 150.008 1123 5 0 -44.4457 44.7933 -55.85 - 27 167.916 678 4 1 -44.3569 44.8203 -84.45 - 27 122.409 1123 4 0 -44.3588 44.8201 -85.85 - 27 115.318 678 3 1 -44.4075 44.8187 -114.45 - 27 120.427 1123 3 0 -44.409 44.8214 -115.85 - 27 124.313 678 2 1 -44.4412 44.8602 -144.45 - 27 117.336 1124 2 0 -44.4368 44.8611 -145.85 - 27 132.711 678 1 1 -44.3457 44.8751 -174.45 - 27 123.026 1124 1 0 -44.3436 44.8817 -175.85 - 27 188.215 678 0 1 -44.3115 45.0246 -204.45 - 27 118.22 1124 0 0 -44.3101 45.0293 -205.85 - 27 152.638 527 3 0 60.5928 -74.5393 -116.25 - 27 288.027 526 3 0 60.6131 -74.65 -116.058 - 27 269.935 1120 4 0 -44.6327 44.2353 -85.85 - 27 40.7515 657 7 1 -48.551 47.5667 5.55 - 27 102.928 656 7 1 -48.65 47.6271 5.49498 - 27 117.475 655 7 1 -48.85 47.8215 5.43485 - 27 0.0903413 1140 7 0 -49.1807 48.2493 4.14964 - 27 127.005 1141 7 0 -49.1813 48.25 4.14742 - 27 119.355 1142 7 0 -49.3859 48.45 3.8461 - 27 46.022 1143 7 0 -49.6125 48.65 3.79177 - 27 128.2 1122 8 0 -44.3243 44.6449 34.15 - 27 119.815 678 7 1 -44.3202 44.5631 5.55 - 27 109.197 1122 7 0 -44.3194 44.5593 4.15 - 27 470.677 678 6 1 -44.2844 44.4733 -24.45 - 27 106.337 1122 6 0 -44.2814 44.471 -25.85 - 27 123.917 679 5 1 -44.2172 44.4032 -54.45 - 27 154.566 1121 5 0 -44.2121 44.4016 -55.85 - 27 164.983 679 4 1 -44.1213 44.3733 -84.45 - 27 113.83 1121 4 0 -44.112 44.3704 -85.85 - 27 126.836 680 3 1 -43.8933 44.2983 -114.45 - 27 142.739 1121 3 0 -43.886 44.2971 -115.85 - 27 156.155 681 2 1 -43.7411 44.256 -144.45 - 27 108.339 1121 2 0 -43.7328 44.2511 -145.85 - 27 15.5072 1120 2 0 -43.7309 44.25 -146.183 - 27 98.98 682 1 1 -43.5515 44.1608 -174.45 - 27 108.844 1120 1 0 -43.5425 44.1566 -175.85 - 27 150.102 683 0 1 -43.3515 44.066 -204.45 - 27 125.283 1120 0 0 -43.3424 44.0586 -205.85 - 27 46.0955 783 3 1 -23.4044 32.4799 -114.45 - 27 123.163 782 3 1 -23.45 32.4853 -114.497 - 27 11.6244 944 1 0 -174.066 8.93431 -176.25 - 27 80.8667 682 0 1 -43.45 44.1127 -204.6 - 27 134.506 1122 0 0 -43.7228 44.4561 -205.85 - 27 127.33 1098 1 0 -28.7827 39.842 -176.25 - 27 65.7146 756 1 0 -153.938 -28.724 -176.25 - 27 159.339 681 1 0 -127.545 -43.6829 -176.25 - 27 109.59 679 6 1 -44.25 44.3572 -24.6081 - 27 57.2731 1117 6 0 -43.4627 43.5548 -25.85 - 27 93.4211 1116 6 0 -43.3929 43.45 -25.9909 - 27 9.34227 930 6 0 -46.7323 6.08704 -26.25 - 27 122.302 929 6 0 -46.7386 6.05 -26.2135 - 27 10.0913 928 6 0 -46.4945 5.84967 -25.8725 - 27 116.216 673 6 1 -45.268 4.57638 -24.85 - 27 198.678 674 6 1 -45.25 4.55907 -24.8385 - 27 103.595 675 6 1 -45.0499 4.45141 -24.6548 - 27 3.81383 676 6 1 -44.85 4.5727 -24.4575 - 27 108.81 680 8 1 -44.0029 44.2076 35.55 - 27 96.515 1120 8 0 -44.0394 44.1606 34.15 - 27 237.931 1115 7 0 -44.6067 43.1476 4.15 - 27 104.799 1109 6 0 -45.4892 41.8808 -25.85 - 27 134.561 664 5 1 -47.09 41.4564 -54.45 - 27 112.705 1107 5 0 -47.1087 41.5323 -55.85 - 27 121.577 661 4 1 -47.6681 43.0149 -84.45 - 27 110.555 1115 4 0 -47.7188 43.113 -85.85 - 27 139.652 656 3 1 -48.6771 45.1495 -114.45 - 27 66.6183 1125 3 0 -48.7283 45.2386 -115.85 - 27 81.4366 1126 3 0 -48.7343 45.25 -116.022 - 27 54.7759 649 2 1 -50.205 47.3692 -144.451 - 27 85.5485 648 2 1 -50.25 47.3915 -144.604 - 27 161.471 1137 2 0 -50.6117 47.5681 -145.85 - 27 92.1751 605 1 1 -58.9267 51.6967 -174.45 - 27 36.0896 604 1 1 -59.05 51.7807 -174.734 - 27 110.828 1160 1 0 -59.5247 52.1475 -175.85 - 27 53.0899 1161 1 0 -59.6528 52.25 -176.138 - 27 208.217 538 0 1 -72.2663 61.2627 -204.45 - 27 129.771 1208 0 0 -72.8967 61.7241 -205.85 - 27 274.698 1123 6 0 -44.3716 44.6896 -25.85 - 27 121.312 677 5 1 -44.4817 44.6387 -54.45 - 27 257.649 1122 5 0 -44.4936 44.6309 -55.85 - 27 104.408 676 4 1 -44.7328 44.4871 -84.45 - 27 126.786 1122 4 0 -44.756 44.4768 -85.85 - 27 107.818 673 3 1 -45.3132 44.2397 -114.45 - 27 133.27 1120 3 0 -45.3732 44.2185 -115.85 - 27 98.8193 667 2 1 -46.5784 43.788 -144.45 - 27 365.81 1118 2 0 -46.673 43.7445 -145.85 - 27 197.582 657 1 1 -48.5806 42.8884 -174.45 - 27 170.399 1113 1 0 -48.6496 42.8418 -175.85 - 27 105.276 649 0 1 -50.1452 41.9274 -204.45 - 27 98.0731 1108 0 0 -50.1677 41.653 -205.851 - 27 157.908 1107 0 0 -50.1678 41.65 -205.865 - 27 0.167611 701 0 1 -39.85 24.0004 -204.59 - 27 10.4586 997 0 0 -35.9431 19.65 -206.016 - 27 352.938 690 5 1 -42.0372 44.5029 -54.4504 - 27 105.827 712 4 1 -37.5299 47.9442 -84.45 - 27 23.4013 711 4 1 -37.65 47.9303 -84.7609 - 27 244.117 1139 4 0 -38.0548 47.8878 -85.8502 - 27 89.5724 658 3 1 -48.4166 47.438 -114.45 - 27 133.012 657 3 1 -48.45 47.4397 -114.517 - 27 111.495 1137 3 0 -49.1228 47.4782 -115.85 - 27 112.598 584 2 1 -63.2239 47.2857 -144.45 - 27 62.8095 583 2 1 -63.2504 47.2962 -144.471 - 27 75.2893 582 2 1 -63.45 47.3801 -144.621 - 27 56.6197 581 2 1 -63.6503 47.4634 -144.768 - 27 6.18262 1139 2 0 -65.0416 48.0404 -145.85 - 27 258.432 1140 2 0 -65.0656 48.0501 -145.869 - 27 12.9657 391 1 1 -101.908 60.921 -174.45 - 27 72.4239 390 1 1 -101.95 60.9413 -174.476 - 27 81.3734 389 1 1 -102.15 61.0324 -174.61 - 27 62.0015 388 1 1 -102.35 61.1138 -174.746 - 27 39.7532 1208 1 0 -104.141 61.8141 -175.85 - 27 184.007 1209 1 0 -104.231 61.85 -175.904 - 27 100.967 1210 1 0 -104.728 62.05 -176.174 - 27 43.5866 76 0 1 -164.808 81.7858 -204.45 - 27 80.1179 75 0 1 -164.95 81.8238 -204.481 - 27 60.0031 74 0 1 -165.15 81.8789 -204.522 - 27 128.259 73 0 1 -165.351 81.9378 -204.562 - 27 64.0079 72 0 1 -165.55 81.9999 -204.613 - 27 55.6691 71 0 1 -165.75 82.0582 -204.672 - 27 67.5108 70 0 1 -165.95 82.0992 -204.73 - 27 45.1731 69 0 1 -166.15 82.1339 -204.785 - 27 39.5705 68 0 1 -166.35 82.168 -204.832 - 27 896.502 1314 0 0 -171.023 82.9023 -205.85 - 27 80.9512 1313 0 0 -171.372 82.85 -206.109 - 27 176.134 1133 2 0 -63.8564 46.7836 -145.85 - 27 84.1843 1132 2 0 -64.0318 46.65 -146.14 - 27 89.703 528 1 1 -74.3131 21.1761 -174.45 - 27 58.4774 529 1 1 -74.2499 20.9789 -174.696 - 27 71.5136 999 1 0 -73.9404 20.0041 -175.85 - 27 155.14 998 1 0 -73.897 19.85 -176.001 - 27 29.838 626 1 0 -24.4858 -54.7304 -176.25 - 27 81.4692 625 1 0 -24.4144 -54.85 -176.189 - 27 105.138 624 1 0 -24.2677 -55.0501 -176.069 - 27 91.6791 623 1 0 -24.1138 -55.25 -175.966 - 27 57.5734 622 1 0 -24.0077 -55.45 -175.897 - 27 1.99561 791 1 1 -21.6529 -60.6998 -174.85 - 27 103.422 792 1 1 -21.6499 -60.7071 -174.849 - 27 51.7685 793 1 1 -21.4496 -60.9178 -174.793 - 27 90.2771 794 1 1 -21.25 -60.9755 -174.7 - 27 80.3793 532 1 1 -73.4919 19.8994 -174.85 - 27 121.424 533 1 1 -73.45 19.9602 -174.7 - 27 165.802 534 1 1 -73.25 20.0879 -174.618 - 27 191.461 1134 2 0 -64.0807 46.85 -146.088 - 27 16.3217 573 2 1 -65.4098 46.5974 -144.85 - 27 135.022 572 2 1 -65.45 46.5915 -144.796 - 27 48.7872 691 5 1 -41.85 44.3276 -54.7065 - 27 50.7663 1119 5 0 -40.9132 43.9007 -55.8501 - 27 59.4923 1118 5 0 -40.796 43.85 -55.9809 - 27 8.3898 1078 3 0 -96.2868 35.7163 -116.25 -Number of digits in this event = 72 -Using G4ParticleGun ... -1.20677 LIN -e- -Event: 28 -Number of tracker hits in this event = 92 - 28 130.522 797 9 1 -20.64 125.982 65.55 - 28 106.558 1529 9 0 -20.6368 125.987 64.15 - 28 215.889 797 8 1 -20.5638 126.095 35.55 - 28 396.703 1529 8 0 -20.5618 126.105 34.15 - 28 178.341 797 7 1 -20.5058 126.321 5.55 - 28 179.232 1530 7 0 -20.5039 126.338 4.15 - 28 166.791 798 6 1 -20.4413 126.686 -24.45 - 28 210.529 1532 6 0 -20.4339 126.693 -25.85 - 28 103.434 798 5 1 -20.3098 126.84 -54.45 - 28 120.348 1533 5 0 -20.3021 126.836 -55.85 - 28 127.863 799 4 1 -20.1416 126.75 -84.45 - 28 112.77 1532 4 0 -20.1189 126.742 -85.85 - 28 113.289 801 3 1 -19.6862 126.597 -114.45 - 28 115.653 1533 3 0 -19.6609 126.781 -115.85 - 28 169.542 809 2 1 -18.1932 132.273 -144.45 - 28 19.4275 808 2 1 -18.25 132.358 -144.774 - 28 117.703 1562 2 0 -18.4211 132.593 -145.85 - 28 78.958 784 1 1 -23.1495 138.044 -174.45 - 28 35.0383 783 1 1 -23.25 138.204 -174.748 - 28 26.2833 1593 1 0 -23.677 138.909 -175.85 - 28 117.522 1594 1 0 -23.7012 138.95 -175.913 - 28 2.82361 1595 1 0 -23.8103 139.15 -176.24 - 28 45.7889 738 0 1 -32.3661 155.518 -204.45 - 28 108.255 737 0 1 -32.45 155.617 -204.576 - 28 9.58436 1681 0 0 -33.2283 156.526 -205.85 - 28 93.4919 1682 0 0 -33.2487 156.55 -205.885 - 28 39.1874 1683 0 0 -33.4205 156.75 -206.175 - 28 515.102 798 4 1 -20.3243 126.791 -84.45 - 28 72.0326 1536 4 0 -20.5072 127.447 -85.8501 - 28 62.5177 1537 4 0 -20.5438 127.55 -86.0591 - 28 155.961 732 3 1 -33.4829 138.203 -114.45 - 28 139.16 1591 3 0 -33.9214 138.484 -115.85 - 28 5.42303 1592 3 0 -34.0406 138.55 -116.231 - 28 361.163 797 4 1 -20.45 126.642 -84.8487 - 28 41.404 1529 4 0 -20.8957 125.999 -85.85 - 28 101.48 1528 4 0 -20.9708 125.95 -85.9602 - 28 109.096 796 8 1 -20.6535 126.051 35.55 - 28 130.747 784 7 1 -23.1865 128.166 5.54962 - 28 109.47 1542 7 0 -23.1714 128.603 4.15 - 28 132.42 784 6 1 -23.227 137.134 -24.45 - 28 116.031 1585 6 0 -23.2301 137.263 -25.85 - 28 180.467 781 5 1 -23.7662 140.028 -54.45 - 28 126.925 1599 5 0 -23.6112 140.077 -55.85 - 28 35.6553 796 4 1 -20.6625 140.703 -84.4501 - 28 47.261 1626 4 0 -19.4512 145.421 -85.85 - 28 68.7532 1627 4 0 -19.4135 145.55 -85.8884 - 28 51.6427 1628 4 0 -19.351 145.75 -85.9621 - 28 73.7754 1629 4 0 -19.2794 145.95 -86.0381 - 28 76.5464 1630 4 0 -19.2153 146.15 -86.1293 - 28 23.507 1631 4 0 -19.2252 146.35 -86.219 - 28 45.355 1604 4 0 -19.6539 141.109 -85.85 - 28 104.138 1605 4 0 -19.5944 141.15 -85.9494 - 28 110.278 887 3 1 -2.60598 150.721 -114.45 - 28 106.753 888 3 1 -2.45 150.935 -114.637 - 28 2.81537 889 3 1 -2.25 151.228 -114.848 - 28 15.6754 1663 3 0 -0.929352 152.93 -115.85 - 28 73.6503 1664 3 0 -0.913842 152.95 -115.862 - 28 114.473 1665 3 0 -0.758143 153.15 -115.973 - 28 97.3204 1666 3 0 -0.583553 153.35 -116.095 - 28 12.446 1667 3 0 -0.399524 153.55 -116.228 - 28 67.2136 798 8 1 -20.45 126.078 35.3044 - 28 103.725 874 7 1 -5.18777 124.325 5.54952 - 28 125.526 1521 7 0 -5.23243 124.422 4.14985 - 28 49.8414 864 6 1 -7.09665 124.664 -24.45 - 28 66.442 863 6 1 -7.25 124.747 -24.5252 - 28 292.687 862 6 1 -7.45009 124.867 -24.6396 - 28 43.5257 861 6 1 -7.65 125.013 -24.7618 - 28 101.587 1530 6 0 -8.96759 126.154 -25.8501 - 28 126.041 1531 6 0 -9.23072 126.35 -26.0574 - 28 164.135 1609 6 0 -43.0388 142.083 -26.25 - 28 139.76 686 6 1 -42.8485 141.694 -24.85 - 28 3.99924 1538 7 0 -52.8897 127.756 3.75089 - 28 138.141 1537 7 0 -52.8943 127.75 3.76327 - 28 122.596 633 7 1 -53.3011 127.057 5.15007 - 28 41.1595 740 8 0 -157.599 -31.8985 33.75 - 28 83.6829 739 8 0 -157.727 -32.05 33.7699 - 28 103.481 738 8 0 -157.988 -32.25 33.8662 - 28 113.168 737 8 0 -158.283 -32.45 33.8989 - 28 156.722 736 8 0 -158.676 -32.6502 33.9235 - 28 55.5331 735 8 0 -158.957 -32.85 33.8072 - 28 79.4615 1069 9 0 -102.829 34.05 63.9584 - 28 0.238849 1068 9 0 -102.777 33.85 64.1492 - 28 27.7615 389 9 1 -102.285 31.3122 65.1501 - 28 25.6299 1054 9 0 -101.286 30.8986 64.15 - 28 60.8542 1053 9 0 -101.232 30.85 64.1197 - 28 186.836 398 9 1 -100.388 30.4022 65.15 - 28 60.1796 399 9 1 -100.35 30.3822 65.2168 - 28 30.86 891 7 1 -1.85 140.87 5.48158 - 28 191.115 688 3 1 -42.3642 127.336 -114.45 - 28 55.4042 1540 3 0 -42.7599 128.196 -115.85 - 28 153.405 1541 3 0 -42.7498 128.35 -115.993 - 28 46.3726 1542 3 0 -42.6876 128.55 -116.196 -Number of digits in this event = 32 -Using G4ParticleGun ... -6.81932 LIN -e- -Event: 29 -Number of tracker hits in this event = 83 - 29 135.986 824 11 1 -15.0665 6.00514 125.55 - 29 103.584 929 11 0 -15.0666 6.0056 124.15 - 29 155.441 824 10 1 -15.0633 6.01792 95.55 - 29 159.823 929 10 0 -15.064 6.0188 94.15 - 29 126.638 824 9 1 -15.0777 6.04017 65.55 - 29 123.192 929 9 0 -15.0783 6.04145 64.15 - 29 156.675 824 8 1 -15.0951 6.06596 35.55 - 29 340.36 930 8 0 -15.0962 6.06805 34.15 - 29 111.307 824 7 1 -15.1209 6.11523 5.55 - 29 132.726 930 7 0 -15.1213 6.11843 4.15 - 29 352.133 824 6 1 -15.1283 6.18751 -24.45 - 29 366.528 930 6 0 -15.128 6.19157 -25.85 - 29 261.917 824 5 1 -15.1254 6.28252 -54.45 - 29 269.376 931 5 0 -15.1259 6.28589 -55.85 - 29 458.518 824 4 1 -15.1331 6.35986 -84.45 - 29 600.265 931 4 0 -15.1351 6.36514 -85.85 - 29 382.048 824 3 1 -15.176 6.47918 -114.45 - 29 275.615 932 3 0 -15.1759 6.48703 -115.85 - 29 285.951 824 2 1 -15.1637 6.66057 -144.45 - 29 270.645 933 2 0 -15.1626 6.66962 -145.85 - 29 387.892 824 1 1 -15.1283 6.86074 -174.45 - 29 289.203 934 1 0 -15.1286 6.86685 -175.85 - 29 118.53 824 0 1 -15.1491 6.96955 -204.45 - 29 121.119 934 0 0 -15.15 6.97494 -205.85 - 29 8.6325 187 4 1 -142.743 -74.7487 -84.4501 - 29 63.4039 186 4 1 -142.75 -74.7574 -84.4587 - 29 402.644 932 2 0 -16.1969 6.55282 -145.85 - 29 339.232 931 3 0 -15.246 6.40014 -115.85 - 29 290.36 823 2 1 -15.4017 6.39643 -144.45 - 29 230.901 931 2 0 -15.4112 6.3962 -145.85 - 29 131.816 822 1 1 -15.6041 6.38511 -174.45 - 29 279.171 931 1 0 -15.6172 6.38849 -175.85 - 29 126.875 820 0 1 -15.8852 6.45826 -204.45 - 29 347.953 932 0 0 -15.8999 6.46291 -205.85 - 29 87.798 930 3 0 -15.1494 6.20437 -115.85 - 29 99.9586 929 2 0 -15.1486 6.03363 -145.85 - 29 137.397 928 1 0 -15.2483 5.77927 -175.85 - 29 327.143 823 0 1 -15.3629 5.56097 -204.45 - 29 106.352 927 0 0 -15.3625 5.55188 -205.85 - 29 219.07 1157 2 1 51.5582 10.0778 -144.45 - 29 117.963 822 5 1 -15.4995 6.19499 -54.45 - 29 122.822 930 5 0 -15.5258 6.20291 -55.85 - 29 137.626 819 4 1 -16.078 6.35496 -84.45 - 29 134.409 816 3 1 -16.7498 6.50121 -114.45 - 29 167.168 811 2 1 -17.6966 6.25835 -144.45 - 29 109.937 804 1 1 -19.216 6.26889 -174.45 - 29 137.228 794 0 1 -21.1079 6.58491 -204.45 - 29 29.3612 471 3 0 -61.8184 -85.7066 -116.25 - 29 156.118 472 3 0 -61.8431 -85.65 -116.15 - 29 32.2265 584 3 1 -63.1839 -85.6005 -114.85 - 29 133.029 583 3 1 -63.25 -85.6071 -114.735 - 29 158.879 582 3 1 -63.45 -85.8372 -114.595 - 29 100.326 581 3 1 -63.65 -86.1572 -114.583 - 29 398.82 580 3 1 -63.85 -86.3305 -114.526 - 29 110.399 933 0 0 -21.2065 6.65 -206.165 - 29 286.832 651 3 0 -37.1377 -49.8115 -116.25 - 29 140.824 828 4 1 -14.4325 6.21797 -84.45 - 29 116.402 930 4 0 -14.3766 6.21354 -85.8505 - 29 157.852 833 3 1 -13.2719 6.22485 -114.45 - 29 94.6993 831 2 1 -13.7156 7.55736 -144.45 - 29 131.079 938 2 0 -13.7261 7.65028 -145.85 - 29 152.611 830 1 1 -14.0288 9.28603 -174.45 - 29 134.95 946 1 0 -14.0925 9.34938 -175.85 - 29 126.44 822 0 1 -15.5309 10.6445 -204.45 - 29 203.862 953 0 0 -15.7586 10.664 -205.85 - 29 142.385 1202 5 0 -116.129 60.5716 -56.25 - 29 86.2165 1217 1 0 -32.7009 63.629 -176.25 - 29 62.8134 1129 1 0 -88.1695 45.9833 -176.25 - 29 319.387 827 4 1 -14.6193 6.22022 -84.45 - 29 145.094 826 4 1 -14.65 6.23217 -84.5102 - 29 127.334 825 4 1 -14.85 6.31348 -84.573 - 29 192.589 927 4 0 -15.3567 5.58581 -85.85 - 29 119.875 937 0 0 -15.4534 7.55402 -205.85 - 29 35.8998 1 10 0 -14.1103 -179.833 93.75 - 29 112.82 845 1 1 -10.9507 2.01553 -174.45 - 29 132.041 909 1 0 -10.6053 1.93087 -175.85 - 29 79.734 885 0 1 -2.99229 -2.65032 -204.451 - 29 91.7917 886 0 1 -2.84994 -2.79921 -204.62 - 29 62.0369 883 0 0 -1.91405 -3.39373 -205.85 - 29 86.5283 882 0 0 -1.79961 -3.45 -206 - 29 358.865 825 0 1 -15.0228 6.15628 -204.451 - 29 155.21 929 0 0 -15.1845 5.93115 -205.85 - 29 90.3873 930 0 0 -15.1014 6.09403 -205.85 -Number of digits in this event = 60 -Using G4ParticleGun ... -4.96743 LIN -e- -Event: 30 -Number of tracker hits in this event = 44 - 30 123.267 1005 11 1 21.2133 -54.751 125.55 - 30 113.327 626 11 0 21.216 -54.751 124.15 - 30 177.77 1006 10 1 21.2736 -54.7498 95.55 - 30 246.084 626 10 0 21.2777 -54.7496 94.15 - 30 108.508 1006 9 1 21.3676 -54.7612 65.55 - 30 146.195 626 9 0 21.3726 -54.76 64.15 - 30 151.973 1007 8 1 21.4724 -54.7464 35.55 - 30 113.046 626 8 0 21.4783 -54.7469 34.15 - 30 123.015 1007 7 1 21.5995 -54.7623 5.55 - 30 108.974 626 7 0 21.6049 -54.7631 4.15 - 30 120.579 1008 6 1 21.7285 -54.7744 -24.45 - 30 194.12 626 6 0 21.7327 -54.7748 -25.85 - 30 125.066 1008 5 1 21.8126 -54.7833 -54.45 - 30 120.667 626 5 0 21.8177 -54.7828 -55.85 - 30 282.145 1009 4 1 21.9572 -54.7596 -84.45 - 30 139.743 626 4 0 21.9662 -54.7584 -85.85 - 30 103.72 1010 3 1 22.1551 -54.767 -114.45 - 30 126.056 626 3 0 22.1647 -54.7656 -115.85 - 30 110.898 1011 2 1 22.361 -54.7337 -144.45 - 30 119.3 626 2 0 22.3734 -54.7288 -145.85 - 30 173.192 1012 1 1 22.6353 -54.5989 -174.45 - 30 135.027 627 1 0 22.6498 -54.5931 -175.85 - 30 109.163 1014 0 1 22.9109 -54.4946 -204.45 - 30 178.376 627 0 0 22.9252 -54.4898 -205.85 - 30 64.6555 917 2 1 3.45 -0.432375 -144.545 - 30 1.41543 1008 4 1 21.85 -54.6804 -84.8429 - 30 188.118 628 4 0 21.5702 -54.4248 -85.85 - 30 1.01788 947 3 1 9.45302 -45.8957 -114.45 - 30 157.869 946 3 1 9.45 -45.8922 -114.457 - 30 102.842 674 3 0 8.93043 -45.1956 -115.85 - 30 30.9443 675 3 0 8.81816 -45.05 -116.147 - 30 122.913 878 2 1 -4.40546 -31.9789 -144.45 - 30 195.483 741 2 0 -4.24563 -31.7658 -145.85 - 30 41.386 885 1 1 -2.91166 -28.3938 -174.45 - 30 142.184 884 1 1 -3.05 -28.4724 -174.517 - 30 94.2417 883 1 1 -3.25014 -28.5769 -174.62 - 30 69.2762 882 1 1 -3.45 -28.6834 -174.732 - 30 10.3355 881 1 1 -3.65014 -28.7861 -174.833 - 30 137.619 752 1 0 -5.68068 -29.5201 -175.85 - 30 132.066 751 1 0 -6.06365 -29.65 -176.031 - 30 125.19 654 0 1 -49.0964 -54.3283 -204.45 - 30 35.7742 630 0 0 -49.0066 -53.8899 -205.85 - 30 145.564 631 0 0 -48.9928 -53.85 -205.971 - 30 24.478 523 2 0 -41.0239 -75.4364 -146.25 -Number of digits in this event = 27 -Using G4ParticleGun ... -6.88607 LIN -e- -Event: 31 -Number of tracker hits in this event = 36 - 31 126.091 932 11 1 6.47663 -49.5474 125.55 - 31 127.074 652 11 0 6.47615 -49.5483 124.15 - 31 91.6757 932 10 1 6.4681 -49.564 95.55 - 31 138.109 652 10 0 6.4685 -49.5643 94.15 - 31 170.131 932 9 1 6.47432 -49.5679 65.55 - 31 126.992 652 9 0 6.47408 -49.5678 64.15 - 31 140.137 932 8 1 6.46694 -49.5631 35.55 - 31 252.245 652 8 0 6.46666 -49.5634 34.15 - 31 145.789 932 7 1 6.46124 -49.5671 5.55 - 31 119.809 652 7 0 6.46252 -49.5669 4.15 - 31 129.443 932 6 1 6.48825 -49.5674 -24.45 - 31 138.846 652 6 0 6.49117 -49.5686 -25.85 - 31 128.995 932 5 1 6.55475 -49.5904 -54.45 - 31 266.642 652 5 0 6.55888 -49.5911 -55.85 - 31 130.781 932 4 1 6.64153 -49.5977 -84.45 - 31 133.448 652 4 0 6.64528 -49.5984 -85.85 - 31 90.0257 933 3 1 6.72254 -49.6142 -114.45 - 31 152.293 652 3 0 6.72595 -49.6144 -115.85 - 31 115.303 933 2 1 6.7876 -49.6235 -144.45 - 31 104.403 652 2 0 6.79007 -49.6248 -145.85 - 31 128.678 933 1 1 6.83542 -49.6481 -174.45 - 31 31.7468 652 1 0 6.83782 -49.6499 -175.85 - 31 98.6475 651 1 0 6.83791 -49.65 -175.899 - 31 423.876 934 0 1 6.89003 -49.6861 -204.45 - 31 130.193 651 0 0 6.8927 -49.6867 -205.85 - 31 158.708 918 0 1 3.75648 -79.238 -204.45 - 31 170.349 919 0 1 3.85 -79.2377 -204.665 - 31 9.00301 926 4 1 5.2992 -92.382 -84.85 - 31 5.2537 503 4 0 60.1182 -79.25 -86.1452 - 31 224.86 652 0 0 6.94719 -49.6447 -205.85 - 31 177.347 868 0 1 -6.31521 -43.2663 -204.85 - 31 104.474 465 2 0 44.8228 -86.85 -146.1 - 31 173.365 466 2 0 45.0582 -86.85 -145.917 - 31 55.8121 867 0 1 -6.45 -43.2423 -204.777 - 31 3.81058 925 5 1 5.05694 -50.078 -54.85 - 31 123.198 924 5 1 5.05 -50.0813 -54.8458 -Number of digits in this event = 26 -Using G4ParticleGun ... -2.86528 LIN -e- -Event: 32 -Number of tracker hits in this event = 132 - 32 215.768 1091 11 1 38.3586 -36.2773 125.55 - 32 126.605 718 11 0 38.36 -36.2794 124.15 - 32 145.228 1091 10 1 38.3877 -36.3222 95.55 - 32 156.967 718 10 0 38.3904 -36.3219 94.15 - 32 125.636 1092 9 1 38.4577 -36.3113 65.55 - 32 107.688 718 9 0 38.4589 -36.3128 64.15 - 32 102.666 1092 8 1 38.4806 -36.3331 35.55 - 32 133.901 718 8 0 38.4843 -36.3354 34.15 - 32 98.5743 1092 7 1 38.5575 -36.3756 5.55 - 32 138.861 718 7 0 38.5585 -36.3778 4.15 - 32 667.98 1092 6 1 38.5855 -36.4188 -24.45 - 32 571.34 718 6 0 38.585 -36.4224 -25.85 - 32 114.025 1092 5 1 38.5666 -36.5074 -54.45 - 32 212.81 717 5 0 38.5652 -36.5175 -55.85 - 32 128.37 1092 4 1 38.527 -36.7317 -84.45 - 32 360.348 716 4 0 38.5229 -36.7417 -85.85 - 32 300.496 1092 3 1 38.4707 -36.9516 -114.45 - 32 108.582 715 3 0 38.4696 -36.9616 -115.85 - 32 427.449 1091 2 1 38.4461 -37.1523 -144.45 - 32 309.042 714 2 0 38.4473 -37.1596 -145.85 - 32 140.564 1092 1 1 38.4705 -37.3106 -174.45 - 32 155.818 713 1 0 38.4684 -37.3154 -175.85 - 32 209 1091 0 1 38.4127 -37.4145 -204.45 - 32 282.733 713 0 0 38.409 -37.4175 -205.85 - 32 28.6095 513 0 0 5.25366 -77.45 -206.063 - 32 195.643 1092 0 1 38.45 -37.3768 -204.684 - 32 117.035 1090 1 1 38.1217 -37.1185 -174.45 - 32 125.064 714 1 0 38.1541 -37.1208 -175.85 - 32 116.173 1095 0 1 39.1367 -37.07 -204.45 - 32 150.782 714 0 0 39.223 -37.0636 -205.85 - 32 220.191 564 0 0 20.8037 -67.05 -206.114 - 32 18.3262 713 2 0 38.2392 -37.25 -146.17 - 32 108.107 1073 1 1 34.8019 -39.4361 -174.45 - 32 133.117 702 1 0 34.3987 -39.5232 -175.85 - 32 105.798 1030 0 1 26.1967 -41.5029 -204.45 - 32 123.454 691 0 0 25.8522 -41.7458 -205.85 - 32 30.8394 707 2 1 -38.469 -14.3885 -144.85 - 32 164.015 1084 5 1 36.988 -36.5315 -54.45 - 32 309.33 1080 4 1 36.1539 -38.0406 -84.45 - 32 120.03 709 4 0 36.2637 -38.0671 -85.85 - 32 19.0084 1091 3 1 38.4195 -39.2515 -114.45 - 32 51.2572 701 3 0 38.8937 -39.801 -115.85 - 32 149.029 700 3 0 38.9371 -39.85 -115.975 - 32 70.3865 1137 2 1 47.5904 -51.705 -144.45 - 32 66.2704 1138 2 1 47.65 -51.758 -144.611 - 32 80.6233 639 2 0 48.1153 -52.1672 -145.85 - 32 44.3723 638 2 0 48.205 -52.25 -146.098 - 32 366.465 1191 1 1 58.2999 -61.4064 -174.45 - 32 112.303 592 1 0 58.6129 -61.6132 -175.85 - 32 230.542 591 1 0 58.6697 -61.6501 -176.091 - 32 128.711 1226 0 1 65.3265 -65.7547 -204.45 - 32 233.223 1225 0 1 65.25 -65.5949 -204.672 - 32 75.3777 576 0 0 64.8474 -64.774 -205.85 - 32 67.1268 577 0 0 64.7869 -64.65 -206.033 - 32 278.313 893 1 0 34.0988 -1.41475 -176.25 - 32 182.242 894 1 0 34.3206 -1.25 -175.985 - 32 92.8288 595 1 0 58.2351 -60.8713 -175.85 - 32 41.3297 590 1 0 58.737 -61.8934 -175.85 - 32 170.471 779 3 0 78.6864 -24.1509 -116.25 - 32 8.76003 778 3 0 78.7152 -24.25 -116.157 - 32 263.727 1076 5 1 35.4046 -33.4525 -54.45 - 32 125.181 735 5 0 35.0167 -32.9992 -55.85 - 32 19.3342 1032 4 1 26.496 -21.7522 -84.45 - 32 97.3249 1031 4 1 26.4498 -21.7381 -84.5239 - 32 62.774 792 4 0 25.636 -21.4872 -85.85 - 32 99.1219 793 4 0 25.5092 -21.45 -86.0522 - 32 47.2193 910 3 1 2.06316 -14.1993 -114.45 - 32 133.085 909 3 1 2.05 -14.1793 -114.475 - 32 41.8909 908 3 1 1.84989 -13.9205 -114.78 - 32 168.993 834 3 0 1.22946 -13.2417 -115.85 - 32 33.1616 835 3 0 1.03612 -13.05 -116.149 - 32 41.5825 821 2 1 -15.7768 2.049 -144.45 - 32 64.6801 820 2 1 -15.85 2.0258 -144.618 - 32 152.082 909 2 0 -16.3251 1.95946 -145.85 - 32 0.488641 764 1 1 -27.2494 -1.21133 -174.45 - 32 103.33 763 1 1 -27.2502 -1.21173 -174.451 - 32 57.5471 762 1 1 -27.45 -1.29882 -174.563 - 32 70.6306 761 1 1 -27.65 -1.36769 -174.671 - 32 74.7033 760 1 1 -27.85 -1.44365 -174.765 - 32 67.8993 888 1 0 -29.9388 -2.34665 -175.85 - 32 108.126 887 1 0 -30.1518 -2.45 -175.91 - 32 111.517 886 1 0 -30.445 -2.65 -176.009 - 32 116.074 885 1 0 -30.7635 -2.85007 -176.125 - 32 102.545 339 0 1 -112.296 -52.5756 -204.45 - 32 149.925 637 0 0 -112.325 -52.4972 -205.85 - 32 20.2776 438 1 1 -92.35 6.308 -174.498 - 32 245.534 437 1 1 -92.5504 6.36175 -174.624 - 32 58.5148 729 5 0 34.647 -34.1409 -55.85 - 32 2.54466 1081 5 1 36.3685 -34.2477 -54.85 - 32 39.8857 730 5 0 37.8473 -33.9447 -55.85 - 32 52.7313 1091 6 1 38.45 -36.4588 -24.52 - 32 43.6612 1090 6 1 38.25 -36.4397 -24.5204 - 32 115.394 1094 5 1 38.9043 -34.4014 -54.45 - 32 134.382 1093 5 1 38.85 -34.3922 -54.6134 - 32 112.322 728 5 0 38.432 -34.3904 -55.85 - 32 130.31 1040 4 1 28.1782 -36.7583 -84.45 - 32 21.5314 718 4 0 27.7745 -36.2767 -85.85 - 32 133.02 719 4 0 27.7526 -36.2498 -85.9293 - 32 199.378 1001 3 1 20.3284 -27.0139 -114.45 - 32 76.6082 766 3 0 20.2108 -26.7129 -115.85 - 32 31.9533 767 3 0 20.1924 -26.65 -116.109 - 32 19.5527 991 2 1 18.4373 -19.087 -144.45 - 32 91.9397 992 2 1 18.45 -19.0651 -144.504 - 32 15.9651 807 2 0 18.6292 -18.4748 -145.85 - 32 108.654 808 2 0 18.6358 -18.45 -145.904 - 32 91.4047 1020 1 1 24.1243 -4.64051 -174.45 - 32 67.3025 1019 1 1 24.05 -4.61646 -174.769 - 32 7.37851 877 1 0 23.8477 -4.45536 -175.852 - 32 142.773 878 1 0 23.8414 -4.44999 -175.888 - 32 139.982 1004 0 1 20.9944 1.15478 -204.45 - 32 106.948 908 0 0 20.9215 1.71083 -205.85 - 32 125.3 718 5 0 38.8697 -36.4079 -55.85 - 32 185.298 1096 4 1 39.3115 -36.8535 -84.45 - 32 138.452 715 4 0 39.3253 -36.8984 -85.85 - 32 176.676 1097 3 1 39.5955 -37.8309 -114.45 - 32 164.071 710 3 0 39.6047 -37.8707 -115.85 - 32 109.532 1098 2 1 39.7733 -38.5698 -144.45 - 32 136.016 707 2 0 39.7728 -38.6055 -145.85 - 32 138.414 1098 1 1 39.6755 -39.3137 -174.45 - 32 111.772 703 1 0 39.6865 -39.3472 -175.85 - 32 105.08 1099 0 1 39.8696 -40.2965 -204.45 - 32 119.927 698 0 0 39.8401 -40.3033 -205.85 - 32 120.399 707 1 0 39.4314 -38.6104 -175.85 - 32 131.118 1165 2 0 72.0599 53.05 -146.023 - 32 4.86065 708 0 0 41.5385 -38.2542 -205.85 - 32 61.93 709 0 0 41.538 -38.25 -205.965 - 32 167.266 719 10 0 38.2962 -36.25 94.0331 - 32 227.805 720 10 0 37.9752 -36.05 94.0217 - 32 49.5306 721 10 0 37.9269 -35.8499 94.0912 - 32 318.763 1092 11 1 38.45 -36.4017 125.265 - 32 65.7351 720 11 0 32.9584 -35.9158 124.15 - 32 377.71 721 11 0 32.7762 -35.8499 124.068 -Number of digits in this event = 63 -Using G4ParticleGun ... -7.732 LIN -e- -Event: 33 -Number of tracker hits in this event = 64 - 33 135.947 648 10 1 -50.3763 -86.5925 95.55 - 33 127.446 467 10 0 -50.377 -86.5934 94.15 - 33 121.571 648 9 1 -50.3906 -86.6071 65.55 - 33 103.094 467 9 0 -50.3918 -86.6084 64.15 - 33 131.115 648 8 1 -50.4129 -86.6323 35.55 - 33 119.609 467 8 0 -50.4135 -86.6334 34.15 - 33 99.9201 648 7 1 -50.4317 -86.659 5.55 - 33 106.746 466 7 0 -50.4326 -86.6599 4.15 - 33 112.84 647 6 1 -50.4561 -86.678 -24.45 - 33 177.445 466 6 0 -50.4566 -86.6785 -25.85 - 33 116.598 647 5 1 -50.4585 -86.6965 -54.45 - 33 104.771 466 5 0 -50.4586 -86.6967 -55.85 - 33 136.943 647 4 1 -50.4546 -86.6996 -84.45 - 33 146.616 466 4 0 -50.4544 -86.6993 -85.85 - 33 379.055 648 3 1 -50.4481 -86.694 -114.45 - 33 454.001 466 3 0 -50.4455 -86.6917 -115.85 - 33 236.593 648 2 1 -50.3898 -86.645 -144.45 - 33 254.502 467 2 0 -50.3876 -86.6416 -145.85 - 33 683.668 648 1 1 -50.3464 -86.5721 -174.45 - 33 611.442 467 1 0 -50.3466 -86.5663 -175.85 - 33 378.393 648 0 1 -50.3419 -86.4713 -204.45 - 33 350.005 467 0 0 -50.3434 -86.4657 -205.85 - 33 115.302 613 6 0 17.7654 -57.3951 -26.25 - 33 14.8892 986 6 1 17.2853 -57.5844 -24.85 - 33 101.484 985 6 1 17.2499 -57.6033 -24.7746 - 33 24.5854 984 6 1 17.0499 -57.6609 -24.4967 - 33 121.709 646 0 1 -50.7242 -86.2565 -204.45 - 33 142.284 469 0 0 -50.7036 -86.2182 -205.85 - 33 131.736 648 6 0 -152.353 -50.3878 -26.25 - 33 9.08946 139 6 1 -152.158 -52.9934 -24.85 - 33 42.202 140 6 1 -152.15 -53.0111 -24.8338 - 33 88.8321 641 6 0 -151.66 -51.7543 -25.8501 - 33 141.16 640 6 0 -151.662 -51.85 -25.9336 - 33 18.6398 466 1 0 -50.2467 -86.65 -176.2 - 33 179.074 540 1 0 -37.4689 -71.8597 -176.25 - 33 55.8365 541 1 0 -37.4806 -71.85 -176.223 - 33 247.968 539 1 0 -37.526 -72.05 -175.904 - 33 119.093 649 2 1 -50.092 -86.4354 -144.45 - 33 140.529 468 2 0 -50.041 -86.4439 -145.85 - 33 124.953 655 1 1 -48.907 -86.5221 -174.45 - 33 120.411 664 0 1 -47.1952 -86.9368 -204.45 - 33 163.132 465 0 0 -47.1277 -86.9367 -205.85 - 33 113.954 468 1 0 -50.3841 -86.3755 -175.85 - 33 125.732 470 0 0 -50.3089 -86.0111 -205.85 - 33 14.8319 545 1 0 -47.7703 -70.8833 -175.85 - 33 43.7841 546 1 0 -47.7642 -70.85 -175.853 - 33 124.712 663 1 1 -47.2666 -68.9218 -174.85 - 33 30.8055 664 1 1 -47.25 -68.9011 -174.837 - 33 233.335 364 3 1 -107.15 58.2043 -114.806 - 33 130.215 465 1 0 -50.1624 -87.0286 -175.85 - 33 237.331 464 1 0 -50.2862 -87.05 -176.087 - 33 46.1956 602 1 0 -58.3468 -59.6236 -176.25 - 33 28.7346 759 1 0 -113.836 -28.2246 -176.25 - 33 19.6899 1375 10 0 177.778 95.3056 93.751 - 33 100.67 1376 10 0 177.741 95.35 93.8262 - 33 67.9369 1377 10 0 177.534 95.55 94.0552 - 33 0.179429 1378 10 0 177.432 95.7501 94.1498 - 33 44.1041 1782 10 1 176.615 98.4775 95.15 - 33 129.888 1781 10 1 176.55 98.6021 95.1823 - 33 105.844 1780 10 1 176.35 98.7939 95.256 - 33 61.4569 1779 10 1 176.15 99.0172 95.3524 - 33 67.4529 1778 10 1 175.95 99.1022 95.3681 - 33 87.8026 1777 10 1 175.75 99.1069 95.3598 - 33 44.3972 1776 10 1 175.55 99.111 95.4629 -Number of digits in this event = 34 -Using G4ParticleGun ... -5.53322 LIN -e- -Event: 34 -Number of tracker hits in this event = 152 - 34 262.706 700 11 1 -39.932 -43.2945 125.55 - 34 135.108 683 11 0 -39.9317 -43.2955 124.15 - 34 141.009 700 10 1 -39.9224 -43.3181 95.55 - 34 105.57 683 10 0 -39.9208 -43.3187 94.15 - 34 108.851 700 9 1 -39.8896 -43.3326 65.55 - 34 132.118 683 9 0 -39.8879 -43.3331 64.15 - 34 331.033 700 8 1 -39.8546 -43.3392 35.55 - 34 317.312 683 8 0 -39.8506 -43.3402 34.15 - 34 125.025 701 7 1 -39.7677 -43.3635 5.55 - 34 123.005 683 7 0 -39.764 -43.3657 4.15 - 34 126.941 701 6 1 -39.698 -43.4074 -24.45 - 34 120.461 683 6 0 -39.6948 -43.4098 -25.85 - 34 98.4249 702 5 1 -39.6289 -43.4675 -54.45 - 34 89.9332 682 5 0 -39.6275 -43.4707 -55.85 - 34 217.286 702 4 1 -39.5939 -43.5311 -84.45 - 34 551.036 682 4 0 -39.5911 -43.5343 -85.85 - 34 188.282 702 3 1 -39.5341 -43.601 -114.45 - 34 180.488 682 3 0 -39.5322 -43.6028 -115.85 - 34 126.957 702 2 1 -39.4935 -43.6386 -144.45 - 34 225.715 682 2 0 -39.4916 -43.6382 -145.85 - 34 99.9955 703 1 1 -39.4487 -43.6286 -174.45 - 34 135.529 682 1 0 -39.4487 -43.6304 -175.85 - 34 103.528 703 0 1 -39.4383 -43.6554 -204.45 - 34 216.466 681 0 0 -39.4409 -43.6551 -205.85 - 34 76.3998 703 4 1 -39.4499 -43.723 -84.7094 - 34 97.9016 680 4 0 -38.8654 -44.0422 -85.85 - 34 78.9759 679 4 0 -38.8478 -44.05 -85.8858 - 34 171.645 681 4 0 -38.7005 -43.85 -85.9672 - 34 27.7147 683 4 0 -39.179 -43.45 -85.905 - 34 442.799 701 4 1 -39.8084 -43.0679 -84.85 - 34 219.567 683 5 0 -39.9129 -43.4455 -55.926 - 34 118.112 705 3 1 -39.028 -44.3991 -114.45 - 34 108.338 678 3 0 -39.0016 -44.399 -115.85 - 34 196.693 707 2 1 -38.4535 -44.5632 -144.45 - 34 162.304 677 2 0 -38.4779 -44.58 -145.85 - 34 103.43 705 1 1 -38.9673 -44.9722 -174.45 - 34 123.172 675 1 0 -38.9596 -45.0194 -175.85 - 34 99.2761 705 0 1 -39.0078 -45.8021 -204.451 - 34 98.0387 670 0 0 -39.0371 -45.8607 -205.85 - 34 64.8408 714 0 1 -37.2068 -44.2392 -204.45 - 34 126.097 715 0 1 -37.05 -44.2666 -204.617 - 34 2.61717 716 0 1 -36.8497 -44.3254 -204.839 - 34 0.554147 676 0 0 -35.986 -44.8489 -205.85 - 34 158.503 675 0 0 -35.9838 -44.8502 -205.852 - 34 11.8088 674 0 0 -35.7294 -45.05 -206.212 - 34 123.922 677 0 0 0.132397 -44.497 -206.25 - 34 507.576 678 0 0 0.234073 -44.45 -206.189 - 34 33.0341 679 0 0 0.555248 -44.25 -205.939 - 34 22.47 906 0 1 1.39125 -43.972 -204.849 - 34 83.2239 907 0 1 1.45 -43.9494 -204.788 - 34 49.9066 908 0 1 1.65 -43.8613 -204.623 - 34 50.0358 909 0 1 1.85005 -43.8152 -204.549 - 34 149.924 911 0 1 2.25512 -43.6861 -204.45 - 34 10.7095 912 0 1 2.45 -43.6258 -204.696 - 34 60.6107 685 0 0 2.38134 -42.859 -205.85 - 34 108.511 686 0 0 2.38127 -42.85 -205.862 - 34 30.8695 423 0 0 -23.9264 -95.5191 -206.25 - 34 1.82194 422 0 0 -23.9967 -95.55 -206.246 - 34 64.6787 713 0 1 -37.3059 -44.1995 -204.45 - 34 74.0023 712 0 1 -37.45 -44.2068 -204.641 - 34 1.20347 43 0 0 -139.214 -171.544 -206.25 - 34 82.844 42 0 0 -139.218 -171.55 -206.249 - 34 78.2929 41 0 0 -139.329 -171.75 -206.206 - 34 54.1589 40 0 0 -139.442 -171.95 -206.142 - 34 70.1288 39 0 0 -139.533 -172.15 -206.065 - 34 55.3712 38 0 0 -139.593 -172.35 -205.999 - 34 50.7664 37 0 0 -139.625 -172.55 -205.917 - 34 141.993 201 0 1 -139.754 -174.437 -204.85 - 34 27.3118 202 0 1 -139.75 -174.866 -204.51 - 34 51.9632 143 1 0 -146.025 -151.457 -176.25 - 34 158.434 144 1 0 -146.055 -151.35 -176.109 - 34 5.82764 145 1 0 -146.161 -151.15 -175.871 - 34 296.325 166 1 1 -146.782 -150.379 -174.85 - 34 137.696 700 4 1 -39.8679 -43.637 -84.45 - 34 119.124 698 3 1 -40.4288 -44.062 -114.45 - 34 181.319 679 3 0 -40.432 -44.09 -115.85 - 34 152.781 697 2 1 -40.4947 -44.6936 -144.45 - 34 186.437 676 2 0 -40.5131 -44.7216 -145.85 - 34 504.559 695 1 1 -40.9822 -45.271 -174.45 - 34 115.208 673 1 0 -41.0005 -45.3148 -175.85 - 34 111.397 693 0 1 -41.2936 -46.2198 -204.45 - 34 142.367 668 0 0 -41.3068 -46.2532 -205.85 - 34 174.336 654 1 0 -40.9217 -49.0741 -175.85 - 34 216.768 314 4 1 -117.212 -106.355 -84.45 - 34 155.362 692 1 0 -44.4277 -41.5811 -175.85 - 34 159.826 713 3 0 -44.8713 -37.3973 -116.25 - 34 9.65998 670 3 1 -46.0342 -34.2142 -114.85 - 34 112.164 669 3 1 -46.05 -34.182 -114.839 - 34 72.7595 737 3 0 -46.7287 -32.5348 -115.85 - 34 128.72 738 3 0 -46.7267 -32.45 -115.952 - 34 97.637 739 3 0 -46.6773 -32.25 -116.179 - 34 44.8911 736 3 0 -64.9455 -32.8172 -116.25 - 34 111.812 735 3 0 -64.9419 -32.85 -116.178 - 34 141.574 758 3 0 -13.6875 -28.2789 -116.25 - 34 43.2656 759 3 0 -13.6515 -28.25 -116.202 - 34 190.036 757 3 0 -13.3515 -28.45 -115.978 - 34 278.441 756 3 0 -13.2273 -28.65 -115.949 - 34 97.301 699 7 1 -40.0777 -43.4984 5.55 - 34 113.539 682 7 0 -40.0791 -43.5204 4.15 - 34 102.42 699 6 1 -40.2063 -43.8644 -24.45 - 34 108.351 680 6 0 -40.2052 -43.9112 -25.85 - 34 188.686 699 5 1 -40.1478 -44.8781 -54.45 - 34 118.004 675 5 0 -40.1018 -44.9607 -55.85 - 34 121.264 704 4 1 -39.0974 -46.5362 -84.45 - 34 111.595 667 4 0 -39.0605 -46.6014 -85.85 - 34 102.662 709 3 1 -38.2429 -47.9317 -114.45 - 34 137.998 660 3 0 -38.2348 -48.0084 -115.85 - 34 126.088 710 2 1 -37.9159 -49.7599 -144.45 - 34 111.401 650 2 0 -37.8691 -49.8527 -145.85 - 34 109.094 716 1 1 -36.7725 -51.8424 -174.45 - 34 107.535 640 1 0 -36.6738 -51.9541 -175.85 - 34 123.233 727 0 1 -34.6425 -54.332 -204.45 - 34 2.56882 628 0 0 -34.5308 -54.4482 -205.85 - 34 93.1118 627 0 0 -34.5291 -54.45 -205.872 - 34 28.0951 665 4 0 -39.0094 -47.0053 -85.85 - 34 94.8819 664 4 0 -38.9973 -47.05 -85.9522 - 34 102.436 725 3 1 -34.9902 -57.6887 -114.45 - 34 12.0527 726 3 1 -34.8499 -57.6591 -114.822 - 34 120.638 612 3 0 -34.4569 -57.5793 -115.85 - 34 41.7095 802 2 1 -19.5491 -56.7596 -144.45 - 34 79.3528 803 2 1 -19.45 -56.7826 -144.583 - 34 162.301 617 2 0 -18.8041 -56.5439 -145.85 - 34 9.42854 939 6 1 7.85 -56.0837 -24.8257 - 34 1.76117 634 6 0 6.78626 -53.25 -26.073 - 34 2.81182 938 6 1 7.82519 -48.1116 -24.85 - 34 44.1145 668 6 0 6.0351 -46.45 -25.8917 - 34 130.628 697 7 1 -40.4542 -43.1753 5.55 - 34 203.007 684 7 0 -40.5102 -43.1289 4.15 - 34 135.009 690 6 1 -41.9727 -41.9385 -24.45 - 34 139.782 690 6 0 -42.0005 -41.9147 -25.85 - 34 221.787 687 5 1 -42.5002 -41.3422 -54.45 - 34 103.527 693 5 0 -42.492 -41.3183 -55.85 - 34 116.223 687 4 1 -42.5599 -40.7839 -84.45 - 34 107.117 696 4 0 -42.5 -40.7204 -85.85 - 34 149.314 695 3 1 -41.0325 -39.3997 -114.45 - 34 99.899 703 3 0 -40.9875 -39.2891 -115.85 - 34 158.661 698 2 1 -40.3031 -37.0623 -144.45 - 34 188.392 715 2 0 -40.2682 -36.9366 -145.85 - 34 108.287 702 1 1 -39.5395 -34.6084 -174.45 - 34 128.465 727 1 0 -39.4767 -34.4818 -175.85 - 34 15.2229 728 1 0 -39.4622 -34.45 -176.197 - 34 187.406 708 0 1 -38.3166 -32.2223 -204.45 - 34 15.629 739 0 0 -38.3217 -32.0573 -205.85 - 34 93.4124 740 0 0 -38.3217 -32.05 -205.912 - 34 59.5592 716 2 0 -40.2533 -36.85 -146.05 - 34 137.395 805 2 0 -58.9918 -19.0328 -146.25 - 34 468.695 605 2 1 -58.9364 -18.7636 -144.85 - 34 184.278 606 2 1 -58.85 -18.7751 -144.652 - 34 82.8237 699 11 1 -40.0501 -43.355 125.327 - 34 89.3268 698 11 1 -40.25 -43.3889 125.285 - 34 194.717 697 11 1 -40.45 -43.3753 125.342 - 34 49.1766 696 11 1 -40.65 -43.4322 125.409 -Number of digits in this event = 69 -Using G4ParticleGun ... -1.0389 LIN -e- -Event: 35 -Number of tracker hits in this event = 218 - 35 100.313 607 11 1 -58.6468 51.7958 125.55 - 35 6.54816 606 11 1 -58.65 51.7956 125.187 - 35 140.784 1158 11 0 -58.6594 51.7951 124.15 - 35 145.04 605 10 1 -58.9267 51.7529 95.55 - 35 317.371 1158 10 0 -58.9405 51.7505 94.15 - 35 118.438 604 9 1 -59.1939 51.6989 65.55 - 35 123.669 1158 9 0 -59.1999 51.6832 64.15 - 35 109.031 603 8 1 -59.2993 51.3553 35.55 - 35 113.34 1156 8 0 -59.3012 51.3323 34.15 - 35 201.891 603 7 1 -59.397 50.8684 5.55 - 35 149.812 1153 7 0 -59.4 50.8308 4.15 - 35 156.314 602 6 1 -59.4624 50.0527 -24.45 - 35 193.043 1149 6 0 -59.4583 50.012 -25.85 - 35 585.485 603 5 1 -59.3741 49.1228 -54.45 - 35 110.43 1145 5 0 -59.3793 49.0725 -55.85 - 35 103.448 602 4 1 -59.5111 48.0019 -84.45 - 35 121.704 1139 4 0 -59.5113 47.9525 -85.85 - 35 274.075 602 3 1 -59.5027 47.0181 -114.45 - 35 146.737 1134 3 0 -59.497 46.9899 -115.85 - 35 140.637 602 2 1 -59.4689 46.4567 -144.45 - 35 140.134 1131 2 0 -59.4618 46.406 -145.85 - 35 127.22 603 1 1 -59.3225 45.3537 -174.45 - 35 130.088 1126 1 0 -59.3203 45.3359 -175.85 - 35 251.049 604 0 1 -59.1779 44.8943 -204.45 - 35 148.464 1124 0 0 -59.1691 44.8796 -205.85 - 35 58.116 1180 1 0 114.305 56.25 -176.072 - 35 113.273 602 1 1 -59.45 45.5715 -174.492 - 35 78.1219 1127 1 0 -59.5721 45.6359 -175.85 - 35 41.8567 1128 1 0 -59.599 45.65 -176.122 - 35 138.601 590 0 1 -62.0069 46.8083 -204.45 - 35 347.75 1134 0 0 -61.9388 47.0043 -205.85 - 35 109.273 1135 0 0 -61.9259 47.05 -206.133 - 35 261.796 601 1 1 -59.65 45.488 -174.48 - 35 58.0398 600 1 1 -59.8503 45.539 -174.572 - 35 63.1687 599 1 1 -60.05 45.5631 -174.621 - 35 73.8584 598 1 1 -60.2508 45.5142 -174.657 - 35 67.2198 597 1 1 -60.45 45.4744 -174.713 - 35 128.328 596 1 1 -60.65 45.3585 -174.837 - 35 169.521 1124 1 0 -62.1804 44.8767 -175.85 - 35 182.114 1466 1 0 -107.851 113.415 -176.25 - 35 380.347 1467 1 0 -108.004 113.55 -176.163 - 35 296.355 1468 1 0 -108.386 113.75 -175.965 - 35 239.398 353 1 1 -109.411 113.994 -174.849 - 35 118.238 1135 3 0 -60.0357 47.05 -115.947 - 35 114.889 1136 3 0 -60.1288 47.25 -116.101 - 35 330.875 1137 3 0 -60.277 47.4502 -116.116 - 35 66.3769 1138 3 0 -60.3125 47.65 -116.119 - 35 36.6482 1361 3 0 145.585 92.3981 -116.25 - 35 72.36 1362 3 0 146.229 92.55 -115.921 - 35 101.064 1059 0 0 -48.1139 32.0278 -206.25 - 35 35.2044 1058 0 0 -48.0173 31.85 -205.964 - 35 78.7751 662 0 1 -47.55 30.9691 -204.85 - 35 95.8046 663 0 1 -47.45 30.7807 -204.612 - 35 306.541 1121 1 0 -59.7516 44.3307 -175.85 - 35 124.489 601 0 1 -59.7726 43.9798 -204.45 - 35 249.596 1119 0 0 -59.8764 43.9388 -205.85 - 35 61.9942 1246 0 0 -5.41623 69.3552 -206.25 - 35 82.8498 1122 1 0 -59.8745 44.45 -175.863 - 35 24.9954 1150 6 0 -59.4552 50.05 -26.2279 - 35 197.207 1248 6 0 -46.9815 69.696 -26.2497 - 35 75.1084 1247 6 0 -46.4789 69.65 -26.0107 - 35 130.161 1246 6 0 -46.3202 69.45 -26.0199 - 35 312.993 1245 6 0 -46.4095 69.2499 -26.1582 - 35 146.789 603 6 1 -59.45 49.9707 -24.7847 - 35 70.5656 602 5 1 -59.4516 49.1803 -54.45 - 35 69.1949 601 5 1 -59.6514 49.0903 -54.5761 - 35 91.9522 600 5 1 -59.8501 48.9822 -54.6969 - 35 5.75461 599 5 1 -60.0504 48.8856 -54.8343 - 35 99.8622 1139 5 0 -61.9348 48.0362 -55.85 - 35 119.004 1138 5 0 -62.253 47.8499 -56.0019 - 35 112.5 1137 5 0 -62.6107 47.65 -56.106 - 35 564.835 1136 5 0 -62.9564 47.45 -56.1175 - 35 282.984 1135 5 0 -63.3781 47.25 -56.123 - 35 606.918 1134 5 0 -63.8789 47.0497 -56.1989 - 35 389.172 1133 5 0 -64.3043 46.85 -56.2007 - 35 7.25532 545 5 1 -71.0308 47.2271 -54.85 - 35 42.74 544 5 1 -71.05 47.2279 -54.8453 - 35 25.5941 935 5 0 -144.464 7.11854 -56.2499 - 35 84.173 934 5 0 -144.471 7.05 -56.1955 - 35 87.4638 933 5 0 -144.44 6.84983 -56.0008 - 35 44.2741 178 5 1 -144.363 6.33191 -54.85 - 35 84.4526 179 5 1 -144.35 6.26677 -54.6986 - 35 32.3941 941 5 0 -64.7144 8.36058 -56.25 - 35 109.815 1143 5 0 -59.4131 48.8409 -55.85 - 35 129.412 607 4 1 -58.5692 41.7416 -84.4501 - 35 124.306 1106 4 0 -58.6442 41.3701 -85.85 - 35 5.42903 610 3 1 -58.0491 35.3355 -114.45 - 35 105.609 609 3 1 -58.05 35.3325 -114.466 - 35 48.1553 1075 3 0 -58.0888 35.0778 -115.85 - 35 92.7602 1074 3 0 -58.09 35.05 -116.005 - 35 122.634 616 2 1 -56.7773 30.076 -144.45 - 35 17.6441 1046 2 0 -56.79 29.2827 -145.85 - 35 118.609 1045 2 0 -56.7902 29.25 -145.908 - 35 0.978649 1044 2 0 -56.7992 29.05 -146.247 - 35 136.806 606 1 1 -58.6634 9.00589 -174.45 - 35 19.9859 605 1 1 -58.85 8.83288 -174.811 - 35 180.362 940 1 0 -59.3631 8.24989 -175.85 - 35 32.6258 939 1 0 -59.5377 8.04995 -176.177 - 35 127.057 770 1 0 -103.448 -25.8548 -176.25 - 35 60.3408 769 1 0 -103.773 -26.05 -175.958 - 35 87.7639 376 1 1 -104.774 -26.9954 -174.85 - 35 106.297 375 1 1 -104.95 -27.1459 -174.665 - 35 9.64492 374 1 1 -105.15 -27.2919 -174.461 - 35 59.7616 613 2 0 -92.2155 -57.33 -146.25 - 35 83.5664 612 2 0 -92.1554 -57.4501 -146.135 - 35 49.4853 611 2 0 -92.0528 -57.6502 -145.954 - 35 238.952 442 2 1 -91.7277 -59.0225 -144.85 - 35 129.712 594 3 0 -100.8 -61.1327 -116.25 - 35 108.138 393 3 1 -101.364 -61.455 -114.85 - 35 42.1865 630 4 0 -111.727 -53.8908 -86.25 - 35 81.9063 631 4 0 -111.766 -53.85 -86.106 - 35 15.8378 339 4 1 -112.331 -53.7392 -84.85 - 35 99.5922 338 4 1 -112.35 -53.7367 -84.8059 - 35 132.615 631 5 0 -85.0076 -53.6978 -56.25 - 35 16.4064 481 5 1 -83.6938 -53.815 -54.85 - 35 89.1584 482 5 1 -83.6497 -53.819 -54.7999 - 35 41.8771 483 5 1 -83.45 -53.8215 -54.5552 - 35 128.561 484 5 1 -83.2062 -53.912 -54.45 - 35 131.42 627 5 0 -82.725 -54.5158 -55.8501 - 35 17.0826 626 5 0 -82.4606 -54.65 -56.1946 - 35 9.07996 592 4 1 -61.6264 -65.8847 -84.45 - 35 79.5184 591 4 1 -61.65 -65.9012 -84.4579 - 35 94.9021 590 4 1 -61.85 -66.0412 -84.544 - 35 75.0319 589 4 1 -62.0502 -66.1674 -84.6354 - 35 99.161 588 4 1 -62.25 -66.205 -84.7274 - 35 102.054 587 4 1 -62.4502 -66.149 -84.7923 - 35 69.2374 586 4 1 -62.6503 -66.0018 -84.7275 - 35 198.614 585 4 1 -62.8501 -65.8707 -84.678 - 35 101.886 580 4 0 -62.6897 -64.0361 -85.8501 - 35 86.1754 581 4 0 -62.7243 -63.85 -86.1021 - 35 287.42 582 4 0 -62.8255 -63.65 -86.1819 - 35 82.0821 578 4 1 -64.2787 -63.8094 -84.85 - 35 143.326 579 4 1 -64.25 -63.8606 -84.7655 - 35 139.346 1134 1 0 -60.8081 46.9242 -175.85 - 35 109.161 588 0 1 -62.4137 48.1787 -204.45 - 35 129.574 1139 0 0 -62.4515 47.9902 -205.85 - 35 110.139 1066 2 0 -59.0909 33.4393 -146.25 - 35 66.5708 1065 2 0 -59.0447 33.25 -145.937 - 35 269.586 607 2 1 -58.6483 27.5268 -144.85 - 35 295.069 603 4 1 -59.4205 49.5329 -84.45 - 35 165.858 1147 4 0 -59.4412 49.6434 -85.85 - 35 111.779 1148 4 0 -59.4427 49.65 -85.9269 - 35 203.252 596 3 1 -60.7506 52.9745 -114.45 - 35 159.679 1164 3 0 -61.0339 52.8882 -115.85 - 35 51.6891 567 2 1 -66.6292 50.9425 -144.45 - 35 96.5758 566 2 1 -66.65 50.9504 -144.549 - 35 19.4687 1154 2 0 -66.9068 51.0441 -145.85 - 35 100.491 1155 2 0 -66.9201 51.05 -145.926 - 35 34.3149 538 1 1 -72.4156 53.6306 -174.45 - 35 141.625 537 1 1 -72.45 53.6562 -174.546 - 35 55.0556 1169 1 0 -72.947 54.0113 -175.85 - 35 94.6132 1170 1 0 -73.0034 54.05 -175.994 - 35 18.1227 477 0 1 -84.6297 62.6678 -204.45 - 35 166.05 476 0 1 -84.65 62.6907 -204.517 - 35 58.137 1215 0 0 -85.0664 63.1737 -205.85 - 35 54.0964 1216 0 0 -85.1355 63.25 -206.059 - 35 103.673 600 3 1 -59.9603 50.0642 -114.45 - 35 104.103 1150 3 0 -60.0286 50.209 -115.85 - 35 162.231 593 2 1 -61.3314 51.8842 -144.45 - 35 342.438 1159 2 0 -61.5218 51.9482 -145.85 - 35 112.221 573 1 1 -65.3564 52.0007 -174.45 - 35 193.605 1158 1 0 -65.1568 51.7005 -175.85 - 35 46.5129 1157 1 0 -65.1209 51.65 -176.07 - 35 73.4304 599 0 1 -60.1588 45.8775 -204.45 - 35 87.1892 600 0 1 -60.05 45.8192 -204.606 - 35 63.2141 1126 0 0 -59.1871 45.3137 -205.85 - 35 79.178 1125 0 0 -59.074 45.2499 -206.008 - 35 75.4092 1191 0 0 -71.6104 58.3253 -206.25 - 35 114.354 1192 0 0 -71.7935 58.45 -206.133 - 35 81.9076 1193 0 0 -72.0678 58.65 -205.962 - 35 41.2323 530 0 1 -73.9574 60.1476 -204.85 - 35 90.5304 529 0 1 -74.0501 60.2149 -204.802 - 35 78.8206 528 0 1 -74.25 60.3629 -204.685 - 35 66.3262 527 0 1 -74.45 60.5163 -204.565 - 35 64.8086 1259 1 0 -89.9172 71.9062 -176.25 - 35 1.19126 1260 1 0 -90.1501 72.1285 -175.853 - 35 13.016 447 1 1 -90.7327 72.7338 -174.85 - 35 146.549 446 1 1 -90.75 72.7521 -174.818 - 35 37.7042 444 1 1 -91.2972 72.8025 -174.45 - 35 143.147 443 1 1 -91.3501 72.7416 -174.495 - 35 75.9561 442 1 1 -91.55 72.3422 -174.716 - 35 28.2495 1252 1 0 -92.5313 70.5261 -175.85 - 35 83.1753 1251 1 0 -92.5775 70.45 -175.903 - 35 205.775 1250 1 0 -92.697 70.25 -176.046 - 35 53.2835 1249 1 0 -92.7923 70.0496 -176.175 - 35 11.0326 357 0 1 -108.724 23.2573 -204.45 - 35 128.432 356 0 1 -108.75 23.2543 -204.498 - 35 106.117 1015 0 0 -109.095 23.194 -205.85 - 35 61.2879 179 2 1 -144.15 72.3885 -144.792 - 35 106.177 178 2 1 -144.35 72.3405 -144.651 - 35 85.9124 177 2 1 -144.55 72.2886 -144.64 - 35 54.9174 176 2 1 -144.75 72.1922 -144.519 - 35 62.4776 175 2 1 -144.95 72.1517 -144.516 - 35 31.1757 174 2 1 -145.15 72.1372 -144.5 - 35 94.2752 1639 3 0 -179.418 147.95 -116.18 - 35 330.752 1640 3 0 -179.611 148.15 -116.149 - 35 14.5848 726 0 1 -34.6777 50.0856 -204.85 - 35 217.324 727 0 1 -34.65 50.133 -204.835 - 35 342.37 728 0 1 -34.45 50.4556 -204.735 - 35 137.196 1167 0 0 -34.9266 53.4702 -205.85 - 35 116.989 1168 0 0 -34.9756 53.65 -205.944 - 35 176.292 1169 0 0 -35.0163 53.85 -206.041 - 35 97.1769 1170 0 0 -35.0547 54.0501 -206.125 - 35 40.431 1171 0 0 -35.0324 54.25 -206.191 - 35 17.0332 1172 0 0 -34.9867 54.45 -206.229 - 35 180.154 1567 0 0 -66.2159 133.572 -206.25 - 35 84.5749 562 0 1 -67.4828 133.431 -204.85 - 35 93.9188 561 0 1 -67.65 133.392 -204.622 - 35 49.5414 1164 0 0 -45.9538 52.8973 -206.25 - 35 75.4352 1165 0 0 -46.0043 53.05 -206.117 - 35 60.3024 1166 0 0 -46.1446 53.25 -206.028 - 35 97.3189 604 10 1 -59.05 51.8024 95.4628 - 35 60.4709 603 10 1 -59.2504 51.8495 95.2751 - 35 0.795333 602 10 1 -59.4508 51.8672 95.1518 - 35 49.158 1157 10 0 -61.8367 51.6498 93.8464 - 35 15.1972 502 9 1 -79.6314 33.3368 65.5494 - 35 200.188 501 9 1 -79.65 33.3519 65.5108 - 35 174.066 1069 9 0 -79.1047 33.9233 64.15 -Number of digits in this event = 78 -Using G4ParticleGun ... -9.24493 LIN -e- -Event: 36 -Number of tracker hits in this event = 94 - 36 102.998 1157 11 1 51.4927 32.1878 125.55 - 36 156.409 1060 11 0 51.4924 32.1867 124.15 - 36 178.076 1157 10 1 51.4822 32.1654 95.55 - 36 132.074 1060 10 0 51.4823 32.1638 94.15 - 36 143.348 1157 9 1 51.4813 32.1391 65.55 - 36 242.606 1060 9 0 51.4811 32.138 64.15 - 36 131.02 1157 8 1 51.474 32.1144 35.55 - 36 124.708 1060 8 0 51.4715 32.1124 34.15 - 36 225.129 1156 7 1 51.4237 32.0733 5.55 - 36 137.121 1060 7 0 51.4215 32.0712 4.15 - 36 144.403 1156 6 1 51.373 32.0311 -24.45 - 36 126.334 1059 6 0 51.3701 32.0302 -25.85 - 36 166.15 1156 5 1 51.3059 32.0041 -54.45 - 36 195.168 1059 5 0 51.3033 32.0016 -55.85 - 36 144.696 1156 4 1 51.2546 31.9465 -84.45 - 36 124.672 1059 4 0 51.2525 31.9433 -85.85 - 36 139.396 1155 3 1 51.2064 31.8789 -114.45 - 36 124.235 1059 3 0 51.2043 31.8759 -115.85 - 36 109.842 1155 2 1 51.1551 31.8167 -144.45 - 36 108.109 1058 2 0 51.1529 31.8123 -145.85 - 36 139.01 1155 1 1 51.1057 31.7232 -174.45 - 36 125.715 1058 1 0 51.1021 31.7185 -175.85 - 36 107.575 1154 0 1 51.0329 31.6252 -204.45 - 36 101.467 1057 0 0 51.0293 31.6182 -205.85 - 36 50.3037 858 6 1 -8.43213 74.1258 -24.85 - 36 191.858 857 6 1 -8.45007 74.1567 -24.7119 - 36 48.1957 1157 7 1 51.45 32.0361 5.39928 - 36 144.534 1058 9 0 52.401 31.8377 64.15 - 36 187.914 1162 9 1 52.5441 30.9383 65.15 - 36 7.62962 1156 10 1 51.45 32.241 95.1879 - 36 118.359 1062 10 0 51.299 32.4688 94.1498 - 36 60.5938 1132 9 1 46.5526 40.5195 65.5499 - 36 52.0619 1133 9 1 46.6501 40.6395 65.3125 - 36 149.411 1106 9 0 47.1446 41.2543 64.15 - 36 5.35385 1107 9 0 47.2916 41.4505 63.7753 - 36 184.581 1186 8 1 57.2653 57.2982 35.55 - 36 24.7376 1187 8 1 57.4501 57.3993 35.2122 - 36 68.8987 1188 8 0 58.036 57.7569 34.15 - 36 77.7797 1189 8 0 58.1845 57.85 33.9098 - 36 139.819 1297 7 1 79.4723 68.7998 5.55 - 36 76.8019 1245 7 0 80.0375 69.1774 4.15 - 36 26.9192 1246 7 0 80.1692 69.25 3.82956 - 36 28.0181 1360 6 1 92.3198 74.0916 -24.45 - 36 91.7364 1361 6 1 92.35 74.1075 -24.5061 - 36 135.275 1271 6 0 93.0581 74.3733 -25.8501 - 36 130.519 1441 5 1 108.5 82.0523 -54.45 - 36 170.496 1310 5 0 108.515 82.2253 -55.85 - 36 151.502 1271 5 0 108.139 74.4222 -56.2498 - 36 166.094 1436 5 1 107.535 73.6564 -54.85 - 36 14.631 1341 6 1 88.45 46.3986 -24.7556 - 36 259.188 1157 5 1 51.4855 32.1862 -54.45 - 36 223.935 1060 5 0 51.4879 32.174 -55.85 - 36 140.16 1157 4 1 51.5701 31.8451 -84.45 - 36 271.746 1058 4 0 51.5769 31.8258 -85.85 - 36 127.231 1158 3 1 51.7481 31.4003 -114.45 - 36 127.194 1056 3 0 51.7485 31.3885 -115.85 - 36 146.775 1158 2 1 51.764 31.1118 -144.45 - 36 113.584 1055 2 0 51.768 31.0968 -145.85 - 36 263.841 1158 1 1 51.7821 30.7751 -174.45 - 36 141.144 1053 1 0 51.7805 30.7701 -175.85 - 36 179.394 1158 0 1 51.7298 30.6747 -204.45 - 36 112.316 1053 0 0 51.7311 30.6782 -205.85 - 36 140.21 1051 0 0 51.9277 30.4305 -205.85 - 36 173.383 1156 1 1 51.3733 32.0623 -174.45 - 36 112.363 1060 1 0 51.4652 32.0917 -175.85 - 36 41.8881 1167 0 1 53.631 34.4082 -204.45 - 36 94.2687 1168 0 1 53.65 34.4205 -204.513 - 36 124.447 1073 0 0 54.1044 34.7369 -205.85 - 36 93.1747 1157 1 1 51.45 32.1329 -174.476 - 36 42.1051 1159 1 1 51.85 32.6696 -174.785 - 36 70.4252 1072 1 0 53.0573 34.4568 -175.85 - 36 74.1316 1073 1 0 53.1787 34.65 -175.948 - 36 187.737 1074 1 0 53.3056 34.85 -176.011 - 36 68.8377 1075 1 0 53.4386 35.05 -176.053 - 36 78.6732 1076 1 0 53.5838 35.2511 -176.112 - 36 119.749 1077 1 0 53.7542 35.45 -176.171 - 36 99.4151 1078 1 0 53.9311 35.65 -176.212 - 36 101.145 1079 1 0 54.0961 35.85 -176.225 - 36 4.15625 1080 1 0 54.2664 36.0509 -176.248 - 36 124.105 734 1 0 73.3624 -33.1109 -176.25 - 36 131.926 1159 4 1 52.0103 31.7102 -84.45 - 36 110.021 1159 3 1 51.9372 30.5405 -114.45 - 36 99.7503 1052 3 0 51.9577 30.4526 -115.85 - 36 132.464 1051 3 0 51.9583 30.45 -115.891 - 36 134.533 1161 2 1 52.3054 28.9356 -144.45 - 36 148.21 1044 2 0 52.3355 28.9205 -145.85 - 36 172.666 1165 1 1 53.2113 28.5602 -174.45 - 36 105.666 1042 1 0 53.2909 28.631 -175.85 - 36 2.74771 1043 1 0 53.312 28.65 -176.233 - 36 198.426 1174 0 1 54.9582 30.1448 -204.45 - 36 124.398 1050 0 0 55.0272 30.2186 -205.85 - 36 69.6372 1053 3 0 52.1623 30.65 -115.915 - 36 274.486 1054 3 0 52.3046 30.8503 -115.932 - 36 191.369 1055 3 0 52.4202 31.05 -116.132 -Number of digits in this event = 56 -Using G4ParticleGun ... -2.18239 LIN -e- -Event: 37 -Number of tracker hits in this event = 19 - 37 278.064 171 7 1 -145.949 -9.25744 5.55 - 37 170.121 853 7 0 -145.948 -9.25361 4.15 - 37 118.122 171 6 1 -145.923 -9.17633 -24.45 - 37 240.187 854 6 0 -145.922 -9.17275 -25.85 - 37 229.549 171 5 1 -145.928 -9.10293 -54.45 - 37 118.593 854 5 0 -145.926 -9.10081 -55.85 - 37 127.656 171 4 1 -145.875 -9.06094 -84.45 - 37 113.782 854 4 0 -145.874 -9.06012 -85.85 - 37 138.024 171 3 1 -145.844 -9.03081 -114.45 - 37 129.508 855 3 0 -145.842 -9.03142 -115.85 - 37 141.18 171 2 1 -145.804 -9.03697 -144.45 - 37 107.846 855 2 0 -145.765 -9.0263 -145.85 - 37 153.708 175 1 1 -145.08 -8.63684 -174.45 - 37 141.161 857 1 0 -145.145 -8.63907 -175.85 - 37 184.63 168 0 1 -146.491 -8.35761 -204.45 - 37 134.427 858 0 0 -146.557 -8.4006 -205.85 - 37 46.5672 1119 4 0 -159.461 43.9285 -86.25 - 37 135.886 1120 4 0 -159.508 44.0506 -86.2194 - 37 292.609 1121 4 0 -159.523 44.25 -86.0084 -Number of digits in this event = 16 -Using G4ParticleGun ... -2.96546 LIN -e- -Event: 38 -Number of tracker hits in this event = 57 - 38 165.734 756 11 1 -28.7622 65.8338 125.55 - 38 106.994 1228 11 0 -28.7599 65.833 124.15 - 38 160.636 756 10 1 -28.727 65.8246 95.55 - 38 147.21 1228 10 0 -28.723 65.8246 94.15 - 38 157.273 757 9 1 -28.6448 65.8173 65.55 - 38 131.014 1228 9 0 -28.6419 65.8165 64.15 - 38 126.517 757 8 1 -28.5867 65.8142 35.55 - 38 130.861 1228 8 0 -28.5844 65.8159 34.15 - 38 375.987 757 7 1 -28.5404 65.8654 5.55 - 38 102.136 1229 7 0 -28.539 65.8681 4.15 - 38 115.488 757 6 1 -28.5049 65.9236 -24.45 - 38 284.611 1229 6 0 -28.5087 65.9292 -25.85 - 38 133.739 757 5 1 -28.5854 66.0434 -54.45 - 38 78.8715 1229 5 0 -28.5892 66.0488 -55.85 - 38 21.6897 1230 5 0 -28.5901 66.05 -56.16 - 38 125.367 756 4 1 -28.6747 66.1621 -84.45 - 38 126.688 1230 4 0 -28.6788 66.1725 -85.85 - 38 264.365 756 3 1 -28.7833 66.3666 -114.45 - 38 129.971 1231 3 0 -28.7862 66.3747 -115.85 - 38 143.902 756 2 1 -28.8384 66.5323 -144.45 - 38 117.715 1232 2 0 -28.8403 66.5372 -145.85 - 38 103.814 755 1 1 -28.8708 66.6501 -174.45 - 38 110.784 1233 1 0 -28.8625 66.6629 -175.85 - 38 332.002 756 0 1 -28.7806 66.8702 -204.45 - 38 244.365 1234 0 0 -28.7766 66.8782 -205.85 - 38 218.163 1233 0 0 -28.6682 66.8332 -205.85 - 38 87.9036 757 0 1 -28.6497 66.9835 -204.538 - 38 20.2583 758 0 1 -28.45 67.018 -204.8 - 38 167.77 1236 0 0 -27.6606 67.3147 -205.85 - 38 79.0882 1166 4 0 -51.2607 53.3465 -86.25 - 38 141.911 1165 4 0 -51.445 53.25 -86.0643 - 38 125.537 630 4 1 -53.862 52.0221 -84.85 - 38 53.83 629 4 1 -54.05 51.9315 -84.7765 - 38 60.8889 628 4 1 -54.2502 51.8504 -84.6937 - 38 112.088 627 4 1 -54.4501 51.7762 -84.6137 - 38 124.141 626 4 1 -54.6501 51.7298 -84.4932 - 38 62.1318 1124 5 0 -60.4271 44.9327 -56.2495 - 38 64.8919 1123 5 0 -60.4474 44.85 -56.0208 - 38 23.6169 598 5 1 -60.2615 44.7797 -54.85 - 38 83.8207 599 5 1 -60.2499 44.779 -54.7592 - 38 141.59 1230 3 0 -28.8685 66.2067 -115.85 - 38 185.369 741 2 1 -31.8196 65.7762 -144.45 - 38 44.3911 740 2 1 -31.85 65.7824 -144.755 - 38 119.718 1228 2 0 -31.957 65.7962 -145.85 - 38 120.046 725 1 1 -34.8653 65.8707 -174.45 - 38 136.298 1229 1 0 -34.9643 65.861 -175.85 - 38 348.152 716 0 1 -36.6898 65.3416 -204.45 - 38 147.64 1226 0 0 -36.8718 65.3063 -205.85 - 38 32.2942 1289 0 0 -36.871 77.85 -206.022 - 38 17.3681 596 1 0 -26.9265 -60.65 -176.238 - 38 344.601 595 1 0 -26.9237 -60.85 -176.084 - 38 40.4408 1236 7 0 -27.5559 67.3117 4.15 - 38 24.925 765 7 1 -27.0273 66.6903 5.15008 - 38 8.17194 1233 7 0 -26.5785 66.6568 4.15 - 38 161.499 756 7 1 -28.65 66.451 5.48941 - 38 19.0545 755 7 1 -28.8501 66.7508 5.21572 - 38 307.254 1235 7 0 -29.183 67.1046 4.15 -Number of digits in this event = 33 -Using G4ParticleGun ... -4.56744 LIN -e- -Event: 39 -Number of tracker hits in this event = 21 - 39 183.53 241 7 1 -131.799 65.1517 5.55 - 39 114.983 1225 7 0 -131.797 65.1512 4.15 - 39 137.234 241 6 1 -131.758 65.1369 -24.45 - 39 228.288 1225 6 0 -131.759 65.1355 -25.85 - 39 201.551 241 5 1 -131.763 65.1008 -54.45 - 39 115.236 1225 5 0 -131.763 65.099 -55.85 - 39 123.719 241 4 1 -131.768 65.0661 -84.45 - 39 112.779 1225 4 0 -131.769 65.0643 -85.85 - 39 113.8 241 3 1 -131.801 65.0224 -114.45 - 39 111.935 1224 3 0 -131.806 65.0233 -115.85 - 39 121.379 241 2 1 -131.912 65.0484 -144.45 - 39 129.786 1225 2 0 -131.918 65.0506 -145.85 - 39 116.423 240 1 1 -132.052 65.0948 -174.45 - 39 99.1798 1225 1 0 -132.054 65.102 -175.85 - 39 126.601 240 0 1 -132.12 65.2779 -204.45 - 39 124.441 1226 0 0 -132.127 65.3027 -205.85 - 39 148.456 1294 8 0 -122.22 78.9519 33.75 - 39 123.53 1293 8 0 -122.297 78.85 33.9623 - 39 4.05554 242 0 1 -131.737 65.0316 -204.843 - 39 181.988 1225 0 0 -131.713 65.0512 -205.85 - 39 146.232 1224 0 0 -131.754 65.0173 -205.852 -Number of digits in this event = 16 -Using G4ParticleGun ... -4.29215 LIN -e- -Event: 40 -Number of tracker hits in this event = 94 - 40 59.3958 1281 10 1 76.4241 86.9982 95.345 - 40 110.868 1334 10 0 76.424 86.9984 94.15 - 40 144.311 1281 9 1 76.4204 87.0032 65.55 - 40 113.181 1334 9 0 76.4212 87.0076 64.15 - 40 101.881 1282 8 1 76.456 87.0964 35.55 - 40 116.789 1335 8 0 76.4676 87.1104 34.15 - 40 109.895 1283 7 1 76.6958 87.4045 5.55 - 40 125.325 1336 7 0 76.6993 87.4158 4.15 - 40 171.71 1283 6 1 76.833 87.6338 -24.45 - 40 93.9498 1337 6 0 76.834 87.6478 -25.85 - 40 36.0243 1338 6 0 76.834 87.65 -26.0837 - 40 117.894 1284 5 1 76.9652 88.0459 -54.45 - 40 105.259 1339 5 0 77.0648 87.9971 -55.85 - 40 185.912 1295 4 1 79.1908 86.7274 -84.45 - 40 103.284 1333 4 0 79.2685 86.7101 -85.85 - 40 131.542 1303 3 1 80.6584 86.6743 -114.45 - 40 224.334 1333 3 0 80.7043 86.7091 -115.85 - 40 111.641 1307 2 1 81.5615 87.8981 -144.45 - 40 135.031 1339 2 0 81.5681 88.0241 -145.85 - 40 32.9091 1340 2 0 81.5692 88.05 -146.143 - 40 94.9416 1308 1 1 81.7694 90.4189 -174.45 - 40 87.0779 1351 1 0 81.7572 90.526 -175.851 - 40 187.883 1352 1 0 81.7548 90.55 -176.142 - 40 133.818 1308 0 1 81.6691 93.1137 -204.45 - 40 90.4 1365 0 0 81.7342 93.3045 -205.851 - 40 15.5262 1366 0 0 81.7492 93.35 -206.185 - 40 707.735 1281 3 1 76.3694 87.1104 -114.45 - 40 337.524 1335 3 0 76.3707 87.1118 -115.85 - 40 605.049 1281 2 1 76.4158 87.1289 -144.45 - 40 443.773 1335 2 0 76.4174 87.1277 -145.85 - 40 114.084 1281 1 1 76.4391 87.0961 -174.45 - 40 98.6377 1335 1 0 76.4421 87.0962 -175.85 - 40 114.637 1282 0 1 76.5121 87.074 -204.45 - 40 326.066 1335 0 0 76.5195 87.0707 -205.85 - 40 262.091 1282 1 1 76.5236 85.9116 -174.45 - 40 9.43842 1283 1 1 76.6501 85.8925 -174.809 - 40 105.922 1328 1 0 77.0202 85.846 -175.85 - 40 180.003 1334 0 1 86.9087 82.7988 -204.45 - 40 23.5443 1335 0 1 87.0502 82.8425 -204.793 - 40 120.876 1313 0 0 87.7351 82.7809 -205.85 - 40 140.593 1336 2 0 76.417 87.2501 -146.094 - 40 10.3257 1274 1 1 75.0417 90.5581 -174.45 - 40 113.082 1275 1 1 75.0501 90.5588 -174.464 - 40 18.0957 1276 1 1 75.25 90.5805 -174.802 - 40 139.081 1375 1 0 110.782 95.3232 -176.25 - 40 106.325 1456 1 1 111.431 95.435 -174.85 - 40 81.4036 1457 1 1 111.55 95.4774 -174.655 - 40 68.5531 1460 1 1 112.176 95.7936 -174.45 - 40 227.326 1461 1 1 112.35 95.9636 -174.569 - 40 13.515 1385 1 0 113.015 97.3059 -175.85 - 40 137.25 1386 1 0 113.041 97.35 -175.891 - 40 111.872 1387 1 0 113.195 97.55 -176.059 - 40 16.916 1388 1 0 113.369 97.75 -176.221 - 40 77.5662 1652 0 1 150.741 131.83 -204.45 - 40 56.8012 1651 0 1 150.55 131.897 -204.663 - 40 98.4598 1559 0 0 149.771 132.095 -205.85 - 40 124.06 1338 1 0 76.5965 87.8018 -175.85 - 40 135.396 1284 0 1 76.9461 88.7503 -204.45 - 40 120.759 1343 0 0 76.9381 88.771 -205.85 - 40 528.882 1282 4 1 76.5668 87.0114 -84.45 - 40 272.199 1334 4 0 76.5645 87.0032 -85.85 - 40 155.335 1265 2 1 73.2067 86.5536 -144.45 - 40 146.278 1332 2 0 72.9653 86.5497 -145.85 - 40 78.9989 1240 1 1 68.1099 86.574 -174.45 - 40 51.0427 1239 1 1 68.05 86.5816 -174.728 - 40 113.024 1332 1 0 67.8001 86.6189 -175.85 - 40 132.829 1206 0 1 61.4101 87.1574 -204.45 - 40 1.06829 995 3 1 19.2074 -70.5499 -114.85 - 40 124.605 1330 2 0 74.2227 86.2294 -145.85 - 40 138.044 1329 2 0 74.2861 86.05 -146.141 - 40 25.6802 1148 2 0 18.14 49.8043 -146.25 - 40 12.1852 670 2 0 -31.4422 -46.0335 -146.25 - 40 202.356 669 2 0 -31.4457 -46.05 -146.241 - 40 176.622 1280 3 1 76.25 86.9402 -114.706 - 40 95.153 1337 4 0 76.3408 87.5322 -85.85 - 40 31.8906 1338 4 0 76.2241 87.65 -86.159 - 40 134.076 1282 3 1 76.5702 87.2601 -114.45 - 40 107.572 1336 3 0 76.5551 87.2659 -115.85 - 40 138.237 1277 1 1 75.579 87.8352 -174.45 - 40 19.3745 1339 1 0 75.6576 88.0374 -175.85 - 40 90.7202 1340 1 0 75.6628 88.05 -175.939 - 40 171.478 1288 0 1 77.7502 91.8703 -204.45 - 40 0.322436 1359 0 0 78.0496 92.1492 -205.85 - 40 263.067 1360 0 0 78.0505 92.15 -205.854 - 40 211.6 1361 0 0 78.5225 92.35 -205.969 - 40 258.585 1362 0 0 78.6604 92.55 -206.028 - 40 247.07 1363 0 0 78.787 92.75 -205.985 - 40 80.9078 1265 2 0 -56.3392 73.1711 -146.25 - 40 132.027 612 2 1 -57.5822 73.066 -144.85 - 40 35.7572 1334 3 0 77.1569 86.9234 -115.85 - 40 142.412 1335 4 0 76.6479 87.05 -86.0095 - 40 97.3495 1310 4 0 74.5561 82.1687 -86.25 - 40 78.0845 1271 4 1 74.3333 82.1595 -84.85 - 40 54.8155 1270 4 1 74.2499 82.1224 -84.5807 -Number of digits in this event = 45 -Using G4ParticleGun ... -6.85551 LIN -e- -Event: 41 -Number of tracker hits in this event = 69 - 41 140.805 1536 8 1 127.465 -59.3263 35.55 - 41 108.755 603 8 0 127.465 -59.3259 34.15 - 41 418.21 1536 7 1 127.468 -59.321 5.55 - 41 222.693 603 7 0 127.468 -59.3204 4.15 - 41 315.606 1536 6 1 127.469 -59.3108 -24.45 - 41 112.539 603 6 0 127.468 -59.3099 -25.85 - 41 94.9361 1536 5 1 127.458 -59.2898 -54.45 - 41 112.675 603 5 0 127.458 -59.2887 -55.85 - 41 140.652 1536 4 1 127.453 -59.2633 -84.45 - 41 213.057 603 4 0 127.452 -59.2626 -85.85 - 41 405.564 1536 3 1 127.412 -59.2504 -114.45 - 41 452.089 604 3 0 127.41 -59.248 -115.85 - 41 126.179 1536 2 1 127.371 -59.1949 -144.45 - 41 110.739 604 2 0 127.369 -59.1924 -145.85 - 41 264.589 1535 1 1 127.314 -59.1386 -174.45 - 41 235.606 604 1 0 127.311 -59.1373 -175.85 - 41 126.01 1535 0 1 127.242 -59.1131 -204.45 - 41 104.505 604 0 0 127.239 -59.1116 -205.85 - 41 240.491 1536 1 1 127.35 -59.1171 -174.558 - 41 120.735 604 4 0 127.458 -59.25 -86.0906 - 41 180.456 606 6 0 127.454 -58.7562 -25.85 - 41 134.77 1537 5 1 127.636 -56.3843 -54.4509 - 41 119.219 618 5 0 127.663 -56.3818 -55.8501 - 41 201.088 1539 4 1 127.979 -56.1639 -84.4504 - 41 129.055 619 4 0 128.024 -56.1383 -85.85 - 41 124.763 1542 3 1 128.735 -55.7571 -114.45 - 41 50.3977 618 3 0 128.401 -56.3901 -115.85 - 41 85.737 617 3 0 128.373 -56.45 -115.975 - 41 75.962 1514 2 1 123.049 -68.6441 -144.45 - 41 223.34 1513 2 1 122.95 -68.8164 -144.606 - 41 35.5282 549 2 0 122.024 -70.1816 -145.85 - 41 130.713 548 2 0 121.976 -70.25 -145.913 - 41 79.4668 547 2 0 121.826 -70.45 -146.097 - 41 442.555 1405 1 1 101.191 -99.2564 -174.45 - 41 58.5006 385 1 0 101.084 -103.034 -175.85 - 41 86.9462 384 1 0 101.075 -103.15 -175.898 - 41 64.8526 383 1 0 101.055 -103.35 -175.983 - 41 60.8207 382 1 0 101.041 -103.55 -176.071 - 41 53.0751 381 1 0 101.027 -103.75 -176.151 - 41 16.8926 380 1 0 101.019 -103.95 -176.228 - 41 20.0826 604 7 0 127.498 -59.0619 4.14946 - 41 117.877 605 7 0 127.497 -59.05 4.0892 - 41 79.0401 516 7 0 143.372 -76.6835 3.75 - 41 52.1685 515 7 0 143.37 -76.85 3.97608 - 41 79.1486 514 7 0 143.407 -77.05 3.98815 - 41 59.5196 513 7 0 143.447 -77.25 3.91028 - 41 53.7177 512 7 0 143.467 -77.4501 3.86834 - 41 135.328 511 7 0 143.527 -77.65 3.80896 - 41 53.4292 510 7 0 143.572 -77.85 3.79376 - 41 61.3761 509 7 0 143.661 -78.05 3.79529 - 41 65.0517 508 7 0 143.737 -78.2501 3.82495 - 41 56.1532 507 7 0 143.775 -78.45 3.79706 - 41 57.4529 506 7 0 143.744 -78.65 3.78141 - 41 51.6542 505 7 0 143.668 -78.85 3.7931 - 41 51.1336 504 7 0 143.611 -79.05 3.78887 - 41 154.795 503 7 0 143.557 -79.25 3.77101 - 41 248.273 67 7 0 90.5279 -166.735 3.75 - 41 131.794 1538 2 1 127.796 -59.0252 -144.45 - 41 126.606 605 2 0 127.831 -59.0319 -145.85 - 41 110.469 1542 1 1 128.567 -59.1857 -174.45 - 41 112.373 1545 0 1 129.263 -58.0715 -204.45 - 41 112.25 610 0 0 129.234 -58.0495 -205.85 - 41 216.731 603 3 0 127.512 -59.2897 -115.85 - 41 109.175 1542 2 1 128.61 -61.975 -144.45 - 41 106.175 590 2 0 128.754 -62.0225 -145.85 - 41 120.82 1562 1 1 132.688 -63.8704 -174.45 - 41 130.734 580 1 0 132.75 -63.932 -175.85 - 41 114.534 1565 0 1 133.339 -64.6817 -204.45 - 41 172.313 576 0 0 132.756 -64.8024 -205.85 -Number of digits in this event = 35 -Using G4ParticleGun ... -7.86786 LIN -e- -Event: 42 -Number of tracker hits in this event = 34 - 42 126.998 1291 10 1 78.3596 77.279 95.55 - 42 113.635 1286 10 0 78.3608 77.2779 94.15 - 42 128.991 1291 9 1 78.3871 77.2523 65.55 - 42 135.565 1286 9 0 78.3881 77.2573 64.15 - 42 145.384 1291 8 1 78.4136 77.3623 35.55 - 42 137.356 1286 8 0 78.4199 77.3735 34.15 - 42 108.193 1292 7 1 78.5437 77.6164 5.55 - 42 194.417 1287 7 0 78.5576 77.6287 4.15 - 42 128.65 1293 6 1 78.8229 77.8915 -24.45 - 42 134.467 1289 6 0 78.8453 77.9027 -25.85 - 42 121.598 1296 5 1 79.2884 78.126 -54.45 - 42 181.192 1290 5 0 79.3333 78.1787 -55.85 - 42 118.428 1301 4 1 80.2705 79.287 -84.45 - 42 169.118 1296 4 0 80.3181 79.3334 -85.85 - 42 140.729 1305 3 1 81.2491 80.2491 -114.45 - 42 166.858 1301 3 0 81.1992 80.2604 -115.85 - 42 164.673 1286 2 1 77.2986 81.0036 -144.45 - 42 1.87773 1285 2 1 77.25 81.017 -144.838 - 42 143.112 1305 2 0 77.1186 81.07 -145.85 - 42 33.9611 1265 1 1 73.0796 83.5691 -174.45 - 42 83.2635 1264 1 1 73.05 83.5829 -174.55 - 42 108.272 1318 1 0 72.6185 83.7455 -175.85 - 42 36.0212 1219 0 1 63.8933 87.3892 -204.45 - 42 173.746 1218 0 1 63.85 87.4206 -204.571 - 42 44.0695 1338 0 0 63.4947 87.8079 -205.85 - 42 80.7204 1339 0 0 63.4586 87.85 -205.981 - 42 67.5534 1572 0 1 134.55 109.152 -204.745 - 42 143.036 1573 0 1 134.75 109.288 -204.659 - 42 92.2188 1689 1 0 27.4964 158.143 -176.249 - 42 272.504 1690 1 0 27.4911 158.15 -176.243 - 42 262.928 1300 0 1 80.1049 76.0883 -204.45 - 42 133.092 1280 0 0 80.1019 76.1065 -205.85 - 42 111.466 167 7 0 -18.0683 -146.698 3.75 - 42 117.977 1279 0 0 80.1079 76.0466 -205.85 -Number of digits in this event = 23 -Using G4ParticleGun ... -3.93291 LIN -e- -Event: 43 -Number of tracker hits in this event = 40 - 43 109.013 758 7 1 -28.3975 143.547 5.55 - 43 112.222 1616 7 0 -28.3945 143.549 4.15 - 43 130.018 758 6 1 -28.3065 143.606 -24.45 - 43 106.291 1617 6 0 -28.3096 143.621 -25.85 - 43 108.954 758 5 1 -28.3428 143.907 -54.45 - 43 186.322 1618 5 0 -28.3407 143.936 -55.85 - 43 340.914 758 4 1 -28.2789 144.553 -84.45 - 43 126.419 1622 4 0 -28.2861 144.592 -85.85 - 43 280.804 757 3 1 -28.5485 145.477 -114.45 - 43 155.041 1626 3 0 -28.5645 145.522 -115.85 - 43 103.468 755 2 1 -28.9532 146.524 -144.45 - 43 103.97 1632 2 0 -28.9744 146.604 -145.85 - 43 191.789 753 1 1 -29.4294 148.188 -174.45 - 43 107.573 1640 1 0 -29.4503 148.267 -175.85 - 43 147.017 751 0 1 -29.7726 149.851 -204.45 - 43 117.349 1648 0 0 -29.8223 149.912 -205.85 - 43 262.353 1617 4 0 -28.372 143.595 -85.85 - 43 281.163 758 3 1 -28.4427 143.662 -114.45 - 43 253.264 1617 3 0 -28.456 143.665 -115.85 - 43 127.91 756 2 1 -28.7046 143.722 -144.45 - 43 112.758 1617 2 0 -28.719 143.726 -145.85 - 43 135.125 755 1 1 -29.0363 143.8 -174.45 - 43 99.5425 1618 1 0 -29.0601 143.771 -175.85 - 43 111.684 752 0 1 -29.5684 143.17 -204.45 - 43 121.806 1614 0 0 -29.5949 143.136 -205.85 - 43 34.8824 812 7 0 152.155 -17.4939 3.75023 - 43 247.18 753 0 1 -29.3044 143.827 -204.45 - 43 216.994 1618 0 0 -29.3087 143.82 -205.85 - 43 103.44 758 2 1 -28.3237 143.55 -144.45 - 43 126.885 1616 2 0 -28.3257 143.549 -145.85 - 43 485.703 758 1 1 -28.4067 143.505 -174.45 - 43 128.437 1616 1 0 -28.4083 143.505 -175.85 - 43 109.846 758 0 1 -28.4461 143.487 -204.45 - 43 141.046 1616 0 0 -28.4497 143.492 -205.85 - 43 107.884 590 4 1 -61.9479 143.807 -84.4501 - 43 115.193 757 1 1 -28.45 143.714 -174.755 - 43 107.627 820 5 0 42.6437 -15.9354 -56.25 - 43 63.8097 819 5 0 42.6449 -16.0502 -56.0101 - 43 9.4372 1112 5 1 42.4539 -16.5127 -54.85 - 43 117.387 1111 5 1 42.45 -16.5203 -54.831 -Number of digits in this event = 24 -Using G4ParticleGun ... -1.04653 LIN -e- -Event: 44 -Number of tracker hits in this event = 92 - 44 125.503 809 10 1 -18.1315 -103.177 95.55 - 44 96.0757 384 10 0 -18.1432 -103.179 94.15 - 44 99.5068 808 9 1 -18.4023 -103.237 65.55 - 44 325.163 384 9 0 -18.4395 -103.238 64.15 - 44 213.569 803 8 1 -19.2525 -103.23 35.55 - 44 110.115 384 8 0 -19.3016 -103.221 34.15 - 44 488.293 798 7 1 -20.3504 -103.01 5.55 - 44 307.033 385 7 0 -20.3975 -103.002 4.15 - 44 121.973 793 6 1 -21.3643 -102.789 -24.45 - 44 132.825 386 6 0 -21.441 -102.767 -25.85 - 44 130.103 785 5 1 -23.0046 -102.343 -54.45 - 44 190.185 389 5 0 -23.0602 -102.338 -55.85 - 44 202.22 780 4 1 -24.0352 -102.101 -84.45 - 44 111.411 390 4 0 -23.9528 -102.055 -85.85 - 44 328.224 788 3 1 -22.3783 -101.309 -114.45 - 44 122.622 394 3 0 -22.3534 -101.268 -115.85 - 44 130.319 793 2 1 -21.3017 -100.914 -144.45 - 44 14.3742 394 2 0 -21.1878 -101.335 -145.85 - 44 84.9928 393 2 0 -21.1836 -101.35 -145.902 - 44 115.899 806 1 1 -18.8108 -109.625 -174.45 - 44 8.40525 351 1 0 -18.6764 -109.944 -175.85 - 44 131.274 350 1 0 -18.6737 -109.95 -175.878 - 44 109.537 820 0 1 -16.0162 -116.219 -204.451 - 44 58.8297 318 0 0 -15.839 -116.53 -205.85 - 44 90.3073 317 0 0 -15.8279 -116.55 -205.937 - 44 147.212 382 7 0 -20.7254 -103.65 4.15 - 44 55.9333 381 7 0 -20.7736 -103.75 3.92706 - 44 124.016 316 7 0 -34.8921 -116.854 3.75 - 44 202.728 317 7 0 -34.8817 -116.75 3.91331 - 44 0.269252 695 7 1 -40.9406 -106.582 5.15 - 44 139.457 780 6 1 -23.9242 -102.378 -24.45 - 44 7.22935 781 6 1 -23.85 -102.385 -24.8345 - 44 158.168 388 6 0 -23.6521 -102.404 -25.8501 - 44 194.223 810 5 1 -18.0146 -103.377 -54.4501 - 44 123.066 383 5 0 -17.7087 -103.493 -55.85 - 44 159.382 844 4 1 -11.227 -105.845 -84.45 - 44 503.576 371 4 0 -10.9706 -105.911 -85.85 - 44 132.826 871 3 1 -5.73053 -106.984 -114.45 - 44 123.768 366 3 0 -5.5357 -106.912 -115.85 - 44 128.743 892 2 1 -1.63801 -105.295 -144.45 - 44 122.672 374 2 0 -1.4277 -105.232 -145.85 - 44 115.848 912 1 1 2.57605 -103.777 -174.45 - 44 123.766 382 1 0 2.72053 -103.682 -175.85 - 44 127.362 928 0 1 5.7524 -101.768 -204.45 - 44 178.277 392 0 0 5.93752 -101.611 -205.85 - 44 12.9219 372 4 0 -10.6619 -105.75 -86.1753 - 44 48.2789 386 7 0 -20.2523 -102.779 4.15 - 44 75.7594 387 7 0 -20.24 -102.75 3.98298 - 44 118.707 812 6 1 -17.6267 -97.5707 -24.45 - 44 103.873 412 6 0 -17.091 -97.6399 -25.85 - 44 44.6464 860 5 1 -7.91482 -96.8717 -54.45 - 44 106.822 861 5 1 -7.85 -96.8373 -54.6311 - 44 149.274 417 5 0 -7.46655 -96.6126 -55.8502 - 44 20.447 418 5 0 -7.36986 -96.55 -56.1683 - 44 106.62 903 4 1 0.708163 -90.1598 -84.45 - 44 121.746 911 3 1 2.4336 -88.7085 -114.451 - 44 60.0733 454 3 0 2.13179 -89.1735 -115.85 - 44 40.5157 453 3 0 2.12794 -89.25 -116.084 - 44 54.6857 897 2 1 -0.526636 -98.9059 -144.45 - 44 68.7872 896 2 1 -0.65 -99.0453 -144.523 - 44 94.9558 895 2 1 -0.850179 -99.1742 -144.627 - 44 99.3003 894 2 1 -1.05 -99.3864 -144.711 - 44 76.8769 893 2 1 -1.25 -99.573 -144.741 - 44 58.3555 391 2 0 -3.27996 -101.757 -145.85 - 44 70.1801 390 2 0 -3.42069 -101.951 -145.94 - 44 133.014 389 2 0 -3.56812 -102.15 -146.003 - 44 85.4204 388 2 0 -3.9747 -102.35 -146.098 - 44 39.339 387 2 0 -4.14307 -102.55 -146.198 - 44 52.0847 15 2 0 -29.5822 -177.06 -146.25 - 44 70.483 14 2 0 -29.5629 -177.15 -146.179 - 44 76.3012 13 2 0 -29.495 -177.35 -146.017 - 44 277.056 752 2 1 -29.4766 -178.758 -144.85 - 44 112.425 751 2 1 -29.65 -179.452 -144.499 - 44 15.1959 904 4 1 0.901118 -90.05 -84.7881 - 44 132.596 451 4 0 1.45686 -89.794 -85.85 - 44 103.492 643 4 0 -18.2204 -51.4383 -86.25 - 44 36.3729 644 4 0 -18.3709 -51.25 -85.9394 - 44 119.203 803 4 1 -19.2525 -49.7723 -84.85 - 44 128.997 802 4 1 -19.45 -49.5951 -84.6331 - 44 175.248 801 4 1 -19.65 -49.5047 -84.454 - 44 269.649 649 4 0 -18.7387 -50.2372 -85.8501 - 44 77.5051 648 4 0 -18.7206 -50.25 -85.8779 - 44 423.171 805 1 1 -18.9067 -104.237 -174.45 - 44 359.641 379 1 0 -18.9823 -104.285 -175.85 - 44 122.808 797 0 1 -20.5369 -105.162 -204.45 - 44 138.357 375 0 0 -20.462 -105.118 -205.85 - 44 32.0217 811 6 0 69.4482 -17.6995 -26.25 - 44 233.016 812 6 0 69.3975 -17.65 -26.2206 - 44 132.177 806 0 1 -18.7102 -106.889 -204.45 - 44 35.4682 364 0 0 -19.0073 -107.313 -205.85 - 44 128.198 363 0 0 -19.0351 -107.35 -205.979 - 44 53.7961 447 1 0 -84.7121 -90.6765 -176.25 -Number of digits in this event = 47 -Using G4ParticleGun ... -2.78044 LIN -e- -Event: 45 -Number of tracker hits in this event = 97 - 45 124.763 829 11 1 -14.1926 26.3364 125.55 - 45 122.58 1031 11 0 -14.1918 26.3385 124.15 - 45 133.906 829 10 1 -14.1628 26.3499 95.55 - 45 161.673 1031 10 0 -14.161 26.3491 94.15 - 45 119.5 829 9 1 -14.1261 26.3311 65.55 - 45 106.858 1031 9 0 -14.1264 26.3318 64.15 - 45 110.065 829 8 1 -14.141 26.3435 35.55 - 45 116.868 1031 8 0 -14.1395 26.3434 34.15 - 45 129.661 829 7 1 -14.1037 26.3154 5.55 - 45 130.088 1031 7 0 -14.0964 26.31 4.15 - 45 103.43 830 6 1 -14.0043 26.2466 -24.45 - 45 318.614 1031 6 0 -14.0115 26.2654 -25.85 - 45 304.012 829 5 1 -14.1697 26.5886 -54.45 - 45 161.588 1032 5 0 -14.1876 26.6019 -55.85 - 45 285.588 827 4 1 -14.5981 26.9446 -84.45 - 45 127.681 1034 4 0 -14.6293 26.974 -85.85 - 45 97.8829 824 3 1 -15.1903 27.5982 -114.45 - 45 240.494 1037 3 0 -15.2231 27.6144 -115.85 - 45 121.139 821 2 1 -15.7931 28.017 -144.45 - 45 168.727 1039 2 0 -15.7793 27.9904 -145.85 - 45 194.654 822 1 1 -15.4687 27.4291 -174.45 - 45 158.805 1036 1 0 -15.4619 27.3915 -175.85 - 45 117.834 823 0 1 -15.2905 26.54 -204.45 - 45 180.879 1031 0 0 -15.2635 26.4499 -205.85 - 45 24.9452 946 1 0 -12.1224 9.28794 -176.25 - 45 31.7991 945 1 0 -12.0781 9.25 -176.214 - 45 11.3696 470 1 0 -57.9789 -86.0076 -176.25 - 45 10.7149 1036 3 0 -15.0926 27.45 -116.142 - 45 153.361 1040 0 0 -16.9851 28.1769 -205.85 - 45 201.641 829 4 1 -14.2342 27.387 -84.45 - 45 227.225 830 4 1 -14.0499 27.5258 -84.5378 - 45 157.496 831 4 1 -13.8498 27.6516 -84.6421 - 45 63.7489 832 4 1 -13.65 27.7953 -84.7195 - 45 8.43828 833 4 1 -13.45 27.9356 -84.8337 - 45 49.5215 1044 4 0 -11.8856 28.9452 -85.85 - 45 97.3609 1045 4 0 -11.7389 29.05 -85.9558 - 45 79.4959 1046 4 0 -11.5175 29.25 -86.115 - 45 46.1463 1047 4 0 -11.3462 29.45 -86.1993 - 45 80.6611 1384 4 0 14.5639 97.0224 -86.2495 - 45 96.9048 1383 4 0 14.3414 96.95 -86.0488 - 45 65.7937 970 4 1 14.2315 95.787 -84.85 - 45 218.943 971 4 1 14.25 95.6463 -84.7654 - 45 219.921 972 4 1 14.45 95.5306 -84.6259 - 45 253.865 830 5 1 -14.0128 26.3021 -54.45 - 45 230.449 1031 5 0 -14.0517 26.2651 -55.85 - 45 126.869 825 4 1 -14.9529 25.4545 -84.45 - 45 282.788 1026 4 0 -14.8655 25.4351 -85.85 - 45 262.203 839 3 1 -12.1203 25.6344 -114.45 - 45 152.856 1027 3 0 -11.9218 25.6358 -115.85 - 45 134.037 862 2 1 -7.55641 25.5421 -144.45 - 45 368.978 1027 2 0 -7.35754 25.5425 -145.85 - 45 117.944 883 1 1 -3.40772 25.3502 -174.45 - 45 224.078 1026 1 0 -3.26034 25.3166 -175.85 - 45 253.619 911 0 1 2.34451 24.5774 -204.45 - 45 129.607 1022 0 0 2.63481 24.5425 -205.85 - 45 85.8024 863 2 1 -7.45 25.6129 -144.573 - 45 112.464 1031 2 0 -7.25224 26.2824 -145.85 - 45 217.509 1025 3 0 -12.5321 25.1259 -115.85 - 45 63.0579 1024 3 0 -12.5734 25.05 -116.053 - 45 203.444 1158 3 0 -52.6839 51.6653 -116.25 - 45 16.1127 1159 3 0 -53.1666 51.85 -115.903 - 45 2.85337 628 3 1 -54.4383 52.2259 -114.85 - 45 137.573 627 3 1 -54.45 52.2291 -114.84 - 45 107.557 626 3 1 -54.6516 52.2467 -114.45 - 45 123.283 1027 4 0 -13.8281 25.6433 -85.85 - 45 121.159 832 3 1 -13.579 25.0868 -114.45 - 45 116.252 827 2 1 -14.5648 25.0048 -144.45 - 45 411.431 1024 2 0 -14.6143 25.0154 -145.85 - 45 110.524 821 1 1 -15.6991 25.3808 -174.45 - 45 114.406 818 0 1 -16.3692 25.2816 -204.45 - 45 289.469 1025 0 0 -16.3664 25.2433 -205.85 - 45 56.256 1026 0 0 -16.2627 25.25 -206.032 - 45 67.109 983 0 0 -13.3944 16.7621 -206.25 - 45 76.5898 982 0 0 -13.4228 16.65 -206.059 - 45 501.105 832 0 1 -13.6234 15.6779 -204.85 - 45 82.8703 833 0 1 -13.4496 15.2614 -204.586 - 45 113.718 976 0 0 -13.066 15.3843 -205.85 - 45 450.245 829 6 1 -14.1086 26.4038 -24.45 - 45 492.477 1030 5 0 -14.2205 26.0919 -55.85 - 45 246.991 829 3 1 -14.1969 24.0602 -114.45 - 45 136.79 1019 3 0 -14.2174 23.9758 -115.85 - 45 129.073 826 2 1 -14.7887 22.4813 -144.45 - 45 149.46 1011 2 0 -14.8483 22.3814 -145.85 - 45 116.234 819 1 1 -16.0604 20.3377 -174.45 - 45 109.588 1000 1 0 -16.1385 20.143 -175.85 - 45 94.0041 811 0 1 -17.8045 15.8301 -204.45 - 45 16.6182 810 0 1 -17.8501 15.7628 -204.801 - 45 280.787 977 0 0 -17.9839 15.5688 -205.85 - 45 174.851 828 5 1 -14.3489 26.1956 -54.45 - 45 107.4 1031 4 0 -13.9838 26.3178 -85.85 - 45 113.694 1028 3 0 -14.147 25.8496 -115.85 - 45 109.696 829 2 1 -14.1368 24.9443 -144.45 - 45 99.2745 828 1 1 -14.3534 23.5836 -174.45 - 45 158.473 1017 1 0 -14.3885 23.5096 -175.85 - 45 106.985 825 0 1 -15.0116 22.0208 -204.45 - 45 144.611 1009 0 0 -15.0233 21.9771 -205.85 - 45 7.83001 827 5 1 -14.45 26.2334 -54.4537 -Number of digits in this event = 53 -Using G4ParticleGun ... -7.38125 LIN -e- -Event: 46 -Number of tracker hits in this event = 45 - 46 244.175 1334 9 1 86.925 87.6058 65.55 - 46 142.628 1337 9 0 86.9247 87.6065 64.15 - 46 117.399 1334 8 1 86.9186 87.6221 35.55 - 46 113.847 1337 8 0 86.9186 87.6228 34.15 - 46 141.125 1334 7 1 86.9155 87.6357 5.55 - 46 92.2832 1337 7 0 86.9157 87.6369 4.15 - 46 261.664 1334 6 1 86.9173 87.6646 -24.45 - 46 123.907 1338 6 0 86.9169 87.6669 -25.85 - 46 159.77 1334 5 1 86.908 87.7236 -54.45 - 46 119.373 1338 5 0 86.9081 87.7255 -55.85 - 46 163.687 1334 4 1 86.9142 87.7647 -84.45 - 46 118.184 1338 4 0 86.9148 87.7673 -85.85 - 46 117.201 1334 3 1 86.9327 87.8193 -114.45 - 46 101.085 1338 3 0 86.9344 87.8223 -115.85 - 46 738.154 1334 2 1 86.9687 87.8856 -144.45 - 46 131.764 1339 2 0 86.9702 87.8891 -145.85 - 46 390.41 1334 1 1 87.0007 87.9573 -174.45 - 46 213.834 1339 1 0 87.001 87.9591 -175.85 - 46 531.476 1334 0 1 87.0015 87.9961 -204.45 - 46 216.904 1339 0 0 87.0046 87.9993 -205.85 - 46 34.1907 1173 0 0 80.1778 54.85 -206.014 - 46 34.3686 1174 0 0 80.1753 54.85 -206.003 - 46 195.662 1451 4 1 110.35 78.984 -84.7939 - 46 143.112 1450 4 1 110.35 79.0137 -84.6633 - 46 214.498 1295 9 0 -105.427 79.1527 63.75 - 46 209.776 1335 2 1 87.0502 88.2495 -144.739 - 46 95.11 1342 0 0 86.9144 88.5435 -205.85 - 46 22.3207 1343 0 0 86.8854 88.65 -206.164 - 46 199.65 1316 6 0 80.3912 83.349 -26.25 - 46 10.7927 1315 6 0 80.2471 83.25 -26.1165 - 46 198.143 1305 6 1 81.2383 83.5568 -24.8499 - 46 128.883 1304 6 1 81.05 83.4891 -24.7619 - 46 109.833 1341 6 0 86.4644 88.2749 -25.85 - 46 35.1221 1342 6 0 86.2882 88.4503 -26.1494 - 46 248.299 1338 2 0 86.9357 87.7985 -145.85 - 46 129.885 1335 1 0 86.9551 87.2224 -175.85 - 46 166.266 1337 0 1 87.6147 84.2471 -204.45 - 46 202.97 1320 0 0 87.664 84.092 -205.85 - 46 2.97261 1319 0 0 87.6771 84.05 -206.229 - 46 141.206 1340 0 0 86.875 88.176 -205.85 - 46 112.775 1333 0 1 86.8499 88.1521 -204.707 - 46 169.484 1335 0 1 87.05 88.3708 -204.621 - 46 76.7998 1336 0 1 87.25 88.641 -204.695 - 46 6.27598 1347 0 0 87.8304 89.6316 -205.85 - 46 177.49 1348 0 0 87.8421 89.65 -205.874 -Number of digits in this event = 29 -Using G4ParticleGun ... -8.0712 LIN -e- -Event: 47 -Number of tracker hits in this event = 214 - 47 139.373 1115 11 1 43.1856 21.1353 125.55 - 47 140.332 1005 11 0 43.1853 21.136 124.15 - 47 105.138 1115 10 1 43.1777 21.1487 95.55 - 47 107.675 1005 10 0 43.1772 21.1494 94.15 - 47 121.933 1115 9 1 43.1642 21.1646 65.55 - 47 168.007 1005 9 0 43.164 21.1654 64.15 - 47 937.341 1115 8 1 43.1425 21.1887 35.55 - 47 435.34 1005 8 0 43.1418 21.1908 34.15 - 47 420.204 1115 7 1 43.1229 21.2487 5.55 - 47 248.124 1006 7 0 43.1237 21.251 4.15 - 47 222.458 1115 6 1 43.1429 21.303 -24.45 - 47 394.278 1006 6 0 43.1435 21.2993 -25.85 - 47 108.079 1115 5 1 43.1268 21.2849 -54.45 - 47 226.551 1006 5 0 43.1038 21.2949 -55.85 - 47 115.432 1113 4 1 42.7064 21.4565 -84.45 - 47 140.894 1007 4 0 42.6665 21.4783 -85.85 - 47 128.847 1109 3 1 41.9451 22.001 -114.45 - 47 132.853 1009 3 0 41.9176 22.0048 -115.85 - 47 118.643 1106 2 1 41.3709 22.021 -144.45 - 47 160.477 1009 2 0 41.3338 22.019 -145.85 - 47 180.019 1102 1 1 40.5545 21.8874 -174.45 - 47 118.756 1009 1 0 40.5123 21.9212 -175.85 - 47 123.394 1098 0 1 39.7254 22.5762 -204.45 - 47 131.403 1012 0 0 39.6691 22.6075 -205.85 - 47 438.529 1115 0 1 43.1495 21.8196 -204.45 - 47 236.65 1008 0 0 43.1493 21.8077 -205.85 - 47 185.412 1542 3 0 -20.1164 128.684 -116.25 - 47 103.592 1543 3 0 -20.1456 128.75 -116.175 - 47 601.658 1116 7 1 43.2553 21.2462 5.55 - 47 429.947 1005 7 0 43.2615 21.2473 4.15 - 47 117.222 1116 6 1 43.3762 21.2754 -24.45 - 47 118.666 1121 5 1 44.3455 21.891 -54.45 - 47 122.939 1008 5 0 44.4057 21.848 -55.85 - 47 111.997 1127 4 1 45.4979 20.7132 -84.4501 - 47 113.975 1002 4 0 45.5135 20.5904 -85.8507 - 47 145.491 1127 3 1 45.5807 18.0734 -114.45 - 47 140.309 989 3 0 45.5173 17.8981 -115.85 - 47 0.953765 988 3 0 45.502 17.8499 -116.247 - 47 129.848 1122 2 1 44.4752 14.4486 -144.45 - 47 132.881 970 2 0 44.5015 14.1745 -145.85 - 47 237.587 1124 1 1 44.953 8.42585 -174.45 - 47 147.399 940 1 0 45.0268 8.16537 -175.85 - 47 187.611 1134 0 1 46.8789 2.55429 -204.45 - 47 11.7218 911 0 0 47.0696 2.2567 -205.851 - 47 153.178 910 0 0 47.074 2.25 -205.882 - 47 103.527 1125 1 1 45.05 8.49948 -174.684 - 47 23.9883 995 3 0 45.6348 19.2234 -115.85 - 47 190.837 996 3 0 45.6427 19.25 -115.885 - 47 278.493 1118 4 1 43.717 21.2508 -84.45 - 47 456.751 1005 4 0 43.7173 21.244 -85.85 - 47 125.229 1118 3 1 43.7491 21.1751 -114.45 - 47 226.026 1005 3 0 43.7328 21.16 -115.85 - 47 179.542 1116 2 1 43.4241 20.8805 -144.45 - 47 152.463 1004 2 0 43.4332 20.8757 -145.85 - 47 100.761 1117 1 1 43.5517 20.7944 -174.45 - 47 144.858 1003 1 0 43.5294 20.7805 -175.85 - 47 123.426 1002 0 0 43.1005 20.5173 -205.85 - 47 116.734 1119 3 1 43.9655 21.1839 -114.45 - 47 143.06 1112 2 1 42.4721 19.9093 -144.45 - 47 138.451 999 2 0 42.4241 19.9249 -145.85 - 47 46.0482 1105 1 1 41.1105 20.0354 -174.45 - 47 75.7193 1104 1 1 41.05 19.9938 -174.61 - 47 120.352 998 1 0 40.597 19.7919 -175.85 - 47 72.3408 1040 0 1 28.0901 14.6384 -204.45 - 47 81.7854 1039 0 1 28.05 14.6004 -204.628 - 47 123.699 971 0 0 27.7097 14.343 -205.85 - 47 9.39481 970 0 0 27.6011 14.25 -206.223 - 47 103.502 1043 0 0 18.4553 28.7862 -206.25 - 47 81.4251 1044 0 0 18.4463 28.85 -206.194 - 47 72.0053 1045 0 0 18.4197 29.05 -206.009 - 47 67.4467 1046 0 0 18.3639 29.25 -205.952 - 47 0.52539 1047 0 0 18.3865 29.4506 -205.851 - 47 97.6775 993 0 1 18.6952 31.1136 -204.85 - 47 80.0216 994 0 1 18.85 31.4089 -204.8 - 47 43.5566 1063 0 0 20.6963 32.7794 -205.851 - 47 100.261 1064 0 0 20.7645 32.85 -205.92 - 47 103.919 1065 0 0 20.96 33.05 -205.936 - 47 64.6499 1066 0 0 20.9996 33.25 -206.053 - 47 68.4465 1067 0 0 20.9799 33.45 -206.13 - 47 81.2617 1068 0 0 21.0748 33.6503 -206.065 - 47 34.4582 1006 0 1 21.394 33.1665 -204.85 - 47 123.287 1007 0 1 21.45 33.1419 -204.771 - 47 296.514 1008 0 1 21.65 33.0759 -204.594 - 47 12.0544 1009 0 1 21.85 33.1847 -204.635 - 47 2.81706 1019 8 0 43.3558 24.043 34.15 - 47 101.623 1020 8 0 43.3565 24.05 34.1467 - 47 71.101 1021 8 0 43.3171 24.2502 33.9233 - 47 4.69555 1022 8 0 43.2798 24.45 33.7591 - 47 88.9663 1234 8 0 17.686 66.8674 33.75 - 47 67.6608 1233 8 0 17.5453 66.85 33.9375 - 47 333.525 1232 8 0 17.5195 66.65 33.9563 - 47 23.0616 1116 8 1 43.25 22.4945 35.332 - 47 140.809 1114 6 1 42.9044 21.2582 -24.45 - 47 110.248 1113 5 1 42.7333 21.2742 -54.45 - 47 154.95 1112 4 1 42.5164 21.342 -84.45 - 47 112.867 1006 4 0 42.5039 21.3468 -85.85 - 47 114.694 1110 3 1 42.2412 21.4507 -114.45 - 47 171.54 1007 3 0 42.2308 21.4544 -115.85 - 47 221.343 1109 2 1 42.0084 21.5267 -144.45 - 47 129.324 1007 2 0 41.9967 21.5268 -145.85 - 47 123.709 1108 1 1 41.7586 21.5308 -174.45 - 47 161.181 1007 1 0 41.7501 21.5283 -175.85 - 47 449.635 1107 0 1 41.5774 21.4769 -204.45 - 47 404.207 1007 0 0 41.5709 21.4717 -205.85 - 47 162.049 1029 3 0 63.2594 26.0296 -116.25 - 47 35.851 1030 3 0 63.2464 26.0502 -116.213 - 47 188.229 1028 3 0 63.2467 25.85 -116.185 - 47 116.087 1114 8 1 43.05 21.2048 35.2492 - 47 143.478 1006 8 0 42.8486 21.25 34.1459 - 47 123.979 1085 7 1 37.2142 22.1857 5.55 - 47 147.195 1009 7 0 36.7196 22.0123 4.15 - 47 103.687 1026 6 1 25.376 19.1623 -24.4503 - 47 17.996 1025 6 1 25.25 19.4067 -24.7989 - 47 89.2345 1000 6 0 24.7721 20.0839 -25.85 - 47 55.5096 1001 6 0 24.6518 20.2501 -26.1006 - 47 63.8603 955 5 1 11.0978 41.789 -54.4501 - 47 143.257 954 5 1 11.05 41.8064 -54.5246 - 47 3.24401 953 5 1 10.85 41.8979 -54.8399 - 47 31.2992 1110 5 0 10.26 42.2198 -55.85 - 47 110.803 1111 5 0 10.2007 42.25 -55.9493 - 47 123.875 821 4 1 -15.6873 56.603 -84.4503 - 47 133.827 1184 4 0 -16.1399 56.9126 -85.8503 - 47 214.593 777 3 1 -24.6238 59.2593 -114.45 - 47 4.09507 1192 3 0 -24.0762 58.462 -115.85 - 47 168.819 1191 3 0 -24.0683 58.4499 -115.871 - 47 13.4541 844 2 1 -11.111 49.7307 -144.45 - 47 127.411 845 2 1 -11.05 49.7449 -144.478 - 47 153.066 846 2 1 -10.8494 49.806 -144.601 - 47 68.8055 847 2 1 -10.6499 49.9176 -144.713 - 47 21.5002 848 2 1 -10.45 50.0346 -144.819 - 47 65.3139 1163 2 0 -7.07069 52.6774 -145.85 - 47 183.638 1164 2 0 -6.8566 52.85 -145.891 - 47 248.938 1165 2 0 -6.61745 53.05 -146.003 - 47 49.2337 1166 2 0 -6.38096 53.25 -146.145 - 47 68.891 1121 2 0 45.89 44.3893 -146.25 - 47 60.7394 1120 2 0 46.0057 44.25 -146.076 - 47 37.9976 1119 2 0 46.102 44.05 -145.924 - 47 280.298 1131 2 1 46.3368 43.876 -144.85 - 47 114.506 1132 2 1 46.5247 44.0456 -144.45 - 47 45.3429 1133 2 1 46.65 43.9302 -144.721 - 47 83.3022 1108 2 0 46.7648 41.8291 -145.85 - 47 260.76 1107 2 0 46.8664 41.65 -145.896 - 47 59.4554 1106 2 0 46.9468 41.45 -146.124 - 47 68.0792 1009 8 0 42.7447 21.9018 34.1499 - 47 74.9347 1010 8 0 42.6747 22.05 33.9291 - 47 103.957 1058 7 1 31.8118 51.6287 5.55 - 47 47.216 1057 7 1 31.65 51.6611 5.27054 - 47 160.368 1158 7 0 30.9457 51.6919 4.15 - 47 73.1874 968 6 1 13.7102 54.5168 -24.45 - 47 372.764 969 6 1 13.85 54.7155 -24.6567 - 47 73.3088 1191 6 0 15.2945 58.3496 -25.85 - 47 76.0714 1192 6 0 15.3436 58.45 -25.8799 - 47 68.1568 1193 6 0 15.4597 58.65 -25.945 - 47 66.8027 1194 6 0 15.5996 58.8501 -25.9969 - 47 74.656 1195 6 0 15.739 59.0503 -26.0382 - 47 78.1191 1196 6 0 15.888 59.2501 -26.0866 - 47 68.9514 1197 6 0 16.0518 59.45 -26.1472 - 47 13.3763 1198 6 0 16.2164 59.6501 -26.2326 - 47 120.315 970 6 1 14.0504 54.9676 -24.5635 - 47 280.99 960 5 0 -15.8899 12.22 -56.25 - 47 164.496 959 5 0 -15.7876 12.05 -56.0173 - 47 289.936 1025 6 0 42.9445 25.0996 -25.8504 - 47 112.102 1088 5 1 37.7815 29.3884 -54.45 - 47 19.7138 1047 5 0 37.7393 29.6363 -55.8504 - 47 83.5975 1048 5 0 37.7369 29.65 -55.9325 - 47 211.134 1086 4 1 37.3266 31.9651 -84.45 - 47 111.015 1059 4 0 37.4686 31.9727 -85.85 - 47 128.446 1101 3 1 40.2792 31.131 -114.45 - 47 7.95845 1055 3 0 40.6207 31.2476 -115.85 - 47 108.937 1056 3 0 40.6282 31.25 -115.882 - 47 3.85762 1130 2 1 46.2467 33.8258 -144.451 - 47 127.064 1069 2 0 46.7249 33.8951 -145.85 - 47 50.8693 1127 1 1 45.4705 40.2304 -174.45 - 47 197.246 1126 1 1 45.45 40.2416 -174.516 - 47 130.375 1102 1 0 45.0975 40.568 -175.85 - 47 26.1616 1103 1 0 45.0121 40.65 -176.175 - 47 84.6579 1093 0 1 38.6874 48.0785 -204.45 - 47 64.4518 1094 0 1 38.85 48.2291 -204.681 - 47 20.3961 1144 0 0 39.6655 49.0068 -205.85 - 47 140.657 1145 0 0 39.7111 49.05 -205.916 - 47 0.373591 1146 0 0 39.9327 49.25 -206.249 - 47 61.9435 1255 0 0 59.9977 71.1681 -206.25 - 47 82.38 1256 0 0 60.0589 71.25 -206.077 - 47 40.5718 1202 0 1 60.5952 71.8174 -204.85 - 47 107.643 1203 0 1 60.65 71.873 -204.72 - 47 47.044 1397 1 0 48.2473 99.6443 -176.25 - 47 80.7521 1398 1 0 48.2081 99.75 -176.147 - 47 38.0369 1399 1 0 48.1335 99.95 -175.948 - 47 119.16 1139 1 1 47.9626 100.608 -174.85 - 47 58.717 1522 2 0 88.5387 124.698 -146.25 - 47 284.465 1523 2 0 88.6158 124.75 -146.199 - 47 157.265 1524 2 0 88.9259 124.95 -146.013 - 47 55.3098 1354 2 1 90.9813 125.593 -144.85 - 47 59.0786 1355 2 1 91.15 125.64 -144.747 - 47 81.1871 1356 2 1 91.3509 125.648 -144.602 - 47 25.2658 1357 2 1 91.5503 125.683 -144.479 - 47 84.6984 1358 2 1 91.75 125.803 -144.48 - 47 95.0168 1359 2 1 91.95 125.721 -144.624 - 47 45.7849 1360 2 1 92.15 125.62 -144.756 - 47 49.8094 900 7 0 -36.8616 0.239688 3.75 - 47 5.58888 985 7 0 43.6854 17.0667 4.14989 - 47 59.1824 984 7 0 43.6868 17.05 4.1443 - 47 49.7645 983 7 0 43.672 16.85 4.05975 - 47 64.59 982 7 0 43.6472 16.65 3.96063 - 47 54.6739 981 7 0 43.6263 16.45 3.85518 - 47 3.27633 980 7 0 43.5889 16.25 3.75475 - 47 12.4689 463 7 0 9.23249 -87.4097 3.75 - 47 98.7481 462 7 0 9.21561 -87.4506 3.77918 - 47 104.966 461 7 0 9.12827 -87.6503 3.9133 - 47 23.9324 460 7 0 8.98698 -87.85 4.10798 - 47 88.2758 939 7 1 7.98301 -88.9194 5.15081 - 47 128.741 938 7 1 7.85 -89.1771 5.35208 - 47 4.12577 281 8 0 49.205 -123.75 33.9553 - 47 111.396 587 6 0 170.273 -62.4585 -26.2498 -Number of digits in this event = 91 -Using G4ParticleGun ... -2.3409 LIN -e- -Event: 48 -Number of tracker hits in this event = 126 - 48 144.239 564 10 1 -67.1077 62.6032 95.55 - 48 144.108 1212 10 0 -67.1078 62.6048 94.15 - 48 142.272 564 9 1 -67.1017 62.6462 65.55 - 48 145.658 1213 9 0 -67.102 62.6518 64.15 - 48 335.42 564 8 1 -67.1187 62.7605 35.55 - 48 404.288 1213 8 0 -67.1106 62.765 34.15 - 48 101.122 565 7 1 -66.9878 62.8506 5.55 - 48 128.752 1214 7 0 -66.9875 62.8586 4.15 - 48 108.711 565 6 1 -66.9968 63.0243 -24.45 - 48 109.075 1214 6 0 -67.003 63.0333 -25.85 - 48 111.816 564 5 1 -67.1491 63.2297 -54.45 - 48 121.701 1215 5 0 -67.1668 63.2392 -55.85 - 48 141.934 562 4 1 -67.5354 63.4691 -84.45 - 48 122.82 1217 4 0 -67.5674 63.4802 -85.85 - 48 215.487 559 3 1 -68.196 63.704 -114.45 - 48 141.268 1218 3 0 -68.2239 63.7156 -115.85 - 48 110.524 556 2 1 -68.7862 63.9819 -144.45 - 48 119.772 1219 2 0 -68.8214 64.0077 -145.85 - 48 169.534 552 1 1 -69.5362 64.5492 -174.45 - 48 176.836 1222 1 0 -69.577 64.5821 -175.85 - 48 127.817 547 0 1 -70.4594 65.2395 -204.45 - 48 126.953 1226 0 0 -70.4961 65.272 -205.85 - 48 17.4348 627 1 1 -54.5169 -25.0107 -174.85 - 48 202.742 628 1 1 -54.45 -25.2855 -174.585 - 48 126.041 560 1 1 -67.8862 63.6961 -174.45 - 48 130.488 1218 1 0 -67.9156 63.705 -175.85 - 48 182.569 557 0 1 -68.5996 63.7141 -204.45 - 48 127.657 1218 0 0 -68.6458 63.6752 -205.85 - 48 188.05 1062 1 0 -94.4855 32.65 -176.234 - 48 202.134 566 7 1 -66.7212 62.653 5.55 - 48 105.846 1212 7 0 -66.9829 62.6001 4.1499 - 48 46.8966 542 6 1 -71.6168 61.705 -24.4502 - 48 97.79 541 6 1 -71.6502 61.616 -24.6044 - 48 30.9436 1204 6 0 -71.8544 60.8924 -25.85 - 48 139.061 1203 6 0 -71.8652 60.8496 -25.922 - 48 130.993 518 5 1 -76.268 44.512 -54.45 - 48 53.0161 1118 5 0 -76.4647 43.7385 -55.85 - 48 96.7014 1117 5 0 -76.4842 43.65 -56.0161 - 48 120.236 496 4 1 -80.818 23.5665 -84.45 - 48 4.12088 497 4 1 -80.65 23.3591 -84.8381 - 48 97.2997 1013 4 0 -80.1595 22.8188 -85.8501 - 48 37.2402 1012 4 0 -79.9654 22.65 -86.1356 - 48 80.338 619 3 1 -56.1733 8.6636 -114.45 - 48 96.433 620 3 1 -56.05 8.47444 -114.521 - 48 78.9208 621 3 1 -55.85 8.20787 -114.643 - 48 167.267 622 3 1 -55.65 8.017 -114.717 - 48 75.2313 623 3 1 -55.45 7.86815 -114.776 - 48 13.3307 624 3 1 -55.2499 7.75918 -114.84 - 48 12.1719 930 3 0 -52.7384 6.07025 -115.85 - 48 104.88 929 3 0 -52.7094 6.05 -115.862 - 48 77.583 928 3 0 -52.4676 5.85 -115.958 - 48 117.772 927 3 0 -52.2597 5.64893 -116.014 - 48 109.025 926 3 0 -52.1068 5.44949 -116.068 - 48 54.6545 925 3 0 -51.949 5.25 -116.139 - 48 46.6927 924 3 0 -51.7984 5.05 -116.149 - 48 74.2622 923 3 0 -51.6448 4.84994 -116.096 - 48 63.8395 922 3 0 -51.4797 4.65 -116.035 - 48 42.0817 921 3 0 -51.3821 4.45 -115.927 - 48 25.833 647 3 1 -50.4959 2.37878 -114.85 - 48 323.842 648 3 1 -50.45 2.27488 -114.796 - 48 73.7718 649 3 1 -50.25 1.8718 -114.461 - 48 26.1753 900 3 0 -50.115 0.122271 -115.85 - 48 40.3114 899 3 0 -50.1024 -0.05 -116.107 - 48 293.345 786 3 0 -35.1656 -22.685 -116.25 - 48 6.79947 729 3 1 -34.0715 -22.8973 -114.85 - 48 212.116 730 3 1 -34.0499 -22.8997 -114.823 - 48 62.574 731 3 1 -33.85 -22.9895 -114.67 - 48 115.154 732 3 1 -33.65 -23.0102 -114.629 - 48 286.975 821 3 0 -57.0325 -15.65 -116.084 - 48 43.1981 1210 7 0 -66.4701 62.1197 4.15 - 48 158.576 1209 7 0 -66.446 62.0498 4.02955 - 48 86.7153 1208 7 0 -66.7 61.8497 3.84641 - 48 149.972 837 7 0 -114.729 -12.5764 3.75008 - 48 69.8701 562 7 1 -67.6194 63.0022 5.55 - 48 38.6856 561 7 1 -67.65 63.0203 5.31599 - 48 129.893 1215 7 0 -67.8153 63.1258 4.15 - 48 120.011 540 6 1 -71.9007 65.2549 -24.4501 - 48 126.345 1227 6 0 -72.2973 65.4807 -25.85 - 48 6.35657 500 5 1 -80.038 70.7098 -54.45 - 48 112.778 499 5 1 -80.05 70.7184 -54.4801 - 48 115.896 1255 5 0 -80.5709 71.0941 -55.8501 - 48 150.196 445 4 1 -91.0063 78.3925 -84.45 - 48 162.348 1295 4 0 -90.965 79.0559 -85.85 - 48 0.188723 1296 4 0 -90.9489 79.25 -86.2481 - 48 268.442 451 3 1 -89.7682 92.6473 -114.45 - 48 136.916 1365 3 0 -89.6294 93.1785 -115.85 - 48 83.8776 467 2 1 -86.6205 104.146 -144.45 - 48 45.3195 466 2 1 -86.65 104.232 -144.693 - 48 111.313 1422 2 0 -86.7894 104.642 -145.85 - 48 35.8587 1423 2 0 -86.8272 104.75 -146.159 - 48 115.007 449 1 1 -90.227 114.35 -174.451 - 48 137.708 1472 1 0 -90.6704 114.574 -175.85 - 48 7.40833 452 0 1 -89.6432 116.112 -204.45 - 48 144.04 451 0 1 -89.65 116.118 -204.461 - 48 21.7067 450 0 1 -89.85 116.334 -204.784 - 48 8.05467 1485 0 0 -90.4856 117.325 -205.851 - 48 86.7766 1486 0 0 -90.5001 117.35 -205.876 - 48 71.2102 1487 0 0 -90.6193 117.55 -206.087 - 48 160.455 1584 0 0 -88.0602 137.063 -206.25 - 48 73.379 466 0 1 -86.8477 136.774 -204.85 - 48 200.713 467 0 1 -86.65 136.719 -204.594 - 48 326.443 468 0 1 -86.45 136.934 -204.553 - 48 108.177 1582 0 0 -85.6299 136.553 -205.85 - 48 178.825 1581 0 0 -85.6113 136.55 -205.883 - 48 44.3469 450 3 1 -89.85 92.6412 -114.746 - 48 58.1152 1357 3 0 -90.6183 91.6499 -115.85 - 48 114.262 1356 3 0 -90.6577 91.5499 -115.954 - 48 218.268 1291 3 0 -72.0834 78.3674 -116.25 - 48 170.012 1276 1 0 -86.3483 75.3037 -175.85 - 48 30.9402 1050 0 0 -49.7453 30.25 -206.019 - 48 24.198 663 0 1 -47.4024 30.3859 -204.85 - 48 42.5535 1051 0 0 -44.4811 30.25 -205.86 - 48 54.8846 679 0 1 -44.1724 30.8119 -204.85 - 48 16.4994 1058 0 0 -44.1663 31.814 -205.85 - 48 4.92523 1059 0 0 -44.1579 31.85 -205.852 - 48 121.157 683 0 1 -43.2824 34.7377 -204.85 - 48 9.04566 1075 0 0 -43.0054 35.1298 -205.85 - 48 112.728 563 9 1 -67.25 62.8284 65.4611 - 48 41.8968 562 9 1 -67.45 63.0902 65.219 - 48 103.686 1221 9 0 -68.582 64.2765 64.1499 - 48 89.3142 1222 9 0 -68.7613 64.45 63.9762 - 48 13.1527 1223 9 0 -68.9462 64.65 63.7824 - 48 151.796 378 8 1 -104.506 102.841 35.55 - 48 141.102 1417 8 0 -104.498 103.574 34.1498 - 48 10.941 1418 8 0 -104.545 103.75 33.7937 - 48 35.9393 376 8 1 -104.75 103.54 35.2564 -Number of digits in this event = 54 -Using G4ParticleGun ... -3.37809 LIN -e- -Event: 49 -Number of tracker hits in this event = 22 - 49 170.298 1542 8 1 128.715 -67.5366 35.55 - 49 183.402 562 8 0 128.711 -67.5334 34.15 - 49 139.797 1542 7 1 128.628 -67.4766 5.55 - 49 103.32 562 7 0 128.625 -67.4755 4.15 - 49 124.218 1541 6 1 128.548 -67.4507 -24.45 - 49 98.711 562 6 0 128.544 -67.4506 -25.85 - 49 118.231 1541 5 1 128.466 -67.436 -54.45 - 49 125.588 563 5 0 128.463 -67.4357 -55.85 - 49 108.201 1541 4 1 128.408 -67.4425 -84.45 - 49 122.057 563 4 0 128.408 -67.4406 -85.85 - 49 122.633 1541 3 1 128.389 -67.3944 -114.45 - 49 110.115 563 3 0 128.39 -67.3947 -115.85 - 49 238.733 1541 2 1 128.407 -67.3973 -144.45 - 49 99.8549 563 2 0 128.407 -67.4052 -145.85 - 49 156.306 1541 1 1 128.378 -67.5698 -174.45 - 49 125.886 562 1 0 128.378 -67.5802 -175.85 - 49 112.392 1541 0 1 128.417 -67.7958 -204.45 - 49 131.462 561 0 0 128.416 -67.8064 -205.85 - 49 230.454 1540 0 1 128.247 -67.0519 -204.45 - 49 355.877 564 0 0 128.249 -67.0544 -205.85 - 49 12.5826 1221 1 0 101.917 64.2892 -176.25 - 49 11.3351 355 4 0 166.557 -109.081 -86.25 -Number of digits in this event = 16 -Using G4ParticleGun ... -9.54121 LIN -e- -Event: 50 -Number of tracker hits in this event = 35 - 50 171.926 414 10 1 -97.3446 -34.6977 95.55 - 50 133.059 726 10 0 -97.3446 -34.6977 94.15 - 50 111.395 414 9 1 -97.3446 -34.6993 65.55 - 50 131.037 726 9 0 -97.3457 -34.7 64.15 - 50 125.044 413 8 1 -97.3695 -34.7118 35.55 - 50 131.261 726 8 0 -97.3707 -34.7115 34.15 - 50 123.179 413 7 1 -97.3936 -34.7068 5.55 - 50 123.202 726 7 0 -97.3944 -34.7065 4.15 - 50 105.908 413 6 1 -97.4108 -34.6987 -24.45 - 50 108.237 726 6 0 -97.4116 -34.6972 -25.85 - 50 132.983 413 5 1 -97.4283 -34.6728 -54.45 - 50 112.559 726 5 0 -97.4293 -34.6713 -55.85 - 50 109.947 413 4 1 -97.446 -34.6408 -84.45 - 50 157.075 727 4 0 -97.4468 -34.6396 -85.85 - 50 109.957 413 3 1 -97.4646 -34.6177 -114.45 - 50 109.851 727 3 0 -97.466 -34.6178 -115.85 - 50 105.257 413 2 1 -97.4945 -34.621 -144.45 - 50 119.345 727 2 0 -97.4959 -34.6208 -145.85 - 50 96.8367 413 1 1 -97.5234 -34.6181 -174.45 - 50 160.942 727 1 0 -97.5238 -34.6179 -175.85 - 50 197 413 0 1 -97.5324 -34.6157 -204.45 - 50 129.071 727 0 0 -97.5327 -34.6148 -205.85 - 50 89.9969 118 2 1 -156.35 12.6067 -144.653 - 50 76.9628 851 0 0 -125.671 -9.85 -206.136 - 50 36.767 1154 4 0 -147.216 50.9764 -86.25 - 50 108.986 414 7 1 -97.35 -34.622 5.47815 - 50 36.4885 415 7 1 -97.15 -34.3693 5.20433 - 50 12.31 734 7 0 -96.1666 -33.0973 4.14997 - 50 90.6457 735 7 0 -96.1356 -33.05 4.12027 - 50 68.7678 736 7 0 -95.9753 -32.85 3.93774 - 50 18.5712 737 7 0 -95.8779 -32.65 3.7983 - 50 158.928 884 7 0 -57.2382 -3.16361 3.75 - 50 36.8981 616 7 1 -56.7159 -3.05032 5.15 - 50 98.7519 617 7 1 -56.65 -3.04226 5.26445 - 50 79.7873 1280 5 1 76.124 -121.959 -54.45 -Number of digits in this event = 16 -Using G4ParticleGun ... -9.76047 LIN -e- -Event: 51 -Number of tracker hits in this event = 19 - 51 128.775 1362 9 0 -98.5472 92.7436 64.15 - 51 104.198 408 8 1 -98.5479 92.7407 35.55 - 51 148.971 1362 8 0 -98.5481 92.7401 34.15 - 51 132.359 407 7 1 -98.5534 92.7304 5.55 - 51 197.697 1362 7 0 -98.5539 92.7289 4.15 - 51 107.214 407 6 1 -98.5682 92.7034 -24.45 - 51 153.525 1362 6 0 -98.5704 92.7017 -25.85 - 51 99.7108 407 5 1 -98.6136 92.662 -54.45 - 51 132.12 1362 5 0 -98.6158 92.6602 -55.85 - 51 123.755 407 4 1 -98.6618 92.6236 -84.45 - 51 272.524 1362 4 0 -98.6641 92.6212 -85.85 - 51 172.863 407 3 1 -98.7101 92.5701 -114.45 - 51 140.083 1362 3 0 -98.7126 92.5684 -115.85 - 51 126.707 406 2 1 -98.7639 92.5359 -144.45 - 51 110.283 1361 2 0 -98.7653 92.5345 -145.85 - 51 136.415 406 1 1 -98.7955 92.5075 -174.45 - 51 104.459 1361 1 0 -98.7962 92.5058 -175.85 - 51 118.328 406 0 1 -98.8088 92.4734 -204.45 - 51 117.332 1361 0 0 -98.8094 92.4711 -205.85 -Number of digits in this event = 15 -Using G4ParticleGun ... -2.42165 LIN -e- -Event: 52 -Number of tracker hits in this event = 27 - 52 199.014 206 8 1 -138.897 5.5695 35.55 - 52 177.493 927 8 0 -138.896 5.57013 34.15 - 52 141.243 206 7 1 -138.867 5.57924 5.55 - 52 152.732 927 7 0 -138.866 5.57923 4.15 - 52 117.968 206 6 1 -138.855 5.58593 -24.45 - 52 158.146 927 6 0 -138.853 5.5881 -25.85 - 52 250.474 206 5 1 -138.818 5.61795 -54.45 - 52 203.462 927 5 0 -138.814 5.61834 -55.85 - 52 101.636 207 4 1 -138.74 5.61882 -84.45 - 52 134.757 927 4 0 -138.734 5.61819 -85.85 - 52 396.007 207 3 1 -138.602 5.60243 -114.45 - 52 413.129 927 3 0 -138.591 5.5987 -115.85 - 52 112.191 208 2 1 -138.358 5.5458 -144.45 - 52 111.273 927 2 0 -138.35 5.54236 -145.85 - 52 122.268 209 1 1 -138.182 5.4794 -174.45 - 52 121.278 927 1 0 -138.172 5.4768 -175.85 - 52 143.722 210 0 1 -137.96 5.42416 -204.45 - 52 396.233 926 0 0 -137.95 5.42523 -205.85 - 52 119.767 794 0 1 -21.2416 -69.7754 -204.45 - 52 184.048 793 0 1 -21.25 -69.733 -204.539 - 52 347.042 550 0 0 -21.1598 -69.9616 -205.85 - 52 245.894 211 0 1 -137.901 5.34126 -204.45 - 52 5.07148 926 3 0 -138.57 5.45 -116.123 - 52 79.9277 206 3 1 -138.751 5.42149 -114.527 - 52 70.0441 205 3 1 -138.95 5.43036 -114.658 - 52 11.037 204 3 1 -139.15 5.40409 -114.819 - 52 218.339 925 3 0 -141.058 5.1295 -115.85 -Number of digits in this event = 20 -Using G4ParticleGun ... -6.99585 LIN -e- -Event: 53 -Number of tracker hits in this event = 99 - 53 164.189 556 11 1 -68.8022 21.5947 125.55 - 53 90.0314 1007 11 0 -68.8018 21.5952 124.15 - 53 101.941 556 10 1 -68.7958 21.6036 95.55 - 53 177.388 1007 10 0 -68.7953 21.6024 94.15 - 53 128.163 556 9 1 -68.7873 21.5764 65.55 - 53 135.654 1007 9 0 -68.7858 21.576 64.15 - 53 151.56 556 8 1 -68.7568 21.5666 35.55 - 53 120.75 1007 8 0 -68.7562 21.5653 34.15 - 53 125.573 556 7 1 -68.7428 21.5412 5.55 - 53 132.957 1007 7 0 -68.7414 21.5409 4.15 - 53 134.136 556 6 1 -68.7119 21.5393 -24.45 - 53 101.019 1007 6 0 -68.7507 21.5559 -25.85 - 53 128.549 550 5 1 -69.9107 21.9928 -54.45 - 53 128.492 1010 5 0 -69.9489 22.0502 -55.85 - 53 116.136 547 4 1 -70.4708 24.0917 -84.45 - 53 149.506 1020 4 0 -70.4888 24.175 -85.85 - 53 114.391 546 3 1 -70.7081 25.677 -114.45 - 53 132.435 1028 3 0 -70.7603 25.7234 -115.85 - 53 111.541 540 2 1 -71.8562 26.7364 -144.45 - 53 163.703 1034 2 0 -71.8826 26.8837 -145.85 - 53 109.678 538 1 1 -72.2806 29.8902 -174.45 - 53 112.413 1050 1 0 -72.3363 30.1533 -175.85 - 53 136.623 532 0 1 -73.5136 35.3613 -204.45 - 53 130.036 1077 0 0 -73.6209 35.5793 -205.85 - 53 103.547 539 1 1 -72.2045 29.7494 -174.45 - 53 24.2382 540 1 1 -72.05 29.7533 -174.473 - 53 161.535 551 2 1 -69.8287 23.2638 -144.451 - 53 52.6864 550 2 1 -69.85 23.2436 -144.674 - 53 133.792 1015 2 0 -69.9601 23.1303 -145.851 - 53 127.137 545 1 1 -70.8804 20.4319 -174.45 - 53 130.619 1004 1 0 -70.9808 20.9017 -175.85 - 53 156.41 544 0 1 -71.2283 32.2802 -204.45 - 53 67.6387 1063 0 0 -70.8626 32.7568 -205.85 - 53 34.7683 1064 0 0 -70.7874 32.85 -206.125 - 53 75.4861 552 2 1 -69.65 22.9692 -144.457 - 53 98.8727 553 2 1 -69.45 23.0862 -144.573 - 53 155.514 1016 2 0 -69.1215 23.2911 -145.85 - 53 245.117 556 5 1 -68.6782 21.5202 -54.45 - 53 232.427 1007 5 0 -68.6781 21.5275 -55.85 - 53 294.259 557 4 1 -68.5545 21.6274 -84.45 - 53 274.68 1007 4 0 -68.5579 21.6319 -85.85 - 53 104.927 557 3 1 -68.6319 21.7145 -114.45 - 53 273.444 1008 3 0 -68.64 21.7199 -115.85 - 53 106.371 556 2 1 -68.8031 21.8116 -144.45 - 53 109.146 1008 2 0 -68.8056 21.8174 -145.85 - 53 235.061 555 1 1 -68.8797 21.9292 -174.45 - 53 109.874 1009 1 0 -68.882 21.9324 -175.85 - 53 143.428 555 0 1 -68.9478 22.0041 -204.45 - 53 269.65 1009 0 0 -68.9457 22.0311 -205.85 - 53 171.087 1010 0 0 -69.0196 22.05 -205.946 - 53 74.521 1011 0 0 -69.1612 22.25 -205.977 - 53 102.584 556 1 1 -68.85 21.9119 -174.815 - 53 182.769 980 1 0 -64.5436 16.2238 -175.85 - 53 278.815 979 1 0 -64.4681 16.0498 -175.888 - 53 18.8291 581 1 1 -63.6891 13.8162 -174.85 - 53 344.201 965 1 0 -62.8619 13.1568 -175.85 - 53 70.5921 638 1 1 -52.449 -1.86605 -174.85 - 53 159.524 556 4 1 -68.6533 21.5049 -84.45 - 53 563.288 556 3 1 -68.6548 21.4912 -114.45 - 53 265.074 1007 3 0 -68.6545 21.4905 -115.85 - 53 114.464 557 2 1 -68.644 21.479 -144.45 - 53 137.937 1007 2 0 -68.6432 21.4788 -145.85 - 53 107.643 557 1 1 -68.6197 21.4714 -174.45 - 53 152.483 1007 1 0 -68.6206 21.472 -175.85 - 53 104.342 557 0 1 -68.6307 21.4768 -204.45 - 53 193.166 1007 0 0 -68.6298 21.4761 -205.85 - 53 66.6107 717 0 1 -36.65 138.652 -204.663 - 53 95.9763 182 4 0 -9.29725 -143.55 -86.1937 - 53 40.8536 855 4 1 -9.04819 -143.524 -84.85 - 53 7.26022 192 4 0 -8.30916 -141.557 -85.8502 - 53 134.326 193 4 0 -8.30767 -141.55 -85.8544 - 53 5.92708 610 0 1 -57.8985 27.6831 -204.85 - 53 75.3447 713 1 1 -37.445 -93.7032 -174.85 - 53 197.044 714 1 1 -37.2498 -94.0782 -174.579 - 53 78.8503 715 1 1 -37.05 -94.2277 -174.455 - 53 17.2093 916 3 0 56.5839 3.2598 -116.25 - 53 77.3151 889 0 0 -118.025 -2.09826 -206.25 - 53 146.567 888 0 0 -118.252 -2.25 -206.097 - 53 119.138 887 0 0 -118.356 -2.45 -205.985 - 53 75.0392 537 2 1 -72.516 26.121 -144.45 - 53 52.0717 536 2 1 -72.65 26.2078 -144.677 - 53 98.9912 1033 2 0 -73.3936 26.7362 -145.85 - 53 195.649 440 1 1 -91.9912 40.1908 -174.45 - 53 198.008 1097 1 0 -92.2522 39.6413 -175.85 - 53 113.905 409 0 1 -98.2662 30.1497 -204.45 - 53 220.364 1050 0 0 -98.2581 30.1829 -205.85 - 53 110.857 555 2 1 -68.9448 21.0146 -144.45 - 53 225.535 1004 2 0 -68.9621 21.0065 -145.85 - 53 93.3402 554 1 1 -69.0672 20.542 -174.45 - 53 130.182 1002 1 0 -69.0326 20.5181 -175.85 - 53 108.143 558 0 1 -68.4406 19.8614 -204.45 - 53 125.094 998 0 0 -68.384 19.8353 -205.85 - 53 76.5013 555 6 1 -68.85 21.4643 -24.4973 - 53 77.938 554 6 1 -69.0501 21.3909 -24.6011 - 53 96.0892 553 6 1 -69.2503 21.3303 -24.7127 - 53 101.515 1005 6 0 -70.4173 21.0903 -25.85 - 53 191.581 1004 6 0 -70.7055 21.05 -25.9933 - 53 161.878 1003 6 0 -71.2286 20.85 -26.1447 - 53 176.189 555 11 1 -68.85 21.5326 125.415 -Number of digits in this event = 56 -Using G4ParticleGun ... -6.19564 LIN -e- -Event: 54 -Number of tracker hits in this event = 50 - 54 133.576 1052 11 1 30.6104 71.3136 125.55 - 54 120.314 1256 11 0 30.6105 71.3145 124.15 - 54 119.957 1052 10 1 30.6101 71.3344 95.55 - 54 116.05 1256 10 0 30.6096 71.3365 94.15 - 54 234.036 1052 9 1 30.5981 71.3752 65.55 - 54 102.248 1256 9 0 30.5987 71.3763 64.15 - 54 118.788 1052 8 1 30.6127 71.4056 35.55 - 54 119.086 1256 8 0 30.6127 71.4057 34.15 - 54 159.461 1052 7 1 30.6172 71.3993 5.55 - 54 107.902 1256 7 0 30.6186 71.3984 4.15 - 54 126.676 1052 6 1 30.64 71.3821 -24.45 - 54 164.055 1256 6 0 30.6413 71.3801 -25.85 - 54 163.313 1053 5 1 30.6681 71.3398 -54.45 - 54 121.044 1256 5 0 30.673 71.3358 -55.85 - 54 137.526 1053 4 1 30.7446 71.27 -84.45 - 54 135.276 1256 4 0 30.7492 71.2683 -85.85 - 54 341.82 1053 3 1 30.8275 71.2519 -114.45 - 54 178.093 1255 3 0 30.8324 71.2497 -115.85 - 54 162.926 1054 2 1 30.9257 71.2119 -144.45 - 54 158.159 1255 2 0 30.9301 71.2074 -145.85 - 54 137.99 1054 1 1 31.0255 71.0956 -174.45 - 54 323.35 1255 1 0 31.0344 71.0904 -175.85 - 54 444.341 1055 0 1 31.2163 70.9812 -204.45 - 54 192.967 1254 0 0 31.2298 70.9728 -205.85 - 54 1.47097 1048 2 1 29.7313 -92.7701 -144.85 - 54 8.54097 870 3 0 36.3966 -5.86774 -116.25 - 54 3.43232 871 3 0 36.399 -5.85 -116.249 - 54 81.3154 1047 2 1 29.65 -93.2593 -144.475 - 54 81.8636 1262 0 0 30.6962 72.4889 -205.85 - 54 23.7629 1071 0 1 34.3428 73.2275 -204.85 - 54 18.8364 1259 0 0 35.275 71.9711 -205.85 - 54 24.1019 1076 0 1 35.3964 71.0551 -204.85 - 54 47.4199 1249 0 0 35.9942 69.919 -205.85 - 54 86.9687 1248 0 0 36.003 69.85 -205.876 - 54 125.834 1053 7 1 30.65 71.4171 5.51228 - 54 10.2844 1257 4 0 30.66 71.5 -86.2293 - 54 233.518 1257 3 0 30.6905 71.5145 -115.85 - 54 125.861 1052 2 1 30.4976 71.4506 -144.45 - 54 221.17 1256 2 0 30.4679 71.4393 -145.85 - 54 116.775 1049 1 1 29.9296 71.1916 -174.45 - 54 96.3419 1046 0 1 29.4396 70.5839 -204.45 - 54 316.971 1252 0 0 29.4118 70.5714 -205.85 - 54 165.511 1053 2 1 30.6554 71.2687 -144.45 - 54 128.49 1052 1 1 30.6104 71.0184 -174.45 - 54 128.129 1254 1 0 30.6383 70.9945 -175.85 - 54 97.1829 709 2 0 31.4283 -38.05 -146.089 - 54 28.0091 1033 2 1 26.85 -38.3649 -144.722 - 54 49.4421 919 4 1 4.05 -45.7036 -84.5175 - 54 571.98 1042 0 0 153.009 28.4515 -206.25 - 54 64.1779 1041 0 0 153.019 28.45 -206.247 -Number of digits in this event = 29 -Using G4ParticleGun ... -2.14788 LIN -e- -Event: 55 -Number of tracker hits in this event = 18 - 55 143.048 159 7 1 -148.167 -3.83118 5.55 - 55 100.376 881 7 0 -148.163 -3.83103 4.15 - 55 115.128 160 6 1 -148.073 -3.83395 -24.45 - 55 127.841 881 6 0 -148.07 -3.83572 -25.85 - 55 260.021 160 5 1 -148.01 -3.84654 -54.45 - 55 139.011 881 5 0 -148.002 -3.84587 -55.85 - 55 142.384 161 4 1 -147.834 -3.82634 -84.45 - 55 175.159 881 4 0 -147.826 -3.82673 -85.85 - 55 170.723 162 3 1 -147.667 -3.842 -114.45 - 55 131.535 881 3 0 -147.66 -3.84055 -115.85 - 55 124.192 163 2 1 -147.506 -3.81268 -144.45 - 55 129.593 881 2 0 -147.497 -3.8165 -145.85 - 55 122.043 164 1 1 -147.291 -3.89837 -174.45 - 55 110.363 880 1 0 -147.284 -3.90648 -175.85 - 55 122.489 165 0 1 -147.143 -4.04928 -204.45 - 55 129.171 879 0 0 -147.138 -4.05492 -205.85 - 55 122.827 880 4 0 -147.784 -3.85006 -86.1893 - 55 18.9972 880 6 0 -148.065 -3.85 -26.2017 -Number of digits in this event = 16 -Using G4ParticleGun ... -2.543 LIN -e- -Event: 56 -Number of tracker hits in this event = 60 - 56 111.342 1112 10 1 42.4832 -91.6531 95.55 - 56 114.973 442 10 0 42.4831 -91.6506 94.15 - 56 180.108 1112 9 1 42.4799 -91.591 65.55 - 56 108.203 442 9 0 42.4786 -91.589 64.15 - 56 121.734 1111 8 1 42.4411 -91.5598 35.55 - 56 153.658 442 8 0 42.4391 -91.5572 34.15 - 56 119.509 1111 7 1 42.3914 -91.5111 5.55 - 56 119.919 443 7 0 42.3868 -91.5052 4.15 - 56 402.481 1111 6 1 42.274 -91.3379 -24.45 - 56 702.543 443 6 0 42.252 -91.3644 -25.85 - 56 183.214 1108 5 1 41.7958 -92.0226 -54.45 - 56 113.392 440 5 0 41.7782 -92.0569 -55.85 - 56 124.316 1107 4 1 41.5513 -92.8188 -84.45 - 56 103.832 436 4 0 41.5361 -92.8587 -85.85 - 56 140.065 1105 3 1 41.1889 -93.679 -114.45 - 56 104.904 432 3 0 41.1833 -93.704 -115.85 - 56 125.934 1105 2 1 41.105 -94.0919 -144.45 - 56 134.286 430 2 0 41.1078 -94.1123 -145.85 - 56 118.761 1106 1 1 41.25 -94.7273 -174.45 - 56 131.663 426 1 0 41.2911 -94.7621 -175.85 - 56 484.472 1110 0 1 42.216 -95.3161 -204.45 - 56 34.244 424 0 0 42.2574 -95.3469 -205.85 - 56 129.596 423 0 0 42.2615 -95.35 -205.989 - 56 30.5269 1110 6 1 42.2497 -91.2519 -24.8056 - 56 58.9399 444 6 0 41.6318 -91.3251 -25.85 - 56 129.446 1113 5 1 42.7379 -91.8779 -54.45 - 56 117.697 441 5 0 42.7776 -91.8746 -55.85 - 56 117.415 1117 4 1 43.5743 -91.7697 -84.45 - 56 177.954 441 4 0 43.622 -91.7668 -85.85 - 56 139.529 1122 3 1 44.5221 -91.6892 -114.45 - 56 107.351 442 3 0 44.5509 -91.674 -115.85 - 56 143.393 1125 2 1 45.0967 -91.3195 -144.45 - 56 93.8399 444 2 0 45.1091 -91.291 -145.85 - 56 361.466 1126 1 1 45.3168 -90.698 -174.45 - 56 125.295 447 1 0 45.305 -90.6841 -175.85 - 56 158.854 1125 0 1 45.0759 -90.4669 -204.45 - 56 114.891 448 0 0 45.0447 -90.4486 -205.85 - 56 61.2758 962 1 1 12.6157 61.3408 -174.45 - 56 211.617 1112 5 1 42.565 -92.181 -54.45 - 56 117.875 439 5 0 42.5585 -92.245 -55.85 - 56 127.42 1111 4 1 42.2729 -93.4895 -84.45 - 56 92.4912 433 4 0 42.264 -93.539 -85.85 - 56 28.9171 432 4 0 42.2621 -93.55 -86.1456 - 56 111.762 1110 3 1 42.2127 -94.5718 -114.45 - 56 110.024 427 3 0 42.2005 -94.5985 -115.85 - 56 149.607 1109 2 1 41.9462 -95.0988 -144.45 - 56 7.07462 425 2 0 41.8752 -95.1483 -145.85 - 56 130.254 424 2 0 41.8726 -95.15 -145.899 - 56 146.173 1101 1 1 40.3245 -96.2475 -174.45 - 56 285.581 419 1 0 40.1721 -96.2643 -175.85 - 56 147.084 1084 0 1 36.8885 -96.5093 -204.45 - 56 151.722 418 0 0 36.7524 -96.5284 -205.85 - 56 50.7167 320 1 0 31.4233 -115.95 -176.232 - 56 140.719 600 3 0 -23.5363 -60.0103 -116.25 - 56 155.845 601 3 0 -23.8365 -59.85 -115.978 - 56 32.0075 602 3 0 -24.1417 -59.65 -115.881 - 56 8.67944 775 3 1 -25.028 -59.3771 -114.85 - 56 237.977 774 3 1 -25.05 -59.3696 -114.83 - 56 45.8155 483 2 0 38.5062 -83.2748 -146.25 - 56 248.052 484 2 0 38.4873 -83.25 -146.173 -Number of digits in this event = 35 -Using G4ParticleGun ... -6.48179 LIN -e- -Event: 57 -Number of tracker hits in this event = 44 - 57 120.603 376 10 1 -104.845 -24.3925 95.55 - 57 129.022 778 10 0 -104.845 -24.3917 94.15 - 57 135.218 376 9 1 -104.829 -24.3818 65.55 - 57 98.4046 778 9 0 -104.827 -24.3822 64.15 - 57 382.02 376 8 1 -104.791 -24.3914 35.55 - 57 121.571 778 8 0 -104.788 -24.3916 34.15 - 57 104.346 377 7 1 -104.739 -24.4003 5.55 - 57 120.641 778 7 0 -104.737 -24.4006 4.15 - 57 126.032 377 6 1 -104.691 -24.4068 -24.45 - 57 433.8 778 6 0 -104.688 -24.4078 -25.85 - 57 261.853 377 5 1 -104.64 -24.4338 -54.45 - 57 126.413 778 5 0 -104.639 -24.4359 -55.85 - 57 260.444 377 4 1 -104.602 -24.4782 -84.45 - 57 122.391 777 4 0 -104.601 -24.4796 -85.85 - 57 276.292 377 3 1 -104.601 -24.5046 -114.45 - 57 154.081 777 3 0 -104.601 -24.505 -115.85 - 57 103.66 377 2 1 -104.597 -24.5123 -144.45 - 57 147.468 777 2 0 -104.596 -24.5132 -145.85 - 57 131.157 377 1 1 -104.577 -24.5398 -174.45 - 57 157.332 777 1 0 -104.577 -24.5408 -175.85 - 57 141.249 377 0 1 -104.574 -24.5755 -204.45 - 57 248.413 777 0 0 -104.58 -24.5752 -205.85 - 57 203.723 642 1 0 39.2859 -51.4582 -176.25 - 57 55.5133 377 8 1 -104.75 -24.4684 35.5493 - 57 32.4132 378 4 1 -104.55 -24.4516 -84.7255 - 57 102.392 779 4 0 -104.323 -24.158 -85.85 - 57 44.409 780 4 0 -104.204 -24.05 -86.1244 - 57 105.071 963 4 0 -73.5434 12.7306 -86.25 - 57 14.65 964 4 0 -73.4034 12.85 -85.9018 - 57 91.9613 537 4 1 -72.6444 13.1636 -84.85 - 57 56.288 538 4 1 -72.4499 13.249 -84.6387 - 57 220.961 699 2 1 -40.1814 22.8438 -144.45 - 57 93.7464 1014 2 0 -39.8894 22.9752 -145.85 - 57 90.4866 1013 2 0 -39.8288 22.85 -146.131 - 57 10.6617 1012 2 0 -39.8636 22.65 -146.246 - 57 249.558 247 2 0 -134.25 -130.638 -146.25 - 57 68.2657 221 2 1 -135.878 -129.146 -144.85 - 57 16.4108 220 2 1 -135.95 -129.029 -144.836 - 57 99.2479 265 2 0 -136.727 -127.008 -145.85 - 57 119.385 266 2 0 -136.766 -126.95 -145.861 - 57 88.2065 376 4 1 -104.75 -24.642 -84.6245 - 57 75.2184 772 4 0 -106.07 -25.5956 -85.85 - 57 211.119 771 4 0 -106.262 -25.6501 -85.9653 - 57 81.9389 770 4 0 -106.238 -25.8501 -86.1325 -Number of digits in this event = 26 -Using G4ParticleGun ... -7.2828 LIN -e- -Event: 58 -Number of tracker hits in this event = 65 - 58 144.291 1233 9 1 66.835 114.795 65.55 - 58 148.373 1473 9 0 66.8348 114.795 64.15 - 58 120.198 1233 8 1 66.8367 114.793 35.55 - 58 109.594 1473 8 0 66.8368 114.792 34.15 - 58 93.527 1233 7 1 66.8365 114.776 5.55 - 58 128.731 1473 7 0 66.8366 114.775 4.15 - 58 107.401 1233 6 1 66.8471 114.769 -24.45 - 58 119.022 1473 6 0 66.8483 114.771 -25.85 - 58 199.637 1234 5 1 66.8628 114.811 -54.45 - 58 129.173 1473 5 0 66.8633 114.813 -55.85 - 58 119.447 1234 4 1 66.8961 114.871 -84.45 - 58 106.974 1473 4 0 66.8991 114.875 -85.85 - 58 114.205 1234 3 1 66.9642 114.965 -114.45 - 58 289.476 1474 3 0 66.9634 114.974 -115.85 - 58 559.519 1234 2 1 66.9505 115.133 -144.45 - 58 101.188 1474 2 0 66.952 115.145 -145.85 - 58 127.151 1234 1 1 66.9741 115.373 -174.45 - 58 106.472 1476 1 0 66.9764 115.385 -175.85 - 58 147.39 1234 0 1 67.0344 115.629 -204.45 - 58 118.398 1477 0 0 67.0363 115.64 -205.85 - 58 82.855 1192 5 1 58.65 -127.216 -54.587 - 58 429.301 1193 5 1 58.65 -127.305 -54.4629 - 58 244.661 1194 5 1 58.85 -127.697 -54.475 - 58 12.1569 740 7 0 142.74 -31.881 3.75 - 58 90.0123 741 7 0 142.747 -31.8497 3.78336 - 58 61.7796 742 7 0 142.764 -31.65 3.97416 - 58 108.803 1612 7 1 142.604 -30.292 5.15041 - 58 60.7089 1611 7 1 142.55 -29.9985 5.43857 - 58 142.618 1610 7 1 142.35 -29.948 5.54176 - 58 94.1987 745 7 0 141.713 -30.8589 4.14958 - 58 36.6426 744 7 0 141.576 -31.05 3.85965 - 58 59.45 618 7 0 115.083 -56.4427 3.75 - 58 99.9167 617 7 0 115.011 -56.45 3.87581 - 58 79.5352 1470 7 1 114.31 -56.5046 5.15 - 58 278.752 1469 7 1 114.15 -56.5173 5.32669 - 58 224.055 1468 7 1 113.95 -56.569 5.42527 - 58 304.312 1467 7 1 113.75 -56.5076 5.44978 - 58 107.605 1466 7 1 113.55 -56.3294 5.53305 - 58 60.1942 1272 3 0 147.157 74.45 -116.191 - 58 43.3999 913 0 0 96.4025 2.76575 -206.25 - 58 116.113 912 0 0 96.4333 2.64979 -206.148 - 58 82.0186 911 0 0 96.5116 2.45 -206.02 - 58 112.883 910 0 0 96.6339 2.24981 -205.936 - 58 118.372 909 0 0 96.8836 2.05 -205.926 - 58 128.277 908 0 0 97.251 1.85 -206.011 - 58 29.6773 907 0 0 97.4296 1.65 -206.199 - 58 21.8509 397 0 0 127.697 -100.677 -206.25 - 58 65.5557 396 0 0 127.695 -100.75 -206.23 - 58 16.109 395 0 0 127.76 -100.95 -206.206 - 58 24.1712 276 0 0 135.708 -124.785 -206.25 - 58 45.5758 1485 2 0 67.9935 117.237 -145.85 - 58 206.482 1486 2 0 67.9749 117.35 -145.948 - 58 252.627 1117 2 0 23.0719 43.6 -146.25 - 58 13.4012 1233 2 1 66.85 115.201 -144.706 - 58 90.432 1464 3 0 34.6744 113.048 -116.25 - 58 190.056 1465 3 0 34.4704 113.15 -116.077 - 58 18.3309 1466 3 0 34.3624 113.35 -115.895 - 58 28.8988 1071 3 1 34.2677 114.455 -114.85 - 58 75.9851 1070 3 1 34.2499 114.532 -114.794 - 58 64.5334 1069 3 1 34.05 114.648 -114.704 - 58 79.4364 1068 3 1 33.8497 114.568 -114.723 - 58 65.6298 1067 3 1 33.65 114.493 -114.755 - 58 67.7142 1066 3 1 33.45 114.429 -114.742 - 58 323.087 1065 3 1 33.2499 114.388 -114.778 - 58 176.81 1064 3 1 33.05 114.626 -114.53 -Number of digits in this event = 24 -Using G4ParticleGun ... -9.35346 LIN -e- -Event: 59 -Number of tracker hits in this event = 96 - 59 113.645 527 10 1 -74.6361 -72.4488 95.55 - 59 54.6349 538 10 0 -74.6364 -72.4498 94.15 - 59 62.5447 537 10 0 -74.6364 -72.45 93.9417 - 59 121.324 527 9 1 -74.6385 -72.471 65.55 - 59 124.181 537 9 0 -74.6395 -72.4728 64.15 - 59 127.552 526 8 1 -74.6597 -72.5107 35.55 - 59 147.777 537 8 0 -74.6614 -72.5127 34.15 - 59 383.908 526 7 1 -74.6943 -72.5531 5.55 - 59 274.191 537 7 0 -74.6961 -72.5556 4.15 - 59 131.549 526 6 1 -74.7319 -72.6027 -24.45 - 59 130.467 537 6 0 -74.7333 -72.6018 -25.85 - 59 135.121 526 5 1 -74.7764 -72.5917 -54.45 - 59 152.649 537 5 0 -74.7808 -72.5886 -55.85 - 59 145.717 525 4 1 -74.9129 -72.5812 -84.45 - 59 125.5 537 4 0 -74.9174 -72.5788 -85.85 - 59 110.767 525 3 1 -75.0117 -72.5184 -114.45 - 59 113.075 537 3 0 -75.0166 -72.5156 -115.85 - 59 105.558 524 2 1 -75.114 -72.468 -144.45 - 59 256.964 537 2 0 -75.1189 -72.4664 -145.85 - 59 111.379 524 1 1 -75.2253 -72.4283 -174.45 - 59 208.924 538 1 0 -75.2309 -72.4302 -175.85 - 59 132.967 523 0 1 -75.3379 -72.4787 -204.45 - 59 95.0684 537 0 0 -75.3396 -72.4826 -205.85 - 59 218.486 535 4 1 -72.9034 -69.787 -84.45 - 59 109.852 552 4 0 -72.9194 -69.5894 -85.8502 - 59 108.781 534 3 1 -73.2292 -65.5707 -114.45 - 59 14.4675 573 3 0 -73.1973 -65.2643 -115.85 - 59 88.7445 574 3 0 -73.1954 -65.25 -115.914 - 59 110.591 536 2 1 -72.7989 -58.951 -144.45 - 59 120.961 606 2 0 -72.5628 -58.7638 -145.85 - 59 27.6801 559 1 1 -68.1015 -55.0368 -174.45 - 59 115.218 560 1 1 -68.0492 -54.9944 -174.527 - 59 1.11348 561 1 1 -67.8498 -54.8291 -174.846 - 59 19.8687 628 1 0 -67.2362 -54.2886 -175.85 - 59 122.864 629 1 0 -67.194 -54.25 -175.919 - 59 14.5448 630 1 0 -67.0339 -54.0499 -176.202 - 59 85.5636 643 0 1 -51.4352 -34.3177 -204.45 - 59 78.4323 644 0 1 -51.2497 -34.2541 -204.673 - 59 115.093 730 0 0 -50.298 -33.9223 -205.85 - 59 53.7417 731 0 0 -50.0745 -33.85 -206.12 - 59 266.883 566 6 0 -63.6234 -66.7754 -26.25 - 59 26.3171 813 6 0 21.7439 -17.4031 -26.25 - 59 41.7701 1009 6 1 22.008 -17.7823 -24.8489 - 59 442.709 1010 6 1 22.05 -17.869 -24.7336 - 59 117.259 1011 6 1 22.25 -18.0441 -24.4626 - 59 76.1414 1012 6 1 22.45 -18.0642 -24.7285 - 59 6.54947 816 6 0 23.5055 -16.6696 -25.85 - 59 147.127 817 6 0 23.5206 -16.6497 -25.8668 - 59 81.4775 839 6 0 4.74931 -12.1355 -26.25 - 59 191.311 840 6 0 4.74292 -12.05 -26.2005 - 59 125.916 524 6 1 -75.13 -74.2437 -24.45 - 59 121.866 528 6 0 -75.3406 -74.257 -25.8515 - 59 107.57 501 5 1 -79.7423 -74.7027 -54.45 - 59 155.273 526 5 0 -79.9325 -74.7206 -55.85 - 59 194.473 482 4 1 -83.5887 -75.4853 -84.4503 - 59 40.4517 522 4 0 -83.719 -75.4527 -85.8504 - 59 66.963 523 4 0 -83.7327 -75.45 -86.0105 - 59 267.511 470 3 1 -85.8791 -75.1446 -114.45 - 59 155.184 525 3 0 -85.8093 -75.0126 -115.85 - 59 135.759 478 2 1 -84.3838 -72.7619 -144.45 - 59 451.601 469 1 1 -86.0654 -69.2391 -174.45 - 59 224.947 555 1 0 -86.0835 -69.0396 -175.85 - 59 129.749 471 0 1 -85.7837 -64.1507 -204.45 - 59 118.217 581 0 0 -85.7852 -63.7558 -205.85 - 59 125.81 538 7 0 -74.6999 -72.4139 4.15 - 59 192.581 523 6 1 -75.3917 -69.9909 -24.4502 - 59 41.0252 551 6 0 -75.0393 -69.6812 -25.8501 - 59 86.9759 552 6 0 -75.0045 -69.65 -25.9881 - 59 139.564 561 5 1 -67.8187 -63.0443 -54.4501 - 59 52.5946 587 5 0 -67.683 -62.5108 -55.8507 - 59 147.475 588 5 0 -67.6687 -62.45 -56.0062 - 59 149.856 574 4 1 -65.1604 -51.6143 -84.45 - 59 215.706 645 4 0 -65.0051 -50.9989 -85.85 - 59 13.6788 646 4 0 -64.965 -50.85 -86.1936 - 59 27.771 591 3 1 -61.8304 -37.949 -114.45 - 59 139.754 590 3 1 -61.85 -37.8981 -114.55 - 59 19.3478 713 3 0 -62.0756 -37.2688 -115.85 - 59 102.427 714 3 0 -62.0825 -37.2498 -115.89 - 59 51.8329 555 2 1 -68.9858 -23.5238 -144.45 - 59 175.524 554 2 1 -69.05 -23.6745 -144.538 - 59 18.2485 553 2 1 -69.25 -24.156 -144.813 - 59 1.38961 770 2 0 -70.0159 -26.0419 -145.85 - 59 79.3648 769 2 0 -70.0192 -26.05 -145.855 - 59 64.6104 768 2 0 -70.0992 -26.25 -145.965 - 59 66.4104 767 2 0 -70.1767 -26.4501 -146.077 - 59 50.1615 766 2 0 -70.2548 -26.65 -146.197 - 59 22.8176 458 1 1 -88.426 -72.2695 -174.45 - 59 151.095 457 1 1 -88.45 -72.331 -174.502 - 59 55.0274 530 1 0 -89.085 -73.9468 -175.85 - 59 80.7551 529 1 0 -89.1265 -74.05 -175.936 - 59 211.856 528 1 0 -89.208 -74.2501 -176.113 - 59 159.86 386 0 1 -102.769 -104.768 -204.45 - 59 56.1261 371 0 0 -102.982 -105.851 -205.85 - 59 130.363 370 0 0 -102.999 -105.95 -205.979 - 59 2.38024 369 0 0 -103.035 -106.15 -206.248 - 59 71.25 1557 5 0 -123.232 131.66 -56.25 -Number of digits in this event = 47 -Using G4ParticleGun ... -1.87065 LIN -e- -Event: 60 -Number of tracker hits in this event = 98 - 60 316.984 1575 8 1 135.286 -34.8191 35.55 - 60 348.772 726 8 0 135.285 -34.8183 34.15 - 60 158.632 1575 7 1 135.232 -34.8298 5.55 - 60 126.143 726 7 0 135.247 -34.8228 4.15 - 60 107.403 1577 6 1 135.66 -34.7603 -24.45 - 60 110.681 726 6 0 135.67 -34.7482 -25.85 - 60 114.691 1578 5 1 135.838 -34.495 -54.45 - 60 116.384 727 5 0 135.88 -34.4701 -55.85 - 60 103.039 1583 4 1 136.772 -33.8938 -84.45 - 60 154.744 730 4 0 136.79 -33.8617 -85.85 - 60 117.519 1584 3 1 137.137 -33.143 -114.45 - 60 123.355 734 3 0 137.158 -33.1185 -115.85 - 60 190.968 1587 2 1 137.658 -32.5878 -144.45 - 60 131.266 737 2 0 137.682 -32.5435 -145.85 - 60 133.311 1590 1 1 138.236 -31.7362 -174.45 - 60 144.254 741 1 0 138.27 -31.6817 -175.85 - 60 106.229 1594 0 1 139.043 -30.5401 -204.45 - 60 121.767 747 0 0 139.067 -30.4971 -205.85 - 60 195.473 1518 0 1 123.901 -5.11389 -204.45 - 60 34.5172 1519 0 1 123.95 -5.18149 -204.509 - 60 9.85845 1703 0 1 160.757 -26.1479 -204.85 - 60 181.578 1702 0 1 160.75 -26.1394 -204.829 - 60 45.1835 601 2 1 -59.65 1.3861 -144.707 - 60 122.172 600 2 1 -59.85 1.41437 -144.581 - 60 301.823 599 2 1 -60.05 1.25857 -144.511 - 60 76.0351 598 2 1 -60.25 0.98196 -144.511 - 60 7.54248 1588 3 1 137.901 -32.7138 -114.45 - 60 151.548 642 12 0 142.889 -51.4862 153.75 - 60 4.65785 643 12 0 142.861 -51.4499 153.817 - 60 231.104 1575 5 1 135.193 -34.7433 -54.45 - 60 262.258 726 5 0 135.189 -34.7561 -55.85 - 60 127.259 1574 4 1 135.146 -35.0668 -84.45 - 60 120.058 724 4 0 135.15 -35.096 -85.85 - 60 246.204 1575 3 1 135.21 -35.661 -114.45 - 60 113.632 721 3 0 135.248 -35.7084 -115.85 - 60 146.632 1579 2 1 135.98 -36.6243 -144.45 - 60 225.109 716 2 0 135.987 -36.6792 -145.85 - 60 198.694 1580 1 1 136.249 -37.7888 -174.45 - 60 146.609 711 1 0 136.307 -37.838 -175.85 - 60 13.9835 710 1 0 136.32 -37.85 -176.178 - 60 9.96212 1586 0 1 137.547 -38.8185 -204.45 - 60 90.499 1587 0 1 137.55 -38.8212 -204.502 - 60 179.067 705 0 0 137.618 -38.8884 -205.85 - 60 147.073 717 2 0 135.988 -36.65 -145.938 - 60 145.573 1575 4 1 135.181 -34.866 -84.45 - 60 114.383 725 4 0 135.204 -34.8774 -85.85 - 60 116.095 1577 3 1 135.717 -35.1862 -114.45 - 60 146.062 724 3 0 135.777 -35.1335 -115.85 - 60 113.982 1584 2 1 137.048 -34.2137 -144.45 - 60 118.031 729 2 0 137.038 -34.1776 -145.85 - 60 128.811 1583 1 1 136.941 -33.4236 -174.451 - 60 130.279 733 1 0 136.769 -33.3935 -175.85 - 60 99.7246 1566 0 1 133.506 -32.9488 -204.45 - 60 111.066 734 0 0 133.444 -33.1228 -205.85 - 60 165.111 511 7 1 -77.65 -7.74985 5.3217 - 60 338.488 1583 7 1 136.835 -32.9312 5.54859 - 60 121.46 734 7 0 137.202 -33.1422 4.15 - 60 98.7475 1639 6 1 147.987 -36.3468 -24.45 - 60 18.0457 1640 6 1 148.15 -36.445 -24.7884 - 60 89.9182 716 6 0 148.577 -36.7837 -25.85 - 60 65.4829 715 6 0 148.649 -36.85 -26.0313 - 60 103.716 1712 5 1 162.586 -46.1378 -54.45 - 60 48.7621 1713 5 1 162.75 -46.1582 -54.6585 - 60 109.682 668 5 0 163.167 -46.3272 -55.8502 - 60 20.7443 667 5 0 163.252 -46.45 -56.17 - 60 109.441 1739 4 1 168.023 -64.1264 -84.45 - 60 69.3263 1738 4 1 167.95 -64.1451 -84.58 - 60 122.272 578 4 0 167.446 -64.3664 -85.85 - 60 92.8908 708 4 0 138.446 -38.3402 -86.25 - 60 54.1338 709 4 0 138.385 -38.25 -86.0054 - 60 69.4845 1593 4 1 138.842 -37.988 -84.8496 - 60 69.5796 1594 4 1 138.95 -37.9228 -84.6423 - 60 181.115 798 7 0 68.1001 -20.2628 3.75006 - 60 45.0361 799 7 0 68.0946 -20.25 3.76967 - 60 5.69419 1584 7 1 136.95 -32.1571 5.17626 - 60 55.8729 740 7 0 137.012 -31.8984 4.14964 - 60 44.0493 741 7 0 137.02 -31.85 3.9518 - 60 54.6579 1586 6 1 137.413 -25.3309 -24.45 - 60 92.137 1585 6 1 137.35 -25.3029 -24.6176 - 60 178.234 774 6 0 137.023 -25.166 -25.85 - 60 114.215 1542 5 1 128.65 -26.7301 -54.45 - 60 34.4969 1541 5 1 128.55 -26.9353 -54.7562 - 60 46.341 761 5 0 128.185 -27.7312 -55.8508 - 60 88.4327 760 5 0 128.131 -27.85 -56.0162 - 60 109.725 1501 4 1 120.411 -48.1976 -84.45 - 60 16.8381 1502 4 1 120.55 -48.422 -84.8035 - 60 94.5127 655 4 0 120.956 -48.9506 -85.85 - 60 99.0488 654 4 0 121.039 -49.05 -86.046 - 60 85.644 1568 3 1 133.938 -63.8461 -114.45 - 60 59.2637 1567 3 1 133.75 -63.837 -114.67 - 60 164.353 583 3 0 132.713 -63.4073 -115.85 - 60 163.73 559 3 0 91.1225 -68.1751 -116.249 - 60 32.898 1349 3 1 90.05 -69.137 -114.719 - 60 485.63 1479 3 1 116.131 -66.2558 -114.45 - 60 263.01 1478 3 1 115.95 -66.4794 -114.519 - 60 95.9513 563 3 0 115.835 -67.3543 -115.85 - 60 53.4975 562 3 0 115.783 -67.45 -116.106 - 60 277.069 1481 3 1 116.532 -66.181 -114.45 -Number of digits in this event = 44 -Using G4ParticleGun ... -1.56855 LIN -e- -Event: 61 -Number of tracker hits in this event = 52 - 61 115.997 714 10 1 -37.0522 78.5533 95.55 - 61 110.024 1292 10 0 -37.0481 78.5534 94.15 - 61 138.606 715 9 1 -36.9842 78.5429 65.55 - 61 119.942 1292 9 0 -36.9811 78.5466 64.15 - 61 125.326 715 8 1 -36.9003 78.5873 35.55 - 61 118.721 1292 8 0 -36.9092 78.6146 34.15 - 61 108.071 714 7 1 -37.1412 79.2314 5.55 - 61 12.1888 1297 7 0 -36.9948 79.6364 4.15 - 61 101.724 1298 7 0 -36.9899 79.65 4.10311 - 61 193.664 729 6 1 -34.145 88.022 -24.45 - 61 3.72801 1341 6 0 -34.0022 88.446 -25.85 - 61 116.995 1342 6 0 -34.0008 88.45 -25.8631 - 61 133.261 745 5 1 -30.9423 97.1808 -54.45 - 61 383.504 1387 5 0 -30.7786 97.5969 -55.85 - 61 122.872 762 4 1 -27.5173 106.278 -84.45 - 61 138.472 1432 4 0 -27.3455 106.654 -85.85 - 61 40.6039 1433 4 0 -27.3024 106.75 -86.2089 - 61 33.8417 780 3 1 -23.8558 114.064 -114.45 - 61 148.008 781 3 1 -23.85 114.081 -114.505 - 61 48.5097 1471 3 0 -23.7159 114.499 -115.85 - 61 70.3138 1472 3 0 -23.6998 114.55 -116.013 - 61 123.013 796 2 1 -20.8294 123.534 -144.45 - 61 121.3 1519 2 0 -20.7108 124.005 -145.85 - 61 135.687 808 1 1 -18.3261 133.331 -174.45 - 61 195.807 1568 1 0 -18.2301 133.796 -175.85 - 61 108.473 819 0 1 -16.1316 143.493 -204.45 - 61 108.192 1618 0 0 -16.0988 143.84 -205.851 - 61 115.509 1460 3 0 -23.4825 112.297 -115.85 - 61 50.2031 1459 3 0 -23.4973 112.15 -115.968 - 61 60.8745 1458 3 0 -23.5916 111.95 -115.972 - 61 138.864 1457 3 0 -23.648 111.75 -116.039 - 61 310.345 1341 3 0 -35.6625 88.3809 -116.25 - 61 67.2781 1342 3 0 -35.7168 88.45 -115.879 - 61 212.245 722 3 1 -35.5312 89.0967 -114.849 - 61 146.268 1334 6 0 -34.7994 86.9476 -25.8502 - 61 258.026 821 0 1 -15.8352 140.594 -204.45 - 61 194.631 1604 0 0 -15.6348 141.07 -205.85 - 61 47.8697 1605 0 0 -15.604 141.15 -206.089 - 61 27.1464 820 0 1 -15.8988 140.565 -204.45 - 61 12.2198 822 0 1 -15.65 140.738 -204.812 - 61 15.4503 1603 0 0 -15.1313 140.938 -205.851 - 61 202.041 718 1 1 -36.3793 78.8341 -174.45 - 61 286.447 1293 1 0 -36.3734 78.845 -175.85 - 61 184.088 719 0 1 -36.213 79.0978 -204.45 - 61 122.64 1295 0 0 -36.1971 79.1205 -205.85 - 61 223.076 720 0 1 -36.05 79.0398 -204.612 - 61 79.4341 721 0 1 -35.85 78.9676 -204.713 - 61 67.7952 1290 0 0 -34.5719 78.1442 -205.85 - 61 363.272 1289 0 0 -34.4627 78.05 -206.004 - 61 211.767 723 0 1 -35.2828 77.912 -204.45 - 61 23.8144 724 0 1 -35.2499 77.9207 -204.785 - 61 107.807 1339 2 0 -28.1493 88.05 -146.218 -Number of digits in this event = 26 -Using G4ParticleGun ... -3.31319 LIN -e- -Event: 62 -Number of tracker hits in this event = 21 - 62 129.65 591 7 1 -61.6627 -134.158 5.55 - 62 125.956 229 7 0 -61.6609 -134.158 4.15 - 62 200.619 592 6 1 -61.6319 -134.161 -24.45 - 62 111.743 229 6 0 -61.6292 -134.161 -25.85 - 62 121.099 592 5 1 -61.5725 -134.172 -54.45 - 62 225.548 229 5 0 -61.5689 -134.174 -55.85 - 62 263.917 592 4 1 -61.501 -134.204 -84.45 - 62 544.367 229 4 0 -61.498 -134.206 -85.85 - 62 120.766 593 3 1 -61.4154 -134.222 -114.45 - 62 117.956 229 3 0 -61.4134 -134.225 -115.85 - 62 156.78 593 2 1 -61.3734 -134.278 -144.45 - 62 155.914 229 2 0 -61.3767 -134.281 -145.85 - 62 105.39 593 1 1 -61.4306 -134.345 -174.45 - 62 51.5786 229 1 0 -61.4312 -134.349 -175.85 - 62 46.518 228 1 0 -61.4313 -134.35 -176.055 - 62 133.216 593 0 1 -61.439 -134.431 -204.45 - 62 118.637 228 0 0 -61.4401 -134.437 -205.85 - 62 88.6223 359 3 0 -153.232 -108.239 -116.25 - 62 196.544 134 3 1 -153.324 -108.878 -114.85 - 62 207.124 592 0 1 -61.45 -134.442 -204.748 - 62 153.503 592 7 1 -61.6495 -134.192 5.39289 -Number of digits in this event = 17 -Using G4ParticleGun ... -8.68396 LIN -e- -Event: 63 -Number of tracker hits in this event = 67 - 63 137.646 732 9 1 -33.4602 -114.73 65.55 - 63 113.8 327 9 0 -33.4611 -114.729 64.15 - 63 111.029 732 8 1 -33.4829 -114.705 35.55 - 63 117.855 327 8 0 -33.4834 -114.704 34.15 - 63 104.151 732 7 1 -33.4977 -114.682 5.55 - 63 138.328 327 7 0 -33.4978 -114.681 4.15 - 63 101.285 732 6 1 -33.5006 -114.648 -24.45 - 63 200.394 327 6 0 -33.4935 -114.644 -25.85 - 63 147.041 733 5 1 -33.3455 -114.52 -54.45 - 63 104.11 328 5 0 -33.3445 -114.541 -55.85 - 63 111.327 733 4 1 -33.3287 -114.928 -84.45 - 63 139.047 326 4 0 -33.337 -114.944 -85.85 - 63 113.473 732 3 1 -33.5847 -115.231 -114.45 - 63 109.022 324 3 0 -33.6128 -115.248 -115.85 - 63 129.894 729 2 1 -34.2307 -115.603 -144.45 - 63 143.341 322 2 0 -34.2668 -115.618 -145.85 - 63 136.318 725 1 1 -35.0177 -115.937 -174.45 - 63 108.575 321 1 0 -35.0426 -115.945 -175.85 - 63 149.829 722 0 1 -35.6061 -116.221 -204.45 - 63 117.449 319 0 0 -35.6383 -116.222 -205.85 - 63 119.854 434 8 0 -122.954 -93.201 33.75 - 63 82.3424 433 8 0 -123.086 -93.3501 33.8456 - 63 71.0737 432 8 0 -123.131 -93.55 34.0555 - 63 101.159 431 8 0 -123.119 -93.75 34.0396 - 63 102.732 430 8 0 -123.025 -93.9505 34.0088 - 63 110.136 429 8 0 -123.061 -94.15 34.0276 - 63 129.73 287 8 1 -122.717 -95.6239 35.15 - 63 380.225 734 3 1 -33.205 -114.711 -114.45 - 63 144.903 327 3 0 -33.1285 -114.628 -115.85 - 63 113.895 738 2 1 -32.2989 -112.897 -144.45 - 63 117.269 336 2 0 -32.2232 -112.82 -145.85 - 63 135.568 746 1 1 -30.8416 -111.908 -174.45 - 63 143.865 341 1 0 -30.8748 -111.891 -175.85 - 63 128.851 743 0 1 -31.391 -112.048 -204.45 - 63 120.976 339 0 0 -31.4807 -112.168 -205.85 - 63 29.6681 666 1 1 -46.65 -175.924 -174.647 - 63 119.965 665 1 1 -46.85 -175.756 -174.493 - 63 66.3927 733 3 1 -33.25 -114.75 -114.646 - 63 146.039 326 3 0 -33.3819 -114.892 -115.85 - 63 123.737 719 2 1 -36.0936 -118.256 -144.45 - 63 130.909 308 2 0 -36.3431 -118.41 -145.85 - 63 137.319 695 1 1 -40.8569 -121.586 -174.45 - 63 189.401 292 1 0 -41.1656 -121.63 -175.85 - 63 39.7082 659 0 1 -48.2168 -122.18 -204.45 - 63 125.35 658 0 1 -48.2501 -122.175 -204.607 - 63 128.451 290 0 0 -48.5145 -122.078 -205.85 - 63 170.138 287 0 0 -48.5991 -122.605 -205.85 - 63 21.4882 286 0 0 -48.7298 -122.75 -206.215 - 63 184.664 281 0 0 -71.6096 -123.948 -206.25 - 63 2.97407 282 0 0 -71.8071 -123.75 -205.866 - 63 133.62 539 0 1 -72.1981 -122.964 -204.849 - 63 234.546 538 0 1 -72.25 -122.912 -204.693 - 63 69.7215 540 0 1 -72.0499 -122.92 -204.715 - 63 63.279 541 0 1 -71.85 -122.854 -204.714 - 63 47.0395 542 0 1 -71.65 -122.824 -204.719 - 63 58.3444 543 0 1 -71.45 -122.874 -204.724 - 63 175.018 544 0 1 -71.25 -123.009 -204.695 - 63 216.19 545 0 1 -71.05 -123.076 -204.715 - 63 195.191 546 0 1 -70.85 -123.091 -204.493 - 63 105.054 280 0 0 -69.6507 -124.042 -205.85 - 63 271.139 279 0 0 -69.4866 -124.15 -205.952 - 63 46.2407 550 0 1 -69.8942 -124.655 -204.85 - 63 101.218 328 3 0 -32.9468 -114.55 -115.892 - 63 45.6433 1448 5 0 -137.74 109.815 -56.25 - 63 166.759 1449 5 0 -137.815 109.95 -56.1564 - 63 280.669 213 5 1 -137.524 110.394 -54.8498 - 63 65.0274 214 5 1 -137.35 110.317 -54.792 -Number of digits in this event = 36 -Using G4ParticleGun ... -9.38359 LIN -e- -Event: 64 -Number of tracker hits in this event = 126 - 64 168.977 573 10 1 -65.4471 -86.853 95.55 - 64 118.73 465 10 0 -65.4475 -86.8524 94.15 - 64 188.503 572 9 1 -65.4571 -86.8366 65.55 - 64 106.334 466 9 0 -65.4562 -86.8358 64.15 - 64 98.6979 573 8 1 -65.436 -86.8205 35.55 - 64 111.976 466 8 0 -65.4353 -86.8189 34.15 - 64 118.275 573 7 1 -65.4238 -86.7882 5.55 - 64 166.845 466 7 0 -65.4236 -86.7863 4.15 - 64 237.709 573 6 1 -65.4262 -86.7515 -24.45 - 64 217.161 466 6 0 -65.4192 -86.7488 -25.85 - 64 387.158 573 5 1 -65.2633 -86.7007 -54.45 - 64 170.483 466 5 0 -65.2526 -86.702 -55.85 - 64 109.442 574 4 1 -65.0549 -86.738 -84.45 - 64 109.977 466 4 0 -65.0449 -86.738 -85.85 - 64 141.549 576 3 1 -64.8433 -86.7504 -114.45 - 64 129.883 466 3 0 -64.8367 -86.7471 -115.85 - 64 116.534 576 2 1 -64.7009 -86.6682 -144.45 - 64 113.455 466 2 0 -64.6926 -86.6634 -145.85 - 64 286.239 577 1 1 -64.5254 -86.5581 -174.45 - 64 122.902 467 1 0 -64.5068 -86.5493 -175.85 - 64 220.885 579 0 1 -64.0974 -86.3655 -204.45 - 64 110.024 468 0 0 -64.0717 -86.3608 -205.85 - 64 66.8735 650 10 1 -49.9739 -123.792 95.55 - 64 147.888 649 10 1 -50.0503 -123.838 95.4538 - 64 221.37 965 1 0 153.858 13.05 -176.185 - 64 163.435 845 1 0 148.689 -11.036 -176.25 - 64 21.2533 576 1 1 -64.65 -86.5506 -174.66 - 64 99.5045 578 1 1 -64.45 -86.8917 -174.458 - 64 79.9781 579 1 1 -64.2499 -87.0676 -174.619 - 64 7.04274 580 1 1 -64.05 -87.2611 -174.831 - 64 190.153 460 1 0 -63.5677 -87.9045 -175.85 - 64 170.761 411 1 0 -57.9484 -97.7848 -176.25 - 64 139.787 607 1 1 -58.5995 -99.3255 -174.85 - 64 146.951 606 1 1 -58.65 -99.7125 -174.668 - 64 46.8394 605 1 1 -58.85 -99.8088 -174.796 - 64 208.379 399 1 0 -58.1443 -100.257 -175.85 - 64 270.386 459 1 0 -63.3956 -88.05 -176.096 - 64 120.535 572 6 1 -65.45 -86.7564 -24.4845 - 64 33.4118 585 5 1 -62.9629 -89.5687 -54.45 - 64 99.1566 584 5 1 -63.05 -89.6038 -54.476 - 64 118.493 583 5 1 -63.25 -89.8449 -54.4562 - 64 41.3141 431 4 1 -93.8866 -91.4625 -84.45 - 64 101.551 430 4 1 -93.95 -91.5006 -84.5491 - 64 81.0764 441 4 0 -94.7242 -91.9005 -85.8504 - 64 54.553 440 4 0 -94.8639 -91.95 -86.1078 - 64 263.236 467 5 0 -65.4449 -86.6151 -55.85 - 64 111.33 572 4 1 -65.4631 -86.5533 -84.45 - 64 132.586 467 4 0 -65.4639 -86.5495 -85.85 - 64 123.43 572 3 1 -65.4831 -86.4789 -114.45 - 64 163.035 467 3 0 -65.4799 -86.4711 -115.85 - 64 114.91 573 2 1 -65.408 -86.3072 -144.45 - 64 106.423 468 2 0 -65.403 -86.2965 -145.85 - 64 737.459 573 1 1 -65.3066 -86.0849 -174.45 - 64 208.745 469 1 0 -65.3002 -86.0765 -175.85 - 64 352.437 574 0 1 -65.1732 -85.8858 -204.45 - 64 129.166 470 0 0 -65.1782 -85.882 -205.85 - 64 112.96 465 5 0 -65.4661 -86.9569 -55.85 - 64 123.009 464 5 0 -65.4712 -87.05 -56.1911 - 64 143.27 576 4 1 -64.7446 -96.9429 -84.45 - 64 114.668 413 4 0 -64.8977 -97.4276 -85.85 - 64 128.21 582 3 1 -63.5466 -107.353 -114.45 - 64 80.7147 583 3 1 -63.45 -106.981 -114.723 - 64 38.8374 379 3 0 -62.7795 -104.3 -115.85 - 64 59.9619 380 3 0 -62.7466 -104.15 -115.913 - 64 59.5177 381 3 0 -62.6975 -103.949 -115.982 - 64 56.6852 382 3 0 -62.6575 -103.75 -116.051 - 64 75.9457 383 3 0 -62.6051 -103.55 -116.113 - 64 52.6482 384 3 0 -62.5594 -103.35 -116.189 - 64 35.0871 1127 3 0 -13.1148 45.4611 -116.25 - 64 127.217 1126 3 0 -13.216 45.45 -116.138 - 64 8.37265 829 3 1 -14.2246 45.399 -114.85 - 64 76.4918 828 3 1 -14.25 45.3966 -114.82 - 64 71.8119 827 3 1 -14.45 45.3759 -114.663 - 64 54.2862 826 3 1 -14.65 45.417 -114.595 - 64 54.7261 825 3 1 -14.8505 45.4581 -114.553 - 64 55.9521 824 3 1 -15.05 45.4969 -114.53 - 64 65.2785 823 3 1 -15.25 45.5589 -114.501 - 64 74.0752 822 3 1 -15.4502 45.7249 -114.463 - 64 299.026 821 3 1 -15.65 45.9925 -114.459 - 64 454.768 820 3 1 -15.85 46.2732 -114.478 - 64 15.047 819 3 1 -16.05 46.4815 -114.477 - 64 3.59681 1477 3 1 115.55 -73.2228 -114.48 - 64 450.865 466 1 0 -65.3235 -86.6616 -175.85 - 64 108.744 573 0 1 -65.2754 -86.6065 -204.45 - 64 238.753 467 0 0 -65.2768 -86.6056 -205.85 - 64 37.8726 391 5 1 -101.895 75.4557 -54.85 - 64 157.036 465 0 0 -65.2034 -86.8911 -205.85 - 64 252.648 575 0 1 -64.9397 -87.1533 -204.451 - 64 153.521 464 0 0 -65.1329 -87.1627 -205.85 - 64 109.342 456 0 0 -65.6721 -88.71 -205.85 - 64 27.4246 574 1 1 -65.25 -86.6924 -174.784 - 64 131.433 622 0 1 -55.477 -86.7804 -204.45 - 64 17.1586 466 0 0 -55.7583 -86.6603 -205.85 - 64 144.848 572 1 1 -65.45 -86.6243 -174.81 - 64 94.5217 468 1 0 -65.8101 -86.3413 -175.85 - 64 124.479 515 0 1 -76.8702 -77.7935 -204.45 - 64 68.9711 513 0 0 -77.1079 -77.3341 -205.85 - 64 49.9143 514 0 0 -77.1392 -77.25 -206.093 - 64 3.8365 472 1 0 -66.1378 -85.4572 -175.85 - 64 121.883 473 1 0 -66.1423 -85.45 -175.858 - 64 80.6134 474 1 0 -66.2889 -85.25 -176.091 - 64 566.296 447 0 1 -90.5635 -57.2549 -204.45 - 64 220.781 448 0 1 -90.55 -57.8904 -204.527 - 64 68.9312 449 0 1 -90.35 -57.8232 -204.599 - 64 34.7629 450 0 1 -90.0496 -57.7967 -204.77 - 64 355.515 612 0 0 -88.5398 -57.6299 -205.85 - 64 11.6468 613 0 0 -87.4766 -57.4498 -206.237 - 64 40.8868 571 0 0 39.5421 -65.8146 -206.25 - 64 49.4253 570 0 0 39.6884 -65.85 -206.24 - 64 35.559 204 0 0 108.584 -139.245 -206.25 - 64 84.5988 203 0 0 108.603 -139.351 -206.19 - 64 77.9175 202 0 0 108.676 -139.55 -206.027 - 64 125.149 1441 0 1 108.444 -140.674 -204.85 - 64 133.915 1442 0 1 108.55 -140.67 -204.46 - 64 196.769 1443 0 1 108.75 -140.655 -204.505 - 64 225.413 604 0 0 -90.841 -59.1865 -205.85 - 64 197.3 603 0 0 -90.8634 -59.25 -205.936 - 64 49.1748 602 0 0 -91.0148 -59.45 -206.036 - 64 12.4955 605 0 0 -90.9862 -59.0499 -206.235 - 64 134.839 252 0 0 -51.5245 -129.55 -206.068 - 64 195.505 251 0 0 -51.5013 -129.75 -205.93 - 64 51.7108 870 0 1 -6.05 0.395273 -204.602 - 64 53.91 903 5 0 -2.18242 0.776114 -56.25 - 64 46.6669 891 5 1 -1.70121 1.28858 -54.85 - 64 292.169 892 5 1 -1.65 1.36166 -54.7473 - 64 195.289 871 0 1 -5.85 0.498204 -204.481 +Number of tracker hits in this event = 167 + 0 396.584 449 8 0 -38.0088 -90.1507 34.15 + 0 239.68 710 7 1 -37.9989 -90.1748 5.55 + 0 494.698 449 7 0 -37.9992 -90.1753 4.15 + 0 129.196 710 6 1 -38.0048 -90.1881 -24.45 + 0 275.837 449 6 0 -38.0034 -90.1859 -25.85 + 0 138.598 711 2 1 -37.7841 -90.1732 -144.45 + 0 322.03 449 2 0 -37.7802 -90.1756 -145.85 + 0 145.229 711 1 1 -37.6893 -90.227 -174.45 + 0 147.777 449 1 0 -37.6865 -90.2294 -175.85 + 0 115.327 712 0 1 -37.6307 -90.2647 -204.45 + 0 111.185 449 0 0 -37.6283 -90.2683 -205.85 + 0 94.1714 410 0 0 -47.5443 -97.9883 -206.25 + 0 69.6847 409 0 0 -47.659 -98.15 -206.122 + 0 61.6474 408 0 0 -47.7785 -98.35 -206.122 + 0 61.2104 407 0 0 -47.9062 -98.5504 -206.183 + 0 86.2632 406 0 0 -48.0078 -98.75 -206.204 + 0 9.50657 405 0 0 -48.0387 -98.95 -206.238 + 0 30.4252 487 0 0 -37.6266 -82.5254 -206.25 + 0 133.527 488 0 0 -37.6302 -82.45 -206.184 + 0 41.3891 489 0 0 -37.6004 -82.25 -205.911 + 0 399.991 710 0 1 -37.9578 -81.9373 -204.85 + 0 69.0709 709 0 1 -38.05 -81.9307 -204.734 + 0 157.605 410 3 0 -74.5903 -98.082 -116.25 + 0 303.691 452 3 0 -37.8709 -89.5217 -115.85 + 0 14.1363 562 3 0 -66.0885 -67.4704 -116.25 + 0 212.86 563 3 0 -66.084 -67.45 -116.222 + 0 101.987 724 2 1 -35.191 -89.1778 -144.45 + 0 58.0265 453 2 0 -35.2054 -89.414 -145.85 + 0 44.9605 452 2 0 -35.2018 -89.45 -146.051 + 0 93.0284 738 1 1 -32.3103 -94.7869 -174.45 + 0 33.3696 737 1 1 -32.45 -94.7206 -174.788 + 0 211.994 428 1 0 -32.8732 -94.483 -175.85 + 0 6.88803 681 0 1 -43.8315 -86.6355 -204.45 + 0 100.384 680 0 1 -43.85 -86.6298 -204.47 + 0 157.049 679 0 1 -44.0501 -86.5854 -204.653 + 0 12.8782 678 0 1 -44.2501 -86.5611 -204.804 + 0 200.405 468 0 0 -45.3648 -86.425 -205.85 + 0 142.508 427 1 0 -32.8427 -94.55 -175.998 + 0 10.7218 695 1 1 -41.0458 -90.2269 -174.45 + 0 123.006 694 1 1 -41.05 -90.2237 -174.483 + 0 45.2075 460 0 0 -44.1749 -87.8818 -205.85 + 0 77.076 461 0 0 -44.1796 -87.85 -206.025 + 0 150.125 710 2 1 -37.8789 -90.2125 -144.45 + 0 94.5233 445 2 0 -38.3036 -91.0057 -145.85 + 0 40.4929 444 2 0 -38.3887 -91.15 -146.118 + 0 133.754 659 1 1 -48.1235 -107.176 -174.451 + 0 9.69211 361 1 0 -48.4207 -107.933 -175.85 + 0 114.949 360 1 0 -48.4274 -107.95 -175.881 + 0 133.302 624 0 1 -55.1815 -123.428 -204.45 + 0 79.3897 278 0 0 -55.2763 -124.45 -205.85 + 0 100.516 277 0 0 -55.2815 -124.55 -205.981 + 0 66.4424 709 6 1 -38.05 -90.1817 -24.5081 + 0 142.343 711 6 1 -37.6727 -90.3145 -24.45 + 0 106.293 712 5 1 -37.5343 -90.4968 -54.45 + 0 117.724 448 5 0 -37.5715 -90.4786 -55.85 + 0 115.61 709 4 1 -38.1451 -89.98 -84.45 + 0 118.072 450 4 0 -38.1342 -89.9379 -85.85 + 0 310.563 710 3 1 -37.8664 -89.3625 -114.45 + 0 160.09 453 3 0 -37.9021 -89.3725 -115.85 + 0 407.748 706 2 1 -38.7933 -89.6294 -144.45 + 0 117.788 451 2 0 -38.8286 -89.7352 -145.85 + 0 119.665 703 1 1 -39.3619 -92.2197 -174.45 + 0 132.586 438 1 0 -39.3311 -92.3964 -175.85 + 0 337.207 704 0 1 -39.1179 -96.3704 -204.45 + 0 99.3906 417 0 0 -39.1049 -96.6318 -205.85 + 0 46.1574 466 0 0 -38.6783 -86.7742 -206.171 + 0 141.595 479 0 0 -54.7457 -84.111 -206.25 + 0 47.0413 478 0 0 -55.0954 -84.25 -205.928 + 0 69.2468 619 0 1 -56.1198 -87.1073 -204.85 + 0 64.0611 618 0 1 -56.25 -87.1516 -204.846 + 0 50.5093 617 0 1 -56.45 -87.1945 -204.833 + 0 84.5541 465 0 0 -69.1235 -87.0207 -205.85 + 0 132.615 464 0 0 -69.3917 -87.05 -205.865 + 0 49.791 463 0 0 -69.7661 -87.25 -206.078 + 0 203.597 434 0 0 -52.0691 -93.2127 -206.25 + 0 34.5933 433 0 0 -52.0339 -93.35 -206.085 + 0 25.2563 343 0 0 -39.4321 -111.47 -206.25 + 0 70.3269 342 0 0 -39.4376 -111.55 -206.185 + 0 35.0934 341 0 0 -39.4447 -111.75 -205.944 + 0 102.992 703 0 1 -39.25 -113.458 -204.709 + 0 60.389 702 0 1 -39.45 -113.743 -204.763 + 0 124.607 330 0 0 -40.5334 -114.051 -205.85 + 0 103.169 331 0 0 -40.7852 -113.95 -206.098 + 0 62.4128 611 0 0 -97.0901 -57.8321 -206.25 + 0 145.379 612 0 0 -97.2058 -57.65 -206.161 + 0 377.803 613 0 0 -97.3608 -57.45 -206.089 + 0 71.2186 614 0 0 -97.5795 -57.25 -206.127 + 0 273.65 708 3 1 -38.3624 -88.8888 -114.45 + 0 138.436 456 3 0 -38.4003 -88.7725 -115.85 + 0 95.5633 460 2 0 -38.6676 -87.961 -145.85 + 0 8.00255 459 2 0 -38.6477 -88.05 -146.216 + 0 69.1186 715 1 1 -36.9718 -95.6178 -174.45 + 0 60.0503 716 1 1 -36.85 -95.7535 -174.667 + 0 56.4801 418 1 0 -36.2257 -96.4561 -175.85 + 0 130.964 417 1 0 -36.1515 -96.5502 -176.001 + 0 158.548 785 0 1 -22.8838 -114.343 -204.45 + 0 54.55 319 0 0 -22.8475 -116.213 -205.85 + 0 56.3217 318 0 0 -22.8445 -116.35 -205.956 + 0 68.0199 317 0 0 -22.8417 -116.55 -206.099 + 0 6.46687 316 0 0 -22.8541 -116.75 -206.232 + 0 15.2463 37 0 0 -18.1775 -172.708 -206.25 + 0 4.80593 36 0 0 -18.1798 -172.75 -206.248 + 0 84.4303 705 2 1 -38.8501 -87.7861 -144.716 + 0 71.2307 704 2 1 -39.05 -87.7839 -144.74 + 0 39.3277 703 2 1 -39.25 -87.7736 -144.805 + 0 119.456 457 2 0 -40.7066 -88.4623 -145.85 + 0 248.432 458 2 0 -40.8496 -88.45 -145.863 + 0 8.4858 707 3 1 -38.4502 -89.1223 -114.825 + 0 118.508 449 3 0 -38.723 -90.161 -115.85 + 0 63.4785 448 3 0 -38.796 -90.35 -116.069 + 0 151.384 611 2 1 -57.8053 -126.193 -144.45 + 0 308.06 610 2 1 -57.8502 -126.028 -144.621 + 0 46.1362 278 2 0 -57.0995 -124.493 -145.85 + 0 29.6586 279 2 0 -57.1722 -124.349 -145.89 + 0 10.7908 73 4 0 -21.4082 -165.518 -86.25 + 0 61.4071 72 4 0 -21.4009 -165.551 -86.2382 + 0 72.2246 71 4 0 -21.3655 -165.75 -86.1675 + 0 57.8488 70 4 0 -21.3362 -165.95 -86.0983 + 0 60.4627 69 4 0 -21.2888 -166.15 -86.0198 + 0 98.687 68 4 0 -21.23 -166.35 -85.9413 + 0 67.6251 797 4 1 -20.5086 -168.429 -84.85 + 0 121.613 798 4 1 -20.45 -168.645 -84.6982 + 0 118.511 796 4 1 -20.7969 -169.468 -84.4502 + 0 153.875 52 4 0 -20.409 -169.608 -85.8503 + 0 48.2587 846 3 1 -10.7443 -172.835 -114.451 + 0 92.5 845 3 1 -10.85 -172.935 -114.547 + 0 63.1836 844 3 1 -11.0505 -173.088 -114.703 + 0 19.4731 843 3 1 -11.25 -173.246 -114.828 + 0 15.691 27 3 0 -12.8323 -174.718 -115.85 + 0 76.1977 26 3 0 -12.8663 -174.75 -115.871 + 0 118.075 25 3 0 -13.0789 -174.95 -116.002 + 0 76.233 24 3 0 -13.2249 -175.15 -116.064 + 0 45.6316 23 3 0 -13.3361 -175.35 -116.06 + 0 250.264 22 3 0 -13.4222 -175.55 -116.031 + 0 82.3457 21 3 0 -13.4727 -175.75 -116.029 + 0 63.1039 20 3 0 -13.5257 -175.95 -116.07 + 0 91.57 19 3 0 -13.5737 -176.15 -116.097 + 0 58.8175 18 3 0 -13.6035 -176.35 -116.097 + 0 61.5223 17 3 0 -13.6548 -176.55 -116.09 + 0 71.4477 16 3 0 -13.7056 -176.75 -116.068 + 0 53.0934 15 3 0 -13.7559 -176.95 -116.014 + 0 43.1623 14 3 0 -13.7809 -177.15 -115.927 + 0 10.2066 830 3 1 -14.0454 -179.646 -114.85 + 0 173.444 829 3 1 -14.05 -179.68 -114.837 + 0 73.0334 828 3 1 -14.3479 -174.667 -114.85 + 0 188.246 827 3 1 -14.45 -174.607 -114.808 + 0 120.66 448 6 0 -37.7042 -90.35 -25.9565 + 0 1.94999 710 8 1 -38.0218 -90.15 35.1601 + 0 52.1763 709 7 1 -38.2464 -90.5478 5.55 + 0 319 708 7 1 -38.25 -90.5554 5.41237 + 0 95.7165 447 7 0 -38.305 -90.6264 4.15 + 0 106.952 703 6 1 -39.2802 -91.7556 -24.45 + 0 121.119 440 6 0 -39.4992 -91.9759 -25.85 + 0 144.779 681 5 1 -43.6824 -96.0589 -54.45 + 0 159.75 419 5 0 -43.8924 -96.1781 -55.8506 + 0 44.8306 662 4 1 -47.6187 -98.4036 -84.45 + 0 67.431 661 4 1 -47.65 -98.3871 -84.6113 + 0 127.128 409 4 0 -47.8921 -98.2855 -85.85 + 0 131.076 632 3 1 -53.4971 -95.3776 -114.45 + 0 87.7858 424 3 0 -53.5582 -95.1923 -115.85 + 0 128.079 425 3 0 -53.5711 -95.15 -116.135 + 0 142.316 627 2 1 -54.5346 -90.8255 -144.451 + 0 108.958 610 1 1 -57.8906 -78.5661 -174.45 + 0 136.957 510 1 0 -58.1536 -78.0387 -175.85 + 0 120.011 571 0 1 -65.6704 -68.6875 -204.45 + 0 106.032 557 0 0 -66.1017 -68.5871 -205.85 + 0 169.771 448 7 0 -37.9464 -90.3877 4.14986 Number of digits in this event = 61 Using G4ParticleGun ... -8.67759 LIN +8.72236 LIN e- -Event: 65 -Number of tracker hits in this event = 36 - 65 132.36 1088 7 1 37.6617 144.679 5.55 - 65 179.529 1622 7 0 37.6618 144.68 4.15 - 65 130.541 1088 6 1 37.663 144.691 -24.45 - 65 158.914 1622 6 0 37.663 144.692 -25.85 - 65 136.883 1088 5 1 37.6605 144.706 -54.45 - 65 138.534 1622 5 0 37.6591 144.707 -55.85 - 65 314.482 1087 4 1 37.6291 144.726 -84.45 - 65 202.305 1622 4 0 37.6274 144.727 -85.85 - 65 110.474 1087 3 1 37.594 144.749 -114.45 - 65 375.602 1622 3 0 37.5919 144.749 -115.85 - 65 218.716 1087 2 1 37.5534 144.752 -144.45 - 65 175.385 1623 2 0 37.5521 144.752 -145.85 - 65 117.912 1087 1 1 37.5204 144.774 -174.45 - 65 222.209 1623 1 0 37.5169 144.773 -175.85 - 65 126.21 1087 0 1 37.454 144.748 -204.45 - 65 121.144 1622 0 0 37.4509 144.748 -205.85 - 65 13.3576 1623 3 0 37.5933 144.75 -116.095 - 65 65.917 1623 0 0 37.6644 144.753 -206.246 - 65 108.91 1467 1 1 113.55 -14.2074 -174.754 - 65 166.807 1632 0 0 43.3679 146.738 -206.25 - 65 252.05 1088 3 1 37.8336 144.523 -114.45 - 65 107.161 1621 3 0 37.8541 144.519 -115.85 - 65 113.733 1091 2 1 38.2659 144.371 -144.45 - 65 164.333 1621 2 0 38.2806 144.413 -145.85 - 65 138.165 1093 1 1 38.7792 145.326 -174.45 - 65 116.287 1626 1 0 38.7869 145.435 -175.85 - 65 108.527 1094 0 1 38.8644 147.691 -204.45 - 65 139.881 1638 0 0 38.8545 147.823 -205.85 - 65 52.0858 1702 0 0 45.3651 160.55 -206.019 - 65 109.177 1623 4 0 37.6312 144.764 -85.85 - 65 122.914 1625 3 0 37.6509 145.32 -115.85 - 65 99.46 1625 2 0 37.4993 145.253 -145.85 - 65 125.342 1085 1 1 37.1418 145.003 -174.45 - 65 144.531 1624 1 0 37.1342 145 -175.85 - 65 238.763 1084 0 1 36.9514 144.965 -204.45 - 65 60.6089 1624 0 0 36.9691 144.952 -205.85 +Event: 1 +Number of tracker hits in this event = 69 + 1 110.634 665 10 0 -106.693 -46.8683 94.15 + 1 101.948 367 9 1 -106.69 -46.8697 65.55 + 1 130.7 665 9 0 -106.69 -46.8705 64.15 + 1 119.889 367 8 1 -106.694 -46.8863 35.55 + 1 128.498 665 8 0 -106.694 -46.8882 34.15 + 1 166.075 367 7 1 -106.698 -46.9259 5.55 + 1 124.819 665 7 0 -106.697 -46.9285 4.15 + 1 183.583 367 6 1 -106.693 -46.9849 -24.45 + 1 126.439 665 6 0 -106.692 -46.9877 -25.85 + 1 452.842 367 5 1 -106.667 -47.0428 -54.45 + 1 340.836 665 5 0 -106.667 -47.0461 -55.85 + 1 100.372 367 4 1 -106.656 -47.1168 -84.45 + 1 183.497 664 4 0 -106.655 -47.1205 -85.85 + 1 132.69 367 3 1 -106.638 -47.1947 -114.45 + 1 88.9181 664 3 0 -106.636 -47.2001 -115.85 + 1 107.571 367 2 1 -106.594 -47.3121 -144.45 + 1 174.216 663 2 0 -106.592 -47.3163 -145.85 + 1 111.176 368 1 1 -106.546 -47.4042 -174.45 + 1 120.889 663 1 0 -106.544 -47.409 -175.85 + 1 385.879 368 0 1 -106.517 -47.5056 -204.45 + 1 309.487 662 0 0 -106.516 -47.5093 -205.85 + 1 192.904 286 0 1 -122.931 -6.28882 -204.45 + 1 80.938 285 0 1 -122.95 -6.29584 -204.502 + 1 15.8597 499 0 1 -80.25 -38.504 -204.73 + 1 107.185 663 0 0 -106.459 -47.3764 -205.85 + 1 150.7 276 0 1 -124.75 -22.4767 -204.636 + 1 11.2179 368 5 1 -106.55 -46.8558 -54.8205 + 1 127.577 668 5 0 -106.137 -46.4017 -55.8501 + 1 14.0826 669 5 0 -105.975 -46.2498 -56.203 + 1 108.085 450 4 1 -89.946 -33.4124 -84.45 + 1 9.51804 451 4 1 -89.8498 -33.2695 -84.8226 + 1 4.53227 735 4 0 -89.5512 -32.8541 -85.85 + 1 124.455 736 4 0 -89.5483 -32.85 -85.8599 + 1 21.696 500 3 1 -80.0118 -32.638 -114.45 + 1 71.9676 499 3 1 -80.05 -32.6111 -114.488 + 1 105.789 498 3 1 -80.2503 -32.4794 -114.645 + 1 179.591 497 3 1 -80.45 -32.2054 -114.771 + 1 81.6082 496 3 1 -80.65 -31.8335 -114.798 + 1 23.7835 769 3 0 -82.6095 -26.1294 -115.85 + 1 96.1782 770 3 0 -82.6328 -26.05 -115.865 + 1 42.322 480 3 1 -83.9643 -23.845 -114.849 + 1 141.897 479 3 1 -84.0501 -23.7246 -114.798 + 1 81.4513 478 3 1 -84.25 -23.2743 -114.603 + 1 53.4648 477 3 1 -84.45 -23.0331 -114.559 + 1 63.2594 476 3 1 -84.6501 -22.9035 -114.558 + 1 64.0644 475 3 1 -84.85 -22.8116 -114.635 + 1 93.2164 474 3 1 -85.0502 -22.8601 -114.746 + 1 56.9405 473 3 1 -85.25 -22.8597 -114.825 + 1 0.14785 766 3 0 -88.7061 -26.8489 -115.85 + 1 66.8684 765 3 0 -88.707 -26.85 -115.85 + 1 283.197 764 3 0 -88.8262 -27.05 -115.933 + 1 485.78 763 3 0 -89.1922 -27.25 -116.09 + 1 127.304 610 2 0 -20.1059 -57.9027 -146.25 + 1 304.537 609 2 0 -19.9765 -58.0501 -146.124 + 1 1.44885 1373 4 1 94.75 -10.3515 -84.7028 + 1 111.675 379 4 1 -104.303 -47.1015 -84.45 + 1 82.8547 663 4 0 -104.31 -47.25 -85.9912 + 1 111.847 378 3 1 -104.511 -50.7648 -114.45 + 1 118.302 645 3 0 -104.522 -50.9383 -115.85 + 1 167.253 377 2 1 -104.65 -53.0472 -144.45 + 1 245.46 634 2 0 -104.642 -53.1075 -145.85 + 1 127.31 375 1 1 -105.042 -54.1976 -174.45 + 1 108.311 628 1 0 -104.939 -54.3544 -175.85 + 1 117.896 395 0 1 -101.127 -57.1068 -204.45 + 1 230.477 613 0 0 -100.85 -57.2723 -205.85 + 1 14.6621 635 2 0 -104.558 -53.0496 -145.873 + 1 53.9758 379 2 1 -104.215 -52.286 -144.85 + 1 212.398 380 2 1 -104.15 -52.2622 -144.704 + 1 90.8096 381 2 1 -103.95 -52.1327 -144.48 +Number of digits in this event = 31 +Using G4ParticleGun ... +2.21513 LIN +e- +Event: 2 +Number of tracker hits in this event = 53 + 2 158.207 560 7 1 -67.8553 -132.963 5.55 + 2 167.393 235 7 0 -67.8555 -132.965 4.15 + 2 147.219 560 6 1 -67.8707 -133.014 -24.45 + 2 125.822 235 6 0 -67.8716 -133.019 -25.85 + 2 107.851 560 5 1 -67.8793 -133.112 -54.45 + 2 110.75 235 5 0 -67.8777 -133.115 -55.85 + 2 190.096 560 4 1 -67.8543 -133.2 -84.45 + 2 155.19 234 4 0 -67.8496 -133.203 -85.85 + 2 294.447 561 3 1 -67.7123 -133.258 -114.45 + 2 122.876 234 3 0 -67.7095 -133.258 -115.85 + 2 183.623 562 2 1 -67.6483 -133.258 -144.45 + 2 143.571 234 2 0 -67.6378 -133.257 -145.85 + 2 155.937 563 1 1 -67.4427 -133.241 -174.45 + 2 216.321 234 1 0 -67.433 -133.241 -175.85 + 2 120.77 564 0 1 -67.2326 -133.239 -204.45 + 2 153.17 234 0 0 -67.2238 -133.234 -205.85 + 2 140.997 792 4 0 -84.9949 -21.65 -86.1249 + 2 260.215 562 1 1 -67.5598 -133.269 -174.45 + 2 91.6993 233 1 0 -67.3555 -133.485 -175.851 + 2 17.0684 232 1 0 -67.2947 -133.55 -176.179 + 2 237.148 603 0 1 -59.3435 -143.192 -204.45 + 2 27.5873 194 0 0 -59.1942 -141.222 -205.85 + 2 54.9118 195 0 0 -59.1951 -141.15 -205.902 + 2 102.941 196 0 0 -59.1977 -140.95 -206.041 + 2 24.5311 197 0 0 -59.1934 -140.75 -206.188 + 2 255.369 563 0 1 -67.3524 -132.823 -204.45 + 2 107.449 236 0 0 -67.3298 -132.782 -205.85 + 2 85.6333 300 1 0 -98.0125 -119.993 -176.25 + 2 242.587 586 1 0 -155.642 -62.7571 -176.25 + 2 180.024 238 0 0 -67.0599 -132.547 -205.85 + 2 20.1641 239 0 0 -66.9922 -132.35 -206.174 + 2 71.5168 811 8 0 -71.2141 -17.8179 33.75 + 2 140.688 810 8 0 -71.1864 -17.85 33.7888 + 2 55.5073 242 3 0 -67.6814 -131.683 -115.85 + 2 113.608 243 3 0 -67.6723 -131.55 -115.99 + 2 40.7579 309 3 0 -58.3126 -118.321 -116.25 + 2 134.751 308 3 0 -58.2746 -118.35 -116.136 + 2 69.3759 307 3 0 -58.0389 -118.55 -115.941 + 2 65.9952 306 3 0 -57.9094 -118.75 -115.883 + 2 54.1074 305 3 0 -57.8404 -118.95 -115.916 + 2 226.206 304 3 0 -57.8057 -119.15 -115.961 + 2 83.2151 303 3 0 -57.5705 -119.35 -116.108 + 2 32.9885 249 3 0 -37.6645 -130.298 -116.25 + 2 125.109 248 3 0 -37.7134 -130.35 -116.215 + 2 57.1544 236 7 0 -67.7988 -132.95 3.94565 + 2 94.2599 561 7 1 -67.85 -132.961 5.54557 + 2 46.0747 562 7 1 -67.65 -132.904 5.29182 + 2 21.6173 237 7 0 -67.1275 -132.583 4.15 + 2 83.441 238 7 0 -67.123 -132.55 4.08735 + 2 77.9035 239 7 0 -67.1884 -132.35 3.87998 + 2 17.7689 240 7 0 -67.1901 -132.15 3.77239 + 2 36.2332 554 7 0 -68.6014 -69.1481 3.75 + 2 3.36528 555 7 0 -68.6425 -69.0499 3.75947 Number of digits in this event = 26 Using G4ParticleGun ... -1.47233 LIN +8.84182 LIN e- -Event: 66 -Number of tracker hits in this event = 28 - 66 136.19 587 10 1 -62.4841 91.4955 95.55 - 66 137.138 1356 10 0 -62.4869 91.4962 94.15 - 66 97.0218 587 9 1 -62.5547 91.5129 65.55 - 66 244.633 1356 9 0 -62.555 91.5021 64.15 - 66 140.323 587 8 1 -62.5564 91.2801 35.55 - 66 107.034 1355 8 0 -62.5587 91.2713 34.15 - 66 118.262 587 7 1 -62.6108 91.087 5.55 - 66 132.382 1354 7 0 -62.6159 91.0831 4.15 - 66 102.214 586 6 1 -62.7329 91.0346 -24.45 - 66 117.741 1354 6 0 -62.7456 91.0305 -25.85 - 66 116.838 585 5 1 -62.9983 90.9462 -54.45 - 66 224.39 1353 5 0 -63.0237 90.92 -55.85 - 66 108.017 582 4 1 -63.5613 90.3779 -84.45 - 66 136.538 1350 4 0 -63.5908 90.3485 -85.85 - 66 98.2873 579 3 1 -64.241 89.7664 -114.45 - 66 11.4009 578 3 1 -64.25 89.7601 -114.815 - 66 109.987 1348 3 0 -64.2763 89.7433 -115.85 - 66 131.013 575 2 1 -64.9691 89.2844 -144.45 - 66 160.7 1346 2 0 -64.9965 89.2564 -145.85 - 66 22.2279 1345 2 0 -65.0028 89.25 -146.169 - 66 180.309 572 1 1 -65.5607 88.7094 -174.45 - 66 240.099 1343 1 0 -65.5844 88.6849 -175.85 - 66 168.208 569 0 1 -66.0818 88.1667 -204.45 - 66 126.564 1340 0 0 -66.1149 88.1416 -205.85 - 66 11.3045 89 1 1 -162.15 80.3888 -174.67 - 66 162.08 1249 0 0 -83.7394 70.0163 -206.25 - 66 166.315 1248 0 0 -84.0474 69.85 -206.133 - 66 64.9146 1357 9 0 -62.7177 91.55 64.0562 -Number of digits in this event = 17 +Event: 3 +Number of tracker hits in this event = 89 + 3 119.604 598 10 1 -60.3347 81.8487 95.55 + 3 97.0527 1308 10 0 -60.3353 81.8494 94.15 + 3 266.158 598 9 1 -60.3485 81.8671 65.55 + 3 167.449 1309 9 0 -60.3503 81.8681 64.15 + 3 375.465 598 8 1 -60.3863 81.8909 35.55 + 3 451.885 1309 8 0 -60.3893 81.8931 34.15 + 3 142.149 598 7 1 -60.4485 81.9395 5.55 + 3 124.7 1309 7 0 -60.4512 81.9426 4.15 + 3 145.584 597 6 1 -60.5174 82.0033 -24.45 + 3 139.332 1309 6 0 -60.5209 82.0056 -25.85 + 3 99.6175 597 5 1 -60.6003 82.05 -54.45 + 3 189.966 1310 5 0 -60.6051 82.0516 -55.85 + 3 147.812 596 4 1 -60.7088 82.0816 -84.45 + 3 206.33 1310 4 0 -60.7145 82.0819 -85.85 + 3 199.583 596 3 1 -60.8265 82.081 -114.45 + 3 163.825 1310 3 0 -60.8317 82.0824 -115.85 + 3 347.129 595 2 1 -60.9556 82.112 -144.45 + 3 426.326 1310 2 0 -60.9627 82.1041 -145.85 + 3 261.257 594 1 1 -61.1319 81.9471 -174.45 + 3 130.688 1309 1 0 -61.1254 81.9182 -175.85 + 3 146.43 595 0 1 -60.9949 81.3277 -204.45 + 3 105.827 1306 0 0 -60.9863 81.2985 -205.85 + 3 153.409 589 1 1 -62.1915 82.6745 -174.45 + 3 123.13 1313 1 0 -62.2915 82.6806 -175.85 + 3 149.232 578 0 1 -64.2913 82.7868 -204.45 + 3 121.856 1313 0 0 -64.3877 82.8016 -205.85 + 3 155.085 579 0 1 -64.2494 82.759 -204.736 + 3 201.971 580 0 1 -64.0499 82.5285 -204.69 + 3 365.496 1311 1 0 -61.2037 82.3848 -175.85 + 3 138.698 590 0 1 -62.022 82.9297 -204.45 + 3 143.626 1314 0 0 -62.0552 82.9224 -205.85 + 3 59.483 525 1 1 -74.8928 96.2906 -174.85 + 3 280.986 595 1 1 -61.0213 82.0807 -174.45 + 3 264.573 1310 1 0 -61.0264 82.0779 -175.85 + 3 123.465 594 0 1 -61.1335 81.9976 -204.45 + 3 244.646 1309 0 0 -61.1479 81.9903 -205.85 + 3 118.426 802 1 1 -19.6316 -5.30774 -174.85 + 3 110.218 874 1 0 -19.5601 -5.08349 -175.85 + 3 138.866 1310 0 0 -61.1695 82.05 -206.067 + 3 169.241 1311 0 0 -61.1986 82.25 -205.89 + 3 190.773 596 0 1 -60.793 81.984 -204.45 + 3 50.0656 1311 4 0 -60.7336 82.25 -86.1849 + 3 170.224 597 1 1 -60.5442 82.3457 -174.45 + 3 168.536 597 0 1 -60.557 82.6689 -204.45 + 3 119.106 1312 0 0 -60.5392 82.6444 -205.85 + 3 36.7961 613 7 1 -57.3433 81.9374 5.55 + 3 105.58 614 7 1 -57.25 81.8605 5.43651 + 3 8.03154 615 7 1 -57.0499 81.699 5.17765 + 3 20.0636 1305 7 0 -56.2097 81.0855 4.15 + 3 110.375 1304 7 0 -56.1618 81.05 4.09218 + 3 14.9242 1303 7 0 -55.9307 80.8497 3.78 + 3 130.305 701 6 1 -39.7766 65.1505 -24.45 + 3 129.157 1224 6 0 -39.3807 64.9908 -25.8501 + 3 73.6688 743 5 1 -31.4218 64.2197 -54.45 + 3 108.439 744 5 1 -31.25 64.3232 -54.6391 + 3 69.1418 1224 5 0 -30.1591 64.9771 -55.85 + 3 110.424 1225 5 0 -30.0403 65.05 -55.9883 + 3 90.2884 867 4 1 -6.55118 83.0635 -84.45 + 3 237.963 868 4 1 -6.45 83.3534 -84.4963 + 3 192.658 869 4 1 -6.25 83.8055 -84.5515 + 3 131.99 870 4 1 -6.04992 84.1551 -84.5831 + 3 83.6425 871 4 1 -5.85 84.3916 -84.6161 + 3 120.013 872 4 1 -5.65 84.6168 -84.6799 + 3 71.9181 873 4 1 -5.44995 84.8122 -84.7487 + 3 17.112 874 4 1 -5.25 84.9943 -84.8267 + 3 86.0812 1335 4 0 -2.77444 87.0877 -85.8501 + 3 120.85 1336 4 0 -2.58273 87.2504 -85.9343 + 3 92.43 1337 4 0 -2.3129 87.45 -86.0493 + 3 98.9645 1338 4 0 -2.03085 87.65 -86.1523 + 3 79.03 1308 8 0 -60.2357 81.85 34.0037 + 3 49.8882 636 7 1 -52.7805 85.1621 5.55 + 3 49.3284 637 7 1 -52.65 85.1431 5.48481 + 3 65.2866 638 7 1 -52.45 85.1098 5.39537 + 3 67.0533 639 7 1 -52.25 85.0884 5.29603 + 3 154.886 1320 7 0 -51.8449 84.2372 4.15 + 3 41.7759 1319 7 0 -51.7143 84.05 3.88761 + 3 54.2164 1279 7 0 -27.1001 75.9449 3.75 + 3 115.685 1280 7 0 -27.0997 76.05 3.93552 + 3 264.366 771 7 1 -25.7556 76.6064 5.15 + 3 206.792 772 7 1 -25.65 76.5143 5.43787 + 3 75.2112 598 1 1 -60.45 82.005 -174.58 + 3 21.3675 1307 1 0 -60.4087 81.4807 -175.85 + 3 147.522 1306 1 0 -60.4055 81.45 -175.917 + 3 10.4334 504 1 1 -79.25 9.3418 -174.81 + 3 57.9806 660 3 1 -47.934 -1.21076 -114.85 + 3 167.817 933 0 1 6.65 67.3171 -204.633 + 3 72.0305 934 0 1 6.85 67.177 -204.509 + 3 180.006 732 3 0 137.834 -33.45 -116.17 + 3 26.9505 1309 3 0 -60.339 81.8528 -115.85 +Number of digits in this event = 53 Using G4ParticleGun ... -8.6616 LIN +7.79782 LIN e- -Event: 67 -Number of tracker hits in this event = 58 - 67 116.813 843 9 1 -11.2992 -132.01 65.55 - 67 116.317 240 9 0 -11.2984 -132.01 64.15 - 67 254.058 843 8 1 -11.2877 -132.023 35.55 - 67 100.764 240 8 0 -11.2877 -132.025 34.15 - 67 115.02 843 7 1 -11.2879 -132.092 5.55 - 67 131.422 240 7 0 -11.2885 -132.096 4.15 - 67 149.202 843 6 1 -11.3006 -132.164 -24.45 - 67 122.593 239 6 0 -11.3008 -132.167 -25.85 - 67 190.829 843 5 1 -11.307 -132.225 -54.45 - 67 110.043 239 5 0 -11.3045 -132.227 -55.85 - 67 181.344 844 4 1 -11.2394 -132.276 -84.45 - 67 415.084 239 4 0 -11.2399 -132.279 -85.85 - 67 252.718 843 3 1 -11.2775 -132.317 -114.45 - 67 251.073 239 3 0 -11.2809 -132.326 -115.85 - 67 490.601 843 2 1 -11.354 -132.533 -144.45 - 67 632.77 238 2 0 -11.3914 -132.534 -145.85 - 67 124.912 839 1 1 -12.1536 -132.574 -174.45 - 67 217.387 237 1 0 -12.1875 -132.57 -175.85 - 67 114.091 835 0 1 -12.9032 -132.514 -204.45 - 67 275.789 238 0 0 -12.9336 -132.51 -205.85 - 67 45.242 231 0 0 0.571457 -133.793 -206.25 - 67 281.889 843 4 1 -11.2688 -132.291 -84.45 - 67 115.127 843 1 1 -11.3459 -132.63 -174.45 - 67 106.96 843 0 1 -11.34 -133.043 -204.45 - 67 275.184 235 0 0 -11.3474 -133.078 -205.85 - 67 160.25 70 2 0 11.7731 -166.015 -146.25 - 67 99.7393 69 2 0 12.0223 -166.15 -145.963 - 67 8.28164 68 2 0 11.9905 -166.35 -145.882 - 67 87.5271 956 2 1 11.4157 -166.881 -144.85 - 67 96.5076 957 2 1 11.4501 -166.986 -144.783 - 67 20.5976 50 2 0 9.86855 -170.106 -145.85 - 67 75.7753 936 2 1 7.33534 -169.518 -144.85 - 67 124.567 844 3 1 -11.217 -132.352 -114.45 - 67 116.42 238 3 0 -11.2146 -132.356 -115.85 - 67 120.575 844 2 1 -11.16 -132.42 -144.45 - 67 130.386 844 1 1 -11.093 -132.466 -174.45 - 67 193.655 238 1 0 -11.0895 -132.468 -175.85 - 67 110.825 845 0 1 -11.0135 -132.504 -204.45 - 67 4.70323 96 4 0 -148.683 -160.909 -86.25 - 67 166.769 95 4 0 -148.865 -160.95 -86.0268 - 67 152.26 150 4 1 -150.025 -164.582 -84.85 - 67 66.1429 817 2 0 139.803 -16.65 -146.241 - 67 35.4852 818 2 0 140.084 -16.45 -145.903 - 67 74.7127 1603 2 1 140.837 -16.7495 -144.85 - 67 78.354 1604 2 1 140.95 -16.8034 -144.714 - 67 119.065 1605 2 1 141.15 -16.8523 -144.589 - 67 287.82 1606 2 1 141.35 -16.8897 -144.521 - 67 190.698 1607 2 1 141.55 -16.9361 -144.509 - 67 40.4671 228 7 0 -21.4526 -134.522 3.75 - 67 92.4331 848 1 1 -10.2772 -133.404 -174.45 - 67 120.463 233 1 0 -10.2478 -133.418 -175.85 - 67 169.904 852 0 1 -9.48955 -133.65 -204.45 - 67 152.566 232 0 0 -9.52482 -133.713 -205.85 - 67 145.966 846 1 1 -10.834 -133.168 -174.45 - 67 263.411 234 1 0 -10.802 -133.208 -175.85 - 67 114.465 850 0 1 -10.0379 -133.416 -204.45 - 67 61.4251 233 0 0 -9.68962 -133.36 -205.851 - 67 55.8623 234 0 0 -9.64179 -133.35 -206.037 -Number of digits in this event = 33 -Using G4ParticleGun ... -3.76532 LIN -e- -Event: 68 -Number of tracker hits in this event = 47 - 68 110.381 1028 10 1 25.6846 95.0146 95.55 - 68 128.475 1374 10 0 25.6858 95.019 94.15 - 68 142.685 1028 9 1 25.6995 95.1218 65.55 - 68 160.085 1374 9 0 25.703 95.126 64.15 - 68 147.307 1028 8 1 25.7784 95.207 35.55 - 68 130.154 1375 8 0 25.7812 95.212 34.15 - 68 206.857 1028 7 1 25.8292 95.3151 5.55 - 68 149.813 1375 7 0 25.828 95.3219 4.15 - 68 116.584 1028 6 1 25.8008 95.4704 -24.45 - 68 126.117 1376 6 0 25.8018 95.4811 -25.85 - 68 237.537 1028 5 1 25.8388 95.7119 -54.45 - 68 181.687 1377 5 0 25.8358 95.7273 -55.85 - 68 313.373 1028 4 1 25.8001 95.9908 -84.45 - 68 190.161 1379 4 0 25.7935 96.0104 -85.85 - 68 111.033 1027 3 1 25.628 96.4015 -114.45 - 68 149.64 1381 3 0 25.6298 96.4236 -115.85 - 68 105.373 1028 2 1 25.6615 96.8651 -144.45 - 68 119.014 1383 2 0 25.6768 96.8847 -145.85 - 68 116.636 1029 1 1 26.0087 97.2789 -174.45 - 68 108.461 1385 1 0 26.0267 97.2813 -175.85 - 68 107.68 1031 0 1 26.3641 97.3729 -204.45 - 68 105.321 1386 0 0 26.3862 97.3687 -205.85 - 68 4.72424 1481 0 0 17.071 116.388 -206.25 - 68 9.6919 1440 2 0 42.2299 108.243 -146.25 - 68 334.023 1027 5 1 25.543 95.251 -54.45 - 68 217.53 1375 5 0 25.5276 95.2648 -55.85 - 68 120.485 1025 4 1 25.1057 96.1649 -84.45 - 68 218.614 1380 4 0 25.1042 96.1777 -85.85 - 68 147.122 1026 3 1 25.3318 96.6229 -114.45 - 68 325.719 1382 3 0 25.3119 96.6886 -115.85 - 68 127.45 1025 2 1 25.196 98.2298 -144.45 - 68 234.462 1390 2 0 25.2714 98.2505 -145.85 - 68 125.447 1034 1 1 26.9254 98.8873 -174.45 - 68 186.787 1393 1 0 27.2123 98.9042 -175.85 - 68 135.196 1062 0 1 32.5434 99.5205 -204.451 - 68 217.094 1396 0 0 32.8606 99.4863 -205.85 - 68 105.791 1392 0 0 31.5874 98.5554 -206.25 - 68 120.891 1378 4 0 25.6999 95.8356 -85.85 - 68 329.188 1030 3 1 26.1424 96.6757 -114.45 - 68 104.882 1383 3 0 26.1833 96.75 -115.986 - 68 103.292 1034 2 1 26.9799 98.1458 -144.45 - 68 179.476 1039 1 1 27.9474 99.817 -174.45 - 68 216.763 1398 1 0 28.0278 99.8726 -175.85 - 68 122.205 1048 0 1 29.6679 100.917 -204.45 - 68 123.777 1404 0 0 29.7575 100.994 -205.85 - 68 42.8713 1376 4 0 25.7208 95.4336 -85.85 - 68 282.145 1375 4 0 25.7321 95.35 -85.9195 -Number of digits in this event = 35 -Using G4ParticleGun ... -1.88089 LIN -e- -Event: 69 -Number of tracker hits in this event = 47 - 69 121.766 1583 8 1 136.862 9.0562 35.55 - 69 121.115 945 8 0 136.866 9.05726 34.15 - 69 680.85 1583 7 1 136.944 9.07425 5.55 - 69 108.696 945 7 0 136.954 9.06978 4.15 - 69 151.344 1585 6 1 137.22 8.97218 -24.45 - 69 105.651 944 6 0 137.235 8.96802 -25.85 - 69 175.742 1586 5 1 137.538 8.86703 -54.45 - 69 115.604 943 5 0 137.553 8.84689 -55.85 - 69 129.219 1588 4 1 137.889 8.44129 -84.45 - 69 114.043 941 4 0 137.909 8.41789 -85.85 - 69 103.694 1591 3 1 138.393 8.00449 -114.45 - 69 182.162 939 3 0 138.423 7.99408 -115.85 - 69 137.135 1594 2 1 138.982 7.77916 -144.45 - 69 120.593 938 2 0 139.028 7.7672 -145.85 - 69 383.905 1599 1 1 139.966 7.51778 -174.45 - 69 293.9 937 1 0 140.022 7.50784 -175.85 - 69 52.1329 1604 0 1 141.148 7.32007 -204.45 - 69 107.98 1605 0 1 141.15 7.31979 -204.489 - 69 124.835 936 0 0 141.228 7.30865 -205.85 - 69 5.92412 1526 2 1 125.55 73.2571 -144.557 - 69 120.667 938 1 0 140.314 7.72166 -175.85 - 69 125.533 1721 0 1 164.431 6.32609 -204.45 - 69 131.721 1720 0 1 164.35 6.27372 -204.505 - 69 11.3435 1283 2 1 76.85 -5.68894 -144.833 - 69 85.0359 1603 0 1 140.95 7.66062 -204.57 - 69 126.846 938 0 0 140.949 7.7397 -205.85 - 69 11.3689 1225 1 0 -10.9115 65.1404 -175.85 - 69 227.21 1582 7 1 136.75 9.06802 5.43516 - 69 135.525 946 7 0 136.347 9.27112 4.15 - 69 166.805 740 7 0 103.282 -31.8924 3.75 - 69 23.1419 739 7 0 102.924 -32.05 4.07881 - 69 26.2497 1409 7 1 101.986 -32.3658 5.15 - 69 243.829 1408 7 1 101.95 -32.376 5.19598 - 69 89.8454 1161 13 1 52.3735 56.7526 185.15 - 69 240.856 1160 13 1 52.2499 56.8308 185.276 - 69 74.8146 1581 7 1 136.549 9.23881 5.49837 - 69 77.5617 1580 7 1 136.35 9.32085 5.54654 - 69 66.2237 1579 7 1 136.15 9.26146 5.46208 - 69 52.7981 1578 7 1 135.95 9.21397 5.41768 - 69 100.287 1577 7 1 135.75 9.17472 5.38891 - 69 301.22 1576 7 1 135.55 9.13289 5.36727 - 69 139.148 1575 7 1 135.35 9.06842 5.33294 - 69 184.148 1574 7 1 135.15 8.94495 5.32495 - 69 282.29 1573 7 1 134.95 8.85207 5.34137 - 69 169.464 1572 7 1 134.75 8.82408 5.37383 - 69 33.4766 1571 7 1 134.55 8.89931 5.4519 - 69 154.667 938 7 0 133.577 7.84525 4.15 -Number of digits in this event = 30 -Using G4ParticleGun ... -6.71758 LIN -e- -Event: 70 -Number of tracker hits in this event = 22 - 70 355.015 878 9 1 -4.28727 -118.639 65.55 - 70 119.079 307 9 0 -4.28657 -118.639 64.15 - 70 130.051 878 8 1 -4.26851 -118.63 35.55 - 70 118.636 307 8 0 -4.2686 -118.629 34.15 - 70 142.759 878 7 1 -4.26859 -118.601 5.55 - 70 108.391 307 7 0 -4.26777 -118.599 4.15 - 70 147.132 878 6 1 -4.25712 -118.557 -24.45 - 70 104.035 307 6 0 -4.25497 -118.556 -25.85 - 70 139.577 879 5 1 -4.21666 -118.529 -54.45 - 70 99.817 308 5 0 -4.21526 -118.528 -55.85 - 70 112.682 879 4 1 -4.18248 -118.505 -84.45 - 70 139.487 308 4 0 -4.18057 -118.504 -85.85 - 70 103.491 879 3 1 -4.15052 -118.472 -114.45 - 70 153.498 308 3 0 -4.14987 -118.47 -115.85 - 70 152.861 879 2 1 -4.1355 -118.432 -144.45 - 70 159.387 308 2 0 -4.13556 -118.431 -145.85 - 70 170.745 879 1 1 -4.14004 -118.402 -174.45 - 70 105.72 308 1 0 -4.13874 -118.4 -175.85 - 70 159.36 879 0 1 -4.11446 -118.358 -204.45 - 70 362.221 308 0 0 -4.11417 -118.355 -205.85 - 70 105.748 880 0 1 -4.05 -118.365 -204.502 - 70 78.8334 879 9 1 -4.25 -118.577 65.4955 -Number of digits in this event = 15 -Using G4ParticleGun ... -6.53198 LIN -e- -Event: 71 -Number of tracker hits in this event = 40 - 71 274.799 1501 9 1 120.43 49.8974 65.55 - 71 117.877 1149 9 0 120.429 49.897 64.15 - 71 111.737 1501 8 1 120.391 49.8843 35.55 - 71 248.988 1149 8 0 120.39 49.8831 34.15 - 71 174.949 1501 7 1 120.359 49.8654 5.55 - 71 142.818 1149 7 0 120.356 49.864 4.15 - 71 140.496 1500 6 1 120.308 49.8291 -24.45 - 71 127.213 1148 6 0 120.307 49.8252 -25.85 - 71 106.111 1500 5 1 120.307 49.742 -54.45 - 71 272.003 1148 5 0 120.309 49.739 -55.85 - 71 215.419 1501 4 1 120.382 49.7074 -84.45 - 71 132.385 1148 4 0 120.383 49.7043 -85.85 - 71 139.039 1501 3 1 120.417 49.6451 -114.45 - 71 119.273 1147 3 0 120.418 49.6404 -115.85 - 71 116.022 1501 2 1 120.453 49.543 -144.45 - 71 81.8788 1147 2 0 120.456 49.5404 -145.85 - 71 203.658 1501 1 1 120.516 49.487 -174.45 - 71 111.093 1147 1 0 120.52 49.4856 -175.85 - 71 155.58 1502 0 1 120.551 49.4927 -204.45 - 71 132.923 1147 0 0 120.55 49.4943 -205.85 - 71 188.996 855 1 0 152.606 -8.90451 -176.25 - 71 246.755 1607 1 0 119.631 141.55 -176.072 - 71 136.419 1370 0 1 94.35 103.355 -204.604 - 71 34.6671 1502 1 1 120.55 49.4021 -174.726 - 71 3.66325 1146 1 0 120.783 49.2516 -175.85 - 71 119.622 1145 1 0 120.785 49.25 -175.862 - 71 97.2296 1537 0 1 127.638 44.847 -204.45 - 71 28.3327 1536 0 1 127.55 44.7579 -204.751 - 71 31.5834 1121 0 0 127.027 44.2673 -205.85 - 71 110.252 1120 0 0 127.008 44.25 -205.887 - 71 98.0526 1144 4 0 120.521 48.9866 -85.85 - 71 10.6349 1147 5 0 120.37 49.65 -56.2188 - 71 12.5811 237 7 0 -79.4036 -132.55 3.949 - 71 188.746 1500 0 1 120.316 49.8632 -204.45 - 71 279.752 1149 0 0 120.318 49.867 -205.85 - 71 115.455 1160 10 0 117.502 52.2466 93.7502 - 71 349.439 1161 10 0 117.5 52.2501 93.774 - 71 100.274 1162 10 0 117.345 52.45 94.0788 - 71 31.1294 1486 10 1 117.356 52.3047 95.15 - 71 217.831 1165 10 0 116.496 53.1272 94.15 -Number of digits in this event = 22 -Using G4ParticleGun ... -6.95452 LIN -e- -Event: 72 -Number of tracker hits in this event = 71 - 72 250.942 1148 11 1 49.7898 -9.012 125.55 - 72 118.102 855 11 0 49.7894 -9.0102 124.15 - 72 230.27 1148 10 1 49.7786 -8.97687 95.55 - 72 128.138 855 10 0 49.7771 -8.97583 94.15 - 72 378.723 1148 9 1 49.7492 -8.95829 65.55 - 72 154.688 855 9 0 49.7492 -8.95594 64.15 - 72 155.039 1148 8 1 49.7582 -8.89995 35.55 - 72 111.18 855 8 0 49.7581 -8.89863 34.15 - 72 130.722 1148 7 1 49.7543 -8.87309 5.55 - 72 103.066 855 7 0 49.7541 -8.87203 4.15 - 72 113.275 1148 6 1 49.7519 -8.84822 -24.45 - 72 140.103 856 6 0 49.7524 -8.84909 -25.85 - 72 224.868 1148 5 1 49.7593 -8.87059 -54.45 - 72 221.283 855 5 0 49.7593 -8.87161 -55.85 - 72 149.755 1148 4 1 49.7623 -8.89471 -84.45 - 72 163.018 855 4 0 49.7617 -8.89509 -85.85 - 72 299.888 1148 3 1 49.7522 -8.90374 -114.45 - 72 135.261 855 3 0 49.7509 -8.90329 -115.85 - 72 510.925 1148 2 1 49.7201 -8.89523 -144.45 - 72 275.25 855 2 0 49.7182 -8.89373 -145.85 - 72 123.831 1148 1 1 49.6833 -8.86363 -174.45 - 72 172.79 855 1 0 49.6822 -8.86357 -175.85 - 72 129.231 1148 0 1 49.6631 -8.87151 -204.45 - 72 106.127 855 0 0 49.662 -8.87128 -205.85 - 72 88.2049 852 9 0 49.6427 -9.55153 64.15 - 72 38.2652 851 9 0 49.6307 -9.65 63.9152 - 72 163.3 1143 8 1 48.7535 -21.1448 35.55 - 72 55.7719 790 8 0 48.4504 -21.9793 34.15 - 72 89.041 789 8 0 48.4214 -22.05 34.0225 - 72 33.44 657 8 0 14.7901 -48.5839 33.75 - 72 69.9182 656 8 0 14.6994 -48.65 33.828 - 72 84.4003 655 8 0 14.5677 -48.8509 33.9254 - 72 78.1599 654 8 0 14.471 -49.05 34.0224 - 72 23.6669 653 8 0 14.3887 -49.25 34.1137 - 72 340.687 969 8 1 13.9811 -51.1944 35.1501 - 72 79.058 970 8 1 14.05 -51.8535 35.4677 - 72 141.435 1147 3 1 49.6498 -8.83854 -114.705 - 72 149.815 854 3 0 49.4474 -9.10084 -115.85 - 72 313.395 1120 2 1 44.1504 -16.1744 -144.45 - 72 149.873 819 2 0 44.0124 -16.217 -145.85 - 72 120.666 1100 1 1 40.2092 -17.0247 -174.45 - 72 105.287 815 1 0 40.2893 -17.017 -175.85 - 72 93.2624 1108 0 1 41.65 -16.5854 -204.45 - 72 95.3218 1107 0 1 41.65 -16.5854 -204.45 - 72 185.358 817 0 0 41.3553 -16.5851 -205.85 - 72 2.26991 699 0 0 25.191 -40.1642 -206.25 - 72 81.268 1109 0 1 41.85 -16.586 -204.593 - 72 19.7233 816 0 0 41.895 -16.6671 -205.85 - 72 67.5333 818 0 0 41.9962 -16.45 -206.053 - 72 67.7297 819 0 0 41.9827 -16.2499 -206.092 - 72 14.5135 820 0 0 41.9785 -16.0496 -206.218 - 72 218.354 856 3 0 49.6915 -8.73985 -115.85 - 72 357.639 1147 2 1 49.6218 -8.74293 -144.45 - 72 97.6068 856 2 0 49.607 -8.72765 -145.85 - 72 120.785 1146 1 1 49.382 -8.37643 -174.45 - 72 291.879 858 1 0 49.3458 -8.36533 -175.85 - 72 197.558 1143 0 1 48.7473 -8.088 -204.45 - 72 131.146 859 0 0 48.7073 -8.10649 -205.85 - 72 12.8127 1178 1 1 55.8428 -13.6662 -174.45 - 72 120.162 1179 1 1 55.85 -13.6277 -174.499 - 72 159.931 837 1 0 55.9966 -12.6282 -175.85 - 72 49.5489 838 1 0 56.0134 -12.45 -176.082 - 72 9.93108 960 1 0 73.4631 12.2475 -176.25 - 72 104.483 961 1 0 73.4796 12.25 -176.21 - 72 92.9337 1270 1 1 74.1204 12.5689 -174.85 - 72 36.513 1271 1 1 74.25 12.6315 -174.6 - 72 12.4126 817 2 0 74.906 -16.6253 -146.25 - 72 78.4308 816 2 0 74.9082 -16.65 -146.229 - 72 62.357 815 2 0 74.9555 -16.85 -146.042 - 72 150.335 1275 2 1 75.0912 -17.7254 -144.85 - 72 80.702 1417 4 1 103.593 45.5986 -84.85 -Number of digits in this event = 37 -Using G4ParticleGun ... -5.10324 LIN -e- -Event: 73 -Number of tracker hits in this event = 78 - 73 154.19 902 11 1 0.571248 -49.8743 125.55 - 73 121.156 650 11 0 0.571021 -49.8763 124.15 - 73 105.927 902 10 1 0.571551 -49.9169 95.55 - 73 167.583 650 10 0 0.570721 -49.9186 94.15 - 73 132.779 902 9 1 0.549569 -49.9506 65.55 - 73 112.133 650 9 0 0.548579 -49.9532 64.15 - 73 136.886 902 8 1 0.528525 -50.0005 35.55 - 73 125.942 650 8 0 0.528536 -50.0029 34.15 - 73 130.046 902 7 1 0.540178 -50.0666 5.55 - 73 211.904 649 7 0 0.540488 -50.0716 4.15 - 73 91.1992 902 6 1 0.550329 -50.1746 -24.45 - 73 137.518 649 6 0 0.548461 -50.1883 -25.85 - 73 110.686 901 5 1 0.447638 -50.5031 -54.45 - 73 139.291 647 5 0 0.449546 -50.5235 -55.85 - 73 410.682 902 4 1 0.533175 -50.94 -84.45 - 73 141.929 645 4 0 0.547435 -50.9758 -85.85 - 73 335.795 904 3 1 0.891336 -51.6789 -114.45 - 73 241.584 641 3 0 0.927673 -51.705 -115.85 - 73 403.048 908 2 1 1.7739 -52.1892 -144.45 - 73 108.17 639 2 0 1.81298 -52.2016 -145.85 - 73 232.958 912 1 1 2.57667 -52.502 -174.45 - 73 123.468 637 1 0 2.65608 -52.5069 -175.85 - 73 254.557 920 0 1 4.09266 -52.1214 -204.45 - 73 165.248 640 0 0 4.23716 -51.9884 -205.85 - 73 77.9732 897 0 1 -0.541119 -65.873 -204.45 - 73 200.763 898 0 1 -0.449835 -65.9966 -204.532 - 73 61.1462 640 3 0 0.897335 -51.8501 -116.074 - 73 50.0211 639 3 0 0.863413 -52.05 -116.113 - 73 34.4106 638 3 0 0.877917 -52.2502 -116.147 - 73 112.482 903 3 1 0.835106 -51.669 -114.45 - 73 39.0501 643 3 0 0.848097 -51.2841 -115.851 - 73 224.426 644 3 0 0.843811 -51.25 -115.971 - 73 29.8842 645 3 0 0.845994 -51.0499 -116.171 - 73 41.6478 906 1 1 1.40607 -52.4168 -174.45 - 73 128.866 638 1 0 1.71438 -52.3796 -175.85 - 73 149.971 911 0 1 2.34564 -52.4447 -204.45 - 73 311.28 912 0 1 2.45 -52.4811 -204.699 - 73 186.244 636 0 0 3.48794 -52.7014 -205.85 - 73 113.867 798 0 0 28.7473 -20.45 -206.094 - 73 262.795 648 4 0 0.554379 -50.3578 -85.85 - 73 257.587 902 3 1 0.569069 -50.4587 -114.45 - 73 181.104 647 3 0 0.567705 -50.4602 -115.85 - 73 473.671 902 2 1 0.525415 -50.5012 -144.45 - 73 373.098 647 2 0 0.525862 -50.5017 -145.85 - 73 123.174 902 1 1 0.548822 -50.5066 -174.45 - 73 119.706 647 1 0 0.549901 -50.5118 -175.85 - 73 259.652 902 0 1 0.569961 -50.6202 -204.45 - 73 127.09 647 0 0 0.570519 -50.6309 -205.85 - 73 16.2498 1634 5 0 -15.5241 147.15 -56.1452 - 73 110.194 909 1 1 1.96132 -51.1252 -174.45 - 73 118.409 643 1 0 2.04429 -51.2583 -175.85 - 73 6.73352 921 0 1 4.25102 -53.9204 -204.451 - 73 87.8104 630 0 0 4.18388 -53.863 -205.85 - 73 24.7974 631 0 0 4.16745 -53.85 -206.154 - 73 318.862 901 1 1 0.267678 -50.2042 -174.45 - 73 39.1126 900 1 1 0.25 -50.1978 -174.744 - 73 149.183 649 1 0 0.187282 -50.1745 -175.85 - 73 101.252 891 0 1 -1.80775 -49.5691 -204.45 - 73 3.7578 890 0 1 -1.85001 -49.5677 -204.822 - 73 130.988 652 0 0 -1.96091 -49.5659 -205.85 - 73 183.764 648 3 0 0.577515 -50.4499 -116.111 - 73 151.642 903 2 1 0.675767 -50.3457 -144.45 - 73 384.919 648 2 0 0.678145 -50.3673 -145.85 - 73 144.569 903 1 1 0.71111 -50.8089 -174.45 - 73 248.966 646 1 0 0.700751 -50.8423 -175.85 - 73 21.1456 645 1 0 0.698288 -50.85 -176.171 - 73 174.44 642 0 0 0.519958 -51.5534 -205.85 - 73 3.45808 841 0 0 -88.364 -11.7283 -206.25 - 73 31.1032 447 0 1 -90.6995 -11.7868 -204.85 - 73 237.495 446 0 1 -90.7504 -11.784 -204.828 - 73 377.114 648 1 0 0.305138 -50.2591 -175.85 - 73 126.544 901 0 1 0.391098 -50.3291 -204.45 - 73 134.039 648 0 0 0.409549 -50.3606 -205.85 - 73 222.72 907 0 1 1.47388 -52.4461 -204.45 - 73 109.214 638 0 0 1.69601 -52.292 -205.85 - 73 0.277128 639 0 0 1.72359 -52.25 -206.249 - 73 30.6218 717 0 0 29.2993 -36.5624 -206.25 - 73 109.952 882 0 1 -3.46234 -48.749 -204.85 -Number of digits in this event = 49 -Using G4ParticleGun ... -9.36709 LIN -e- -Event: 74 -Number of tracker hits in this event = 97 - 74 124.73 1039 11 1 27.9088 -24.6909 125.55 - 74 150.262 776 11 0 27.9085 -24.6904 124.15 - 74 215.824 1039 10 1 27.8998 -24.6816 95.55 - 74 143.084 776 10 0 27.8985 -24.6823 94.15 - 74 109.64 1039 9 1 27.8669 -24.6938 65.55 - 74 218.395 776 9 0 27.8652 -24.6943 64.15 - 74 130.322 1038 8 1 27.8316 -24.7079 35.55 - 74 195.151 776 8 0 27.8301 -24.7068 34.15 - 74 145.838 1038 7 1 27.8006 -24.6867 5.55 - 74 159.302 776 7 0 27.7982 -24.6852 4.15 - 74 84.6243 1038 6 1 27.7482 -24.6563 -24.45 - 74 282.119 776 6 0 27.7452 -24.6553 -25.85 - 74 299.14 1038 5 1 27.6876 -24.6362 -54.45 - 74 114.015 777 5 0 27.6847 -24.6355 -55.85 - 74 350.169 1037 4 1 27.633 -24.6203 -84.45 - 74 321.064 777 4 0 27.6306 -24.6191 -85.85 - 74 115.631 1037 3 1 27.5813 -24.5971 -114.45 - 74 168.148 777 3 0 27.5795 -24.5963 -115.85 - 74 293.584 1037 2 1 27.5357 -24.5781 -144.45 - 74 203.595 777 2 0 27.5341 -24.5791 -145.85 - 74 107.287 1037 1 1 27.5033 -24.604 -174.45 - 74 121.03 777 1 0 27.502 -24.6056 -175.85 - 74 245.571 1037 0 1 27.4712 -24.6396 -204.45 - 74 149.84 777 0 0 27.4693 -24.64 -205.85 - 74 119.866 1036 0 1 27.45 -24.6547 -204.602 - 74 113.002 776 0 0 27.3721 -24.7526 -205.85 - 74 22.7322 780 0 0 27.3384 -23.8883 -205.851 - 74 82.9571 781 0 0 27.3311 -23.85 -205.926 - 74 106.947 1036 2 1 27.45 -24.5925 -144.593 - 74 69.5532 377 11 1 -104.705 28.731 125.15 - 74 674.03 1038 4 1 27.6999 -24.6248 -84.45 - 74 106.447 1033 3 1 26.6569 -24.5045 -114.45 - 74 8.42415 1032 3 1 26.65 -24.4893 -114.817 - 74 88.2946 778 3 0 26.6283 -24.45 -115.921 - 74 152.048 1030 2 1 26.1896 -23.3102 -144.45 - 74 224.42 784 2 0 26.1883 -23.2196 -145.85 - 74 15.5539 1029 1 1 26.0489 -21.4253 -174.45 - 74 84.5699 1030 1 1 26.05 -21.4233 -174.494 - 74 118.178 793 1 0 26.0928 -21.3563 -175.85 - 74 108.435 1035 0 1 27.0752 -19.8368 -204.45 - 74 95.7966 801 0 0 27.1462 -19.7638 -205.85 - 74 27.2688 353 4 0 36.5265 -109.35 -86.1647 - 74 43.4639 145 5 0 22.1038 -150.95 -55.9018 - 74 59.3829 1050 3 1 30.0657 -23.867 -114.45 - 74 35.1991 1049 3 1 30.05 -23.8672 -114.704 - 74 120.238 780 3 0 29.9897 -23.8738 -115.85 - 74 135.466 1042 2 1 28.5172 -23.6437 -144.45 - 74 85.2346 781 2 0 28.4923 -23.8201 -145.85 - 74 73.2719 780 2 0 28.4871 -23.85 -146.104 - 74 98.7549 1038 1 1 27.8237 -26.8989 -174.45 - 74 121.696 765 1 0 27.7998 -27.027 -175.85 - 74 42.8585 764 1 0 27.7981 -27.05 -176.112 - 74 161.818 1038 0 1 27.81 -29.5287 -204.45 - 74 108.217 752 0 0 27.7122 -29.6069 -205.85 - 74 76.6828 772 4 0 27.8599 -25.4965 -85.85 - 74 84.3059 771 4 0 27.8801 -25.6503 -86.0525 - 74 29.8997 770 4 0 27.9329 -25.85 -86.1837 - 74 103.049 1039 4 1 27.85 -24.3243 -84.6133 - 74 9.04028 782 4 0 28.5161 -23.4703 -85.85 - 74 140.83 783 4 0 28.534 -23.45 -85.8842 - 74 163.362 784 4 0 28.7308 -23.2498 -86.1517 - 74 8.42545 785 4 0 28.9574 -23.05 -86.2346 - 74 60.8466 1136 4 0 64.323 47.3001 -86.25 - 74 104.377 1137 4 0 64.2368 47.45 -86.1391 - 74 2.59791 1220 4 1 64.2498 47.9892 -84.8495 - 74 159.421 1221 4 1 64.25 47.9897 -84.8479 - 74 128.523 1222 4 1 64.4903 48.184 -84.45 - 74 172.69 1223 4 1 64.65 48.4704 -84.6627 - 74 103.954 1224 4 1 64.85 48.7468 -84.7792 - 74 93.6448 1225 4 1 65.0501 48.9134 -84.6553 - 74 217.64 1039 5 1 27.85 -24.8146 -54.4938 - 74 26.2578 1040 5 1 28.05 -24.9335 -54.7616 - 74 25.1795 772 5 0 28.7268 -25.6093 -55.8502 - 74 98.5956 771 5 0 28.7647 -25.65 -55.9182 - 74 345.769 1092 4 1 38.6345 -37.1739 -84.45 - 74 55.5699 1093 4 1 38.65 -37.4549 -84.6916 - 74 211.347 710 4 0 40.0443 -37.9759 -85.85 - 74 187.921 947 4 0 -8.62923 9.47246 -86.25 - 74 124.356 776 5 0 27.7725 -24.7687 -55.85 - 74 115.165 778 4 0 27.6498 -24.3063 -85.85 - 74 101.624 1042 3 1 28.4839 -23.6303 -114.45 - 74 122.331 782 3 0 28.5289 -23.6128 -115.85 - 74 152.741 1046 2 1 29.3574 -23.2099 -144.45 - 74 260.437 1050 1 1 30.1666 -23.3554 -174.45 - 74 120.51 783 1 0 30.2352 -23.3607 -175.85 - 74 107.505 1058 0 1 31.7536 -23.3001 -204.45 - 74 86.0263 783 0 0 31.7888 -23.3171 -205.85 - 74 88.5355 669 2 1 -46.2085 -24.0223 -144.85 - 74 0.456842 1049 1 1 30.05 -23.5622 -174.849 - 74 44.9498 772 1 0 28.314 -25.5219 -175.85 - 74 98.6217 771 1 0 28.2302 -25.6502 -175.915 - 74 288.39 1036 1 1 27.4393 -26.9897 -174.85 - 74 105.605 776 1 0 27.6491 -24.7783 -175.85 - 74 142.743 1015 0 1 23.1397 -23.2376 -204.45 - 74 164.616 784 0 0 22.9994 -23.1014 -205.85 - 74 129.331 777 10 0 27.9468 -24.65 94.1049 - 74 439.516 1683 6 0 120.303 156.844 -26.2498 -Number of digits in this event = 48 -Using G4ParticleGun ... -2.61023 LIN -e- -Event: 75 -Number of tracker hits in this event = 145 - 75 125.812 645 11 1 -50.9727 -32.5025 125.55 - 75 113.871 737 11 0 -50.9752 -32.5024 124.15 - 75 119.502 645 10 1 -51.0362 -32.5084 95.55 - 75 118.167 737 10 0 -51.0373 -32.5081 94.15 - 75 147.05 644 9 1 -51.0605 -32.4897 65.55 - 75 101.733 737 9 0 -51.0637 -32.4912 64.15 - 75 559.946 644 8 1 -51.1336 -32.5308 35.55 - 75 370.029 737 8 0 -51.1365 -32.5352 34.15 - 75 100.245 644 7 1 -51.1926 -32.619 5.55 - 75 110.64 737 7 0 -51.1959 -32.6263 4.15 - 75 312.804 643 6 1 -51.2671 -32.7563 -24.45 - 75 169.907 736 6 0 -51.2709 -32.7634 -25.85 - 75 348.876 643 5 1 -51.3483 -32.8999 -54.45 - 75 129.047 735 5 0 -51.3463 -32.9131 -55.85 - 75 123.984 643 4 1 -51.2971 -33.1745 -84.45 - 75 123.07 734 4 0 -51.2868 -33.1848 -85.85 - 75 293.586 644 3 1 -51.0664 -33.3843 -114.45 - 75 137.491 733 3 0 -51.0519 -33.396 -115.85 - 75 137.836 646 2 1 -50.7406 -33.5937 -144.45 - 75 137.632 732 2 0 -50.7299 -33.6029 -145.85 - 75 130.913 647 1 1 -50.5806 -33.8903 -174.45 - 75 121.771 730 1 0 -50.5723 -33.9088 -175.85 - 75 111.567 648 0 1 -50.4061 -34.2831 -204.45 - 75 115.094 728 0 0 -50.4062 -34.3059 -205.85 - 75 35.5865 1755 2 0 -38.525 171.15 -146.028 - 75 68.2689 1756 2 0 -38.5156 171.35 -145.919 - 75 42.8835 728 2 1 -34.3337 -10.0929 -144.85 - 75 213.136 642 0 1 -51.5904 -33.9301 -204.45 - 75 227.737 730 0 0 -51.5989 -33.935 -205.85 - 75 94.001 642 6 1 -51.4504 -32.5989 -24.6117 - 75 71.9009 641 6 1 -51.65 -32.7003 -24.7224 - 75 13.9693 640 6 1 -51.85 -32.7948 -24.8227 - 75 120.933 731 6 0 -53.6431 -33.6831 -25.85 - 75 11.0389 582 6 1 -63.592 -34.6929 -24.85 - 75 50.2422 581 6 1 -63.6503 -34.6984 -24.8419 - 75 47.8216 580 6 1 -63.85 -34.7354 -24.8145 - 75 47.711 579 6 1 -64.0502 -34.7937 -24.8085 - 75 89.703 578 6 1 -64.2501 -34.8674 -24.8222 - 75 54.1584 577 6 1 -64.45 -34.9581 -24.8378 - 75 10.1949 705 6 0 -68.8115 -39.036 -25.85 - 75 115.172 704 6 0 -68.8271 -39.05 -25.8538 - 75 86.8529 703 6 0 -69.0729 -39.25 -25.9202 - 75 68.7464 702 6 0 -69.2719 -39.45 -26.0413 - 75 169.536 701 6 0 -69.4411 -39.65 -26.157 - 75 94.7842 700 6 0 -69.6707 -39.85 -26.1758 - 75 285.097 699 6 0 -69.9714 -40.0501 -26.1665 - 75 32.2091 533 6 1 -73.3207 -40.2517 -24.8499 - 75 58.9145 532 6 1 -73.45 -40.2459 -24.8168 - 75 59.3554 531 6 1 -73.65 -40.1572 -24.7781 - 75 106.165 530 6 1 -73.85 -40.0494 -24.7373 - 75 187.994 529 6 1 -74.05 -39.9134 -24.7254 - 75 225.207 528 6 1 -74.25 -39.744 -24.7093 - 75 80.0245 527 6 1 -74.45 -39.5878 -24.6671 - 75 111.159 526 6 1 -74.65 -39.4278 -24.6166 - 75 66.5377 525 6 1 -74.85 -39.1756 -24.5895 - 75 48.9947 524 6 1 -75.0501 -39.0209 -24.5671 - 75 47.044 523 6 1 -75.25 -38.9326 -24.572 - 75 45.7689 522 6 1 -75.4502 -38.9677 -24.5163 - 75 230.27 521 6 1 -75.65 -39.0577 -24.4555 - 75 90.1213 520 6 1 -75.85 -39.9255 -24.5815 - 75 16.2776 519 6 1 -76.05 -40.1176 -24.7969 - 75 125.413 695 6 0 -76.7316 -40.8513 -25.8501 - 75 46.1671 694 6 0 -76.8339 -41.05 -26.1456 - 75 51.1278 437 5 0 -121.142 -92.55 -56.0565 - 75 211.636 436 5 0 -121.201 -92.75 -56.0671 - 75 227.783 738 5 0 -51.6428 -32.3586 -55.85 - 75 113.929 602 4 1 -59.4913 -29.2061 -84.45 - 75 26.5182 601 4 1 -59.6502 -29.1724 -84.7543 - 75 146.086 754 4 0 -60.2427 -29.1039 -85.85 - 75 36.8601 524 3 1 -75.1509 -28.5123 -114.45 - 75 62.7279 523 3 1 -75.25 -28.5306 -114.508 - 75 75.1603 522 3 1 -75.45 -28.5685 -114.619 - 75 49.9785 521 3 1 -75.6504 -28.6037 -114.728 - 75 297.121 755 3 0 -77.442 -28.8878 -115.85 - 75 77.0973 320 2 1 -116.033 -34.4241 -144.45 - 75 95.5507 319 2 1 -116.15 -34.4436 -144.583 - 75 13.9108 318 2 1 -116.35 -34.4584 -144.812 - 75 140.067 727 2 0 -117.23 -34.5125 -145.85 - 75 136.042 178 1 1 -144.539 -36.8397 -174.45 - 75 129.086 714 1 0 -143.946 -37.1876 -175.85 - 75 49.6609 713 1 0 -143.863 -37.25 -176.075 - 75 65.0597 916 1 0 -149.921 3.28501 -176.25 - 75 72.1421 917 1 0 -149.981 3.45009 -176.098 - 75 35.8683 918 1 0 -150.023 3.65007 -175.94 - 75 27.6467 150 1 1 -150.127 5.02746 -174.85 - 75 416.742 149 1 1 -150.15 5.12671 -174.79 - 75 265.74 610 3 0 -101.732 -57.9306 -116.25 - 75 156.427 763 3 0 -97.9163 -27.3857 -116.25 - 75 25.7397 764 3 0 -97.7835 -27.25 -115.912 - 75 289.044 414 3 1 -97.2755 -25.716 -114.85 - 75 143.307 767 3 0 -96.2182 -26.5171 -115.85 - 75 129.738 739 5 0 -51.3749 -32.1963 -55.85 - 75 102.943 636 4 1 -52.739 -26.8467 -84.45 - 75 263.382 767 4 0 -52.4707 -26.5463 -85.85 - 75 155.112 666 3 1 -46.8205 -19.7732 -114.45 - 75 30.1711 803 3 0 -46.5303 -19.2965 -115.85 - 75 79.3424 804 3 0 -46.5004 -19.25 -115.993 - 75 155.978 698 2 1 -40.4045 -10.2262 -144.45 - 75 60.9584 851 2 0 -40.2798 -9.68795 -145.85 - 75 334.69 852 2 0 -40.2693 -9.65 -145.951 - 75 106.795 719 1 1 -36.1085 0.33194 -174.45 - 75 15.6051 720 1 1 -36.05 0.444722 -174.774 - 75 35.6217 903 1 0 -35.8505 0.824594 -175.85 - 75 115.559 904 1 0 -35.837 0.85 -175.922 - 75 274.078 746 0 1 -30.8497 11.3934 -204.45 - 75 89.0956 958 0 0 -30.477 11.7795 -205.85 - 75 41.2612 959 0 0 -30.409 11.85 -206.096 - 75 155.031 747 0 1 -30.65 11.4659 -204.64 - 75 66.2104 543 1 1 -71.25 44.5127 -174.837 - 75 130.945 659 7 1 -48.2417 -32.1583 5.55 - 75 3.18878 658 7 1 -48.25 -32.1451 5.16822 - 75 139.874 739 7 0 -48.2786 -32.1109 4.14974 - 75 108.258 650 6 1 -50.0428 -31.2298 -24.4501 - 75 124.143 743 6 0 -49.8942 -31.2833 -25.8505 - 75 159.235 663 5 1 -47.2778 -32.4741 -54.45 - 75 129.69 668 4 1 -46.3854 -28.8976 -84.45 - 75 254.066 756 4 0 -46.3272 -28.8211 -85.85 - 75 224.507 672 3 1 -45.55 -25.4324 -114.45 - 75 9.03145 774 3 0 -45.7635 -25.0575 -115.85 - 75 118.53 775 3 0 -45.7678 -25.0498 -115.878 - 75 89.2599 645 2 1 -50.9743 -17.2228 -144.451 - 75 23.9365 644 2 1 -51.05 -17.1861 -144.808 - 75 125.351 815 2 0 -51.2574 -17.047 -145.85 - 75 132.818 614 1 1 -57.1256 -12.9995 -174.45 - 75 36.1447 837 1 0 -56.9846 -12.4932 -175.85 - 75 91.9484 838 1 0 -56.9707 -12.45 -175.982 - 75 91.906 638 0 1 -52.4133 -3.50012 -204.45 - 75 33.7407 637 0 1 -52.45 -3.44094 -204.726 - 75 58.0503 884 0 0 -52.62 -3.08489 -205.85 - 75 83.0828 885 0 0 -52.6376 -3.05 -205.972 - 75 136.427 645 7 1 -50.9916 -32.3548 5.55 - 75 168.957 738 7 0 -50.9763 -32.3261 4.15 - 75 108.722 646 6 1 -50.813 -31.8383 -24.45 - 75 100.704 741 6 0 -50.8099 -31.809 -25.85 - 75 143.779 646 5 1 -50.7632 -31.2249 -54.45 - 75 131.453 744 5 0 -50.7655 -31.1763 -55.85 - 75 128.259 645 4 1 -50.8625 -30.1203 -84.45 - 75 136.62 749 4 0 -50.8782 -30.0659 -85.85 - 75 112.938 754 3 0 -51.1475 -29.191 -115.85 - 75 140.746 643 2 1 -51.2742 -29.271 -144.45 - 75 121.512 753 2 0 -51.3041 -29.2642 -145.85 - 75 174.928 640 1 1 -51.9202 -29.0964 -174.45 - 75 170.369 754 1 0 -51.9583 -29.1275 -175.85 - 75 190.127 636 0 1 -52.7855 -29.8133 -204.45 - 75 129.255 751 0 0 -52.8122 -29.8298 -205.85 -Number of digits in this event = 69 -Using G4ParticleGun ... -5.0231 LIN -e- -Event: 76 -Number of tracker hits in this event = 29 - 76 102.089 1341 9 1 88.4285 -92.1231 65.55 - 76 111.652 440 9 0 88.4286 -92.1235 64.15 - 76 119.284 1341 8 1 88.4306 -92.126 35.55 - 76 127.141 440 8 0 88.4306 -92.1265 34.15 - 76 110.455 1341 7 1 88.4258 -92.1432 5.55 - 76 111.083 440 7 0 88.4255 -92.1465 4.15 - 76 161.508 1341 6 1 88.4229 -92.2114 -24.45 - 76 118.268 439 6 0 88.4224 -92.2152 -25.85 - 76 111.175 1341 5 1 88.4128 -92.2921 -54.45 - 76 113.605 439 5 0 88.4127 -92.2941 -55.85 - 76 114.906 1341 4 1 88.3974 -92.3082 -84.45 - 76 133.321 439 4 0 88.4 -92.3089 -85.85 - 76 117.628 1341 3 1 88.4436 -92.3298 -114.45 - 76 114.923 439 3 0 88.4492 -92.3317 -115.85 - 76 166.21 1342 2 1 88.571 -92.3832 -144.45 - 76 104.761 438 2 0 88.58 -92.3921 -145.85 - 76 103.828 1343 1 1 88.7759 -92.574 -174.45 - 76 125.279 437 1 0 88.7889 -92.5801 -175.85 - 76 257.469 1345 0 1 89.072 -92.7258 -204.45 - 76 158.339 437 0 0 89.0866 -92.7383 -205.85 - 76 308.594 438 0 0 89.3074 -92.4065 -205.85 - 76 32.3083 439 0 0 89.344 -92.35 -206.102 - 76 248.042 1341 1 1 88.4202 -92.3951 -174.45 - 76 276.08 438 1 0 88.4212 -92.394 -175.85 - 76 96.0083 1342 0 1 88.4521 -92.3581 -204.45 - 76 134.528 1341 0 1 88.45 -92.3578 -204.806 - 76 164.145 1302 5 0 149.766 80.5112 -56.25 - 76 142.191 1303 5 0 149.887 80.65 -56.0764 - 76 125.354 495 0 0 152.675 -81.05 -206.054 -Number of digits in this event = 17 -Using G4ParticleGun ... -4.69627 LIN -e- -Event: 77 -Number of tracker hits in this event = 67 - 77 125.502 1599 8 1 140.013 -12.2517 35.55 - 77 190.105 838 8 0 140.016 -12.2522 34.15 - 77 113.941 1599 7 1 140.108 -12.2954 5.55 - 77 205.751 838 7 0 140.113 -12.2996 4.15 - 77 138.602 1600 6 1 140.216 -12.3752 -24.45 - 77 119.343 838 6 0 140.224 -12.3803 -25.85 - 77 185.899 1601 5 1 140.394 -12.4891 -54.45 - 77 123.614 837 5 0 140.422 -12.4778 -55.85 - 77 221.746 1602 4 1 140.745 -12.7755 -84.45 - 77 178.429 836 4 0 140.706 -12.8061 -85.85 - 77 99.1335 1599 3 1 139.989 -13.1025 -114.45 - 77 407.758 837 3 0 139.948 -12.5766 -115.85 - 77 23.2151 838 3 0 139.94 -12.45 -116.185 - 77 282.124 1594 2 1 139.126 -1.78924 -144.45 - 77 123.903 894 2 0 139.046 -1.23457 -145.85 - 77 121.709 1587 1 1 137.673 10.4812 -174.45 - 77 126.92 955 1 0 137.55 11.0572 -175.85 - 77 106.552 1573 0 1 134.942 22.8839 -204.45 - 77 187.224 1017 0 0 134.772 23.5025 -205.85 - 77 84.8111 1018 0 0 134.732 23.65 -206.181 - 77 155.508 1570 0 1 134.317 22.7626 -204.85 - 77 304.576 1593 2 1 138.95 -1.7003 -144.56 - 77 321.619 1602 2 1 140.686 -12.7038 -144.45 - 77 133.759 836 2 0 140.69 -12.7091 -145.85 - 77 127.989 1603 1 1 140.787 -12.8307 -174.45 - 77 129.842 836 1 0 140.793 -12.8396 -175.85 - 77 120.123 1603 0 1 140.941 -13.0451 -204.45 - 77 140.297 834 0 0 140.95 -13.0568 -205.85 - 77 403.206 837 2 0 140.643 -12.648 -145.85 - 77 134.714 1599 1 1 140.031 -10.7339 -174.45 - 77 156.831 846 1 0 140.088 -10.706 -175.851 - 77 99.3324 1606 0 1 141.532 -9.86407 -204.45 - 77 119.252 851 0 0 141.504 -9.83843 -205.85 - 77 97.572 732 7 0 115.88 -33.5016 3.75 - 77 91.8761 731 7 0 115.984 -33.65 3.99715 - 77 4.98354 730 7 0 116.172 -33.8502 4.14302 - 77 82.5496 1497 7 1 119.608 -35.413 5.15 - 77 208.361 1498 7 1 119.75 -35.5446 5.27107 - 77 137.341 1499 7 1 119.95 -35.4635 5.51089 - 77 247.842 1599 5 1 140.026 -12.2757 -54.45 - 77 345.152 838 5 0 140.009 -12.3158 -55.85 - 77 83.0924 1597 4 1 139.722 -12.9507 -84.4508 - 77 38.945 1598 4 1 139.75 -12.9798 -84.7092 - 77 103.776 834 4 0 139.845 -13.1335 -85.85 - 77 133.071 1611 3 1 142.364 -17.013 -114.45 - 77 54.4346 812 3 0 142.648 -17.5897 -115.85 - 77 122.265 811 3 0 142.678 -17.65 -115.988 - 77 79.1132 1644 2 1 149.024 -30.6148 -144.45 - 77 57.271 1645 2 1 149.15 -30.7413 -144.658 - 77 21.3839 743 2 0 149.841 -31.4261 -145.85 - 77 137.16 742 2 0 149.865 -31.45 -145.891 - 77 12.5523 741 2 0 150.059 -31.65 -146.222 - 77 139.075 1741 1 1 168.418 -49.4231 -174.45 - 77 136.308 653 1 0 168.48 -49.2772 -175.85 - 77 126.572 1748 0 1 169.765 -48.9062 -204.45 - 77 98.4226 655 0 0 169.897 -48.8734 -205.85 - 77 35.6648 1614 4 1 143.135 -13.3426 -84.45 - 77 85.796 1615 4 1 143.15 -13.3413 -84.5392 - 77 125.661 833 4 0 143.371 -13.308 -85.85 - 77 122.085 1640 3 1 148.165 -12.5929 -114.45 - 77 124.81 1649 2 1 150.008 -12.7956 -144.45 - 77 151.373 1648 1 1 149.783 -9.39307 -174.451 - 77 171.714 853 1 0 149.733 -9.32172 -175.85 - 77 121.869 1640 0 1 148.321 -7.41021 -204.45 - 77 138.633 863 0 0 148.173 -7.37418 -205.85 - 77 222.568 852 1 0 149.699 -9.45 -176.112 - 77 145.821 838 2 0 150.312 -12.45 -146.029 -Number of digits in this event = 47 -Using G4ParticleGun ... -7.30507 LIN -e- -Event: 78 -Number of tracker hits in this event = 62 - 78 130.205 1553 9 1 130.92 13.7199 65.55 - 78 115.569 968 9 0 130.92 13.7202 64.15 - 78 121.659 1553 8 1 130.92 13.7245 35.55 - 78 253.82 968 8 0 130.921 13.7249 34.15 - 78 93.0606 1553 7 1 130.944 13.7306 5.55 - 78 120.074 968 7 0 130.945 13.7311 4.15 - 78 104.931 1554 6 1 130.961 13.7454 -24.45 - 78 314.231 968 6 0 130.961 13.7461 -25.85 - 78 141.662 1554 5 1 130.966 13.7606 -54.45 - 78 122.073 968 5 0 130.969 13.7641 -55.85 - 78 378.232 1554 4 1 131.019 13.8363 -84.45 - 78 280.239 968 4 0 131.021 13.8413 -85.85 - 78 133.734 1554 3 1 131.056 13.9411 -114.45 - 78 191.445 969 3 0 131.057 13.9486 -115.85 - 78 118.459 1554 2 1 131.063 14.109 -144.45 - 78 124.681 970 2 0 131.064 14.1168 -145.85 - 78 111.26 1554 1 1 131.08 14.2656 -174.45 - 78 106.455 971 1 0 131.08 14.276 -175.85 - 78 131.754 1554 0 1 131.064 14.4961 -204.45 - 78 122.337 972 0 0 131.058 14.5098 -205.85 - 78 8.3898 187 4 0 23.9654 -142.653 -86.25 - 78 104.826 212 4 0 15.7173 -137.684 -86.25 - 78 96.8518 1363 0 1 92.7772 -173.667 -204.45 - 78 105.697 1364 0 1 92.95 -173.793 -204.705 - 78 51.7115 30 0 0 93.6419 -173.985 -205.85 - 78 137.135 31 0 0 93.6233 -173.95 -206.006 - 78 93.863 813 5 0 150.821 -17.25 -56.0403 - 78 386.791 1660 5 1 152.215 -17.6256 -54.85 - 78 137.934 1661 5 1 152.35 -17.6136 -54.5368 - 78 208.26 1093 6 1 38.85 61.423 -24.7612 - 78 83.7499 1094 6 1 38.85 61.5159 -24.5699 - 78 110.417 969 4 0 131.123 13.9602 -85.8502 - 78 8.10915 1563 3 1 132.942 17.1525 -114.45 - 78 102.495 1564 3 1 132.95 17.1438 -114.471 - 78 43.5582 983 3 0 133.355 16.714 -115.85 - 78 80.6331 982 3 0 133.395 16.65 -116.015 - 78 201.388 1598 2 1 139.937 2.20458 -144.45 - 78 13.2962 1597 2 1 139.75 1.94025 -144.812 - 78 60.4916 906 2 0 139.212 1.27793 -145.85 - 78 296.617 905 2 0 139.19 1.24991 -145.893 - 78 96.8955 1528 1 1 125.769 -9.75528 -174.45 - 78 7.42028 1527 1 1 125.75 -9.79687 -174.825 - 78 85.8893 850 1 0 125.622 -10.0024 -175.85 - 78 35.6469 849 1 0 125.592 -10.05 -176.137 - 78 83.8633 959 1 0 90.4849 11.8809 -176.25 - 78 98.8497 960 1 0 90.3089 12.05 -176.112 - 78 19.3929 961 1 0 89.9192 12.25 -175.901 - 78 94.7048 1342 1 1 88.638 13.0645 -174.85 - 78 132.365 1341 1 1 88.4492 13.2262 -174.684 - 78 54.6985 1340 1 1 88.2497 13.2715 -174.536 - 78 256.905 904 2 0 64.1085 1.05 -146.081 - 78 125.106 1212 2 1 62.5857 0.112679 -144.85 - 78 127.868 978 1 0 22.07 15.7042 -176.25 - 78 101.455 1549 3 1 130.04 12.9128 -114.45 - 78 7.65834 1548 3 1 129.95 12.8215 -114.821 - 78 50.0398 962 3 0 129.591 12.522 -115.85 - 78 77.3182 961 3 0 129.512 12.45 -116.047 - 78 8.11681 1545 2 1 129.325 2.7742 -144.45 - 78 102.795 1546 2 1 129.35 2.75095 -144.474 - 78 74.603 1547 2 1 129.55 2.5847 -144.676 - 78 79.5757 908 2 0 130.737 1.76961 -145.85 - 78 83.1363 907 2 0 130.905 1.64955 -146.035 -Number of digits in this event = 27 -Using G4ParticleGun ... -8.14358 LIN -e- -Event: 79 -Number of tracker hits in this event = 296 - 79 101.22 1140 11 1 48.1327 34.2872 125.55 - 79 311.007 1071 11 0 48.1324 34.2876 124.15 - 79 163.79 1140 10 1 48.1277 34.2958 95.55 - 79 113.983 1071 10 0 48.1279 34.2967 94.15 - 79 776.616 1140 9 1 48.1348 34.3134 65.55 - 79 557.652 1071 9 0 48.1369 34.3139 64.15 - 79 502.873 1140 8 1 48.178 34.3211 35.55 - 79 131.4 1071 8 0 48.1776 34.32 34.15 - 79 462.451 1140 7 1 48.1677 34.2953 5.55 - 79 312.633 1071 7 0 48.1684 34.295 4.15 - 79 212.748 1140 6 1 48.1854 34.2864 -24.45 - 79 284.955 1071 6 0 48.1868 34.2861 -25.85 - 79 141.597 1140 5 1 48.2101 34.2792 -54.45 - 79 103.292 1071 5 0 48.2107 34.2791 -55.85 - 79 152.565 1140 4 1 48.2205 34.2799 -84.45 - 79 118.575 1071 4 0 48.2177 34.2766 -85.85 - 79 91.426 1140 3 1 48.1595 34.2078 -114.45 - 79 125.179 1070 3 0 48.1581 34.2054 -115.85 - 79 116.362 1140 2 1 48.1268 34.157 -144.45 - 79 151.262 1070 2 0 48.1252 34.154 -145.85 - 79 341.934 1140 1 1 48.0934 34.0909 -174.45 - 79 254.17 1070 1 0 48.0916 34.0901 -175.85 - 79 274.105 1140 0 1 48.0542 34.0731 -204.45 - 79 113.355 1070 0 0 48.0521 34.0719 -205.85 - 79 75.7427 776 11 0 -4.63257 -24.6792 123.75 - 79 396.009 1184 2 1 56.8859 113.389 -144.85 - 79 7.04761 1545 4 0 37.1309 129.15 -86.1985 - 79 4.84767 914 4 1 3.05 84.6749 -84.641 - 79 280.739 1089 4 1 37.8686 130.817 -84.85 - 79 258.617 1141 1 1 48.2795 34.2258 -174.45 - 79 262.804 1141 0 1 48.2858 33.9026 -204.45 - 79 193.454 1069 0 0 48.2538 33.8726 -205.85 - 79 233.138 1105 0 0 109.573 41.2442 -206.25 - 79 37.5683 1457 0 1 111.652 40.6445 -204.85 - 79 165.973 1458 0 1 111.75 40.6057 -204.784 - 79 100.294 1459 0 1 111.95 40.5153 -204.661 - 79 50.3942 1460 0 1 112.15 40.4227 -204.557 - 79 61.5796 1461 0 1 112.411 40.1926 -204.45 - 79 93.4501 1462 0 1 112.55 40.0385 -204.488 - 79 70.0626 1463 0 1 112.75 39.8133 -204.547 - 79 132.064 1464 0 1 112.95 39.6062 -204.63 - 79 104.059 1465 0 1 113.15 39.4342 -204.739 - 79 205.532 1084 0 0 114.88 37.0118 -205.85 - 79 242.768 1083 0 0 114.974 36.85 -205.93 - 79 46.5438 1082 0 0 115.026 36.65 -206.045 - 79 39.9772 1081 0 0 115.068 36.4499 -206.161 - 79 77.6638 1139 1 1 48.05 34.1863 -174.692 - 79 144.37 1071 1 0 48.336 34.2641 -175.85 - 79 130.303 1146 0 1 49.287 34.893 -204.45 - 79 107.642 1074 0 0 49.2725 34.9415 -205.85 - 79 88.7683 1119 1 0 29.615 43.8955 -176.25 - 79 79.1976 1120 1 0 29.5976 44.05 -176.138 - 79 83.1776 1121 1 0 29.721 44.2501 -176.022 - 79 7.02445 1122 1 0 29.6342 44.45 -175.862 - 79 83.2794 1043 1 1 28.8116 44.1202 -174.85 - 79 199.891 1042 1 1 28.65 44.0868 -174.645 - 79 223.672 1041 1 1 28.45 44.3902 -174.683 - 79 77.1496 1072 7 0 47.7535 34.45 3.75027 - 79 3.50412 1109 6 1 41.8524 36.1476 -24.45 - 79 119.932 1108 6 1 41.85 36.1493 -24.4624 - 79 116.608 1081 6 0 41.5549 36.342 -25.85 - 79 154.564 1074 5 1 34.8998 40.2048 -54.45 - 79 78.3928 1073 5 1 34.8499 40.2465 -54.6994 - 79 139.338 1102 5 0 34.6554 40.4572 -55.85 - 79 111.871 1045 4 1 29.1641 46.5761 -84.45 - 79 9.8699 1044 4 1 29.05 46.6625 -84.8155 - 79 120.961 1134 4 0 28.7362 46.9051 -85.85 - 79 117.772 1003 3 1 20.6641 53.368 -114.45 - 79 175.196 1002 3 1 20.6499 53.3696 -114.506 - 79 109.171 1166 3 0 20.1797 53.3574 -115.85 - 79 29.1657 937 2 1 7.48534 53.4949 -144.45 - 79 103.74 936 2 1 7.45 53.4908 -144.528 - 79 133.42 1166 2 0 6.86104 53.4304 -145.85 - 79 112.485 869 1 1 -6.13141 52.1987 -174.45 - 79 83.5474 868 1 1 -6.25005 52.1678 -174.621 - 79 254.866 1159 1 0 -7.15122 51.9455 -175.85 - 79 47.84 766 0 1 -26.7685 45.7928 -204.45 - 79 93.1842 765 0 1 -26.85 45.7897 -204.6 - 79 139.499 1128 0 0 -27.5625 45.7719 -205.85 - 79 188.34 982 1 0 -28.9385 16.5808 -176.25 - 79 162.927 983 1 0 -28.6726 16.65 -176.062 - 79 97.6078 984 1 0 -28.5394 16.85 -176.183 - 79 282.701 1159 3 0 21.463 51.9258 -115.85 - 79 144.511 1100 6 1 40.2043 37.4291 -24.45 - 79 47.1542 1099 6 1 40.05 37.4003 -24.7431 - 79 145.99 1086 6 0 39.4545 37.2624 -25.85 - 79 123.71 1009 5 1 21.9685 39.9257 -54.45 - 79 129.642 1008 5 1 21.85 40.2748 -54.6527 - 79 42.9381 1112 5 0 21.0901 42.5142 -55.8501 - 79 95.5455 1113 5 0 21.0385 42.65 -55.9236 - 79 71.8523 1114 5 0 20.9467 42.85 -56.0388 - 79 46.0295 1115 5 0 20.8546 43.05 -56.174 - 79 134.018 929 4 1 5.89348 97.2448 -84.4505 - 79 42.0564 1388 4 0 5.95306 97.8771 -85.85 - 79 78.8599 1389 4 0 5.95672 97.95 -86.012 - 79 52.4965 936 3 1 7.36124 114.411 -114.451 - 79 85.0803 937 3 1 7.45 114.438 -114.573 - 79 3.36958 938 3 1 7.65024 114.498 -114.838 - 79 251.763 1473 3 0 8.35296 114.753 -115.85 - 79 95.1806 1080 2 1 36.2418 124.314 -144.45 - 79 136.985 1520 2 0 35.882 124.32 -145.85 - 79 8.13881 1521 2 0 35.9108 124.35 -146.225 - 79 48.3408 1696 2 0 7.42273 159.433 -146.25 - 79 64.6641 1697 2 0 7.32652 159.55 -146.148 - 79 62.1231 1698 2 0 7.27095 159.75 -146.075 - 79 105.844 1699 2 0 7.24284 159.95 -146.025 - 79 121.295 1700 2 0 7.217 160.15 -145.974 - 79 29.3727 1701 2 0 7.08383 160.35 -145.887 - 79 1.27678 927 2 1 5.45436 162.282 -144.85 - 79 61.1677 926 2 1 5.45 162.287 -144.847 - 79 68.3324 925 2 1 5.25 162.432 -144.766 - 79 99.2958 924 2 1 5.04975 162.486 -144.681 - 79 55.8328 923 2 1 4.85 162.539 -144.651 - 79 57.945 922 2 1 4.65 162.602 -144.717 - 79 70.5203 921 2 1 4.45 162.683 -144.744 - 79 117.516 920 2 1 4.25 162.861 -144.67 - 79 420.319 919 2 1 4.04981 162.87 -144.5 - 79 240.846 918 2 1 3.85 162.917 -144.632 - 79 49.7509 1725 2 0 4.1858 165.215 -145.85 - 79 115.861 1726 2 0 4.24832 165.35 -145.872 - 79 259.318 1727 2 0 4.2604 165.55 -145.877 - 79 0.501557 738 7 0 77.8223 -32.4477 3.75 - 79 122.859 737 7 0 77.8236 -32.45 3.75093 - 79 81.4356 736 7 0 77.9374 -32.65 3.86216 - 79 83.362 735 7 0 78.0511 -32.85 3.97632 - 79 57.8743 734 7 0 78.224 -33.05 4.0559 - 79 166.763 733 7 0 78.3922 -33.2502 4.01208 - 79 408.319 732 7 0 78.5984 -33.45 3.95661 - 79 51.8707 1084 7 0 169.707 36.923 3.75 - 79 96.4463 1085 7 0 169.78 37.05 3.83705 - 79 73.9913 1086 7 0 169.891 37.25 3.9322 - 79 95.1805 1087 7 0 169.813 37.451 4.02276 - 79 72.3888 1088 7 0 169.761 37.6501 4.09497 - 79 30.5641 1089 7 0 169.732 37.85 4.13626 - 79 108.457 1753 7 1 170.828 39.343 5.15024 - 79 71.9254 1754 7 1 170.95 39.5614 5.28988 - 79 115.126 1755 7 1 171.15 39.6069 5.38921 - 79 133.963 1070 9 0 48.0554 34.25 63.8398 - 79 115.548 1135 8 1 47.1712 33.2488 35.55 - 79 97.2956 1065 8 0 47.1362 33.2107 34.1499 - 79 101.529 1130 7 1 46.2407 32.371 5.54911 - 79 172.1 1061 7 0 46.1021 32.3621 4.15 - 79 174.032 1115 6 1 43.1718 32.0551 -24.4504 - 79 141.297 1060 6 0 43.0466 32.1223 -25.85 - 79 112.924 1100 5 1 40.1652 33.3598 -54.45 - 79 126.998 1066 5 0 40.1025 33.3239 -55.85 - 79 134.957 1094 4 1 38.942 32.4404 -84.45 - 79 119.796 1061 4 0 38.8883 32.4023 -85.85 - 79 113.454 1089 3 1 37.9253 31.4496 -114.45 - 79 118.934 1056 3 0 37.9476 31.3334 -115.85 - 79 116.538 1092 2 1 38.479 28.9652 -144.45 - 79 170.004 1043 2 0 38.4386 28.7527 -145.85 - 79 128.37 1090 1 1 38.1777 24.127 -174.45 - 79 101.503 1019 1 0 38.1837 23.8915 -175.85 - 79 43.7623 1018 1 0 38.1857 23.85 -176.103 - 79 102.048 1089 0 1 37.969 19.0952 -204.45 - 79 153.301 992 0 0 37.9207 18.6462 -205.85 - 79 42.9266 1062 0 1 32.5473 32.9267 -204.45 - 79 139.358 1063 0 1 32.6503 32.9406 -204.571 - 79 7.39902 1064 0 1 32.85 32.9375 -204.82 - 79 179.119 1064 0 0 33.7969 32.8675 -205.85 - 79 46.1817 1072 9 0 48.1091 34.6067 64.1499 - 79 62.9879 1073 9 0 48.1057 34.65 63.9588 - 79 141.608 1138 8 1 47.7189 40.9945 35.5496 - 79 115.33 1106 8 0 47.7463 41.3725 34.15 - 79 28.8894 1107 8 0 47.7524 41.45 33.8758 - 79 109.878 1142 7 1 48.4537 48.9044 5.54945 - 79 137.018 1146 7 0 48.6849 49.3025 4.15 - 79 74.7536 1171 6 1 54.2603 57.279 -24.45 - 79 25.4096 1170 6 1 54.25 57.4073 -24.7603 - 79 162.345 1189 6 0 54.1975 57.8764 -25.85 - 79 30.1991 1167 5 1 53.4585 70.7598 -54.4501 - 79 148.698 1166 5 1 53.45 70.7793 -54.5025 - 79 82.8942 1255 5 0 53.32 71.1941 -55.85 - 79 54.206 1256 5 0 53.3008 71.25 -56.0469 - 79 137.305 1150 4 1 50.0703 80.5701 -84.45 - 79 29.7772 1151 4 1 50.25 80.6956 -84.7718 - 79 57.6554 1305 4 0 50.9424 81.1979 -85.8507 - 79 167.832 1306 4 0 51.0135 81.25 -85.9642 - 79 97.525 1257 3 1 71.4894 93.2662 -114.45 - 79 167.865 1258 3 1 71.65 93.5781 -114.628 - 79 22.6564 1259 3 1 71.8502 93.9 -114.811 - 79 42.3193 1377 3 0 72.9782 95.6181 -115.85 - 79 64.8173 1378 3 0 73.0585 95.75 -115.922 - 79 55.994 1379 3 0 73.1832 95.95 -116.015 - 79 79.8216 1380 3 0 73.3038 96.15 -116.118 - 79 19.1718 1381 3 0 73.4226 96.35 -116.225 - 79 88.7048 1794 3 0 125.572 178.97 -116.25 - 79 68.5633 1795 3 0 125.691 179.15 -116.048 - 79 24.1451 1530 3 1 126.193 180.091 -114.85 - 79 72.3956 1185 2 1 57.1022 42.4591 -144.45 - 79 97.2805 1070 8 0 48.1351 34.168 34.15 - 79 103.565 1068 7 0 48.062 33.8204 4.15 - 79 116.583 1066 6 0 48.1276 33.3127 -25.85 - 79 100.526 1141 5 1 48.3005 32.8896 -54.45 - 79 110.585 1064 5 0 48.3109 32.8713 -55.85 - 79 112.439 1142 4 1 48.5503 32.4852 -84.45 - 79 109.927 1062 4 0 48.5665 32.4643 -85.85 - 79 214.875 1143 3 1 48.8245 32.0605 -114.45 - 79 115.882 1059 3 0 48.8396 32.0347 -115.85 - 79 170.174 1145 2 1 49.1313 31.5071 -144.45 - 79 115.234 1057 2 0 49.1377 31.4838 -145.85 - 79 262.428 1145 1 1 49.2347 31.0562 -174.45 - 79 106.181 1054 1 0 49.1945 31.0329 -175.85 - 79 155.33 1052 0 0 48.2644 30.572 -205.85 - 79 1.40384 783 2 1 -23.45 94.2449 -144.711 - 79 259.69 1139 5 1 47.8832 32.8414 -54.4501 - 79 108.064 1063 5 0 47.7843 32.8039 -55.85 - 79 27.845 1125 4 1 45.0548 31.9527 -84.45 - 79 147.597 1124 4 1 45.05 31.9473 -84.5269 - 79 41.8478 1059 4 0 44.9768 31.8623 -85.85 - 79 52.8551 1058 4 0 44.9658 31.85 -86.0235 - 79 114.013 1113 3 1 42.7772 29.7172 -114.45 - 79 190.08 1048 3 0 42.6657 29.8109 -115.851 - 79 2.93782 1103 2 1 40.6547 31.7053 -144.45 - 79 144.035 1102 2 1 40.65 31.7083 -144.468 - 79 136.034 1059 2 0 40.2717 31.9178 -145.85 - 79 5.36231 1065 1 1 33.055 36.2551 -174.45 - 79 121.32 1064 1 1 33.0498 36.2587 -174.469 - 79 135.732 1082 1 0 32.7056 36.5208 -175.85 - 79 156.422 1027 0 1 25.5949 42.4022 -204.45 - 79 150.085 1112 0 0 25.2771 42.5499 -205.85 - 79 105.55 1061 5 0 48.0215 32.3503 -55.85 - 79 34.669 1060 5 0 48.0625 32.25 -56.1269 - 79 188.099 1163 4 1 52.7404 24.0014 -84.45 - 79 1.18722 1012 4 0 52.9461 22.454 -85.8501 - 79 86.0541 1011 4 0 52.9468 22.45 -85.8535 - 79 64.9073 1010 4 0 52.9874 22.25 -86.0063 - 79 56.5619 1009 4 0 53.0715 22.05 -86.1346 - 79 230.551 820 4 0 92.3865 -16.0095 -86.2498 - 79 67.6031 819 4 0 92.498 -16.05 -86.0368 - 79 261.513 1364 4 1 93.0489 -16.3076 -84.85 - 79 115.814 1365 4 1 93.15 -16.2795 -84.5391 - 79 174.931 1366 4 1 93.3501 -16.0499 -84.5175 - 79 34.4401 827 4 0 93.7839 -14.5668 -85.85 - 79 74.6957 828 4 0 93.7804 -14.4499 -85.9449 - 79 72.5206 829 4 0 93.7849 -14.25 -86.1312 - 79 149.993 943 4 0 75.3124 8.67823 -86.25 - 79 14.8199 1268 4 1 73.6976 8.91422 -84.8496 - 79 113.389 1267 4 1 73.65 8.91936 -84.8093 - 79 92.9506 1266 4 1 73.45 8.91833 -84.6905 - 79 83.8431 1265 4 1 73.25 8.88817 -84.6136 - 79 147.24 1264 4 1 73.0499 8.85883 -84.5961 - 79 57.7463 1263 4 1 72.85 8.85189 -84.5765 - 79 60.159 1262 4 1 72.65 8.87266 -84.5094 - 79 120.632 1130 8 1 46.2083 32.1964 35.55 - 79 203.52 1058 8 0 45.9075 31.7724 34.15 - 79 8.62546 1057 8 0 45.8216 31.65 33.7633 - 79 132.804 1092 7 1 38.5988 23.2416 5.55 - 79 54.4458 1015 7 0 38.3356 23.0692 4.14987 - 79 61.3603 1014 7 0 38.3085 23.05 3.9941 - 79 198.559 1071 6 1 34.445 19.9917 -24.4505 - 79 164.126 999 6 0 34.2111 19.8911 -25.85 - 79 75.0734 1041 5 1 28.3022 17.9055 -54.45 - 79 91.2852 1040 5 1 28.25 17.8625 -54.6532 - 79 168.292 987 5 0 27.929 17.6206 -55.8501 - 79 147.5 1010 4 1 22.2436 11.301 -84.45 - 79 10.6408 1009 4 1 22.05 11.0558 -84.8115 - 79 100.637 951 4 0 21.4963 10.3295 -85.8501 - 79 203.025 950 4 0 21.4358 10.2491 -85.966 - 79 9.75036 949 4 0 21.2972 10.0492 -86.2326 - 79 83.6051 916 3 1 3.38058 -10.9956 -114.45 - 79 58.7241 915 3 1 3.25 -11.0177 -114.659 - 79 150.363 844 3 0 2.52016 -11.1372 -115.85 - 79 129.151 838 2 1 -12.3484 -13.78 -144.45 - 79 68.643 837 2 1 -12.45 -13.7851 -144.65 - 79 168.303 831 2 0 -13.0394 -13.7981 -145.85 - 79 29.5125 762 1 1 -27.5821 -12.8922 -174.45 - 79 317.898 761 1 1 -27.6501 -12.8468 -174.529 - 79 77.6062 760 1 1 -27.85 -12.7169 -174.768 - 79 29.212 839 1 0 -28.82 -12.0822 -175.85 - 79 189.466 840 1 0 -28.8691 -12.0499 -175.905 - 79 4.02834 841 1 0 -29.1649 -11.8499 -176.236 - 79 106.577 620 0 1 -55.9272 4.48916 -204.45 - 79 100.198 921 0 0 -56.1644 4.32801 -205.85 - 79 165.244 1248 2 0 -86.0159 69.7457 -146.25 - 79 106.35 613 4 0 36.6912 -57.2817 -86.25 - 79 106.073 612 4 0 36.7632 -57.4501 -86.1339 - 79 28.3592 611 4 0 36.8749 -57.65 -85.9242 - 79 18.5522 1084 4 1 37.0424 -58.8771 -84.85 - 79 348.093 1085 4 1 37.05 -58.9271 -84.8049 - 79 120.115 1086 4 1 37.2503 -59.3508 -84.4684 - 79 109.617 1087 4 1 37.45 -59.1555 -84.6358 - 79 9.04286 1088 4 1 37.65 -58.9443 -84.8284 - 79 205.403 605 4 0 39.0412 -58.9765 -85.85 - 79 191.957 1125 3 1 45.0643 -52.5464 -114.45 - 79 60.3363 1126 3 1 45.25 -52.3559 -114.722 - 79 130.759 636 3 0 45.3886 -52.6525 -115.85 - 79 38.5093 635 3 0 45.4281 -52.8503 -116.137 - 79 48.9542 387 3 0 89.9075 -102.649 -116.25 - 79 62.0647 386 3 0 90.0033 -102.75 -116.112 - 79 135.113 385 3 0 90.2698 -102.95 -116.028 - 79 128.333 1358 3 1 91.7914 -107.44 -114.85 - 79 102.999 1359 3 1 91.95 -107.584 -114.733 - 79 128.768 1360 3 1 92.15 -107.565 -114.749 - 79 122.36 1030 4 0 -30.429 26.1787 -86.2499 -Number of digits in this event = 118 -Using G4ParticleGun ... -2.79841 LIN -e- -Event: 80 -Number of tracker hits in this event = 126 - 80 128.98 1274 11 1 74.9657 -5.92584 125.55 - 80 138.198 870 11 0 74.9659 -5.92524 124.15 - 80 141.892 1274 10 1 74.9618 -5.92387 95.55 - 80 145.989 870 10 0 74.9654 -5.92293 94.15 - 80 102.639 1274 9 1 75.0283 -5.91881 65.55 - 80 394.831 870 9 0 75.0362 -5.91647 64.15 - 80 98.6438 1275 8 1 75.2103 -5.86247 35.55 - 80 131.169 870 8 0 75.2185 -5.85916 34.15 - 80 125.775 1276 7 1 75.3915 -5.79534 5.55 - 80 111.681 871 7 0 75.4059 -5.79014 4.15 - 80 140.533 1278 6 1 75.7032 -5.68149 -24.45 - 80 116.728 871 6 0 75.7129 -5.67165 -25.85 - 80 108.016 1279 5 1 75.9301 -5.46226 -54.45 - 80 151.933 873 5 0 75.9409 -5.44965 -55.85 - 80 360.467 1281 4 1 76.3414 -5.14186 -84.45 - 80 245.737 874 4 0 76.3675 -5.12414 -85.85 - 80 131.2 1284 3 1 76.9608 -4.77435 -114.45 - 80 112.431 876 3 0 76.9889 -4.76289 -115.85 - 80 164.729 1287 2 1 77.5634 -4.52858 -144.45 - 80 131.059 877 2 0 77.5931 -4.52275 -145.85 - 80 85.2067 1290 1 1 78.1892 -4.43081 -174.45 - 80 101.382 878 1 0 78.2225 -4.43094 -175.85 - 80 277.768 1294 0 1 78.9394 -4.41956 -204.45 - 80 184.33 878 0 0 78.9863 -4.41794 -205.85 - 80 318.303 1280 4 1 76.1228 -5.25298 -84.45 - 80 223.566 1281 3 1 76.3531 -4.56903 -114.45 - 80 179.151 877 3 0 76.3684 -4.54646 -115.85 - 80 542.115 1282 2 1 76.6395 -4.08924 -144.45 - 80 181.437 879 2 0 76.6594 -4.06574 -145.85 - 80 135.189 1284 1 1 77.0275 -3.58493 -174.45 - 80 115.048 882 1 0 77.044 -3.57438 -175.85 - 80 234.598 1286 0 1 77.3537 -3.35793 -204.45 - 80 121.482 883 0 0 77.4248 -3.35797 -205.85 - 80 119.066 922 4 0 95.0624 4.60117 -86.2497 - 80 142.052 921 4 0 95.0978 4.45 -86.0984 - 80 131.698 878 2 0 76.1688 -4.31162 -145.85 - 80 10.5583 1242 1 1 68.4628 -6.65826 -174.45 - 80 95.0956 1241 1 1 68.45 -6.66045 -174.472 - 80 12.7961 1240 1 1 68.25 -6.6903 -174.803 - 80 28.9585 866 1 0 67.5686 -6.83884 -175.85 - 80 163.762 865 1 0 67.5212 -6.85 -175.924 - 80 115.894 1169 0 1 54.0171 -7.77934 -204.45 - 80 3.17724 1168 0 1 53.85 -7.6141 -204.837 - 80 90.6529 864 0 0 53.2695 -7.14647 -205.85 - 80 75.5797 865 0 0 53.154 -7.05 -206.048 - 80 86.0654 800 0 0 -177.704 -19.8586 -206.25 - 80 23.2964 881 2 0 76.2354 -3.68068 -145.85 - 80 84.9094 882 2 0 76.2086 -3.65 -145.956 - 80 224.575 1247 1 1 69.5789 4.52854 -174.45 - 80 188.136 925 1 0 69.3639 5.0757 -175.85 - 80 142.455 1223 0 1 64.7497 16.5141 -204.45 - 80 177.491 985 0 0 64.5124 17.0617 -205.85 - 80 46.3646 1248 1 1 69.65 4.71618 -174.692 - 80 81.3385 928 1 0 69.9217 5.78549 -175.85 - 80 233.567 929 1 0 69.9469 5.85088 -175.923 - 80 57.2587 930 1 0 70.0098 6.05046 -176.104 - 80 63.7798 931 1 0 70.0009 6.25 -176.131 - 80 36.3143 932 1 0 70.0655 6.45015 -176.184 - 80 274.206 1113 1 0 103.347 42.797 -176.25 - 80 70.1386 1114 1 0 103.597 42.85 -176.093 - 80 39.7837 1115 1 0 103.679 43.05 -176.168 - 80 35.4189 1211 1 0 129.092 62.3117 -176.25 - 80 65.7545 1210 1 0 129.179 62.25 -176.182 - 80 56.6652 1093 1 0 174.239 38.7743 -176.25 - 80 332.717 1092 1 0 174.286 38.6497 -176.143 - 80 235.485 873 4 0 76.1259 -5.2547 -85.85 - 80 257.677 873 3 0 76.2989 -5.33528 -115.85 - 80 170.637 1283 2 1 76.6591 -5.73606 -144.45 - 80 175.826 871 2 0 76.7119 -5.76674 -145.85 - 80 176.754 1288 1 1 77.7334 -6.46382 -174.45 - 80 224.943 867 1 0 77.7439 -6.51692 -175.85 - 80 153.504 1289 0 1 78.0081 -7.646 -204.45 - 80 140.616 862 0 0 78.0879 -7.61432 -205.85 - 80 51.7934 1284 2 1 76.85 -5.72917 -144.517 - 80 332.283 1285 2 1 77.05 -5.6628 -144.567 - 80 39.7322 1286 2 1 77.2503 -5.6201 -144.518 - 80 55.3651 1288 2 1 77.65 -5.51924 -144.494 - 80 96.0636 1289 2 1 77.85 -5.49741 -144.535 - 80 62.1903 1290 2 1 78.05 -5.48458 -144.608 - 80 81.4368 1291 2 1 78.25 -5.50172 -144.677 - 80 60.7746 1292 2 1 78.4502 -5.54669 -144.751 - 80 3.7558 1293 2 1 78.65 -5.62695 -144.843 - 80 33.0947 868 2 0 80.597 -6.3978 -145.85 - 80 163.547 867 2 0 80.7129 -6.45 -145.91 - 80 68.5648 1270 3 1 74.0824 -2.54663 -114.45 - 80 51.0532 1269 3 1 74.05 -2.54865 -114.678 - 80 130.418 887 3 0 73.8991 -2.55626 -115.85 - 80 123.674 1253 2 1 70.7014 -2.5831 -144.45 - 80 132.764 886 2 0 70.5437 -2.74075 -145.85 - 80 24.5093 1235 1 1 67.0631 -5.7499 -174.45 - 80 91.4991 1234 1 1 67.05 -5.76229 -174.518 - 80 123.889 869 1 0 66.7635 -6.07856 -175.85 - 80 59.9878 1200 0 1 60.0796 -12.4612 -204.45 - 80 74.6294 1199 0 1 60.0498 -12.4734 -204.575 - 80 136.072 837 0 0 59.6995 -12.5651 -205.85 - 80 102.721 872 4 0 76.2657 -5.4766 -85.85 - 80 109.861 1278 3 1 75.6729 -5.39628 -114.45 - 80 167.343 1275 2 1 75.2443 -5.58141 -144.45 - 80 101.865 872 2 0 75.2324 -5.5997 -145.85 - 80 242.06 1274 1 1 74.9268 -6.11635 -174.45 - 80 172.791 868 1 0 75.151 -6.25016 -175.85 - 80 170.667 1296 0 1 79.3776 -9.42951 -204.45 - 80 5.86012 1297 0 1 79.45 -9.45318 -204.823 - 80 216.849 852 0 0 79.6435 -9.52727 -205.85 - 80 5.30207 1350 9 0 32.5523 90.1854 63.75 - 80 85.8144 1062 9 1 32.5528 90.3191 65.15 - 80 19.8361 1063 9 1 32.65 90.177 65.3183 - 80 71.0557 1064 9 1 32.85 90.0376 65.4089 - 80 69.3802 1065 9 1 33.05 89.9018 65.4346 - 80 90.2844 1066 9 1 33.2508 89.8231 65.4107 - 80 43.7176 1067 9 1 33.4503 89.8422 65.4597 - 80 69.8598 871 9 0 74.9447 -5.84996 63.8954 - 80 136.115 1275 0 1 75.1454 -15.8736 -204.45 - 80 103.249 819 0 0 75.2856 -16.06 -205.85 - 80 32.3437 751 2 0 82.936 -29.7603 -146.25 - 80 84.7069 750 2 0 82.9648 -29.85 -146.145 - 80 28.145 749 2 0 83.0269 -30.05 -145.919 - 80 257.433 1315 2 1 83.1992 -31.035 -144.85 - 80 124.573 718 3 0 74.8812 -36.3052 -116.25 - 80 109.765 1272 3 1 74.5763 -36.5872 -114.85 - 80 57.9951 681 4 0 83.5959 -43.8005 -86.25 - 80 72.5306 680 4 0 83.6742 -43.85 -86.0813 - 80 38.4958 1322 4 1 84.5684 -43.8156 -84.85 - 80 79.9877 1323 4 1 84.6505 -43.8181 -84.7464 - 80 33.6169 1324 4 1 84.85 -43.8705 -84.5357 - 80 217.501 1316 2 1 83.25 -31.1662 -144.72 -Number of digits in this event = 60 -Using G4ParticleGun ... -1.75303 LIN -e- -Event: 81 -Number of tracker hits in this event = 29 - 81 116.196 715 11 1 -37.0137 46.1943 125.55 - 81 190.124 1130 11 0 -37.0111 46.1925 124.15 - 81 116.141 715 10 1 -36.9677 46.1549 95.55 - 81 192.389 1130 10 0 -36.9654 46.1513 94.15 - 81 238.28 715 9 1 -36.9163 46.0911 65.55 - 81 200.217 1130 9 0 -36.9141 46.0903 64.15 - 81 101.257 715 8 1 -36.8728 46.0623 35.55 - 81 106.146 1130 8 0 -36.8736 46.0594 34.15 - 81 136.855 715 7 1 -36.874 45.9966 5.55 - 81 116.455 1129 7 0 -36.8772 45.9887 4.15 - 81 109.892 715 6 1 -36.9377 45.8396 -24.45 - 81 103.558 1128 6 0 -36.9483 45.8349 -25.85 - 81 122.699 714 5 1 -37.169 45.7261 -54.45 - 81 121.698 1128 5 0 -37.1826 45.7187 -55.85 - 81 144.052 712 4 1 -37.4536 45.5639 -84.45 - 81 120.81 1127 4 0 -37.4614 45.558 -85.85 - 81 112.368 712 3 1 -37.6002 45.4593 -114.45 - 81 147.856 1127 3 0 -37.6012 45.4569 -115.85 - 81 185.662 712 2 1 -37.6363 45.4067 -144.45 - 81 131.401 1126 2 0 -37.6511 45.4079 -145.85 - 81 129.914 710 1 1 -37.9631 45.433 -174.45 - 81 221.27 1126 1 0 -37.9786 45.4338 -175.85 - 81 110.129 708 0 1 -38.3116 45.4741 -204.45 - 81 117.499 1127 0 0 -38.3339 45.4884 -205.85 - 81 97.9524 713 2 1 -37.45 45.3838 -144.59 - 81 51.5869 714 2 1 -37.2498 45.3619 -144.745 - 81 133.204 1130 2 0 -35.9469 46.101 -145.85 - 81 46.3384 1131 2 0 -35.5813 46.25 -146.154 - 81 195.406 955 11 0 28.784 11.1189 123.75 -Number of digits in this event = 17 -Using G4ParticleGun ... -6.69074 LIN -e- -Event: 82 -Number of tracker hits in this event = 29 - 82 186.336 528 10 1 -74.3387 73.4184 95.55 - 82 132.285 1266 10 0 -74.3378 73.4181 94.15 - 82 156.448 528 9 1 -74.317 73.4119 65.55 - 82 115.281 1266 9 0 -74.3141 73.4122 64.15 - 82 135.054 528 8 1 -74.2575 73.4193 35.55 - 82 130.882 1266 8 0 -74.2538 73.4204 34.15 - 82 111.538 529 7 1 -74.1783 73.4447 5.55 - 82 168.389 1267 7 0 -74.1734 73.4509 4.15 - 82 195.441 529 6 1 -74.0768 73.5785 -24.45 - 82 115.779 1267 6 0 -74.0729 73.5841 -25.85 - 82 324.008 530 5 1 -73.9986 73.6985 -54.45 - 82 119.361 1268 5 0 -73.9943 73.7036 -55.85 - 82 177.321 530 4 1 -73.9032 73.8075 -84.45 - 82 170.177 1268 4 0 -73.8988 73.8117 -85.85 - 82 141.021 531 3 1 -73.8138 73.8972 -114.45 - 82 205.286 1269 3 0 -73.808 73.8996 -115.85 - 82 141.83 531 2 1 -73.7002 73.9412 -144.45 - 82 122.286 1269 2 0 -73.699 73.9432 -145.85 - 82 108.741 531 1 1 -73.6823 73.9862 -174.45 - 82 131.662 1269 1 0 -73.6816 73.989 -175.85 - 82 130.604 531 0 1 -73.6634 74.0467 -204.45 - 82 149.783 1269 0 0 -73.6633 74.0467 -205.85 - 82 273.638 1262 1 0 -48.6482 72.4664 -176.25 - 82 178.84 1261 1 0 -48.6563 72.4497 -176.242 - 82 39.8211 586 0 1 -62.8305 23.9505 -204.85 - 82 156.184 1093 2 0 -29.0323 38.8135 -146.25 - 82 81.5525 1094 2 0 -29.1884 38.85 -146.113 - 82 78.4004 1258 9 0 -68.1354 71.6961 64.15 - 82 77.4588 1257 9 0 -68.0665 71.65 64.0687 -Number of digits in this event = 22 -Using G4ParticleGun ... -2.23944 LIN -e- -Event: 83 -Number of tracker hits in this event = 51 - 83 147.73 1470 9 1 114.237 -67.8332 65.55 - 83 131.437 561 9 0 114.236 -67.8347 64.15 - 83 220.504 1470 8 1 114.198 -67.8341 35.55 - 83 111.226 561 8 0 114.198 -67.8339 34.15 - 83 119.518 1470 7 1 114.18 -67.8503 5.55 - 83 172.324 561 7 0 114.17 -67.8478 4.15 - 83 118.806 1469 6 1 114.003 -67.7803 -24.45 - 83 229.192 561 6 0 113.998 -67.7741 -25.85 - 83 107.67 1468 5 1 113.93 -67.6251 -54.45 - 83 101.979 562 5 0 113.908 -67.6331 -55.85 - 83 121.997 1466 4 1 113.494 -67.8222 -84.45 - 83 112.221 561 4 0 113.454 -67.8221 -85.85 - 83 135.174 1462 3 1 112.661 -67.8401 -114.45 - 83 364.108 561 3 0 112.603 -67.8344 -115.85 - 83 131.262 1456 2 1 111.482 -67.6792 -144.45 - 83 108.796 561 2 0 111.374 -67.6728 -145.85 - 83 129.211 1444 1 1 109.137 -67.6256 -174.45 - 83 128.987 562 1 0 109.104 -67.5765 -175.85 - 83 114.766 1439 0 1 108.115 -65.5763 -204.45 - 83 130.602 575 0 0 107.986 -65.0472 -205.85 - 83 338.543 1445 1 1 109.15 -67.5986 -174.498 - 83 173.635 1446 1 1 109.35 -67.5005 -174.59 - 83 178.826 1266 0 1 73.45 -55.4867 -204.774 - 83 269.305 1471 3 1 114.477 -67.9773 -114.45 - 83 129.766 560 3 0 114.481 -67.9842 -115.85 - 83 115.838 1472 2 1 114.575 -68.1751 -144.45 - 83 193.534 559 2 0 114.584 -68.1777 -145.85 - 83 123.56 1473 1 1 114.758 -68.2408 -174.45 - 83 196.095 559 1 0 114.768 -68.2475 -175.85 - 83 110.292 1473 0 1 114.936 -68.3725 -204.45 - 83 135.658 558 0 0 114.936 -68.3781 -205.85 - 83 136.649 544 3 0 111.372 -71.1465 -116.25 - 83 200.707 1454 3 1 111.116 -71.0516 -114.85 - 83 289.347 1483 2 1 116.873 -64.8072 -144.45 - 83 232.875 577 2 0 116.937 -64.5994 -145.851 - 83 111.399 1486 1 1 117.464 -60.1598 -174.45 - 83 118.841 600 1 0 117.475 -59.9307 -175.85 - 83 259.777 1495 0 1 119.199 -56.4704 -204.45 - 83 6.54311 624 0 0 119.631 -55.0694 -205.85 - 83 70.4228 625 0 0 119.638 -55.05 -205.869 - 83 84.2774 626 0 0 119.706 -54.8493 -206.069 - 83 80.3618 1572 1 1 134.681 -70.1743 -174.85 - 83 160.166 1496 0 1 119.35 -56.2362 -204.658 - 83 66.7039 576 2 0 116.778 -64.6702 -145.85 - 83 136.919 1480 1 1 116.188 -61.7867 -174.45 - 83 25.8221 1481 1 1 116.35 -61.6255 -174.77 - 83 136.809 593 1 0 116.971 -61.4316 -175.85 - 83 140.791 1551 0 1 130.419 -59.1697 -204.45 - 83 115.643 605 0 0 130.638 -58.9257 -205.85 - 83 84.1099 560 9 0 114.246 -67.85 64.0708 - 83 35.5619 559 9 0 114.369 -68.05 63.8388 -Number of digits in this event = 33 -Using G4ParticleGun ... -1.98804 LIN -e- -Event: 84 -Number of tracker hits in this event = 23 - 84 131.504 1531 7 1 126.529 80.2412 5.55 - 84 110.149 1300 7 0 126.534 80.2404 4.15 - 84 113.386 1532 6 1 126.626 80.2244 -24.45 - 84 105.991 1300 6 0 126.623 80.2191 -25.85 - 84 116.478 1532 5 1 126.576 80.0874 -54.45 - 84 106.414 1300 5 0 126.564 80.0821 -55.85 - 84 113.099 1530 4 1 126.341 79.9899 -84.45 - 84 133.17 1299 4 0 126.333 79.9804 -85.85 - 84 114.617 1530 3 1 126.155 79.7824 -114.45 - 84 7.70794 1529 3 1 126.15 79.7806 -114.844 - 84 95.8548 1298 3 0 126.137 79.776 -115.85 - 84 126.338 1528 2 1 125.783 79.665 -144.45 - 84 99.6391 1298 2 0 125.779 79.6621 -145.85 - 84 129.736 1527 1 1 125.736 79.5976 -174.45 - 84 128.054 1297 1 0 125.728 79.5862 -175.85 - 84 247.477 1527 0 1 125.602 79.362 -204.45 - 84 113.361 1296 0 0 125.59 79.3578 -205.85 - 84 295.251 1525 0 1 125.21 79.1062 -204.45 - 84 128.382 1297 0 0 125.393 79.4592 -205.85 - 84 62.9667 1298 0 0 125.661 79.6513 -206.126 - 84 121.103 1299 0 0 125.698 79.85 -206.127 - 84 20.1162 1300 0 0 125.742 80.05 -205.895 - 84 225.671 1526 0 1 125.55 81.0232 -204.606 -Number of digits in this event = 12 -Using G4ParticleGun ... -2.96759 LIN -e- -Event: 85 -Number of tracker hits in this event = 85 - 85 349.644 827 7 1 -14.4658 148.366 5.55 - 85 266.521 1641 7 0 -14.4672 148.367 4.15 - 85 148.57 827 6 1 -14.4856 148.38 -24.45 - 85 120.619 1641 6 0 -14.4877 148.383 -25.85 - 85 130.872 827 5 1 -14.5328 148.462 -54.45 - 85 119.412 1641 5 0 -14.5323 148.466 -55.85 - 85 131.832 827 4 1 -14.532 148.546 -84.45 - 85 217.88 1641 4 0 -14.5306 148.548 -85.85 - 85 194.48 827 3 1 -14.486 148.635 -114.45 - 85 112.856 1642 3 0 -14.4848 148.641 -115.85 - 85 137.279 827 2 1 -14.4533 148.738 -144.45 - 85 394.233 1642 2 0 -14.4542 148.744 -145.85 - 85 419.422 827 1 1 -14.49 148.872 -174.45 - 85 423.12 1643 1 0 -14.4888 148.875 -175.85 - 85 438.619 827 0 1 -14.4624 148.953 -204.45 - 85 130.735 1644 0 0 -14.4592 148.956 -205.85 - 85 53.6176 1645 1 0 -14.8264 149.298 -175.851 - 85 63.9508 1646 1 0 -14.8703 149.35 -176.041 - 85 135.58 828 0 1 -14.45 147.359 -204.471 - 85 82.2004 1632 0 0 -14.1267 146.704 -205.85 - 85 24.2468 1631 0 0 -14.0588 146.55 -206.156 - 85 74.3931 1638 0 0 -14.4652 147.898 -205.85 - 85 55.2814 1637 0 0 -14.4725 147.75 -205.997 - 85 121.547 1636 0 0 -14.5273 147.55 -206.11 - 85 55.7432 1635 0 0 -14.5848 147.35 -206.189 - 85 95.0649 1643 0 0 -14.5841 148.83 -205.85 - 85 325.745 828 1 1 -14.4132 148.92 -174.45 - 85 16.3805 864 0 1 -7.23016 139.361 -204.45 - 85 121.222 863 0 1 -7.25 139.323 -204.514 - 85 41.4371 1590 0 0 -7.4949 138.263 -205.85 - 85 79.8442 1589 0 0 -7.51923 138.15 -205.993 - 85 130.269 1644 1 0 -14.5358 149.026 -175.85 - 85 204.84 816 0 1 -16.761 152.172 -204.45 - 85 6.91162 1658 0 0 -16.6773 151.759 -205.85 - 85 93.8194 1657 0 0 -16.6753 151.75 -205.88 - 85 89.061 828 3 1 -14.45 148.578 -114.462 - 85 81.1112 1169 8 0 -40.8072 53.9467 33.75 - 85 60.2867 1653 4 1 150.75 54.4926 -84.7913 - 85 124.832 821 6 1 -15.8246 150.092 -24.45 - 85 114.845 1649 6 0 -15.826 150.04 -25.85 - 85 359.724 824 5 1 -15.1722 148.48 -54.4502 - 85 131.124 1640 5 0 -15.198 148.34 -55.85 - 85 233.319 824 4 1 -15.0928 146.025 -84.4503 - 85 134.675 1629 4 0 -15.0244 145.977 -85.85 - 85 370.097 832 3 1 -13.4749 145.15 -114.45 - 85 120.531 1624 3 0 -13.579 145.015 -115.851 - 85 35.3972 816 2 1 -16.8252 141.737 -144.45 - 85 267.558 815 2 1 -16.85 141.716 -144.536 - 85 130.798 1606 2 0 -17.222 141.445 -145.851 - 85 120.208 773 1 1 -25.2912 135.715 -174.45 - 85 74.9526 1576 1 0 -25.6718 135.405 -175.85 - 85 50.0817 1575 1 0 -25.7387 135.35 -176.09 - 85 134.65 732 0 1 -33.5808 129.505 -204.45 - 85 77.5739 1545 0 0 -33.7827 129.202 -205.85 - 85 33.8664 1544 0 0 -33.819 129.15 -206.096 - 85 297.616 814 2 1 -17.0501 141.83 -144.603 - 85 292.579 1640 7 0 -14.3913 148.307 4.14996 - 85 132.617 841 6 1 -11.8485 146.47 -24.45 - 85 129.118 1631 6 0 -11.5517 146.483 -25.85 - 85 176.197 874 5 1 -5.0862 146.109 -54.45 - 85 92.9123 1624 5 0 -5.59055 145.067 -55.85 - 85 119.894 1623 5 0 -5.64787 144.95 -56.0158 - 85 12.8255 825 4 1 -14.8629 125.351 -84.45 - 85 124.623 826 4 1 -14.8499 125.344 -84.4735 - 85 97.4404 1524 4 0 -14.3812 125.028 -85.8503 - 85 18.567 1523 4 0 -14.2687 124.95 -86.1766 - 85 51.7929 881 3 1 -3.74684 117.619 -114.45 - 85 95.8373 882 3 1 -3.65 117.615 -114.578 - 85 48.6921 883 3 1 -3.45 117.597 -114.832 - 85 135.68 1486 3 0 -2.5587 117.506 -115.85 - 85 40.3209 1014 2 1 22.9344 110.039 -144.45 - 85 63.5291 1015 2 1 23.05 110.045 -144.514 - 85 72.5173 1016 2 1 23.25 110.057 -144.628 - 85 65.9199 1017 2 1 23.4509 110.097 -144.739 - 85 6.91737 1018 2 1 23.65 110.14 -144.839 - 85 27.3657 1451 2 0 25.5455 110.53 -145.85 - 85 734.427 1452 2 0 25.6432 110.55 -145.902 - 85 114.495 1453 2 0 26.4222 110.75 -146.197 - 85 66.0634 1194 2 0 170.951 58.9235 -146.25 - 85 79.8778 1193 2 0 170.999 58.8499 -146.029 - 85 44.3566 1752 2 1 170.597 58.6692 -144.85 - 85 431.355 1751 2 1 170.55 58.6375 -144.75 - 85 80.7012 1198 2 0 170.129 59.8138 -145.85 - 85 122.005 1199 2 0 170.128 59.85 -145.882 - 85 103.908 1144 0 0 -61.085 49.0139 -205.85 +Event: 4 +Number of tracker hits in this event = 88 + 4 128.834 1128 9 1 45.814 117.801 65.55 + 4 94.2715 1488 9 0 45.8145 117.8 64.15 + 4 113.851 1128 8 1 45.8277 117.781 35.55 + 4 123.015 1488 8 0 45.8283 117.779 34.15 + 4 379.345 1128 7 1 45.8476 117.715 5.55 + 4 259.404 1487 7 0 45.8358 117.673 4.15 + 4 118.164 1124 6 1 45.0354 116.591 -24.45 + 4 121.922 1482 6 0 45.0141 116.638 -25.85 + 4 151.315 1120 5 1 44.2207 116.777 -54.45 + 4 116.627 1483 5 0 44.302 116.781 -55.85 + 4 48.6545 1133 4 1 46.8478 117.077 -84.4501 + 4 80.1695 1134 4 1 46.85 117.073 -84.5387 + 4 119.897 1484 4 0 46.8556 117.021 -85.85 + 4 270.746 1130 3 1 46.2337 116.132 -114.45 + 4 93.6888 1479 3 0 46.1053 116.055 -115.85 + 4 12.2839 1117 2 1 43.4591 115.482 -144.45 + 4 86.1944 1116 2 1 43.45 115.477 -144.49 + 4 163.091 1475 2 0 43.1416 115.302 -145.85 + 4 104.289 1076 1 1 35.3314 113.427 -174.45 + 4 49.7142 1463 1 0 35.3177 112.838 -175.85 + 4 55.8654 1462 1 0 35.3162 112.75 -176.052 + 4 32.1424 1076 0 1 35.2969 100.551 -204.45 + 4 77.4422 1075 0 1 35.25 100.514 -204.585 + 4 56.349 1400 0 0 34.7823 100.188 -205.85 + 4 84.3309 1399 0 0 34.7341 100.15 -205.991 + 4 78.9909 1117 0 1 43.628 112.332 -204.45 + 4 91.1712 1116 0 1 43.45 112.34 -204.625 + 4 3.97908 1115 0 1 43.25 112.388 -204.839 + 4 64.1392 1463 0 0 41.9624 112.851 -205.85 + 4 88.2221 1464 0 0 41.7724 112.95 -206.005 + 4 101.411 1118 0 1 43.7527 112.404 -204.45 + 4 242.948 1461 0 0 43.5773 112.435 -205.85 + 4 738.47 1129 2 1 45.981 117.252 -144.45 + 4 431.885 1485 2 0 45.9813 117.264 -145.85 + 4 295.665 1130 1 1 46.2162 117.383 -174.45 + 4 236.693 1486 1 0 46.2656 117.439 -175.85 + 4 134.701 1133 0 1 46.8038 118.737 -204.45 + 4 121.687 1492 0 0 46.7262 118.723 -205.85 + 4 247.629 1129 1 1 45.8734 117.25 -174.45 + 4 130.724 1485 1 0 45.8677 117.252 -175.85 + 4 129.719 1128 0 1 45.7936 117.241 -204.45 + 4 104.342 1485 0 0 45.7987 117.248 -205.85 + 4 284.075 1129 4 1 45.9162 117.581 -84.45 + 4 280.526 1487 4 0 45.9165 117.58 -85.85 + 4 342.242 1129 3 1 45.9223 117.554 -114.45 + 4 145.182 1487 3 0 45.9232 117.552 -115.85 + 4 129.546 1486 2 0 45.9552 117.514 -145.85 + 4 132.805 1129 0 1 46.0031 117.421 -204.45 + 4 160.547 1486 0 0 46.0062 117.42 -205.85 + 4 18.5005 619 3 0 54.4157 -56.0764 -116.25 + 4 97.9325 1486 3 0 45.905 117.51 -115.85 + 4 224.495 1484 1 0 46.0904 117.041 -175.85 + 4 135.704 1130 0 1 46.2358 116.775 -204.45 + 4 109.909 1482 0 0 46.2506 116.744 -205.85 + 4 11.122 1225 1 0 30.1577 65.2091 -176.25 + 4 138.101 1047 1 1 29.5845 66.0764 -174.85 + 4 16.4016 1320 0 1 84.05 83.8042 -204.839 + 4 175.762 1489 7 0 45.2681 118.053 4.15 + 4 24.6959 1081 6 1 36.4073 124.929 -24.45 + 4 127.556 1082 6 1 36.45 124.851 -24.5063 + 4 64.5031 1083 6 1 36.65 124.628 -24.6662 + 4 50.5529 1084 6 1 36.85 124.495 -24.8022 + 4 266.409 1512 6 0 38.8203 122.645 -25.8502 + 4 284.541 1595 3 0 44.5702 139.312 -115.85 + 4 109.683 1490 7 0 45.1948 118.15 4.07158 + 4 26.275 1486 7 0 45.7589 117.55 3.82299 + 4 94.8375 1119 6 1 43.8646 114.795 -24.45 + 4 29.6423 1118 6 1 43.85 114.802 -24.7462 + 4 123.31 1473 6 0 43.7953 114.829 -25.8501 + 4 150.876 1117 5 1 43.4619 116.448 -54.4501 + 4 90.6273 1477 5 0 43.7465 115.705 -55.85 + 4 57.8709 1476 5 0 43.7943 115.55 -56.128 + 4 111.912 1139 4 1 47.9318 100.447 -84.4503 + 4 98.8577 1398 4 0 47.8503 99.8784 -85.85 + 4 22.1456 1397 4 0 47.841 99.7498 -86.1704 + 4 125.097 1139 3 1 48.0229 89.043 -114.451 + 4 134.551 1342 3 0 47.9876 88.6473 -115.85 + 4 133.376 1136 2 1 47.4077 77.9951 -144.45 + 4 126.476 1285 2 0 47.2357 77.2311 -145.85 + 4 17.141 1284 2 0 47.1848 77.05 -146.189 + 4 139.073 1097 1 1 39.5899 61.9279 -174.45 + 4 28.2511 1204 1 0 39.1692 60.8875 -175.85 + 4 337.52 1203 1 0 39.153 60.85 -175.902 + 4 21.5115 1202 1 0 39.0531 60.65 -176.178 + 4 127.543 1024 0 1 24.9552 42.229 -204.45 + 4 22.0636 1108 0 0 24.7082 41.6666 -205.85 + 4 263.309 1107 0 0 24.7 41.65 -205.893 + 4 9.6919 881 2 0 2.93046 -3.85 -146.22 Number of digits in this event = 44 Using G4ParticleGun ... -2.48001 LIN +3.81854 LIN e- -Event: 86 -Number of tracker hits in this event = 23 - 86 164.883 663 9 1 -47.2649 -114.688 65.55 - 86 127.389 327 9 0 -47.2623 -114.687 64.15 - 86 135.778 664 8 1 -47.2078 -114.674 35.55 - 86 124.39 327 8 0 -47.2074 -114.676 34.15 - 86 111.654 664 7 1 -47.1908 -114.717 5.55 - 86 145.028 327 7 0 -47.1888 -114.715 4.15 - 86 89.4147 664 6 1 -47.1475 -114.676 -24.45 - 86 129.068 327 6 0 -47.1452 -114.676 -25.85 - 86 108.166 664 5 1 -47.1066 -114.683 -54.45 - 86 116.107 327 5 0 -47.1043 -114.687 -55.85 - 86 124.23 665 4 1 -47.0484 -114.765 -84.45 - 86 139.591 326 4 0 -47.043 -114.769 -85.85 - 86 165.702 665 3 1 -46.933 -114.866 -114.45 - 86 144.462 326 3 0 -46.9229 -114.867 -115.85 - 86 143.473 666 2 1 -46.6974 -114.88 -144.45 - 86 97.4727 326 2 0 -46.6838 -114.884 -145.85 - 86 109.805 668 1 1 -46.3977 -114.97 -174.45 - 86 273.946 325 1 0 -46.3807 -114.97 -175.85 - 86 149.175 670 0 1 -46.0033 -114.997 -204.45 - 86 164.159 325 0 0 -45.9801 -115.002 -205.85 - 86 96.6856 217 0 0 22.4345 -136.55 -206.227 - 86 113.94 549 0 1 -70.1738 -142.143 -204.85 - 86 92.3821 548 0 1 -70.25 -142.251 -204.668 -Number of digits in this event = 17 -Using G4ParticleGun ... -9.91197 LIN -e- -Event: 87 -Number of tracker hits in this event = 36 - 87 142.488 1507 9 1 121.562 53.0144 65.55 - 87 130.08 1164 9 0 121.562 53.0152 64.15 - 87 107.807 1507 8 1 121.577 53.0338 35.55 - 87 110.518 1164 8 0 121.577 53.0339 34.15 - 87 153.572 1507 7 1 121.575 53.0335 5.55 - 87 140.492 1164 7 0 121.575 53.0341 4.15 - 87 127.444 1507 6 1 121.58 53.0484 -24.45 - 87 120.045 1164 6 0 121.581 53.0493 -25.85 - 87 134.341 1507 5 1 121.586 53.0635 -54.45 - 87 182.103 1165 5 0 121.587 53.0648 -55.85 - 87 107.441 1507 4 1 121.595 53.0961 -84.45 - 87 113.847 1165 4 0 121.596 53.097 -85.85 - 87 215.885 1507 3 1 121.61 53.116 -114.45 - 87 122.462 1165 3 0 121.611 53.1167 -115.85 - 87 175.883 1507 2 1 121.632 53.129 -144.45 - 87 381.201 1165 2 0 121.632 53.1297 -145.85 - 87 183.789 1507 1 1 121.636 53.146 -174.45 - 87 115.901 1165 1 0 121.637 53.1469 -175.85 - 87 291.138 1507 0 1 121.669 53.1652 -204.45 - 87 119.39 1165 0 0 121.67 53.1671 -205.85 - 87 67.1434 1248 2 1 69.7427 -119.332 -144.45 - 87 28.0094 1691 1 1 158.533 164.096 -174.45 - 87 180.376 1692 1 1 158.55 164.078 -174.495 - 87 119.971 1301 2 1 80.2839 -39.3972 -144.85 - 87 51.2363 1508 0 1 121.75 53.2742 -204.531 - 87 181.322 1506 1 1 121.468 52.8978 -174.45 - 87 123.352 1162 1 0 121.307 52.5745 -175.85 - 87 18.8437 1489 0 1 117.958 46.4804 -204.45 - 87 106.114 1488 0 1 117.95 46.4656 -204.517 - 87 167.345 1130 0 0 117.773 46.1646 -205.85 - 87 118.5 1509 1 1 122.07 53.2676 -174.45 - 87 120.498 1166 1 0 122.008 53.2842 -175.85 - 87 134.927 1503 0 1 120.779 53.5397 -204.45 - 87 164.62 1167 0 0 120.71 53.5236 -205.85 - 87 171.83 1165 9 0 121.536 53.05 64.0107 - 87 142.639 1166 9 0 121.691 53.25 63.7921 -Number of digits in this event = 26 -Using G4ParticleGun ... -7.52845 LIN -e- -Event: 88 -Number of tracker hits in this event = 83 - 88 197.535 1169 10 0 102.911 53.9812 94.15 - 88 130.378 1413 9 1 102.917 53.9792 65.55 - 88 126.889 1169 9 0 102.917 53.9799 64.15 - 88 114.963 1413 8 1 102.903 53.9992 35.55 - 88 147.692 1169 8 0 102.902 54.0011 34.15 - 88 112.428 1413 7 1 102.893 54.0428 5.55 - 88 136.986 1169 7 0 102.893 54.0461 4.15 - 88 190.958 1413 6 1 102.886 54.1095 -24.45 - 88 317.345 1170 6 0 102.886 54.112 -25.85 - 88 171.665 1413 5 1 102.883 54.1596 -54.45 - 88 205.66 1170 5 0 102.883 54.1628 -55.85 - 88 129.333 1413 4 1 102.877 54.23 -84.45 - 88 115.409 1170 4 0 102.876 54.2325 -85.85 - 88 474.031 1413 3 1 102.852 54.2843 -114.45 - 88 255.32 1171 3 0 102.852 54.2865 -115.85 - 88 307.723 1413 2 1 102.842 54.3265 -144.45 - 88 98.1436 1171 2 0 102.841 54.3296 -145.85 - 88 252.128 1413 1 1 102.836 54.3915 -174.45 - 88 409.398 1171 1 0 102.835 54.3948 -175.85 - 88 112.317 1413 0 1 102.81 54.4557 -204.45 - 88 129.299 1172 0 0 102.81 54.459 -205.85 - 88 164.155 571 3 1 -65.7701 -49.3055 -114.85 - 88 18.414 1453 1 1 110.854 2.26554 -174.85 - 88 383.381 1412 0 1 102.731 54.3361 -204.45 - 88 30.2165 1170 0 0 102.172 54.0839 -205.85 - 88 96.7452 1169 0 0 102.116 54.05 -205.957 - 88 8.82763 1170 1 0 103.201 54.25 -176.215 - 88 78.0405 1414 0 1 103.07 46.8212 -204.45 - 88 86.1116 1415 0 1 103.15 46.9301 -204.687 - 88 108.271 1138 0 0 104.085 47.6901 -205.85 - 88 59.1934 1139 0 0 104.239 47.85 -206.145 - 88 117.826 1414 2 1 102.95 54.37 -144.545 - 88 54.3448 1173 2 0 103.395 54.7958 -145.85 - 88 59.3099 1174 2 0 103.441 54.85 -146.042 - 88 83.5221 1426 1 1 105.387 62.2336 -174.45 - 88 91.5118 1427 1 1 105.55 62.2375 -174.577 - 88 36.6595 1428 1 1 105.751 62.2547 -174.757 - 88 178.455 1212 1 0 107.139 62.48 -175.85 - 88 113.29 1213 1 0 107.492 62.65 -176.001 - 88 26.9761 1214 1 0 107.636 62.85 -176.202 - 88 138.018 1153 1 0 117.093 50.8479 -176.25 - 88 147.436 1152 1 0 117.166 50.65 -176.051 - 88 138.094 895 1 0 78.2915 -0.96656 -176.25 - 88 93.399 894 1 0 78.3673 -1.05011 -176.122 - 88 36.5388 1672 0 1 154.55 95.3296 -204.56 - 88 70.211 1673 0 1 154.75 95.4613 -204.691 - 88 191.678 1674 0 1 154.951 95.5878 -204.783 - 88 108.105 1169 2 0 102.85 53.915 -145.851 - 88 48.6563 1168 2 0 102.845 53.8498 -146.081 - 88 122.566 1411 1 1 102.438 46.7656 -174.45 - 88 77.4806 1130 1 0 102.244 46.1627 -175.85 - 88 39.6663 1129 1 0 102.199 46.0499 -176.117 - 88 25.0977 1380 0 1 96.2891 33.5094 -204.45 - 88 127.887 1381 0 1 96.35 33.5131 -204.539 - 88 9.9766 1382 0 1 96.5502 33.515 -204.817 - 88 141.479 1067 0 0 97.2152 33.5488 -205.85 - 88 220.492 1016 0 0 60.8117 23.3332 -206.25 - 88 15.5401 1649 3 1 150.15 115.338 -114.755 - 88 217.908 1414 3 1 102.95 54.2436 -114.832 - 88 134.791 1170 3 0 103.198 54.1803 -115.85 - 88 80.6721 1440 2 1 108.236 53.0672 -144.45 - 88 46.5495 1441 2 1 108.35 53.0578 -144.693 - 88 118.739 1164 2 0 108.854 53.0262 -145.85 - 88 50.4833 1500 1 1 120.23 53.3273 -174.45 - 88 101.733 1501 1 1 120.35 53.2792 -174.566 - 88 31.3243 1502 1 1 120.55 53.1985 -174.781 - 88 3.08969 1164 1 0 121.47 52.8524 -175.85 - 88 186.17 1163 1 0 121.477 52.85 -175.857 - 88 25.8252 1614 0 1 143.062 46.7609 -204.45 - 88 60.2628 1615 0 1 143.15 46.791 -204.504 - 88 98.1003 1616 0 1 143.35 46.8485 -204.635 - 88 28.0788 1617 0 1 143.55 46.8889 -204.78 - 88 224.988 1135 0 0 144.885 47.09 -205.85 - 88 120.487 1412 2 1 102.636 57.061 -144.45 - 88 19.2127 1186 2 0 102.635 57.4322 -145.85 - 88 146.808 1187 2 0 102.635 57.45 -145.92 - 88 133.118 1425 1 1 105.167 64.1669 -174.45 - 88 106.937 1222 1 0 105.394 64.4966 -175.85 - 88 96.1234 1453 0 1 110.792 71.2635 -204.45 - 88 147.327 1257 0 0 110.88 71.5552 -205.85 - 88 52.6588 1412 3 1 102.75 54.2383 -114.698 - 88 112.168 1169 3 0 102.457 53.9081 -115.85 - 88 73.4047 1168 3 0 102.42 53.85 -116.045 -Number of digits in this event = 38 -Using G4ParticleGun ... -8.63276 LIN -e- -Event: 89 -Number of tracker hits in this event = 46 - 89 196.32 413 10 1 -97.5064 61.9199 95.55 - 89 116.221 1209 10 0 -97.5057 61.9194 94.15 - 89 132.864 413 9 1 -97.4928 61.9071 65.55 - 89 198.958 1209 9 0 -97.4923 61.9062 64.15 - 89 103.716 413 8 1 -97.4847 61.8881 35.55 - 89 136.562 1209 8 0 -97.4849 61.8879 34.15 - 89 207.521 413 7 1 -97.4938 61.8921 5.55 - 89 139.008 1209 7 0 -97.4922 61.8935 4.15 - 89 123.074 413 6 1 -97.4757 61.9317 -24.45 - 89 111.597 1209 6 0 -97.4722 61.9324 -25.85 - 89 110.402 413 5 1 -97.3968 61.9378 -54.45 - 89 129.377 1209 5 0 -97.3918 61.9405 -55.85 - 89 114.855 414 4 1 -97.2863 61.9924 -84.45 - 89 111.983 1209 4 0 -97.2814 61.9986 -85.85 - 89 120.554 414 3 1 -97.1907 62.152 -114.45 - 89 132.252 1210 3 0 -97.1811 62.1606 -115.85 - 89 93.568 415 2 1 -96.977 62.3303 -144.45 - 89 141.824 1211 2 0 -96.9635 62.3231 -145.85 - 89 127.66 417 1 1 -96.7204 62.2081 -174.45 - 89 120.063 1210 1 0 -96.6735 62.1792 -175.85 - 89 201.046 422 0 1 -95.697 61.4811 -204.45 - 89 139.823 1206 0 0 -95.6312 61.443 -205.85 - 89 386.091 421 0 1 -95.7502 61.4315 -204.49 - 89 70.9362 1123 5 1 44.7277 -48.5521 -54.85 - 89 92.6456 1122 5 1 44.65 -48.5786 -54.6455 - 89 59.483 975 7 0 3.18439 15.05 4.12031 - 89 110.49 969 7 1 13.8529 -2.12038 5.15 - 89 25.7596 968 7 1 13.85 -2.16305 5.16891 - 89 9.58196 1361 2 0 -89.0855 92.3757 -145.85 - 89 48.534 454 2 1 -89.1186 91.8372 -144.85 - 89 211.533 413 3 1 -97.5187 61.9631 -114.45 - 89 264.363 1209 3 0 -97.5192 61.964 -115.85 - 89 114.639 413 2 1 -97.5325 61.9714 -144.45 - 89 153.741 1209 2 0 -97.5315 61.9724 -145.85 - 89 105.384 413 1 1 -97.5143 62.0035 -174.45 - 89 152.824 1209 1 0 -97.5123 62.0047 -175.85 - 89 108.633 413 0 1 -97.4745 62.0688 -204.45 - 89 117.069 1210 0 0 -97.4774 62.0777 -205.85 - 89 108.263 416 2 1 -96.8022 60.6098 -144.45 - 89 127.27 1202 2 0 -96.7414 60.5596 -145.85 - 89 129.363 424 1 1 -95.2732 59.5887 -174.45 - 89 119.043 1197 1 0 -95.2195 59.5446 -175.85 - 89 98.9595 429 0 1 -94.1653 58.7687 -204.45 - 89 22.0003 430 0 1 -94.15 58.7615 -204.773 - 89 339.253 1193 0 0 -94.0963 58.7472 -205.85 - 89 21.2698 88 0 1 -162.35 41.1006 -204.509 -Number of digits in this event = 25 -Using G4ParticleGun ... -2.89354 LIN -e- -Event: 90 -Number of tracker hits in this event = 110 - 90 180.138 1053 9 1 30.7097 -122.967 65.55 - 90 186.991 285 9 0 30.7127 -122.968 64.15 - 90 119.276 1053 8 1 30.7751 -122.993 35.55 - 90 94.241 285 8 0 30.7786 -122.993 34.15 - 90 170.124 1054 7 1 30.8526 -123.01 5.55 - 90 125.053 285 7 0 30.8682 -123.007 4.15 - 90 238.816 1055 6 1 31.1469 -122.947 -24.45 - 90 105.989 286 6 0 31.1639 -122.937 -25.85 - 90 360.093 1057 5 1 31.5544 -122.73 -54.45 - 90 391.673 287 5 0 31.5691 -122.714 -55.85 - 90 136.018 1059 4 1 31.8649 -122.385 -84.45 - 90 117.034 288 4 0 31.8809 -122.375 -85.85 - 90 133.504 1060 3 1 32.2143 -122.187 -114.45 - 90 95.6741 289 3 0 32.2404 -122.177 -115.85 - 90 113.352 1063 2 1 32.8027 -121.96 -144.45 - 90 145.752 291 2 0 32.8566 -121.923 -145.85 - 90 166.054 1069 1 1 33.9742 -121.133 -174.45 - 90 109.102 295 1 0 34.0256 -121.092 -175.85 - 90 159.432 1075 0 1 35.1023 -120.266 -204.45 - 90 187.138 299 0 0 35.1506 -120.224 -205.85 - 90 49.3415 1551 0 1 130.368 -95.485 -204.85 - 90 140.514 286 5 0 31.6244 -122.893 -55.85 - 90 155.733 1063 4 1 32.7954 -126.438 -84.45 - 90 99.1955 267 4 0 32.7518 -126.612 -85.85 - 90 206.848 1056 3 1 31.3882 -130.019 -114.45 - 90 113.11 248 3 0 31.2144 -130.404 -115.85 - 90 118.481 1042 2 1 28.4576 -137.782 -144.45 - 90 107.284 209 2 0 28.6244 -138.231 -145.85 - 90 6.57468 208 2 0 28.6915 -138.35 -146.228 - 90 21.6795 1072 1 1 34.6477 -148.14 -174.451 - 90 100.98 1073 1 1 34.65 -148.151 -174.526 - 90 159.148 158 1 0 34.7637 -148.36 -175.85 - 90 115.588 1084 0 1 36.9389 -154.676 -204.45 - 90 121.549 124 0 0 37.2844 -155.215 -205.85 - 90 143.03 1085 4 1 37.1236 -122.102 -84.4505 - 90 16.7835 285 4 0 37.1966 -123.123 -85.8504 - 90 114.651 284 4 0 37.1984 -123.15 -85.8869 - 90 25.8863 283 4 0 37.2177 -123.35 -86.1647 - 90 167.335 1092 3 1 38.4806 -144.956 -114.45 - 90 16.1988 171 3 0 38.5184 -145.919 -115.85 - 90 117.053 170 3 0 38.5195 -145.95 -115.897 - 90 13.6143 169 3 0 38.5277 -146.15 -116.213 - 90 126.646 1086 2 1 37.3136 -162.392 -144.45 - 90 102.883 85 2 0 37.1179 -163.021 -145.85 - 90 428.211 84 2 0 37.0827 -163.15 -146.163 - 90 86.8946 1078 1 1 35.821 -173.484 -174.45 - 90 62.7835 1077 1 1 35.65 -173.491 -174.692 - 90 186.516 33 1 0 34.8811 -173.47 -175.85 - 90 63.5115 1006 0 1 21.421 -171.509 -204.45 - 90 60.4527 1005 0 1 21.25 -171.526 -204.565 - 90 98.1587 1004 0 1 21.05 -171.556 -204.677 - 90 49.1752 1003 0 1 20.85 -171.581 -204.776 - 90 395.605 42 0 0 17.5534 -171.734 -205.85 - 90 2.65091 194 0 0 -80.4799 -141.156 -206.25 - 90 150.355 195 0 0 -80.4894 -141.15 -206.245 - 90 113.982 196 0 0 -80.8165 -140.95 -206.09 - 90 117.309 197 0 0 -81.0979 -140.75 -205.966 - 90 35.7121 198 0 0 -81.475 -140.55 -205.869 - 90 2.76992 460 0 1 -88.0375 -137.436 -204.85 - 90 126.58 459 0 1 -88.05 -137.43 -204.848 - 90 201.259 458 0 1 -88.2508 -137.326 -204.801 - 90 61.4723 457 0 1 -88.45 -137.204 -204.75 - 90 78.8313 456 0 1 -88.65 -137.099 -204.695 - 90 63.0003 455 0 1 -88.85 -136.996 -204.636 - 90 44.5746 454 0 1 -89.0501 -136.916 -204.596 - 90 60.3959 453 0 1 -89.25 -136.854 -204.573 - 90 127.744 452 0 1 -89.45 -136.792 -204.537 - 90 45.4466 451 0 1 -89.6503 -136.698 -204.485 - 90 41.6257 450 0 1 -89.9557 -136.53 -204.45 - 90 72.2086 449 0 1 -90.15 -136.382 -204.488 - 90 81.2874 448 0 1 -90.35 -136.204 -204.516 - 90 62.4192 447 0 1 -90.55 -136.064 -204.537 - 90 147.173 446 0 1 -90.7501 -135.932 -204.526 - 90 204.265 445 0 1 -90.95 -135.845 -204.511 - 90 3.22193 221 0 0 -90.05 -135.751 -205.933 - 90 105.211 222 0 0 -90.0461 -135.75 -205.94 - 90 205.771 220 0 0 -83.5677 -136.048 -206.249 - 90 64.3774 483 0 1 -83.4255 -135.896 -204.85 - 90 68.3609 484 0 1 -83.25 -135.852 -204.803 - 90 113.008 211 0 0 -79.3326 -137.903 -205.85 - 90 135.083 210 0 0 -79.2822 -137.95 -205.877 - 90 77.7725 209 0 0 -79.2774 -138.15 -206.111 - 90 280.382 444 0 1 -91.15 -135.812 -204.528 - 90 78.9811 384 0 1 -103.15 -125.846 -204.759 - 90 259.09 267 0 0 -103.863 -126.583 -205.85 - 90 124.899 1052 9 1 30.6499 -122.89 65.406 - 90 116.196 287 9 0 30.4145 -122.625 64.15 - 90 42.6117 288 9 0 30.3722 -122.55 63.8231 - 90 172.062 1046 8 1 29.2889 -115.712 35.55 - 90 114.294 322 8 0 29.0667 -115.746 34.15 - 90 71.856 321 8 0 29.0288 -115.75 33.9896 - 90 102.862 1021 7 1 24.2542 -115.519 5.55 - 90 45.4404 1022 7 1 24.45 -115.557 5.26887 - 90 155.804 321 7 0 25.2997 -115.779 4.15 - 90 27.5193 1131 6 1 46.4419 -121.03 -24.45 - 90 105.149 1132 6 1 46.45 -120.991 -24.5619 - 90 299.237 297 6 0 46.4974 -120.65 -25.85 - 90 44.0489 1122 5 1 44.5101 -114.75 -54.45 - 90 76.3618 1121 5 1 44.45 -114.692 -54.6103 - 90 50.9885 329 5 0 44.1571 -114.28 -55.85 - 90 81.9888 330 5 0 44.1503 -114.15 -55.9943 - 90 32.4002 1074 4 1 34.907 -98.1956 -84.45 - 90 136.163 1073 4 1 34.85 -98.1384 -84.5197 - 90 61.0248 413 4 0 33.9733 -97.4718 -85.85 - 90 115.144 414 4 0 33.8312 -97.35 -86.0269 - 90 36.2612 612 4 0 18.8107 -57.5293 -86.25 - 90 69.9977 613 4 0 18.8251 -57.45 -86.1629 - 90 41.6226 614 4 0 18.8673 -57.2492 -85.9493 - 90 130.864 994 4 1 18.9184 -56.3345 -84.85 - 90 300.188 993 4 1 18.85 -56.0959 -84.6996 -Number of digits in this event = 43 -Using G4ParticleGun ... -8.31571 LIN -e- -Event: 91 -Number of tracker hits in this event = 32 - 91 126.015 1572 8 1 134.698 24.2036 35.55 - 91 115.607 1020 8 0 134.697 24.2028 34.15 - 91 141.878 1572 7 1 134.672 24.1861 5.55 - 91 162.014 1020 7 0 134.67 24.185 4.15 - 91 105.128 1572 6 1 134.628 24.1645 -24.45 - 91 106.105 1020 6 0 134.626 24.1647 -25.85 - 91 119.395 1572 5 1 134.586 24.1664 -54.45 - 91 212.974 1020 5 0 134.586 24.1632 -55.85 - 91 123.548 1572 4 1 134.573 24.0907 -84.45 - 91 107.08 1020 4 0 134.561 24.0924 -85.85 - 91 48.0133 1571 3 1 134.352 24.0814 -114.45 - 91 44.3355 1570 3 1 134.35 24.0817 -114.657 - 91 167.12 1020 3 0 134.338 24.0854 -115.85 - 91 199.695 1569 2 1 134.012 24.1693 -144.45 - 91 156.618 1020 2 0 133.995 24.1779 -145.85 - 91 119.327 1566 1 1 133.409 24.0953 -174.45 - 91 172.52 1020 1 0 133.335 24.1115 -175.85 - 91 144.574 1558 0 1 131.877 24.1938 -204.45 - 91 125.119 1021 0 0 131.836 24.2559 -205.85 - 91 170.937 741 1 0 140.787 -31.6707 -176.25 - 91 265.62 1571 1 1 134.542 24.1089 -174.45 - 91 98.664 1019 1 0 134.476 23.898 -175.85 - 91 10.5903 1018 1 0 134.457 23.85 -176.198 - 91 114.505 1561 0 1 132.486 19.7751 -204.45 - 91 1.98432 995 0 0 132.536 19.0559 -205.85 - 91 202.81 994 0 0 132.536 19.05 -205.862 - 91 299.94 1562 0 1 132.559 19.7224 -204.45 - 91 19.964 1572 1 1 134.608 23.8739 -174.45 - 91 82.8057 1570 1 1 134.35 23.5938 -174.653 - 91 56.2388 1569 1 1 134.15 23.4802 -174.753 - 91 3.48578 1568 1 1 133.95 23.4046 -174.843 - 91 200.944 1012 1 0 132.387 22.6114 -175.85 -Number of digits in this event = 18 -Using G4ParticleGun ... -9.03442 LIN -e- -Event: 92 -Number of tracker hits in this event = 76 - 92 128.988 1135 11 1 47.1375 48.8597 125.55 - 92 137.472 1144 11 0 47.1375 48.8595 124.15 - 92 190.909 1135 10 1 47.1398 48.8554 95.55 - 92 140.974 1144 10 0 47.1393 48.8545 94.15 - 92 117.915 1135 9 1 47.128 48.8374 65.55 - 92 137.598 1143 9 0 47.1266 48.8389 64.15 - 92 120.115 1135 8 1 47.0966 48.8725 35.55 - 92 248.765 1144 8 0 47.0961 48.8734 34.15 - 92 199.696 1135 7 1 47.0865 48.886 5.55 - 92 127.723 1144 7 0 47.0857 48.8868 4.15 - 92 216.241 1135 6 1 47.0654 48.8978 -24.45 - 92 116.564 1144 6 0 47.065 48.8974 -25.85 - 92 101.201 1134 5 1 47.0489 48.8882 -54.45 - 92 114.116 1144 5 0 47.0508 48.8839 -55.85 - 92 427.329 1135 4 1 47.0913 48.7961 -84.45 - 92 137.49 1143 4 0 47.0929 48.7912 -85.85 - 92 183.728 1135 3 1 47.1245 48.6851 -114.45 - 92 252.479 1143 3 0 47.1263 48.6807 -115.85 - 92 290.312 1135 2 1 47.1653 48.5929 -144.45 - 92 115.329 1142 2 0 47.1675 48.5907 -145.85 - 92 312.158 1135 1 1 47.2156 48.5522 -174.45 - 92 110.168 1142 1 0 47.2207 48.5529 -175.85 - 92 119.467 1136 0 1 47.321 48.564 -204.45 - 92 177.144 1142 0 0 47.3258 48.5641 -205.85 - 92 42.6175 982 6 1 16.5462 -54.7012 -24.85 - 92 57.6953 1468 2 0 36.8673 113.906 -146.25 - 92 31.4568 1141 0 0 47.2417 48.45 -206.24 - 92 64.6626 1136 3 1 47.25 48.8497 -114.654 - 92 108.136 1146 3 0 47.6774 49.3093 -115.85 - 92 7.00821 1147 3 0 47.7589 49.4505 -116.219 - 92 314.156 1134 3 1 47.0195 48.9735 -114.45 - 92 276.455 1145 3 0 46.9182 49.1874 -115.85 - 92 103.225 1122 2 1 44.5086 53.2067 -144.45 - 92 22.2076 1121 2 1 44.45 53.2338 -144.8 - 92 128.355 1166 2 0 44.3029 53.3099 -145.85 - 92 106.788 1104 1 1 41.0259 54.9904 -174.45 - 92 107.311 1176 1 0 40.8231 55.2762 -175.85 - 92 84.3101 1078 0 1 35.7699 62.9654 -204.45 - 92 75.2332 1077 0 1 35.65 63.0811 -204.68 - 92 68.9644 1219 0 0 34.7095 63.9173 -205.85 - 92 148.804 1220 0 0 34.5518 64.05 -206.026 - 92 11.5446 640 0 1 -51.85 32.2596 -204.471 - 92 68.7469 675 0 1 -45.05 7.11402 -204.696 - 92 90.549 674 0 1 -45.05 6.90875 -204.677 - 92 174.074 1155 2 0 47.245 51.1033 -145.85 - 92 158.263 1146 1 1 49.3063 53.8371 -174.45 - 92 132.052 1169 1 0 49.3608 53.9499 -175.851 - 92 115.541 1154 0 1 51.0474 55.7917 -204.45 - 92 179.963 1179 0 0 50.8938 55.8775 -205.851 - 92 28.6095 1086 0 1 37.45 85.6257 -204.634 - 92 116.39 1154 2 0 47.2189 51.05 -146.038 - 92 105.562 1063 1 1 32.7902 34.4146 -174.45 - 92 30.3106 1062 1 1 32.65 34.28 -174.754 - 92 593.613 1067 1 0 32.0578 33.6463 -175.85 - 92 6.9156 1068 1 0 32.1933 33.6503 -176.036 - 92 286.623 1144 4 0 47.0891 48.9473 -85.85 - 92 96.823 1131 3 1 46.264 50.5135 -114.45 - 92 135.514 1152 3 0 46.2297 50.5538 -115.85 - 92 168.393 1123 2 1 44.8369 51.8631 -144.45 - 92 97.8119 1160 2 0 44.6976 52.1002 -145.851 - 92 258.268 1107 1 1 41.5162 56.8411 -174.451 - 92 154.037 1185 1 0 41.3411 57.1031 -175.85 - 92 25.7738 1088 0 1 37.6552 62.8836 -204.45 - 92 89.2191 1087 0 1 37.65 62.8953 -204.501 - 92 46.9889 1215 0 0 37.5256 63.2158 -205.85 - 92 70.5699 1216 0 0 37.5124 63.25 -205.995 - 92 121.925 1130 3 1 46.2266 48.7685 -114.45 - 92 80.1659 1125 2 1 45.2286 48.3712 -144.45 - 92 11.8079 1126 2 1 45.25 48.3477 -144.798 - 92 144.33 1141 2 0 45.306 48.2736 -145.85 - 92 67.709 1140 2 0 45.3236 48.25 -146.183 - 92 228.096 1132 1 1 46.5552 46.1522 -174.45 - 92 148.529 1129 1 0 46.6146 45.9581 -175.85 - 92 146.287 1140 0 1 48.0864 42.1235 -204.45 - 92 77.6711 1109 0 0 48.1936 41.8983 -205.85 - 92 41.612 1108 0 0 48.2158 41.8499 -206.143 +Event: 5 +Number of tracker hits in this event = 84 + 5 89.2166 418 8 1 -96.5074 -101.188 35.55 + 5 117.421 394 8 0 -96.5104 -101.188 34.15 + 5 117.036 417 7 1 -96.5713 -101.201 5.55 + 5 118.853 394 7 0 -96.5752 -101.207 4.15 + 5 122.83 417 6 1 -96.6491 -101.322 -24.45 + 5 389.982 394 6 0 -96.6512 -101.326 -25.85 + 5 402.906 417 5 1 -96.6896 -101.417 -54.45 + 5 131.528 393 5 0 -96.695 -101.421 -55.85 + 5 125.471 416 4 1 -96.8125 -101.524 -84.45 + 5 113.477 393 4 0 -96.8211 -101.528 -85.85 + 5 141.259 415 3 1 -96.9878 -101.636 -114.45 + 5 121.954 392 3 0 -96.9968 -101.64 -115.85 + 5 188.829 414 2 1 -97.1803 -101.721 -144.45 + 5 100.414 392 2 0 -97.1858 -101.725 -145.85 + 5 98.7578 414 1 1 -97.3085 -101.805 -174.45 + 5 144.389 391 1 0 -97.3125 -101.808 -175.85 + 5 128.951 413 0 1 -97.3872 -101.875 -204.45 + 5 126.039 391 0 0 -97.3931 -101.877 -205.85 + 5 70.9266 347 0 0 -16.9798 -110.603 -206.25 + 5 211.29 346 0 0 -16.781 -110.75 -206.078 + 5 184.806 416 1 1 -96.8904 -101.73 -174.45 + 5 89.9604 415 1 1 -96.95 -101.708 -174.57 + 5 126.764 393 1 0 -97.6221 -101.496 -175.85 + 5 21.6809 326 0 1 -114.889 -92.5504 -204.45 + 5 67.7784 325 0 1 -114.95 -92.5382 -204.496 + 5 152.045 324 0 1 -115.15 -92.5032 -204.641 + 5 101.529 323 0 1 -115.35 -92.4412 -204.803 + 5 208.641 440 0 0 -116.671 -92.0558 -205.85 + 5 74.2997 322 0 1 -115.55 -92.5668 -204.64 + 5 49.6148 321 0 1 -115.751 -92.5493 -204.62 + 5 111.109 320 0 1 -115.95 -92.4986 -204.6 + 5 45.6906 319 0 1 -116.15 -92.4006 -204.563 + 5 73.8783 318 0 1 -116.35 -92.3884 -204.503 + 5 68.1672 317 0 1 -116.55 -92.3448 -204.501 + 5 58.815 316 0 1 -116.75 -92.3112 -204.495 + 5 58.59 315 0 1 -116.95 -92.2784 -204.543 + 5 81.2765 314 0 1 -117.15 -92.1712 -204.556 + 5 348.776 313 0 1 -117.35 -91.995 -204.514 + 5 48.7719 312 0 1 -117.55 -91.184 -204.793 + 5 259.311 441 0 0 -118.408 -91.8346 -205.85 + 5 46.1334 442 0 0 -118.547 -91.75 -205.942 + 5 161.823 385 1 0 -97.149 -102.967 -175.85 + 5 271.81 384 1 0 -97.2256 -103.151 -176.071 + 5 252.12 383 1 0 -96.8148 -103.35 -175.939 + 5 132.398 414 5 1 -97.2716 -100.112 -54.4505 + 5 147.24 404 5 0 -97.2039 -99.345 -55.85 + 5 2.28929 405 5 0 -97.1745 -99.15 -56.2404 + 5 249.308 415 4 1 -96.95 -85.371 -84.5157 + 5 70.3318 477 4 0 -97.1723 -84.5787 -85.85 + 5 39.4249 478 4 0 -97.215 -84.45 -86.074 + 5 128.101 386 3 1 -102.8 -66.1496 -114.45 + 5 38.1167 385 3 1 -102.95 -65.9435 -114.771 + 5 48.355 573 3 0 -103.513 -65.3254 -115.85 + 5 136.601 574 3 0 -103.587 -65.25 -115.984 + 5 14.2817 321 2 1 -115.897 -47.5516 -144.45 + 5 76.5242 320 2 1 -115.95 -47.5458 -144.486 + 5 135.318 319 2 1 -116.15 -47.5247 -144.622 + 5 126.287 318 2 1 -116.35 -47.5255 -144.761 + 5 172.991 662 2 0 -117.771 -47.5618 -145.85 + 5 204.257 519 2 0 -112.75 -76.0656 -146.25 + 5 97.7061 520 2 0 -112.382 -76.05 -146.054 + 5 15.8857 343 2 1 -111.397 -75.8205 -144.85 + 5 103.162 344 2 1 -111.35 -75.8104 -144.791 + 5 55.2521 345 2 1 -111.15 -75.8231 -144.594 + 5 91.5114 346 2 1 -110.95 -75.8445 -144.523 + 5 100.784 347 2 1 -110.75 -75.9908 -144.542 + 5 228.451 348 2 1 -110.55 -76.2989 -144.579 + 5 75.7663 349 2 1 -110.35 -76.7634 -144.565 + 5 64.4578 663 2 0 -114.785 -47.2503 -145.85 + 5 34.8685 664 2 0 -114.783 -47.25 -145.852 + 5 67.6212 323 2 1 -115.462 -47.966 -144.85 + 5 59.6876 658 2 0 -116.214 -48.3619 -145.85 + 5 7.99476 313 2 1 -117.51 -47.8654 -144.85 + 5 139.222 396 5 0 -96.6059 -100.928 -55.85 + 5 95.2418 392 4 0 -97.2236 -101.615 -85.8502 + 5 122.008 401 3 1 -99.7934 -102.009 -114.45 + 5 167.274 390 3 0 -99.9813 -102.004 -115.85 + 5 418.262 381 2 1 -103.835 -102.306 -144.45 + 5 121.875 388 2 0 -104.085 -102.391 -145.85 + 5 151.883 354 1 1 -109.153 -103.986 -174.45 + 5 88.9294 380 1 0 -109.319 -104.075 -175.85 + 5 29.611 336 0 1 -112.92 -105.676 -204.45 + 5 84.3259 335 0 1 -112.95 -105.677 -204.56 + 5 108.093 372 0 0 -113.317 -105.686 -205.851 Number of digits in this event = 39 Using G4ParticleGun ... -8.19582 LIN +9.42527 LIN e- -Event: 93 -Number of tracker hits in this event = 51 - 93 55.7757 341 10 0 -34.0967 -111.849 93.9528 - 93 111.259 729 9 1 -34.0954 -111.849 65.55 - 93 110.04 341 9 0 -34.0952 -111.848 64.15 - 93 112.235 729 8 1 -34.0916 -111.822 35.55 - 93 148.175 341 8 0 -34.0898 -111.821 34.15 - 93 102.461 729 7 1 -34.0522 -111.803 5.55 - 93 223.314 341 7 0 -34.0499 -111.803 4.15 - 93 114.005 730 6 1 -34.004 -111.792 -24.45 - 93 116.589 341 6 0 -34.0018 -111.792 -25.85 - 93 389.894 730 5 1 -33.9567 -111.799 -54.45 - 93 185.503 341 5 0 -33.9544 -111.799 -55.85 - 93 366.788 730 4 1 -33.9081 -111.801 -84.45 - 93 102.666 341 4 0 -33.9056 -111.801 -85.85 - 93 104.129 730 3 1 -33.8556 -111.813 -114.45 - 93 126.237 341 3 0 -33.8529 -111.814 -115.85 - 93 106.65 731 2 1 -33.7961 -111.845 -144.45 - 93 121.214 341 2 0 -33.7941 -111.845 -145.85 - 93 103.567 731 1 1 -33.7492 -111.864 -174.45 - 93 122.937 341 1 0 -33.7469 -111.864 -175.85 - 93 234.746 731 0 1 -33.6973 -111.863 -204.45 - 93 352.528 341 0 0 -33.6935 -111.863 -205.85 - 93 69.9315 717 0 1 -36.5453 -121.638 -204.85 - 93 209.045 732 0 1 -33.6375 -111.868 -204.595 - 93 116.803 453 0 1 -89.3721 -120.828 -204.85 - 93 313.446 382 1 0 -107.806 -103.595 -176.25 - 93 58.7573 568 6 0 -97.3134 -66.3714 -26.2493 - 93 70.3231 569 6 0 -97.4161 -66.25 -26.0361 - 93 93.6274 410 6 1 -97.9683 -65.8952 -24.85 - 93 36.4918 409 6 1 -98.15 -65.7949 -24.5585 - 93 128.385 782 0 1 -23.5369 -111.074 -204.45 - 93 52.5096 729 5 1 -34.0502 -111.937 -54.7604 - 93 126.534 337 5 0 -34.5606 -112.675 -55.85 - 93 88.823 336 5 0 -34.6321 -112.75 -55.9638 - 93 78.4304 357 5 0 -86.3813 -108.62 -56.2498 - 93 224.909 358 5 0 -86.516 -108.55 -56.1774 - 93 231.8 359 5 0 -86.8187 -108.35 -56.0457 - 93 130.704 360 5 0 -87.1041 -108.15 -56.0531 - 93 43.3932 35 5 0 -147.36 -173.012 -56.25 - 93 62.0607 34 5 0 -147.359 -173.15 -56.2017 - 93 59.1473 33 5 0 -147.366 -173.35 -56.1441 - 93 96.016 32 5 0 -147.324 -173.55 -56.1083 - 93 15.2379 31 5 0 -147.32 -173.75 -56.2223 - 93 183.362 730 7 1 -34.05 -111.803 5.473 - 93 17.986 731 7 1 -33.8496 -111.922 5.18937 - 93 253.852 340 7 0 -32.2748 -112.062 4.15 - 93 159.464 342 4 0 -33.872 -111.693 -85.85 - 93 85.2742 783 3 1 -23.3221 -116.11 -114.45 - 93 55.9673 782 3 1 -23.45 -116.179 -114.712 - 93 9.49199 317 3 0 -24.4004 -116.728 -115.85 - 93 121.479 316 3 0 -24.43 -116.75 -115.879 - 93 94.3222 343 4 0 -33.9768 -111.55 -86.0347 +Event: 6 +Number of tracker hits in this event = 19 + 6 240.399 175 7 1 -145.137 35.1554 5.55 + 6 126.932 1075 7 0 -145.137 35.1558 4.15 + 6 175.232 175 6 1 -145.132 35.165 -24.45 + 6 128.441 1075 6 0 -145.132 35.1669 -25.85 + 6 117.3 175 5 1 -145.136 35.2061 -54.45 + 6 119.462 1075 5 0 -145.137 35.2084 -55.85 + 6 104.454 175 4 1 -145.147 35.2569 -84.45 + 6 127.579 1076 4 0 -145.148 35.2595 -85.85 + 6 124.129 174 3 1 -145.16 35.3157 -114.45 + 6 114.779 1076 3 0 -145.162 35.3193 -115.85 + 6 342.537 174 2 1 -145.203 35.3908 -144.45 + 6 181.141 1076 2 0 -145.199 35.3938 -145.85 + 6 119.549 175 1 1 -145.117 35.5012 -174.45 + 6 157.385 1077 1 0 -145.107 35.5003 -175.85 + 6 168.318 176 0 1 -144.866 35.4562 -204.45 + 6 133.705 1077 0 0 -144.846 35.461 -205.85 + 6 14.9291 1099 3 0 -12.2486 39.9268 -116.25 + 6 165.633 1722 3 0 56.5764 164.673 -116.25 + 6 39.0626 173 2 1 -145.35 35.3918 -144.541 +Number of digits in this event = 15 +Using G4ParticleGun ... +4.75882 LIN +e- +Event: 7 +Number of tracker hits in this event = 39 + 7 144.391 1126 8 1 45.2502 -129.555 35.55 + 7 143.697 252 8 0 45.2519 -129.557 34.15 + 7 124.807 1126 7 1 45.2766 -129.603 5.55 + 7 307.117 252 7 0 45.2791 -129.605 4.15 + 7 104.26 1126 6 1 45.3287 -129.648 -24.45 + 7 126.635 252 6 0 45.3313 -129.649 -25.85 + 7 103.214 1126 5 1 45.3876 -129.691 -54.45 + 7 109.445 252 5 0 45.3906 -129.693 -55.85 + 7 31.3136 1126 4 1 45.4496 -129.718 -84.45 + 7 92.2494 1127 4 1 45.45 -129.718 -84.5763 + 7 101.314 252 4 0 45.4536 -129.717 -85.85 + 7 205.964 1127 3 1 45.5301 -129.692 -114.45 + 7 316.552 252 3 0 45.534 -129.691 -115.85 + 7 118.806 1127 2 1 45.6087 -129.678 -144.45 + 7 118.792 252 2 0 45.6124 -129.676 -145.85 + 7 180.129 1128 1 1 45.6942 -129.636 -174.45 + 7 100.679 252 1 0 45.6954 -129.63 -175.85 + 7 108.28 1128 0 1 45.7187 -129.49 -204.45 + 7 135.335 253 0 0 45.7208 -129.483 -205.85 + 7 2.7984 234 2 1 -133.15 -105.439 -144.736 + 7 80.6496 233 2 1 -133.35 -105.42 -144.604 + 7 102.759 232 2 1 -133.55 -105.434 -144.623 + 7 178.073 231 2 1 -133.75 -105.468 -144.688 + 7 0.302723 243 4 0 42.2132 -131.55 -86.25 + 7 112.962 242 4 0 42.2129 -131.55 -86.2473 + 7 146.047 1108 4 1 41.8059 -131.596 -84.85 + 7 86.8161 1107 4 1 41.6497 -131.568 -84.6633 + 7 83.1137 1106 4 1 41.45 -131.493 -84.6201 + 7 311.66 1105 4 1 41.2498 -131.502 -84.6351 + 7 372.481 1104 4 1 41.0499 -131.577 -84.6125 + 7 192.367 1103 4 1 40.85 -132.021 -84.5235 + 7 151.556 1115 2 1 43.2027 -127.928 -144.45 + 7 77.0283 262 2 0 43.2925 -127.615 -145.85 + 7 39.5452 263 2 0 43.3062 -127.55 -146.139 + 7 106.339 1118 1 1 43.8269 -121.563 -174.45 + 7 26.1374 295 1 0 43.5537 -120.992 -175.85 + 7 100.438 296 1 0 43.5373 -120.95 -175.956 + 7 119.225 1103 0 1 40.8487 -109.479 -204.45 + 7 99.3208 354 0 0 40.5417 -109.31 -205.85 +Number of digits in this event = 16 +Using G4ParticleGun ... +4.78301 LIN +e- +Event: 8 +Number of tracker hits in this event = 90 + 8 161.828 364 10 1 -107.332 -24.7131 95.55 + 8 118.239 776 10 0 -107.332 -24.714 94.15 + 8 114.286 364 9 1 -107.325 -24.7262 65.55 + 8 327.062 776 9 0 -107.325 -24.7275 64.15 + 8 229.095 364 8 1 -107.318 -24.7517 35.55 + 8 120.893 776 8 0 -107.319 -24.7517 34.15 + 8 121.972 364 7 1 -107.327 -24.7338 5.55 + 8 108.587 776 7 0 -107.326 -24.7279 4.15 + 8 292.682 364 6 1 -107.312 -24.6122 -24.45 + 8 122.423 777 6 0 -107.309 -24.6051 -25.85 + 8 247.413 364 5 1 -107.259 -24.4571 -54.45 + 8 101.484 778 5 0 -107.262 -24.4494 -55.85 + 8 233.398 364 4 1 -107.329 -24.2866 -84.45 + 8 152.52 778 4 0 -107.333 -24.2748 -85.85 + 8 235.139 363 3 1 -107.391 -24.0484 -114.45 + 8 127.995 780 3 0 -107.393 -24.0328 -115.85 + 8 155.549 363 2 1 -107.434 -23.6951 -144.45 + 8 98.6561 781 2 0 -107.438 -23.6741 -145.85 + 8 114.921 363 1 1 -107.512 -23.2502 -174.45 + 8 109.594 784 1 0 -107.509 -23.225 -175.85 + 8 132.995 363 0 1 -107.421 -22.7205 -204.45 + 8 123.729 786 0 0 -107.412 -22.7015 -205.85 + 8 50.2517 1119 13 0 80.5692 44.008 183.75 + 8 85.0597 1120 13 0 80.5752 44.05 183.78 + 8 245.831 362 1 1 -107.55 -23.2227 -174.472 + 8 283.28 785 1 0 -107.837 -22.9288 -175.85 + 8 65.3911 665 1 0 -87.2104 -46.9476 -176.25 + 8 77.9064 664 1 0 -87.2036 -47.05 -176.159 + 8 353.314 663 1 0 -87.1663 -47.25 -176.025 + 8 56.1634 473 1 1 -85.4111 -47.2969 -174.85 + 8 4.2751 474 1 1 -85.2499 -47.2709 -174.843 + 8 184.446 662 1 0 -82.595 -47.45 -175.901 + 8 91.5002 363 6 1 -107.35 -24.7957 -24.538 + 8 269.32 776 6 0 -107.363 -24.7931 -25.85 + 8 135.55 362 5 1 -107.653 -24.7182 -54.45 + 8 362.363 776 5 0 -107.678 -24.7074 -55.85 + 8 108.888 359 4 1 -108.162 -24.5119 -84.45 + 8 153.361 777 4 0 -108.172 -24.5093 -85.85 + 8 128.104 358 3 1 -108.373 -24.4482 -114.45 + 8 142.037 778 3 0 -108.368 -24.4431 -115.85 + 8 123.01 360 2 1 -108.13 -24.4763 -144.45 + 8 351.64 777 2 0 -108.111 -24.485 -145.85 + 8 112.575 776 1 0 -107.621 -24.7302 -175.85 + 8 225.776 366 0 1 -106.784 -24.7485 -204.45 + 8 118.737 776 0 0 -106.754 -24.743 -205.85 + 8 60.2995 397 4 0 -138.229 -100.586 -86.25 + 8 31.1943 66 5 1 -166.827 -98.9642 -54.85 + 8 224.058 65 5 1 -166.95 -98.9544 -54.7314 + 8 52.4115 64 5 1 -167.15 -99.0314 -54.7519 + 8 447.996 363 4 1 -107.472 -24.7628 -84.45 + 8 191.078 776 4 0 -107.476 -24.7589 -85.85 + 8 157.043 776 3 0 -107.547 -24.6795 -115.85 + 8 218.849 362 2 1 -107.582 -24.5372 -144.45 + 8 167.594 361 1 1 -107.796 -24.4702 -174.45 + 8 111.77 777 1 0 -107.804 -24.4682 -175.85 + 8 127.292 361 0 1 -107.942 -24.4315 -204.45 + 8 311.728 778 0 0 -107.944 -24.4383 -205.85 + 8 128.246 883 1 0 -162.478 -3.37446 -176.25 + 8 211.456 882 1 0 -162.659 -3.45 -176.006 + 8 60.6077 779 0 0 -107.762 -24.25 -206.246 + 8 23.5202 914 0 0 -104.841 3.03373 -206.25 + 8 117.853 779 2 0 -107.371 -24.1903 -145.85 + 8 36.6433 388 1 1 -102.393 -15.6888 -174.45 + 8 92.1306 389 1 1 -102.35 -15.6755 -174.597 + 8 25.9526 821 1 0 -101.961 -15.6505 -175.85 + 8 180.748 822 1 0 -101.952 -15.65 -175.881 + 8 149.767 440 0 1 -92.0522 -14.7445 -204.45 + 8 17.5025 441 0 1 -91.95 -15.0718 -204.792 + 8 59.7746 819 0 0 -91.6545 -16.1224 -205.85 + 8 89.2493 818 0 0 -91.6183 -16.25 -205.984 + 8 16.8513 817 0 0 -91.5598 -16.45 -206.202 + 8 20.4995 362 4 1 -107.55 -24.9564 -84.7658 + 8 57.4208 772 4 0 -107.705 -25.5519 -85.85 + 8 74.5842 771 4 0 -107.749 -25.6501 -86.0281 + 8 117.488 339 3 1 -112.286 -48.422 -114.45 + 8 23.6775 340 3 1 -112.15 -48.5532 -114.79 + 8 97.3927 655 3 0 -111.738 -48.9477 -115.85 + 8 123.178 654 3 0 -111.643 -49.05 -116.052 + 8 25.6252 414 2 1 -97.2392 -66.7732 -144.45 + 8 77.1344 413 2 1 -97.3506 -66.8246 -144.468 + 8 0.222766 412 2 1 -97.5502 -66.9937 -144.45 + 8 67.1963 411 2 1 -97.7749 -66.9578 -144.45 + 8 83.0865 410 2 1 -97.95 -67.0442 -144.562 + 8 66.8344 409 2 1 -98.15 -67.1132 -144.695 + 8 26.6241 408 2 1 -98.35 -67.1248 -144.807 + 8 36.1212 552 2 0 -101.735 -69.5975 -145.85 + 8 122.573 551 2 0 -101.813 -69.65 -145.892 + 8 70.2832 550 2 0 -102.026 -69.85 -146.036 + 8 73.6434 549 2 0 -102.099 -70.0504 -146.099 + 8 45.7433 548 2 0 -102.094 -70.25 -146.173 +Number of digits in this event = 45 +Using G4ParticleGun ... +6.65042 LIN +e- +Event: 9 +Number of tracker hits in this event = 120 + 9 138.704 1407 10 1 101.615 19.7587 95.55 + 9 119.406 998 10 0 101.616 19.7591 94.15 + 9 102.835 1407 9 1 101.626 19.7654 65.55 + 9 139.704 998 9 0 101.625 19.7657 64.15 + 9 136.728 1407 8 1 101.608 19.78 35.55 + 9 147.96 998 8 0 101.607 19.7793 34.15 + 9 127.375 1407 7 1 101.606 19.7642 5.55 + 9 147.368 998 7 0 101.607 19.7627 4.15 + 9 479.137 1407 6 1 101.624 19.7315 -24.45 + 9 404.093 998 6 0 101.625 19.7293 -25.85 + 9 147.676 1407 5 1 101.637 19.6781 -54.45 + 9 413.308 998 5 0 101.642 19.677 -55.85 + 9 205.864 1408 4 1 101.754 19.6896 -84.45 + 9 211.837 998 4 0 101.755 19.7077 -85.85 + 9 98.6002 1408 3 1 101.783 20.0846 -114.45 + 9 105.889 1000 3 0 101.796 20.103 -115.85 + 9 372.706 1409 2 1 102.054 20.4703 -144.45 + 9 108.795 1002 2 0 102.065 20.4964 -145.85 + 9 117.087 1410 1 1 102.271 21.0051 -174.45 + 9 111.626 1004 1 0 102.281 21.0338 -175.85 + 9 227.486 1411 0 1 102.504 21.6241 -204.45 + 9 46.1842 1007 0 0 102.519 21.6473 -205.85 + 9 68.1647 1008 0 0 102.521 21.65 -206.017 + 9 82.1407 1383 2 0 -17.1145 96.8446 -146.25 + 9 39.4136 1412 0 1 102.55 21.6429 -204.701 + 9 5.48618 888 6 0 -53.5124 -2.25996 -26.2498 + 9 144.94 889 6 0 -53.5188 -2.25 -26.2402 + 9 96.327 890 6 0 -53.4846 -2.04996 -26.1911 + 9 46.4458 1422 6 0 -12.9179 104.655 -26.25 + 9 14.3323 1344 6 0 35.5467 89.0005 -26.2497 + 9 109.009 1408 2 1 101.751 19.6326 -144.45 + 9 447.756 1407 2 1 101.75 19.6314 -144.481 + 9 110.472 997 2 0 101.706 19.5747 -145.85 + 9 126.779 1399 1 1 100.1 18.9408 -174.45 + 9 250.601 994 1 0 100.059 18.8685 -175.85 + 9 18.1146 993 1 0 100.048 18.85 -176.181 + 9 103.291 1394 0 1 99.1332 17.3033 -204.45 + 9 146.798 985 0 0 99.0917 17.1448 -205.85 + 9 258.489 998 2 0 101.715 19.656 -145.85 + 9 143.18 1403 1 1 100.761 19.9065 -174.451 + 9 225.899 1402 1 1 100.75 19.901 -174.787 + 9 169.872 999 1 0 100.688 19.8827 -175.85 + 9 126.344 1395 0 1 99.282 20.2091 -204.45 + 9 120.17 1000 0 0 99.2348 20.247 -205.85 + 9 67.3115 1001 0 0 99.2296 20.25 -206.007 + 9 76.5278 998 1 0 100.604 19.85 -176.087 + 9 74.454 1793 0 1 178.873 35.1578 -204.45 + 9 157.689 1792 0 1 178.75 35.1388 -204.49 + 9 200.665 979 4 0 73.1983 15.8546 -86.25 + 9 67.4178 1283 2 1 76.85 -78.5944 -144.703 + 9 29.9666 1001 6 0 101.491 20.3804 -25.85 + 9 190.31 1002 6 0 101.475 20.4503 -25.9584 + 9 60.8591 1003 6 0 101.399 20.65 -26.1424 + 9 29.6053 1100 6 0 48.1068 40.2328 -26.25 + 9 319.06 1101 6 0 47.9914 40.25 -26.1947 + 9 364.02 1102 6 0 46.9908 40.4502 -25.9561 + 9 35.0863 1103 6 0 46.621 40.65 -25.889 + 9 0.766191 1118 6 1 43.6543 41.5812 -24.85 + 9 88.6486 1117 6 1 43.65 41.5827 -24.8485 + 9 66.1333 1116 6 1 43.45 41.6248 -24.7753 + 9 48.4259 1115 6 1 43.25 41.699 -24.6843 + 9 98.9925 1114 6 1 43.0496 41.7603 -24.5912 + 9 35.3762 1113 6 1 42.85 41.765 -24.4559 + 9 83.2383 1112 6 1 42.6499 41.6597 -24.482 + 9 4.81052 1111 6 1 42.45 41.502 -24.4556 + 9 326.253 997 6 0 101.824 19.6286 -25.85 + 9 62.8473 1431 5 1 106.5 15.8877 -54.45 + 9 61.2236 1432 5 1 106.55 15.8633 -54.6561 + 9 207.254 978 5 0 106.826 15.7041 -55.85 + 9 135.827 918 5 0 135.292 3.80476 -56.2498 + 9 175.106 919 5 0 135.38 3.8505 -56.2402 + 9 102.709 917 5 0 136.11 3.65 -56.0854 + 9 48.365 1580 5 1 136.336 3.27275 -54.85 + 9 166.985 1581 5 1 136.35 3.24387 -54.7245 + 9 279.88 1582 5 1 136.55 3.49128 -54.4588 + 9 73.2648 977 5 0 106.854 15.65 -56.0276 + 9 518.114 1577 4 1 135.646 -9.47403 -84.45 + 9 453.269 1576 4 1 135.55 -10.3285 -84.4948 + 9 89.4728 841 4 0 135.913 -11.7486 -85.8501 + 9 94.5444 840 4 0 135.947 -11.85 -86.0456 + 9 225.985 830 4 0 145.405 -14.0188 -86.2499 + 9 341.88 831 4 0 145.445 -13.85 -86.1025 + 9 108.262 1578 4 1 135.75 -10.8824 -84.6668 + 9 136.612 1406 6 1 101.548 19.7453 -24.45 + 9 106.628 1409 5 1 102.115 19.0573 -54.45 + 9 145.433 995 5 0 102.218 19.0609 -55.85 + 9 160.396 1421 4 1 104.378 19.087 -84.45 + 9 121.403 995 4 0 104.474 19.0953 -85.85 + 9 131.399 1432 3 1 106.658 19.2164 -114.45 + 9 129.471 995 3 0 106.859 19.0876 -115.85 + 9 118.131 1454 2 1 110.971 16.4355 -144.45 + 9 105.452 981 2 0 111.162 16.355 -145.85 + 9 175.185 1473 1 1 114.829 14.5304 -174.45 + 9 105.097 972 1 0 114.959 14.5044 -175.85 + 9 114.914 1486 0 1 117.522 12.9028 -204.451 + 9 199.257 964 0 0 117.564 12.8853 -205.85 + 9 160.419 1406 5 1 101.533 19.7451 -54.45 + 9 120.244 1407 4 1 101.574 19.6553 -84.45 + 9 117.991 997 4 0 101.58 19.6491 -85.85 + 9 138.781 1407 3 1 101.698 19.5232 -114.45 + 9 104.822 997 3 0 101.716 19.5095 -115.85 + 9 131.252 995 2 0 102.106 19.1976 -145.85 + 9 104.013 1411 1 1 102.387 18.8669 -174.45 + 9 355.75 1413 0 1 102.806 18.6204 -204.45 + 9 172.951 992 0 0 102.812 18.6105 -205.85 + 9 267.069 993 0 0 102.942 18.7351 -205.85 + 9 46.6208 708 1 0 166.695 -38.3145 -176.25 + 9 136.376 1064 9 0 77.7475 32.9758 63.75 + 9 47.8846 1065 9 0 77.6453 33.05 63.7932 + 9 22.3888 991 1 0 100.627 18.265 -175.85 + 9 118.265 990 1 0 100.626 18.25 -175.962 + 9 110.333 1400 0 1 100.153 14.7951 -204.45 + 9 30.9623 973 0 0 100.193 14.6602 -205.85 + 9 87.1069 972 0 0 100.197 14.65 -205.963 + 9 230.659 1000 2 0 101.945 20.1312 -145.85 + 9 356.892 1434 1 1 107.065 26.1285 -174.45 + 9 32.5148 1032 1 0 107.153 26.6097 -175.85 + 9 127.136 1033 1 0 107.162 26.65 -175.962 + 9 112.842 1441 0 1 108.476 37.9494 -204.451 + 9 140.009 1092 0 0 108.457 38.4758 -205.85 +Number of digits in this event = 62 +Using G4ParticleGun ... +7.89972 LIN +e- +Event: 10 +Number of tracker hits in this event = 173 + 10 138.669 1346 10 1 89.3204 13.241 95.55 + 10 142.338 965 10 0 89.3202 13.2416 94.15 + 10 377.378 1346 9 1 89.3166 13.2556 65.55 + 10 541.11 966 9 0 89.3161 13.2553 64.15 + 10 113.717 1346 8 1 89.311 13.2501 35.55 + 10 314.158 965 8 0 89.3112 13.2493 34.15 + 10 122.411 1346 7 1 89.312 13.228 5.55 + 10 238.319 965 7 0 89.3119 13.2269 4.15 + 10 370.351 1346 6 1 89.3113 13.2007 -24.45 + 10 238.58 965 6 0 89.3098 13.1994 -25.85 + 10 234.065 1346 5 1 89.2772 13.1712 -54.45 + 10 279.729 965 5 0 89.2767 13.1682 -55.85 + 10 799.371 1346 4 1 89.2646 13.1045 -84.45 + 10 690.673 965 4 0 89.2635 13.1035 -85.85 + 10 186.026 1345 3 1 89.2453 13.0814 -114.45 + 10 381.854 965 3 0 89.245 13.0818 -115.85 + 10 265.896 1345 2 1 89.2389 13.0926 -144.45 + 10 140.579 965 2 0 89.237 13.0921 -145.85 + 10 104.279 1345 1 1 89.1904 13.083 -174.45 + 10 140.975 965 1 0 89.1877 13.082 -175.85 + 10 228.245 1345 0 1 89.1304 13.0601 -204.45 + 10 184.99 965 0 0 89.1264 13.0584 -205.85 + 10 460.704 1348 3 1 89.7996 13.1415 -114.45 + 10 221.752 1350 2 1 90.2423 12.9537 -144.45 + 10 303.119 964 2 0 90.2764 12.9475 -145.85 + 10 333.523 1353 1 1 90.8577 12.7708 -174.45 + 10 186.327 963 1 0 90.8643 12.7477 -175.85 + 10 140.362 1353 0 1 90.9182 12.2686 -204.45 + 10 195.843 960 0 0 90.912 12.2406 -205.85 + 10 106.981 964 4 0 89.3473 13.014 -85.8502 + 10 149.813 1345 4 1 89.25 13.1122 -84.5124 + 10 101.279 1346 3 1 89.3029 13.0983 -114.45 + 10 155.825 966 2 0 89.1189 13.2695 -145.85 + 10 126.17 1346 1 1 89.2852 12.9802 -174.451 + 10 75.3341 964 1 0 89.2756 12.873 -175.85 + 10 145.063 1344 0 1 89.0264 10.4817 -204.45 + 10 104.558 951 0 0 89.0146 10.291 -205.85 + 10 28.7921 950 0 0 89.0101 10.2499 -206.139 + 10 63.6137 1346 0 1 89.25 10.3685 -204.677 + 10 60.5945 947 0 0 90.1722 9.54242 -205.85 + 10 108.727 946 0 0 90.2836 9.44986 -205.984 + 10 15.6926 891 0 0 101.475 -1.83815 -206.25 + 10 101.469 890 0 0 101.469 -1.85 -206.186 + 10 116.412 1403 0 1 100.909 -1.96421 -204.85 + 10 114.381 1402 0 1 100.743 -1.97608 -204.45 + 10 53.1953 893 0 0 100.431 -1.37528 -205.85 + 10 152.932 894 0 0 100.372 -1.25 -206.043 + 10 6.0541 895 0 0 100.049 -1.04994 -206.245 + 10 71.1404 1338 3 1 87.7492 12.9368 -114.45 + 10 68.9162 1337 3 1 87.65 12.8865 -114.669 + 10 133.707 962 3 0 87.1297 12.5973 -115.85 + 10 0.296716 1259 2 1 71.8507 4.87187 -144.45 + 10 207.902 1258 2 1 71.8498 4.8719 -144.451 + 10 54.0297 1257 2 1 71.65 4.88764 -144.706 + 10 72.1397 924 2 0 70.6894 4.86179 -145.85 + 10 136.07 923 2 0 70.5687 4.85 -145.995 + 10 41.0944 1146 1 1 49.3618 2.20449 -174.45 + 10 67.958 1145 1 1 49.25 2.16008 -174.526 + 10 63.6829 1144 1 1 49.0499 2.10144 -174.668 + 10 23.5026 1143 1 1 48.8495 2.06416 -174.808 + 10 206.993 908 1 0 47.5914 1.79609 -175.85 + 10 32.5894 967 0 1 13.5119 -2.18871 -204.45 + 10 157.085 966 0 1 13.45 -2.21669 -204.515 + 10 91.1737 965 0 1 13.25 -2.2868 -204.66 + 10 3.00294 964 0 1 13.0499 -2.37616 -204.84 + 10 119.249 885 0 0 12.125 -2.89695 -205.85 + 10 62.016 1366 3 1 93.4917 11.3706 -114.45 + 10 74.8754 1365 3 1 93.35 11.386 -114.638 + 10 170.582 957 3 0 92.4698 11.5215 -115.85 + 10 32.4647 1251 2 1 70.3077 11.3599 -144.45 + 10 106.999 1250 2 1 70.2499 11.3236 -144.532 + 10 15.1076 1249 2 1 70.05 11.1982 -144.821 + 10 124.042 952 2 0 69.3233 10.6393 -145.85 + 10 23.2733 951 2 0 69.103 10.45 -146.18 + 10 122.429 1149 1 1 49.9918 -3.35625 -174.45 + 10 32.9789 880 1 0 49.8386 -4.01663 -175.85 + 10 111.433 879 1 0 49.8299 -4.05 -175.916 + 10 49.0355 1136 0 1 47.3771 -17.8801 -204.45 + 10 115.468 79 4 0 -68.6464 -164.15 -86.2275 + 10 148.299 963 3 0 89.5706 12.7673 -115.85 + 10 132.685 1340 2 1 88.1862 13.0536 -144.45 + 10 45.3838 963 2 0 88.0112 12.85 -146.083 + 10 114.562 1323 1 1 84.8025 9.38337 -174.45 + 10 149.514 946 1 0 84.6982 9.28745 -175.85 + 10 184.856 1312 0 1 82.5318 7.31435 -204.45 + 10 104.39 936 0 0 82.4638 7.34324 -205.85 + 10 5.31778 1315 2 1 83.1646 13.6114 -144.85 + 10 41.1455 967 2 0 80.5315 13.5135 -145.85 + 10 25.9681 965 9 0 89.3186 13.25 64.0869 + 10 229.809 1345 8 1 89.1582 13.3659 35.55 + 10 96.8437 966 8 0 89.1575 13.3733 34.15 + 10 146.604 1345 7 1 89.1964 13.498 5.55 + 10 123.12 967 7 0 89.1983 13.5066 4.15 + 10 152.667 1345 6 1 89.2014 13.6629 -24.45 + 10 141.114 968 6 0 89.2106 13.6803 -25.85 + 10 117.909 969 5 0 89.4253 14.0459 -55.85 + 10 121.998 1348 4 1 89.8458 14.3077 -84.45 + 10 123.781 971 4 0 89.86 14.3313 -85.85 + 10 385.237 1350 3 1 90.1796 14.8296 -114.45 + 10 25.599 973 3 0 90.1888 14.8492 -115.85 + 10 284.077 974 3 0 90.1892 14.85 -115.902 + 10 149.682 976 2 0 90.2208 15.395 -145.85 + 10 113.284 1338 1 1 87.7699 17.3195 -174.45 + 10 157.35 985 1 0 87.6622 17.1674 -175.85 + 10 226.814 1327 0 1 85.5609 14.4683 -204.45 + 10 112.931 972 0 0 85.8233 14.5912 -205.85 + 10 118.836 1334 2 1 87.0434 17.9686 -144.45 + 10 139.009 991 2 0 86.656 18.3707 -145.85 + 10 95.4335 992 2 0 86.5842 18.45 -146.107 + 10 40.7264 1298 1 1 79.7515 28.1071 -174.45 + 10 199.994 1299 1 1 79.85 28.18 -174.478 + 10 322.64 1050 1 0 80.0398 30.0536 -175.851 + 10 192.555 1051 1 0 80.077 30.25 -176.088 + 10 116.93 1052 1 0 80.1765 30.45 -176.209 + 10 116.557 1372 1 0 132.599 94.7389 -176.25 + 10 95.1287 1373 1 0 132.616 94.75 -176.232 + 10 81.7049 585 0 0 122.771 -62.85 -206.108 + 10 226.13 584 0 0 122.689 -63.05 -206.049 + 10 130.045 1300 1 1 80.05 28.3532 -174.567 + 10 144.75 1301 1 1 80.25 28.5047 -174.683 + 10 4.61206 1302 1 1 80.4509 28.6887 -174.838 + 10 0.269155 1048 1 0 81.4683 29.8491 -175.85 + 10 88.5373 1049 1 0 81.4691 29.85 -175.851 + 10 76.7436 1053 1 0 82.5049 30.65 -176.165 + 10 115.848 1351 2 1 90.4654 16.1978 -144.45 + 10 165.305 980 2 0 90.4802 16.187 -145.85 + 10 107.287 1355 1 1 91.3035 16.7887 -174.45 + 10 147.713 983 1 0 91.3629 16.794 -175.85 + 10 109.644 1363 0 1 92.8034 16.973 -204.45 + 10 196.75 984 0 0 92.8968 17.0277 -205.85 + 10 86.2244 1349 4 1 89.8814 14.3025 -84.45 + 10 7.86573 1350 4 1 90.15 14.204 -84.8214 + 10 170.735 969 4 0 91.0048 13.9497 -85.85 + 10 38.6611 1354 1 1 90.95 15.1898 -174.733 + 10 87.4081 972 1 0 91.4073 14.5841 -175.85 + 10 223 971 1 0 91.5373 14.4497 -176.103 + 10 84.4431 1420 0 1 104.281 -6.67305 -204.45 + 10 36.1112 1419 0 1 104.15 -6.75563 -204.741 + 10 163.332 864 0 0 103.758 -7.11469 -205.85 + 10 29.6432 863 0 0 103.636 -7.25 -206.153 + 10 146.017 976 1 0 90.798 15.3605 -175.85 + 10 154.856 1350 0 1 90.1529 15.6976 -204.45 + 10 135.81 1342 7 1 88.4559 11.6041 5.55 + 10 122.69 956 7 0 88.8 11.3739 4.15 + 10 139.453 1378 6 1 95.8236 6.65666 -24.45 + 10 125.41 931 6 0 96.1885 6.44332 -25.85 + 10 95.3997 1414 5 1 103.07 2.46817 -54.45 + 10 16.7 1415 5 1 103.15 2.42668 -54.8044 + 10 168.363 911 5 0 103.385 2.30576 -55.85 + 10 113.886 1448 4 1 109.834 -0.866454 -84.45 + 10 178.796 894 4 0 110.127 -1.05298 -85.85 + 10 118.909 1479 3 1 116.009 -4.99273 -114.45 + 10 144.61 874 3 0 116.306 -5.1571 -115.85 + 10 156.508 1511 2 1 122.471 -8.57745 -144.45 + 10 110.295 856 2 0 122.729 -8.66083 -145.85 + 10 133.361 1539 1 1 127.982 -10.3458 -174.45 + 10 132.912 848 1 0 128.32 -10.4178 -175.85 + 10 192.05 1574 0 1 134.968 -11.7049 -204.45 + 10 119.072 841 0 0 135.239 -11.77 -205.85 + 10 145.769 1347 3 1 89.6162 13.7955 -114.45 + 10 120.536 968 3 0 89.6123 13.8008 -115.85 + 10 155.845 1347 2 1 89.5725 13.895 -144.45 + 10 162.061 969 2 0 89.5485 13.9224 -145.85 + 10 130.828 1344 1 1 88.8733 14.3419 -174.45 + 10 128.95 1341 0 1 88.4175 16.2853 -204.45 + 10 231.512 981 0 0 88.4107 16.4132 -205.85 + 10 3.21167 982 0 0 88.4074 16.4501 -206.229 + 10 245.045 569 4 0 20.6696 -66.0571 -86.25 + 10 34.6533 570 4 0 20.6563 -66.0496 -86.2181 + 10 114.094 970 3 0 89.8893 14.245 -115.85 + 10 14.4946 971 3 0 89.8915 14.25 -115.869 + 10 376.09 1401 2 1 100.449 14.6609 -144.45 + 10 517.391 1400 2 1 100.35 14.6842 -144.777 +Number of digits in this event = 95 +Using G4ParticleGun ... +5.40393 LIN +e- +Event: 11 +Number of tracker hits in this event = 30 + 11 111.111 819 10 1 -16.2309 114.047 95.55 + 11 96.674 1469 10 0 -16.231 114.049 94.15 + 11 141.196 819 9 1 -16.225 114.106 65.55 + 11 125.935 1469 9 0 -16.2257 114.108 64.15 + 11 115.262 819 8 1 -16.2426 114.14 35.55 + 11 173.946 1469 8 0 -16.2427 114.141 34.15 + 11 145.932 819 7 1 -16.242 114.167 5.55 + 11 131.365 1470 7 0 -16.241 114.167 4.15 + 11 149.759 819 6 1 -16.2275 114.17 -24.45 + 11 125.936 1470 6 0 -16.2252 114.171 -25.85 + 11 114.679 819 5 1 -16.1703 114.193 -54.45 + 11 118.052 1470 5 0 -16.1661 114.194 -55.85 + 11 115.296 819 4 1 -16.0863 114.215 -84.45 + 11 115.357 1470 4 0 -16.0812 114.217 -85.85 + 11 111.656 820 3 1 -15.9845 114.269 -114.45 + 11 243.972 1470 3 0 -15.979 114.271 -115.85 + 11 132.564 820 2 1 -15.8582 114.296 -144.45 + 11 117.182 1470 2 0 -15.8533 114.298 -145.85 + 11 94.1457 821 1 1 -15.7521 114.324 -174.45 + 11 113.3 1470 1 0 -15.7475 114.324 -175.85 + 11 98.6046 821 0 1 -15.6605 114.34 -204.45 + 11 180.735 1470 0 0 -15.6549 114.341 -205.85 + 11 54.9596 1661 1 0 -22.443 152.443 -176.25 + 11 217.527 166 9 1 -146.948 90.7841 65.55 + 11 41.5933 165 9 1 -146.95 90.3614 65.1527 + 11 33.4048 1336 9 0 -146.382 87.3341 64.15 + 11 132.514 1335 9 0 -146.367 87.2498 64.1248 + 11 58.0202 1334 9 0 -146.31 87.05 64.0827 + 11 33.0793 1333 9 0 -146.304 86.85 64.091 + 11 149.205 169 9 1 -146.223 85.2298 65.15 +Number of digits in this event = 16 +Using G4ParticleGun ... +7.10857 LIN +e- +Event: 12 +Number of tracker hits in this event = 36 + 12 123.035 1169 9 1 53.8645 121.336 65.55 + 12 133.972 1505 9 0 53.8629 121.336 64.15 + 12 150.321 1168 8 1 53.8311 121.335 35.55 + 12 127.544 1505 8 0 53.8309 121.336 34.15 + 12 120.295 1168 7 1 53.8205 121.35 5.55 + 12 122.747 1506 7 0 53.8174 121.352 4.15 + 12 144.706 1168 6 1 53.7672 121.378 -24.45 + 12 163.76 1506 6 0 53.7644 121.378 -25.85 + 12 114.363 1168 5 1 53.715 121.369 -54.45 + 12 101.112 1506 5 0 53.7102 121.371 -55.85 + 12 130.858 1167 4 1 53.6098 121.4 -84.45 + 12 179.823 1506 4 0 53.6086 121.403 -85.85 + 12 93.6268 1167 3 1 53.5887 121.459 -114.45 + 12 331.531 1506 3 0 53.5924 121.464 -115.85 + 12 225.404 1167 2 1 53.6052 121.524 -144.45 + 12 364.087 1506 2 0 53.6045 121.527 -145.85 + 12 286.174 1167 1 1 53.5975 121.59 -174.45 + 12 307.857 1507 1 0 53.597 121.596 -175.85 + 12 497.23 1167 0 1 53.5755 121.735 -204.45 + 12 466.221 1507 0 0 53.5713 121.744 -205.85 + 12 134.21 1000 6 0 13.2719 20.25 -26.2387 + 12 25.4717 1168 0 1 53.6501 121.722 -204.752 + 12 184.773 1508 0 0 53.8111 121.829 -205.85 + 12 112.243 1505 4 0 53.6258 121.35 -85.9064 + 12 197.42 1168 3 1 53.7171 121.37 -114.55 + 12 392.731 1168 2 1 53.693 121.383 -144.45 + 12 102.91 1506 1 0 53.5957 121.484 -175.85 + 12 45.6169 771 7 0 128.218 -25.8254 3.75015 + 12 117.518 770 7 0 128.245 -25.85 3.89994 + 12 4.89833 1536 7 1 127.364 -26.62 5.15004 + 12 407.201 1535 7 1 127.35 -26.6285 5.16518 + 12 131.335 1534 7 1 127.15 -26.8029 5.35606 + 12 127.884 1505 2 0 53.7127 121.333 -145.85 + 12 201.584 1170 1 1 54.0592 121.611 -174.45 + 12 121.403 1170 0 1 54.1139 121.599 -204.45 + 12 3.11189 1506 0 0 54.064 121.55 -206.239 +Number of digits in this event = 28 +Using G4ParticleGun ... +3.70113 LIN +e- +Event: 13 +Number of tracker hits in this event = 19 + 13 139.519 212 8 1 -137.601 17.4734 35.55 + 13 307.761 987 8 0 -137.603 17.4733 34.15 + 13 103.765 212 7 1 -137.643 17.4807 5.55 + 13 127.304 987 7 0 -137.644 17.4813 4.15 + 13 125.741 212 6 1 -137.678 17.4852 -24.45 + 13 111.082 987 6 0 -137.68 17.4863 -25.85 + 13 118.716 212 5 1 -137.715 17.5125 -54.45 + 13 116.255 987 5 0 -137.716 17.5133 -55.85 + 13 148.208 212 4 1 -137.739 17.5304 -84.45 + 13 131.46 987 4 0 -137.74 17.5317 -85.85 + 13 121.56 212 3 1 -137.745 17.554 -114.45 + 13 102.714 987 3 0 -137.746 17.5548 -115.85 + 13 95.6287 211 2 1 -137.781 17.5696 -144.45 + 13 118.116 987 2 0 -137.781 17.5701 -145.85 + 13 141.466 211 1 1 -137.781 17.5808 -174.45 + 13 114.779 987 1 0 -137.779 17.581 -175.85 + 13 123.383 211 0 1 -137.752 17.5864 -204.45 + 13 116.07 987 0 0 -137.749 17.5873 -205.85 + 13 25.6832 140 7 0 38.7366 -152.037 3.75 +Number of digits in this event = 12 +Using G4ParticleGun ... +4.07442 LIN +e- +Event: 14 +Number of tracker hits in this event = 37 + 14 138.852 295 9 1 -121.132 -41.1392 65.55 + 14 242.711 694 9 0 -121.133 -41.1383 64.15 + 14 100.914 294 8 1 -121.152 -41.1123 35.55 + 14 194.61 694 8 0 -121.152 -41.1099 34.15 + 14 121.939 294 7 1 -121.174 -41.0579 5.55 + 14 102.672 694 7 0 -121.173 -41.0532 4.15 + 14 147.603 294 6 1 -121.16 -40.9594 -24.45 + 14 149.539 695 6 0 -121.161 -40.9572 -25.85 + 14 225.669 294 5 1 -121.181 -40.919 -54.45 + 14 252.43 695 5 0 -121.191 -40.9069 -55.85 + 14 125.294 293 4 1 -121.396 -40.6556 -84.45 + 14 131.331 697 4 0 -121.404 -40.6437 -85.85 + 14 119.187 292 3 1 -121.557 -40.3963 -114.45 + 14 119.862 698 3 0 -121.564 -40.3842 -115.85 + 14 164.672 292 2 1 -121.69 -40.138 -144.45 + 14 128.717 699 2 0 -121.697 -40.1277 -145.85 + 14 211.711 291 1 1 -121.834 -39.9281 -174.45 + 14 96.7907 700 1 0 -121.839 -39.9166 -175.85 + 14 108.929 290 0 1 -121.965 -39.6909 -204.45 + 14 173.94 701 0 0 -121.973 -39.6819 -205.85 + 14 120.056 1163 3 0 -119.99 52.65 -116.094 + 14 104.628 1259 5 1 71.8517 93.2014 -54.85 + 14 142.293 292 1 1 -121.75 -39.8426 -174.624 + 14 114.716 297 4 1 -120.632 -41.5393 -84.45 + 14 163.732 692 4 0 -120.607 -41.568 -85.85 + 14 105.71 300 3 1 -120.103 -42.171 -114.45 + 14 120.294 689 3 0 -120.079 -42.1988 -115.85 + 14 123.268 302 2 1 -119.616 -42.7822 -144.45 + 14 219.07 686 2 0 -119.602 -42.8051 -145.85 + 14 189.348 304 1 1 -119.345 -43.2429 -174.45 + 14 101.749 683 1 0 -119.341 -43.2799 -175.85 + 14 108.881 304 0 1 -119.261 -44.0104 -204.45 + 14 136.279 679 0 0 -119.258 -44.0641 -205.85 + 14 23.1329 716 5 0 -125.683 -36.8246 -56.25 + 14 320.413 715 5 0 -125.706 -36.85 -56.1855 + 14 171.95 1128 5 1 45.65 18.8536 -54.7336 + 14 233.387 458 2 1 -88.399 3.07213 -144.85 +Number of digits in this event = 27 +Using G4ParticleGun ... +6.9478 LIN +e- +Event: 15 +Number of tracker hits in this event = 67 + 15 79.3882 899 9 1 -0.19544 134.969 65.4469 + 15 116.681 1574 9 0 -0.195357 134.969 64.15 + 15 214.417 899 8 1 -0.195349 134.974 35.55 + 15 116.404 1574 8 0 -0.196233 134.975 34.15 + 15 124.51 899 7 1 -0.215672 134.987 5.55 + 15 204.045 1574 7 0 -0.216592 134.987 4.15 + 15 114.536 899 6 1 -0.238234 134.982 -24.45 + 15 100.069 1574 6 0 -0.240486 134.981 -25.85 + 15 105.555 898 5 1 -0.286547 134.963 -54.45 + 15 91.8872 1574 5 0 -0.289372 134.962 -55.85 + 15 119.866 898 4 1 -0.344072 134.953 -84.45 + 15 158.139 1574 4 0 -0.347214 134.951 -85.85 + 15 124.561 898 3 1 -0.414099 134.912 -114.45 + 15 212.724 1573 3 0 -0.416104 134.91 -115.85 + 15 297.531 897 2 1 -0.461793 134.87 -144.45 + 15 128.669 1573 2 0 -0.461614 134.867 -145.85 + 15 107.91 897 1 1 -0.459835 134.81 -174.45 + 15 139.458 1573 1 0 -0.45883 134.804 -175.85 + 15 120.638 898 0 1 -0.430576 134.693 -204.45 + 15 167.253 1572 0 0 -0.428775 134.686 -205.85 + 15 9.95476 614 4 0 -3.65478 -57.05 -86.0009 + 15 170.984 879 4 1 -4.15593 -57.3793 -84.85 + 15 126.708 878 4 1 -4.25009 -57.3523 -84.4839 + 15 14.5242 1532 1 0 -88.6123 126.622 -176.25 + 15 332.393 1311 3 0 -39.636 82.3235 -116.25 + 15 34.8972 647 2 1 -50.4927 78.4594 -144.45 + 15 146.605 1545 0 0 -3.7225 129.327 -206.25 + 15 87.1117 880 0 1 -3.97642 129.039 -204.85 + 15 37.1877 879 0 1 -4.05 129.077 -204.585 + 15 286.729 898 1 1 -0.38632 135.103 -174.45 + 15 41.593 1582 1 0 -0.0808343 136.55 -175.85 + 15 42.1771 945 0 1 9.08814 161.158 -204.45 + 15 80.3969 946 0 1 9.25 161.262 -204.503 + 15 63.7318 947 0 1 9.45 161.424 -204.517 + 15 83.0133 948 0 1 9.65 161.558 -204.554 + 15 67.2493 949 0 1 9.85 161.78 -204.57 + 15 150.757 950 0 1 10.05 162.024 -204.545 + 15 51.2921 951 0 1 10.25 162.285 -204.568 + 15 34.0326 952 0 1 10.45 162.384 -204.528 + 15 55.1154 953 0 1 10.687 162.454 -204.45 + 15 117.869 954 0 1 10.85 162.469 -204.509 + 15 79.6251 955 0 1 11.0503 162.493 -204.543 + 15 94.4078 956 0 1 11.2501 162.54 -204.539 + 15 51.1173 957 0 1 11.45 162.504 -204.627 + 15 47.7249 958 0 1 11.65 162.471 -204.687 + 15 71.2896 959 0 1 11.85 162.426 -204.745 + 15 48.8714 960 0 1 12.05 162.476 -204.745 + 15 118.169 961 0 1 12.25 162.547 -204.746 + 15 134.187 962 0 1 12.45 162.538 -204.755 + 15 45.3182 994 0 1 18.85 164.453 -204.547 + 15 59.7997 1577 1 0 -0.106978 135.656 -175.85 + 15 68.3184 1578 1 0 -0.0732603 135.75 -176.004 + 15 30.2014 1579 1 0 -0.0548507 135.95 -176.164 + 15 149.193 911 0 1 2.26907 170.034 -204.45 + 15 172.973 912 0 1 2.45 170.398 -204.639 + 15 105.023 913 0 1 2.65 170.776 -204.761 + 15 6.09439 914 0 1 2.85 171.142 -204.846 + 15 7.13858 1780 0 0 5.50113 176.333 -205.85 + 15 65.3924 1781 0 0 5.50964 176.35 -205.853 + 15 103.534 1782 0 0 5.62666 176.55 -205.898 + 15 58.8079 1783 0 0 5.74082 176.75 -205.937 + 15 69.5648 1784 0 0 5.854 176.95 -205.974 + 15 64.9694 1785 0 0 5.97573 177.15 -206.012 + 15 48.5604 1786 0 0 6.09972 177.35 -206.066 + 15 58.0805 1787 0 0 6.18623 177.55 -206.138 + 15 60.3082 1788 0 0 6.25782 177.75 -206.215 + 15 216.117 1573 7 0 -0.184222 134.95 3.86585 Number of digits in this event = 23 Using G4ParticleGun ... -5.90027 LIN +9.76635 LIN e- -Event: 94 -Number of tracker hits in this event = 69 - 94 165.549 519 10 1 -76.085 74.7247 95.55 - 94 327.045 1273 10 0 -76.0844 74.7235 94.15 - 94 145.317 519 9 1 -76.0729 74.7001 65.55 - 94 113.49 1273 9 0 -76.0727 74.6992 64.15 - 94 137.438 519 8 1 -76.0739 74.6849 35.55 - 94 136.523 1273 8 0 -76.0719 74.6842 34.15 - 94 508.412 520 7 1 -76.0303 74.6743 5.55 - 94 110.811 1273 7 0 -76.0279 74.6732 4.15 - 94 217.437 520 6 1 -75.9678 74.6551 -24.45 - 94 166.361 1273 6 0 -75.9653 74.6572 -25.85 - 94 101.494 520 5 1 -75.9037 74.7019 -54.45 - 94 130.076 1273 5 0 -75.9015 74.7052 -55.85 - 94 38.5234 520 4 1 -75.8504 74.7666 -84.45 - 94 60.7593 521 4 1 -75.85 74.7669 -84.5879 - 94 255.362 1273 4 0 -75.8461 74.7696 -85.85 - 94 131.674 521 3 1 -75.7529 74.8352 -114.45 - 94 116.178 1273 3 0 -75.7462 74.8393 -115.85 - 94 125.411 522 2 1 -75.5889 74.9255 -144.45 - 94 243.955 1274 2 0 -75.5808 74.9306 -145.85 - 94 422.375 523 1 1 -75.4117 75.0414 -174.45 - 94 338.877 1274 1 0 -75.3941 75.043 -175.85 - 94 121.332 525 0 1 -75.0281 75.0866 -204.45 - 94 350.599 1275 0 0 -75.0099 75.0872 -205.85 - 94 178.703 523 0 1 -75.264 75.1411 -204.45 - 94 124.706 76 7 1 -164.75 112.908 5.46992 - 94 104.156 77 7 1 -164.75 113.052 5.49269 - 94 219.91 524 0 1 -75.1191 75.0175 -204.45 - 94 105.722 1274 0 0 -75.0944 75.0316 -205.85 - 94 83.0368 1277 0 0 -73.7471 75.5964 -205.85 - 94 67.4605 1278 0 0 -73.5181 75.65 -206.068 - 94 52.0453 1305 0 0 13.4494 81.2133 -206.25 - 94 29.1532 1304 0 0 13.5731 81.05 -206.239 - 94 157.62 934 0 0 27.0797 6.91915 -206.25 - 94 62.4058 933 0 0 27.2105 6.85 -206.156 - 94 2.48198 935 0 0 27.4333 7.05 -205.856 - 94 167.037 1042 0 1 28.4702 8.09922 -204.85 - 94 240.122 1041 0 1 28.45 8.102 -204.678 - 94 64.5702 1272 6 0 -75.9774 74.65 -25.8925 - 94 106.855 517 6 1 -76.5667 74.5931 -24.85 - 94 84.3029 1275 7 0 -75.8944 75.1129 4.15 - 94 69.0182 1276 7 0 -75.8225 75.25 3.97115 - 94 131.109 1277 7 0 -75.7492 75.45 3.94243 - 94 215.676 526 7 1 -74.8084 75.4401 5.15 - 94 91.0819 1278 7 0 -75.6864 75.65 4.10584 - 94 152.38 1279 7 0 -75.6804 75.8511 3.96337 - 94 44.8239 1280 7 0 -75.6696 76.05 3.83513 - 94 129.493 521 1 1 -75.7198 74.6898 -174.644 - 94 293.019 1273 1 0 -75.7063 74.6823 -175.85 - 94 206.45 518 0 1 -76.3736 77.4475 -204.45 - 94 91.1602 1288 0 0 -76.5291 77.7416 -205.85 - 94 63.2636 1289 0 0 -76.5795 77.8501 -206.089 - 94 9.2105 517 0 1 -76.45 74.356 -204.829 - 94 139.294 1271 0 0 -76.6647 74.3679 -205.85 - 94 17.6208 956 2 0 -95.6593 11.4111 -146.25 - 94 75.4987 927 6 0 -101.95 5.57586 -26.25 - 94 121.745 928 6 0 -101.928 5.65 -26.0091 - 94 373.403 388 6 1 -102.369 6.01414 -24.85 - 94 51.636 387 6 1 -102.55 6.09916 -24.5971 - 94 201.506 955 2 0 -95.7147 11.25 -145.988 - 94 10.9551 398 0 1 -100.406 88.957 -204.85 - 94 182.213 760 2 1 -28.0456 179.241 -144.45 - 94 9.14253 519 6 1 -76.077 74.6617 -24.4501 - 94 200.164 521 6 1 -75.85 74.6717 -24.6569 - 94 12.0297 1280 6 0 -75.6411 76.2226 -25.85 - 94 219.338 1281 6 0 -75.6226 76.25 -25.8603 - 94 102.415 522 6 1 -75.65 74.7065 -24.6264 - 94 86.156 1272 10 0 -76.0508 74.6498 93.9208 - 94 51.0429 1193 10 0 -95.9776 58.8486 93.7501 - 94 218.532 1194 10 0 -95.9401 58.85 93.8867 -Number of digits in this event = 40 +Event: 16 +Number of tracker hits in this event = 37 + 16 149.521 818 11 1 -16.4121 1.82226 125.55 + 16 139.168 908 11 0 -16.4117 1.82202 124.15 + 16 146.757 818 10 1 -16.4052 1.81655 95.55 + 16 130.894 908 10 0 -16.4054 1.81617 94.15 + 16 123.389 818 9 1 -16.4072 1.80902 65.55 + 16 124.77 908 9 0 -16.406 1.80902 64.15 + 16 125.33 818 8 1 -16.3807 1.81293 35.55 + 16 117.598 908 8 0 -16.3805 1.81304 34.15 + 16 102.962 818 7 1 -16.3776 1.81463 5.55 + 16 263.778 908 7 0 -16.3776 1.81466 4.15 + 16 243.714 818 6 1 -16.3792 1.81394 -24.45 + 16 133.56 908 6 0 -16.3801 1.81342 -25.85 + 16 106.143 818 5 1 -16.4008 1.79751 -54.45 + 16 164.896 908 5 0 -16.4021 1.79689 -55.85 + 16 377.255 818 4 1 -16.4313 1.78237 -84.45 + 16 167.493 908 4 0 -16.4322 1.78219 -85.85 + 16 127.881 818 3 1 -16.444 1.77877 -114.45 + 16 146.119 908 3 0 -16.4443 1.78132 -115.85 + 16 436.824 818 2 1 -16.4452 1.83064 -144.45 + 16 377.016 908 2 0 -16.4467 1.83306 -145.85 + 16 219.354 817 1 1 -16.4785 1.88371 -174.45 + 16 101.637 909 1 0 -16.4825 1.88623 -175.85 + 16 134.941 817 0 1 -16.5637 1.9336 -204.45 + 16 150.905 909 0 0 -16.5713 1.93812 -205.85 + 16 140.595 817 4 1 -16.516 1.72989 -84.45 + 16 34.0214 904 4 0 -16.6436 0.871042 -85.85 + 16 188.017 903 4 0 -16.6459 0.85 -85.8867 + 16 217.315 908 1 0 -16.4792 1.75103 -175.85 + 16 146.569 816 0 1 -16.6944 1.69486 -204.45 + 16 238.557 908 0 0 -16.6924 1.69964 -205.85 + 16 114.22 818 1 1 -16.3637 1.78938 -174.45 + 16 104.561 818 0 1 -16.3591 1.77931 -204.45 + 16 16.4374 394 1 0 144.618 -101.325 -176.25 + 16 42.073 393 1 0 144.653 -101.35 -176.243 + 16 23.9186 937 13 1 7.60993 19.1551 185.15 + 16 37.3514 235 1 0 14.3342 -132.95 -175.943 + 16 117.252 909 7 0 -16.368 1.85 3.85232 +Number of digits in this event = 28 Using G4ParticleGun ... -1.33668 LIN +6.64048 LIN e- -Event: 95 -Number of tracker hits in this event = 81 - 95 138.654 1294 11 1 78.9777 -13.5213 125.55 - 95 136.04 832 11 0 78.9752 -13.5211 124.15 - 95 151.541 1294 10 1 78.9198 -13.514 95.55 - 95 101.289 832 10 0 78.9086 -13.514 94.15 - 95 93.8311 1293 9 1 78.6924 -13.5324 65.55 - 95 117.331 832 9 0 78.6773 -13.5421 64.15 - 95 112.187 1291 8 1 78.3684 -13.7227 35.55 - 95 154.424 831 8 0 78.3621 -13.7332 34.15 - 95 109.665 1290 7 1 78.217 -13.9451 5.55 - 95 117.633 830 7 0 78.2152 -13.9589 4.15 - 95 154.755 1290 6 1 78.1748 -14.2736 -24.45 - 95 124.461 828 6 0 78.1697 -14.2867 -25.85 - 95 641.109 1290 5 1 78.0574 -14.5873 -54.45 - 95 253.596 827 5 0 78.0863 -14.5958 -55.85 - 95 148.22 1293 4 1 78.6965 -14.7796 -84.45 - 95 123.33 826 4 0 78.7185 -14.7936 -85.85 - 95 121.671 1295 3 1 79.1619 -15.1017 -114.45 - 95 95.0323 824 3 0 79.1869 -15.12 -115.85 - 95 106.856 1298 2 1 79.6642 -15.5105 -144.45 - 95 117.507 822 2 0 79.6865 -15.5296 -145.85 - 95 136.691 1300 1 1 80.1405 -15.9402 -174.45 - 95 117.063 820 1 0 80.164 -15.9545 -175.85 - 95 102.066 1302 0 1 80.5947 -16.3701 -204.45 - 95 167.885 818 0 0 80.6929 -16.4142 -205.85 - 95 26.0732 1768 3 0 137.478 173.87 -116.25 - 95 88.8878 1769 3 0 137.515 173.95 -116.171 - 95 85.7679 1770 3 0 137.724 174.15 -116.001 - 95 12.6741 1771 3 0 137.939 174.35 -115.869 - 95 110.892 1584 3 1 137.067 178.096 -114.85 - 95 109.521 1583 3 1 136.95 178.438 -114.692 - 95 51.383 1582 3 1 136.75 178.548 -114.674 - 95 269.983 1581 3 1 136.55 178.571 -114.609 - 95 56.4652 1787 3 0 135.932 177.685 -115.85 - 95 96.7794 1786 3 0 135.968 177.55 -115.919 - 95 44.1955 1785 3 0 136.07 177.35 -115.88 - 95 65.7072 1596 3 1 139.412 175.007 -114.85 - 95 7.42566 1767 3 0 139.261 173.559 -115.85 - 95 234.73 1766 3 0 139.253 173.55 -115.865 - 95 492.718 1100 2 0 39.214 40.1034 -146.25 - 95 259.73 1099 2 0 39.1648 40.05 -146.182 - 95 109.342 1289 4 1 78.0295 -14.9274 -84.45 - 95 163.077 825 4 0 78.0213 -14.9421 -85.85 - 95 226.279 1288 3 1 77.8214 -15.3195 -114.45 - 95 111.711 823 3 0 77.8147 -15.34 -115.85 - 95 97.6933 1288 2 1 77.6666 -15.7731 -144.45 - 95 135.511 821 2 0 77.6788 -15.7909 -145.85 - 95 186.415 1289 1 1 77.9055 -16.1186 -174.45 - 95 136.15 819 1 0 77.9185 -16.1337 -175.85 - 95 124.395 1290 0 1 78.1948 -16.5278 -204.45 - 95 119.477 817 0 0 78.23 -16.5448 -205.85 - 95 86.5309 826 5 0 78.3095 -14.773 -55.8502 - 95 135.087 1311 4 1 82.3581 -18.5617 -84.45 - 95 53.7733 805 4 0 82.429 -18.9891 -85.85 - 95 55.6771 804 4 0 82.438 -19.05 -86.0496 - 95 111.172 1319 3 1 83.9394 -27.6001 -114.45 - 95 70.2137 1320 3 1 84.05 -27.7782 -114.725 - 95 273.893 757 3 0 84.5272 -28.5516 -115.851 - 95 187.054 756 3 0 84.5876 -28.65 -115.993 - 95 218.822 1378 2 1 95.8384 -48.5429 -144.45 - 95 42.4374 651 2 0 96.1132 -49.7513 -145.85 - 95 85.6012 650 2 0 96.1306 -49.85 -145.963 - 95 24.4284 649 2 0 96.1587 -50.0504 -146.183 - 95 51.4055 1395 1 1 99.312 -77.1325 -174.45 - 95 105.132 1396 1 1 99.35 -77.2515 -174.581 - 95 12.571 508 1 0 99.4687 -78.4176 -175.85 - 95 78.2233 507 1 0 99.4703 -78.45 -175.883 - 95 123.41 506 1 0 99.4669 -78.65 -176.076 - 95 187.581 1397 0 1 99.5592 -106.787 -204.45 - 95 120.917 1398 0 1 99.7503 -107.3 -204.745 - 95 15.6369 353 0 0 100.932 -109.49 -205.85 - 95 83.5889 352 0 0 100.96 -109.551 -205.879 - 95 71.396 351 0 0 101.034 -109.75 -206.024 - 95 27.8891 350 0 0 101.076 -109.95 -206.178 - 95 19.025 452 0 0 103.276 -89.5174 -206.25 - 95 79.2773 1394 1 1 99.1497 -77.1543 -174.454 - 95 215.345 1393 1 1 98.95 -77.1756 -174.682 - 95 2.55583 513 1 0 98.3123 -77.4475 -175.85 - 95 187.604 512 1 0 98.3063 -77.4501 -175.861 - 95 233.482 1379 2 1 95.95 -48.8623 -144.732 - 95 138.495 1380 2 1 96.15 -48.87 -144.489 - 95 106.207 758 3 0 84.3337 -28.3706 -115.85 -Number of digits in this event = 37 +Event: 17 +Number of tracker hits in this event = 53 + 17 128.928 1412 9 1 102.591 64.3197 65.55 + 17 107.449 1221 9 0 102.591 64.3192 64.15 + 17 118.921 1412 8 1 102.59 64.3043 35.55 + 17 136.392 1221 8 0 102.589 64.3041 34.15 + 17 206.421 1412 7 1 102.571 64.3008 5.55 + 17 130.759 1221 7 0 102.57 64.3002 4.15 + 17 176.02 1411 6 1 102.544 64.2837 -24.45 + 17 401.904 1221 6 0 102.548 64.2827 -25.85 + 17 125.87 1412 5 1 102.63 64.2597 -54.45 + 17 137.481 1221 5 0 102.638 64.2574 -55.85 + 17 342.067 1413 4 1 102.772 64.2454 -84.45 + 17 128.971 1220 4 0 102.772 64.2482 -85.85 + 17 109.763 1413 3 1 102.785 64.2929 -114.45 + 17 109.234 1221 3 0 102.789 64.286 -115.85 + 17 108.612 1413 2 1 102.847 64.126 -144.45 + 17 113.095 1220 2 0 102.846 64.1082 -145.85 + 17 150.674 1413 1 1 102.857 63.7169 -174.45 + 17 116.309 1218 1 0 102.856 63.6911 -175.85 + 17 231.433 1413 0 1 102.845 63.2127 -204.45 + 17 121.228 1215 0 0 102.849 63.1928 -205.85 + 17 81.53 1436 1 0 127.091 107.35 -176.168 + 17 96.7565 1435 1 0 127.221 107.35 -175.979 + 17 140.499 1538 1 1 127.824 106.863 -174.85 + 17 118.666 1412 0 1 102.75 63.3253 -204.629 + 17 569.177 1410 0 1 102.261 64.0582 -204.45 + 17 346.566 1220 0 0 102.18 64.0626 -205.85 + 17 24.523 1225 0 0 101.335 65.2226 -205.85 + 17 228.013 1226 0 0 101.291 65.25 -205.883 + 17 289.841 1412 6 1 102.565 64.309 -24.45 + 17 90.54 1413 5 1 102.892 64.828 -54.45 + 17 148.786 1223 5 0 102.894 64.8366 -55.85 + 17 141.187 1224 4 0 102.858 65.0423 -85.85 + 17 128.023 1412 3 1 102.58 65.333 -114.45 + 17 121.852 1226 3 0 102.583 65.3546 -115.85 + 17 138.038 1412 2 1 102.575 65.709 -144.45 + 17 114.548 1228 2 0 102.573 65.7188 -145.85 + 17 140.45 1411 1 1 102.544 65.8982 -174.45 + 17 278.758 1228 1 0 102.521 65.8383 -175.851 + 17 145.738 1414 5 1 103.053 65.3165 -54.45 + 17 104.454 1226 5 0 103.09 65.3642 -55.85 + 17 104.351 1418 4 1 103.832 66.264 -84.45 + 17 112.911 1231 4 0 103.868 66.3165 -85.85 + 17 156.723 1422 3 1 104.684 67.2864 -114.45 + 17 297.427 1236 3 0 104.718 67.3564 -115.85 + 17 106.113 1426 2 1 105.458 68.9633 -144.45 + 17 94.2969 1244 2 0 105.459 69.0449 -145.85 + 17 169.316 1245 2 0 105.459 69.05 -145.938 + 17 238.623 1426 1 1 105.518 70.6356 -174.45 + 17 144.401 1253 1 0 105.52 70.6811 -175.85 + 17 131.829 1427 0 1 105.579 71.5287 -204.45 + 17 145.073 1257 0 0 105.612 71.5738 -205.85 + 17 256.386 1225 5 0 102.474 65.0925 -55.85 + 17 41.8269 1224 5 0 102.439 65.05 -55.8958 +Number of digits in this event = 36 Using G4ParticleGun ... -8.27315 LIN +9.2665 LIN e- -Event: 96 -Number of tracker hits in this event = 59 - 96 145.784 910 8 1 2.0618 -138.388 35.55 - 96 120.79 208 8 0 2.0607 -138.388 34.15 - 96 135.859 909 7 1 2.03722 -138.384 5.55 - 96 112.968 208 7 0 2.03653 -138.383 4.15 - 96 148.264 909 6 1 2.0265 -138.36 -24.45 - 96 195.287 208 6 0 2.02567 -138.359 -25.85 - 96 138.09 909 5 1 2.00735 -138.346 -54.45 - 96 126.572 209 5 0 2.0062 -138.345 -55.85 - 96 444.43 909 4 1 1.96935 -138.344 -84.45 - 96 328.827 209 4 0 1.96796 -138.341 -85.85 - 96 896.155 909 3 1 1.93848 -138.315 -114.45 - 96 657.432 209 3 0 1.94 -138.319 -115.85 - 96 344.007 909 2 1 1.96542 -138.381 -144.45 - 96 327.5 208 2 0 1.97311 -138.384 -145.85 - 96 365.695 910 1 1 2.12149 -138.427 -174.45 - 96 287.485 208 1 0 2.12827 -138.427 -175.85 - 96 195.875 911 0 1 2.27061 -138.462 -204.45 - 96 244.651 208 0 0 2.27911 -138.464 -205.85 - 96 166.249 205 0 0 2.06605 -139.057 -205.85 - 96 313.472 204 0 0 2.03956 -139.15 -205.976 - 96 66.9855 203 0 0 1.94642 -139.35 -206.147 - 96 113.795 908 2 1 1.73392 -138.029 -144.45 - 96 97.2237 210 2 0 1.71872 -137.995 -145.85 - 96 106.233 906 1 1 1.41092 -137.289 -174.45 - 96 291.527 214 1 0 1.42071 -137.256 -175.85 - 96 300.145 907 0 1 1.60854 -136.617 -204.45 - 96 268.85 217 0 0 1.6104 -136.607 -205.85 - 96 73.7647 908 0 1 1.65007 -136.41 -204.715 - 96 315.088 909 0 1 1.85 -136.422 -204.795 - 96 200.474 214 0 0 2.69792 -137.289 -205.85 - 96 143.163 215 0 0 3.02626 -137.15 -206.029 - 96 98.744 918 0 1 3.70855 -136.833 -204.85 - 96 144.346 919 0 1 3.85002 -136.822 -204.727 - 96 20.3187 213 0 0 2.81983 -137.35 -205.882 - 96 15.6628 910 0 1 2.25 -136.417 -204.84 - 96 137.784 904 0 1 0.919167 -136.604 -204.45 - 96 72.4691 935 0 1 7.08831 -137.344 -204.45 - 96 84.6452 936 0 1 7.25 -137.443 -204.637 - 96 7.69085 937 0 1 7.45 -137.585 -204.826 - 96 139.995 207 0 0 8.84818 -138.551 -205.987 - 96 76.8714 206 0 0 9.13893 -138.75 -206.203 - 96 126.47 910 2 1 2.07629 -138.507 -144.45 - 96 218.393 912 0 1 2.61271 -138.206 -204.45 - 96 297.378 209 0 0 2.63335 -138.19 -205.85 - 96 300.196 858 4 1 -8.33829 38.8511 -84.85 - 96 115.559 911 1 1 2.25 -138.514 -174.575 - 96 46.5597 208 3 0 1.94229 -138.35 -116.136 - 96 339.141 97 3 0 -79.097 -160.59 -116.25 - 96 55.3652 98 3 0 -79.3245 -160.55 -116.145 - 96 59.483 505 4 1 -78.8843 -158.68 -84.45 - 96 243.484 909 1 1 1.85419 -138.753 -174.45 - 96 185.641 206 1 0 1.85921 -138.767 -175.85 - 96 58.116 916 0 1 3.33384 -76.1223 -204.45 - 96 80.4174 324 1 0 -7.82564 -115.234 -176.25 - 96 158.104 908 1 1 1.84975 -138.756 -174.735 - 96 112.446 209 2 0 1.9373 -138.29 -145.85 - 96 176.457 209 1 0 1.90076 -138.272 -175.85 - 96 249.342 910 7 1 2.05 -138.484 5.48829 - 96 123.572 911 7 1 2.25 -138.266 5.33181 -Number of digits in this event = 41 +Event: 18 +Number of tracker hits in this event = 32 + 18 117.153 662 11 1 -47.5077 44.976 125.55 + 18 121.209 1124 11 0 -47.5077 44.9758 124.15 + 18 102.292 662 10 1 -47.5095 44.971 95.55 + 18 125.752 1124 10 0 -47.5096 44.9707 94.15 + 18 114.42 662 9 1 -47.5133 44.968 65.55 + 18 312.793 1124 9 0 -47.5126 44.9671 64.15 + 18 148.482 662 8 1 -47.4964 44.9468 35.55 + 18 175.225 1124 8 0 -47.4957 44.9449 34.15 + 18 138.679 662 7 1 -47.4801 44.9126 5.55 + 18 156.458 1124 7 0 -47.4771 44.9128 4.15 + 18 121.062 663 6 1 -47.4163 44.9123 -24.45 + 18 140.787 1124 6 0 -47.4129 44.9125 -25.85 + 18 133.747 663 5 1 -47.3449 44.9302 -54.45 + 18 176.329 1124 5 0 -47.3406 44.9317 -55.85 + 18 122.465 663 4 1 -47.2524 44.9572 -84.45 + 18 148.952 1124 4 0 -47.2484 44.9592 -85.85 + 18 482.864 664 3 1 -47.1672 45.0006 -114.45 + 18 180.658 1124 3 0 -47.1634 45.0022 -115.85 + 18 212.814 664 2 1 -47.0884 45.0365 -144.45 + 18 226.965 1124 2 0 -47.0852 45.0387 -145.85 + 18 122.873 665 1 1 -47.0211 45.0867 -174.45 + 18 105.123 1125 1 0 -47.0176 45.0893 -175.85 + 18 110.993 665 0 1 -46.9464 45.1433 -204.45 + 18 93.4212 1125 0 0 -46.9448 45.1482 -205.85 + 18 86.5057 603 1 0 -27.343 -59.426 -176.25 + 18 68.0756 663 3 1 -47.2502 44.9832 -114.746 + 18 100.509 663 7 1 -47.45 44.8305 5.40877 + 18 25.3108 1120 7 0 -47.1523 44.0897 4.15 + 18 100.164 1119 7 0 -47.1313 44.05 4.08495 + 18 12.9341 1118 7 0 -46.9838 43.85 3.77782 + 18 227.197 1314 9 0 -109.136 83.0312 63.75 + 18 155.512 1313 9 0 -109.291 82.85 63.968 +Number of digits in this event = 22 Using G4ParticleGun ... -5.26438 LIN +1.28117 LIN e- -Event: 97 -Number of tracker hits in this event = 106 - 97 158.523 1094 10 1 38.8988 79.1866 95.55 - 97 100.772 1295 10 0 38.8989 79.1884 94.15 - 97 102.281 1094 9 1 38.8958 79.2163 65.55 - 97 191.989 1295 9 0 38.8964 79.2178 64.15 - 97 184.353 1094 8 1 38.9128 79.2458 35.55 - 97 233.716 1295 8 0 38.9129 79.2463 34.15 - 97 286.505 1094 7 1 38.9096 79.256 5.55 - 97 123.216 1295 7 0 38.8391 79.1966 4.15 - 97 164.005 1087 6 1 37.561 77.5999 -24.45 - 97 137.665 1286 6 0 37.4151 77.4311 -25.8506 - 97 261.758 1072 5 1 34.5216 73.8682 -54.45 - 97 153.118 1267 5 0 34.4084 73.6343 -55.85 - 97 103.158 1056 4 1 31.3767 68.7292 -84.45 - 97 9.07099 1242 4 0 31.1204 68.4589 -85.85 - 97 120.859 1241 4 0 31.1121 68.45 -85.8954 - 97 195.815 1029 3 1 25.9795 62.5918 -114.45 - 97 142.348 1212 3 0 25.748 62.4774 -115.85 - 97 8.88137 1211 3 0 25.6851 62.45 -116.212 - 97 222.115 1002 2 1 20.5457 60.1666 -144.45 - 97 151.063 1200 2 0 20.2487 60.2143 -145.85 - 97 150.206 972 1 1 14.6235 61.7028 -174.45 - 97 243.469 1207 1 0 14.2334 61.5707 -175.851 - 97 8.98563 930 0 1 6.062 58.9834 -204.45 - 97 93.3131 929 0 1 6.05 58.9848 -204.484 - 97 116.228 1194 0 0 5.6117 59.0288 -205.85 - 97 49.6673 268 0 1 -126.416 176.252 -204.85 - 97 146.983 1001 2 1 20.45 59.9574 -144.621 - 97 46.3467 1193 2 0 20.6112 58.7592 -145.85 - 97 80.7947 1192 2 0 20.6293 58.6497 -145.957 - 97 33.4585 1191 2 0 20.6658 58.4498 -146.191 - 97 115.159 1006 1 1 21.4366 35.8984 -174.45 - 97 28.4413 1005 1 1 21.25 35.8593 -174.778 - 97 3.04307 1077 1 0 20.4267 35.4532 -175.85 - 97 180.456 1076 1 0 20.4202 35.4499 -175.858 - 97 61.4881 1197 1 0 19.3893 59.4715 -176.25 - 97 138.278 1198 1 0 19.5262 59.6501 -176.119 - 97 146.013 1199 1 0 19.8727 59.85 -175.916 - 97 177.374 1200 1 0 20.3176 60.05 -175.951 - 97 31.9331 1208 1 0 -12.9387 61.65 -176.198 - 97 112.337 1635 1 0 -29.7834 147.314 -176.25 - 97 95.1729 1001 1 1 20.3357 61.4571 -174.85 - 97 166.14 1002 1 1 20.45 61.6731 -174.752 - 97 257.646 1003 1 1 20.65 61.9001 -174.645 - 97 67.0319 934 0 1 7.05 45.7211 -204.57 - 97 23.5429 1127 0 0 7.47287 45.4863 -205.85 - 97 71.9965 1126 0 0 7.50856 45.45 -205.9 - 97 351.664 1125 0 0 7.52347 45.25 -205.996 - 97 31.9891 1073 5 1 34.65 73.9053 -54.7422 - 97 34.1604 1270 5 0 34.947 74.2084 -55.8501 - 97 89.26 1271 5 0 34.9842 74.25 -55.9833 - 97 164.578 1311 5 0 30.1665 82.3209 -56.2499 - 97 269.178 1053 5 1 30.7405 83.0375 -54.8497 - 97 44.4896 1054 5 1 30.85 83.211 -54.7486 - 97 231.046 1094 5 1 38.9844 79.3518 -54.45 - 97 294.689 1296 5 0 39.0151 79.3815 -55.85 - 97 154.166 1098 4 1 39.7732 80.101 -84.45 - 97 219.478 1300 4 0 39.8179 80.1229 -85.85 - 97 117.377 1102 3 1 40.5687 80.5645 -114.45 - 97 191.218 1302 3 0 40.5857 80.4986 -115.85 - 97 119.022 1105 2 1 41.1354 79.012 -144.45 - 97 20.7347 1294 2 0 41.0937 78.8601 -145.85 - 97 86.0691 1293 2 0 41.0922 78.85 -145.927 - 97 128.89 1108 1 1 41.7194 74.2411 -174.45 - 97 102.583 1269 1 0 41.9025 73.9746 -175.851 - 97 38.5825 1124 0 1 44.9241 68.3697 -204.45 - 97 121.414 1123 0 1 44.85 68.4197 -204.554 - 97 22.5134 1244 0 0 44.0574 69.0294 -205.85 - 97 143.978 1245 0 0 44.031 69.05 -205.894 - 97 147.773 1318 0 0 40.9585 83.6633 -206.25 - 97 241.57 1108 0 1 41.6913 83.6378 -204.85 - 97 100.96 1109 0 1 41.85 83.5882 -204.62 - 97 80.4098 1107 0 1 41.6498 83.1096 -204.542 - 97 110.6 1106 0 1 41.45 82.9282 -204.626 - 97 275.225 1105 0 1 41.25 82.7245 -204.632 - 97 131.254 1104 0 1 41.05 82.3874 -204.563 - 97 21.943 1303 0 0 41.8262 80.698 -205.85 - 97 145.558 1302 0 0 41.8569 80.65 -205.916 - 97 110.738 1299 0 0 80.5991 79.9671 -206.25 - 97 25.1004 1121 1 1 44.3292 115.98 -174.85 - 97 124.597 1094 4 1 38.8724 80.2407 -84.45 - 97 131.814 1096 3 1 39.3321 80.3941 -114.45 - 97 103.446 1301 3 0 39.3275 80.2954 -115.85 - 97 116.519 1095 2 1 39.1618 77.8718 -144.45 - 97 132.802 1288 2 0 39.1444 77.7933 -145.85 - 97 31.5603 1093 1 1 38.7696 75.8445 -174.45 - 97 88.4877 1094 1 1 38.8501 75.9194 -174.485 - 97 80.6242 1095 1 1 39.0505 76.1037 -174.569 - 97 64.2875 1096 1 1 39.2503 76.2869 -174.65 - 97 111.127 1097 1 1 39.45 76.4679 -174.732 - 97 29.938 1098 1 1 39.6502 76.65 -174.815 - 97 46.9337 1294 1 0 42.1759 78.94 -175.85 - 97 76.591 1295 1 0 42.2974 79.0501 -175.899 - 97 80.4991 1296 1 0 42.5177 79.25 -175.989 - 97 98.7783 1297 1 0 42.7391 79.45 -176.08 - 97 78.5464 1298 1 0 42.9569 79.65 -176.17 - 97 80.8754 1446 0 1 109.39 142.096 -204.45 - 97 98.4273 1447 0 1 109.55 142.237 -204.541 - 97 73.0269 1448 0 1 109.75 142.416 -204.652 - 97 56.7741 1449 0 1 109.95 142.599 -204.763 - 97 17.5731 1620 0 0 111.789 144.308 -205.85 - 97 157.673 1621 0 0 111.834 144.35 -205.877 - 97 75.8355 1622 0 0 112.045 144.55 -206.005 - 97 85.294 1623 0 0 112.255 144.75 -206.13 - 97 75.4701 1468 0 1 113.755 144.077 -204.85 - 97 102.348 1467 0 1 113.75 144.058 -204.777 - 97 59.483 1558 9 0 70.9105 131.75 64.1348 +Event: 19 +Number of tracker hits in this event = 102 + 19 128.267 628 10 1 -54.3532 99.9737 95.55 + 19 112.057 1399 10 0 -54.3494 99.9709 94.15 + 19 118.783 629 9 1 -54.2454 99.8878 65.55 + 19 164.549 1398 9 0 -54.2417 99.8764 64.15 + 19 142.16 629 8 1 -54.1571 99.6361 35.55 + 19 120.727 1397 8 0 -54.152 99.631 34.15 + 19 123.576 629 7 1 -54.0584 99.5416 5.55 + 19 133.822 1396 7 0 -54.0536 99.5323 4.15 + 19 382.065 630 6 1 -53.9614 99.3449 -24.45 + 19 339.998 1395 6 0 -53.9519 99.33 -25.85 + 19 164.309 631 5 1 -53.7788 99.0165 -54.45 + 19 146.906 1394 5 0 -53.7734 99.0135 -55.85 + 19 142.612 632 4 1 -53.6431 98.9699 -84.45 + 19 160.772 1394 4 0 -53.635 98.9651 -85.85 + 19 117.172 633 3 1 -53.4412 98.8392 -114.45 + 19 223.941 1393 3 0 -53.4306 98.836 -115.85 + 19 93.5747 634 2 1 -53.1767 98.7916 -144.45 + 19 132.021 1393 2 0 -53.1685 98.7889 -145.85 + 19 257.593 635 1 1 -52.9955 98.7525 -174.45 + 19 52.9926 1393 1 0 -52.9932 98.7502 -175.85 + 19 65.3283 1392 1 0 -52.993 98.75 -175.982 + 19 112.781 635 0 1 -52.9297 98.7249 -204.45 + 19 122.523 1392 0 0 -52.9308 98.7206 -205.85 + 19 46.0614 1784 2 0 -72.5893 176.95 -146.133 + 19 38.0779 542 2 1 -71.4957 178.326 -144.85 + 19 42.9044 543 2 1 -71.45 178.402 -144.807 + 19 19.8516 1782 2 0 -69.2297 176.691 -145.85 + 19 3.91989 573 2 1 -65.2721 169.086 -144.85 + 19 4.16728 1736 2 0 -60.3733 167.399 -145.85 + 19 77.3828 654 2 1 -49.1832 166.219 -144.85 + 19 157.543 1729 2 0 -47.3487 166.043 -145.85 + 19 21.5337 629 6 1 -54.05 98.9888 -24.7983 + 19 180.966 1391 6 0 -54.3211 98.537 -25.85 + 19 14.5781 588 5 1 -62.4289 85.6754 -54.4507 + 19 130.284 587 5 1 -62.4501 85.6521 -54.4953 + 19 284.198 1324 5 0 -63.1341 85.0167 -55.85 + 19 18.5054 500 4 1 -80.0044 74.2062 -84.45 + 19 90.6974 499 4 1 -80.05 74.1976 -84.503 + 19 39.885 498 4 1 -80.25 74.1695 -84.7534 + 19 141.651 1270 4 0 -81.0956 74.09 -85.85 + 19 42.22 404 3 1 -99.2777 73.3334 -114.45 + 19 160.916 403 3 1 -99.35 73.4158 -114.55 + 19 106.933 1270 3 0 -100.231 74.1282 -115.85 + 19 133.715 1271 3 0 -100.412 74.25 -116.095 + 19 142.032 287 2 1 -122.643 85.9624 -144.45 + 19 183.758 1329 2 0 -122.858 85.9662 -145.85 + 19 38.8005 292 1 1 -121.651 80.1875 -174.451 + 19 89.1775 291 1 1 -121.75 80.1381 -174.54 + 19 51.0334 290 1 1 -121.95 80.056 -174.634 + 19 99.423 289 1 1 -122.15 80.0355 -174.732 + 19 75.3815 288 1 1 -122.35 80.0165 -174.777 + 19 87.0986 287 1 1 -122.55 80.017 -174.798 + 19 101.849 286 1 1 -122.75 79.9337 -174.735 + 19 77.6562 285 1 1 -122.95 79.8278 -174.802 + 19 68.4335 284 1 1 -123.15 79.811 -174.79 + 19 63.205 283 1 1 -123.35 79.8507 -174.738 + 19 7.70204 282 1 1 -123.551 79.8997 -174.74 + 19 63.1722 219 1 1 -136.15 89.7367 -174.48 + 19 9.09783 218 1 1 -136.35 89.8276 -174.824 + 19 20.9485 175 0 1 -145.117 92.2265 -204.45 + 19 74.5542 174 0 1 -145.15 92.223 -204.535 + 19 126.655 1361 0 0 -145.364 92.3702 -205.85 + 19 206.047 1325 5 0 -63.2508 85.05 -56.0997 + 19 20.1505 642 5 1 -51.4597 100.428 -54.45 + 19 127.992 643 5 1 -51.45 100.428 -54.5128 + 19 109.867 1401 5 0 -51.2758 100.393 -55.85 + 19 118.301 657 4 1 -48.4641 98.948 -84.45 + 19 30.4829 1391 4 0 -48.7434 98.389 -85.8501 + 19 92.1559 1390 4 0 -48.7623 98.35 -85.9446 + 19 25.1049 621 3 1 -55.8121 87.9624 -114.45 + 19 143.764 620 3 1 -55.85 87.9003 -114.511 + 19 14.3953 619 3 1 -56.05 87.5779 -114.823 + 19 0.354472 1332 3 0 -56.7086 86.4504 -115.85 + 19 84.7899 1331 3 0 -56.7088 86.45 -115.85 + 19 81.6167 1330 3 0 -56.8286 86.25 -116.047 + 19 38.0017 525 2 1 -74.9587 58.802 -144.45 + 19 73.1128 524 2 1 -75.0501 58.7535 -144.507 + 19 65.3606 523 2 1 -75.25 58.6401 -144.639 + 19 84.0533 522 2 1 -75.45 58.5246 -144.765 + 19 64.0243 1186 2 0 -77.4711 57.3445 -145.85 + 19 114.964 1185 2 0 -77.6301 57.2498 -145.937 + 19 84.2826 1184 2 0 -77.9353 57.05 -146.114 + 19 0.932994 1183 2 0 -78.0533 56.85 -146.247 + 19 82.9501 747 2 0 -141.245 -30.6089 -146.25 + 19 105.196 746 2 0 -141.281 -30.65 -146.225 + 19 133.808 745 2 0 -141.497 -30.85 -146.094 + 19 42.2924 744 2 0 -141.763 -31.05 -145.913 + 19 8.20294 185 2 1 -143.124 -31.959 -144.85 + 19 80.5833 184 2 1 -143.15 -31.9761 -144.83 + 19 171.822 183 2 1 -143.35 -32.1334 -144.67 + 19 211.002 182 2 1 -143.55 -32.3443 -144.523 + 19 57.3625 181 2 1 -143.836 -32.0256 -144.45 + 19 94.7414 748 2 0 -142.568 -30.45 -145.971 + 19 57.769 749 2 0 -142.446 -30.25 -146.091 + 19 61.3503 750 2 0 -142.31 -30.0499 -146.162 + 19 100.477 751 2 0 -142.158 -29.85 -146.22 + 19 67.7394 1280 2 0 -37.2313 76.1985 -146.25 + 19 96.0705 1279 2 0 -37.2991 76.05 -146.127 + 19 7.10769 1278 2 0 -37.5066 75.85 -146.23 + 19 134.083 1008 2 0 -49.271 21.8276 -146.25 + 19 108.804 652 2 1 -49.6182 21.155 -144.85 + 19 321.631 653 2 1 -49.45 21.1266 -144.566 +Number of digits in this event = 36 +Using G4ParticleGun ... +6.06952 LIN +e- +Event: 20 +Number of tracker hits in this event = 25 + 20 131.71 390 9 1 -102.051 66.025 65.55 + 20 128.888 1229 9 0 -102.049 66.0265 64.15 + 20 126.373 390 8 1 -102.015 66.058 35.55 + 20 136.589 1230 8 0 -102.015 66.0602 34.15 + 20 194.666 390 7 1 -101.993 66.1028 5.55 + 20 130.798 1230 7 0 -101.99 66.1065 4.15 + 20 123.961 391 6 1 -101.922 66.1823 -24.45 + 20 107.27 1230 6 0 -101.918 66.1854 -25.85 + 20 111.536 391 5 1 -101.85 66.2524 -54.45 + 20 111.811 1231 5 0 -101.846 66.2553 -55.85 + 20 101.864 391 4 1 -101.771 66.3159 -84.45 + 20 137.224 1231 4 0 -101.767 66.3199 -85.85 + 20 123.486 392 3 1 -101.677 66.4029 -114.45 + 20 104.96 1231 3 0 -101.675 66.4065 -115.85 + 20 105.671 392 2 1 -101.627 66.4778 -144.45 + 20 93.2933 1232 2 0 -101.624 66.482 -145.85 + 20 111.421 392 1 1 -101.554 66.5654 -174.45 + 20 146.047 1232 1 0 -101.55 66.5702 -175.85 + 20 239.005 393 0 1 -101.463 66.6683 -204.45 + 20 261.867 1233 0 0 -101.456 66.6762 -205.85 + 20 101.29 1417 5 0 -87.9849 103.574 -56.25 + 20 195.291 392 0 1 -101.577 66.6062 -204.45 + 20 8.34286 391 0 1 -101.75 66.4639 -204.82 + 20 41.1835 1230 0 0 -102.246 66.0659 -205.85 + 20 116.236 1229 0 0 -102.265 66.05 -205.89 +Number of digits in this event = 15 +Using G4ParticleGun ... +5.18273 LIN +e- +Event: 21 +Number of tracker hits in this event = 38 + 21 101.863 647 11 1 -50.4642 -57.8476 125.55 + 21 124.441 611 11 0 -50.4655 -57.8492 124.15 + 21 141.149 647 10 1 -50.4931 -57.8799 95.55 + 21 184.596 610 10 0 -50.4922 -57.8806 94.15 + 21 120.313 647 9 1 -50.4697 -57.8938 65.55 + 21 168.231 610 9 0 -50.4659 -57.895 64.15 + 21 297.741 648 8 1 -50.3827 -57.9179 35.55 + 21 119.889 610 8 0 -50.3766 -57.9185 34.15 + 21 133.039 648 7 1 -50.2536 -57.9265 5.55 + 21 125.749 610 7 0 -50.2467 -57.9267 4.15 + 21 146.745 649 6 1 -50.1116 -57.9248 -24.45 + 21 124.901 610 6 0 -50.1053 -57.9259 -25.85 + 21 126.169 650 5 1 -49.9777 -57.9418 -54.45 + 21 144.77 610 5 0 -49.9682 -57.9423 -55.85 + 21 169.257 651 4 1 -49.7731 -57.9526 -84.45 + 21 137.475 610 4 0 -49.764 -57.9534 -85.85 + 21 190.413 652 3 1 -49.5735 -57.9725 -114.45 + 21 179.917 610 3 0 -49.564 -57.9746 -115.85 + 21 327.273 653 2 1 -49.3629 -58.0134 -144.45 + 21 121.29 610 2 0 -49.3524 -58.0169 -145.85 + 21 113.775 654 1 1 -49.1389 -58.0859 -174.45 + 21 248.927 609 1 0 -49.1274 -58.0873 -175.85 + 21 127.787 655 0 1 -48.8977 -58.1067 -204.45 + 21 138.608 609 0 0 -48.8844 -58.1087 -205.85 + 21 19.8016 512 3 1 -77.6297 69.4261 -114.45 + 21 145.179 511 3 1 -77.65 69.4077 -114.459 + 21 233.924 510 3 1 -77.85 69.2584 -114.46 + 21 230.922 654 2 1 -49.25 -57.9076 -144.511 + 21 26.9489 611 2 0 -48.6744 -57.6627 -145.85 + 21 123.95 612 2 0 -48.6492 -57.65 -145.896 + 21 76.8464 500 2 0 -24.5981 -79.8515 -146.25 + 21 75.1479 499 2 0 -24.559 -80.05 -146.14 + 21 49.4086 498 2 0 -24.5204 -80.25 -146.056 + 21 51.4128 497 2 0 -24.5656 -80.45 -145.973 + 21 59.0181 496 2 0 -24.6306 -80.65 -145.915 + 21 27.4508 495 2 0 -24.7397 -80.8501 -145.862 + 21 32.3592 745 2 1 -31.0092 -94.561 -144.85 + 21 414.178 744 2 1 -31.05 -94.6637 -144.848 +Number of digits in this event = 28 +Using G4ParticleGun ... +7.04722 LIN +e- +Event: 22 +Number of tracker hits in this event = 75 + 22 114.164 1197 11 1 59.4894 34.7369 125.55 + 22 133.948 1073 11 0 59.4892 34.7367 124.15 + 22 158.444 1197 10 1 59.4812 34.7286 95.55 + 22 128.207 1073 10 0 59.4804 34.7275 94.15 + 22 138.167 1197 9 1 59.4686 34.6941 65.55 + 22 231.028 1073 9 0 59.4694 34.6923 64.15 + 22 150.761 1197 8 1 59.4849 34.6582 35.55 + 22 122.093 1073 8 0 59.4847 34.6565 34.15 + 22 140.156 1197 7 1 59.4785 34.6188 5.55 + 22 110.993 1072 7 0 59.4768 34.6176 4.15 + 22 172.613 1197 6 1 59.4507 34.5941 -24.45 + 22 144.181 1072 6 0 59.4495 34.5955 -25.85 + 22 154.576 1196 5 1 59.428 34.6263 -54.45 + 22 111.228 1072 5 0 59.4266 34.627 -55.85 + 22 251.012 1196 4 1 59.3997 34.645 -84.45 + 22 121.689 1072 4 0 59.398 34.6463 -85.85 + 22 288.015 1196 3 1 59.3574 34.6672 -114.45 + 22 114.876 1073 3 0 59.3542 34.6681 -115.85 + 22 106.085 1196 2 1 59.2924 34.687 -144.45 + 22 169.349 1073 2 0 59.2893 34.6871 -145.85 + 22 159.253 1195 1 1 59.2328 34.6972 -174.45 + 22 230.874 1073 1 0 59.2298 34.6968 -175.85 + 22 128.403 1195 0 1 59.1597 34.6893 -204.45 + 22 354.098 1073 0 0 59.1552 34.6908 -205.85 + 22 3.15342 975 1 0 -14.6827 15.2441 -176.25 + 22 9.66734 976 1 0 -14.6845 15.2501 -176.247 + 22 33.1342 1439 1 0 10.2795 108.016 -176.25 + 22 81.4615 1072 9 0 59.5216 34.65 63.8675 + 22 324.149 1197 3 1 59.5906 34.4466 -114.45 + 22 341.418 1071 3 0 59.6107 34.4407 -115.85 + 22 213.666 1199 2 1 60.026 34.2491 -144.45 + 22 186.21 1070 2 0 60.0318 34.2189 -145.85 + 22 109.988 1200 1 1 60.1708 33.5127 -174.45 + 22 125.436 1067 1 0 60.1796 33.4836 -175.85 + 22 126.817 1201 0 1 60.3597 32.8484 -204.45 + 22 109.034 1063 0 0 60.3917 32.8363 -205.85 + 22 225.944 1606 3 1 141.423 29.192 -114.85 + 22 235.185 1607 3 1 141.55 29.2058 -114.673 + 22 349.196 1203 0 1 60.7534 34.5926 -204.45 + 22 392.143 1072 0 0 60.5529 34.555 -205.851 + 22 222.262 1197 2 1 59.5682 34.0353 -144.45 + 22 159.129 1069 2 0 59.571 34.0011 -145.85 + 22 164.95 1197 1 1 59.5807 33.29 -174.45 + 22 131.6 1066 1 0 59.2099 33.3877 -175.85 + 22 148.693 1159 0 1 51.8963 35.1326 -204.45 + 22 31.9063 1074 0 0 51.9808 34.866 -205.85 + 22 241.015 1198 1 1 59.65 33.2935 -174.516 + 22 83.8649 364 7 0 175.899 -107.224 3.75 + 22 134.726 365 7 0 175.961 -107.15 3.78969 + 22 71.4514 1447 5 0 102.749 109.55 -55.9884 + 22 24.3192 1420 5 1 104.15 111.983 -54.6539 + 22 139.58 1081 10 0 60.4138 36.2652 94.15 + 22 65.834 1191 10 1 58.3124 38.6637 95.15 + 22 151.978 1190 10 1 58.2499 38.7015 95.2027 + 22 311.915 1197 4 1 59.489 34.6797 -84.45 + 22 306.401 1073 4 0 59.4984 34.6761 -85.85 + 22 117.174 1198 3 1 59.696 34.5754 -114.45 + 22 185.088 1072 3 0 59.7167 34.569 -115.85 + 22 121.159 1200 2 1 60.0917 34.3595 -144.45 + 22 564.117 1071 2 0 60.1012 34.3436 -145.85 + 22 104.805 1201 1 1 60.3064 34.0435 -174.45 + 22 111.745 1069 1 0 60.3272 34.016 -175.85 + 22 115.102 1066 0 0 60.7928 33.434 -205.85 + 22 220.173 1026 3 0 115.007 25.3402 -116.25 + 22 173.048 1199 1 1 59.8921 34.8512 -174.451 + 22 268.056 1058 4 0 59.4768 31.7877 -86.25 + 22 308.189 1067 4 0 57.491 33.5936 -85.85 + 22 260.831 1205 2 1 61.101 35.4535 -144.45 + 22 140.453 1076 2 0 61.2013 35.4265 -145.85 + 22 110.437 1215 1 1 63.1064 35.0218 -174.45 + 22 135.232 1074 1 0 63.1906 35.0202 -175.85 + 22 163.573 1223 0 1 64.6841 34.5693 -204.45 + 22 132.578 1204 2 1 61.05 35.4607 -144.573 + 22 285.196 959 4 0 74.5128 11.9952 -86.2498 + 22 46.6632 958 4 0 74.5653 11.85 -86.0898 +Number of digits in this event = 55 +Using G4ParticleGun ... +3.18306 LIN +e- +Event: 23 +Number of tracker hits in this event = 142 + 23 143.403 410 10 1 -97.9538 -46.3558 95.55 + 23 101.42 668 10 0 -97.9549 -46.3493 94.15 + 23 131.455 410 9 1 -97.9828 -46.2234 65.55 + 23 112.457 669 9 0 -97.9836 -46.2188 64.15 + 23 117.358 410 8 1 -98.0074 -46.1287 35.55 + 23 100.668 669 8 0 -98.0051 -46.1237 34.15 + 23 147.454 410 7 1 -97.9651 -46.0073 5.55 + 23 250.542 670 7 0 -97.9619 -46.002 4.15 + 23 186.96 411 6 1 -97.8964 -45.896 -24.45 + 23 135.434 670 6 0 -97.8908 -45.8922 -25.85 + 23 554.615 411 5 1 -97.8275 -45.7455 -54.45 + 23 222.968 671 5 0 -97.8258 -45.7368 -55.85 + 23 187.044 411 4 1 -97.7847 -45.5639 -84.45 + 23 226.748 672 4 0 -97.7767 -45.5518 -85.85 + 23 143.29 412 3 1 -97.5937 -45.312 -114.45 + 23 142.365 673 3 0 -97.5874 -45.3013 -115.85 + 23 326.527 413 2 1 -97.4565 -45.0857 -144.45 + 23 221.851 674 2 0 -97.4509 -45.074 -145.85 + 23 146.422 414 1 1 -97.342 -44.8342 -174.45 + 23 247.059 676 1 0 -97.3371 -44.8238 -175.85 + 23 397.372 414 0 1 -97.244 -44.6192 -204.45 + 23 290.484 677 0 0 -97.2371 -44.6035 -205.85 + 23 91.2322 675 2 0 -97.4069 -45.05 -146.035 + 23 256.83 673 4 0 -97.8281 -45.45 -86.1073 + 23 126.714 423 4 1 -95.5315 -45.3766 -84.85 + 23 215.102 413 1 1 -97.5038 -44.9094 -174.45 + 23 277.923 675 1 0 -97.4973 -44.8883 -175.85 + 23 18.8816 412 1 1 -97.55 -44.9281 -174.791 + 23 94.7938 393 0 1 -101.46 -45.5881 -204.45 + 23 30.6817 392 0 1 -101.55 -45.6456 -204.766 + 23 81.8876 671 0 0 -101.868 -45.8229 -205.85 + 23 50.978 670 0 0 -101.929 -45.85 -206.069 + 23 42.8323 772 0 0 -108.523 -25.5648 -206.25 + 23 104.036 773 0 0 -108.5 -25.45 -206.16 + 23 54.1334 774 0 0 -108.448 -25.25 -205.996 + 23 225.798 354 0 1 -109.198 -24.2428 -204.85 + 23 143.751 353 0 1 -109.35 -24.0954 -204.686 + 23 314.386 352 0 1 -109.55 -24.0029 -204.558 + 23 27.4342 351 0 1 -109.75 -23.8714 -204.466 + 23 140.294 355 0 1 -109.15 -23.7332 -204.576 + 23 263.944 356 0 1 -108.95 -24.0463 -204.543 + 23 30.6686 357 0 1 -108.75 -24.1011 -204.804 + 23 193.443 778 0 0 -108.196 -24.414 -205.85 + 23 40.0942 399 4 1 -100.327 -44.6327 -84.45 + 23 89.9307 398 4 1 -100.35 -44.6193 -84.5538 + 23 160.833 678 4 0 -100.63 -44.4482 -85.85 + 23 127.73 371 3 1 -105.868 -41.2437 -114.45 + 23 148.768 694 3 0 -106.127 -41.2214 -115.85 + 23 113.821 343 2 1 -111.37 -40.8732 -144.45 + 23 118.032 695 2 0 -111.672 -41.01 -145.85 + 23 8.4287 694 2 0 -111.748 -41.05 -146.218 + 23 124.735 312 1 1 -117.67 -43.6117 -174.45 + 23 155.507 681 1 0 -117.708 -43.6641 -175.851 + 23 130.705 310 0 1 -118.117 -44.9005 -204.45 + 23 260.325 675 0 0 -118.149 -44.9055 -205.85 + 23 138.745 410 4 1 -97.9555 -45.8592 -84.45 + 23 422.926 670 4 0 -97.8926 -45.8654 -85.85 + 23 147.243 417 3 1 -96.5865 -46.1532 -114.45 + 23 59.4377 668 3 0 -96.7276 -46.4064 -115.851 + 23 43.3274 667 3 0 -96.751 -46.45 -116.086 + 23 44.4171 404 2 1 -99.3368 -51.971 -144.45 + 23 81.455 403 2 1 -99.35 -52.0212 -144.574 + 23 89.113 637 2 0 -99.4912 -52.5568 -145.85 + 23 272.537 636 2 0 -99.5157 -52.6501 -146.074 + 23 5.98318 387 1 1 -102.747 -63.9755 -174.451 + 23 105.501 386 1 1 -102.75 -63.9845 -174.473 + 23 144.159 577 1 0 -102.915 -64.4871 -175.85 + 23 139.187 368 0 1 -106.418 -74.966 -204.45 + 23 94.4673 522 0 0 -106.876 -75.5188 -205.85 + 23 23.3944 521 0 0 -106.983 -75.65 -206.166 + 23 202.676 635 2 0 -99.7062 -52.85 -146.078 + 23 157.502 411 3 1 -97.8226 -45.8858 -114.45 + 23 231.893 670 3 0 -97.817 -45.8785 -115.85 + 23 149.641 412 2 1 -97.685 -45.776 -144.45 + 23 117.195 671 2 0 -97.6552 -45.7778 -145.85 + 23 312.232 415 1 1 -96.9862 -45.8736 -174.45 + 23 103.718 670 1 0 -96.9965 -45.8553 -175.85 + 23 0.660888 671 1 0 -96.9994 -45.85 -176.243 + 23 142.585 673 0 0 -97.3075 -45.3989 -205.85 + 23 121.635 670 5 0 -97.758 -45.85 -55.85 + 23 131.403 414 4 1 -97.2408 -45.9377 -84.45 + 23 104.939 415 3 1 -97.0424 -46.7367 -114.45 + 23 145.392 666 3 0 -97.1722 -46.8163 -115.85 + 23 157.692 401 2 1 -99.8619 -49.1449 -144.45 + 23 315.314 654 2 0 -99.8713 -49.0855 -145.85 + 23 111.322 401 1 1 -99.9402 -45.1628 -174.45 + 23 112.517 412 0 1 -97.6574 -36.5264 -204.45 + 23 126.529 719 0 0 -97.4177 -36.228 -205.85 + 23 65.7095 653 2 0 -99.8636 -49.25 -146.092 + 23 39.2659 652 2 0 -99.9054 -49.45 -146.176 + 23 79.4483 505 2 0 -105.332 -78.9593 -146.25 + 23 216.712 506 2 0 -105.34 -78.85 -146.055 + 23 163.513 417 1 1 -96.6509 -45.2035 -174.451 + 23 108.49 674 1 0 -96.6938 -45.0868 -175.85 + 23 184.051 411 0 1 -97.8571 -42.7183 -204.45 + 23 103.397 686 0 0 -97.4365 -42.7179 -205.85 + 23 29.9042 418 1 1 -96.4243 -45.6895 -174.45 + 23 87.4976 419 1 1 -96.35 -45.7076 -174.511 + 23 72.9452 420 1 1 -96.15 -45.7463 -174.657 + 23 33.5369 421 1 1 -95.95 -45.7942 -174.79 + 23 11.722 668 1 0 -94.1048 -46.4365 -175.85 + 23 146.153 667 1 0 -94.063 -46.4501 -175.877 + 23 15.0211 666 1 0 -93.6257 -46.6502 -176.194 + 23 158.582 523 0 1 -75.3249 -55.3096 -204.45 + 23 57.1083 522 0 1 -75.45 -54.8671 -204.706 + 23 55.2137 631 0 0 -75.901 -53.8127 -205.85 + 23 104.496 632 0 0 -75.9784 -53.65 -206.018 + 23 12.9655 633 0 0 -76.0131 -53.4497 -206.224 + 23 95.6466 431 2 0 -111.07 -93.7667 -146.25 + 23 78.367 416 1 1 -96.9496 -56.5367 -174.673 + 23 145.497 410 1 1 -98.1475 -45.4605 -174.45 + 23 154.105 669 1 0 -97.7874 -46.0548 -175.85 + 23 144.952 487 0 1 -82.6154 -57.403 -204.45 + 23 2.04578 611 0 0 -82.3645 -57.8476 -205.851 + 23 173.231 610 0 0 -82.3634 -57.8501 -205.858 + 23 90.145 409 1 1 -98.1518 -45.4579 -174.45 + 23 148.253 673 1 0 -98.2221 -45.2812 -175.85 + 23 140.16 364 0 1 -107.174 -47.5715 -204.45 + 23 113.454 660 0 0 -107.479 -47.9412 -205.85 + 23 42.8601 659 0 0 -107.413 -48.0501 -206.124 + 23 83.7011 563 0 0 -95.4636 -67.2832 -206.249 + 23 349.404 562 0 0 -95.5184 -67.45 -206.027 + 23 209.932 424 0 1 -95.3054 -68.1184 -204.85 + 23 35.7064 425 0 1 -95.0917 -68.2496 -204.45 + 23 75.251 423 0 1 -95.35 -68.3515 -204.743 + 23 104.926 561 0 0 -96.7348 -67.7132 -205.85 + 23 253.291 408 0 1 -98.3773 -68.256 -204.85 + 23 251.635 407 0 1 -98.5506 -68.2315 -204.712 + 23 79.0421 557 0 0 -98.8389 -68.6101 -205.85 + 23 73.3297 556 0 0 -98.8998 -68.65 -205.943 + 23 248.683 409 0 1 -98.2402 -45.1495 -204.45 + 23 37.6635 410 0 1 -98.15 -45.1178 -204.735 + 23 150.187 674 0 0 -98.2543 -45.1249 -205.85 + 23 114.983 679 0 0 -98.7415 -44.1683 -205.85 + 23 34.038 414 2 1 -97.3013 -44.4014 -144.45 + 23 589.639 679 2 0 -98.1181 -44.2383 -145.851 + 23 270.579 678 2 0 -99.1425 -44.25 -146.113 + 23 256.209 395 2 1 -100.954 -44.225 -144.85 + 23 136.73 394 2 1 -101.15 -44.2319 -144.524 + 23 241.537 393 2 1 -101.35 -44.1514 -144.619 + 23 77.9064 671 3 0 -97.9582 -45.7531 -115.85 + 23 126.874 672 3 0 -97.9558 -45.65 -116.073 +Number of digits in this event = 78 +Using G4ParticleGun ... +9.02192 LIN +e- +Event: 24 +Number of tracker hits in this event = 31 + 24 132.837 454 10 1 -89.0992 -15.4924 95.55 + 24 239.3 822 10 0 -89.0984 -15.4927 94.15 + 24 195.692 454 9 1 -89.0834 -15.5004 65.55 + 24 177.272 822 9 0 -89.0822 -15.5014 64.15 + 24 130.019 454 8 1 -89.0551 -15.5213 35.55 + 24 102.831 822 8 0 -89.0544 -15.523 34.15 + 24 97.1899 455 7 1 -89.0235 -15.5571 5.55 + 24 129.462 822 7 0 -89.0211 -15.5583 4.15 + 24 224.96 455 6 1 -88.967 -15.5741 -24.45 + 24 135.959 822 6 0 -88.964 -15.5743 -25.85 + 24 99.6359 455 5 1 -88.9021 -15.5839 -54.45 + 24 136.801 822 5 0 -88.9004 -15.586 -55.85 + 24 162.654 455 4 1 -88.866 -15.6267 -84.45 + 24 118.346 822 4 0 -88.8653 -15.6283 -85.85 + 24 130.085 455 3 1 -88.8514 -15.6584 -114.45 + 24 130.361 821 3 0 -88.8505 -15.6605 -115.85 + 24 113.583 456 2 1 -88.8329 -15.7112 -144.45 + 24 116.824 821 2 0 -88.8307 -15.7137 -145.85 + 24 186.588 456 1 1 -88.7771 -15.7545 -174.45 + 24 81.1348 821 1 0 -88.7755 -15.7571 -175.85 + 24 116.049 456 0 1 -88.7484 -15.81 -204.45 + 24 223.827 821 0 0 -88.7493 -15.8124 -205.85 + 24 56.6825 1317 9 1 83.65 -39.0482 65.2894 + 24 0.521556 628 2 1 -54.3392 126.164 -144.85 + 24 57.6768 820 0 0 -88.7612 -15.85 -206.064 + 24 54.6627 869 0 0 -112.649 -6.11554 -206.25 + 24 72.9711 870 0 0 -112.698 -6.04978 -206.097 + 24 248.321 335 0 1 -112.996 -5.81009 -204.85 + 24 57.4431 823 1 0 -9.54305 -15.3785 -176.25 + 24 129.155 822 1 0 -9.20877 -15.45 -175.899 + 24 257.367 764 6 1 -27.1508 -66.0448 -24.85 +Number of digits in this event = 20 +Using G4ParticleGun ... +8.95454 LIN +e- +Event: 25 +Number of tracker hits in this event = 83 + 25 114.853 878 10 1 -4.25954 88.6532 95.55 + 25 123.66 1343 10 0 -4.26075 88.6533 94.15 + 25 122.633 878 9 1 -4.28536 88.6575 65.55 + 25 102.978 1343 9 0 -4.28755 88.6578 64.15 + 25 231.822 878 8 1 -4.33223 88.6644 35.55 + 25 233.593 1343 8 0 -4.33506 88.6654 34.15 + 25 227.543 878 7 1 -4.39228 88.6881 5.55 + 25 97.9243 1343 7 0 -4.39523 88.6882 4.15 + 25 107.215 877 6 1 -4.45345 88.6938 -24.45 + 25 130.339 1343 6 0 -4.45684 88.6943 -25.85 + 25 110.506 877 5 1 -4.52541 88.7065 -54.45 + 25 108.357 1343 5 0 -4.52757 88.7078 -55.85 + 25 176.279 877 4 1 -4.56947 88.7318 -84.45 + 25 104.707 1343 4 0 -4.57077 88.733 -85.85 + 25 515.945 877 3 1 -4.5961 88.7569 -114.45 + 25 115.272 1343 3 0 -4.59827 88.7583 -115.85 + 25 91.4433 877 2 1 -4.63638 88.7893 -144.45 + 25 123.955 1343 2 0 -4.63896 88.7921 -145.85 + 25 128.416 876 1 1 -4.69593 88.8509 -174.45 + 25 243.739 1344 1 0 -4.69685 88.854 -175.85 + 25 255.44 876 0 1 -4.71956 88.9245 -204.45 + 25 117.653 1344 0 0 -4.7226 88.9302 -205.85 + 25 30.771 1120 4 0 108.131 44.2408 -86.25 + 25 108.306 1342 0 0 -4.88348 88.5431 -205.85 + 25 13.3646 1341 0 0 -4.92968 88.4499 -206.209 + 25 31.3656 702 1 1 -39.65 158.472 -174.773 + 25 82.8755 701 1 1 -39.6501 158.479 -174.743 + 25 22.7866 850 0 1 -9.93008 39.14 -204.85 + 25 217.033 877 7 1 -4.6256 89.1322 5.55 + 25 193.056 1345 7 0 -4.4583 89.1963 4.14982 + 25 130.567 897 6 1 -0.60642 90.6082 -24.45 + 25 205.87 1352 6 0 -0.4423 90.6516 -25.85 + 25 112.506 915 5 1 3.12566 90.9933 -54.45 + 25 114.244 1354 5 0 3.37997 90.983 -55.8505 + 25 26.0401 941 4 1 8.41341 91.1184 -84.45 + 25 116.65 942 4 1 8.45001 91.1264 -84.56 + 25 258.982 1355 4 0 8.86542 91.225 -85.85 + 25 74.6756 989 3 1 17.9467 93.3456 -114.45 + 25 28.4022 990 3 1 18.05 93.3699 -114.751 + 25 147.19 1366 3 0 18.4243 93.454 -115.85 + 25 116.735 1040 2 1 28.0789 95.6464 -144.45 + 25 15.8616 1377 2 0 28.5227 95.7456 -145.85 + 25 167.274 1378 2 0 28.5421 95.75 -145.911 + 25 36.2026 1085 1 1 37.2144 97.7435 -174.45 + 25 69.6424 1086 1 1 37.25 97.7351 -174.573 + 25 121.248 1387 1 0 37.6527 97.6768 -175.85 + 25 84.5535 1132 0 1 46.5593 97.3126 -204.45 + 25 35.2089 1133 0 1 46.65 97.4194 -204.729 + 25 122.21 1388 0 0 46.9985 97.8272 -205.85 + 25 15.0727 1389 0 0 47.0981 97.95 -206.214 + 25 2.18028 1559 3 0 79.8601 131.95 -115.988 + 25 144.021 1342 8 0 -4.32781 88.6122 34.15 + 25 140.428 1341 7 0 -4.68904 88.2975 4.15 + 25 90.1279 871 6 1 -5.82578 87.775 -24.45 + 25 35.1836 870 6 1 -5.85 87.755 -24.7237 + 25 65.8045 1338 6 0 -5.94358 87.6706 -25.85 + 25 27.1772 1337 6 0 -5.96531 87.65 -26.1389 + 25 115.454 859 5 1 -8.11019 85.5647 -54.45 + 25 131.321 1326 5 0 -8.28553 85.3691 -55.8506 + 25 158.428 844 4 1 -11.0554 80.9361 -84.45 + 25 173.458 1303 4 0 -11.2053 80.7639 -85.85 + 25 119.339 830 3 1 -13.9917 76.6257 -114.45 + 25 35.1751 829 3 1 -14.05 76.5344 -114.771 + 25 109.393 1280 3 0 -14.2292 76.2369 -115.85 + 25 0.27822 801 2 1 -19.8493 68.8545 -144.45 + 25 296.034 800 2 1 -19.85 68.8539 -144.453 + 25 136.468 1242 2 0 -20.148 68.5997 -145.85 + 25 28.6086 767 1 1 -26.6222 63 -174.45 + 25 98.4525 766 1 1 -26.65 62.9885 -174.557 + 25 97.7185 1213 1 0 -26.9895 62.8248 -175.85 + 25 97.0682 731 0 1 -33.7341 59.3101 -204.451 + 25 117.761 1195 0 0 -33.8722 59.1808 -205.85 + 25 40.521 1297 3 0 -15.5009 79.4917 -115.85 + 25 95.8139 877 8 1 -4.45 88.5632 35.4768 + 25 97.2725 876 8 1 -4.65 88.4016 35.3237 + 25 72.4971 875 8 1 -4.85 88.1267 35.2028 + 25 48.1915 874 8 1 -5.05 87.9141 35.1659 + 25 77.8946 1319 8 0 -14.4517 83.9026 34.15 + 25 285.686 1318 8 0 -14.608 83.85 34.1346 + 25 37.5345 1317 8 0 -15.6184 83.65 33.7774 + 25 57.8791 416 7 1 -96.7762 -4.45555 5.55 + 25 76.4478 417 7 1 -96.7499 -4.47123 5.41469 + 25 149.225 878 7 0 -96.5731 -4.44277 4.14989 +Number of digits in this event = 32 +Using G4ParticleGun ... +2.20553 LIN +e- +Event: 26 +Number of tracker hits in this event = 163 + 26 384.138 1059 11 1 31.8922 -51.2562 125.55 + 26 215.753 643 11 0 31.8959 -51.252 124.15 + 26 409.227 1059 10 1 31.9454 -51.1571 95.55 + 26 550.315 644 10 0 31.9392 -51.1557 94.15 + 26 190.869 1058 9 1 31.8083 -51.1286 65.55 + 26 150.604 644 9 0 31.7976 -51.1238 64.15 + 26 113.849 1057 8 1 31.5906 -51.0286 35.55 + 26 302.748 645 8 0 31.5773 -51.0251 34.15 + 26 102.71 1056 7 1 31.2899 -50.9535 5.55 + 26 109.752 645 7 0 31.2847 -50.9436 4.15 + 26 99.0971 1055 6 1 31.1766 -50.6778 -24.45 + 26 120.276 646 6 0 31.1718 -50.6752 -25.85 + 26 289.127 1055 5 1 31.08 -50.6419 -54.45 + 26 112 646 5 0 31.0782 -50.6541 -55.85 + 26 118.727 1054 4 1 31.0488 -50.9968 -84.45 + 26 112.785 645 4 0 31.0412 -51.0188 -85.85 + 26 103.067 1054 3 1 30.9213 -51.514 -114.45 + 26 139.108 642 3 0 30.9094 -51.5396 -115.85 + 26 120.003 1053 2 1 30.7275 -52.056 -144.45 + 26 119.793 640 2 0 30.6567 -51.9961 -145.85 + 26 110.545 1041 1 1 28.4414 -47.439 -174.45 + 26 81.8507 1040 1 1 28.25 -47.699 -174.732 + 26 73.0513 654 1 0 27.0652 -49.0974 -175.85 + 26 67.2915 653 1 0 26.942 -49.25 -175.965 + 26 71.2375 652 1 0 26.8057 -49.45 -176.077 + 26 37.173 651 1 0 26.6651 -49.6505 -176.201 + 26 4.34868 868 0 1 -6.43779 -101.237 -204.45 + 26 90.8523 867 0 1 -6.45008 -101.238 -204.466 + 26 147.838 866 0 1 -6.65019 -101.273 -204.721 + 26 196.637 393 0 0 -7.44552 -101.429 -205.85 + 26 26.268 496 4 1 -80.65 -76.5824 -84.7011 + 26 89.7084 1054 2 1 30.9131 -51.3661 -144.45 + 26 84.9526 647 5 0 31.2882 -50.5603 -55.85 + 26 281.551 955 5 0 16.5942 11.1896 -56.25 + 26 43.5333 956 5 0 16.539 11.2501 -56.1212 + 26 441.041 1048 1 1 29.8082 -50.1023 -174.451 + 26 165.591 648 1 0 29.6254 -50.4097 -175.85 + 26 212.856 647 1 0 29.5998 -50.45 -176.01 + 26 28.9495 1022 0 1 24.4941 -58.9622 -204.45 + 26 172.139 1021 0 1 24.4498 -58.9769 -204.548 + 26 125.647 604 0 0 23.928 -59.1428 -205.85 + 26 165.883 650 1 0 29.7943 -50.0444 -175.85 + 26 105.698 1045 0 1 29.2336 -49.5909 -204.45 + 26 127.715 652 0 0 29.1089 -49.5579 -205.851 + 26 44.0693 1049 1 1 29.85 -50.1597 -174.692 + 26 249.199 1078 0 1 35.7862 -56.9496 -204.45 + 26 26.2934 1079 0 1 35.85 -57.0016 -204.749 + 26 35.5826 614 0 0 36.0881 -57.226 -205.85 + 26 103.256 613 0 0 36.1217 -57.25 -205.977 + 26 235.033 619 0 0 35.9727 -56.1426 -205.851 + 26 199.373 618 0 0 35.9105 -56.25 -206.098 + 26 48.9839 1752 9 1 170.75 -126.983 65.3501 + 26 105.178 1034 0 1 26.9762 -56.0183 -204.451 + 26 113.108 620 0 0 26.9672 -56.0264 -205.851 + 26 24.7677 644 8 0 31.5198 -51.05 34.08 + 26 2.54194 725 8 0 10.9984 -34.8535 33.75 + 26 141.64 726 8 0 10.9944 -34.85 33.7593 + 26 71.3425 949 8 1 10.0197 -34.3048 35.1502 + 26 106.274 948 8 1 9.84986 -34.2148 35.3442 + 26 53.8574 947 8 1 9.64993 -34.0425 35.5092 + 26 158.054 1057 9 1 31.65 -51.0604 65.3378 + 26 58.3327 1056 9 1 31.45 -50.8566 65.2218 + 26 12.0859 668 9 0 30.1071 -46.4464 64.15 + 26 1.88671 1040 9 1 28.0505 -40.4547 65.15 + 26 156.907 1039 9 1 28.0499 -40.4524 65.1505 + 26 32.4617 708 9 0 29.1956 -38.3502 64.1499 + 26 53.9581 709 9 0 29.2671 -38.2497 64.1137 + 26 2.26228 761 9 0 34.1323 -27.6567 64.15 + 26 83.2728 762 9 0 34.1379 -27.65 64.1474 + 26 93.4383 763 9 0 34.301 -27.45 64.0383 + 26 190.653 1059 9 1 31.9443 -50.7451 65.55 + 26 122.086 646 9 0 31.9335 -50.7174 64.15 + 26 119.385 1059 8 1 31.8556 -50.2041 35.55 + 26 141.455 649 8 0 31.8703 -50.2066 34.15 + 26 159.118 1059 7 1 31.9727 -50.2608 5.55 + 26 98.4748 649 7 0 31.9856 -50.2416 4.15 + 26 77.65 1061 6 1 32.4348 -49.9031 -24.45 + 26 39.8094 1062 6 1 32.45 -49.9059 -24.747 + 26 127.485 650 6 0 32.5052 -49.9119 -25.85 + 26 79.1711 1069 5 1 33.9562 -50.2112 -54.45 + 26 102.877 649 5 0 34.0544 -50.1836 -55.85 + 26 141.237 1078 4 1 35.8083 -49.6328 -84.45 + 26 135.701 652 4 0 35.8737 -49.615 -85.85 + 26 120.114 1085 3 1 37.0917 -48.878 -114.45 + 26 181.745 656 3 0 37.132 -48.8225 -115.85 + 26 183.273 1089 2 1 37.9484 -47.6341 -144.45 + 26 116.386 663 2 0 38.2058 -47.365 -145.85 + 26 110.377 1112 1 1 42.5489 -39.9454 -174.45 + 26 110.182 701 1 0 42.7006 -39.7738 -175.851 + 26 214.217 1123 0 1 44.6653 -36.7503 -204.45 + 26 279.103 719 0 0 44.7626 -36.1686 -205.85 + 26 33.7662 720 0 0 44.7802 -36.05 -206.125 + 26 12.0402 678 2 0 35.9263 -44.2802 -145.85 + 26 162.399 679 2 0 35.8998 -44.25 -145.859 + 26 47.542 680 2 0 35.9459 -44.05 -145.905 + 26 132.379 1079 2 1 35.8501 -42.7235 -144.85 + 26 66.1551 1078 2 1 35.85 -42.7226 -144.849 + 26 286.783 1056 6 1 31.2709 -49.4871 -24.45 + 26 157.509 652 6 0 31.2609 -49.4637 -25.85 + 26 120.339 654 5 0 31.0861 -49.1665 -55.85 + 26 104.302 1053 4 1 30.6957 -47.8032 -84.45 + 26 108.475 661 4 0 30.712 -47.7637 -85.85 + 26 111.914 1055 3 1 31.1593 -46.6068 -114.45 + 26 186.405 667 3 0 31.1667 -46.5435 -115.85 + 26 499.061 1056 2 1 31.3579 -45.5118 -144.45 + 26 378.622 672 2 0 31.408 -45.5836 -145.85 + 26 114.119 1062 1 1 32.4761 -46.8707 -174.45 + 26 7.43133 1063 1 1 32.65 -46.8293 -174.838 + 26 221.976 666 1 0 33.1559 -46.771 -175.85 + 26 78.2152 1182 0 1 56.466 -35.0816 -204.45 + 26 55.4291 1183 0 1 56.65 -35.1156 -204.701 + 26 230.291 723 0 0 57.354 -35.2751 -205.85 + 26 16.1246 884 0 0 54.2103 -3.09509 -206.25 + 26 144.14 885 0 0 54.1669 -3.04997 -206.239 + 26 109.584 886 0 0 53.9787 -2.85 -205.976 + 26 2.38862 1156 0 1 51.258 -2.95276 -204.85 + 26 208.789 1155 0 1 51.25 -2.9525 -204.847 + 26 178.973 310 1 1 -117.95 65.1983 -174.633 + 26 113.213 309 1 1 -118.15 65.1436 -174.716 + 26 116.599 653 6 0 31.2978 -49.4087 -25.85 + 26 143.038 1058 5 1 31.7531 -47.7243 -54.45 + 26 98.8992 662 5 0 31.7729 -47.6289 -55.85 + 26 118.98 1059 4 1 31.8924 -45.6518 -84.45 + 26 141.832 672 4 0 31.8904 -45.5408 -85.85 + 26 218.241 1059 3 1 31.8565 -43.1204 -114.45 + 26 117.739 684 3 0 31.8541 -43.0731 -115.85 + 26 113.713 1058 2 1 31.8094 -42.0584 -144.45 + 26 138.434 690 2 0 31.8369 -41.982 -145.85 + 26 138.189 1061 1 1 32.3229 -40.3092 -174.45 + 26 98.8506 698 1 0 32.3289 -40.2972 -175.85 + 26 151.252 1060 0 1 32.1373 -39.9462 -204.45 + 26 128.357 700 0 0 32.0944 -39.9249 -205.85 + 26 161.683 1055 2 1 31.25 -40.3228 -144.598 + 26 13.9324 1057 2 1 31.45 -40.0183 -144.512 + 26 119.044 645 11 0 32.1196 -51.0221 124.15 + 26 116.836 1086 10 1 37.4452 -47.3123 95.5497 + 26 131.294 664 10 0 37.3144 -47.1639 94.15 + 26 26.9701 1074 9 1 34.8957 -45.8303 65.5494 + 26 112.393 1073 9 1 34.85 -45.8155 65.474 + 26 199.661 673 9 0 34.0908 -45.3538 64.15 + 26 66.1832 674 9 0 33.922 -45.25 63.8669 + 26 48.9303 988 8 1 17.7613 -34.7797 35.55 + 26 124.518 987 8 1 17.65 -34.7154 35.4245 + 26 14.8545 986 8 1 17.45 -34.5941 35.1977 + 26 3.49461 729 8 0 16.5009 -34.0545 34.15 + 26 177.642 730 8 0 16.4931 -34.05 34.1413 + 26 13.1342 731 8 0 16.1866 -33.85 33.795 + 26 112.07 859 7 1 -8.10817 -14.5629 5.55 + 26 52.9 827 7 0 -8.41559 -14.4792 4.14967 + 26 70.7581 828 7 0 -8.45623 -14.45 3.99692 + 26 158.69 833 7 0 13.1573 -13.3883 3.75 + 26 13.9694 832 7 0 13.5127 -13.45 4.10823 + 26 61.1224 973 7 1 14.6798 -13.4196 5.15 + 26 373.812 974 7 1 14.8507 -13.4143 5.31023 + 26 0.698499 975 7 1 15.05 -13.4367 5.54772 + 26 10.861 1090 6 1 38.0737 19.0546 -24.45 + 26 74.3836 1089 6 1 38.05 19.0463 -24.4688 + 26 70.018 1088 6 1 37.8499 18.9331 -24.6879 + 26 218.482 992 6 0 36.5024 18.6064 -25.8501 + 26 170.644 1070 6 0 -36.4215 34.2413 -26.25 + 26 90.2142 1069 6 0 -36.9738 34.05 -26.1939 + 26 105.005 1068 6 0 -37.134 33.85 -26.2137 + 26 379.996 1067 6 0 -37.2108 33.6499 -26.1039 +Number of digits in this event = 71 +Using G4ParticleGun ... +7.29274 LIN +e- +Event: 27 +Number of tracker hits in this event = 44 + 27 105.633 451 10 1 -89.7398 57.4708 95.55 + 27 116.866 1187 10 0 -89.7381 57.4849 94.15 + 27 136.778 451 9 1 -89.7039 57.7712 65.55 + 27 170.38 1188 9 0 -89.702 57.7855 64.15 + 27 158.272 451 8 1 -89.6676 58.0801 35.55 + 27 156.024 1190 8 0 -89.6655 58.0947 34.15 + 27 113.66 452 7 1 -89.6254 58.3945 5.55 + 27 119.081 1191 7 0 -89.6245 58.4091 4.15 + 27 116.6 452 6 1 -89.61 58.7039 -24.45 + 27 114.237 1193 6 0 -89.61 58.719 -25.85 + 27 109.528 452 5 1 -89.6058 59.0309 -54.45 + 27 55.1751 1194 5 0 -89.6054 59.0479 -55.85 + 27 72.6161 1195 5 0 -89.6054 59.05 -56.0191 + 27 118.232 452 4 1 -89.5995 59.3937 -84.45 + 27 167.508 1196 4 0 -89.599 59.4092 -85.85 + 27 134.184 452 3 1 -89.5848 59.7301 -114.45 + 27 116.134 1198 3 0 -89.5842 59.7446 -115.85 + 27 188.604 452 2 1 -89.5721 60.0429 -144.45 + 27 125.396 1200 2 0 -89.5708 60.0577 -145.85 + 27 120.786 452 1 1 -89.5434 60.3618 -174.45 + 27 95.0219 1201 1 0 -89.5419 60.3755 -175.85 + 27 156.919 452 0 1 -89.5134 60.6489 -204.45 + 27 186.19 1203 0 0 -89.5118 60.662 -205.85 + 27 350.372 1206 0 0 -60.5883 61.4398 -206.25 + 27 103.069 1205 0 0 -60.042 61.25 -205.974 + 27 48.6221 618 0 1 -56.396 59.7744 -204.85 + 27 87.5182 619 0 1 -56.25 59.6807 -204.802 + 27 71.8495 620 0 1 -56.05 59.4851 -204.73 + 27 50.4346 621 0 1 -55.85 59.3065 -204.697 + 27 50.2663 622 0 1 -55.65 59.2778 -204.668 + 27 53.416 623 0 1 -55.45 59.2427 -204.649 + 27 49.0566 624 0 1 -55.25 59.1773 -204.612 + 27 54.9352 625 0 1 -55.05 59.1282 -204.54 + 27 62.3478 626 0 1 -54.85 59.0977 -204.473 + 27 109.191 627 0 1 -54.65 59.0201 -204.51 + 27 75.8948 628 0 1 -54.45 58.8907 -204.534 + 27 86.3934 629 0 1 -54.25 58.6874 -204.536 + 27 63.5607 630 0 1 -54.05 58.5476 -204.549 + 27 494.702 631 0 1 -53.85 58.4166 -204.546 + 27 148.431 632 0 1 -53.6498 58.2349 -204.519 + 27 262.87 633 0 1 -53.45 58.0675 -204.451 + 27 133.288 1192 0 0 -53.834 58.4728 -205.85 + 27 158.234 1191 0 0 -53.9239 58.45 -206.042 + 27 59.1147 445 0 1 -91.0788 43.9218 -204.85 +Number of digits in this event = 20 +Using G4ParticleGun ... +9.78293 LIN +e- +Event: 28 +Number of tracker hits in this event = 155 + 28 167.209 745 11 1 -30.9593 8.45188 125.55 + 28 142.153 942 11 0 -30.9598 8.45186 124.15 + 28 133.933 745 10 1 -30.9687 8.45159 95.55 + 28 105.822 942 10 0 -30.9697 8.45186 94.15 + 28 110.06 745 9 1 -30.9878 8.45472 65.55 + 28 128.091 942 9 0 -30.9885 8.45553 64.15 + 28 348.223 745 8 1 -31.0036 8.4728 35.55 + 28 227.02 942 8 0 -31.0039 8.47314 34.15 + 28 141.646 745 7 1 -31.0026 8.47683 5.55 + 28 116.646 942 7 0 -31.0023 8.47765 4.15 + 28 201.842 745 6 1 -30.993 8.49499 -24.45 + 28 95.4315 942 6 0 -30.9918 8.49573 -25.85 + 28 118.279 745 5 1 -30.9709 8.51382 -54.45 + 28 100.731 942 5 0 -30.9701 8.51404 -55.85 + 28 109.016 745 4 1 -30.956 8.5164 -84.45 + 28 125.464 942 4 0 -30.9558 8.51651 -85.85 + 28 134.005 745 3 1 -30.9543 8.5175 -114.45 + 28 153.12 942 3 0 -30.9543 8.51736 -115.85 + 28 123.908 745 2 1 -30.9571 8.51815 -144.45 + 28 108.065 942 2 0 -30.9565 8.51638 -145.85 + 28 113.676 745 1 1 -30.9446 8.47699 -174.45 + 28 162.792 942 1 0 -30.9433 8.47566 -175.85 + 28 245.905 745 0 1 -30.9157 8.44561 -204.45 + 28 316.286 941 0 0 -30.914 8.44392 -205.85 + 28 227.426 1020 0 0 -95.9378 24.147 -206.25 + 28 35.5324 285 13 1 -122.95 -22.8 185.385 + 28 28.1 776 0 0 -28.8368 -24.6575 -206.25 + 28 208.606 758 0 1 -28.4168 -25.0532 -204.85 + 28 236.084 757 0 1 -28.4501 -25.0347 -204.661 + 28 419.78 940 0 0 -28.7522 8.25 -206.156 + 28 81.7495 1171 4 1 54.4237 -112.749 -84.45 + 28 63.5123 608 2 1 -58.3349 50.4616 -144.85 + 28 91.2746 609 2 1 -58.25 50.3716 -144.458 + 28 12.9537 1156 0 0 -27.8795 51.3981 -206.25 + 28 51.4993 1157 0 0 -27.8718 51.4501 -206.233 + 28 44.7139 1158 0 0 -27.88 51.65 -206.197 + 28 57.122 1159 0 0 -27.9209 51.8513 -206.214 + 28 63.0932 1160 0 0 -27.9568 52.0501 -206.239 + 28 66.5181 1161 0 0 -28.0184 52.2505 -206.235 + 28 56.2875 1162 0 0 -28.1125 52.45 -206.228 + 28 67.7227 1163 0 0 -28.2046 52.65 -206.173 + 28 41.5954 1164 0 0 -28.2494 52.85 -206.121 + 28 48.8095 1165 0 0 -28.2894 53.05 -206.076 + 28 59.0356 1166 0 0 -28.2992 53.25 -206.012 + 28 50.1564 1167 0 0 -28.2691 53.45 -205.964 + 28 46.8183 1168 0 0 -28.222 53.65 -205.897 + 28 126.278 762 0 1 -27.5208 54.5744 -204.85 + 28 312.39 763 0 1 -27.45 54.6463 -204.698 + 28 127.786 724 3 1 -35.1825 95.6487 -114.85 + 28 160.482 1172 0 0 -27.0409 54.4959 -205.85 + 28 5.23947 756 0 1 -28.8422 53.6322 -204.85 + 28 251.246 755 0 1 -28.8502 53.6308 -204.837 + 28 46.8525 752 0 1 -29.45 62.84 -204.815 + 28 88.5758 885 0 0 20.8706 -2.98542 -206.25 + 28 120.875 884 0 0 21.1093 -3.05 -206.177 + 28 180.56 883 0 0 21.4004 -3.25013 -206.058 + 28 276.44 882 0 0 21.4721 -3.45 -206.018 + 28 46.3852 881 0 0 21.5925 -3.65 -205.992 + 28 67.1844 1010 0 1 22.2371 -3.64429 -204.85 + 28 253.887 1011 0 1 22.25 -3.70462 -204.705 + 28 268.27 744 0 1 -31.1092 8.4312 -204.45 + 28 225.559 936 0 0 -27.2501 7.37803 -206.25 + 28 67.0234 937 0 0 -27.3367 7.4502 -205.895 + 28 88.2963 729 12 0 -37.8463 -34.0952 153.75 + 28 56.4754 728 12 0 -37.9472 -34.25 153.998 + 28 71.9711 706 12 1 -38.6729 -35.3027 155.15 + 28 60.5826 705 12 1 -38.85 -35.445 155.247 + 28 100.986 704 12 1 -39.05 -35.5805 155.309 + 28 206.367 703 12 1 -39.25 -35.7536 155.378 + 28 230.841 702 12 1 -39.45 -35.9124 155.28 + 28 229.44 710 12 0 -40.4184 -37.9369 154.15 + 28 142.359 743 7 1 -31.2883 8.74459 5.55 + 28 137.591 943 7 0 -31.3232 8.77895 4.15 + 28 143.657 739 6 1 -32.0874 9.60819 -24.4507 + 28 92.882 947 6 0 -32.1262 9.5994 -25.85 + 28 167.083 700 5 1 -39.9088 5.88606 -54.4502 + 28 50.5848 931 5 0 -40.3828 6.41671 -55.85 + 28 75.9926 932 5 0 -40.4122 6.45 -55.9401 + 28 122.712 663 4 1 -47.3133 14.5136 -84.45 + 28 132.572 974 4 0 -47.7029 14.8515 -85.85 + 28 116.904 621 3 1 -55.7544 21.0955 -114.45 + 28 114.917 1004 3 0 -55.6215 20.9616 -115.85 + 28 83.2885 630 2 1 -53.9543 16.7433 -144.45 + 28 153.071 631 2 1 -53.85 16.4981 -144.615 + 28 59.5261 972 2 0 -52.958 14.6336 -145.85 + 28 85.422 971 2 0 -52.8718 14.45 -145.96 + 28 79.4636 970 2 0 -52.7865 14.25 -146.068 + 28 63.0358 969 2 0 -52.6992 14.05 -146.171 + 28 105.045 855 1 1 -9.04291 -65.6964 -174.45 + 28 48.3262 856 1 1 -8.85 -65.7861 -174.696 + 28 2.78474 570 1 0 -8.10748 -66.0482 -175.85 + 28 114.987 569 1 0 -8.10238 -66.05 -175.858 + 28 58.1319 890 0 1 -1.88413 -78.106 -204.45 + 28 83.3452 889 0 1 -2.05 -77.9635 -204.565 + 28 101.532 888 0 1 -2.25082 -77.7231 -204.71 + 28 63.1951 521 0 0 -3.33233 -75.8433 -205.85 + 28 61.1828 522 0 0 -3.45352 -75.65 -205.968 + 28 59.2607 523 0 0 -3.54896 -75.4498 -206.028 + 28 75.391 524 0 0 -3.61686 -75.2497 -206.087 + 28 6.04435 525 0 0 -3.72266 -75.05 -206.23 + 28 183.92 941 8 0 -30.934 8.37633 34.1499 + 28 77.8237 744 7 1 -31.2374 6.82653 5.55 + 28 149.858 933 7 0 -31.2972 6.70507 4.15 + 28 101.299 736 6 1 -32.7263 4.26416 -24.4506 + 28 113.332 920 6 0 -32.7262 4.14395 -25.8501 + 28 165.274 735 5 1 -32.8709 1.74764 -54.45 + 28 158.068 906 5 0 -33.2542 1.35419 -55.85 + 28 309.908 905 5 0 -33.3575 1.24997 -56.2259 + 28 192.317 694 4 1 -41.1381 -6.26506 -84.45 + 28 5.35492 693 4 1 -41.2501 -6.37665 -84.8236 + 28 132.827 866 4 0 -41.5557 -6.69181 -85.85 + 28 112.916 651 3 1 -49.7045 -15.9284 -114.45 + 28 140.758 818 3 0 -50.0896 -16.265 -115.85 + 28 123.931 611 2 1 -57.6901 -22.639 -144.45 + 28 126.59 786 2 0 -58.1489 -22.7347 -145.85 + 28 71.2964 557 1 1 -68.5716 -26.6853 -174.45 + 28 53.7748 556 1 1 -68.65 -26.674 -174.684 + 28 192.68 767 1 0 -69.0523 -26.6386 -175.85 + 28 12.4643 502 0 1 -79.607 -25.9645 -204.45 + 28 90.9267 501 0 1 -79.65 -25.9708 -204.5 + 28 33.7412 500 0 1 -79.85 -26.0031 -204.738 + 28 150.244 769 0 0 -80.7271 -26.142 -205.85 + 28 59.483 763 1 0 -75.6409 -27.45 -176.078 + 28 198.107 904 5 0 -33.706 1.05 -56.0328 + 28 34.224 909 5 0 -33.3967 2.01274 -55.85 + 28 91.8269 910 5 0 -33.4624 2.05008 -55.986 + 28 261.6 721 2 1 -35.7862 -11.1951 -144.45 + 28 129.314 844 2 0 -35.4603 -11.1105 -145.85 + 28 117.967 747 1 1 -30.5345 -9.3974 -174.45 + 28 37.2556 856 1 0 -30.4954 -8.69987 -175.85 + 28 74.7343 857 1 0 -30.4939 -8.65 -175.948 + 28 66.5027 740 0 1 -31.9054 6.40074 -204.45 + 28 140.63 741 0 1 -31.85 6.48397 -204.583 + 28 95.115 1023 0 0 -12.477 24.7853 -206.25 + 28 66.0518 1024 0 0 -12.3963 24.8501 -206.092 + 28 163.057 840 0 1 -11.966 25.3222 -204.85 + 28 150.658 841 0 1 -11.8367 25.2934 -204.45 + 28 69.8446 1017 0 0 -11.4211 23.644 -205.85 + 28 74.8593 1016 0 0 -11.372 23.45 -205.997 + 28 37.9955 1015 0 0 -11.3306 23.25 -206.163 + 28 110.818 843 2 0 -35.7835 -11.2816 -145.85 + 28 120.959 720 1 1 -36.0376 -14.2565 -174.45 + 28 155.654 832 1 0 -36.0968 -13.5552 -175.85 + 28 106.199 833 1 0 -36.1066 -13.45 -176.042 + 28 7.54181 834 1 0 -36.1329 -13.25 -176.23 + 28 58.4376 1015 1 0 -34.6522 23.2492 -176.25 + 28 446.806 1016 1 0 -34.6521 23.25 -176.246 + 28 51.1408 728 1 1 -34.3426 23.5158 -174.85 + 28 133.202 729 1 1 -34.2499 23.5754 -174.656 + 28 82.7867 730 1 1 -34.05 23.5558 -174.529 + 28 101.739 731 1 1 -33.8499 23.3627 -174.629 + 28 10.783 732 1 1 -33.65 23.2818 -174.821 + 28 29.444 1017 1 0 -33.1795 23.45 -175.898 + 28 21.414 948 1 0 -83.7603 9.74592 -176.25 + 28 81.5873 1124 1 0 -159.985 44.8539 -176.25 +Number of digits in this event = 65 +Using G4ParticleGun ... +5.70736 LIN +e- +Event: 29 +Number of tracker hits in this event = 53 + 29 234.699 1018 8 1 23.7771 -136.332 35.55 + 29 91.9868 219 8 0 23.7766 -136.333 34.15 + 29 108.843 1018 7 1 23.7663 -136.346 5.55 + 29 227.048 219 7 0 23.7656 -136.347 4.15 + 29 137.535 1018 6 1 23.7467 -136.378 -24.45 + 29 173.999 218 6 0 23.7459 -136.378 -25.85 + 29 119.659 1018 5 1 23.7274 -136.388 -54.45 + 29 142.068 218 5 0 23.7268 -136.389 -55.85 + 29 105.151 1018 4 1 23.7164 -136.406 -84.45 + 29 208.911 218 4 0 23.7167 -136.407 -85.85 + 29 241.086 1018 3 1 23.7179 -136.41 -114.45 + 29 108.187 218 3 0 23.7175 -136.409 -115.85 + 29 167.109 1018 2 1 23.7069 -136.396 -144.45 + 29 111.712 218 2 0 23.7073 -136.395 -145.85 + 29 250.329 1018 1 1 23.7132 -136.398 -174.45 + 29 108.28 218 1 0 23.7125 -136.397 -175.85 + 29 138.684 1018 0 1 23.6972 -136.392 -204.45 + 29 107.51 218 0 0 23.6968 -136.393 -205.85 + 29 395.641 597 0 0 3.19614 -60.5394 -205.918 + 29 118.771 598 0 0 3.02133 -60.45 -206.045 + 29 80.322 912 0 1 2.54125 -58.9435 -204.85 + 29 171.168 911 0 1 2.45 -58.7345 -204.71 + 29 240.333 908 0 1 1.84392 -58.1769 -204.45 + 29 377.468 907 0 1 1.64999 -57.6709 -204.611 + 29 70.5746 906 0 1 1.44973 -57.259 -204.66 + 29 111.171 905 0 1 1.25 -57.0174 -204.722 + 29 87.8223 904 0 1 1.04988 -56.6327 -204.732 + 29 39.016 628 0 0 1.29624 -54.3667 -205.85 + 29 69.7606 629 0 0 1.2908 -54.25 -205.912 + 29 79.3941 630 0 0 1.30524 -54.05 -206.015 + 29 53.6883 631 0 0 1.31261 -53.8496 -206.088 + 29 58.2768 632 0 0 1.26057 -53.65 -206.146 + 29 68.8913 633 0 0 1.2181 -53.45 -206.172 + 29 45.8013 634 0 0 1.18285 -53.2498 -206.144 + 29 94.3392 635 0 0 1.18714 -53.05 -206.151 + 29 116.946 636 0 0 1.16848 -52.85 -206.152 + 29 81.2957 637 0 0 1.05001 -52.65 -206.18 + 29 66.0626 638 0 0 0.925322 -52.45 -206.222 + 29 39.054 925 0 0 -29.6847 5.14074 -206.25 + 29 112.323 926 0 0 -29.7666 5.25004 -206.159 + 29 79.3138 927 0 0 -29.9563 5.45 -206.084 + 29 63.0173 928 0 0 -30.0926 5.65 -206.016 + 29 86.3889 929 0 0 -30.2037 5.85 -205.987 + 29 65.6767 930 0 0 -30.3187 6.05 -206.016 + 29 80.3702 931 0 0 -30.4153 6.25 -206.039 + 29 39.758 1091 0 0 -34.5108 38.2963 -206.25 + 29 68.4865 1092 0 0 -34.5311 38.45 -206.128 + 29 57.4653 1093 0 0 -34.5617 38.65 -206.069 + 29 78.2739 1094 0 0 -34.5581 38.85 -205.989 + 29 8.29461 1095 0 0 -34.5751 39.05 -205.864 + 29 151.813 728 0 1 -34.3741 40.465 -204.85 + 29 371.33 729 0 1 -34.25 40.694 -204.694 + 29 133.468 1017 3 1 23.65 -136.415 -114.52 +Number of digits in this event = 20 +Using G4ParticleGun ... +4.13268 LIN +e- +Event: 30 +Number of tracker hits in this event = 99 + 30 122.208 774 11 1 -25.1165 -35.3475 125.55 + 30 133.807 723 11 0 -25.1152 -35.3487 124.15 + 30 177.052 774 10 1 -25.0935 -35.3773 95.55 + 30 126.999 723 10 0 -25.0953 -35.3795 94.15 + 30 136.829 774 9 1 -25.1381 -35.424 65.55 + 30 112.955 723 9 0 -25.1412 -35.4247 64.15 + 30 187.29 774 8 1 -25.207 -35.4385 35.55 + 30 101.919 723 8 0 -25.2125 -35.4385 34.15 + 30 225.129 773 7 1 -25.3121 -35.43 5.55 + 30 95.8818 723 7 0 -25.3119 -35.4284 4.15 + 30 194.016 773 6 1 -25.3426 -35.4174 -24.45 + 30 125.122 723 6 0 -25.3417 -35.414 -25.85 + 30 443.824 773 5 1 -25.2994 -35.3691 -54.45 + 30 179.179 723 5 0 -25.2558 -35.3795 -55.85 + 30 175.723 778 4 1 -24.3919 -35.4929 -84.45 + 30 5.77171 722 4 0 -24.2518 -35.4507 -85.8504 + 30 390.795 723 4 0 -24.2494 -35.45 -85.8749 + 30 180.328 791 3 1 -21.7147 -34.4415 -114.45 + 30 138.377 729 3 0 -21.553 -34.2162 -115.85 + 30 133.938 808 2 1 -18.3346 -29.8314 -144.451 + 30 122.68 750 2 0 -18.5467 -29.9195 -145.85 + 30 140.061 788 1 1 -22.3909 -31.8367 -174.45 + 30 132.702 740 1 0 -22.5019 -31.9194 -175.85 + 30 95.9047 776 0 1 -24.8131 -33.5665 -204.45 + 30 47.4338 775 0 1 -24.85 -33.6074 -204.776 + 30 117.295 731 0 0 -24.9646 -33.7455 -205.85 + 30 34.1594 839 3 0 23.7414 -12.25 -116.131 + 30 136.114 1011 3 1 22.45 -9.28264 -114.828 + 30 23.253 838 3 0 23.8119 -12.2512 -115.88 + 30 154.909 1024 3 1 24.8957 -12.7187 -114.85 + 30 285.105 773 2 1 -25.4037 -35.5162 -144.45 + 30 110.924 723 2 0 -25.462 -35.416 -145.85 + 30 179.288 767 1 1 -26.6377 -32.627 -174.451 + 30 53.1415 736 1 0 -26.5163 -32.829 -175.85 + 30 71.4726 735 1 0 -26.5056 -32.8501 -175.988 + 30 349.912 771 0 1 -25.7134 -38.6031 -204.45 + 30 469.004 772 0 1 -25.65 -38.6635 -204.566 + 30 70.7223 703 0 0 -24.912 -39.3423 -205.85 + 30 110.616 702 0 0 -24.7885 -39.45 -206.049 + 30 230.935 761 0 0 18.0452 -27.85 -206.032 + 30 98.6726 762 0 0 18.1719 -27.6497 -205.876 + 30 109.169 724 2 0 -25.1012 -35.1534 -145.85 + 30 2.67089 725 2 0 -25.0395 -35.05 -146.244 + 30 105.118 789 1 1 -22.1092 -27.0046 -174.45 + 30 110.885 767 1 0 -22.5474 -26.5811 -175.85 + 30 152.156 737 0 1 -32.6401 -17.5125 -204.451 + 30 34.8992 816 0 0 -32.1533 -16.7315 -205.85 + 30 98.326 817 0 0 -32.1024 -16.65 -205.97 + 30 0.790244 818 0 0 -32.0086 -16.45 -206.246 + 30 150.523 770 2 1 -25.9828 -35.4151 -144.45 + 30 395.977 722 2 0 -26.1595 -35.5535 -145.85 + 30 119.863 754 1 1 -29.0506 -38.7469 -174.45 + 30 54.1451 704 1 0 -29.5801 -39.1939 -175.85 + 30 164.575 703 1 0 -29.6402 -39.25 -176.011 + 30 70.2977 689 0 1 -42.0903 -49.3069 -204.45 + 30 34.4966 690 0 1 -42.05 -49.4028 -204.718 + 30 191.578 651 0 0 -41.8848 -49.7826 -205.85 + 30 54.6253 650 0 0 -41.8534 -49.85 -206.072 + 30 75.2414 315 1 0 29.007 -117.024 -176.25 + 30 165.877 314 1 0 29.148 -117.15 -176.154 + 30 34.831 778 2 1 -24.3019 -33.4686 -144.85 + 30 4.64703 735 2 0 -25.0548 -33.0266 -145.85 + 30 3.27217 744 2 1 -31.2366 -32.0131 -144.85 + 30 4.76623 751 2 0 -38.4046 -29.8256 -145.85 + 30 6.89768 696 2 1 -40.684 -32.0895 -144.85 + 30 123.08 737 2 0 -41.4214 -32.5681 -145.85 + 30 29.2521 690 2 1 -41.8824 -33.1957 -144.85 + 30 123.778 652 3 0 -20.0003 -49.477 -116.25 + 30 44.1697 651 3 0 -19.9427 -49.65 -115.904 + 30 209.58 801 3 1 -19.8024 -50.3902 -114.85 + 30 433.487 722 5 0 -25.4286 -35.4817 -55.85 + 30 119.51 772 4 1 -25.507 -35.4366 -84.45 + 30 227.105 772 3 1 -25.5504 -35.4971 -114.45 + 30 118.644 722 3 0 -25.5512 -35.5013 -115.85 + 30 143.352 772 2 1 -25.5827 -35.5925 -144.45 + 30 177.187 771 1 1 -25.7687 -35.6677 -174.45 + 30 186.998 721 1 0 -25.7685 -35.6627 -175.85 + 30 104.17 722 0 0 -25.8472 -35.5948 -205.85 + 30 44.0754 1179 5 1 55.8908 -26.5702 -54.85 + 30 17.0703 813 9 1 -17.25 -16.4046 65.2453 + 30 129.204 1016 10 1 23.25 24.3985 95.2973 + 30 51.0973 1180 5 1 56.0501 -26.6096 -54.6362 + 30 60.4565 1181 5 1 56.25 -26.5905 -54.6238 + 30 154.815 1182 5 1 56.4503 -26.5616 -54.646 + 30 122.88 1183 5 1 56.65 -26.2763 -54.6513 + 30 204.35 1184 5 1 56.85 -26.0377 -54.706 + 30 125.753 1185 5 1 57.05 -25.9238 -54.7494 + 30 566.124 773 0 1 -25.4499 -35.0261 -204.555 + 30 134.171 774 0 1 -25.25 -34.7283 -204.451 + 30 109.696 770 0 1 -25.9156 -35.7266 -204.45 + 30 27.5786 721 0 0 -26.0991 -35.8423 -205.85 + 30 95.7967 720 0 0 -26.1125 -35.85 -205.952 + 30 123.944 773 4 1 -25.3739 -35.3212 -84.45 + 30 138.873 728 3 0 -25.5038 -34.3603 -115.85 + 30 169.444 769 2 1 -26.1976 -32.6408 -144.45 + 30 108.196 768 1 1 -26.3096 -30.646 -174.45 + 30 188.148 747 1 0 -26.3176 -30.5372 -175.85 + 30 131.576 768 0 1 -26.3665 -28.1637 -204.45 + 30 103.422 760 0 0 -26.3878 -28.031 -205.85 +Number of digits in this event = 54 +Using G4ParticleGun ... +9.82785 LIN +e- +Event: 31 +Number of tracker hits in this event = 27 + 31 115.851 942 9 1 8.62826 130.658 65.55 + 31 159.472 1552 9 0 8.62805 130.658 64.15 + 31 111.567 942 8 1 8.63376 130.65 35.55 + 31 138.747 1552 8 0 8.63355 130.65 34.15 + 31 210.828 942 7 1 8.62913 130.658 5.55 + 31 150.98 1552 7 0 8.62935 130.658 4.15 + 31 152.891 942 6 1 8.6257 130.644 -24.45 + 31 140.018 1552 6 0 8.62451 130.643 -25.85 + 31 240.486 942 5 1 8.60926 130.627 -54.45 + 31 119.462 1552 5 0 8.61137 130.625 -55.85 + 31 125.309 943 4 1 8.65073 130.567 -84.45 + 31 115.891 1552 4 0 8.65366 130.563 -85.85 + 31 175.632 943 3 1 8.7145 130.473 -114.45 + 31 112.661 1551 3 0 8.71705 130.469 -115.85 + 31 105.831 943 2 1 8.7534 130.404 -144.45 + 31 102.533 1551 2 0 8.74857 130.404 -145.85 + 31 360.21 943 1 1 8.66163 130.395 -174.45 + 31 412.742 1551 1 0 8.65998 130.391 -175.85 + 31 210.022 942 0 1 8.64929 130.313 -204.45 + 31 279.044 1550 0 0 8.65174 130.309 -205.85 + 31 108.714 1549 0 0 7.9482 130.15 -205.89 + 31 276.555 1548 0 0 8.05589 129.95 -206.068 + 31 255.973 1550 1 0 8.78526 130.29 -175.85 + 31 164.464 941 0 1 8.39586 129.134 -204.45 + 31 138.285 1544 0 0 8.38525 129.116 -205.85 + 31 123.313 944 0 1 8.9765 130.302 -204.45 + 31 4.39873 946 1 1 9.45 147.809 -174.627 +Number of digits in this event = 21 +Using G4ParticleGun ... +5.11019 LIN +e- +Event: 32 +Number of tracker hits in this event = 38 + 32 140.405 832 10 1 -13.5913 87.8174 95.55 + 32 115.062 1338 10 0 -13.5892 87.8165 94.15 + 32 368.82 832 9 1 -13.5453 87.8016 65.55 + 32 86.5299 1338 9 0 -13.5429 87.8034 64.15 + 32 118.942 832 8 1 -13.4911 87.8403 35.55 + 32 117.61 1338 8 0 -13.4867 87.8297 34.15 + 32 121.511 833 7 1 -13.3983 87.6095 5.55 + 32 171.876 1337 7 0 -13.4011 87.5848 4.15 + 32 112.977 832 6 1 -13.4704 87.0364 -24.45 + 32 132.222 1334 6 0 -13.492 87.0477 -25.85 + 32 13.5823 1335 6 0 -13.4969 87.05 -26.189 + 32 195.363 830 5 1 -13.8862 87.1398 -54.45 + 32 121.255 1335 5 0 -13.8761 87.1448 -55.85 + 32 379.649 831 4 1 -13.6664 87.2754 -84.45 + 32 114.366 1336 4 0 -13.6541 87.2584 -85.85 + 32 106.757 833 3 1 -13.4424 86.9865 -114.45 + 32 305.151 1334 3 0 -13.4454 86.9956 -115.85 + 32 141.302 832 2 1 -13.6233 87.3567 -144.45 + 32 150.049 1336 2 0 -13.6302 87.3739 -145.85 + 32 92.6246 831 1 1 -13.695 87.4323 -174.45 + 32 101.308 1337 1 0 -13.711 87.4641 -175.85 + 32 134.219 828 0 1 -14.2651 88.1525 -204.45 + 32 119.074 1340 0 0 -14.323 88.1788 -205.85 + 32 45.5273 1335 3 0 -13.3852 87.0509 -116.186 + 32 202.782 1472 3 0 -70.5458 114.577 -116.25 + 32 162.544 1471 3 0 -70.7147 114.55 -116.155 + 32 123.962 1333 3 0 -13.4646 86.85 -116.031 + 32 105.448 832 4 1 -13.6499 87.2711 -84.5533 + 32 373.166 830 4 1 -13.8502 87.9836 -84.6612 + 32 218.218 1328 5 0 -13.6325 85.8154 -55.85 + 32 3.23155 593 1 1 -61.45 -9.14638 -174.609 + 32 168.456 833 9 1 -13.45 87.7702 65.4529 + 32 174.906 834 9 1 -13.25 87.5893 65.2591 + 32 76.9166 835 9 1 -13.0497 87.4921 65.2251 + 32 191.708 836 9 1 -12.85 87.3914 65.1949 + 32 290.256 837 9 1 -12.6498 87.4748 65.3121 + 32 27.6803 838 9 1 -12.45 87.4779 65.4087 + 32 124.677 1339 9 0 -12.4635 87.9155 64.15 +Number of digits in this event = 24 +Using G4ParticleGun ... +5.4712 LIN +e- +Event: 33 +Number of tracker hits in this event = 34 + 33 103.114 944 10 1 8.91937 -88.1151 95.55 + 33 99.3317 459 10 0 8.91904 -88.1149 94.15 + 33 116.88 944 9 1 8.91024 -88.117 65.55 + 33 193.657 459 9 0 8.91067 -88.1178 64.15 + 33 113.368 944 8 1 8.9168 -88.1441 35.55 + 33 105.778 459 8 0 8.91565 -88.1445 34.15 + 33 98.0847 944 7 1 8.88625 -88.1494 5.55 + 33 129.098 459 7 0 8.88394 -88.1504 4.15 + 33 225.452 943 6 1 8.83928 -88.1743 -24.45 + 33 116.821 459 6 0 8.83999 -88.1746 -25.85 + 33 117.251 944 5 1 8.85926 -88.1789 -54.45 + 33 93.6738 459 5 0 8.8592 -88.1787 -55.85 + 33 113.434 944 4 1 8.86205 -88.182 -84.45 + 33 118.523 459 4 0 8.86239 -88.1817 -85.85 + 33 120.202 944 3 1 8.86885 -88.1775 -114.45 + 33 139.223 459 3 0 8.86886 -88.1767 -115.85 + 33 113.193 944 2 1 8.87397 -88.1664 -144.45 + 33 188.579 459 2 0 8.87928 -88.1614 -145.85 + 33 123.503 944 1 1 8.98208 -88.0686 -174.45 + 33 106.99 459 1 0 8.98671 -88.0627 -175.85 + 33 266.046 945 0 1 9.07512 -87.9336 -204.45 + 33 102.157 460 0 0 9.08098 -87.9252 -205.85 + 33 159.505 1114 3 0 -63.0399 42.85 -116.149 + 33 19.9954 1177 1 0 -146.152 55.556 -175.85 + 33 119.435 188 3 0 -126.1 -142.534 -116.25 + 33 120.093 460 2 0 8.97018 -88.0497 -146.077 + 33 4.55441 461 2 0 9.04475 -87.85 -145.864 + 33 434.291 943 2 1 8.68918 -87.2753 -144.85 + 33 96.3757 942 2 1 8.65 -87.254 -144.793 + 33 74.35 336 2 0 147.334 -112.814 -146.25 + 33 68.7297 37 12 1 -172.615 -102.148 155.15 + 33 189.631 36 12 1 -172.798 -102.085 155.55 + 33 300.581 35 12 1 -172.951 -101.746 155.426 + 33 7.03233 34 12 1 -173.15 -101.692 155.528 +Number of digits in this event = 15 +Using G4ParticleGun ... +1.87571 LIN +e- +Event: 34 +Number of tracker hits in this event = 34 + 34 161.829 473 9 1 -85.3796 100.023 65.55 + 34 105.741 1399 9 0 -85.3794 100.025 64.15 + 34 121.061 473 8 1 -85.3904 100.097 35.55 + 34 114.712 1399 8 0 -85.3893 100.094 34.15 + 34 150.928 473 7 1 -85.3872 100.059 5.55 + 34 150.693 1399 7 0 -85.3905 100.058 4.15 + 34 123.845 472 6 1 -85.4658 100.048 -24.45 + 34 115.094 1399 6 0 -85.4673 100.048 -25.85 + 34 134.127 472 5 1 -85.5066 100.038 -54.45 + 34 117.062 1399 5 0 -85.5096 100.047 -55.85 + 34 119.091 472 4 1 -85.5801 100.262 -84.45 + 34 123.091 1400 4 0 -85.5867 100.273 -85.85 + 34 106.944 471 3 1 -85.7019 100.477 -114.45 + 34 116.328 1401 3 0 -85.7007 100.485 -115.85 + 34 111.257 471 2 1 -85.8069 100.603 -144.45 + 34 108.514 1402 2 0 -85.8111 100.612 -145.85 + 34 110.354 470 1 1 -85.8859 100.794 -174.45 + 34 157.205 1403 1 0 -85.8926 100.812 -175.85 + 34 83.7367 470 0 1 -86.0475 101.186 -204.45 + 34 35.5233 469 0 1 -86.05 101.19 -204.731 + 34 120.828 1405 0 0 -86.0602 101.202 -205.85 + 34 120.18 337 1 1 -112.747 -34.6663 -174.85 + 34 101.375 1188 3 1 57.65 0.591343 -114.512 + 34 88.0808 1243 3 0 -82.4765 68.6714 -116.25 + 34 4.48825 476 3 1 -84.8037 66.9531 -114.85 + 34 57.4905 1215 3 0 -84.5588 63.2092 -115.85 + 34 331.8 1462 5 0 -103.347 112.575 -56.249 + 34 126.584 1463 5 0 -103.498 112.75 -56.0618 + 34 90.4143 1461 5 0 -103.865 112.55 -55.9064 + 34 13.9655 382 5 1 -103.575 109.958 -54.85 + 34 19.9474 383 5 1 -103.55 109.942 -54.8491 + 34 69.0676 1452 5 0 -101.369 110.606 -55.85 + 34 9.20917 396 5 1 -100.758 111.122 -54.85 + 34 149.126 397 5 1 -100.75 111.13 -54.837 +Number of digits in this event = 16 +Using G4ParticleGun ... +3.78024 LIN +e- +Event: 35 +Number of tracker hits in this event = 60 + 35 140.354 1023 9 1 24.7812 -115.083 65.55 + 35 234.124 325 9 0 24.78 -115.082 64.15 + 35 288.061 1023 8 1 24.76 -115.073 35.55 + 35 127.405 325 8 0 24.7582 -115.075 34.15 + 35 168.996 1023 7 1 24.7218 -115.109 5.55 + 35 99.5244 325 7 0 24.7191 -115.113 4.15 + 35 105.046 1023 6 1 24.6692 -115.201 -24.45 + 35 126.423 324 6 0 24.6674 -115.207 -25.85 + 35 93.8899 1022 5 1 24.6283 -115.311 -54.45 + 35 120.25 324 5 0 24.6261 -115.315 -55.85 + 35 275.618 1022 4 1 24.5732 -115.385 -84.45 + 35 227.446 323 4 0 24.5687 -115.388 -85.85 + 35 252.787 1022 3 1 24.4811 -115.447 -114.45 + 35 109.232 323 3 0 24.4737 -115.451 -115.85 + 35 135.802 1021 2 1 24.3245 -115.528 -144.45 + 35 134.244 323 2 0 24.3208 -115.531 -145.85 + 35 95.9765 1020 1 1 24.2484 -115.593 -174.45 + 35 124.226 322 1 0 24.2458 -115.596 -175.85 + 35 169.088 1020 0 1 24.1929 -115.667 -204.45 + 35 106.875 322 0 0 24.1907 -115.669 -205.85 + 35 348.81 1021 0 1 24.2502 -115.72 -204.502 + 35 146.819 324 3 0 24.5264 -115.157 -115.85 + 35 262.097 1020 2 1 24.1441 -115.152 -144.45 + 35 100.639 324 2 0 24.1344 -115.156 -145.85 + 35 130.787 1019 1 1 23.9386 -115.178 -174.45 + 35 120.106 324 1 0 23.8972 -115.163 -175.85 + 35 142.679 1014 0 1 22.9873 -115.058 -204.45 + 35 110.412 325 0 0 22.9268 -115.055 -205.85 + 35 83.3876 1019 2 1 24.0499 -115.124 -144.575 + 35 7.81964 325 2 0 23.5462 -114.955 -145.85 + 35 124.292 326 2 0 23.533 -114.95 -145.885 + 35 15.6695 970 1 1 14.2407 -114.721 -174.45 + 35 167.81 971 1 1 14.25 -114.713 -174.502 + 35 93.6582 327 1 0 14.3505 -114.617 -175.85 + 35 55.2128 328 4 0 25.027 -114.418 -85.85 + 35 35.615 1038 4 1 27.6732 -112.553 -84.85 + 35 12.4049 338 4 0 29.7634 -112.516 -85.85 + 35 41.7731 1039 4 1 27.8542 -112.591 -84.85 + 35 57.739 1021 4 1 24.4499 -115.298 -84.5671 + 35 60.2242 1020 4 1 24.2494 -115.314 -84.698 + 35 15.6001 1019 4 1 24.05 -115.361 -84.8058 + 35 167.352 322 4 0 22.3457 -115.659 -85.8501 + 35 42.7506 321 4 0 21.8613 -115.75 -86.1496 + 35 88.6091 273 4 0 -34.9356 -125.501 -86.25 + 35 65.1016 272 4 0 -35.0564 -125.55 -86.075 + 35 20.3369 719 4 1 -36.1995 -125.911 -84.85 + 35 103.524 718 4 1 -36.25 -125.921 -84.8031 + 35 88.1275 717 4 1 -36.45 -125.96 -84.6373 + 35 16.5401 716 4 1 -36.65 -125.967 -84.4891 + 35 8.00872 124 3 0 19.6419 -155.321 -116.25 + 35 119.13 123 3 0 19.639 -155.35 -116.234 + 35 57.1044 122 3 0 19.6452 -155.55 -116.161 + 35 98.9338 121 3 0 19.6684 -155.75 -116.059 + 35 65.7503 120 3 0 19.7854 -155.95 -115.879 + 35 58.9841 119 3 0 19.8939 -156.15 -115.955 + 35 165.275 118 3 0 19.9306 -156.351 -116.005 + 35 19.4315 1005 3 1 21.2094 -156.654 -114.85 + 35 239.839 1006 3 1 21.25 -156.66 -114.819 + 35 308.792 1007 3 1 21.45 -156.496 -114.636 + 35 79.8921 1008 3 1 21.6501 -156.517 -114.747 +Number of digits in this event = 28 +Using G4ParticleGun ... +9.32267 LIN +e- +Event: 36 +Number of tracker hits in this event = 101 + 36 119.316 887 11 1 -2.59185 62.7015 125.55 + 36 121.697 1213 11 0 -2.59293 62.7011 124.15 + 36 228.416 887 10 1 -2.61401 62.6912 95.55 + 36 205.318 1213 10 0 -2.61463 62.6913 94.15 + 36 122.801 887 9 1 -2.62678 62.6947 65.55 + 36 121.044 1213 9 0 -2.62599 62.694 64.15 + 36 100.448 887 8 1 -2.61062 62.6768 35.55 + 36 174.907 1213 8 0 -2.61046 62.6754 34.15 + 36 100.718 887 7 1 -2.60787 62.6495 5.55 + 36 132.326 1212 7 0 -2.60812 62.6484 4.15 + 36 900.351 887 6 1 -2.61127 62.623 -24.45 + 36 377.833 1212 6 0 -2.61036 62.62 -25.85 + 36 154.211 887 5 1 -2.58908 62.5541 -54.45 + 36 94.9106 1212 5 0 -2.58965 62.5531 -55.85 + 36 217.043 887 4 1 -2.59716 62.5348 -84.45 + 36 116.703 1212 4 0 -2.59879 62.5324 -85.85 + 36 173.33 887 3 1 -2.61895 62.487 -114.45 + 36 140.11 1212 3 0 -2.61853 62.4867 -115.85 + 36 115.579 887 2 1 -2.61011 62.4929 -144.45 + 36 162.886 1212 2 0 -2.61109 62.4923 -145.85 + 36 400.049 887 1 1 -2.63011 62.4854 -174.45 + 36 184.769 1212 1 0 -2.62994 62.4909 -175.85 + 36 309.91 887 0 1 -2.63408 62.6025 -204.45 + 36 358.819 1212 0 0 -2.63505 62.6076 -205.85 + 36 255.897 1421 0 0 -27.2974 104.35 -206.052 + 36 44.3257 711 0 1 -37.65 79.5748 -204.523 + 36 197.934 1211 0 0 -2.51918 62.45 -206.13 + 36 35.9639 533 1 0 -141.233 -73.2802 -176.25 + 36 21.4335 600 1 1 -59.9484 28.8208 -174.85 + 36 411.471 599 1 1 -60.05 28.7482 -174.755 + 36 32.5414 886 6 1 -2.65 62.7272 -24.6045 + 36 290.117 1211 1 0 -2.5304 62.3566 -175.85 + 36 175.773 886 0 1 -2.83188 61.8845 -204.45 + 36 125.061 1208 0 0 -2.85086 61.7977 -205.85 + 36 102.26 1210 0 0 -2.56564 62.1838 -205.85 + 36 6.33339 1210 1 0 -13.9316 62.1402 -176.25 + 36 23.7982 1209 1 0 -13.9443 62.05 -175.913 + 36 22.963 831 1 1 -13.8435 61.1189 -174.85 + 36 283.888 830 1 1 -13.8501 61.0797 -174.792 + 36 44.65 829 1 1 -14.05 60.8989 -174.491 + 36 100.631 893 0 1 -1.38206 178.072 -204.45 + 36 178.021 779 1 0 14.1546 -24.1124 -176.25 + 36 15.3355 1794 4 1 179.006 -88.548 -84.85 + 36 19.4035 917 10 0 -144.839 3.62992 93.75 + 36 79.315 918 10 0 -144.878 3.65 93.7843 + 36 15.1588 1156 0 0 -15.2493 51.45 -206.243 + 36 95.6042 877 5 1 -4.45915 64.9426 -54.4501 + 36 157.647 876 5 1 -4.65012 64.7808 -54.7315 + 36 37.0465 1221 5 0 -5.2532 64.3045 -55.8505 + 36 82.1116 1220 5 0 -5.31989 64.25 -55.9725 + 36 22.0731 1164 5 0 4.50611 53.0377 -56.25 + 36 127.919 1165 5 0 4.55029 53.05 -56.1809 + 36 33.3554 924 5 1 5.00765 53.4703 -54.8499 + 36 73.2704 925 5 1 5.05 53.4996 -54.7197 + 36 154.119 1229 6 0 -35.369 65.8872 -26.2497 + 36 97.0054 1230 6 0 -35.5881 66.05 -25.9984 + 36 17.0798 1231 6 0 -35.7355 66.25 -25.8673 + 36 18.0418 693 6 1 -41.3786 68.0546 -24.85 + 36 33.4962 692 6 1 -41.45 68.0886 -24.8403 + 36 188.112 1248 6 0 -44.634 69.7185 -25.85 + 36 168.464 634 2 1 -53.158 30.8672 -144.45 + 36 74.8016 633 2 1 -53.2501 30.8224 -144.53 + 36 91.7614 632 2 1 -53.45 30.7099 -144.703 + 36 29.6062 1050 2 0 -54.3558 30.106 -145.85 + 36 236.131 1049 2 0 -54.423 30.05 -145.953 + 36 46.1841 1048 2 0 -54.6919 29.8499 -146.164 + 36 137.868 892 2 0 -113.573 -1.60142 -146.25 + 36 42.1643 325 2 1 -115.068 -1.53245 -144.85 + 36 182.56 324 2 1 -115.15 -1.54208 -144.738 + 36 102.15 1127 4 0 -125.291 45.491 -86.2496 + 36 23.2946 730 4 0 -133.523 -33.9601 -86.2499 + 36 23.6565 1053 2 0 -53.6845 30.6674 -145.85 + 36 82.2419 1052 2 0 -53.7275 30.65 -145.938 + 36 115.018 884 5 1 -3.16274 61.694 -54.45 + 36 39.7916 1207 5 0 -3.12689 61.4696 -55.85 + 36 104.868 1206 5 0 -3.12306 61.45 -55.9778 + 36 126.052 886 4 1 -2.74831 57.3695 -84.4501 + 36 17.5823 885 4 1 -2.85003 57.318 -84.7647 + 36 108.309 1185 4 0 -3.21106 57.1327 -85.8509 + 36 147.942 829 3 1 -14.0721 51.7867 -114.45 + 36 11.3878 828 3 1 -14.2504 51.6264 -114.819 + 36 0.650618 1156 3 0 -14.753 51.2519 -115.85 + 36 141.126 1155 3 0 -14.7555 51.25 -115.855 + 36 28.5659 751 2 1 -29.8043 41.8595 -144.45 + 36 143.993 750 2 1 -29.8501 41.8466 -144.53 + 36 72.1996 1108 2 0 -30.6244 41.6692 -145.85 + 36 76.0277 1107 2 0 -30.7589 41.65 -146.075 + 36 13.737 668 1 1 -46.4342 39.3538 -174.45 + 36 154.618 667 1 1 -46.45 39.3541 -174.48 + 36 0.0871457 666 1 1 -46.65 39.3616 -174.849 + 36 185.967 1096 1 0 -47.1946 39.3624 -175.85 + 36 45.8853 591 0 1 -61.7803 39.374 -204.45 + 36 72.4944 590 0 1 -61.85 39.3471 -204.604 + 36 201.792 1095 0 0 -62.3964 39.0907 -205.85 + 36 120.882 1094 0 0 -62.4503 39.0496 -205.993 + 36 110.791 622 0 1 -55.5148 11.4693 -204.45 + 36 13.7446 1508 1 0 0.180833 121.784 -176.25 + 36 8.3898 1274 1 0 -74.1715 74.9243 -176.25 + 36 247.567 618 1 0 -120.476 -56.4055 -176.25 + 36 175.159 617 1 0 -120.511 -56.45 -176.235 + 36 35.2324 888 6 1 -2.45 62.622 -24.6658 +Number of digits in this event = 48 +Using G4ParticleGun ... +8.51525 LIN +e- +Event: 37 +Number of tracker hits in this event = 35 + 37 119.338 913 10 1 2.79628 -96.6942 95.55 + 37 164.412 417 10 0 2.79619 -96.6936 94.15 + 37 104.38 913 9 1 2.79285 -96.6764 65.55 + 37 184.863 417 9 0 2.79235 -96.6743 64.15 + 37 129.38 913 8 1 2.77861 -96.6336 35.55 + 37 117.23 417 8 0 2.77829 -96.6325 34.15 + 37 114.029 913 7 1 2.77454 -96.6041 5.55 + 37 110.068 417 7 0 2.77417 -96.6017 4.15 + 37 169.61 913 6 1 2.76857 -96.5494 -24.45 + 37 114.987 418 6 0 2.76883 -96.5465 -25.85 + 37 150.638 913 5 1 2.78252 -96.4804 -54.45 + 37 125.36 418 5 0 2.78292 -96.4767 -55.85 + 37 137.161 913 4 1 2.79046 -96.4037 -84.45 + 37 152.619 418 4 0 2.78973 -96.3995 -85.85 + 37 210.905 913 3 1 2.77186 -96.3158 -114.45 + 37 109.47 419 3 0 2.77005 -96.3093 -115.85 + 37 140.385 913 2 1 2.71359 -96.1763 -144.45 + 37 187.275 419 2 0 2.71497 -96.1626 -145.85 + 37 164.806 913 1 1 2.76511 -95.9001 -174.45 + 37 162.711 421 1 0 2.76995 -95.8867 -175.85 + 37 105.077 914 0 1 2.86746 -95.6156 -204.45 + 37 111.82 422 0 0 2.86894 -95.6051 -205.85 + 37 227.927 670 9 1 -45.9719 83.9853 65.15 + 37 59.6684 671 9 1 -45.85 84.0953 65.3331 + 37 162.469 1327 11 0 -54.8939 85.558 123.75 + 37 62.5415 629 11 1 -54.2375 85.4356 125.15 + 37 104.566 630 11 1 -54.05 85.4172 125.207 + 37 72.2285 1329 11 0 -53.8422 85.9145 124.15 + 37 282.403 1330 11 0 -53.8217 86.05 124.018 + 37 122.285 1328 11 0 -54.9336 85.65 123.907 + 37 112.851 988 2 0 61.0874 17.65 -146.212 + 37 271.159 1204 2 1 61.0003 17.6894 -144.85 + 37 18.6413 1203 2 1 60.85 17.6212 -144.464 + 37 187.546 796 3 0 65.0411 -20.85 -116.238 + 37 182.692 450 1 0 29.0032 -90.0092 -176.25 +Number of digits in this event = 23 +Using G4ParticleGun ... +4.47554 LIN +e- +Event: 38 +Number of tracker hits in this event = 48 + 38 96.5211 748 8 1 -30.3149 142.572 35.4131 + 38 149.418 1612 8 0 -30.3148 142.573 34.15 + 38 153.786 748 7 1 -30.3052 142.579 5.55 + 38 147.112 1612 7 0 -30.3048 142.579 4.15 + 38 135.25 748 6 1 -30.2913 142.577 -24.45 + 38 115.658 1612 6 0 -30.2909 142.574 -25.85 + 38 135.491 748 5 1 -30.2714 142.519 -54.45 + 38 194.485 1611 5 0 -30.27 142.517 -55.85 + 38 121.765 749 4 1 -30.2415 142.489 -84.45 + 38 128.834 1611 4 0 -30.2428 142.487 -85.85 + 38 108.612 748 3 1 -30.2717 142.439 -114.45 + 38 117.583 1611 3 0 -30.2744 142.437 -115.85 + 38 367.664 748 2 1 -30.3279 142.379 -144.45 + 38 336.532 1611 2 0 -30.3297 142.376 -145.85 + 38 459.362 748 1 1 -30.3613 142.305 -174.45 + 38 505.318 1610 1 0 -30.3665 142.304 -175.85 + 38 676.203 747 0 1 -30.48 142.287 -204.45 + 38 262.944 1610 0 0 -30.4836 142.288 -205.85 + 38 121.719 1590 2 0 -62.5189 138.255 -146.25 + 38 165.484 1591 2 0 -62.5932 138.35 -146.199 + 38 240.438 1592 2 0 -62.4882 138.55 -146.119 + 38 190.983 754 0 1 -29.1223 141.291 -204.45 + 38 487.549 1605 0 0 -29.0514 141.19 -205.85 + 38 80.5133 1465 12 1 113.189 -33.2467 155.15 + 38 62.0285 1606 0 0 -29.0006 141.35 -206.22 + 38 123.801 1609 0 0 -30.4759 142.062 -205.85 + 38 36.3096 1683 6 1 156.876 99.2924 -24.45 + 38 183.053 746 0 1 -30.65 143.009 -204.776 + 38 291.228 745 0 1 -30.85 143.509 -204.682 + 38 269.328 744 0 1 -31.0501 143.944 -204.602 + 38 270.271 743 0 1 -31.25 144.384 -204.543 + 38 347.56 742 0 1 -31.45 144.821 -204.582 + 38 132.957 741 0 1 -31.6502 145.206 -204.616 + 38 239.577 740 0 1 -31.85 145.622 -204.621 + 38 420.406 739 0 1 -32.05 146.288 -204.646 + 38 298.523 738 0 1 -32.25 146.735 -204.694 + 38 324.435 737 0 1 -32.45 147.126 -204.698 + 38 41.0457 1647 0 0 -33.086 149.617 -205.85 + 38 49.7669 1648 0 0 -33.1315 149.75 -205.909 + 38 47.9988 1649 0 0 -33.2115 149.95 -205.951 + 38 57.7587 1650 0 0 -33.2807 150.15 -205.94 + 38 12.4165 1651 0 0 -33.3276 150.35 -205.867 + 38 48.9747 730 0 1 -33.989 152.85 -204.85 + 38 82.3072 729 0 1 -34.05 153.001 -204.748 + 38 95.2556 728 0 1 -34.25 153.211 -204.636 + 38 29.3451 748 0 1 -30.45 142.312 -204.763 + 38 266.712 1611 8 0 -30.3105 142.55 34.074 + 38 45.8575 1610 8 0 -30.3284 142.349 34.0115 +Number of digits in this event = 34 +Using G4ParticleGun ... +5.40683 LIN +e- +Event: 39 +Number of tracker hits in this event = 101 + 39 150.708 627 11 1 -54.5361 -56.2714 125.55 + 39 114.056 618 11 0 -54.5373 -56.2716 124.15 + 39 153.315 627 10 1 -54.553 -56.2786 95.55 + 39 152.173 618 10 0 -54.554 -56.2774 94.15 + 39 160.778 627 9 1 -54.5758 -56.2627 65.55 + 39 144.089 618 9 0 -54.5752 -56.2614 64.15 + 39 103.263 627 8 1 -54.5648 -56.2392 35.55 + 39 171.494 619 8 0 -54.564 -56.2367 34.15 + 39 113.236 627 7 1 -54.5449 -56.1841 5.55 + 39 131.707 619 7 0 -54.544 -56.1811 4.15 + 39 153.874 627 6 1 -54.5277 -56.1201 -24.45 + 39 120.372 619 6 0 -54.5275 -56.1173 -25.85 + 39 123.915 627 5 1 -54.5212 -56.0597 -54.45 + 39 84.0846 619 5 0 -54.5211 -56.0563 -55.85 + 39 503.523 627 4 1 -54.5142 -55.9962 -84.45 + 39 277.353 620 4 0 -54.5139 -55.9941 -85.85 + 39 271.223 627 3 1 -54.5119 -55.9523 -114.45 + 39 640.087 620 3 0 -54.5098 -55.9508 -115.85 + 39 130.05 627 2 1 -54.4586 -55.9297 -144.45 + 39 132.346 620 2 0 -54.4519 -55.929 -145.85 + 39 101.197 628 1 1 -54.3091 -55.9165 -174.45 + 39 343.937 620 1 0 -54.2978 -55.912 -175.85 + 39 132 629 0 1 -54.0827 -55.8426 -204.45 + 39 112.995 621 0 0 -54.0799 -55.8407 -205.85 + 39 51.9024 264 5 0 -87.0526 -127.15 -55.9834 + 39 3.36367 271 5 0 -92.8267 -125.927 -55.85 + 39 0.658398 652 5 1 -49.4715 -165.948 -54.85 + 39 70.8426 74 2 0 -47.3205 -165.15 -146.171 + 39 26.2896 796 3 1 -20.7511 -78.6059 -114.45 + 39 4.25864 610 12 0 -146.017 -57.8612 153.75 + 39 3.62323 611 12 0 -146.086 -57.8498 154.142 + 39 20.4472 170 12 1 -145.968 -57.3291 155.15 + 39 235.454 171 12 1 -145.95 -57.3015 155.198 + 39 108.046 484 0 0 -25.8842 -83.2489 -206.25 + 39 130.108 768 0 1 -26.2784 -83.1708 -204.85 + 39 68.2376 460 1 0 -1.73074 -87.8553 -176.25 + 39 277.058 461 1 0 -1.66285 -87.85 -176.177 + 39 87.0064 462 1 0 -1.15189 -87.6499 -175.992 + 39 65.233 463 1 0 -1.09059 -87.45 -175.887 + 39 80.9373 464 1 0 -1.09761 -87.25 -175.872 + 39 41.3965 465 1 0 -1.0992 -87.05 -175.877 + 39 80.3028 895 1 1 -0.9555 -86.1619 -174.85 + 39 150.603 896 1 1 -0.85 -85.9766 -174.775 + 39 162.449 897 1 1 -0.65 -86.098 -174.576 + 39 226.118 628 4 1 -54.4499 -56.2253 -84.7683 + 39 75.248 628 3 1 -54.4499 -55.9374 -114.495 + 39 54.2123 629 3 1 -54.25 -55.8724 -114.713 + 39 245.736 623 3 0 -53.204 -55.3985 -115.85 + 39 64.7718 624 3 0 -53.006 -55.25 -116.045 + 39 34.7317 625 3 0 -52.8694 -55.0496 -116.206 + 39 172.002 643 1 1 -51.397 -57.615 -174.45 + 39 369.031 644 1 1 -51.2499 -57.7678 -174.552 + 39 531.764 645 1 1 -51.05 -58.1279 -174.562 + 39 235.215 614 1 0 -51.1705 -57.2377 -175.85 + 39 203.819 613 1 0 -51.5838 -57.25 -176.062 + 39 70.6021 749 3 1 -30.25 113.326 -114.635 + 39 50.3391 949 2 1 9.98161 56.5918 -144.45 + 39 255.685 748 3 1 -30.25 113.875 -114.455 + 39 159.089 642 1 1 -51.4806 -57.6325 -174.45 + 39 178.617 654 3 0 -73.0233 -49.2276 -116.25 + 39 113.439 531 3 1 -73.6833 -48.807 -114.85 + 39 32.867 530 3 1 -73.85 -48.6939 -114.508 + 39 94.3097 711 4 0 -47.4316 -37.7376 -86.25 + 39 66.658 712 4 0 -47.2179 -37.65 -86.0219 + 39 13.969 668 4 1 -46.2758 -37.1539 -84.85 + 39 97.7302 669 4 1 -46.25 -37.1399 -84.8176 + 39 72.5306 670 4 1 -46.05 -36.9955 -84.5311 + 39 123.895 619 4 0 -54.4479 -56.0848 -85.85 + 39 114.662 632 3 1 -53.6345 -55.8798 -114.45 + 39 149.988 631 2 1 -53.7052 -56.3823 -144.45 + 39 160.228 618 2 0 -53.69 -56.4321 -145.85 + 39 99.7599 632 1 1 -53.5211 -57.5399 -174.45 + 39 144.836 612 1 0 -53.506 -57.5804 -175.85 + 39 131.25 635 0 1 -53.0411 -58.4528 -204.45 + 39 170.041 607 0 0 -53.0231 -58.4926 -205.85 + 39 592.798 629 1 1 -54.2263 -56.7954 -174.45 + 39 232.575 616 1 0 -54.1889 -56.8082 -175.85 + 39 131.484 640 0 1 -51.8705 -53.9608 -204.45 + 39 59.3842 632 0 0 -52.0722 -53.531 -205.85 + 39 49.4705 633 0 0 -52.109 -53.45 -206.097 + 39 11.9709 715 6 0 -94.0757 -36.8743 -26.25 + 39 6.76466 426 6 1 -94.9291 -37.4201 -24.85 + 39 68.5425 425 6 1 -94.95 -37.4336 -24.8313 + 39 203.168 714 6 0 -94.3431 -37.1515 -25.85 + 39 28.3065 902 0 0 -34.3107 0.512659 -206.25 + 39 143.575 696 1 0 -100.387 -40.6914 -176.25 + 39 72.5886 617 1 0 -53.9852 -56.4862 -175.85 + 39 35.9692 618 1 0 -53.9804 -56.45 -176.089 + 39 164.345 618 0 1 -56.3016 -50.8592 -204.45 + 39 2.68079 641 0 0 -56.1876 -51.8422 -205.851 + 39 234.445 640 0 0 -56.1861 -51.85 -205.862 + 39 51.2259 639 0 0 -56.2041 -52.05 -206.108 + 39 113.505 630 1 1 -54.05 -56.8791 -174.761 + 39 87.9043 625 3 1 -54.8538 -55.3549 -114.451 + 39 121.434 618 2 1 -56.3495 -55.7651 -144.45 + 39 110.724 621 2 0 -56.4126 -55.8151 -145.851 + 39 142.259 609 1 1 -58.134 -57.6734 -174.45 + 39 173.604 609 1 0 -58.4964 -58.0859 -175.85 + 39 176.059 569 0 1 -66.054 -66.0107 -204.45 + 39 0.225594 569 0 0 -66.3956 -66.2496 -205.85 + 39 134.253 568 0 0 -66.3963 -66.2501 -205.853 +Number of digits in this event = 53 +Using G4ParticleGun ... +2.00953 LIN +e- +Event: 40 +Number of tracker hits in this event = 28 + 40 122.416 1327 10 1 85.5013 -47.2324 95.55 + 40 165.393 664 10 0 85.5067 -47.2316 94.15 + 40 179.678 1327 9 1 85.6238 -47.211 65.55 + 40 123.058 664 9 0 85.6313 -47.2097 64.15 + 40 114.427 1328 8 1 85.7689 -47.1801 35.55 + 40 121.68 664 8 0 85.7749 -47.1757 34.15 + 40 138.834 1329 7 1 85.8945 -47.081 5.55 + 40 119.767 664 7 0 85.8964 -47.0765 4.15 + 40 228.358 1329 6 1 85.953 -46.9768 -24.45 + 40 165.471 665 6 0 85.9586 -46.9722 -25.85 + 40 129.855 1330 5 1 86.06 -46.8706 -54.45 + 40 147.825 665 5 0 86.0651 -46.8613 -55.85 + 40 130.926 1330 4 1 86.1354 -46.6597 -84.45 + 40 97.1315 667 4 0 86.1388 -46.6486 -85.85 + 40 124.877 1330 3 1 86.2375 -46.4749 -114.45 + 40 102.788 667 3 0 86.2438 -46.4726 -115.85 + 40 133.198 1331 2 1 86.4309 -46.478 -144.45 + 40 101.453 667 2 0 86.4326 -46.4733 -145.85 + 40 225.978 1331 1 1 86.411 -46.393 -174.45 + 40 104.916 668 1 0 86.3987 -46.4025 -175.85 + 40 229.613 1330 0 1 86.1077 -46.5308 -204.45 + 40 279.394 667 0 0 86.0834 -46.5349 -205.85 + 40 217.741 755 0 0 120.962 -28.8792 -206.25 + 40 14.5573 525 0 0 97.3901 -74.9489 -206.25 + 40 239.465 1333 0 1 86.787 -46.6423 -204.45 + 40 122.25 666 0 0 86.7743 -46.6638 -205.85 + 40 47.9998 798 0 0 50.3543 -20.384 -206.25 + 40 183.469 1326 9 1 85.45 -47.2167 65.3822 +Number of digits in this event = 22 +Using G4ParticleGun ... +7.77851 LIN +e- +Event: 41 +Number of tracker hits in this event = 134 + 41 197.297 1166 10 1 53.4415 -66.5799 95.55 + 41 102.513 567 10 0 53.4424 -66.5805 94.15 + 41 145.23 1167 9 1 53.4588 -66.59 65.55 + 41 118.511 567 9 0 53.4606 -66.5904 64.15 + 41 148.38 1167 8 1 53.4982 -66.5931 35.55 + 41 100.742 567 8 0 53.4994 -66.5929 34.15 + 41 144.889 1167 7 1 53.5211 -66.5848 5.55 + 41 139.075 567 7 0 53.5218 -66.5824 4.15 + 41 122.585 1167 6 1 53.5342 -66.5377 -24.45 + 41 122.359 567 6 0 53.5347 -66.5336 -25.85 + 41 372.093 1167 5 1 53.5406 -66.4523 -54.45 + 41 253.504 568 5 0 53.5443 -66.4487 -55.85 + 41 109.51 1167 4 1 53.6215 -66.3754 -84.45 + 41 311.083 568 4 0 53.6253 -66.372 -85.85 + 41 652.26 1168 3 1 53.7044 -66.2991 -114.45 + 41 111.94 568 3 0 53.7095 -66.297 -115.85 + 41 958.593 1168 2 1 53.8146 -66.2566 -144.45 + 41 120.446 568 2 0 53.8174 -66.2548 -145.85 + 41 417.608 1169 1 1 53.8685 -66.217 -174.45 + 41 521.944 569 1 0 53.8734 -66.2119 -175.85 + 41 354.601 1169 0 1 53.9073 -66.0855 -204.45 + 41 228.225 569 0 0 53.9132 -66.0823 -205.85 + 41 325.297 1168 0 1 53.7795 -66.2105 -204.45 + 41 36.1263 596 1 0 -31.9235 -60.85 -176.1 + 41 0.643799 732 1 1 -33.5162 -66.4744 -174.85 + 41 92.0191 730 1 1 -33.85 -68.7508 -174.613 + 41 65.6038 597 1 0 -32.035 -60.65 -175.888 + 41 128.18 743 1 1 -31.4422 -60.3433 -174.85 + 41 104.81 1160 0 1 52.2067 -67.2279 -204.45 + 41 38.168 1161 0 1 52.25 -67.3432 -204.7 + 41 78.96 560 0 0 52.4253 -67.9353 -205.85 + 41 58.4184 559 0 0 52.4561 -68.05 -206.103 + 41 279.828 569 2 0 53.7644 -66.201 -145.85 + 41 244.868 1167 1 1 53.6447 -65.8261 -174.45 + 41 159.429 571 1 0 53.6424 -65.8079 -175.85 + 41 376.309 1167 0 1 53.5274 -65.4393 -204.45 + 41 112.265 573 0 0 53.5173 -65.4132 -205.85 + 41 179.088 567 0 0 53.7585 -66.5585 -205.85 + 41 259.037 566 0 0 53.8128 -66.65 -205.886 + 41 384.691 568 1 0 53.9639 -66.27 -175.85 + 41 280.947 1170 0 1 54.184 -65.9046 -204.45 + 41 135.868 570 0 0 54.1878 -65.8917 -205.85 + 41 118.656 1171 0 1 54.2501 -65.6811 -204.539 + 41 80.5731 579 0 0 54.6486 -64.2432 -205.85 + 41 7.25028 580 0 0 54.677 -64.0498 -205.86 + 41 150.913 1173 0 1 54.8174 -62.1187 -204.85 + 41 204.69 1174 0 1 54.85 -61.9893 -204.736 + 41 86.9692 1175 0 1 55.05 -61.8362 -204.6 + 41 43.6847 1182 4 1 56.5249 -66.736 -84.45 + 41 67.8989 1181 4 1 56.45 -66.7557 -84.6209 + 41 131.129 565 4 0 55.9291 -66.92 -85.8502 + 41 74.0036 1098 3 1 39.7745 -82.2862 -114.45 + 41 138.142 1097 3 1 39.6499 -82.3155 -114.63 + 41 196.137 488 3 0 38.9069 -82.2747 -115.85 + 41 10.0134 979 2 1 15.8739 -83.0695 -144.45 + 41 94.3103 978 2 1 15.85 -83.0643 -144.484 + 41 70.9083 977 2 1 15.65 -83.0304 -144.741 + 41 269.584 484 2 0 14.9194 -83.123 -145.85 + 41 51.9899 885 1 1 -2.92731 -85.6777 -174.45 + 41 122.063 884 1 1 -3.05 -85.6892 -174.533 + 41 58.9057 883 1 1 -3.25 -85.6635 -174.694 + 41 158.717 471 1 0 -4.01092 -85.6595 -175.85 + 41 103.871 567 1 0 -30.5323 -66.5939 -176.25 + 41 10.9809 752 1 1 -29.4737 -65.4312 -174.85 + 41 64.1649 753 1 1 -29.4496 -65.4101 -174.827 + 41 98.6207 754 1 1 -29.25 -65.3527 -174.669 + 41 109.618 755 1 1 -29.05 -65.1589 -174.522 + 41 73.5552 574 1 0 -28.6648 -65.1484 -175.85 + 41 226.507 575 1 0 -28.6726 -65.0498 -176.046 + 41 10.4365 525 1 0 -43.6074 -75.0214 -176.25 + 41 81.421 524 1 0 -43.6014 -75.05 -176.228 + 41 68.8008 523 1 0 -43.6196 -75.25 -176.172 + 41 31.2221 522 1 0 -43.6052 -75.45 -176.166 + 41 156.436 706 1 0 -29.5947 -38.7779 -176.25 + 41 229.543 707 1 0 -29.9118 -38.6499 -176.227 + 41 165.094 459 1 0 -36.0859 -88.0564 -176.25 + 41 390.6 460 1 0 -36.2007 -88.05 -176.068 + 41 138.92 461 1 0 -36.2391 -87.8499 -176.045 + 41 195.63 462 1 0 -36.2608 -87.65 -176.06 + 41 105.845 567 5 0 53.4236 -66.4693 -55.85 + 41 112.332 1156 4 1 51.4166 -66.1898 -84.45 + 41 34.199 1155 4 1 51.25 -66.2276 -84.7468 + 41 78.9951 1074 3 1 34.9981 -69.7521 -114.45 + 41 86.4927 1073 3 1 34.85 -69.8301 -114.66 + 41 202.315 548 3 0 33.9812 -70.2818 -115.85 + 41 92.8982 969 2 1 13.9535 -82.7721 -144.451 + 41 270.31 968 2 1 13.85 -82.8158 -144.68 + 41 51.3134 485 2 0 13.3529 -83.0233 -145.85 + 41 0.0580968 902 1 1 0.450306 -90.2371 -174.45 + 41 110.138 901 1 1 0.45 -90.2378 -174.452 + 41 145.196 447 1 0 0.292752 -90.6779 -175.85 + 41 46.9188 446 1 0 0.266292 -90.75 -176.085 + 41 0.161549 889 0 1 -2.24988 -98.9836 -204.45 + 41 138.971 888 0 1 -2.25004 -98.9838 -204.451 + 41 52.7374 404 0 0 -2.36773 -99.2907 -205.85 + 41 47.3627 403 0 0 -2.39358 -99.35 -206.067 + 41 30.0734 762 0 1 -27.45 -106.871 -204.474 + 41 35.8459 761 0 1 -27.65 -106.984 -204.77 + 41 380.871 364 0 0 -28.6161 -107.151 -205.85 + 41 73.9452 365 0 0 -28.881 -107.15 -206.005 + 41 252.447 567 3 0 53.6795 -66.551 -115.85 + 41 112.868 566 2 0 53.69 -66.6717 -145.85 + 41 272.635 1168 1 1 53.8301 -66.7234 -174.45 + 41 131.267 566 1 0 53.833 -66.726 -175.85 + 41 186.721 1166 0 1 53.4357 -68.7028 -204.85 + 41 419.01 570 2 0 53.741 -66.0127 -145.85 + 41 109.174 1171 1 1 54.4235 -67.0912 -174.45 + 41 162.223 564 1 0 54.4664 -67.1813 -175.85 + 41 114.691 1177 0 1 55.6127 -69.3996 -204.45 + 41 217.448 552 0 0 55.6439 -69.4584 -205.85 + 41 136.816 573 1 0 53.5321 -65.3267 -175.85 + 41 128.177 1158 0 1 51.6844 -65.1127 -204.45 + 41 124.49 574 0 0 51.6153 -65.1557 -205.85 + 41 113.435 1165 0 1 53.25 -61.5669 -204.641 + 41 124.131 592 0 0 52.9615 -61.5971 -205.85 + 41 86.9017 897 12 1 -0.612195 -104.671 155.15 + 41 113.185 896 12 1 -0.65 -104.627 155.309 + 41 63.3628 558 0 0 54.3386 -68.25 -205.865 + 41 92.7638 557 0 0 54.4059 -68.45 -206.017 + 41 90.1606 556 0 0 54.5681 -68.65 -206.142 + 41 69.4359 555 0 0 54.6957 -68.85 -206.119 + 41 51.1904 554 0 0 54.748 -69.05 -206.039 + 41 56.8239 553 0 0 54.7873 -69.25 -205.961 + 41 99.3383 551 0 0 54.923 -69.6501 -205.894 + 41 57.2597 550 0 0 55.0664 -69.85 -205.946 + 41 48.4837 549 0 0 55.1808 -70.05 -205.975 + 41 58.9221 548 0 0 55.2513 -70.25 -205.98 + 41 94.442 547 0 0 55.3099 -70.45 -205.989 + 41 67.8521 546 0 0 55.3292 -70.65 -206.055 + 41 2.55065 545 0 0 55.3347 -70.85 -206.243 + 41 54.3127 659 0 0 59.3888 -48.1044 -206.25 + 41 82.0015 660 0 0 59.405 -48.0499 -206.17 + 41 78.428 1193 0 1 58.7684 -48.437 -204.85 + 41 358.243 1192 0 1 58.65 -48.4433 -204.652 +Number of digits in this event = 63 +Using G4ParticleGun ... +1.00692 LIN +e- +Event: 42 +Number of tracker hits in this event = 40 + 42 118.263 381 10 1 -103.83 33.5661 95.55 + 42 106.306 1067 10 0 -103.836 33.5683 94.15 + 42 136.006 380 9 1 -103.97 33.6148 65.55 + 42 154.704 1067 9 0 -103.981 33.6186 64.15 + 42 118.149 379 8 1 -104.237 33.6819 35.55 + 42 116.894 1068 8 0 -104.251 33.684 34.15 + 42 133.414 377 7 1 -104.568 33.7456 5.55 + 42 133.17 1068 7 0 -104.619 33.7404 4.15 + 42 396.823 372 6 1 -105.659 33.6518 -24.45 + 42 109.334 1068 6 0 -105.718 33.654 -25.85 + 42 138.404 366 5 1 -106.896 33.6912 -54.45 + 42 127.767 1068 5 0 -106.964 33.7033 -55.85 + 42 137.411 359 4 1 -108.291 33.9669 -84.45 + 42 135.037 1069 4 0 -108.352 33.9752 -85.85 + 42 253.16 352 3 1 -109.629 34.1317 -114.45 + 42 116.315 1070 3 0 -109.712 34.138 -115.85 + 42 107.717 343 2 1 -111.376 34.245 -144.45 + 42 160.055 1071 2 0 -111.458 34.2719 -145.85 + 42 141.582 335 1 1 -113.125 34.7996 -174.45 + 42 160.865 1073 1 0 -113.183 34.818 -175.85 + 42 111.455 328 0 1 -114.388 35.1397 -204.45 + 42 127.839 1075 0 0 -114.476 35.1336 -205.85 + 42 410.729 1073 0 0 -114.451 34.6752 -205.85 + 42 220.317 333 0 1 -113.523 34.8366 -204.45 + 42 97.488 361 4 1 -107.814 33.5625 -84.4502 + 42 50.0692 362 4 1 -107.75 33.5 -84.702 + 42 129.531 1065 4 0 -107.32 33.1392 -85.85 + 42 26.0904 1064 4 0 -107.243 33.0499 -86.1298 + 42 60.7129 1254 4 0 -91.3231 70.8522 -86.25 + 42 73.8863 1255 4 0 -91.305 71.05 -86.1016 + 42 99.6146 1256 4 0 -91.3391 71.25 -85.9814 + 42 72.4693 1257 4 0 -91.3497 71.45 -85.8848 + 42 54.4233 1258 4 0 -91.46 71.6501 -85.9394 + 42 61.4678 1259 4 0 -91.5479 71.8507 -86.0307 + 42 61.7067 1260 4 0 -91.6405 72.05 -86.1235 + 42 23.5536 1261 4 0 -91.7687 72.25 -86.2257 + 42 28.2669 252 3 1 -129.669 140.495 -114.45 + 42 68.0757 355 3 1 -108.956 33.5042 -114.45 + 42 58.2865 354 3 1 -109.15 33.4225 -114.536 + 42 233.857 353 3 1 -109.35 33.5197 -114.535 +Number of digits in this event = 20 +Using G4ParticleGun ... +8.18526 LIN +e- +Event: 43 +Number of tracker hits in this event = 95 + 43 96.9331 846 11 1 -10.7443 -74.6328 125.55 + 43 117.441 527 11 0 -10.7447 -74.6326 124.15 + 43 186.159 846 10 1 -10.7532 -74.6236 95.55 + 43 115.026 527 10 0 -10.753 -74.6224 94.15 + 43 179.151 846 9 1 -10.7514 -74.6039 65.55 + 43 128.992 527 9 0 -10.7518 -74.6023 64.15 + 43 116.637 846 8 1 -10.7565 -74.5709 35.55 + 43 154.334 527 8 0 -10.7562 -74.5694 34.15 + 43 95.5468 846 7 1 -10.7494 -74.537 5.55 + 43 106.009 527 7 0 -10.7498 -74.5358 4.15 + 43 418.719 846 6 1 -10.7585 -74.5116 -24.45 + 43 382.567 527 6 0 -10.7597 -74.5105 -25.85 + 43 142.299 846 5 1 -10.7834 -74.4867 -54.45 + 43 128.59 527 5 0 -10.7851 -74.4869 -55.85 + 43 108.936 846 4 1 -10.8159 -74.4921 -84.45 + 43 113.827 527 4 0 -10.8171 -74.4926 -85.85 + 43 161.417 846 3 1 -10.8444 -74.5059 -114.45 + 43 122.108 527 3 0 -10.8445 -74.507 -115.85 + 43 91.0093 846 2 1 -10.8497 -74.53 -144.45 + 43 120.71 527 2 0 -10.848 -74.5299 -145.85 + 43 137.793 846 1 1 -10.8115 -74.5298 -174.45 + 43 128.488 527 1 0 -10.8089 -74.5283 -175.85 + 43 112.323 846 0 1 -10.7505 -74.5044 -204.45 + 43 114.19 527 0 0 -10.745 -74.5059 -205.85 + 43 86.9714 760 1 1 -27.9499 -11.858 -174.45 + 43 52.5291 829 0 0 24.0538 -14.25 -205.907 + 43 16.1772 1028 1 1 25.8476 -91.4581 -174.45 + 43 155.783 1029 1 1 25.85 -91.458 -174.48 + 43 220.33 1030 1 1 26.05 -91.5159 -174.508 + 43 12.268 883 3 0 23.9125 -3.2791 -116.25 + 43 41.0963 1613 3 0 -25.574 142.856 -116.25 + 43 106.038 845 5 1 -11.0173 -74.0744 -54.45 + 43 155.029 530 5 0 -11.0612 -74.0104 -55.85 + 43 120.381 839 4 1 -12.0731 -72.5803 -84.45 + 43 142.312 537 4 0 -12.1348 -72.4945 -85.85 + 43 145.455 833 3 1 -13.3085 -70.8108 -114.45 + 43 129.896 546 3 0 -13.3689 -70.7477 -115.85 + 43 42.1582 827 2 1 -14.6415 -69.4599 -144.45 + 43 291.293 826 2 1 -14.65 -69.4533 -144.616 + 43 114.838 553 2 0 -14.712 -69.3968 -145.85 + 43 161.82 819 1 1 -16.1057 -68.0247 -174.45 + 43 202.042 560 1 0 -16.2143 -67.9432 -175.85 + 43 118.65 807 0 1 -18.5346 -66.1988 -204.45 + 43 110.07 569 0 0 -18.677 -66.1349 -205.85 + 43 188.692 835 5 1 -12.8987 -75.5492 -54.4501 + 43 143.314 522 5 0 -12.9525 -75.6011 -55.85 + 43 44.9451 828 4 1 -14.4444 -76.4284 -84.45 + 43 73.1807 827 4 1 -14.45 -76.4485 -84.6037 + 43 53.4858 517 4 0 -14.4845 -76.6225 -85.8501 + 43 62.4908 516 4 0 -14.4897 -76.65 -86.0427 + 43 482.036 823 3 1 -15.3078 -80.7781 -114.45 + 43 100.528 495 3 0 -15.2938 -80.9815 -115.85 + 43 53.8396 476 2 0 -14.6207 -84.8377 -145.85 + 43 53.5773 475 2 0 -14.5987 -84.85 -146.057 + 43 142.779 841 1 1 -11.819 -86.6472 -174.45 + 43 144.144 465 1 0 -11.6596 -86.9447 -175.85 + 43 150.006 860 0 1 -7.9685 -93.3114 -204.45 + 43 40.5366 432 0 0 -7.59871 -93.7063 -205.85 + 43 64.8966 431 0 0 -7.55928 -93.75 -206 + 43 1.99059 522 4 0 -14.5065 -75.6431 -85.85 + 43 108.788 505 3 0 -14.9081 -78.9516 -115.85 + 43 70.6111 869 2 1 -6.06645 -76.4849 -144.45 + 43 70.2185 868 2 1 -6.25036 -76.5359 -144.552 + 43 107.298 867 2 1 -6.45007 -76.5913 -144.68 + 43 28.6553 866 2 1 -6.65 -76.6646 -144.797 + 43 210.779 514 2 0 -8.1066 -77.0808 -145.85 + 43 128.928 506 3 0 -15.434 -78.8437 -115.85 + 43 64.0543 814 2 1 -17.1607 -68.8284 -144.45 + 43 238.187 813 2 1 -17.25 -68.7705 -144.657 + 43 114.258 557 2 0 -17.7797 -68.5171 -145.85 + 43 16.8505 754 1 1 -29.2308 -65.7825 -174.45 + 43 153.866 753 1 1 -29.2502 -65.7744 -174.501 + 43 115.678 572 1 0 -29.7314 -65.6084 -175.85 + 43 166.061 707 0 1 -38.4759 -60.6453 -204.45 + 43 100.959 706 0 1 -38.6502 -60.621 -204.783 + 43 40.6057 597 0 0 -39.3872 -60.4632 -205.85 + 43 113.719 598 0 0 -39.4527 -60.45 -205.946 + 43 68.4238 705 0 1 -38.85 -60.7814 -204.593 + 43 269.281 704 0 1 -39.05 -60.8677 -204.616 + 43 122.616 703 0 1 -39.25 -60.8589 -204.66 + 43 50.8847 702 0 1 -39.45 -60.6914 -204.775 + 43 48.777 605 0 0 -40.5922 -59.0174 -205.85 + 43 76.9963 606 0 0 -40.7218 -58.85 -205.892 + 43 223.472 607 0 0 -40.8048 -58.65 -205.936 + 43 344.119 608 0 0 -40.8251 -58.45 -205.977 + 43 58.664 600 0 0 -39.092 -59.9476 -205.85 + 43 104.985 601 0 0 -39.1722 -59.85 -205.984 + 43 136.192 602 0 0 -39.347 -59.65 -206.075 + 43 107.977 603 0 0 -39.3944 -59.45 -206.206 + 43 138.349 689 0 0 -96.9847 -42.0883 -206.25 + 43 75.1721 484 3 0 -143.615 -83.179 -116.25 + 43 231.429 483 3 0 -143.544 -83.25 -116.049 + 43 44.1632 482 3 0 -143.098 -83.45 -115.937 + 43 12.1395 182 3 1 -143.746 -83.8422 -114.85 + 43 205.027 181 3 1 -143.75 -83.8527 -114.829 Number of digits in this event = 46 Using G4ParticleGun ... -6.89835 LIN +2.71103 LIN +e- +Event: 44 +Number of tracker hits in this event = 96 + 44 119.355 371 10 1 -105.777 31.3545 95.55 + 44 169.616 1056 10 0 -105.776 31.3526 94.15 + 44 115.682 371 9 1 -105.756 31.3055 65.55 + 44 140.987 1056 9 0 -105.755 31.3004 64.15 + 44 464.888 372 8 1 -105.731 31.2074 35.55 + 44 239.881 1055 8 0 -105.732 31.2017 34.15 + 44 111.726 371 7 1 -105.757 31.1007 5.55 + 44 96.3383 1055 7 0 -105.76 31.1003 4.15 + 44 112.386 371 6 1 -105.815 31.1011 -24.45 + 44 255.204 1055 6 0 -105.818 31.1 -25.85 + 44 116.278 371 5 1 -105.895 31.0764 -54.45 + 44 113.057 1055 5 0 -105.899 31.0727 -55.85 + 44 107.655 370 4 1 -105.984 30.9884 -84.45 + 44 169.039 1054 4 0 -105.991 30.9858 -85.85 + 44 101.513 370 3 1 -106.14 30.9286 -114.45 + 44 124.514 1054 3 0 -106.149 30.9188 -115.85 + 44 121.478 369 2 1 -106.346 30.7232 -144.45 + 44 167.732 1053 2 0 -106.354 30.713 -145.85 + 44 116.23 368 1 1 -106.53 30.4937 -174.45 + 44 310.094 1052 1 0 -106.537 30.4809 -175.85 + 44 109.572 367 0 1 -106.695 30.2038 -204.45 + 44 117.234 1050 0 0 -106.704 30.191 -205.85 + 44 18.8462 1380 3 0 -76.1186 96.15 -116.124 + 44 26.4227 513 3 1 -77.3178 95.9159 -114.85 + 44 59.5267 1377 3 0 -78.5629 95.6037 -115.85 + 44 189.133 508 3 1 -78.4451 94.4276 -114.85 + 44 91.6391 1367 3 0 -78.1903 93.6251 -115.85 + 44 187.417 1508 4 0 -166.752 121.822 -86.25 + 44 25.0019 1507 4 0 -167.064 121.75 -85.8719 + 44 18.5448 59 4 1 -168.316 121.745 -84.8499 + 44 102.134 58 4 1 -168.35 121.75 -84.8285 + 44 179.307 57 4 1 -168.55 121.793 -84.7346 + 44 18.2146 1054 6 0 -105.848 31.0499 -26.2184 + 44 226.798 371 1 1 -105.907 30.3991 -174.45 + 44 290.708 1051 1 0 -105.88 30.4018 -175.85 + 44 113.902 373 0 1 -105.531 30.0844 -204.45 + 44 108.722 1049 0 0 -105.546 30.0418 -205.85 + 44 116.033 374 0 1 -105.167 29.1504 -204.45 + 44 112.231 1045 0 0 -105.186 29.0891 -205.85 + 44 130.282 382 2 1 -103.668 17.7782 -144.85 + 44 153.809 381 2 1 -103.75 17.8861 -144.564 + 44 128.571 1054 8 0 -105.454 31.0329 34.1499 + 44 162.361 399 7 1 -100.338 27.2108 5.54974 + 44 155.067 1035 7 0 -100.084 27.1406 4.15 + 44 176.731 424 6 1 -95.2749 25.2098 -24.4501 + 44 123.506 1025 6 0 -94.9744 25.0713 -25.85 + 44 59.9814 1024 6 0 -94.9303 25.05 -26.0594 + 44 164.461 456 5 1 -88.7676 21.6162 -54.45 + 44 119.146 1007 5 0 -88.5206 21.5156 -55.8504 + 44 109.494 484 4 1 -83.2355 19.0069 -84.45 + 44 131.533 993 4 0 -83.0185 18.8268 -85.8514 + 44 185.626 974 3 0 -78.1477 14.9181 -115.851 + 44 136.778 539 2 1 -72.1194 10.5226 -144.45 + 44 36.9626 540 2 1 -72.05 10.4654 -144.735 + 44 120.682 950 2 0 -71.7815 10.2463 -145.85 + 44 77.3469 575 1 1 -64.9645 4.50927 -174.45 + 44 67.5778 576 1 1 -64.85 4.42363 -174.755 + 44 81.9702 920 1 0 -64.431 4.14011 -175.85 + 44 19.0391 919 1 0 -64.3004 4.0498 -176.185 + 44 100.619 635 0 1 -52.9596 -3.73334 -204.45 + 44 315.917 636 0 1 -52.8499 -3.80082 -204.721 + 44 140.558 879 0 0 -52.3936 -4.10079 -205.85 + 44 40.5356 830 0 0 -43.0757 -14.0477 -206.25 + 44 60.4161 829 0 0 -43.0739 -14.05 -206.233 + 44 123.365 685 0 1 -43.04 -13.8675 -204.85 + 44 106.109 802 1 0 -36.2783 -19.5645 -176.25 + 44 25.8681 720 1 1 -35.8868 -19.7415 -174.85 + 44 87.1441 721 1 1 -35.85 -19.7546 -174.742 + 44 35.7308 723 1 1 -35.4225 -19.6174 -174.45 + 44 161.127 722 1 1 -35.45 -19.5698 -174.51 + 44 70.9713 805 1 0 -36.3327 -18.9184 -175.85 + 44 107.229 806 1 0 -36.444 -18.85 -175.99 + 44 56.1143 937 2 0 -68.4779 7.65 -145.95 + 44 416.357 679 6 0 -109.458 -44.1025 -26.2499 + 44 18.1038 376 7 1 -104.753 31.434 5.55 + 44 103.322 377 7 1 -104.75 31.4302 5.49603 + 44 161.54 1056 7 0 -104.697 31.3153 4.15 + 44 114.646 381 6 1 -103.875 28.4201 -24.45 + 44 104.355 1041 6 0 -103.813 28.2824 -25.85 + 44 10.3528 1040 6 0 -103.8 28.25 -26.2043 + 44 105.169 387 5 1 -102.631 25.404 -54.4504 + 44 36.1746 388 5 1 -102.55 25.3614 -54.7393 + 44 119.826 1025 5 0 -102.233 25.2077 -55.8504 + 44 110.252 424 4 1 -95.222 22.2098 -84.45 + 44 16.68 425 4 1 -95.15 22.171 -84.7764 + 44 145.661 1009 4 0 -94.911 22.0396 -85.85 + 44 165.885 458 3 1 -88.3449 19.4263 -114.45 + 44 119.96 997 3 0 -88.1618 19.5117 -115.851 + 44 65.0107 477 2 1 -84.6099 20.976 -144.45 + 44 34.2019 476 2 1 -84.65 20.9802 -144.691 + 44 216.735 1004 2 0 -84.8214 20.985 -145.85 + 44 170.28 456 1 1 -88.7097 21.425 -174.45 + 44 126.256 1006 1 0 -89.0636 21.3296 -175.85 + 44 119.34 428 0 1 -94.4788 20.0945 -204.45 + 44 101.014 999 0 0 -94.5826 20.0452 -205.85 + 44 138.486 969 10 0 -71.5309 13.9171 93.75 +Number of digits in this event = 41 +Using G4ParticleGun ... +9.96785 LIN +e- +Event: 45 +Number of tracker hits in this event = 35 + 45 111.389 1110 10 1 42.2307 -84.5239 95.55 + 45 137.787 477 10 0 42.2311 -84.5243 94.15 + 45 122.419 1110 9 1 42.2404 -84.5294 65.55 + 45 105.803 477 9 0 42.2412 -84.5302 64.15 + 45 125.556 1111 8 1 42.2619 -84.5501 35.55 + 45 126.262 477 8 0 42.2623 -84.5506 34.15 + 45 110.967 1111 7 1 42.2689 -84.5621 5.55 + 45 129.946 477 7 0 42.2692 -84.5627 4.15 + 45 120.818 1111 6 1 42.274 -84.5747 -24.45 + 45 231.121 477 6 0 42.2743 -84.5754 -25.85 + 45 170.039 1111 5 1 42.282 -84.5903 -54.45 + 45 242.986 477 5 0 42.2834 -84.591 -55.85 + 45 141.519 1111 4 1 42.3135 -84.6072 -84.45 + 45 103.079 477 4 0 42.3156 -84.6084 -85.85 + 45 112.507 1111 3 1 42.3526 -84.633 -114.45 + 45 123.297 477 3 0 42.3538 -84.6343 -115.85 + 45 152.92 1111 2 1 42.3745 -84.6663 -144.45 + 45 141.406 476 2 0 42.3756 -84.6682 -145.85 + 45 109.205 1111 1 1 42.4 -84.7095 -174.45 + 45 255.665 476 1 0 42.4002 -84.713 -175.85 + 45 133.635 1111 0 1 42.4019 -84.7845 -204.45 + 45 136.521 476 0 0 42.4011 -84.789 -205.85 + 45 11.44 476 5 0 42.3226 -84.65 -56.1243 + 45 67.1212 251 3 0 127.58 -129.75 -116.234 + 45 263.1 1110 2 1 42.2484 -84.5368 -144.45 + 45 238.636 477 2 0 42.2474 -84.5351 -145.85 + 45 130.869 1110 1 1 42.2401 -84.497 -174.45 + 45 173.011 477 1 0 42.2663 -84.492 -175.85 + 45 148.326 1114 0 1 42.9597 -83.9742 -204.45 + 45 101.921 480 0 0 43.2271 -84.0299 -205.85 + 45 111.47 845 1 1 -10.9628 -65.2503 -174.45 + 45 116.891 846 1 1 -10.8497 -65.2725 -174.461 + 45 121.627 1109 1 1 41.9277 -84.7446 -174.45 + 45 179.85 1106 0 1 41.2843 -85.1039 -204.45 + 45 112.644 474 0 0 41.2343 -85.1364 -205.85 +Number of digits in this event = 26 +Using G4ParticleGun ... +3.56876 LIN +e- +Event: 46 +Number of tracker hits in this event = 119 + 46 371.278 495 10 1 -80.9987 -44.1909 95.55 + 46 112.893 679 10 0 -80.9984 -44.189 94.15 + 46 113.65 495 9 1 -80.9892 -44.1524 65.55 + 46 141.647 679 9 0 -80.9874 -44.1485 64.15 + 46 364.061 495 8 1 -80.9556 -44.07 35.55 + 46 397.814 679 8 0 -80.9514 -44.066 34.15 + 46 149.015 495 7 1 -80.8732 -43.9932 5.55 + 46 138.92 680 7 0 -80.8796 -44 4.15 + 46 96.6886 495 6 1 -81.0401 -44.1384 -24.45 + 46 166.13 679 6 0 -81.047 -44.1407 -25.85 + 46 157.954 494 5 1 -81.1786 -44.1966 -54.45 + 46 230.161 679 5 0 -81.1837 -44.1985 -55.85 + 46 126.229 493 4 1 -81.3173 -44.2388 -84.45 + 46 118.264 679 4 0 -81.3237 -44.2411 -85.85 + 46 424.498 492 3 1 -81.4663 -44.3096 -114.45 + 46 263.412 678 3 0 -81.4783 -44.3159 -115.85 + 46 111.151 491 2 1 -81.7301 -44.4306 -144.45 + 46 245.468 678 2 0 -81.7477 -44.4306 -145.85 + 46 115.785 489 1 1 -82.1165 -44.4301 -174.45 + 46 112.31 678 1 0 -82.1377 -44.4227 -175.85 + 46 113.74 487 0 1 -82.6131 -44.2918 -204.45 + 46 212.441 678 0 0 -82.6232 -44.2802 -205.85 + 46 1.3337 169 0 1 -146.15 -80.5683 -204.486 + 46 38.8778 528 4 0 -90.0219 -74.4265 -86.25 + 46 232.507 490 0 1 -81.901 -44.3836 -204.45 + 46 162.651 491 0 1 -81.85 -44.5025 -204.63 + 46 149.793 675 0 0 -80.5755 -44.9855 -205.85 + 46 135.112 674 0 0 -80.4545 -45.0502 -205.955 + 46 189.596 673 0 0 -80.1909 -45.25 -206.057 + 46 3.3629 672 0 0 -79.9543 -45.4501 -206.241 + 46 214.03 767 3 0 -28.7303 -26.4981 -116.25 + 46 71.4184 804 0 0 -56.034 -19.25 -206.019 + 46 45.6594 1406 2 0 32.5198 101.35 -146.027 + 46 86.3596 1444 2 0 45.9596 108.95 -146.08 + 46 250.757 493 3 1 -81.3829 -43.9117 -114.45 + 46 216.852 680 3 0 -81.374 -43.8916 -115.85 + 46 121.769 494 2 1 -81.0812 -43.4314 -144.45 + 46 314.357 683 2 0 -81.0482 -43.4295 -145.85 + 46 128.308 498 1 1 -80.4354 -43.5494 -174.45 + 46 209.253 682 1 0 -80.3984 -43.5795 -175.85 + 46 77.9304 500 0 1 -79.8986 -44.3041 -204.45 + 46 28.3928 501 0 1 -79.85 -44.4288 -204.739 + 46 233.075 928 3 0 29.2059 5.69066 -116.25 + 46 3.52795 927 3 0 29.2594 5.65 -116.118 + 46 114.603 497 2 1 -80.6013 -43.5247 -144.45 + 46 111.062 490 1 1 -82.0268 -41.5004 -174.45 + 46 201.894 693 1 0 -82.0822 -41.4056 -175.85 + 46 135.644 482 0 1 -83.5439 -39.6332 -204.45 + 46 159.831 701 0 0 -83.6473 -39.6586 -205.85 + 46 131.101 493 7 1 -81.2617 -44.0534 5.55 + 46 129.854 679 7 0 -81.2566 -44.0556 4.15 + 46 114.216 493 6 1 -81.2952 -43.9601 -24.45 + 46 183.285 680 6 0 -81.3176 -43.9292 -25.85 + 46 138.106 491 5 1 -81.6533 -43.249 -54.45 + 46 182.763 684 5 0 -81.7008 -43.2137 -55.85 + 46 116.382 485 4 1 -82.9154 -42.4299 -84.45 + 46 147.486 688 4 0 -82.9598 -42.38 -85.85 + 46 152.793 481 3 1 -83.7037 -40.8941 -114.45 + 46 137.976 696 3 0 -83.7307 -40.8285 -115.85 + 46 121.725 478 2 1 -84.2501 -39.564 -144.45 + 46 140.241 702 2 0 -84.2702 -39.498 -145.85 + 46 121.296 476 1 1 -84.8421 -38.1148 -174.45 + 46 122.056 710 1 0 -84.8672 -38.0461 -175.85 + 46 150.321 474 0 1 -85.2354 -36.6941 -204.45 + 46 149.765 717 0 0 -85.2481 -36.6294 -205.85 + 46 223.84 646 5 0 -118.264 -50.7508 -56.25 + 46 191.763 467 7 0 -42.8122 -86.6315 3.75 + 46 97.4322 466 7 0 -42.804 -86.65 3.7644 + 46 120.065 497 1 1 -80.4723 -44.4457 -174.45 + 46 107.247 677 1 0 -80.5523 -44.5334 -175.85 + 46 122.557 492 0 1 -81.619 -46.7553 -204.45 + 46 147.166 664 0 0 -81.6062 -47.1083 -205.85 + 46 129.279 492 2 1 -81.5905 -44.2275 -144.45 + 46 83.8785 506 1 1 -78.7331 -47.7172 -174.45 + 46 20.8706 507 1 1 -78.6499 -47.7507 -174.77 + 46 40.7448 661 1 0 -78.2724 -47.8421 -175.85 + 46 120.909 660 1 0 -78.2362 -47.85 -175.951 + 46 77.3124 562 0 1 -67.5131 -51.0147 -204.45 + 46 69.8501 563 0 1 -67.45 -51.0396 -204.631 + 46 122.76 644 0 0 -67.0176 -51.1868 -205.85 + 46 305.628 705 0 0 -7.64234 -38.8921 -206.25 + 46 30.6715 704 0 0 -6.86111 -39.05 -206.225 + 46 13.5658 466 0 0 15.191 -86.835 -206.25 + 46 107.082 465 0 0 15.198 -86.85 -206.238 + 46 21.1 464 0 0 15.2455 -87.0501 -205.936 + 46 41.6619 975 0 1 15.2495 -87.218 -204.85 + 46 93.9742 976 0 1 15.2502 -87.1854 -204.718 + 46 158.102 962 0 1 12.5193 -89.5215 -204.45 + 46 132.364 961 0 1 12.45 -89.5243 -204.52 + 46 14.8231 584 0 0 -42.3643 -63.2202 -206.25 + 46 88.8337 583 0 0 -42.2768 -63.25 -206.199 + 46 131.006 679 3 0 -81.5471 -44.1733 -115.85 + 46 151.339 496 2 1 -80.7092 -42.7701 -144.45 + 46 116.01 686 2 0 -80.622 -42.7522 -145.85 + 46 171.421 511 1 1 -77.7928 -41.5854 -174.45 + 46 31.6867 692 1 0 -77.6935 -41.4632 -175.85 + 46 149.024 521 0 1 -75.7447 -38.8305 -204.45 + 46 180.224 707 0 0 -75.6852 -38.5825 -205.85 + 46 50.1674 499 7 1 -80.0577 -44.4245 5.55 + 46 55.1609 500 7 1 -80.05 -44.4272 5.35691 + 46 109.91 678 7 0 -79.9943 -44.4444 4.15 + 46 117.545 506 6 1 -78.7846 -44.8017 -24.45 + 46 108.6 675 6 0 -78.6944 -44.8652 -25.85 + 46 111.605 516 5 1 -76.6706 -46.4517 -54.45 + 46 25.7125 517 5 1 -76.65 -46.4625 -54.7513 + 46 123.65 667 5 0 -76.5723 -46.5028 -55.85 + 46 97.9573 528 4 1 -74.446 -47.5504 -84.45 + 46 124.758 662 4 0 -74.2834 -47.5688 -85.85 + 46 130.273 545 3 1 -70.9966 -48.3049 -114.45 + 46 116.411 658 3 0 -70.8244 -48.3765 -115.85 + 46 100.599 563 2 1 -67.3389 -49.6956 -144.45 + 46 104.96 651 2 0 -67.2288 -49.8134 -145.85 + 46 114.08 574 1 1 -65.0596 -52.3097 -174.45 + 46 67.5028 575 1 1 -65.05 -52.3333 -174.68 + 46 114.043 637 1 0 -64.9994 -52.4508 -175.85 + 46 241.918 581 0 1 -63.6597 -55.3308 -204.45 + 46 142.537 623 0 0 -63.7897 -55.3267 -205.85 + 46 98.7311 582 0 1 -63.65 -55.3846 -204.839 + 46 131.1 622 0 0 -65.1155 -55.5822 -205.85 +Number of digits in this event = 67 +Using G4ParticleGun ... +4.23874 LIN +e- +Event: 47 +Number of tracker hits in this event = 261 + 47 366.608 1302 9 1 80.6226 -100.662 65.55 + 47 344.295 397 9 0 80.6233 -100.663 64.15 + 47 243.359 1302 8 1 80.6357 -100.673 35.55 + 47 424.277 397 8 0 80.6343 -100.672 34.15 + 47 111.391 1302 7 1 80.6151 -100.655 5.55 + 47 346.784 397 7 0 80.6134 -100.653 4.15 + 47 304.504 1302 6 1 80.5821 -100.604 -24.45 + 47 372.982 397 6 0 80.5794 -100.602 -25.85 + 47 121.526 1302 5 1 80.5228 -100.563 -54.45 + 47 104.027 397 5 0 80.5174 -100.562 -55.85 + 47 116.326 1301 4 1 80.3938 -100.52 -84.45 + 47 152.573 398 4 0 80.3868 -100.519 -85.85 + 47 125.276 1300 3 1 80.2445 -100.497 -114.45 + 47 127.165 398 3 0 80.2372 -100.495 -115.85 + 47 134.542 1300 2 1 80.0817 -100.448 -144.45 + 47 163.317 398 2 0 80.0744 -100.446 -145.85 + 47 227.387 1299 1 1 79.934 -100.419 -174.45 + 47 126.842 398 1 0 79.9231 -100.419 -175.85 + 47 384.929 1298 0 1 79.7062 -100.399 -204.45 + 47 99.8967 398 0 0 79.6962 -100.396 -205.85 + 47 473.773 399 0 0 79.6193 -100.342 -205.851 + 47 268.008 1301 0 1 80.3734 -100.11 -204.45 + 47 141.719 1300 0 1 80.25 -100.184 -204.459 + 47 162.566 1547 2 1 129.55 21.314 -144.7 + 47 104.855 1303 6 1 80.65 -100.713 -24.5807 + 47 68.0816 1304 6 1 80.85 -100.816 -24.7697 + 47 302.286 393 6 0 82.0192 -101.497 -25.8502 + 47 77.9507 392 6 0 82.4355 -101.55 -25.8862 + 47 133.508 1314 6 1 82.8533 -100.185 -24.8499 + 47 21.5547 1278 2 1 75.6648 -114.428 -144.45 + 47 99.5636 1277 2 1 75.65 -114.427 -144.512 + 47 105.702 329 2 0 75.2782 -114.292 -145.85 + 47 125.051 1249 1 1 69.9692 -112.376 -174.45 + 47 129.892 339 1 0 69.8027 -112.345 -175.85 + 47 66.0606 1226 0 1 65.2692 -108.063 -204.45 + 47 76.7025 1227 0 1 65.45 -108.065 -204.588 + 47 38.3891 1228 0 1 65.65 -108.067 -204.748 + 47 144.109 360 0 0 66.8735 -108.025 -205.85 + 47 109.558 1302 4 1 80.5478 -100.573 -84.4503 + 47 166.825 399 4 0 80.8108 -100.263 -85.85 + 47 52.511 1333 3 1 86.7297 -92.2634 -114.45 + 47 58.4381 1334 3 1 86.85 -92.1856 -114.526 + 47 80.238 1335 3 1 87.0501 -92.0695 -114.638 + 47 197.026 1336 3 1 87.25 -91.9601 -114.741 + 47 6.95652 1337 3 1 87.45 -91.8637 -114.836 + 47 2.84077 445 3 0 89.5152 -90.9537 -115.85 + 47 199.172 446 3 0 89.5234 -90.95 -115.854 + 47 117.728 447 3 0 90.15 -90.7406 -116.211 + 47 99.9162 1548 2 1 129.75 -89.4885 -144.495 + 47 60.6479 1549 2 1 129.95 -89.2998 -144.526 + 47 103.277 1550 2 1 130.15 -89.1464 -144.547 + 47 83.2763 1551 2 1 130.35 -88.9941 -144.593 + 47 74.5832 1552 2 1 130.55 -88.8588 -144.627 + 47 62.6405 1553 2 1 130.75 -88.7047 -144.643 + 47 91.9913 1554 2 1 130.95 -88.5423 -144.646 + 47 79.4614 1555 2 1 131.15 -88.3562 -144.687 + 47 66.1676 1556 2 1 131.35 -88.1527 -144.739 + 47 77.4915 1557 2 1 131.55 -87.9977 -144.772 + 47 140.342 1558 2 1 131.75 -87.803 -144.75 + 47 102.34 1559 2 1 131.95 -87.5266 -144.725 + 47 121.085 1560 2 1 132.15 -87.1855 -144.762 + 47 85.7222 476 2 0 134.034 -84.8216 -145.85 + 47 75.8711 477 2 0 134.163 -84.65 -145.913 + 47 102.706 478 2 0 134.349 -84.45 -145.989 + 47 255.771 479 2 0 134.522 -84.25 -146.129 + 47 76.5838 1295 6 1 79.2165 -100.87 -24.4501 + 47 19.3146 1296 6 1 79.25 -100.943 -24.7759 + 47 115.208 394 6 0 79.3086 -101.216 -25.85 + 47 216.597 1297 5 1 79.5181 -107.824 -54.4501 + 47 25.3813 1296 5 1 79.45 -107.794 -54.7593 + 47 117.102 362 5 0 79.2535 -107.737 -55.8504 + 47 54.4468 1268 4 1 73.7809 -105.922 -84.45 + 47 72.2133 1267 4 1 73.65 -105.893 -84.6266 + 47 150.558 371 4 0 72.7701 -105.759 -85.8508 + 47 128.475 372 4 0 72.7177 -105.75 -85.9258 + 47 21.5929 1162 3 1 52.479 -102.334 -114.45 + 47 100.813 1161 3 1 52.45 -102.35 -114.532 + 47 28.7236 387 3 0 51.9388 -102.725 -115.85 + 47 81.6819 386 3 0 51.9074 -102.75 -115.935 + 47 70.3186 1124 2 1 44.9464 -109.633 -144.45 + 47 60.444 1125 2 1 45.0502 -109.646 -144.685 + 47 181.685 352 2 0 45.6504 -109.697 -145.85 + 47 38.3145 1217 1 1 63.5311 -114.296 -174.45 + 47 77.8048 1218 1 1 63.65 -114.386 -174.534 + 47 73.7558 1219 1 1 63.85 -114.539 -174.674 + 47 4.13559 1220 1 1 64.0502 -114.695 -174.837 + 47 78.5035 321 1 0 65.1615 -115.754 -175.85 + 47 209.076 320 1 0 65.3436 -115.95 -176.01 + 47 43.3722 319 1 0 65.5537 -116.15 -176.188 + 47 3.42866 399 6 0 80.4256 -100.349 -25.85 + 47 328.96 398 6 0 80.4247 -100.35 -25.8651 + 47 101.145 1293 5 1 78.7472 -102.509 -54.45 + 47 158.22 387 5 0 78.8242 -102.654 -55.8503 + 47 28.6543 1304 4 1 81.0366 -105.808 -84.45 + 47 418.58 1305 4 1 81.05 -105.814 -84.5402 + 47 125.518 1326 3 1 85.3636 -106.996 -114.45 + 47 114.008 366 3 0 85.6222 -106.916 -115.85 + 47 119.977 1354 2 1 90.9859 -104.627 -144.45 + 47 118.712 378 2 0 91.2455 -104.388 -145.85 + 47 59.0794 379 2 0 91.2875 -104.35 -146.079 + 47 153.157 1381 1 1 96.4775 -100.553 -174.45 + 47 59.1949 1382 1 1 96.55 -100.517 -174.642 + 47 246.163 399 1 0 96.9847 -100.288 -175.85 + 47 112.83 1436 0 1 107.39 -96.1836 -204.45 + 47 651.878 419 0 0 107.85 -96.1772 -205.85 + 47 229.384 1372 0 1 94.7022 -95.5201 -204.45 + 47 23.4341 428 0 0 94.4201 -94.4148 -205.85 + 47 127.654 429 0 0 94.4063 -94.3498 -205.933 + 47 22.388 430 0 0 94.3546 -94.15 -206.197 + 47 210.018 1296 4 1 79.335 -99.8642 -84.4501 + 47 55.8645 1297 4 1 79.45 -99.8168 -84.6787 + 47 331.909 403 4 0 80.0097 -99.5193 -85.85 + 47 68.6387 1365 3 1 93.2796 -91.23 -114.45 + 47 282.369 1366 3 1 93.3504 -91.1962 -114.534 + 47 20.0686 1367 3 1 93.5504 -91.0724 -114.803 + 47 67.825 448 3 0 94.4312 -90.55 -116.078 + 47 28.9699 1457 2 1 111.687 -80.4086 -144.45 + 47 90.6315 1458 2 1 111.75 -80.3623 -144.506 + 47 104.422 1459 2 1 111.95 -80.2169 -144.681 + 47 24.8686 503 2 0 113.262 -79.3008 -145.85 + 47 139.171 504 2 0 113.33 -79.25 -145.913 + 47 60.6092 505 2 0 113.555 -79.05 -146.136 + 47 81.9659 1619 1 1 144.053 -53.3207 -174.45 + 47 105.153 1620 1 1 144.15 -53.1519 -174.629 + 47 44.8952 639 1 0 144.773 -52.1364 -175.85 + 47 105.965 640 1 0 144.83 -52.05 -175.959 + 47 7.50142 641 1 0 144.977 -51.8499 -176.217 + 47 99.459 1706 0 1 161.386 -29.6939 -204.45 + 47 39.0996 1707 0 1 161.551 -29.5995 -204.762 + 47 39.8256 753 0 0 162.133 -29.2897 -205.85 + 47 78.7862 754 0 0 162.212 -29.25 -205.991 + 47 112.314 397 4 0 79.7273 -100.571 -85.8504 + 47 85.6139 291 4 0 119.887 -121.911 -86.2497 + 47 198.789 290 4 0 120.04 -121.95 -86.1184 + 47 0.256035 1505 4 1 121.35 -122.233 -84.8499 + 47 70.6703 1506 4 1 121.35 -122.233 -84.8495 + 47 69.5977 1507 4 1 121.55 -122.275 -84.7055 + 47 77.8082 1508 4 1 121.75 -122.346 -84.6001 + 47 10.4034 1509 4 1 121.951 -122.429 -84.4702 + 47 55.7728 1510 4 1 122.231 -122.22 -84.45 + 47 84.006 1511 4 1 122.35 -122.055 -84.5535 + 47 97.2667 1512 4 1 122.55 -121.786 -84.7085 + 47 56.267 300 4 0 123.651 -120.126 -85.85 + 47 76.0286 301 4 0 123.739 -119.95 -85.9736 + 47 49.3537 302 4 0 123.824 -119.75 -86.1127 + 47 26.5316 556 4 0 153.45 -68.8058 -86.2499 + 47 80.9854 555 4 0 153.509 -68.85 -86.1866 + 47 101.277 554 4 0 153.702 -69.05 -86.0385 + 47 261.284 1672 4 1 154.682 -69.8838 -84.8499 + 47 17.9379 1673 4 1 154.75 -69.9599 -84.6522 + 47 84.4706 1671 4 1 154.55 -70.348 -84.6326 + 47 316.695 1670 4 1 154.35 -70.3229 -84.6952 + 47 120.173 1303 8 1 80.66 -100.579 35.55 + 47 116.294 1303 7 1 80.7403 -100.683 5.55 + 47 115.074 1305 6 1 81.1325 -100.42 -24.45 + 47 278.26 1307 5 1 81.4593 -99.8513 -54.45 + 47 128.151 401 5 0 81.4732 -99.8316 -55.85 + 47 366.264 1308 4 1 81.7538 -99.4101 -84.45 + 47 102.459 1309 3 1 81.93 -98.8541 -114.45 + 47 137.019 406 3 0 81.9185 -98.8225 -115.85 + 47 122.868 1308 2 1 81.6773 -98.1404 -144.45 + 47 140.458 410 2 0 81.6665 -98.0988 -145.85 + 47 250.343 1307 1 1 81.4592 -97.2615 -174.45 + 47 116.502 414 1 0 81.4567 -97.2059 -175.85 + 47 143.49 1306 0 1 81.3449 -96.1428 -204.45 + 47 483.747 418 0 0 81.2238 -96.3975 -205.85 + 47 7.29575 417 0 0 81.1986 -96.5501 -205.954 + 47 37.6116 1184 5 1 56.9321 -111.605 -54.85 + 47 43.7293 1185 5 1 57.05 -111.66 -54.7231 + 47 96.2227 807 9 0 -86.5823 -18.5284 63.75 + 47 142.553 806 9 0 -86.5277 -18.65 63.8462 + 47 107.352 421 1 0 81.121 -95.9386 -175.85 + 47 75.9273 1307 2 1 81.6499 -98.1264 -144.78 + 47 215.533 415 2 0 80.062 -97.012 -145.85 + 47 12.4769 413 1 0 81.5139 -97.5387 -175.85 + 47 11.219 412 1 0 81.5068 -97.55 -176.24 + 47 118.647 1309 4 1 81.85 -99.3989 -84.6343 + 47 146.107 406 4 0 82.0093 -98.9181 -85.85 + 47 9.02267 407 4 0 82.0596 -98.75 -86.2291 + 47 245.908 1331 3 1 86.4128 -75.8917 -114.45 + 47 302.862 1330 3 1 86.25 -76.4436 -114.718 + 47 70.9698 1329 3 1 86.05 -76.7478 -114.672 + 47 338.205 1328 3 1 85.8494 -76.7882 -114.658 + 47 60.7039 1327 3 1 85.65 -76.8456 -114.658 + 47 107.875 402 4 0 82.3894 -99.58 -85.8503 + 47 2.08571 1401 3 1 100.544 -108.661 -114.45 + 47 129.822 1402 3 1 100.55 -108.658 -114.457 + 47 48.8398 1403 3 1 100.75 -108.569 -114.704 + 47 81.3413 359 3 0 101.502 -108.231 -115.85 + 47 36.6258 360 3 0 101.673 -108.15 -116.128 + 47 133.03 1473 2 1 114.761 -92.707 -144.45 + 47 122.021 439 2 0 115.43 -92.2966 -145.85 + 47 177.041 1536 1 1 127.41 -83.2967 -174.45 + 47 25.8499 475 1 0 127.838 -84.9568 -175.85 + 47 88.0634 474 1 0 127.867 -85.05 -175.927 + 47 127.51 473 1 0 127.928 -85.25 -176.064 + 47 26.7585 472 1 0 127.985 -85.45 -176.187 + 47 125.844 1626 0 1 145.443 -125.608 -204.45 + 47 6.50082 1627 0 1 145.55 -125.324 -204.833 + 47 33.293 280 0 0 146.131 -124.037 -205.85 + 47 68.0225 281 0 0 146.164 -123.95 -205.914 + 47 48.756 282 0 0 146.23 -123.75 -206.017 + 47 50.8576 283 0 0 146.282 -123.55 -206.099 + 47 60.0442 284 0 0 146.327 -123.35 -206.169 + 47 278.317 474 0 0 140.999 -85.1863 -206.25 + 47 62.0688 1602 0 1 140.572 -85.0977 -204.85 + 47 96.4241 1601 0 1 140.55 -85.1249 -204.755 + 47 95.413 1307 4 1 81.65 -99.3693 -84.827 + 47 332.054 404 4 0 80.9493 -99.2569 -85.85 + 47 182.912 1311 1 1 82.3749 -100.717 -174.45 + 47 125.509 397 1 0 82.3769 -100.679 -175.85 + 47 218.579 1313 0 1 82.7113 -99.2169 -204.45 + 47 118.797 405 0 0 82.5323 -99.0567 -205.85 + 47 104.743 1304 7 1 80.9158 -100.861 5.55 + 47 112.488 396 7 0 80.9346 -100.857 4.15 + 47 137.571 1306 6 1 81.3194 -100.758 -24.45 + 47 163.602 396 6 0 81.3235 -100.768 -25.85 + 47 115.106 395 5 0 81.5054 -100.973 -55.85 + 47 144.139 396 4 0 81.2253 -100.796 -85.85 + 47 123.404 1304 3 1 80.9751 -100.329 -114.45 + 47 94.3699 399 3 0 80.9742 -100.317 -115.85 + 47 122.103 1304 2 1 80.9911 -100.192 -144.45 + 47 131.18 399 2 0 80.9492 -100.182 -145.85 + 47 180.783 1300 1 1 80.2294 -99.9469 -174.45 + 47 178.913 401 1 0 80.1862 -99.9437 -175.85 + 47 128.655 1296 0 1 79.3523 -100.136 -204.45 + 47 32.3366 597 1 0 73.38 -60.5418 -176.25 + 47 111.358 598 1 0 73.338 -60.45 -176.159 + 47 37.156 599 1 0 73.1761 -60.25 -175.903 + 47 91.4381 1260 1 1 72.2402 -59.5345 -174.85 + 47 77.0298 1259 1 1 72.05 -59.4552 -174.687 + 47 82.5108 392 1 0 79.5701 -101.703 -175.85 + 47 89.7916 391 1 0 79.5632 -101.75 -175.889 + 47 100.52 390 1 0 79.4676 -101.95 -175.982 + 47 45.0183 389 1 0 79.3629 -102.15 -175.929 + 47 53.8596 1292 1 1 78.5025 -102.895 -174.85 + 47 44.5425 1291 1 1 78.45 -102.924 -174.806 + 47 113.895 386 1 0 78.9178 -102.883 -175.85 + 47 7.93377 1295 1 1 79.2416 -102.527 -174.85 + 47 4.37275 1316 1 1 83.4217 -99.6561 -174.85 + 47 56.1913 402 1 0 83.9157 -99.5633 -175.85 + 47 43.9998 394 4 0 76.7059 -101.276 -85.85 + 47 165.181 393 4 0 76.6382 -101.35 -85.8703 + 47 89.3173 1306 4 1 81.2503 -100.592 -84.5025 + 47 92.2099 400 4 0 83.4819 -100.141 -85.85 + 47 191.068 1324 4 1 84.9945 -101.016 -84.85 + 47 6.27828 1325 4 1 85.05 -101.122 -84.7662 + 47 191.745 392 4 0 80.6062 -101.606 -85.8504 + 47 158.772 391 4 0 80.4364 -101.75 -86.0733 + 47 113.835 395 4 0 81.1554 -100.967 -85.85 + 47 229.718 1290 3 1 78.156 -104.525 -114.45 + 47 117.832 374 3 0 78.2054 -105.192 -115.85 + 47 21.2084 373 3 0 78.2081 -105.35 -116.185 + 47 94.6243 1291 2 1 78.321 -117.1 -144.45 + 47 104.644 1292 2 1 78.45 -117.322 -144.603 + 47 108.864 1293 2 1 78.65 -117.551 -144.715 + 47 1.53598 1294 2 1 78.85 -117.769 -144.846 + 47 57.9309 302 2 0 80.613 -119.627 -145.85 + 47 144.217 301 2 0 80.7311 -119.75 -145.912 + 47 95.9235 300 2 0 80.9255 -119.95 -146.039 + 47 62.398 299 2 0 81.1146 -120.15 -146.17 +Number of digits in this event = 98 +Using G4ParticleGun ... +7.24264 LIN +e- +Event: 48 +Number of tracker hits in this event = 23 + 48 117.23 561 10 1 -67.6889 -52.3398 95.55 + 48 94.535 638 10 0 -67.6892 -52.3397 94.15 + 48 118.518 561 9 1 -67.6941 -52.3358 65.55 + 48 117.336 638 9 0 -67.6947 -52.3353 64.15 + 48 157.444 561 8 1 -67.7074 -52.3264 35.55 + 48 119.708 638 8 0 -67.7077 -52.3251 34.15 + 48 101.381 561 7 1 -67.72 -52.3002 5.55 + 48 138.753 638 7 0 -67.7216 -52.3009 4.15 + 48 221.191 561 6 1 -67.7601 -52.3199 -24.45 + 48 128.92 638 6 0 -67.7758 -52.3076 -25.85 + 48 116.481 559 5 1 -68.102 -52.059 -54.45 + 48 116.569 640 5 0 -68.1179 -52.0456 -55.85 + 48 117.816 558 4 1 -68.4434 -51.7729 -84.45 + 48 124.673 641 4 0 -68.4564 -51.7608 -85.85 + 48 115.536 556 3 1 -68.7302 -51.5116 -114.45 + 48 133.939 642 3 0 -68.7431 -51.5012 -115.85 + 48 163.06 555 2 1 -69.0024 -51.293 -144.45 + 48 179.353 643 2 0 -69.015 -51.2827 -145.85 + 48 144.495 553 1 1 -69.2819 -51.0706 -174.45 + 48 124.035 644 1 0 -69.2961 -51.0598 -175.85 + 48 128.597 552 0 1 -69.5814 -50.8425 -204.45 + 48 142.501 646 0 0 -69.6015 -50.8337 -205.85 + 48 34.6058 178 0 1 -144.35 -108.93 -204.594 +Number of digits in this event = 14 +Using G4ParticleGun ... +3.04827 LIN +e- +Event: 49 +Number of tracker hits in this event = 232 + 49 252.145 462 10 1 -87.5893 -34.9076 95.55 + 49 128.637 725 10 0 -87.5902 -34.9077 94.15 + 49 337.272 462 9 1 -87.6054 -34.9195 65.55 + 49 399.723 725 9 0 -87.6097 -34.9214 64.15 + 49 332.318 461 8 1 -87.7054 -34.9445 35.55 + 49 112.815 725 8 0 -87.7023 -34.9398 34.15 + 49 112.084 462 7 1 -87.632 -34.8477 5.55 + 49 128.781 726 7 0 -87.6323 -34.8432 4.15 + 49 752.411 462 6 1 -87.6303 -34.7447 -24.45 + 49 475.583 726 6 0 -87.6286 -34.748 -25.85 + 49 258.538 462 5 1 -87.5813 -34.8015 -54.45 + 49 134.353 726 5 0 -87.577 -34.8019 -55.85 + 49 251.784 462 4 1 -87.4851 -34.7794 -84.45 + 49 127.464 726 4 0 -87.4854 -34.7872 -85.85 + 49 289.12 462 3 1 -87.4901 -34.9427 -114.45 + 49 136.601 725 3 0 -87.4878 -34.948 -115.85 + 49 257.786 463 2 1 -87.445 -35.0831 -144.45 + 49 104.746 724 2 0 -87.4542 -35.09 -145.85 + 49 132.472 461 1 1 -87.6523 -35.2379 -174.45 + 49 146.584 723 1 0 -87.6669 -35.2536 -175.85 + 49 87.6715 460 0 1 -87.9301 -35.6399 -204.45 + 49 111.34 721 0 0 -87.9509 -35.6611 -205.85 + 49 130.884 746 0 1 -30.85 -37.089 -204.591 + 49 28.3065 691 0 0 -100.072 -41.8257 -206.25 + 49 334.328 724 6 0 -87.204 -35.0627 -25.85 + 49 103.932 461 6 1 -87.65 -34.7582 -24.6893 + 49 143.316 723 6 0 -88.4861 -35.2934 -25.8503 + 49 409.905 722 6 0 -88.5933 -35.4501 -26.0523 + 49 21.3863 570 6 0 33.3105 -65.993 -26.25 + 49 433.112 463 0 1 -87.3017 -33.9796 -204.45 + 49 252.958 732 0 0 -87.541 -33.5342 -205.85 + 49 60.1526 733 0 0 -87.6233 -33.45 -206.17 + 49 140.737 779 0 0 -100.507 -24.1357 -206.25 + 49 41.2465 396 0 1 -100.935 -24.2645 -204.85 + 49 96.5259 395 0 1 -100.95 -24.2703 -204.796 + 49 123.51 461 5 1 -87.6545 -34.5628 -54.45 + 49 252.495 727 5 0 -87.6585 -34.5586 -55.85 + 49 108.91 461 4 1 -87.7171 -34.5126 -84.45 + 49 144.624 727 4 0 -87.7147 -34.5113 -85.85 + 49 102.551 727 3 0 -87.6442 -34.5035 -115.85 + 49 145.084 461 2 1 -87.6936 -34.3237 -144.45 + 49 155.947 728 2 0 -87.7026 -34.3149 -145.85 + 49 149.728 463 1 1 -87.3965 -34.3068 -174.45 + 49 255.225 728 1 0 -87.3854 -34.3071 -175.85 + 49 180.789 464 0 1 -87.1098 -34.2943 -204.45 + 49 106.434 728 0 0 -87.1017 -34.2927 -205.85 + 49 100.331 729 4 0 -87.4982 -34.2183 -85.85 + 49 118.103 461 3 1 -87.7218 -33.5292 -114.45 + 49 103.154 732 3 0 -87.739 -33.5082 -115.85 + 49 134.351 459 2 1 -88.076 -32.9556 -144.45 + 49 203.049 735 2 0 -88.112 -32.9387 -145.85 + 49 125.359 456 1 1 -88.6649 -32.4829 -174.45 + 49 148.781 737 1 0 -88.6836 -32.4605 -175.85 + 49 273.577 455 0 1 -88.9559 -31.9714 -204.45 + 49 168.07 740 0 0 -88.9752 -31.9133 -205.85 + 49 6.11016 479 1 1 -84.2286 -27.8705 -174.45 + 49 111.566 478 1 1 -84.25 -27.8613 -174.478 + 49 37.369 477 1 1 -84.45 -27.8019 -174.737 + 49 34.4821 760 1 0 -84.9801 -27.8569 -175.85 + 49 122.171 761 1 0 -85.0089 -27.85 -175.921 + 49 244.693 762 1 0 -85.2382 -27.65 -176.188 + 49 99.261 763 1 0 -85.8609 -27.45 -176.146 + 49 348.621 764 1 0 -86.0134 -27.25 -176.106 + 49 51.3293 463 8 1 -87.3263 -34.4971 35.5498 + 49 57.9478 464 8 1 -87.25 -34.4971 35.3743 + 49 144.552 727 8 0 -86.7507 -34.5812 34.15 + 49 115.56 513 7 1 -77.4295 -37.9143 5.54991 + 49 67.0147 514 7 1 -77.25 -37.8661 5.33697 + 49 236.613 712 7 0 -76.1684 -37.6319 4.15 + 49 40.4585 645 6 1 -50.9954 -28.1192 -24.4503 + 49 65.9372 646 6 1 -50.8499 -28.0437 -24.4882 + 49 63.8298 647 6 1 -50.65 -27.9337 -24.5382 + 49 88.411 648 6 1 -50.45 -27.8217 -24.5756 + 49 45.9906 649 6 1 -50.25 -27.7055 -24.6086 + 49 67.1344 650 6 1 -50.05 -27.5895 -24.6227 + 49 62.9488 651 6 1 -49.8499 -27.4767 -24.6078 + 49 62.6146 652 6 1 -49.65 -27.3653 -24.5881 + 49 62.3256 653 6 1 -49.45 -27.2512 -24.5638 + 49 81.7295 654 6 1 -49.25 -27.1515 -24.5438 + 49 140.237 655 6 1 -49.0496 -27.0631 -24.5361 + 49 59.9064 656 6 1 -48.8497 -26.9935 -24.5429 + 49 73.2476 657 6 1 -48.65 -26.9226 -24.5473 + 49 166.922 658 6 1 -48.45 -26.8516 -24.5466 + 49 63.251 659 6 1 -48.25 -26.7818 -24.5438 + 49 62.0224 660 6 1 -48.05 -26.7132 -24.5439 + 49 52.5744 661 6 1 -47.85 -26.6606 -24.5455 + 49 72.3317 662 6 1 -47.6499 -26.6069 -24.5373 + 49 66.053 663 6 1 -47.45 -26.5553 -24.5344 + 49 54.9606 664 6 1 -47.25 -26.5107 -24.5284 + 49 59.2701 665 6 1 -47.05 -26.4677 -24.5284 + 49 56.5356 666 6 1 -46.85 -26.4199 -24.5431 + 49 109.217 667 6 1 -46.65 -26.3656 -24.5567 + 49 77.2614 668 6 1 -46.45 -26.3198 -24.5694 + 49 87.3506 669 6 1 -46.25 -26.2786 -24.5884 + 49 50.7614 670 6 1 -46.05 -26.2516 -24.6114 + 49 81.1368 671 6 1 -45.85 -26.2336 -24.6412 + 49 53.9867 672 6 1 -45.65 -26.2181 -24.6741 + 49 49.0092 673 6 1 -45.45 -26.1989 -24.706 + 49 175.096 674 6 1 -45.25 -26.1883 -24.7389 + 49 94.1663 675 6 1 -45.05 -26.1819 -24.7745 + 49 45.8941 676 6 1 -44.85 -26.1882 -24.8188 + 49 598.918 768 6 0 -40.8979 -26.3186 -25.85 + 49 417.484 767 6 0 -39.4149 -26.45 -26.141 + 49 444.024 766 6 0 -38.1461 -26.65 -26.0963 + 49 358.725 765 6 0 -37.3623 -26.85 -25.9943 + 49 37.7332 735 6 1 -32.978 -27.5034 -24.85 + 49 59.5177 736 6 1 -32.85 -27.5208 -24.8159 + 49 58.2764 737 6 1 -32.65 -27.5446 -24.7603 + 49 62.0168 738 6 1 -32.45 -27.5552 -24.7197 + 49 109.534 739 6 1 -32.25 -27.6056 -24.6645 + 49 107.816 740 6 1 -32.05 -27.7059 -24.57 + 49 16.6355 741 6 1 -31.8498 -27.8156 -24.4683 + 49 40.9835 663 7 0 -22.1614 -47.3633 3.75 + 49 82.1434 662 7 0 -22.1221 -47.4502 3.8757 + 49 7.97823 661 7 0 -22.048 -47.6501 4.12897 + 49 9.75424 791 7 1 -21.6608 -48.484 5.15 + 49 296.659 792 7 1 -21.65 -48.5102 5.18014 + 49 120.633 793 7 1 -21.45 -49.3234 5.48606 + 49 112.252 794 7 1 -21.2498 -49.7043 5.38342 + 49 125.829 795 7 1 -21.05 -50.0652 5.34657 + 49 100.049 796 7 1 -20.85 -50.5191 5.26438 + 49 42.2966 637 7 0 -20.1865 -52.494 4.15 + 49 64.9304 636 7 0 -20.1397 -52.65 4.05034 + 49 44.2006 635 7 0 -20.0729 -52.8502 3.894 + 49 163.21 822 6 1 -15.5648 -73.537 -24.45 + 49 152.249 823 6 1 -15.45 -73.5507 -24.7465 + 49 363.603 532 6 0 -14.5906 -73.5078 -25.85 + 49 14.7787 1395 6 1 99.3053 -36.7191 -24.85 + 49 101.64 1396 6 1 99.35 -36.7366 -24.8359 + 49 48.8588 1397 6 1 99.55 -36.7963 -24.7554 + 49 86.7882 1398 6 1 99.75 -36.8557 -24.7085 + 49 219.043 1399 6 1 99.95 -37.0565 -24.6626 + 49 47.9475 1400 6 1 100.15 -37.2027 -24.5562 + 49 119.613 723 8 0 -87.856 -35.2737 34.15 + 49 124.023 457 7 1 -88.4945 -35.4636 5.55 + 49 140.387 722 7 0 -88.5281 -35.4876 4.15 + 49 171.695 450 6 1 -90.0265 -34.4646 -24.45 + 49 104.702 442 5 1 -91.5864 -35.0439 -54.45 + 49 22.7616 443 5 1 -91.55 -35.0693 -54.7983 + 49 155.561 724 5 0 -91.4402 -35.142 -55.8504 + 49 211.904 459 4 1 -88.1622 -37.2224 -84.45 + 49 140.76 713 4 0 -87.9722 -37.2782 -85.8502 + 49 22.2925 478 3 1 -84.2568 -38.4826 -114.45 + 49 109.036 479 3 1 -84.25 -38.4852 -114.529 + 49 119.766 707 3 0 -84.1607 -38.4966 -115.85 + 49 70.179 490 2 1 -81.8972 -38.7337 -144.45 + 49 31.2903 491 2 1 -81.85 -38.6961 -144.733 + 49 122.868 707 2 0 -81.6577 -38.5354 -145.85 + 49 55.9756 516 1 1 -76.7064 -34.5962 -174.45 + 49 68.7436 517 1 1 -76.65 -34.5675 -174.642 + 49 109.103 556 0 1 -68.7107 -30.8422 -204.45 + 49 45.1581 557 0 1 -68.65 -30.8119 -204.703 + 49 9.64408 746 0 0 -68.3411 -30.654 -205.85 + 49 107.773 747 0 0 -68.3332 -30.65 -205.879 + 49 120.581 458 4 1 -88.2502 -37.0424 -84.6159 + 49 19.8594 720 4 0 -88.2736 -35.894 -85.8501 + 49 50.1959 721 4 0 -88.2698 -35.8495 -85.896 + 49 144.496 722 4 0 -88.2998 -35.65 -86.0077 + 49 110.02 723 4 0 -88.4562 -35.45 -86.1385 + 49 11.6061 724 4 0 -88.6657 -35.25 -86.2313 + 49 48.8192 1233 4 0 -169.45 66.7221 -86.25 + 49 70.0943 1234 4 0 -169.535 66.85 -86.128 + 49 159.211 1235 4 0 -169.616 67.05 -85.9693 + 49 43.6984 1236 4 0 -169.67 67.2502 -85.9069 + 49 47.1112 1237 4 0 -169.676 67.45 -85.8842 + 49 63.1588 55 4 1 -169.02 72.8684 -84.85 + 49 31.0721 56 4 1 -168.95 73.0572 -84.8231 + 49 148.353 1284 4 0 -168.601 76.8772 -85.85 + 49 368.39 1285 4 0 -168.552 77.05 -85.9316 + 49 294.05 1286 4 0 -168.41 77.25 -86.0019 + 49 165.996 1287 4 0 -168.329 77.45 -86.0564 + 49 47.8767 452 6 1 -89.4749 -43.8688 -24.4501 + 49 48.3496 451 6 1 -89.65 -43.9044 -24.4938 + 49 381.682 449 6 1 -90.15 -43.9097 -24.6079 + 49 58.0667 448 6 1 -90.35 -43.8943 -24.6528 + 49 62.1864 447 6 1 -90.55 -43.8744 -24.6837 + 49 78.5144 446 6 1 -90.7504 -43.845 -24.7338 + 49 47.0941 445 6 1 -90.95 -43.8254 -24.7778 + 49 26.2824 444 6 1 -91.15 -43.7843 -24.8194 + 49 36.7037 687 6 0 -94.4973 -42.5041 -25.85 + 49 151.328 688 6 0 -94.6306 -42.45 -25.8989 + 49 74.9923 689 6 0 -95.182 -42.25 -26.125 + 49 62.0694 202 5 1 -139.66 -21.5637 -54.4501 + 49 75.8573 201 5 1 -139.75 -21.6161 -54.5618 + 49 205.007 200 5 1 -139.95 -21.7079 -54.7433 + 49 37.2216 199 5 1 -140.15 -21.723 -54.8135 + 49 111.84 786 5 0 -144.548 -22.7277 -55.85 + 49 208.018 785 5 0 -144.897 -22.85 -55.9455 + 49 228.556 784 5 0 -145.434 -23.0501 -55.9353 + 49 224.101 448 2 1 -90.4899 -40.1849 -144.45 + 49 132.903 699 2 0 -90.4716 -40.1475 -145.85 + 49 7.62322 449 1 1 -90.15 -39.4179 -174.822 + 49 55.4139 703 1 0 -90.3657 -39.2719 -175.85 + 49 115.906 704 1 0 -90.3974 -39.25 -176.002 + 49 138.187 419 0 1 -96.1981 -35.0319 -204.45 + 49 189.689 726 0 0 -96.4237 -34.7828 -205.85 + 49 108.882 698 2 0 -90.513 -40.2587 -145.85 + 49 123.563 446 1 1 -90.9164 -41.533 -174.45 + 49 129.918 692 1 0 -90.9422 -41.6275 -175.85 + 49 26.1123 691 1 0 -90.9488 -41.65 -176.191 + 49 147.49 444 0 1 -91.3385 -43.5119 -204.45 + 49 212.519 682 0 0 -91.2642 -43.6065 -205.85 + 49 147.007 937 6 1 7.45 -109.396 -24.8083 + 49 48.343 681 0 0 -90.6312 -43.8063 -205.85 + 49 134.544 680 0 0 -90.5556 -43.85 -206.025 + 49 381.596 416 0 0 -108.99 -96.8278 -206.25 + 49 58.9422 415 0 0 -109.028 -96.95 -206.165 + 49 67.7794 417 0 0 -109.04 -96.75 -205.963 + 49 219.736 725 6 0 -87.5897 -35.0078 -25.85 + 49 134.718 454 5 1 -89.2262 -35.1728 -54.4502 + 49 111.133 725 5 0 -88.8035 -35.0397 -55.85 + 49 125.108 502 4 1 -79.6181 -32.0904 -84.45 + 49 186.08 738 4 0 -79.5202 -32.3412 -85.8504 + 49 273.228 505 3 1 -78.9718 -36.8422 -114.45 + 49 78.6869 722 3 0 -78.676 -35.6327 -115.85 + 49 162.432 723 3 0 -78.6273 -35.4497 -116.042 + 49 3.93215 724 3 0 -78.5807 -35.25 -116.242 + 49 91.0569 540 2 1 -71.897 -6.46408 -144.451 + 49 37.5298 541 2 1 -71.85 -6.36808 -144.727 + 49 40.5339 870 2 0 -71.5858 -5.91756 -145.85 + 49 95.3049 871 2 0 -71.5611 -5.84993 -145.983 + 49 68.1694 574 1 1 -65.1795 6.07165 -174.45 + 49 72.6125 575 1 1 -65.05 6.1489 -174.589 + 49 22.5965 576 1 1 -64.85 6.25272 -174.786 + 49 9.58537 934 1 0 -63.6519 7.03207 -175.85 + 49 202.502 935 1 0 -63.6234 7.05 -175.874 + 49 205.536 757 0 1 -28.4881 15.357 -204.45 + 49 22.9445 966 0 0 -28.8183 13.3353 -205.85 + 49 68.4795 965 0 0 -28.8256 13.25 -205.912 + 49 81.3601 964 0 0 -28.834 13.0498 -206.046 + 49 14.9277 963 0 0 -28.8399 12.8498 -206.199 + 49 81.0773 737 4 0 -79.5076 -32.45 -86.1778 +Number of digits in this event = 98 +Using G4ParticleGun ... +1.17756 LIN +e- +Event: 50 +Number of tracker hits in this event = 57 + 50 115.049 571 11 1 -65.7047 -11.8232 125.55 + 50 106.269 841 11 0 -65.7103 -11.8253 124.15 + 50 137.763 571 10 1 -65.8237 -11.8562 95.55 + 50 99.8692 841 10 0 -65.8324 -11.8491 94.15 + 50 234.83 570 9 1 -66.0245 -11.6836 65.55 + 50 197.9 841 9 0 -66.0273 -11.6633 64.15 + 50 182.919 569 8 1 -66.0774 -11.2505 35.55 + 50 121.563 844 8 0 -66.0846 -11.2258 34.15 + 50 135.227 569 7 1 -66.2264 -10.7056 5.55 + 50 120.99 846 7 0 -66.2382 -10.6785 4.15 + 50 115.702 567 6 1 -66.4596 -10.1206 -24.45 + 50 139.243 849 6 0 -66.4841 -10.0932 -25.85 + 50 127.897 565 5 1 -67.0004 -9.49677 -54.45 + 50 135.047 853 5 0 -66.7149 -9.33486 -55.8503 + 50 124.425 596 4 1 -60.6846 -5.68709 -84.4505 + 50 76.5516 597 4 1 -60.6499 -5.67843 -84.5808 + 50 104.013 872 4 0 -60.3311 -5.59487 -85.85 + 50 2.81407 630 3 1 -53.8585 -3.74358 -114.45 + 50 134.229 631 3 1 -53.8499 -3.7385 -114.465 + 50 7.17014 632 3 1 -53.65 -3.61468 -114.831 + 50 164.958 884 3 0 -53.1065 -3.24908 -115.85 + 50 73.2394 719 2 1 -36.1653 10.4345 -144.45 + 50 142.972 720 2 1 -36.05 10.6137 -144.562 + 50 107.227 721 2 1 -35.85 10.93 -144.773 + 50 58.8093 961 2 0 -34.9688 12.2791 -145.85 + 50 77.2143 962 2 0 -34.8559 12.45 -145.981 + 50 51.8931 963 2 0 -34.7097 12.65 -146.137 + 50 24.3129 859 1 1 -8.09078 45.6626 -174.451 + 50 94.8214 860 1 1 -8.05 45.6831 -174.53 + 50 44.7065 1129 1 0 -7.51975 46.0091 -175.85 + 50 79.0576 1130 1 0 -7.45609 46.05 -176.013 + 50 15.6411 920 0 1 4.08156 54.4454 -204.45 + 50 71.9899 919 0 1 4.05 54.4173 -204.467 + 50 59.4559 918 0 1 3.85 54.2403 -204.589 + 50 86.9824 917 0 1 3.65 54.0946 -204.713 + 50 47.8511 1164 0 0 2.34771 52.9631 -205.85 + 50 99.1118 1163 0 0 2.22436 52.85 -205.966 + 50 34.2198 1162 0 0 2.03613 52.6499 -206.219 + 50 362.028 554 2 1 -69.0525 -7.66084 -144.45 + 50 165.134 862 2 0 -69.0818 -7.62483 -145.85 + 50 134.107 552 1 1 -69.5152 -6.90876 -174.45 + 50 213.57 865 1 0 -69.565 -6.90778 -175.85 + 50 139.948 546 0 1 -70.6959 -6.86975 -204.45 + 50 107.389 866 0 0 -70.75 -6.82188 -205.85 + 50 250.6 994 0 0 -76.4106 18.85 -206.118 + 50 191.726 861 2 0 -69.1082 -7.65 -146.086 + 50 151.306 776 2 0 -103.61 -24.7244 -146.25 + 50 0.628113 775 2 0 -103.696 -24.85 -145.854 + 50 300.027 382 2 1 -103.591 -25.5234 -144.85 + 50 497.259 383 2 1 -103.55 -25.5738 -144.666 + 50 108.643 550 1 1 -70.0021 -7.56657 -174.45 + 50 153.34 862 1 0 -70.0401 -7.57997 -175.85 + 50 104.424 545 0 1 -70.8863 -7.85799 -204.45 + 50 157.601 860 0 0 -70.932 -7.88304 -205.85 + 50 123.415 871 9 0 -80.169 -5.71139 63.75 + 50 14.5008 502 9 1 -79.4739 -5.5746 65.15 + 50 125.422 503 9 1 -79.45 -5.5741 65.1931 +Number of digits in this event = 30 +Using G4ParticleGun ... +6.96793 LIN +e- +Event: 51 +Number of tracker hits in this event = 65 + 51 117.557 1583 7 1 136.84 51.8654 5.55 + 51 125.464 1159 7 0 136.84 51.8662 4.15 + 51 114.429 1583 6 1 136.853 51.8841 -24.45 + 51 102.912 1159 6 0 136.855 51.8793 -25.85 + 51 415.185 1583 5 1 136.893 51.7725 -54.45 + 51 215.142 1158 5 0 136.896 51.7661 -55.85 + 51 175.667 1584 4 1 136.959 51.6241 -84.45 + 51 222.274 1157 4 0 136.965 51.617 -85.85 + 51 114.011 1584 3 1 137.084 51.4718 -114.45 + 51 135.858 1157 3 0 137.09 51.4628 -115.85 + 51 108.361 1585 2 1 137.212 51.283 -144.45 + 51 104.417 1156 2 0 137.216 51.273 -145.85 + 51 95.529 1585 1 1 137.3 51.1177 -174.45 + 51 108.876 1155 1 0 137.303 51.1116 -175.85 + 51 121.615 1586 0 1 137.35 50.9806 -204.45 + 51 233.117 1154 0 0 137.354 50.9697 -205.85 + 51 77.6625 1567 0 1 133.637 -27.6891 -204.85 + 51 244.085 1581 4 1 136.534 51.6102 -84.45 + 51 142.83 1576 3 1 135.431 51.0369 -114.45 + 51 110.551 1154 3 0 135.411 50.9937 -115.85 + 51 93.2207 1574 2 1 134.958 50.1546 -144.45 + 51 95.6571 1150 2 0 134.937 50.0983 -145.85 + 51 160.481 1570 1 1 134.319 49.0995 -174.45 + 51 67.8921 1145 1 0 134.289 49.0575 -175.85 + 51 29.83 1144 1 0 134.284 49.05 -176.104 + 51 135.866 1568 0 1 133.781 48.2181 -204.45 + 51 155.047 1140 0 0 133.749 48.1445 -205.85 + 51 127.602 1160 5 0 136.838 52.1232 -55.85 + 51 146.149 1576 4 1 135.419 56.3844 -84.4505 + 51 142.017 1180 4 0 135.099 56.1558 -85.8501 + 51 297.907 1537 3 1 127.709 51.4821 -114.45 + 51 62.7686 1536 3 1 127.55 51.3027 -114.749 + 51 96.2982 1152 3 0 127.109 50.6295 -115.85 + 51 41.2105 1151 3 0 127.009 50.4499 -116.142 + 51 33.2035 797 3 0 92.4225 -20.5586 -116.25 + 51 90.8406 796 3 0 92.3737 -20.65 -116.2 + 51 110.08 795 3 0 92.2627 -20.85 -116.052 + 51 24.4138 794 3 0 92.117 -21.05 -115.904 + 51 119.963 1354 3 1 91.0457 -22.3169 -114.85 + 51 170.88 1353 3 1 90.95 -22.4398 -114.755 + 51 96.8327 1352 3 1 90.75 -22.6839 -114.576 + 51 57.6418 1355 3 1 91.15 -23.5728 -114.715 + 51 41.6324 1356 3 1 91.35 -23.6753 -114.798 + 51 194.498 774 3 0 93.9495 -25.0968 -115.85 + 51 117.73 773 3 0 94.3002 -25.25 -115.981 + 51 64.2576 772 3 0 94.6167 -25.45 -116.109 + 51 47.4759 779 3 0 143.79 -24.1345 -116.25 + 51 131.354 780 3 0 143.896 -24.05 -116.141 + 51 125.795 781 3 0 144.14 -23.85 -115.955 + 51 70.6345 782 3 0 144.379 -23.65 -115.961 + 51 67.8207 783 3 0 144.587 -23.45 -115.972 + 51 81.4362 784 3 0 144.759 -23.25 -115.977 + 51 101.848 785 3 0 144.99 -23.05 -115.957 + 51 63.7044 786 3 0 145.246 -22.85 -115.976 + 51 64.7694 787 3 0 145.423 -22.65 -116.01 + 51 94.4709 788 3 0 145.529 -22.45 -116.025 + 51 100.598 789 3 0 145.695 -22.2497 -116.014 + 51 338.227 790 3 0 145.995 -22.0496 -116.01 + 51 134.459 791 3 0 146.876 -21.85 -116.026 + 51 2.47082 677 3 0 145.517 -44.6449 -116.25 + 51 89.8179 676 3 0 145.514 -44.65 -116.246 + 51 113.034 675 3 0 145.406 -44.85 -116.038 + 51 276.904 1626 3 1 145.499 -45.4678 -114.85 + 51 43.0139 1625 3 1 145.35 -45.5095 -114.543 + 51 44.8988 775 3 0 92.3928 -24.85 -116.081 +Number of digits in this event = 26 +Using G4ParticleGun ... +9.12074 LIN +e- +Event: 52 +Number of tracker hits in this event = 73 + 52 115.838 293 9 1 -121.377 -2.69479 65.55 + 52 181.989 886 9 0 -121.378 -2.69518 64.15 + 52 181.499 293 8 1 -121.411 -2.68498 35.55 + 52 113.353 886 8 0 -121.416 -2.6897 34.15 + 52 107.252 293 7 1 -121.508 -2.82022 5.55 + 52 134.744 886 7 0 -121.515 -2.83232 4.15 + 52 426.8 292 6 1 -121.696 -3.085 -24.45 + 52 127.084 884 6 0 -121.711 -3.09402 -25.85 + 52 272.041 290 5 1 -122.051 -3.23325 -54.45 + 52 121.648 884 5 0 -122.075 -3.24552 -55.85 + 52 20.3394 288 4 1 -122.549 -3.50189 -84.45 + 52 79.9131 287 4 1 -122.55 -3.50277 -84.5456 + 52 155.09 882 4 0 -122.557 -3.51591 -85.85 + 52 129.213 287 3 1 -122.675 -3.81014 -114.45 + 52 107.024 881 3 0 -122.67 -3.82512 -115.85 + 52 142.483 287 2 1 -122.565 -4.12506 -144.45 + 52 112.092 879 2 0 -122.558 -4.14029 -145.85 + 52 126.114 288 1 1 -122.429 -4.46885 -174.45 + 52 123.16 877 1 0 -122.414 -4.51201 -175.85 + 52 251.244 290 0 1 -122.117 -5.40328 -204.45 + 52 129.122 872 0 0 -122.086 -5.45291 -205.85 + 52 95.8032 1271 2 0 -126.066 74.25 -146.123 + 52 58.534 1666 5 0 -44.2855 153.35 -56.0119 + 52 110.823 1197 6 1 59.45 175.554 -24.5354 + 52 57.9009 291 5 1 -121.95 -3.14187 -54.7048 + 52 157.37 886 5 0 -121.482 -2.72348 -55.85 + 52 86.6767 887 5 0 -121.423 -2.65 -56.0244 + 52 79.0101 346 4 1 -110.784 11.3417 -84.45 + 52 66.8601 345 4 1 -110.95 11.3112 -84.6213 + 52 67.9169 344 4 1 -111.15 11.2748 -84.7547 + 52 9.01286 343 4 1 -111.35 11.2536 -84.8384 + 52 514.001 954 4 0 -113.65 10.9675 -85.85 + 52 126.762 886 6 0 -121.804 -2.73683 -25.85 + 52 145.365 887 6 0 -121.828 -2.65 -26.1908 + 52 57.5547 720 6 0 -108.933 -36.0303 -26.2495 + 52 177.566 719 6 0 -108.926 -36.05 -26.2364 + 52 60.6386 718 6 0 -108.788 -36.25 -26.0154 + 52 158.751 358 6 1 -108.508 -36.9172 -24.8496 + 52 83.7845 359 6 1 -108.35 -37.04 -24.4705 + 52 66.0599 360 6 1 -108.15 -37.1549 -24.4855 + 52 31.6273 710 6 0 -108.589 -38.005 -25.85 + 52 200.514 709 6 0 -108.617 -38.05 -25.9273 + 52 71.7688 311 6 1 -117.841 -35.6646 -24.85 + 52 128.592 310 6 1 -117.95 -35.5754 -24.6938 + 52 116.539 309 6 1 -118.15 -35.3013 -24.62 + 52 20.7285 291 6 1 -121.75 -2.94802 -24.7989 + 52 2.19599 282 5 1 -123.556 7.00077 -54.45 + 52 102.965 283 5 1 -123.55 7.00151 -54.4596 + 52 26.3795 284 5 1 -123.35 7.04813 -54.7515 + 52 9.69977 937 5 0 -122.094 7.6352 -55.8504 + 52 113.453 938 5 0 -122.062 7.65 -55.8794 + 52 12.1782 404 4 1 -99.1983 13.1284 -84.45 + 52 69.463 405 4 1 -99.15 13.1162 -84.4775 + 52 76.2211 406 4 1 -98.95 13.0998 -84.5685 + 52 49.9374 407 4 1 -98.75 13.1064 -84.6321 + 52 54.158 408 4 1 -98.55 13.0968 -84.7073 + 52 71.7111 409 4 1 -98.35 13.0962 -84.7744 + 52 179.779 964 4 0 -95.6345 13.0159 -85.85 + 52 156.735 988 4 0 -58.238 17.6706 -86.25 + 52 66.1114 989 4 0 -58.2427 17.8504 -85.9694 + 52 265.373 611 4 1 -57.8203 19.2137 -84.8498 + 52 230.2 291 1 1 -121.939 -3.7322 -174.45 + 52 399.361 881 1 0 -121.945 -3.73222 -175.85 + 52 273.207 881 0 0 -122.062 -3.66 -205.85 + 52 146.235 244 7 1 -131.18 32.1391 5.15 + 52 107.035 243 7 1 -131.351 32.0603 5.25789 + 52 77.0712 1057 7 0 -131.578 31.4882 4.15 + 52 24.9678 298 0 1 -120.357 -2.4343 -204.45 + 52 105.313 299 0 1 -120.35 -2.42069 -204.531 + 52 119.815 889 0 0 -120.224 -2.21982 -205.85 + 52 108.873 880 1 0 -121.668 -3.85011 -176.199 + 52 118.466 292 0 1 -121.629 -2.81761 -204.45 + 52 135.301 887 0 0 -121.639 -2.622 -205.851 +Number of digits in this event = 32 +Using G4ParticleGun ... +8.6363 LIN +e- +Event: 53 +Number of tracker hits in this event = 98 + 53 126.449 711 11 1 -37.665 -29.588 125.55 + 53 124.242 752 11 0 -37.6656 -29.5885 124.15 + 53 168.739 711 10 1 -37.6782 -29.5986 95.55 + 53 145.841 752 10 0 -37.6784 -29.5983 94.15 + 53 156.075 711 9 1 -37.6759 -29.5902 65.55 + 53 125.316 752 9 0 -37.6761 -29.5907 64.15 + 53 159.017 711 8 1 -37.6712 -29.6129 35.55 + 53 135.146 752 8 0 -37.6709 -29.6136 34.15 + 53 108.376 711 7 1 -37.6652 -29.6272 5.55 + 53 120.113 752 7 0 -37.6643 -29.6283 4.15 + 53 123.563 711 6 1 -37.6524 -29.648 -24.45 + 53 113.158 752 6 0 -37.6524 -29.6475 -25.85 + 53 110.845 711 5 1 -37.6503 -29.6389 -54.45 + 53 316.096 752 5 0 -37.6496 -29.6377 -55.85 + 53 121.428 712 4 1 -37.6364 -29.6152 -84.45 + 53 96.6598 752 4 0 -37.6359 -29.6151 -85.85 + 53 125.737 712 3 1 -37.6227 -29.6179 -114.45 + 53 312.335 752 3 0 -37.6208 -29.6188 -115.85 + 53 108.428 712 2 1 -37.5775 -29.6358 -144.45 + 53 284.917 752 2 0 -37.5758 -29.637 -145.85 + 53 383.518 712 1 1 -37.5428 -29.6627 -174.45 + 53 346.409 751 1 0 -37.5428 -29.6644 -175.85 + 53 229.698 712 0 1 -37.5415 -29.6943 -204.45 + 53 233.332 751 0 0 -37.5394 -29.6947 -205.85 + 53 52.7427 733 7 1 -33.2688 -86.6207 5.15 + 53 7.76493 734 7 1 -33.25 -86.6945 5.47337 + 53 89.0625 654 0 1 -49.05 -27.8614 -204.768 + 53 148.78 987 0 0 25.7765 17.5516 -206.25 + 53 127.516 1030 0 1 26.1256 17.9133 -204.85 + 53 65.8196 848 1 0 36.154 -10.3224 -176.25 + 53 92.5973 847 1 0 36.1985 -10.45 -176.128 + 53 72.2891 846 1 0 36.2448 -10.65 -175.987 + 53 9.89902 845 1 0 36.2901 -10.85 -175.858 + 53 248.143 1082 1 1 36.6327 -12.2313 -174.85 + 53 242.592 1083 1 1 36.65 -12.3241 -174.789 + 53 418.969 825 1 0 35.8127 -14.8912 -175.85 + 53 178.021 824 1 0 35.7119 -15.05 -175.997 + 53 1.86135 734 1 0 21.1803 -33.0516 -176.25 + 53 105.366 735 1 0 21.1843 -33.05 -176.238 + 53 56.8972 1003 1 1 20.7483 -32.8154 -174.85 + 53 79.1182 1002 1 1 20.65 -32.767 -174.662 + 53 115.448 1001 1 1 20.4307 -32.6077 -174.45 + 53 48.8643 737 1 0 20.488 -32.4656 -175.85 + 53 64.2984 738 1 0 20.5277 -32.45 -176.047 + 53 39.0876 990 1 0 26.2393 18.1332 -176.25 + 53 49.341 991 1 0 26.3405 18.2504 -176.208 + 53 127.687 826 1 0 34.6546 -14.85 -176.064 + 53 53.3936 827 1 0 34.368 -14.65 -176.223 + 53 323.379 1186 1 0 -78.5993 57.4226 -176.25 + 53 424.861 711 2 1 -37.6623 -29.6104 -144.45 + 53 217.584 753 2 0 -37.8681 -29.3332 -145.85 + 53 31.1728 754 2 0 -37.9361 -29.25 -146.151 + 53 49.3032 691 1 1 -41.7781 -17.8564 -174.45 + 53 98.3804 692 1 1 -41.6499 -17.9237 -174.563 + 53 20.8247 693 1 1 -41.45 -18.0669 -174.804 + 53 34.2079 805 1 0 -40.7655 -18.9576 -175.85 + 53 98.3363 804 1 0 -40.691 -19.0501 -175.957 + 53 23.5936 803 1 0 -40.5396 -19.25 -176.191 + 53 42.5698 325 1 0 9.69937 -115.049 -176.25 + 53 69.0115 324 1 0 9.74881 -115.15 -176.223 + 53 63.2635 323 1 0 9.83034 -115.35 -176.155 + 53 69.5512 322 1 0 9.97754 -115.55 -176.099 + 53 53.3517 321 1 0 10.1134 -115.75 -176.11 + 53 95.9018 320 1 0 10.2402 -115.95 -176.172 + 53 28.9317 319 1 0 10.3698 -116.15 -176.222 + 53 218.836 751 2 0 -37.7529 -29.6682 -145.85 + 53 27.9092 700 1 1 -40.0285 -30.1258 -174.45 + 53 115.738 699 1 1 -40.05 -30.1222 -174.558 + 53 107.31 749 1 0 -40.2822 -30.0776 -175.85 + 53 8.5789 750 1 0 -40.3556 -30.05 -176.244 + 53 14.0286 673 0 1 -45.4477 -26.3961 -204.451 + 53 415.749 672 0 1 -45.45 -26.3965 -204.46 + 53 138.941 767 0 0 -45.9626 -26.476 -205.85 + 53 142.865 255 0 1 -128.95 -33.2789 -204.828 + 53 255.149 711 3 1 -37.659 -29.646 -114.45 + 53 236.588 710 1 1 -37.8656 -29.2011 -174.45 + 53 119.395 754 1 0 -37.8574 -29.1957 -175.85 + 53 187.395 711 0 1 -37.6721 -29.1761 -204.45 + 53 125.87 754 0 0 -37.6588 -29.1739 -205.85 + 53 107.019 742 1 0 -38.0033 -31.5321 -175.85 + 53 240.387 709 0 1 -38.1223 -33.7114 -204.45 + 53 98.971 731 0 0 -38.0831 -33.8038 -205.85 + 53 45.9782 757 6 0 -35.1509 -28.5596 -25.85 + 53 107.009 712 6 1 -37.65 -29.6273 -24.5022 + 53 120.19 754 6 0 -37.4109 -29.2142 -25.85 + 53 5.89055 755 6 0 -37.283 -29.05 -26.2223 + 53 149.38 750 5 1 -29.9752 -14.9624 -54.45 + 53 124.592 827 5 0 -29.7878 -14.5968 -55.85 + 53 63.6063 741 4 1 -31.6658 -6.9263 -84.45 + 53 64.2142 740 4 1 -31.85 -6.88845 -84.5725 + 53 58.6011 739 4 1 -32.05 -6.81554 -84.7145 + 53 112.927 869 4 0 -33.6621 -6.15326 -85.85 + 53 190.34 870 4 0 -33.9588 -6.05 -86.0384 + 53 64.9645 502 3 1 -79.5109 2.63875 -114.45 + 53 69.6244 501 3 1 -79.6504 2.7129 -114.532 + 53 129.571 500 3 1 -79.8507 2.76223 -114.566 + 53 139.841 710 0 1 -37.8954 -29.6463 -204.45 + 53 107.189 752 0 0 -37.9334 -29.6472 -205.85 +Number of digits in this event = 47 +Using G4ParticleGun ... +3.00288 LIN +e- +Event: 54 +Number of tracker hits in this event = 18 + 54 161.268 1445 8 1 109.183 -94.0141 35.55 + 54 116.29 430 8 0 109.185 -94.0162 34.15 + 54 118.308 1445 7 1 109.239 -94.0587 5.55 + 54 100.897 430 7 0 109.243 -94.0611 4.15 + 54 176.321 1445 6 1 109.317 -94.1005 -24.45 + 54 142.942 430 6 0 109.319 -94.1006 -25.85 + 54 213.288 1446 5 1 109.377 -94.0929 -54.45 + 54 136.735 430 5 0 109.383 -94.0893 -55.85 + 54 130.688 1446 4 1 109.508 -94.0176 -84.45 + 54 192.774 430 4 0 109.517 -94.0112 -85.85 + 54 98.0352 1447 3 1 109.715 -93.8796 -114.45 + 54 125.1 431 3 0 109.726 -93.8742 -115.85 + 54 103.903 1449 2 1 109.979 -93.7134 -144.45 + 54 118.13 432 2 0 109.995 -93.7043 -145.85 + 54 124.91 1450 1 1 110.313 -93.5151 -174.45 + 54 138.882 433 1 0 110.334 -93.5077 -175.85 + 54 195.73 1453 0 1 110.758 -93.3519 -204.45 + 54 182.134 434 0 0 110.782 -93.3396 -205.85 +Number of digits in this event = 15 +Using G4ParticleGun ... +5.85282 LIN +e- +Event: 55 +Number of tracker hits in this event = 68 + 55 105.878 713 9 1 -37.2759 115.929 65.55 + 55 100.241 1478 9 0 -37.2763 115.927 64.15 + 55 115.321 713 8 1 -37.2853 115.895 35.55 + 55 132.142 1478 8 0 -37.2824 115.894 34.15 + 55 120.545 714 7 1 -37.2273 115.887 5.55 + 55 338.28 1478 7 0 -37.2256 115.887 4.15 + 55 107.831 714 6 1 -37.1911 115.881 -24.45 + 55 127.29 1478 6 0 -37.1906 115.881 -25.85 + 55 128.938 714 5 1 -37.1788 115.864 -54.45 + 55 105.409 1478 5 0 -37.1777 115.863 -55.85 + 55 160.885 714 4 1 -37.1644 115.855 -84.45 + 55 107.443 1478 4 0 -37.164 115.855 -85.85 + 55 104.276 714 3 1 -37.1511 115.834 -114.45 + 55 101.691 1478 3 0 -37.1481 115.834 -115.85 + 55 570.108 714 2 1 -37.0827 115.822 -144.45 + 55 353.917 1478 2 0 -37.0793 115.826 -145.85 + 55 246.849 715 1 1 -37.0004 115.913 -174.45 + 55 201.365 1478 1 0 -36.9918 115.913 -175.85 + 55 343.246 716 0 1 -36.809 115.901 -204.45 + 55 518.273 1478 0 0 -36.8057 115.898 -205.85 + 55 94.435 1477 2 0 -37.2036 115.746 -145.85 + 55 111.922 708 1 1 -38.3098 114.939 -174.45 + 55 111.374 1475 1 0 -38.4511 115.278 -175.85 + 55 26.2327 1476 1 0 -38.4773 115.35 -176.149 + 55 21.9589 698 0 1 -40.2616 121.996 -204.451 + 55 93.6874 699 0 1 -40.25 122.01 -204.548 + 55 203.285 1510 0 0 -40.1525 122.195 -205.85 + 55 274.094 1388 1 1 97.8006 145.223 -174.45 + 55 29.411 1617 1 0 97.5493 143.586 -175.85 + 55 123.187 1616 1 0 97.5415 143.55 -175.879 + 55 84.6621 1615 1 0 97.5283 143.35 -176.075 + 55 130.442 1455 1 0 96.5799 111.151 -176.25 + 55 17.9337 1454 1 0 96.5817 111.15 -176.241 + 55 55.7191 1456 1 0 96.8666 111.35 -175.939 + 55 149.783 1387 1 1 97.6437 113.09 -174.85 + 55 56.346 1386 1 1 97.55 113.447 -174.719 + 55 72.341 1385 1 1 97.35 113.484 -174.77 + 55 215.833 1384 1 1 97.15 113.582 -174.688 + 55 80.2198 1459 1 0 97.5054 112.139 -175.85 + 55 190.211 1458 1 0 97.5936 111.95 -176.013 + 55 407.992 1397 1 1 99.5513 117.733 -174.85 + 55 273.742 1498 1 0 99.7931 119.766 -175.85 + 55 89.0934 1389 1 1 97.9503 145.667 -174.584 + 55 76.9563 1390 1 1 98.15 145.931 -174.637 + 55 74.1894 1391 1 1 98.35 146.147 -174.62 + 55 108.153 1392 1 1 98.5502 146.349 -174.648 + 55 47.4853 1393 1 1 98.75 146.527 -174.671 + 55 74.8902 1394 1 1 98.95 146.574 -174.654 + 55 111.002 1395 1 1 99.15 146.508 -174.616 + 55 208.421 1396 1 1 99.35 146.379 -174.476 + 55 22.0102 1635 1 0 99.8679 147.245 -175.85 + 55 91.2043 1400 1 1 100.32 149.086 -174.85 + 55 253.97 1401 1 1 100.35 149.15 -174.816 + 55 160.832 1468 3 0 -13.9527 113.904 -116.25 + 55 89.5734 1467 3 0 -13.8467 113.75 -115.908 + 55 11.0241 1466 3 0 -13.7534 113.55 -115.856 + 55 215.974 829 3 1 -14.1787 112.485 -114.85 + 55 164.484 830 3 1 -14.05 112.102 -114.802 + 55 107.769 714 1 1 -37.1332 115.86 -174.45 + 55 112.912 714 0 1 -37.0897 115.837 -204.45 + 55 38.4835 1603 5 0 -77.6638 140.833 -56.25 + 55 25.0184 1604 5 0 -77.7337 140.95 -56.211 + 55 103.228 717 1 1 -36.5167 115.003 -174.45 + 55 131.101 1473 1 0 -36.4644 114.944 -175.85 + 55 172.437 722 0 1 -35.5143 113.7 -204.45 + 55 112.961 1467 0 0 -35.4627 113.639 -205.85 + 55 28.2193 1479 7 0 -37.196 115.95 3.92618 + 55 236.755 905 3 1 1.06254 56.6356 -114.85 +Number of digits in this event = 31 +Using G4ParticleGun ... +7.8442 LIN +e- +Event: 56 +Number of tracker hits in this event = 80 + 56 93.2038 592 10 1 -61.4897 -96.8781 95.55 + 56 131.201 416 10 0 -61.4916 -96.8784 94.15 + 56 104.357 592 9 1 -61.5325 -96.8851 65.55 + 56 107.948 416 9 0 -61.5361 -96.8862 64.15 + 56 115.708 592 8 1 -61.6088 -96.9093 35.55 + 56 113.47 416 8 0 -61.6127 -96.9104 34.15 + 56 104.879 591 7 1 -61.6903 -96.9356 5.55 + 56 118.325 416 7 0 -61.6958 -96.9351 4.15 + 56 113.2 591 6 1 -61.8094 -96.9263 -24.45 + 56 176.318 416 6 0 -61.8166 -96.9259 -25.85 + 56 177.716 590 5 1 -61.9706 -96.9242 -54.45 + 56 153.529 416 5 0 -61.9762 -96.9237 -55.85 + 56 210.128 589 4 1 -62.0979 -96.9108 -84.45 + 56 104.925 416 4 0 -62.1032 -96.9109 -85.85 + 56 434.189 589 3 1 -62.2179 -96.9109 -114.45 + 56 323.375 416 3 0 -62.2233 -96.9118 -115.85 + 56 694.459 588 2 1 -62.3308 -96.9329 -144.45 + 56 569.73 416 2 0 -62.3353 -96.937 -145.85 + 56 349.2 588 1 1 -62.4375 -97.0306 -174.45 + 56 326.998 415 1 0 -62.4431 -97.0337 -175.85 + 56 104.31 587 0 1 -62.5704 -97.1312 -204.45 + 56 125.637 415 0 0 -62.5796 -97.1353 -205.85 + 56 263.451 587 1 1 -62.5119 -96.888 -174.45 + 56 132.119 416 1 0 -62.5208 -96.8717 -175.85 + 56 221.563 586 0 1 -62.7632 -96.5369 -204.45 + 56 227.792 418 0 0 -62.7759 -96.5225 -205.85 + 56 109.904 594 1 1 -61.2381 -96.7491 -174.45 + 56 316.904 417 1 0 -61.1609 -96.7362 -175.85 + 56 124.85 602 0 1 -59.5332 -96.4948 -204.45 + 56 100.252 590 2 1 -62.0094 -96.8689 -144.45 + 56 138.164 597 1 1 -60.565 -96.2959 -174.45 + 56 100.06 419 1 0 -60.507 -96.26 -175.85 + 56 143.154 603 0 1 -59.3605 -95.5551 -204.45 + 56 129.883 423 0 0 -59.2866 -95.4949 -205.85 + 56 49.2938 599 1 1 -60.2111 -96.6167 -174.45 + 56 73.4639 600 1 1 -60.05 -96.6639 -174.545 + 56 76.7193 601 1 1 -59.85 -96.7604 -174.665 + 56 20.2769 602 1 1 -59.65 -96.8293 -174.81 + 56 41.0911 388 1 0 -77.8196 -102.457 -176.25 + 56 144.64 415 3 0 -62.2729 -96.96 -115.85 + 56 142.619 583 2 1 -63.2929 -97.8532 -144.45 + 56 148.181 411 2 0 -63.3708 -97.9199 -145.85 + 56 152.028 575 1 1 -64.8827 -99.2705 -174.45 + 56 121.196 404 1 0 -64.8897 -99.1784 -175.85 + 56 3.07073 405 1 0 -64.8918 -99.1499 -176.231 + 56 117.916 573 0 1 -65.4043 -96.9616 -204.45 + 56 146.373 416 0 0 -65.4454 -96.8874 -205.85 + 56 169.236 1423 0 0 -29.6005 104.75 -205.978 + 56 142.393 601 0 1 -59.712 -97.278 -204.45 + 56 140.343 414 0 0 -59.6127 -97.3122 -205.85 + 56 75.0577 415 2 0 -62.3429 -97.1057 -145.85 + 56 33.8518 414 2 0 -62.3419 -97.15 -146.143 + 56 114.654 389 1 0 -62.1816 -102.27 -175.85 + 56 124.993 606 0 1 -58.8164 -108.232 -204.45 + 56 180.64 359 0 0 -58.7792 -108.172 -205.85 + 56 49.1318 1333 2 1 86.7557 62.9042 -144.45 + 56 49.4849 1332 2 1 86.65 62.8452 -144.509 + 56 62.056 1331 2 1 86.45 62.7894 -144.537 + 56 91.241 1330 2 1 86.2499 62.764 -144.582 + 56 57.7342 1329 2 1 86.05 62.7751 -144.621 + 56 97.1824 1328 2 1 85.85 62.8107 -144.653 + 56 79.008 1327 2 1 85.65 62.9242 -144.691 + 56 98.0367 1198 2 0 83.0518 59.7681 -145.85 + 56 101.431 1197 2 0 82.9843 59.65 -145.895 + 56 80.4341 1196 2 0 83.3116 59.45 -146.067 + 56 1.35972 858 2 0 114.016 -8.44397 -146.25 + 56 254.305 857 2 0 114.017 -8.45 -146.247 + 56 11.5379 856 2 0 114.143 -8.65 -146.129 + 56 1.76032 1465 2 1 113.155 -8.49715 -144.85 + 56 187.387 1464 2 1 113.15 -8.4968 -144.844 + 56 235.241 1463 2 1 112.95 -8.11109 -144.678 + 56 105.308 1462 2 1 112.75 -8.04773 -144.649 + 56 189.746 1461 2 1 112.55 -8.0734 -144.687 + 56 24.2982 415 5 0 -61.9122 -96.95 -56.1793 + 56 178.257 406 5 0 -57.5407 -98.879 -56.2489 + 56 6.28482 603 5 1 -59.427 -98.5729 -54.85 + 56 79.3442 602 5 1 -59.45 -98.5695 -54.8354 + 56 116.36 601 5 1 -59.65 -98.4884 -54.7599 + 56 188.695 600 5 1 -59.8501 -98.3288 -54.7418 + 56 240.255 417 5 0 -59.2391 -96.75 -55.8603 +Number of digits in this event = 41 +Using G4ParticleGun ... +5.14215 LIN +e- +Event: 57 +Number of tracker hits in this event = 153 + 57 141.718 1026 10 1 25.2904 103.213 95.55 + 57 135.82 1415 10 0 25.2877 103.213 94.15 + 57 111.445 1025 9 1 25.2445 103.213 65.55 + 57 331.974 1415 9 0 25.2398 103.217 64.15 + 57 251.883 1025 8 1 25.1552 103.279 35.55 + 57 98.229 1415 8 0 25.1465 103.277 34.15 + 57 113.733 1024 7 1 25.0081 103.33 5.55 + 57 101.658 1415 7 0 25.003 103.333 4.15 + 57 461.169 1024 6 1 24.8723 103.426 -24.45 + 57 542.595 1416 6 0 24.8635 103.431 -25.85 + 57 215.889 1023 5 1 24.6686 103.529 -54.45 + 57 110.278 1416 5 0 24.6539 103.538 -55.85 + 57 267.431 1021 4 1 24.3687 103.703 -84.45 + 57 203.038 1417 4 0 24.3584 103.705 -85.85 + 57 366.147 1020 3 1 24.1093 103.718 -114.45 + 57 135.595 1417 3 0 24.0629 103.717 -115.85 + 57 320.929 1015 2 1 23.1885 103.695 -144.45 + 57 154.632 1417 2 0 23.1514 103.701 -145.85 + 57 136.878 1012 1 1 22.4907 103.849 -174.451 + 57 94.1276 1418 1 0 22.3838 103.898 -175.85 + 57 154.09 1000 0 1 20.1378 104.913 -204.45 + 57 152.643 1424 0 0 19.9008 104.982 -205.85 + 57 150.092 1021 3 1 24.2501 103.551 -114.506 + 57 37.9965 1022 3 1 24.45 103.297 -114.793 + 57 364.244 1409 3 0 25.3555 102.051 -115.85 + 57 254.434 1408 3 0 25.6257 101.95 -116.062 + 57 117.38 1429 5 0 24.9675 105.972 -55.85 + 57 86.7564 1428 5 0 25.0372 105.95 -55.8701 + 57 238.631 1022 4 1 24.4834 103.408 -84.45 + 57 158.185 1076 3 1 35.3588 106.927 -114.451 + 57 20.336 1435 3 0 35.1006 107.31 -115.85 + 57 99.5131 1436 3 0 35.0772 107.35 -115.962 + 57 61.9712 1031 2 1 26.3884 118.552 -144.45 + 57 57.8113 1032 2 1 26.45 118.439 -144.633 + 57 120.093 1490 2 0 26.287 118.244 -145.85 + 57 65.2256 902 3 1 0.634256 -7.72568 -114.85 + 57 237.982 903 3 1 0.65 -7.72245 -114.665 + 57 140.03 1413 5 0 24.6842 102.918 -55.85 + 57 309.843 1403 4 0 24.4239 100.869 -85.8503 + 57 219.121 1024 3 1 24.8702 96.987 -114.45 + 57 338.395 1382 3 0 24.8412 96.7213 -115.85 + 57 273.165 1018 2 1 23.7594 90.581 -144.45 + 57 129.994 1351 2 0 23.7094 90.5189 -145.851 + 57 104.063 1013 1 1 22.846 90.671 -174.45 + 57 125.077 1352 1 0 22.6885 90.6419 -175.85 + 57 100.901 987 0 1 17.5604 89.6868 -204.45 + 57 103.872 1348 0 0 17.4008 89.6856 -205.85 + 57 224.388 998 6 0 -68.5375 19.7496 -26.25 + 57 20.1123 1359 2 0 23.3332 92.1166 -145.85 + 57 95.436 1360 2 0 23.3218 92.1503 -145.888 + 57 21.4888 1361 2 0 23.2389 92.35 -146.182 + 57 38.2408 988 1 1 17.7162 113.163 -174.45 + 57 90.3645 987 1 1 17.65 113.221 -174.555 + 57 60.6145 986 1 1 17.4498 113.336 -174.749 + 57 237.525 1472 1 0 14.5368 114.592 -175.85 + 57 110.673 1473 1 0 13.6587 114.75 -175.917 + 57 25.4102 945 1 1 9.13055 115.245 -174.85 + 57 70.6522 944 1 1 9.04973 115.246 -174.827 + 57 78.7798 943 1 1 8.85 115.168 -174.702 + 57 216.31 942 1 1 8.65 115.004 -174.451 + 57 40.293 1392 4 0 25.1955 98.7186 -85.85 + 57 54.0595 1023 4 1 24.65 98.6009 -84.8253 + 57 137.626 1015 5 1 23.2135 103.369 -54.45 + 57 234.755 1415 5 0 23.1957 103.214 -55.85 + 57 326.971 1012 4 1 22.5787 99.8043 -84.45 + 57 127.492 1396 4 0 22.7084 99.542 -85.85 + 57 252.613 1029 3 1 26.0489 94.517 -114.45 + 57 285.433 1030 3 1 26.05 94.5161 -114.454 + 57 249.188 1370 3 0 26.4125 94.2071 -115.85 + 57 34.538 1369 3 0 26.4832 94.15 -116.117 + 57 26.4192 1066 2 1 33.4199 89.2327 -144.45 + 57 91.6687 1067 2 1 33.45 89.2265 -144.529 + 57 127.895 1345 2 0 33.9418 89.1379 -145.85 + 57 104.148 1112 1 1 42.545 86.1783 -174.45 + 57 44.7503 1113 1 1 42.65 86.1167 -174.686 + 57 9.31174 1329 1 0 43.0826 85.8582 -175.85 + 57 109.15 1328 1 0 43.0961 85.85 -175.887 + 57 417.045 1165 0 1 53.082 78.7112 -204.45 + 57 140.387 1289 0 0 53.431 78.0469 -205.85 + 57 116.805 1290 0 0 53.4633 78.05 -205.902 + 57 65.1391 1291 0 0 53.5504 78.25 -206.016 + 57 155.526 1292 0 0 53.4935 78.4504 -205.947 + 57 101.109 1293 0 0 53.6018 78.65 -205.956 + 57 264.757 1294 0 0 53.6653 78.85 -205.992 + 57 77.2875 1295 0 0 53.6643 79.05 -206.026 + 57 34.3408 1156 1 1 51.3659 94.359 -174.45 + 57 143.328 1157 1 1 51.4505 94.3276 -174.573 + 57 120.132 1368 1 0 52.3692 93.8773 -175.85 + 57 27.5644 1367 1 0 52.5644 93.75 -176.153 + 57 393.765 1235 0 1 67.123 84.1531 -204.45 + 57 55.08 1234 0 1 67.05 83.7939 -204.541 + 57 65.8873 1233 0 1 66.85 83.7658 -204.608 + 57 81.1026 1232 0 1 66.6498 83.7169 -204.614 + 57 75.5014 1231 0 1 66.45 83.6602 -204.589 + 57 76.4494 1230 0 1 66.25 83.611 -204.622 + 57 61.7213 1229 0 1 66.05 83.4702 -204.656 + 57 110.393 1228 0 1 65.85 83.3527 -204.674 + 57 107.119 1311 0 0 66.3569 82.3983 -205.851 + 57 87.5294 1312 0 0 66.5451 82.4501 -206.125 + 57 366.849 1313 0 0 66.5368 82.6503 -206.16 + 57 81.4876 1031 3 1 26.25 94.3661 -114.652 + 57 35.9104 1032 3 1 26.4501 94.3213 -114.751 + 57 313.506 1011 4 1 22.45 99.7806 -84.503 + 57 61.9414 1010 4 1 22.2498 99.9577 -84.7956 + 57 113.876 1401 4 0 22.834 100.376 -85.8502 + 57 437.651 1023 3 1 24.8059 103.423 -114.45 + 57 95.1047 1025 3 1 25.0502 103.168 -114.712 + 57 80.4195 1026 3 1 25.25 103.042 -114.793 + 57 377.922 1027 3 1 25.45 102.926 -114.791 + 57 3.55299 1028 3 1 25.6501 103.065 -114.8 + 57 280.889 1025 5 1 25.1071 103.209 -54.45 + 57 172.116 1025 4 1 25.1104 103.096 -84.45 + 57 158.78 1414 4 0 25.0671 103.081 -85.85 + 57 118.975 1414 3 0 24.09 102.961 -115.85 + 57 104.323 1013 2 1 22.757 103.292 -144.45 + 57 104.534 1415 2 0 22.6842 103.331 -145.85 + 57 141.176 1004 1 1 20.9594 103.975 -174.45 + 57 109.85 1419 1 0 20.9069 104.061 -175.85 + 57 104.332 999 0 1 20.0199 105.58 -204.45 + 57 140.986 1427 0 0 19.9857 105.642 -205.85 + 57 63.9219 1016 2 1 23.2502 102.802 -144.654 + 57 130.654 1414 2 0 23.7728 102.97 -145.85 + 57 75.3416 1088 1 1 37.8004 109.719 -174.45 + 57 33.576 1089 1 1 37.85 109.616 -174.753 + 57 27.2588 1445 1 0 38.2614 109.188 -175.851 + 57 93.4901 1444 1 0 38.2992 109.15 -175.953 + 57 14.9988 1133 0 1 46.8096 99.9059 -204.45 + 57 157.306 1134 0 1 46.85 99.8974 -204.487 + 57 66.4573 1135 0 1 47.05 99.8484 -204.69 + 57 178.637 1398 0 0 48.2407 99.781 -205.85 + 57 109.165 1413 2 0 22.9806 102.821 -145.85 + 57 57.4324 999 1 1 20.0105 99.935 -174.45 + 57 117.038 1000 1 1 20.05 99.946 -174.537 + 57 274.318 1401 1 0 20.9668 100.448 -175.85 + 57 7.62595 1281 0 1 76.4481 84.8882 -204.45 + 57 238.908 1282 0 1 76.45 84.8923 -204.483 + 57 66.6902 1326 0 0 76.2785 85.3201 -205.85 + 57 165.504 1327 0 0 76.2428 85.45 -206.099 + 57 123.886 1414 5 0 25.0346 103.098 -55.85 + 57 301.749 1410 4 0 22.4025 102.226 -85.85 + 57 107.493 992 3 1 18.5112 102.052 -114.45 + 57 131.854 989 2 1 17.9688 102.363 -144.45 + 57 115.246 1410 2 0 18.1594 102.316 -145.85 + 57 362.044 1016 1 1 23.2721 101.203 -174.45 + 57 16.0907 1017 1 1 23.45 101.272 -174.796 + 57 78.7792 1406 1 0 23.9959 101.494 -175.85 + 57 41.1203 1407 1 0 24.1301 101.55 -176.112 + 57 5.97277 1096 0 1 39.4328 107.393 -204.45 + 57 101.029 1097 0 1 39.45 107.393 -204.47 + 57 62.8816 1098 0 1 39.65 107.391 -204.693 + 57 148.614 1436 0 0 40.6793 107.374 -205.85 + 57 150.053 1015 1 1 23.25 100.932 -174.634 + 57 68.0654 1409 4 0 22.2231 102.15 -85.9233 +Number of digits in this event = 71 +Using G4ParticleGun ... +7.6193 LIN +e- +Event: 58 +Number of tracker hits in this event = 28 + 58 118.612 377 10 1 -104.591 -10.492 95.55 + 58 186.247 847 10 0 -104.591 -10.4916 94.15 + 58 130.711 377 9 1 -104.589 -10.4876 65.55 + 58 103.133 847 9 0 -104.589 -10.4871 64.15 + 58 114.025 377 8 1 -104.603 -10.4755 35.55 + 58 117.516 847 8 0 -104.606 -10.477 34.15 + 58 114.611 377 7 1 -104.688 -10.5129 5.55 + 58 116.524 847 7 0 -104.69 -10.513 4.15 + 58 93.1309 377 6 1 -104.715 -10.5156 -24.45 + 58 112.59 847 6 0 -104.716 -10.5099 -25.85 + 58 125.753 376 5 1 -104.751 -10.4083 -54.45 + 58 149.079 848 5 0 -104.754 -10.4086 -55.85 + 58 111.107 376 4 1 -104.839 -10.4118 -84.45 + 58 227.867 848 4 0 -104.848 -10.4092 -85.85 + 58 121.211 375 3 1 -105.072 -10.3684 -114.45 + 58 105.949 848 3 0 -105.085 -10.3664 -115.85 + 58 128.2 374 2 1 -105.348 -10.3177 -144.45 + 58 90.1125 373 2 1 -105.35 -10.3177 -144.607 + 58 182.23 848 2 0 -105.364 -10.317 -145.85 + 58 122.888 372 1 1 -105.686 -10.3184 -174.45 + 58 127.289 848 1 0 -105.705 -10.3204 -175.85 + 58 124.653 370 0 1 -106.088 -10.3511 -204.45 + 58 207.027 848 0 0 -106.11 -10.3504 -205.85 + 58 57.4689 375 2 1 -105.149 -10.2104 -144.663 + 58 147.141 850 2 0 -104.267 -9.98633 -145.85 + 58 59.1656 545 6 0 -58.2312 -71.0313 -25.85 + 58 166.029 854 9 0 -104.164 -9.22672 64.15 + 58 103.075 855 9 0 -104.149 -9.05 63.9714 +Number of digits in this event = 17 +Using G4ParticleGun ... +4.37015 LIN +e- +Event: 59 +Number of tracker hits in this event = 143 + 59 136.429 1312 8 1 82.6241 -112.856 35.55 + 59 119.397 336 8 0 82.6256 -112.855 34.15 + 59 105.116 1313 7 1 82.6598 -112.833 5.55 + 59 107.303 336 7 0 82.6598 -112.832 4.15 + 59 148.197 1313 6 1 82.6531 -112.811 -24.45 + 59 154.845 336 6 0 82.6496 -112.808 -25.85 + 59 789.339 1312 5 1 82.5577 -112.735 -54.45 + 59 500.81 337 5 0 82.5554 -112.724 -55.85 + 59 359.706 1312 4 1 82.495 -112.523 -84.45 + 59 141.102 338 4 0 82.4937 -112.514 -85.85 + 59 126.897 1312 3 1 82.4686 -112.338 -114.45 + 59 117.284 339 3 0 82.4657 -112.327 -115.85 + 59 167.775 1311 2 1 82.407 -112.11 -144.45 + 59 105.721 340 2 0 82.4058 -112.102 -145.85 + 59 166.092 1311 1 1 82.3982 -111.94 -174.45 + 59 111.989 341 1 0 82.4031 -111.929 -175.85 + 59 125.422 1312 0 1 82.504 -111.693 -204.45 + 59 377.559 342 0 0 82.5057 -111.684 -205.85 + 59 155.376 390 10 0 19.7695 -102.068 93.75 + 59 13.998 391 10 0 19.618 -101.95 94.1173 + 59 256.055 996 10 1 19.3668 -101.318 95.1501 + 59 16.5305 995 10 1 19.25 -101.056 95.5049 + 59 106.719 810 11 0 30.3412 -17.9926 123.75 + 59 116.678 811 11 0 30.402 -17.85 123.838 + 59 21.3262 664 3 0 -7.77442 -47.25 -115.921 + 59 79.4945 859 3 1 -8.13745 -46.6374 -114.85 + 59 123.963 860 3 1 -8.04904 -46.6361 -114.727 + 59 9.07842 660 3 0 -7.86069 -48.0256 -115.851 + 59 151.274 659 3 0 -7.86503 -48.0502 -115.859 + 59 165.947 861 3 1 -7.83139 -49.3237 -114.85 + 59 25.1656 339 4 0 82.361 -112.171 -85.8502 + 59 233.867 340 4 0 82.3541 -112.15 -85.926 + 59 129.872 1304 3 1 81.0089 -103.163 -114.45 + 59 53.341 386 3 0 80.8553 -102.776 -115.851 + 59 140.958 387 3 0 80.8459 -102.75 -115.944 + 59 121.412 1293 2 1 78.7576 -95.6395 -144.45 + 59 67.461 1294 2 1 78.8502 -95.5808 -144.678 + 59 140.984 424 2 0 79.3381 -95.2842 -145.85 + 59 120.335 1359 1 1 91.9601 -86.862 -174.45 + 59 30.8687 1360 1 1 92.15 -86.5843 -174.796 + 59 60.1357 471 1 0 92.7231 -85.7291 -175.85 + 59 115.526 472 1 0 92.775 -85.65 -175.951 + 59 12.4817 473 1 0 92.919 -85.45 -176.212 + 59 60.1149 1448 0 1 109.857 -64.1533 -204.45 + 59 100.4 1449 0 1 109.95 -64.0534 -204.525 + 59 95.6756 1450 0 1 110.15 -63.8246 -204.686 + 59 49.5046 589 0 0 111.439 -62.1619 -205.85 + 59 77.4428 590 0 0 111.526 -62.05 -205.927 + 59 241.977 591 0 0 111.684 -61.85 -206.056 + 59 26.0988 592 0 0 111.835 -61.6497 -206.194 + 59 107.509 775 0 0 122.775 -24.8935 -206.25 + 59 196.329 776 0 0 122.724 -24.85 -206.163 + 59 134.678 1508 0 1 121.929 -23.9278 -204.85 + 59 101.203 1509 0 1 121.95 -23.7856 -204.483 + 59 85.8418 1510 0 1 122.15 -23.9203 -204.709 + 59 68.8514 1511 0 1 122.35 -24.1201 -204.797 + 59 22.5802 1512 0 1 122.55 -24.2482 -204.819 + 59 150.878 778 0 0 124.344 -24.4456 -205.85 + 59 151.824 544 0 0 178.25 -71.0754 -206.25 + 59 84.5114 543 0 0 178.406 -71.25 -205.988 + 59 238.292 1789 0 1 178.108 -71.7346 -204.85 + 59 85.9236 1790 0 1 178.15 -71.9864 -204.606 + 59 213.558 1788 0 1 177.95 -72.4097 -204.557 + 59 169.233 1787 0 1 177.749 -72.5519 -204.636 + 59 379.697 1292 2 1 78.6497 -95.6433 -144.631 + 59 37.6423 1291 2 1 78.45 -95.5756 -144.803 + 59 11.7949 429 2 0 77.6452 -94.1733 -145.85 + 59 145.356 430 2 0 77.6253 -94.1499 -145.873 + 59 195.892 556 5 0 147.542 -68.7452 -56.25 + 59 208.275 555 5 0 147.351 -68.85 -56.0252 + 59 30.1179 554 5 0 147.184 -69.05 -55.8873 + 59 162.966 1637 5 1 147.639 -69.3894 -54.85 + 59 80.619 1638 5 1 147.75 -69.3515 -54.7539 + 59 124.924 1313 5 1 82.65 -112.9 -54.6341 + 59 369.715 333 5 0 83.0575 -113.357 -55.85 + 59 579.724 304 5 0 27.5173 -119.275 -56.2498 + 59 123.279 305 5 0 26.4106 -119.15 -56.1237 + 59 167.69 306 5 0 26.4853 -118.95 -56.1167 + 59 168.138 1319 5 1 83.9261 -113.116 -54.85 + 59 99.8974 1318 5 1 83.8499 -112.874 -54.5668 + 59 122.533 336 5 0 82.5984 -112.758 -55.85 + 59 95.5083 337 4 0 82.5177 -112.675 -85.85 + 59 121.41 1310 3 1 82.2219 -111.077 -114.45 + 59 117.96 345 3 0 82.2075 -111.002 -115.85 + 59 98.9683 1308 2 1 81.8199 -109.335 -144.45 + 59 118.265 354 2 0 81.8195 -109.227 -145.85 + 59 152.816 1309 1 1 81.8739 -106.919 -174.45 + 59 60.4417 366 1 0 81.8383 -106.768 -175.85 + 59 80.837 367 1 0 81.8339 -106.75 -176.018 + 59 200.593 1305 0 1 81.1475 -103.686 -204.45 + 59 124.188 383 0 0 81.0895 -103.522 -205.85 + 59 85.5787 372 0 0 81.626 -105.595 -206.116 + 59 122.155 1313 4 1 82.8113 -112.141 -84.45 + 59 117.407 1315 3 1 83.1569 -112.001 -114.45 + 59 130.927 340 3 0 83.1795 -111.984 -115.85 + 59 122.992 1317 2 1 83.5262 -111.601 -144.45 + 59 132.279 342 2 0 83.4935 -111.588 -145.85 + 59 121.112 1314 1 1 82.8953 -111.24 -174.45 + 59 130.052 344 1 0 82.8303 -111.212 -175.85 + 59 132.472 1307 0 1 81.5486 -110.498 -204.45 + 59 134.845 348 0 0 81.5026 -110.46 -205.85 + 59 355.117 1310 2 1 82.1815 -112.651 -144.45 + 59 217.137 336 2 0 82.2064 -112.764 -145.85 + 59 249.309 1313 1 1 82.693 -114.967 -174.45 + 59 79.8567 325 1 0 82.7662 -115.117 -175.85 + 59 30.1081 324 1 0 82.7794 -115.15 -176.131 + 59 135.756 1320 0 1 84.0556 -118.892 -204.451 + 59 115.108 305 0 0 84.1962 -119.029 -205.85 + 59 177.733 337 2 0 82.2029 -112.638 -145.85 + 59 224.717 1312 1 1 82.6032 -112.432 -174.45 + 59 100.494 338 1 0 82.5878 -112.439 -175.85 + 59 129.128 1314 0 1 82.9583 -112.602 -204.45 + 59 122.275 337 0 0 83.0026 -112.633 -205.85 + 59 2.89206 817 4 0 -12.8813 -16.65 -86.2382 + 59 28.6921 818 4 0 -13.0296 -16.4499 -85.9171 + 59 101.428 834 4 1 -13.1736 -15.4391 -84.85 + 59 8.83598 833 4 1 -13.25 -15.346 -84.8296 + 59 185.93 826 4 0 -14.9511 -14.8061 -85.85 + 59 25.4126 827 4 0 -15.2859 -14.65 -86.1774 + 59 10.4332 1055 4 0 -68.8238 31.2371 -86.2495 + 59 105.782 1056 4 0 -68.8373 31.2501 -86.2314 + 59 110.024 1057 4 0 -69.0338 31.45 -86.0834 + 59 113.446 1058 4 0 -69.3657 31.65 -86.1047 + 59 78.9202 551 4 1 -69.6806 31.8402 -84.85 + 59 458.852 552 4 1 -69.65 31.8993 -84.5866 + 59 118.059 335 1 0 82.4472 -112.995 -175.85 + 59 121.718 1289 0 1 78.005 -118.437 -204.45 + 59 3.77164 1288 0 1 77.85 -118.311 -204.839 + 59 48.7549 310 0 0 77.4505 -117.984 -205.85 + 59 98.7731 311 0 0 77.4116 -117.95 -205.954 + 59 6.95018 302 2 0 117.479 -119.55 -146.145 + 59 217.927 303 2 0 117.559 -119.55 -146.015 + 59 28.3065 599 0 0 52.5097 -60.25 -206.079 + 59 173.958 336 1 0 83.0381 -112.896 -175.85 + 59 146.466 1337 0 1 87.6324 -118.742 -204.45 + 59 81.5878 309 0 0 87.4491 -118.274 -205.85 + 59 57.9951 215 0 0 99.2453 -137.024 -206.25 + 59 67.4539 214 0 0 99.2913 -137.15 -206.157 + 59 157.188 213 0 0 99.3138 -137.35 -206.013 + 59 3.50733 212 0 0 99.3171 -137.55 -205.859 + 59 22.0283 1396 0 1 99.5433 -139.049 -204.85 + 59 222.559 1397 0 1 99.5501 -139.084 -204.822 + 59 264.003 668 5 1 -46.25 21.1612 -54.6278 +Number of digits in this event = 75 +Using G4ParticleGun ... +8.81626 LIN +e- +Event: 60 +Number of tracker hits in this event = 34 + 60 153.533 513 11 1 -77.3256 13.5507 125.55 + 60 103.371 967 11 0 -77.3252 13.5516 124.15 + 60 126.823 513 10 1 -77.3171 13.5737 95.55 + 60 126.181 967 10 0 -77.3173 13.5753 94.15 + 60 110.47 513 9 1 -77.3233 13.6085 65.55 + 60 330.322 967 9 0 -77.3245 13.6112 64.15 + 60 103.777 513 8 1 -77.3485 13.6624 35.55 + 60 114.113 968 8 0 -77.3496 13.665 34.15 + 60 116.459 513 7 1 -77.3703 13.7118 5.55 + 60 105.585 968 7 0 -77.3713 13.7148 4.15 + 60 145.495 513 6 1 -77.3884 13.7748 -24.45 + 60 106.937 968 6 0 -77.3885 13.7781 -25.85 + 60 118.755 513 5 1 -77.3883 13.8448 -54.45 + 60 35.4754 968 5 0 -77.3895 13.8496 -55.85 + 60 75.4351 969 5 0 -77.3896 13.85 -55.9563 + 60 114.955 513 4 1 -77.4183 13.9523 -84.45 + 60 125.857 969 4 0 -77.4202 13.9591 -85.85 + 60 113.279 512 3 1 -77.462 14.1034 -114.45 + 60 128.085 970 3 0 -77.4642 14.1112 -115.85 + 60 132.313 512 2 1 -77.5058 14.2703 -144.45 + 60 122.408 971 2 0 -77.5088 14.2786 -145.85 + 60 132.949 512 1 1 -77.5613 14.442 -174.45 + 60 148.249 971 1 0 -77.5645 14.4495 -175.85 + 60 95.5942 972 1 0 -77.5647 14.45 -175.936 + 60 126.888 512 0 1 -77.6302 14.6179 -204.45 + 60 140.989 972 0 0 -77.6311 14.6261 -205.85 + 60 283.567 869 7 0 -164.63 -6.05676 3.75 + 60 106.552 973 0 0 -77.635 14.65 -206.153 + 60 77.2697 632 1 0 -9.76082 -53.5882 -176.25 + 60 122.757 631 1 0 -9.65055 -53.65 -176.155 + 60 211.639 630 1 0 -9.44109 -53.85 -176.145 + 60 93.1898 968 9 0 -77.3775 13.65 63.8393 + 60 92.9503 625 1 1 -55.05 -136.3 -174.68 + 60 145.058 436 1 0 -78.0966 -92.75 -176.078 +Number of digits in this event = 19 +Using G4ParticleGun ... +6.99996 LIN +e- +Event: 61 +Number of tracker hits in this event = 112 + 61 103.514 1356 10 1 91.504 -37.0182 95.55 + 61 118.904 715 10 0 91.5024 -37.02 94.15 + 61 131.411 1356 9 1 91.4691 -37.0545 65.55 + 61 163.543 714 9 0 91.47 -37.0584 64.15 + 61 459.013 1356 8 1 91.4848 -37.1314 35.55 + 61 341.239 714 8 0 91.4858 -37.1348 34.15 + 61 112.252 1356 7 1 91.5103 -37.2029 5.55 + 61 116.322 714 7 0 91.5116 -37.206 4.15 + 61 321.373 1356 6 1 91.5352 -37.2688 -24.45 + 61 230.104 713 6 0 91.5364 -37.2722 -25.85 + 61 144.741 1357 5 1 91.5593 -37.3453 -54.45 + 61 161.877 713 5 0 91.5601 -37.3483 -55.85 + 61 416.37 1357 4 1 91.5785 -37.413 -84.45 + 61 339.914 713 4 0 91.58 -37.4161 -85.85 + 61 189.645 1357 3 1 91.6135 -37.4865 -114.45 + 61 167.919 712 3 0 91.6156 -37.4913 -115.85 + 61 101.211 1357 2 1 91.6545 -37.5882 -144.45 + 61 112.707 712 2 0 91.6551 -37.5938 -145.85 + 61 136.087 1357 1 1 91.6675 -37.712 -174.45 + 61 116.302 711 1 0 91.6681 -37.7191 -175.85 + 61 111.815 1357 0 1 91.6875 -37.8668 -204.45 + 61 168.061 710 0 0 91.6887 -37.874 -205.85 + 61 244.4 1510 4 1 122.304 -67.0031 -84.85 + 61 134.871 1509 4 1 122.15 -67.3918 -84.6058 + 61 174.026 1364 3 1 92.9912 -36.1256 -114.45 + 61 152.919 720 3 0 93.1105 -35.9633 -115.85 + 61 136.646 1377 2 1 95.6772 -33.3108 -144.45 + 61 112.628 732 2 0 95.5535 -33.5552 -145.85 + 61 210.582 1366 1 1 93.4566 -38.8657 -174.45 + 61 117.563 705 1 0 93.4087 -38.857 -175.85 + 61 111.909 1363 0 1 92.8876 -38.36 -204.45 + 61 137.901 709 0 0 92.962 -38.1307 -205.85 + 61 134.402 1349 3 1 90.0268 -36.637 -114.45 + 61 129.537 1361 2 1 92.3604 -37.5923 -144.45 + 61 151.871 710 2 0 92.4217 -37.8518 -145.85 + 61 21.4758 1362 1 1 92.7386 -41.8431 -174.45 + 61 94.4742 1363 1 1 92.75 -41.8574 -174.519 + 61 317.37 689 1 0 92.9881 -42.0591 -175.851 + 61 101.408 1392 0 1 98.6717 -46.7969 -204.45 + 61 153.335 1391 0 1 98.55 -47.1369 -204.594 + 61 9.4283 653 0 0 97.7152 -49.4194 -205.85 + 61 86.3904 652 0 0 97.7036 -49.45 -205.867 + 61 56.3282 651 0 0 97.6348 -49.65 -205.975 + 61 79.9864 650 0 0 97.575 -49.85 -206.086 + 61 21.9137 649 0 0 97.514 -50.0505 -206.201 + 61 27.9741 238 0 0 75.1221 -132.51 -206.25 + 61 51.9792 237 0 0 75.1119 -132.55 -206.24 + 61 65.5004 236 0 0 75.0659 -132.75 -206.197 + 61 153.62 235 0 0 75.0081 -132.95 -206.181 + 61 131.021 234 0 0 74.9368 -133.15 -206.181 + 61 226.842 233 0 0 74.8694 -133.35 -206.195 + 61 28.6207 232 0 0 74.7883 -133.55 -206.226 + 61 131.007 690 1 0 93.1249 -42.05 -175.95 + 61 78.2315 1372 7 1 94.7277 -39.1748 5.54971 + 61 18.7643 1373 7 1 94.75 -39.1993 5.23255 + 61 141.619 703 7 0 94.8284 -39.2753 4.15 + 61 34.5712 1388 6 1 97.9409 -41.6377 -24.45 + 61 192.507 1389 6 1 97.95 -41.6341 -24.5612 + 61 147.121 692 6 0 98.0494 -41.5915 -25.85 + 61 51.8287 1399 5 1 100.09 -41.7165 -54.45 + 61 78.1318 1400 5 1 100.15 -41.6933 -54.6104 + 61 98.169 692 5 0 100.619 -41.5319 -55.8503 + 61 119.919 1453 4 1 110.834 -36.2414 -84.45 + 61 127.849 718 4 0 111.183 -36.4109 -85.85 + 61 26.7914 717 4 0 111.278 -36.45 -86.198 + 61 134.217 1500 3 1 120.231 -39.5953 -114.45 + 61 10.3741 1501 3 1 120.35 -39.6103 -114.821 + 61 189.516 702 3 0 120.825 -39.5248 -115.85 + 61 41.6673 1566 2 1 133.488 -37.4083 -144.45 + 61 167.16 1567 2 1 133.55 -37.3416 -144.535 + 61 8.46963 1568 2 1 133.75 -37.1107 -144.82 + 61 5.50051 718 2 0 134.464 -36.2657 -145.85 + 61 100.409 719 2 0 134.477 -36.25 -145.869 + 61 74.7383 720 2 0 134.637 -36.0498 -146.108 + 61 48.3801 1675 1 1 155.291 -10.8332 -174.45 + 61 103.844 1676 1 1 155.35 -10.7194 -174.589 + 61 86.7853 852 1 0 155.901 -9.64079 -175.85 + 61 69.7329 853 1 0 156.002 -9.45 -176.073 + 61 90.5543 1751 0 1 170.35 15.3197 -204.579 + 61 337.945 1359 7 1 92.0558 -36.7088 5.55 + 61 104.887 717 7 0 91.8432 -36.4966 4.14992 + 61 34.4497 718 7 0 91.7937 -36.4499 3.85557 + 61 264.979 1331 6 1 86.2585 -30.5435 -24.45 + 61 97.9985 1330 6 1 86.25 -30.5295 -24.527 + 61 9.72063 748 6 0 86.1412 -30.2563 -25.85 + 61 103.642 749 6 0 86.1389 -30.25 -25.8807 + 61 64.8608 1323 5 1 84.6748 -24.0531 -54.451 + 61 38.8334 1322 5 1 84.65 -24.0131 -54.6849 + 61 160.92 781 5 0 84.5048 -23.8354 -55.85 + 61 49.5675 1306 4 1 81.2907 -15.9086 -84.4512 + 61 131.84 1305 4 1 81.25 -15.8506 -84.6117 + 61 148.62 823 4 0 80.8311 -15.4374 -85.85 + 61 109.626 1272 3 1 74.5759 -3.35749 -114.45 + 61 20.0497 884 3 0 74.4296 -3.06115 -115.85 + 61 104.259 885 3 0 74.4235 -3.05 -115.9 + 61 161.313 1260 2 1 72.2196 3.60045 -144.45 + 61 38.0592 921 2 0 72.3351 4.42354 -145.85 + 61 158.003 922 2 0 72.3393 4.45 -145.895 + 61 126.581 1260 1 1 72.133 17.6101 -174.45 + 61 118.546 992 1 0 72.1577 18.4766 -175.85 + 61 69.5766 993 1 0 72.1732 18.65 -176.123 + 61 96.1317 1280 0 1 76.1618 34.9557 -204.45 + 61 40.5636 1281 0 1 76.25 34.987 -204.719 + 61 103.481 1075 0 0 76.5037 35.1675 -205.852 + 61 42.3418 1367 1 1 93.7027 63.9488 -174.45 + 61 16.2088 1368 1 1 93.7501 63.9778 -174.471 + 61 150.361 819 4 0 81.0581 -16.125 -85.85 + 61 334.514 818 4 0 80.8135 -16.2502 -86.052 + 61 9.98177 750 6 0 86.1522 -29.9204 -25.8501 + 61 2.06049 1327 6 1 85.4673 -30.0045 -24.85 + 61 4.33784 753 6 0 83.0173 -29.2541 -25.85 + 61 57.834 1308 6 1 81.6965 -28.862 -24.85 +Number of digits in this event = 50 +Using G4ParticleGun ... +1.55859 LIN +e- +Event: 62 +Number of tracker hits in this event = 86 + 62 140.65 1134 10 1 46.9886 87.7461 95.55 + 62 120.841 1338 10 0 46.9868 87.7423 94.15 + 62 110.459 1134 9 1 46.9833 87.6334 65.55 + 62 126.57 1337 9 0 46.9781 87.6336 64.15 + 62 112.176 1134 8 1 46.8991 87.5993 35.55 + 62 116.468 1337 8 0 46.8925 87.601 34.15 + 62 215.16 1133 7 1 46.742 87.6341 5.55 + 62 119.701 1337 7 0 46.733 87.6358 4.15 + 62 167.575 1132 6 1 46.558 87.6961 -24.45 + 62 112.537 1338 6 0 46.5483 87.6839 -25.85 + 62 136.755 1131 5 1 46.3332 87.4198 -54.45 + 62 141.999 1336 5 0 46.3298 87.3954 -55.85 + 62 200.007 1131 4 1 46.2788 86.8606 -84.45 + 62 111.584 1333 4 0 46.2675 86.8286 -85.85 + 62 103.807 1129 3 1 46.0336 86.1959 -114.45 + 62 247.889 1330 3 0 46.0225 86.1695 -115.85 + 62 228.967 1128 2 1 45.802 85.6547 -144.45 + 62 131.282 1327 2 0 45.7957 85.6202 -145.85 + 62 130.842 1128 1 1 45.6667 84.9192 -174.45 + 62 116.654 1324 1 0 45.6648 84.8923 -175.85 + 62 99.3639 1127 0 1 45.6268 84.3296 -204.45 + 62 174.583 1321 0 0 45.6194 84.2991 -205.85 + 62 393.92 1130 3 1 46.1592 86.6512 -114.45 + 62 131.897 1333 3 0 46.4173 86.7961 -115.85 + 62 116.705 1155 2 1 51.1899 89.4604 -144.45 + 62 186.375 1350 2 0 51.1517 90.1626 -145.85 + 62 14.7526 1351 2 0 51.1405 90.35 -146.205 + 62 72.749 1483 2 0 51.8284 116.916 -146.25 + 62 95.9814 1484 2 0 51.8376 116.95 -146.164 + 62 0.684078 1163 2 1 52.8484 117.707 -144.85 + 62 92.7294 1164 2 1 52.85 117.708 -144.848 + 62 66.3634 1165 2 1 53.05 117.908 -144.689 + 62 90.091 1166 2 1 53.2504 118.098 -144.61 + 62 60.5293 1167 2 1 53.4502 118.293 -144.513 + 62 93.5973 1168 2 1 53.65 118.401 -144.505 + 62 24.5713 1490 2 0 53.9735 118.338 -145.85 + 62 122.397 1491 2 0 53.9974 118.35 -145.927 + 62 48.3832 1492 2 0 54.1757 118.55 -146.185 + 62 40.341 1790 5 0 70.3025 178.169 -56.25 + 62 157.456 1329 3 0 46.2628 86.05 -116.161 + 62 141.719 1141 2 1 48.354 76.9365 -144.45 + 62 3.62747 1140 2 1 48.2499 76.724 -144.828 + 62 124.94 1280 2 0 47.9985 76.158 -145.85 + 62 63.7996 1279 2 0 47.9525 76.05 -146.044 + 62 59.239 1107 1 1 41.5332 59.6821 -174.45 + 62 162.254 1106 1 1 41.45 59.5666 -174.548 + 62 17.1699 1105 1 1 41.25 59.2884 -174.804 + 62 71.7401 1190 1 0 40.5277 58.2169 -175.851 + 62 100.718 1189 1 0 40.4068 58.05 -176.014 + 62 94.9351 1188 1 0 40.2602 57.85 -176.203 + 62 81.1794 998 0 1 19.8069 31.2495 -204.45 + 62 86.84 997 0 1 19.65 31.1547 -204.586 + 62 50.9651 996 0 1 19.4499 31.0362 -204.78 + 62 88.7232 1051 0 0 18.3451 30.3022 -205.85 + 62 122.82 1050 0 0 18.268 30.25 -205.925 + 62 53.2011 1049 0 0 18.0341 30.05 -206.137 + 62 100.683 952 0 0 -11.5461 10.5187 -206.25 + 62 5.27745 951 0 0 -11.6845 10.4499 -205.874 + 62 437.992 840 0 1 -11.9153 10.138 -204.85 + 62 144.333 948 0 0 -11.2632 9.76954 -205.85 + 62 168.754 1187 1 0 40.3357 57.65 -176.032 + 62 311.575 1186 1 0 40.54 57.45 -175.955 + 62 135.916 1127 2 1 45.6038 86.8812 -144.451 + 62 156.501 1334 2 0 45.6591 86.9297 -145.85 + 62 129.335 1133 1 1 46.7469 88.1257 -174.45 + 62 133.559 1339 1 0 46.7349 87.9909 -175.85 + 62 122.679 1133 0 1 46.8388 85.6009 -204.45 + 62 156.024 1325 0 0 46.7882 85.1765 -205.85 + 62 598.424 1129 2 1 45.85 86.601 -144.457 + 62 66.2065 1316 2 0 45.4608 83.4473 -145.85 + 62 139.779 1315 2 0 45.3998 83.25 -145.936 + 62 103.469 1314 2 0 45.0874 83.05 -146.043 + 62 86.3243 1313 2 0 44.8364 82.8499 -146.131 + 62 36.5365 1312 2 0 44.7261 82.65 -146.187 + 62 264.099 1199 2 0 61.7793 59.9286 -146.25 + 62 319.773 1198 2 0 62.1583 59.8499 -146.1 + 62 52.0135 1487 2 0 150.869 117.715 -146.25 + 62 49.3441 1133 6 1 46.6502 87.7428 -24.7183 + 62 0.92303 1341 6 0 47.1867 88.4454 -25.85 + 62 118.289 1342 6 0 47.1898 88.45 -25.8573 + 62 6.81092 1343 6 0 47.3923 88.65 -26.2306 + 62 143.191 1336 0 0 46.1778 87.4437 -205.85 + 62 154.524 1337 0 0 45.9831 87.45 -206.076 + 62 259.002 1131 0 1 46.2836 86.5248 -204.85 + 62 25.0433 1130 0 1 46.2499 86.3652 -204.72 + 62 166.608 1022 1 0 -0.05 24.5529 -176.23 +Number of digits in this event = 42 +Using G4ParticleGun ... +7.78377 LIN +e- +Event: 63 +Number of tracker hits in this event = 60 + 63 113.545 608 11 1 -58.2737 49.2461 125.55 + 63 111.541 1145 11 0 -58.2739 49.2466 124.15 + 63 173.714 608 10 1 -58.2788 49.2493 95.55 + 63 106.412 1145 10 0 -58.2783 49.2487 94.15 + 63 121.851 608 9 1 -58.2625 49.2378 65.55 + 63 112.399 1145 9 0 -58.2608 49.236 64.15 + 63 131.471 609 8 1 -58.2297 49.1965 35.55 + 63 91.3699 1145 8 0 -58.2289 49.1947 34.15 + 63 204.316 609 7 1 -58.214 49.158 5.55 + 63 183.465 1145 7 0 -58.2131 49.1569 4.15 + 63 192.501 609 6 1 -58.195 49.1401 -24.45 + 63 119.293 1145 6 0 -58.1942 49.1383 -25.85 + 63 245.066 609 5 1 -58.1782 49.1019 -54.45 + 63 99.3864 1145 5 0 -58.1763 49.1014 -55.85 + 63 131.155 609 4 1 -58.1423 49.0908 -84.45 + 63 144.285 1145 4 0 -58.1401 49.0916 -85.85 + 63 136.247 609 3 1 -58.0928 49.111 -114.45 + 63 137.951 1145 3 0 -58.0914 49.1109 -115.85 + 63 114.186 609 2 1 -58.0664 49.1152 -144.45 + 63 175.861 1145 2 0 -58.0648 49.1156 -145.85 + 63 131.631 610 1 1 -58.0273 49.1256 -174.45 + 63 138.298 1145 1 0 -58.0248 49.1272 -175.85 + 63 151.385 610 0 1 -57.9714 49.1642 -204.45 + 63 125.185 1145 0 0 -57.97 49.1664 -205.85 + 63 107.974 1144 7 0 -58.3616 49.0282 4.15 + 63 36.3828 590 6 1 -62.0128 45.9857 -24.45 + 63 180.468 589 6 1 -62.05 45.9534 -24.6013 + 63 0.575248 1128 6 0 -62.356 45.6505 -25.8501 + 63 127.115 1127 6 0 -62.3565 45.65 -25.8521 + 63 149.428 557 5 1 -68.5433 38.0645 -54.45 + 63 9.12412 556 5 1 -68.65 37.9326 -54.8156 + 63 138.819 1087 5 0 -68.9591 37.5441 -55.8503 + 63 44.6537 1086 5 0 -69.0419 37.45 -56.1083 + 63 150.501 509 4 1 -78.1226 28.2137 -84.45 + 63 17.4734 1038 4 0 -78.4263 27.6733 -85.85 + 63 118.521 1037 4 0 -78.4395 27.65 -85.9089 + 63 130.782 475 3 1 -84.967 15.5812 -114.45 + 63 114.158 976 3 0 -85.1275 15.3628 -115.851 + 63 177.696 452 2 1 -89.5781 10.722 -144.45 + 63 107.159 954 2 0 -89.4384 10.9861 -145.85 + 63 16.4734 955 2 0 -89.3973 11.05 -146.187 + 63 123.99 470 1 1 -86.0395 17.704 -174.45 + 63 301.438 989 1 0 -85.648 17.8672 -175.85 + 63 10.8803 517 0 1 -76.4671 22.1594 -204.45 + 63 158.833 518 0 1 -76.4498 22.167 -204.488 + 63 161.599 1012 0 0 -75.8124 22.4856 -205.851 + 63 88.7909 988 1 0 -85.5355 17.85 -176.199 + 63 53.2924 1087 2 1 37.45 143.054 -144.546 + 63 33.9961 1088 2 1 37.65 143.15 -144.823 + 63 66.9238 1609 2 0 39.1853 142.055 -145.85 + 63 269.468 1608 2 0 39.2754 141.95 -145.979 + 63 9.39947 608 6 1 -58.25 49.1213 -24.8135 + 63 132.455 1143 6 0 -58.4852 48.8452 -25.85 + 63 338.038 584 5 1 -63.139 47.9562 -54.4501 + 63 287.76 583 5 1 -63.25 48.1406 -54.5704 + 63 274.783 585 5 1 -63.05 49.1489 -54.4997 + 63 653.878 586 5 1 -62.85 49.3895 -54.4509 + 63 171.013 587 5 1 -62.65 50.2141 -54.4588 + 63 118.283 588 5 1 -62.45 50.3689 -54.4722 + 63 98.8774 1723 2 0 -173.765 164.824 -146.25 +Number of digits in this event = 36 +Using G4ParticleGun ... +4.98841 LIN +e- +Event: 64 +Number of tracker hits in this event = 82 + 64 110.492 563 11 1 -67.3274 -9.7831 125.55 + 64 113.678 851 11 0 -67.3264 -9.78326 124.15 + 64 116.294 563 10 1 -67.3 -9.78248 95.55 + 64 101.756 851 10 0 -67.3006 -9.78326 94.15 + 64 223.894 563 9 1 -67.3214 -9.81313 65.55 + 64 119.817 851 9 0 -67.324 -9.80916 64.15 + 64 249.087 563 8 1 -67.3828 -9.72852 35.55 + 64 129.354 851 8 0 -67.3872 -9.7153 34.15 + 64 139.358 562 7 1 -67.4883 -9.43182 5.55 + 64 126.088 853 7 0 -67.4973 -9.42316 4.15 + 64 372.923 561 6 1 -67.6689 -9.2519 -24.45 + 64 173.643 854 6 0 -67.6746 -9.24821 -25.85 + 64 335.416 561 5 1 -67.7578 -9.17416 -54.45 + 64 140.366 854 5 0 -67.7656 -9.16243 -55.85 + 64 121.2 560 4 1 -67.8525 -8.96457 -84.45 + 64 112.113 855 4 0 -67.8558 -8.95461 -85.85 + 64 405.998 560 3 1 -67.8894 -8.74546 -114.45 + 64 113.278 856 3 0 -67.8923 -8.7475 -115.85 + 64 231.713 560 2 1 -67.9847 -8.73708 -144.45 + 64 258.618 856 2 0 -67.9926 -8.73912 -145.85 + 64 248.729 559 1 1 -68.0921 -8.73982 -174.45 + 64 222.597 856 1 0 -68.1109 -8.72968 -175.85 + 64 107.669 558 0 1 -68.4445 -8.57468 -204.45 + 64 229.881 857 0 0 -68.4349 -8.55167 -205.85 + 64 122.03 1070 1 0 -178.293 34.25 -176.135 + 64 239.744 858 0 0 -68.7388 -8.45 -205.977 + 64 59.908 859 0 0 -68.8212 -8.24992 -205.874 + 64 93.1424 562 0 1 -67.587 -7.98354 -204.85 + 64 101.004 862 0 0 -68.8235 -7.51172 -205.85 + 64 343.481 560 1 1 -68.05 -8.72814 -174.497 + 64 129.337 859 1 0 -68.1687 -8.12966 -175.85 + 64 73.9872 562 5 1 -67.65 -9.32801 -54.6663 + 64 89.5235 850 5 0 -67.1417 -9.98853 -55.85 + 64 270.519 851 5 0 -67.0129 -9.85 -56.0123 + 64 111.589 569 5 1 -66.1532 -10.0016 -54.85 + 64 107.711 562 6 1 -67.65 -9.55522 -24.6763 + 64 200.528 858 3 0 -68.065 -8.34182 -115.85 + 64 153.171 555 2 1 -69.0191 -7.68709 -144.45 + 64 332.727 862 2 0 -69.0314 -7.60128 -145.85 + 64 139.599 554 1 1 -69.1368 -5.62662 -174.45 + 64 108.776 872 1 0 -69.1234 -5.54148 -175.85 + 64 127.835 555 0 1 -68.8823 -3.87162 -204.45 + 64 107.193 881 0 0 -68.8901 -3.81674 -205.85 + 64 80.4919 863 2 0 -69.0016 -7.45 -146.064 + 64 142.964 858 2 0 -67.9308 -8.32856 -145.85 + 64 150.978 564 1 1 -67.1418 -8.33123 -174.45 + 64 328.722 858 1 0 -67.1141 -8.33627 -175.85 + 64 136.832 567 0 1 -66.5773 -8.40289 -204.45 + 64 142.181 561 1 1 -67.8188 -8.30157 -174.45 + 64 131.805 857 1 0 -68.5206 -8.50937 -175.85 + 64 35.5888 1082 2 0 -71.829 36.5847 -146.25 + 64 137.482 1083 2 0 -71.8359 36.65 -146.211 + 64 74.0314 1084 2 0 -71.8656 36.85 -146.059 + 64 51.0672 1085 2 0 -71.9825 37.05 -145.926 + 64 25.377 536 2 1 -72.8057 37.8315 -144.85 + 64 132.466 535 2 1 -72.8502 37.8713 -144.793 + 64 10.8095 534 2 1 -73.05 38.0638 -144.473 + 64 221.254 860 0 0 -68.1006 -7.91927 -205.85 + 64 316.684 562 8 1 -67.4501 -9.76109 35.2351 + 64 44.2224 851 4 0 -67.2691 -9.84786 -86.158 + 64 114.235 564 3 1 -67.1841 -9.91536 -114.45 + 64 245.629 850 3 0 -67.0775 -9.86542 -115.85 + 64 113.09 573 2 1 -65.4408 -8.84234 -144.45 + 64 56.6102 586 1 1 -62.6988 -8.36228 -174.45 + 64 66.9289 587 1 1 -62.65 -8.35837 -174.671 + 64 99.8162 618 0 1 -56.4208 -8.25452 -204.45 + 64 270.439 851 3 0 -67.0188 -9.84988 -116.211 + 64 110.854 1197 3 0 -16.2188 59.4541 -116.25 + 64 130.228 563 3 1 -67.2782 -9.84452 -114.45 + 64 103.503 564 2 1 -67.2041 -9.56885 -144.45 + 64 306.307 852 2 0 -67.226 -9.56254 -145.85 + 64 108.754 853 1 0 -67.7085 -9.35122 -175.85 + 64 119.87 559 0 1 -68.1421 -9.54479 -204.45 + 64 122.036 852 0 0 -68.168 -9.55105 -205.85 + 64 94.7713 530 6 1 -73.9637 19.6128 -24.85 + 64 24.386 249 3 1 -130.31 48.3247 -114.85 + 64 27.13 248 3 1 -130.35 48.3654 -114.804 + 64 47.4559 1143 3 0 -129.771 48.7347 -115.85 + 64 0.207552 258 3 1 -128.504 49.1218 -114.85 + 64 135.361 1158 3 0 -125.776 51.8405 -115.85 + 64 50.1039 851 2 0 -67.1985 -9.65018 -146.206 + 64 70.7818 757 3 1 -28.4961 3.64088 -114.85 +Number of digits in this event = 45 +Using G4ParticleGun ... +9.08738 LIN +e- +Event: 65 +Number of tracker hits in this event = 45 + 65 93.1312 784 11 1 -23.0914 9.13757 125.55 + 65 98.1804 945 11 0 -23.0913 9.13751 124.15 + 65 102.45 784 10 1 -23.0872 9.13497 95.55 + 65 118.044 945 10 0 -23.0866 9.13522 94.15 + 65 115.853 784 9 1 -23.0769 9.1359 65.55 + 65 100.197 945 9 0 -23.0765 9.13714 64.15 + 65 144.331 784 8 1 -23.0743 9.16424 35.55 + 65 118.59 945 8 0 -23.0749 9.16672 34.15 + 65 110.093 784 7 1 -23.0842 9.21272 5.55 + 65 190.255 945 7 0 -23.085 9.21488 4.15 + 65 120.258 784 6 1 -23.1009 9.26212 -24.45 + 65 324.806 946 6 0 -23.1013 9.26472 -25.85 + 65 239.758 784 5 1 -23.1108 9.31721 -54.45 + 65 110.339 946 5 0 -23.1124 9.3201 -55.85 + 65 130.054 784 4 1 -23.1469 9.37679 -84.45 + 65 266.874 946 4 0 -23.1485 9.37984 -85.85 + 65 131.613 784 3 1 -23.188 9.43905 -114.45 + 65 109.87 946 3 0 -23.1899 9.44241 -115.85 + 65 115.331 784 2 1 -23.2267 9.51522 -144.45 + 65 99.2732 947 2 0 -23.2284 9.51747 -145.85 + 65 117.906 783 1 1 -23.2538 9.56002 -174.45 + 65 125.936 947 1 0 -23.2553 9.56393 -175.85 + 65 115.303 783 0 1 -23.2865 9.64636 -204.45 + 65 138.155 947 0 0 -23.2891 9.64918 -205.85 + 65 25.041 648 1 0 -2.91357 -50.2758 -176.25 + 65 50.2286 696 0 1 -40.6818 43.8804 -204.85 + 65 410.902 784 1 1 -23.25 9.5549 -174.455 + 65 488.873 785 1 1 -23.05 9.40994 -174.621 + 65 114.411 786 1 1 -22.8486 9.3517 -174.685 + 65 62.9929 787 1 1 -22.65 9.29508 -174.72 + 65 57.1661 788 1 1 -22.4498 9.2779 -174.696 + 65 68.028 789 1 1 -22.25 9.25109 -174.712 + 65 82.201 790 1 1 -22.05 9.32191 -174.692 + 65 189.544 791 1 1 -21.8499 9.46221 -174.713 + 65 225.114 782 4 1 -23.488 9.64919 -84.85 + 65 9.69759 783 4 1 -23.45 9.654 -84.7544 + 65 59.4045 1190 10 0 12.4265 58.202 93.75 + 65 276.69 945 1 0 -23.0156 9.14062 -175.85 + 65 253.572 785 0 1 -22.9448 9.16159 -204.45 + 65 124.779 945 0 0 -22.9394 9.15329 -205.85 + 65 55.8651 309 2 1 -118.15 -28.365 -144.7 + 65 166.206 620 7 0 -171.697 -55.9048 3.75 + 65 209 648 0 1 -50.2705 4.0401 -204.85 + 65 124.845 944 0 0 -23.0058 9.03776 -205.85 + 65 55.024 810 0 1 -18.0008 16.6323 -204.85 +Number of digits in this event = 22 +Using G4ParticleGun ... +7.94162 LIN +e- +Event: 66 +Number of tracker hits in this event = 55 + 66 146.769 972 7 1 14.5853 145.977 5.55 + 66 258.404 1629 7 0 14.585 145.977 4.15 + 66 113.608 972 6 1 14.5812 145.973 -24.45 + 66 123.604 1629 6 0 14.5803 145.973 -25.85 + 66 113.983 972 5 1 14.568 145.969 -54.45 + 66 122.302 1629 5 0 14.568 145.97 -55.85 + 66 164.773 972 4 1 14.5706 145.984 -84.45 + 66 155.219 1629 4 0 14.5708 145.985 -85.85 + 66 167.544 972 3 1 14.5762 145.997 -114.45 + 66 149.884 1629 3 0 14.5771 145.998 -115.85 + 66 103.058 972 2 1 14.5955 146.018 -144.45 + 66 131.032 1629 2 0 14.5972 146.02 -145.85 + 66 121.968 972 1 1 14.6282 146.058 -174.45 + 66 114.306 1629 1 0 14.6297 146.061 -175.85 + 66 123.93 973 0 1 14.6602 146.124 -204.45 + 66 122.473 1629 0 0 14.661 146.126 -205.85 + 66 13.5952 1229 3 0 101.796 65.8604 -116.25 + 66 68.9575 1228 3 0 101.818 65.85 -116.189 + 66 139.914 973 3 1 14.65 145.979 -114.499 + 66 191.55 1627 3 0 14.8796 145.636 -115.85 + 66 60.4395 1000 2 1 20.1274 139.98 -144.45 + 66 169.938 999 2 1 20.0499 139.849 -144.547 + 66 37.0278 998 2 1 19.8499 139.595 -144.752 + 66 33.7602 1590 2 0 18.8669 138.22 -145.85 + 66 84.9062 1589 2 0 18.8139 138.15 -145.907 + 66 94.1618 1588 2 0 18.6622 137.95 -146.071 + 66 37.6686 1587 2 0 18.5371 137.75 -146.221 + 66 209.336 886 1 1 -2.81606 99.1328 -174.45 + 66 15.1193 887 1 1 -2.64998 98.5567 -174.832 + 66 8.0186 1383 1 0 -2.06153 96.7804 -175.85 + 66 67.9673 1382 1 0 -2.05132 96.75 -175.868 + 66 90.0894 1381 1 0 -1.99715 96.55 -175.976 + 66 102.884 1380 1 0 -1.95399 96.35 -176.072 + 66 15.6448 1379 1 0 -1.87269 96.15 -176.215 + 66 15.3383 1609 1 0 62.8961 142.088 -176.25 + 66 70.5829 1610 1 0 62.9384 142.15 -176.227 + 66 67.1099 1611 1 0 63.088 142.35 -176.146 + 66 58.5563 1612 1 0 63.2095 142.55 -176.065 + 66 65.021 1613 1 0 63.2932 142.75 -175.986 + 66 32.8323 1614 1 0 63.3599 142.95 -175.908 + 66 133.002 1217 1 1 63.6218 145.002 -174.85 + 66 299.313 1218 1 1 63.65 145.299 -174.674 + 66 19.763 1219 1 1 63.8501 146.497 -174.809 + 66 38.6419 1641 1 0 64.9774 148.433 -175.85 + 66 69.3266 1642 1 0 65.0532 148.55 -175.906 + 66 92.2889 1643 1 0 65.1816 148.75 -175.997 + 66 43.5272 1644 1 0 65.3394 148.95 -176.142 + 66 11.6363 1312 0 1 82.622 179.099 -204.451 + 66 65.1986 1313 0 1 82.65 179.088 -204.471 + 66 110.46 1314 0 1 82.85 179.16 -204.615 + 66 11.8249 1315 0 1 83.05 179.138 -204.811 + 66 157.597 1794 0 0 83.9562 179.007 -205.85 + 66 409.173 1795 0 0 84.0864 179.15 -206.008 + 66 92.1061 974 3 1 15.0411 146.239 -114.85 + 66 120.96 975 3 1 15.05 146.228 -114.8 +Number of digits in this event = 24 +Using G4ParticleGun ... +5.72019 LIN +e- +Event: 67 +Number of tracker hits in this event = 280 + 67 253.775 1272 11 1 74.4512 -27.0338 125.55 + 67 144.144 765 11 0 74.452 -27.0325 124.15 + 67 297.064 1272 10 1 74.4668 -26.9965 95.55 + 67 140.54 765 10 0 74.4689 -26.9959 94.15 + 67 463.746 1272 9 1 74.5154 -26.9822 65.55 + 67 452.167 765 9 0 74.5157 -26.9814 64.15 + 67 253.467 1272 8 1 74.5217 -26.9765 35.55 + 67 291.721 765 8 0 74.5231 -26.9738 34.15 + 67 257.532 1272 7 1 74.5502 -26.9203 5.55 + 67 122.044 765 7 0 74.5506 -26.9167 4.15 + 67 143.516 1272 6 1 74.5659 -26.8431 -24.45 + 67 127.618 766 6 0 74.5685 -26.8276 -25.85 + 67 156.23 1273 5 1 74.6837 -26.4836 -54.45 + 67 147.942 767 5 0 74.6711 -26.5052 -55.85 + 67 126.253 1271 4 1 74.3435 -26.9329 -84.45 + 67 278.7 765 4 0 74.3139 -26.9973 -85.85 + 67 143.207 1267 3 1 73.5958 -28.5297 -114.45 + 67 108.356 756 3 0 73.5891 -28.6628 -115.85 + 67 174.739 1268 2 1 73.675 -31.2132 -144.45 + 67 7.6594 737 2 0 74.0924 -32.6238 -145.85 + 67 68.4638 736 2 0 74.0988 -32.65 -145.874 + 67 83.6815 735 2 0 74.1477 -32.85 -146.051 + 67 7.90456 734 2 0 74.1991 -33.05 -146.222 + 67 13.6629 1317 1 1 83.616 -66.2011 -174.45 + 67 121.33 1318 1 1 83.65 -66.2484 -174.484 + 67 93.5476 1319 1 1 83.85 -66.5719 -174.719 + 67 84.0404 559 1 0 84.7502 -68.0619 -175.85 + 67 93.4307 558 1 0 84.8742 -68.25 -175.993 + 67 86.0243 557 1 0 85.0229 -68.45 -176.148 + 67 2.598 1456 0 1 111.537 -99.821 -204.45 + 67 59.2785 1457 0 1 111.55 -99.8256 -204.451 + 67 51.4189 1458 0 1 111.75 -99.8835 -204.455 + 67 68.7832 1459 0 1 111.95 -99.9825 -204.46 + 67 52.1817 1460 0 1 112.15 -100.091 -204.493 + 67 87.5467 1461 0 1 112.35 -100.185 -204.515 + 67 67.536 1462 0 1 112.55 -100.289 -204.51 + 67 100.644 1463 0 1 112.75 -100.406 -204.499 + 67 144.549 1464 0 1 112.95 -100.497 -204.472 + 67 346.664 1465 0 1 113.313 -100.585 -204.45 + 67 0.67365 406 0 0 111.366 -98.7545 -205.85 + 67 66.8003 407 0 0 111.361 -98.75 -205.854 + 67 362.413 408 0 0 111.179 -98.55 -205.99 + 67 46.3466 383 0 0 105.947 -103.447 -206.25 + 67 57.6615 433 0 0 91.9136 -93.413 -206.25 + 67 244.518 1265 2 1 73.119 -29.0117 -144.45 + 67 10.1654 1264 2 1 73.05 -29.0118 -144.815 + 67 97.7345 755 2 0 72.8455 -29.0037 -145.85 + 67 131.283 1234 1 1 66.9754 -29.5318 -174.45 + 67 65.7847 753 1 0 66.6962 -29.2964 -175.85 + 67 41.8383 754 1 0 66.6395 -29.25 -176.12 + 67 217.987 1201 0 1 60.4365 -25.0197 -204.45 + 67 106.486 774 0 0 60.0544 -25.1439 -205.85 + 67 174.045 754 2 0 73.1051 -29.0617 -145.85 + 67 420.902 1264 1 1 72.9236 -30.0592 -174.45 + 67 118.196 749 1 0 72.9018 -30.1284 -175.85 + 67 117.172 1260 0 1 72.2465 -31.5384 -204.45 + 67 180.384 742 0 0 72.2531 -31.6189 -205.85 + 67 326.629 1263 1 1 72.85 -29.9811 -174.564 + 67 225.188 1272 5 1 74.5679 -26.7297 -54.45 + 67 159.135 766 5 0 74.5678 -26.7248 -55.85 + 67 244.615 1272 4 1 74.5653 -26.6209 -84.45 + 67 157.504 767 4 0 74.5625 -26.6177 -85.85 + 67 261.368 1272 3 1 74.5091 -26.5561 -114.45 + 67 172.53 767 3 0 74.5069 -26.5507 -115.85 + 67 112.525 1272 2 1 74.4549 -26.457 -144.45 + 67 115.827 767 2 0 74.4486 -26.4529 -145.85 + 67 104.23 1271 1 1 74.3177 -26.3597 -174.45 + 67 170.508 768 1 0 74.3081 -26.3497 -175.85 + 67 171.132 1270 0 1 74.1149 -26.1546 -204.45 + 67 92.2578 769 0 0 74.1093 -26.1459 -205.85 + 67 54.6473 1230 0 1 66.1981 113.571 -204.85 + 67 38.5067 1602 0 0 1.24077 140.55 -206.073 + 67 29.5745 556 1 0 148.507 -68.6502 -176.209 + 67 143.801 732 4 0 58.7658 -33.4632 -86.25 + 67 103.842 1189 4 1 57.978 -33.6516 -84.8498 + 67 60.1681 1188 4 1 57.8497 -33.7094 -84.5359 + 67 14.9312 311 6 0 143.75 -117.932 -26.2497 + 67 231.854 310 6 0 143.747 -117.95 -26.2135 + 67 76.3266 1271 3 1 74.45 -26.5398 -114.573 + 67 45.9375 766 3 0 73.9963 -26.65 -116.065 + 67 140.311 1232 2 1 66.5685 -29.9035 -144.45 + 67 132.652 749 2 0 66.2273 -30.1337 -145.851 + 67 48.1848 1203 1 1 60.739 -34.2222 -174.45 + 67 91.5433 1204 1 1 60.8501 -34.2462 -174.623 + 67 180.103 727 1 0 61.5844 -34.4503 -175.85 + 67 25.4904 1336 0 1 87.25 -46.5354 -204.51 + 67 51.7218 1337 0 1 87.45 -46.5874 -204.566 + 67 64.5662 1338 0 1 87.65 -46.6624 -204.656 + 67 63.4868 1339 0 1 87.85 -46.7378 -204.687 + 67 61.51 1340 0 1 88.05 -46.8159 -204.673 + 67 42.5197 1341 0 1 88.25 -46.8974 -204.679 + 67 56.0369 1342 0 1 88.45 -46.9737 -204.684 + 67 102.445 1343 0 1 88.65 -47.0256 -204.713 + 67 107.542 1344 0 1 88.85 -47.0795 -204.756 + 67 84.0297 1345 0 1 89.05 -47.1253 -204.772 + 67 65.2008 1346 0 1 89.25 -47.2761 -204.789 + 67 60.8011 1347 0 1 89.45 -47.428 -204.78 + 67 19.9727 1348 0 1 89.6501 -47.5783 -204.824 + 67 470.829 655 0 0 92.0182 -48.9268 -205.85 + 67 345.576 656 0 0 93.5924 -48.85 -206.06 + 67 108.388 657 0 0 94.2873 -48.65 -205.986 + 67 100.801 658 0 0 94.3881 -48.45 -206.004 + 67 118.916 659 0 0 94.5896 -48.25 -206.001 + 67 53.242 660 0 0 94.7282 -48.05 -205.935 + 67 15.3629 1375 0 1 95.3335 -46.3841 -204.85 + 67 531.624 1376 0 1 95.35 -46.3406 -204.825 + 67 45.9684 1377 0 1 95.5501 -45.8437 -204.534 + 67 211.416 679 0 0 95.216 -44.1467 -205.85 + 67 25.0444 680 0 0 95.1783 -44.0498 -206.042 + 67 99.1746 764 3 0 74.2937 -27.11 -115.85 + 67 16.5177 763 3 0 74.2354 -27.25 -116.19 + 67 95.0897 1252 2 1 70.5331 -37.179 -144.45 + 67 149.19 713 2 0 70.7222 -37.2973 -145.851 + 67 56.0397 681 1 0 72.5032 -43.7039 -175.851 + 67 75.3401 680 1 0 72.457 -43.85 -176.014 + 67 7.39386 679 1 0 72.4012 -44.05 -176.22 + 67 181.018 1219 0 1 63.8914 -70.8058 -204.45 + 67 26.1191 1220 0 1 64.05 -71.2026 -204.793 + 67 7.03445 538 0 0 64.509 -72.4311 -205.85 + 67 77.059 537 0 0 64.5161 -72.45 -205.866 + 67 86.0187 536 0 0 64.5839 -72.6501 -206.04 + 67 8.56558 535 0 0 64.6574 -72.85 -206.231 + 67 82.1114 1430 0 1 106.175 -65.3213 -204.45 + 67 35.4369 754 5 0 63.0097 -29.2472 -56.25 + 67 133.06 753 5 0 63.0028 -29.25 -56.2303 + 67 62.1822 1214 5 1 62.8922 -30.7058 -54.85 + 67 210.614 1213 5 1 62.85 -30.8951 -54.7272 + 67 82.5973 1212 5 1 62.65 -31.1822 -54.7171 + 67 17.2766 751 5 0 61.0565 -29.679 -55.85 + 67 20.9598 752 5 0 61.0163 -29.65 -55.8669 + 67 16.6533 1192 5 1 58.5002 -28.0985 -54.85 + 67 68.6907 1191 5 1 58.45 -28.0701 -54.8345 + 67 76.6504 1190 5 1 58.2498 -27.9892 -54.8049 + 67 434.407 1189 5 1 58.0497 -27.933 -54.6957 + 67 145.809 765 5 0 74.5638 -26.874 -55.85 + 67 117.356 746 4 0 74.4666 -30.7685 -85.85 + 67 165.528 1262 3 1 72.575 -35.9389 -114.45 + 67 131.199 720 3 0 72.3684 -35.9661 -115.85 + 67 108.967 1244 2 1 69.0475 -36.8872 -144.45 + 67 16.4558 715 2 0 68.6416 -37.0426 -145.85 + 67 98.3015 714 2 0 68.6209 -37.05 -145.919 + 67 47.3886 1198 1 1 59.7048 -40.3994 -174.45 + 67 139.667 1197 1 1 59.65 -40.3779 -174.623 + 67 157.355 699 1 0 59.2481 -40.2054 -175.85 + 67 159.465 1148 0 1 49.7598 -36.0453 -204.45 + 67 108.604 722 0 0 49.7277 -35.5684 -205.85 + 67 18.9388 723 0 0 49.7328 -35.45 -206.206 + 67 9.2901 1315 4 1 83.1949 -66.9518 -84.85 + 67 73.2302 1273 4 1 74.65 -30.4354 -84.4852 + 67 110.382 1274 4 1 74.85 -30.3609 -84.612 + 67 63.9079 1275 4 1 75.0513 -30.3031 -84.7401 + 67 4.26565 1276 4 1 75.25 -30.2573 -84.8467 + 67 139.028 750 4 0 77.3147 -29.8682 -85.85 + 67 279.034 751 4 0 77.4131 -29.85 -85.8965 + 67 171.49 752 4 0 78.1121 -29.65 -86.1055 + 67 32.0037 753 4 0 78.554 -29.45 -86.2233 + 67 120.136 1761 3 1 172.468 -11.4949 -114.45 + 67 36.0671 839 3 0 173.085 -12.1306 -115.85 + 67 290.552 1765 3 1 173.222 -13.2241 -114.85 + 67 75.3688 1764 3 1 173.079 -13.7348 -114.45 + 67 227.873 822 3 0 172.845 -15.4875 -115.85 + 67 367.887 1770 3 1 174.186 -16.0471 -114.85 + 67 135.761 1769 3 1 174.15 -16.3021 -114.722 + 67 259.653 1273 1 1 74.6845 -26.5935 -174.45 + 67 280.973 767 1 0 74.6747 -26.6192 -175.85 + 67 248.178 1271 0 1 74.4405 -27.0981 -204.45 + 67 120.474 764 0 0 74.4291 -27.1455 -205.85 + 67 105.097 768 0 0 74.2456 -26.4212 -205.85 + 67 108.057 764 11 0 74.4541 -27.05 123.99 + 67 64.9064 763 11 0 74.5727 -27.25 123.844 + 67 44.2196 989 11 0 144.002 17.8636 123.75 + 67 166.59 1077 11 0 173.638 35.613 123.75 + 67 129.496 1273 10 1 74.65 -26.909 95.4466 + 67 9.63253 1274 10 1 74.8503 -26.8293 95.1895 + 67 224.005 767 10 0 75.6301 -26.537 94.15 + 67 53.7004 768 10 0 75.8116 -26.45 93.896 + 67 27.8667 1359 9 1 92.1165 -16.8468 65.55 + 67 139.41 1360 9 1 92.15 -16.8307 65.4857 + 67 139.803 818 9 0 92.7512 -16.3806 64.15 + 67 5.69455 819 9 0 92.9239 -16.25 63.7636 + 67 130.957 1418 8 1 103.887 -7.70899 35.55 + 67 118.639 861 8 0 103.832 -7.72787 34.1495 + 67 135.976 1399 7 1 100.132 -8.59347 5.55 + 67 164.606 856 7 0 99.8133 -8.76128 4.15 + 67 99.7898 1360 6 1 92.3011 -12.2407 -24.45 + 67 125.426 839 6 0 92.3413 -12.1651 -25.85 + 67 21.1018 1373 5 1 94.9248 -11.0814 -54.4501 + 67 90.3638 1374 5 1 94.9501 -11.1086 -54.5287 + 67 134.226 842 5 0 95.4041 -11.4762 -55.85 + 67 122.454 1420 4 1 104.162 -19.0555 -84.4501 + 67 42.2543 1421 4 1 104.35 -19.1176 -84.7364 + 67 43.4792 803 4 0 105.367 -19.4201 -85.85 + 67 97.6733 802 4 0 105.456 -19.45 -85.9492 + 67 255.924 1543 3 1 128.875 -30.6912 -114.45 + 67 55.8045 1542 3 1 128.75 -31.0127 -114.728 + 67 100.104 740 3 0 128.262 -31.9838 -115.85 + 67 82.9723 739 3 0 128.229 -32.0501 -115.928 + 67 44.9012 738 3 0 128.133 -32.25 -116.158 + 67 99.1331 1459 2 1 112.022 -61.3931 -144.45 + 67 66.5186 592 2 0 111.93 -61.5938 -145.851 + 67 42.1003 591 2 0 111.922 -61.65 -146.086 + 67 6.1561 766 10 0 74.3972 -26.6571 94.15 + 67 211.459 1261 9 1 72.3976 -20.1728 65.55 + 67 127.213 801 9 0 72.1076 -19.8464 64.15 + 67 115.302 1232 8 1 66.5046 -12.5495 35.5498 + 67 140.513 839 8 0 66.4677 -12.2439 34.15 + 67 99.4376 1229 7 1 65.9493 -6.56998 5.55 + 67 163.068 868 7 0 66.0578 -6.42611 4.15 + 67 114.435 1244 6 1 69.0384 -3.11089 -24.45 + 67 95.7906 1245 6 1 69.05 -3.10763 -24.5086 + 67 154.728 885 6 0 69.3082 -3.03836 -25.85 + 67 100.713 1275 5 1 75.1978 -1.72491 -54.4507 + 67 131.502 892 5 0 75.2201 -1.56178 -55.8506 + 67 19.8804 1283 4 1 76.8358 1.31274 -84.45 + 67 109.557 1284 4 1 76.85 1.30264 -84.5195 + 67 157.991 905 4 0 77.1305 1.12581 -85.85 + 67 159.734 1315 3 1 83.1502 -3.51909 -114.45 + 67 161.412 880 3 0 83.4574 -3.86664 -115.85 + 67 212.686 1346 2 1 89.3833 -11.2871 -144.45 + 67 102.451 842 2 0 89.613 -11.4975 -145.85 + 67 19.1295 1370 1 1 94.3329 -15.7518 -174.45 + 67 89.3494 1371 1 1 94.35 -15.7697 -174.526 + 67 201.337 819 1 0 94.6535 -16.0896 -175.85 + 67 158.163 1401 0 1 100.439 -23.4127 -204.45 + 67 134.633 781 0 0 100.784 -23.6747 -205.85 + 67 192.796 1400 0 1 100.35 -23.5019 -204.484 + 67 199.553 1399 0 1 100.15 -23.7235 -204.49 + 67 147.92 811 1 0 105.536 -17.8496 -176.25 + 67 96.8844 810 1 0 105.58 -17.85 -176.17 + 67 325.605 1435 1 1 107.24 -19.0974 -174.85 + 67 44.2264 1347 2 1 89.45 -11.3519 -144.557 + 67 57.0673 1354 4 1 90.95 5.21831 -84.6602 + 67 34.9319 845 7 0 68.7911 -11.0194 4.15 + 67 357.429 766 7 0 74.5115 -26.85 4.13045 + 67 135.096 1271 6 1 74.3269 -26.6528 -24.45 + 67 184.249 767 6 0 74.3097 -26.6433 -25.85 + 67 134.558 1269 5 1 73.9763 -26.4353 -54.45 + 67 116.92 768 5 0 73.976 -26.4066 -55.85 + 67 169.859 1269 4 1 73.9677 -25.8608 -84.45 + 67 126.419 771 4 0 73.9706 -25.8253 -85.85 + 67 134.361 1269 3 1 74.0282 -25.1203 -114.45 + 67 150.469 774 3 0 74.0291 -25.0941 -115.85 + 67 160.218 1269 2 1 73.9856 -24.6194 -144.45 + 67 106.635 777 2 0 73.9768 -24.6096 -145.85 + 67 104.301 1268 1 1 73.7985 -24.4511 -174.45 + 67 148.965 777 1 0 73.7966 -24.4627 -175.85 + 67 120.576 1268 0 1 73.739 -24.6029 -204.45 + 67 118.187 777 0 0 73.7157 -24.6089 -205.85 + 67 108.631 730 7 0 37.3156 -33.9567 3.75002 + 67 115.244 1271 8 1 74.333 -27.5673 35.5499 + 67 114.232 762 8 0 74.2709 -27.6372 34.15 + 67 122.907 761 8 0 74.2585 -27.65 33.8934 + 67 114.892 1264 7 1 72.897 -29.3077 5.55 + 67 6.31061 1263 7 1 72.85 -29.3656 5.18006 + 67 149.904 752 7 0 72.7163 -29.5309 4.15 + 67 154.801 1246 6 1 69.3331 -34.5824 -24.4501 + 67 133.986 725 6 0 69.1565 -34.9477 -25.85 + 67 122.26 1226 5 1 65.3481 -42.0755 -54.4506 + 67 131.728 688 5 0 65.0867 -42.318 -55.8503 + 67 54.3084 1194 4 1 58.9001 -46.9047 -84.45 + 67 175.539 1193 4 1 58.85 -46.9513 -84.5441 + 67 36.2375 662 4 0 58.1483 -47.6166 -85.85 + 67 142.109 661 4 0 58.1136 -47.65 -85.9156 + 67 43.1748 1112 3 1 42.484 -62.5874 -114.45 + 67 99.9309 1111 3 1 42.45 -62.6436 -114.561 + 67 112.299 583 3 0 42.0585 -63.291 -115.85 + 67 26.0553 582 3 0 41.9617 -63.45 -116.16 + 67 15.8519 1066 2 1 33.278 -78.1445 -144.45 + 67 99.8041 1065 2 1 33.25 -78.1751 -144.512 + 67 2.54049 506 2 0 32.6766 -78.8465 -145.85 + 67 126.42 505 2 0 32.6737 -78.85 -145.857 + 67 0.318728 504 2 0 32.5048 -79.0501 -146.247 + 67 93.6763 999 1 1 19.9909 -93.3805 -174.45 + 67 71.1053 998 1 1 19.8496 -93.5163 -174.665 + 67 57.5519 429 1 0 19.0724 -94.2839 -175.85 + 67 105.447 428 1 0 19.0049 -94.35 -175.951 + 67 123.051 907 0 1 1.62236 -112.867 -204.45 + 67 43.4677 906 0 1 1.45 -112.943 -204.717 + 67 121.172 334 0 0 0.754072 -113.248 -205.85 + 67 30.2237 333 0 0 0.532213 -113.35 -206.165 +Number of digits in this event = 123 +Using G4ParticleGun ... +5.60354 LIN +e- +Event: 68 +Number of tracker hits in this event = 99 + 68 127.02 674 11 1 -45.095 -34.2387 125.55 + 68 139.621 729 11 0 -45.0938 -34.2384 124.15 + 68 101.939 674 10 1 -45.0688 -34.2332 95.55 + 68 123.538 729 10 0 -45.0683 -34.2322 94.15 + 68 117.703 674 9 1 -45.0581 -34.2123 65.55 + 68 114.463 729 9 0 -45.0581 -34.212 64.15 + 68 113.543 674 8 1 -45.0582 -34.2085 35.55 + 68 109.378 729 8 0 -45.0566 -34.2071 34.15 + 68 149.319 675 7 1 -45.022 -34.181 5.55 + 68 118.557 729 7 0 -45.0197 -34.1804 4.15 + 68 134.018 675 6 1 -44.9707 -34.1688 -24.45 + 68 114.398 729 6 0 -44.9672 -34.1691 -25.85 + 68 122.221 675 5 1 -44.8991 -34.1784 -54.45 + 68 186.438 729 5 0 -44.8947 -34.1792 -55.85 + 68 718.023 676 4 1 -44.8008 -34.201 -84.45 + 68 450.845 729 4 0 -44.7949 -34.2006 -85.85 + 68 171.306 676 3 1 -44.6723 -34.1928 -114.45 + 68 97.1379 729 3 0 -44.6652 -34.193 -115.85 + 68 111.952 677 2 1 -44.5139 -34.1992 -144.45 + 68 98.3425 729 2 0 -44.5074 -34.201 -145.85 + 68 123.261 678 1 1 -44.3767 -34.2364 -174.45 + 68 105.985 729 1 0 -44.3721 -34.2382 -175.85 + 68 325.496 678 0 1 -44.2828 -34.2765 -204.45 + 68 390.724 728 0 0 -44.2788 -34.2762 -205.85 + 68 117.823 323 4 1 -115.35 0.779295 -84.7856 + 68 14.0814 503 5 1 -79.45 -14.2441 -54.6435 + 68 89.1028 322 4 1 -115.55 0.830765 -84.497 + 68 47.5654 321 4 1 -115.75 0.696263 -84.7124 + 68 92.2011 900 4 0 -116.396 0.192497 -85.85 + 68 120.017 771 4 0 -137.441 -25.6752 -86.25 + 68 45.6207 770 4 0 -137.657 -25.85 -85.9387 + 68 471.467 210 4 1 -137.958 -27.1718 -84.85 + 68 218.714 211 4 1 -137.95 -27.3671 -84.8175 + 68 35.6062 209 4 1 -138.15 -27.7839 -84.6293 + 68 380.224 746 13 0 68.3907 -30.6685 183.75 + 68 33.0367 791 1 0 -85.1629 -21.8432 -176.25 + 68 37.3355 790 1 0 -85.1786 -21.8501 -176.208 + 68 15.447 824 1 0 -100.61 -15.0889 -176.25 + 68 220.992 825 1 0 -100.599 -15.05 -176.237 + 68 23.5451 802 1 0 -169.168 -19.45 -175.859 + 68 7.58296 50 1 1 -170.011 -21.2348 -174.45 + 68 20.5719 803 1 0 -169.174 -19.45 -175.857 + 68 209.676 678 3 1 -44.4415 -33.1681 -114.45 + 68 122.155 734 3 0 -44.4326 -33.1385 -115.85 + 68 110.704 679 2 1 -44.1582 -32.1802 -144.45 + 68 133.183 739 2 0 -44.1909 -32.1148 -145.851 + 68 180.313 675 1 1 -44.9426 -30.4757 -174.45 + 68 102.981 748 1 0 -45.103 -30.4291 -175.85 + 68 85.3246 657 0 1 -48.6116 -29.5772 -204.45 + 68 105.89 656 0 1 -48.65 -29.5965 -204.744 + 68 116.596 752 0 0 -48.8025 -29.6206 -205.85 + 68 53.2896 753 0 0 -51.2326 -29.26 -205.85 + 68 13.8689 646 0 1 -50.7028 -30.1943 -204.85 + 68 114.753 747 0 0 -49.2683 -30.5309 -205.85 + 68 122.005 728 4 0 -44.7428 -34.3528 -85.85 + 68 119.361 688 3 1 -42.3108 -37.4476 -114.45 + 68 114.538 711 3 0 -42.2057 -37.6691 -115.85 + 68 95.848 694 2 1 -41.2055 -41.6201 -144.45 + 68 112.616 693 2 1 -41.25 -41.6189 -144.561 + 68 134.258 692 2 0 -41.7602 -41.6174 -145.85 + 68 270.217 642 1 1 -51.4708 -40.6149 -174.45 + 68 11.9557 698 1 0 -52.0847 -40.2592 -175.85 + 68 121.617 699 1 0 -52.1017 -40.25 -175.887 + 68 135.749 567 0 1 -66.5752 -32.1738 -204.45 + 68 19.014 566 0 1 -66.65 -32.1459 -204.799 + 68 115.254 739 0 0 -66.8098 -32.1153 -205.85 + 68 24.8015 516 3 0 5.70392 -76.65 -116.221 + 68 28.5818 703 1 0 -49.9396 -39.2921 -175.85 + 68 15.2432 657 1 1 -48.4783 -38.1733 -174.85 + 68 226.708 658 1 1 -48.4499 -38.1586 -174.827 + 68 120.891 675 3 1 -44.9134 -34.2779 -114.45 + 68 132.357 728 3 0 -44.9283 -34.2896 -115.85 + 68 117.647 674 2 1 -45.1627 -34.6129 -144.45 + 68 136.485 726 2 0 -45.2777 -34.7045 -145.85 + 68 129.051 661 1 1 -47.7126 -36.485 -174.45 + 68 102.525 717 1 0 -47.8364 -36.6172 -175.85 + 68 12.3726 716 1 0 -47.8674 -36.65 -176.199 + 68 124.321 649 0 1 -50.0607 -39.4559 -204.45 + 68 182.371 702 0 0 -50.2077 -39.6477 -205.85 + 68 198.122 701 0 0 -50.2095 -39.65 -205.867 + 68 41.8167 679 3 1 -44.217 -31.8571 -114.45 + 68 130.325 741 3 0 -44.6575 -31.8257 -115.85 + 68 120.555 628 2 1 -54.355 -30.3403 -144.45 + 68 40.7924 747 2 0 -54.5869 -30.6179 -145.85 + 68 75.5008 746 2 0 -54.6132 -30.6502 -146.001 + 68 14.7697 596 1 1 -60.8269 -36.7414 -174.45 + 68 142.207 595 1 1 -60.8502 -36.7801 -174.486 + 68 2.06104 594 1 1 -61.05 -37.1642 -174.845 + 68 2.49592 709 1 0 -61.5256 -38.2409 -175.85 + 68 88.503 708 1 0 -61.5294 -38.25 -175.859 + 68 148.419 707 1 0 -61.6176 -38.45 -176.057 + 68 158.981 536 0 1 -72.7278 -68.6517 -204.45 + 68 30.1681 535 0 1 -72.85 -68.9088 -204.769 + 68 22.289 552 0 0 -73.2677 -69.6063 -205.85 + 68 107.152 551 0 0 -73.2938 -69.65 -205.915 + 68 22.1028 550 0 0 -73.4 -69.8502 -206.178 + 68 73.5161 575 0 1 -64.8938 -38.6781 -204.45 + 68 126.986 694 5 0 -55.1075 -41.1703 -56.2497 + 68 204.386 693 5 0 -55.215 -41.2501 -56.122 +Number of digits in this event = 44 +Using G4ParticleGun ... +5.17508 LIN +e- +Event: 69 +Number of tracker hits in this event = 54 + 69 172.498 1424 8 1 105.063 -87.4133 35.55 + 69 120.221 463 8 0 105.062 -87.4122 34.15 + 69 243.271 1424 7 1 105.04 -87.3869 5.55 + 69 128.157 463 7 0 105.042 -87.3894 4.15 + 69 113.345 1424 6 1 105.072 -87.449 -24.45 + 69 100.291 463 6 0 105.069 -87.4435 -25.85 + 69 183.455 1424 5 1 105.001 -87.3372 -54.45 + 69 203.396 463 5 0 105.005 -87.3265 -55.85 + 69 214.675 1424 4 1 105.078 -87.0969 -84.45 + 69 129.661 464 4 0 105.078 -87.0821 -85.85 + 69 216.088 1424 3 1 105.1 -86.741 -114.45 + 69 140.764 466 3 0 105.106 -86.7379 -115.85 + 69 126.183 1425 2 1 105.222 -86.6333 -144.45 + 69 128.405 467 2 0 105.234 -86.6438 -145.85 + 69 254.26 1426 1 1 105.431 -86.8177 -174.45 + 69 523.741 466 1 0 105.452 -86.8364 -175.85 + 69 122.762 1428 0 1 105.883 -87.2345 -204.45 + 69 134.286 464 0 0 105.901 -87.2354 -205.85 + 69 13.9174 1596 4 1 139.478 7.85636 -84.85 + 69 34.0162 1344 7 0 158.871 88.9312 3.75 + 69 234.892 466 2 0 105.236 -86.65 -145.86 + 69 405.393 520 2 0 122.64 -75.9301 -146.25 + 69 54.6781 1471 0 1 114.384 -88.5132 -204.45 + 69 106.977 1470 0 1 114.35 -88.5159 -204.496 + 69 18.6752 1469 0 1 114.15 -88.552 -204.808 + 69 143.505 456 0 0 113.465 -88.7222 -205.85 + 69 29.5969 554 0 0 79.7816 -69.25 -205.912 + 69 208.302 1292 0 1 78.5113 -65.9328 -204.85 + 69 14.7586 1423 7 1 104.95 -87.4309 5.3431 + 69 243.679 463 4 0 105.047 -87.3409 -85.85 + 69 141.88 1421 3 1 104.529 -87.7066 -114.45 + 69 23.1574 1422 3 1 104.55 -87.7114 -114.774 + 69 112.419 461 3 0 104.616 -87.7334 -115.85 + 69 146.149 1439 2 1 107.989 -86.8909 -144.45 + 69 123.138 465 2 0 108.186 -86.8653 -145.85 + 69 120.123 1460 1 1 112.209 -86.7512 -174.45 + 69 140.725 467 1 0 112.461 -86.6187 -175.85 + 69 127.394 1489 0 1 118.021 -83.4438 -204.45 + 69 356.016 484 0 0 118.363 -83.1966 -205.85 + 69 167.193 1487 0 1 117.608 -86.1377 -204.45 + 69 299.328 1488 0 1 117.75 -86.0043 -204.631 + 69 76.0967 473 0 0 117.93 -85.3792 -205.85 + 69 80.7483 472 0 0 118.025 -85.45 -205.937 + 69 214.349 471 0 0 118.025 -85.6504 -205.967 + 69 150.093 1491 0 1 118.495 -85.2641 -204.85 + 69 246.346 463 3 0 105.061 -87.3245 -115.85 + 69 118.735 1424 2 1 105.08 -87.2878 -144.45 + 69 133.712 463 2 0 105.08 -87.2824 -145.85 + 69 109.739 1424 1 1 105.074 -87.1772 -174.45 + 69 92.3535 464 1 0 105.072 -87.1711 -175.85 + 69 119.084 1424 0 1 105.032 -87.0466 -204.45 + 69 135.383 465 0 0 105.029 -87.0412 -205.85 + 69 307.161 76 14 0 81.6306 -164.829 213.75 + 69 48.1474 77 14 0 81.6655 -164.75 213.8 +Number of digits in this event = 40 +Using G4ParticleGun ... +9.91925 LIN +e- +Event: 70 +Number of tracker hits in this event = 26 + 70 109.186 490 10 1 -82.0448 -59.5076 95.55 + 70 140.071 602 10 0 -82.0451 -59.5077 94.15 + 70 81.6371 489 9 1 -82.0528 -59.5105 65.55 + 70 126.21 602 9 0 -82.0538 -59.5108 64.15 + 70 147.945 489 8 1 -82.0738 -59.5211 35.55 + 70 292.332 602 8 0 -82.0747 -59.5212 34.15 + 70 185.031 489 7 1 -82.0903 -59.5207 5.55 + 70 127.372 602 7 0 -82.0915 -59.5203 4.15 + 70 101.34 489 6 1 -82.1152 -59.5177 -24.45 + 70 198.953 602 6 0 -82.1155 -59.5175 -25.85 + 70 146.2 489 5 1 -82.1248 -59.5156 -54.45 + 70 132.972 602 5 0 -82.1262 -59.5157 -55.85 + 70 107.89 489 4 1 -82.1524 -59.5186 -84.45 + 70 105.407 602 4 0 -82.1532 -59.5193 -85.85 + 70 115.339 489 3 1 -82.164 -59.5324 -114.45 + 70 121.741 602 3 0 -82.1652 -59.5344 -115.85 + 70 227.675 489 2 1 -82.1906 -59.5731 -144.45 + 70 117.074 602 2 0 -82.1924 -59.5745 -145.85 + 70 130.007 489 1 1 -82.2379 -59.6045 -174.45 + 70 127.16 602 1 0 -82.2405 -59.6059 -175.85 + 70 168.817 488 0 1 -82.2951 -59.6359 -204.45 + 70 128.009 602 0 0 -82.2976 -59.6368 -205.85 + 70 283.352 889 1 0 -114.939 -2.24685 -176.25 + 70 120.444 693 1 1 -41.45 -161.766 -174.678 + 70 67.5545 692 1 1 -41.4502 -162.053 -174.52 + 70 47.4845 877 8 0 16.412 -4.51731 33.75 +Number of digits in this event = 20 +Using G4ParticleGun ... +7.87454 LIN +e- +Event: 71 +Number of tracker hits in this event = 72 + 71 116.488 1474 9 1 115.073 -24.0761 65.55 + 71 114.795 779 9 0 115.072 -24.0754 64.15 + 71 129.777 1474 8 1 115.061 -24.0609 35.55 + 71 127.614 779 8 0 115.061 -24.061 34.15 + 71 120.844 1474 7 1 115.055 -24.0646 5.55 + 71 117.84 779 7 0 115.054 -24.0662 4.15 + 71 100.513 1474 6 1 115.025 -24.0997 -24.45 + 71 98.6876 779 6 0 115.023 -24.1 -25.85 + 71 375.944 1474 5 1 114.987 -24.1032 -54.45 + 71 339.849 779 5 0 114.985 -24.1037 -55.85 + 71 214.451 1473 4 1 114.939 -24.1096 -84.45 + 71 112.501 779 4 0 114.94 -24.1135 -85.85 + 71 120.028 1474 3 1 114.967 -24.199 -114.45 + 71 124.949 779 3 0 114.967 -24.2107 -115.85 + 71 135.331 1474 2 1 114.972 -24.428 -144.45 + 71 110.167 778 2 0 114.971 -24.4377 -145.85 + 71 437.635 1473 1 1 114.914 -24.6562 -174.45 + 71 112.732 776 1 0 114.906 -24.6658 -175.85 + 71 119.961 1472 0 1 114.729 -24.8606 -204.45 + 71 111.272 775 0 0 114.72 -24.8685 -205.85 + 71 209.322 779 1 0 114.917 -24.2 -175.85 + 71 125.368 1474 0 1 115.067 -24.3233 -204.45 + 71 102.081 778 0 0 115.077 -24.3284 -205.85 + 71 10.155 775 1 0 115.13 -25.0231 -175.851 + 71 81.1398 774 1 0 115.136 -25.05 -175.886 + 71 133.134 773 1 0 115.235 -25.25 -176.1 + 71 109.702 1473 0 1 114.819 -24.1453 -204.45 + 71 116.785 779 0 0 114.804 -24.1477 -205.85 + 71 186.807 484 0 1 -83.05 3.74946 -204.745 + 71 188.934 1535 2 1 127.322 -75.2065 -144.45 + 71 11.5991 1536 2 1 127.35 -75.2362 -144.566 + 71 360.78 281 5 0 129.801 -123.82 -56.25 + 71 38.4725 1460 6 1 112.336 1.03128 -24.45 + 71 73.8629 1461 6 1 112.35 1.06408 -24.4552 + 71 35.1699 1473 5 1 114.95 -23.9889 -54.7491 + 71 17.6686 781 5 0 114.674 -23.6709 -55.85 + 71 109.894 782 5 0 114.656 -23.6499 -55.9197 + 71 1.48604 1449 4 1 109.953 -13.7011 -84.45 + 71 113.404 1448 4 1 109.95 -13.6993 -84.4555 + 71 32.1354 1447 4 1 109.75 -13.5909 -84.7865 + 71 89.7734 833 4 0 109.171 -13.3143 -85.85 + 71 54.1085 834 4 0 109.032 -13.25 -86.1058 + 71 125.415 1376 3 1 95.5254 -6.95142 -114.45 + 71 61.2048 860 3 0 95.1626 -7.92382 -115.85 + 71 140.29 859 3 0 95.1265 -8.05 -116.027 + 71 0.00994582 1353 2 1 90.7504 -28.378 -144.45 + 71 109.582 1352 2 1 90.7499 -28.3784 -144.45 + 71 91.1521 1351 2 1 90.5481 -28.5115 -144.579 + 71 78.2989 1350 2 1 90.3499 -28.6462 -144.696 + 71 135.798 749 2 0 88.2073 -30.0871 -145.85 + 71 145.701 748 2 0 87.8335 -30.25 -146.065 + 71 77.8485 1083 1 1 36.6949 -46.929 -174.45 + 71 114.176 1084 1 1 36.85 -46.8393 -174.64 + 71 15.5525 669 1 0 37.7412 -46.0885 -175.85 + 71 128.981 670 1 0 37.7849 -46.05 -175.91 + 71 345.758 810 1 1 -18.0037 16.0887 -174.45 + 71 192.75 1478 4 1 115.837 -24.0063 -84.45 + 71 119.648 780 4 0 116.073 -23.9673 -85.85 + 71 101.095 1513 3 1 122.758 -22.0339 -114.45 + 71 115.987 791 3 0 122.957 -21.8464 -115.85 + 71 149.443 1532 2 1 126.63 -17.9561 -144.45 + 71 140.091 811 2 0 126.909 -17.7818 -145.85 + 71 232.4 1558 1 1 131.918 -13.6335 -174.45 + 71 37.348 832 1 0 132.019 -13.4735 -175.85 + 71 68.3078 833 1 0 132.032 -13.45 -175.995 + 71 102.381 1572 0 1 134.692 -8.76346 -204.45 + 71 104.746 854 0 0 134.593 -9.15594 -205.85 + 71 1.04311 853 0 0 134.557 -9.25001 -206.243 + 71 205.156 776 5 0 58.6452 -24.7296 -56.2495 + 71 128.439 777 5 0 58.1873 -24.65 -55.9581 + 71 169.859 1193 5 1 58.7858 -24.0352 -54.8498 + 71 151.081 778 5 0 58.42 -24.2893 -55.85 +Number of digits in this event = 32 +Using G4ParticleGun ... +7.66963 LIN +e- +Event: 72 +Number of tracker hits in this event = 25 + 72 162.556 338 10 1 -112.38 26.9736 95.55 + 72 109.096 1034 10 0 -112.38 26.9747 94.15 + 72 118.898 338 9 1 -112.394 26.9963 65.55 + 72 143.902 1034 9 0 -112.394 26.9978 64.15 + 72 142.328 338 8 1 -112.404 27.0264 35.55 + 72 100.096 1034 8 0 -112.404 27.027 34.15 + 72 103.967 338 7 1 -112.391 27.0421 5.55 + 72 131.069 1034 7 0 -112.389 27.0417 4.15 + 72 115.442 338 6 1 -112.351 27.0084 -24.45 + 72 127.134 1034 6 0 -112.349 27.0069 -25.85 + 72 145.839 339 5 1 -112.308 26.9787 -54.45 + 72 116.259 1034 5 0 -112.305 26.9764 -55.85 + 72 99.8007 339 4 1 -112.242 26.927 -84.45 + 72 113.405 1034 4 0 -112.238 26.9245 -85.85 + 72 113.468 339 3 1 -112.161 26.8715 -114.45 + 72 115.55 1034 3 0 -112.156 26.8694 -115.85 + 72 107.696 340 2 1 -112.059 26.8322 -144.45 + 72 208.971 1033 2 0 -112.049 26.8299 -145.85 + 72 167.246 341 1 1 -111.856 26.7885 -174.45 + 72 144.066 1033 1 0 -111.847 26.785 -175.85 + 72 107.439 342 0 1 -111.665 26.7161 -204.45 + 72 263.443 1033 0 0 -111.656 26.715 -205.85 + 72 303.535 340 0 1 -112.027 26.7276 -204.45 + 72 138.636 1032 0 0 -112.055 26.585 -205.85 + 72 32.4368 1496 1 1 119.421 -25.5758 -174.85 +Number of digits in this event = 14 +Using G4ParticleGun ... +2.45163 LIN +e- +Event: 73 +Number of tracker hits in this event = 23 + 73 131.091 1493 9 1 118.852 40.6092 65.55 + 73 122.091 1102 9 0 118.852 40.6093 64.15 + 73 128.997 1493 8 1 118.851 40.61 35.55 + 73 106.585 1102 8 0 118.848 40.6108 34.15 + 73 129.016 1493 7 1 118.785 40.6216 5.55 + 73 144.499 1102 7 0 118.785 40.6164 4.15 + 73 160.422 1493 6 1 118.804 40.4979 -24.45 + 73 171.268 1102 6 0 118.807 40.4912 -25.85 + 73 146.267 1493 5 1 118.899 40.3402 -54.45 + 73 110.7 1101 5 0 118.907 40.3273 -55.85 + 73 133.799 1494 4 1 119.059 40.0661 -84.45 + 73 142.36 1100 4 0 119.066 40.0573 -85.85 + 73 103.874 1495 3 1 119.193 39.883 -114.45 + 73 238.622 1099 3 0 119.2 39.8748 -115.85 + 73 108.671 1495 2 1 119.327 39.7088 -144.45 + 73 121.364 1098 2 0 119.334 39.6942 -145.85 + 73 121.601 1496 1 1 119.506 39.3905 -174.45 + 73 113.902 1096 1 0 119.517 39.3702 -175.85 + 73 120.993 1497 0 1 119.745 38.9383 -204.45 + 73 133.388 1094 0 0 119.746 38.9158 -205.85 + 73 121.678 1498 0 1 119.75 38.9426 -204.763 + 73 393.556 1499 0 1 119.95 39.1352 -204.836 + 73 17.8375 1500 0 1 120.15 39.3514 -204.668 +Number of digits in this event = 19 +Using G4ParticleGun ... +5.02136 LIN +e- +Event: 74 +Number of tracker hits in this event = 81 + 74 109.767 628 10 1 -54.4307 -96.5674 95.55 + 74 159.514 417 10 0 -54.4339 -96.5679 94.15 + 74 113.487 627 9 1 -54.4988 -96.5834 65.55 + 74 165.08 417 9 0 -54.4996 -96.5824 64.15 + 74 117.614 627 8 1 -54.5174 -96.544 35.55 + 74 196.976 418 8 0 -54.5187 -96.5377 34.15 + 74 230.964 627 7 1 -54.5594 -96.4105 5.55 + 74 107.161 418 7 0 -54.5624 -96.4047 4.15 + 74 108.163 627 6 1 -54.623 -96.2883 -24.45 + 74 136.173 419 6 0 -54.628 -96.2812 -25.85 + 74 105.249 626 5 1 -54.7316 -96.1523 -54.45 + 74 215.367 420 5 0 -54.7381 -96.1444 -55.85 + 74 174.447 625 4 1 -54.8792 -95.9897 -84.45 + 74 134.127 420 4 0 -54.8824 -95.9854 -85.85 + 74 118.806 625 3 1 -54.9376 -95.8948 -114.45 + 74 99.3648 421 3 0 -54.9337 -95.8883 -115.85 + 74 737.574 625 2 1 -54.8564 -95.7681 -144.45 + 74 299.595 421 2 0 -54.848 -95.7679 -145.85 + 74 206.675 626 1 1 -54.6524 -95.7559 -174.45 + 74 140.201 421 1 0 -54.6462 -95.7546 -175.85 + 74 122.09 627 0 1 -54.5267 -95.7424 -204.45 + 74 93.2892 422 0 0 -54.5157 -95.7403 -205.85 + 74 149.848 236 3 1 -132.827 -6.27268 -114.85 + 74 177.536 420 2 0 -54.8298 -95.95 -146.099 + 74 199.706 627 1 1 -54.6253 -101.992 -174.45 + 74 157.365 389 1 0 -54.9855 -102.25 -175.85 + 74 147.01 565 0 1 -66.9705 -108.143 -204.45 + 74 42.311 566 0 1 -66.85 -108.258 -204.741 + 74 100.101 357 0 0 -66.345 -108.64 -205.85 + 74 28.8421 356 0 0 -66.2164 -108.75 -206.129 + 74 6.76588 637 1 1 -52.4518 -98.1433 -174.45 + 74 174.064 638 1 1 -52.45 -98.1445 -174.473 + 74 128.565 409 1 0 -52.3762 -98.2145 -175.85 + 74 142.437 644 0 1 -51.1404 -99.9746 -204.45 + 74 37.301 398 0 0 -51.4547 -100.507 -205.85 + 74 100.272 397 0 0 -51.4816 -100.55 -205.966 + 74 22.7651 624 4 1 -55.05 -96.1791 -84.6534 + 74 123.57 626 4 1 -54.8016 -96.029 -84.45 + 74 135.043 421 4 0 -54.8061 -95.9391 -85.85 + 74 124.091 626 3 1 -54.7131 -94.6201 -114.45 + 74 62.1208 427 3 0 -54.6301 -94.5571 -115.851 + 74 70.5909 428 3 0 -54.6209 -94.55 -116 + 74 83.0529 632 2 1 -53.4736 -93.3245 -144.45 + 74 61.7669 633 2 1 -53.45 -93.3264 -144.684 + 74 121.045 434 2 0 -53.3072 -93.3441 -145.85 + 74 12.0883 433 2 0 -53.263 -93.35 -146.21 + 74 259.976 651 1 1 -49.6584 -94.1904 -174.45 + 74 134.414 652 1 1 -49.6499 -94.1923 -174.563 + 74 107.422 429 1 0 -49.5384 -94.2053 -175.85 + 74 103.288 663 0 1 -47.2915 -94.8299 -204.45 + 74 92.1988 664 0 1 -47.25 -94.7876 -204.768 + 74 137.767 427 0 0 -47.0871 -94.6242 -205.85 + 74 15.6681 650 1 1 -49.9123 -99.7462 -174.45 + 74 193.632 653 1 1 -49.45 -99.8694 -174.715 + 74 10.2043 654 1 1 -49.25 -99.8961 -174.835 + 74 207.012 401 1 0 -47.6723 -99.9362 -175.85 + 74 42.559 930 0 1 6.14882 -105.461 -204.45 + 74 94.0345 931 0 1 6.25064 -105.494 -204.55 + 74 16.4339 932 0 1 6.45 -105.592 -204.8 + 74 154.93 370 0 0 7.34736 -106.028 -205.85 + 74 73.1952 369 0 0 7.61718 -106.15 -206.152 + 74 383.314 396 1 0 -49.6091 -100.814 -175.85 + 74 26.8813 395 1 0 -49.638 -100.95 -175.901 + 74 225.125 624 2 1 -55.05 -95.7257 -144.453 + 74 123.701 422 2 0 -55.4584 -95.7115 -145.85 + 74 23.2596 594 1 1 -61.0784 -93.363 -174.45 + 74 99.5147 595 1 1 -61.05 -93.3659 -174.548 + 74 201.232 434 1 0 -60.4906 -93.1945 -175.85 + 74 33.8894 435 1 0 -60.3538 -93.15 -176.161 + 74 85.7425 670 0 1 -46.045 -90.6793 -204.45 + 74 72.3444 671 0 1 -45.85 -90.6029 -204.684 + 74 134.349 450 0 0 -44.9282 -90.0262 -205.851 + 74 31.437 451 0 0 -44.6934 -89.8494 -206.153 + 74 48.3056 543 0 0 -43.723 -71.2767 -206.25 + 74 76.0523 544 0 0 -43.8555 -71.25 -206.089 + 74 164.291 678 0 1 -44.3836 -71.7616 -204.85 + 74 170.768 677 0 1 -44.45 -71.8041 -204.732 + 74 147.151 679 0 1 -44.25 -72.6597 -204.479 + 74 241.714 424 2 0 -55.4033 -95.3066 -145.85 + 74 117.484 502 0 1 -79.45 -125.909 -204.514 + 74 160.009 503 0 1 -79.4499 -125.965 -204.524 +Number of digits in this event = 43 +Using G4ParticleGun ... +2.88145 LIN +e- +Event: 75 +Number of tracker hits in this event = 38 + 75 110.091 979 10 1 15.8855 -107.673 95.55 + 75 292.628 362 10 0 15.8847 -107.673 94.15 + 75 121.393 979 9 1 15.8768 -107.682 65.55 + 75 153.153 362 9 0 15.879 -107.684 64.15 + 75 116.618 979 8 1 15.9262 -107.711 35.55 + 75 143.273 362 8 0 15.9301 -107.711 34.15 + 75 136.672 979 7 1 16.0248 -107.727 5.55 + 75 110.438 362 7 0 16.0283 -107.734 4.15 + 75 139.21 980 6 1 16.0962 -107.898 -24.45 + 75 123.001 361 6 0 16.0985 -107.905 -25.85 + 75 97.358 980 5 1 16.1598 -108.106 -54.45 + 75 109.268 360 5 0 16.165 -108.11 -55.85 + 75 131.104 981 4 1 16.2794 -108.178 -84.45 + 75 144.908 359 4 0 16.2866 -108.182 -85.85 + 75 140.292 981 3 1 16.4399 -108.277 -114.45 + 75 116.094 359 3 0 16.445 -108.286 -115.85 + 75 115.595 982 2 1 16.5738 -108.485 -144.45 + 75 133.199 358 2 0 16.5771 -108.503 -145.85 + 75 142.688 983 1 1 16.6523 -108.875 -174.45 + 75 103.289 356 1 0 16.6574 -108.885 -175.85 + 75 423.441 983 0 1 16.7543 -109.102 -204.45 + 75 148.612 355 0 0 16.7408 -109.117 -205.85 + 75 299.103 982 0 1 16.65 -108.809 -204.781 + 75 530.171 360 0 0 16.663 -107.953 -205.85 + 75 111.954 776 4 0 -169.574 -24.7955 -86.25 + 75 72.6735 981 1 1 16.4466 -108.05 -174.45 + 75 166.617 982 1 1 16.45 -108.051 -174.65 + 75 355.958 360 1 0 16.4716 -108.052 -175.85 + 75 128.251 985 0 1 17.0657 -108.085 -204.45 + 75 154.358 347 4 0 -170.345 -110.641 -86.25 + 75 43.0167 46 4 1 -170.916 -110.902 -84.85 + 75 107.294 45 4 1 -170.95 -110.917 -84.7728 + 75 315.124 127 7 0 -127.674 -154.55 3.87008 + 75 154.996 514 0 1 -77.05 -54.531 -204.824 + 75 175.898 997 0 1 19.4502 -107.484 -204.451 + 75 131.346 362 0 0 19.5766 -107.578 -205.85 + 75 115.183 368 0 0 19.7338 -106.458 -205.85 + 75 129.758 369 0 0 19.8066 -106.35 -206.005 +Number of digits in this event = 27 +Using G4ParticleGun ... +4.91469 LIN +e- +Event: 76 +Number of tracker hits in this event = 94 + 76 118.577 978 10 1 15.8428 -86.6978 95.55 + 76 124.496 466 10 0 15.8426 -86.6971 94.15 + 76 106.737 978 9 1 15.8393 -86.6811 65.55 + 76 362.729 466 9 0 15.8386 -86.6842 64.15 + 76 128.112 978 8 1 15.8016 -86.7564 35.55 + 76 129.509 466 8 0 15.8052 -86.7501 34.15 + 76 144.512 979 7 1 15.8951 -86.6491 5.55 + 76 103.051 466 7 0 15.8826 -86.6627 4.15 + 76 123.336 977 6 1 15.5894 -86.9181 -24.45 + 76 156.596 465 6 0 15.5697 -86.92 -25.85 + 76 110.365 975 5 1 15.1626 -86.9095 -54.45 + 76 122.776 465 5 0 15.1106 -86.9016 -55.85 + 76 258.748 969 4 1 13.9253 -86.576 -84.45 + 76 391.781 467 4 0 13.8471 -86.5474 -85.85 + 76 118.679 960 3 1 12.2134 -85.8851 -114.45 + 76 107.364 471 3 0 12.1032 -85.8496 -115.85 + 76 381.854 948 2 1 9.80196 -85.1185 -144.45 + 76 116.024 474 2 0 9.69467 -85.0735 -145.85 + 76 132.215 937 1 1 7.4794 -84.2908 -174.45 + 76 147.803 478 1 0 7.42765 -84.2895 -175.85 + 76 145.376 933 0 1 6.65295 -84.6187 -204.45 + 76 95.0314 477 0 0 6.71024 -84.6251 -205.85 + 76 77.3866 635 10 0 -47.2876 -52.9538 93.75 + 76 239.134 978 5 1 15.8494 -86.6201 -54.45 + 76 288.577 467 5 0 15.8399 -86.6289 -55.85 + 76 181.534 977 4 1 15.6312 -86.7885 -84.45 + 76 156.491 978 4 1 15.65 -86.8079 -84.8074 + 76 129.238 465 4 0 15.705 -86.8567 -85.85 + 76 89.3832 983 3 1 16.7449 -88.1161 -114.45 + 76 238.697 459 3 0 16.8415 -88.1428 -115.85 + 76 115.783 993 2 1 18.7795 -88.4541 -144.45 + 76 207.492 458 2 0 18.8632 -88.4209 -145.85 + 76 123.082 1001 1 1 20.3677 -87.7795 -174.45 + 76 262.259 461 1 0 20.4384 -87.693 -175.85 + 76 103.513 1007 0 1 21.6086 -86.0679 -204.45 + 76 1.3907 470 0 0 21.7166 -85.8516 -205.851 + 76 138.695 471 0 0 21.7174 -85.85 -205.861 + 76 133.593 466 4 0 15.7697 -86.7315 -85.85 + 76 92.6301 980 3 1 16.2379 -87.389 -114.45 + 76 36.9918 981 3 1 16.25 -87.3876 -114.748 + 76 241.04 463 3 0 16.2894 -87.3873 -115.85 + 76 110.536 986 2 1 17.2858 -87.236 -144.45 + 76 210.006 463 2 0 17.3378 -87.2558 -145.85 + 76 61.1058 990 1 1 18.2389 -87.6298 -174.45 + 76 49.4494 991 1 1 18.25 -87.6346 -174.719 + 76 290.388 996 0 1 19.2753 -88.1361 -204.45 + 76 143.29 459 0 0 19.2476 -88.1575 -205.85 + 76 215.198 979 4 1 15.9249 -86.5273 -84.49 + 76 135.905 979 3 1 15.9432 -86.5783 -114.45 + 76 129.371 467 3 0 15.9294 -86.5723 -115.85 + 76 117.8 976 2 1 15.3732 -86.3818 -144.45 + 76 106.884 467 2 0 15.3014 -86.465 -145.85 + 76 122.595 966 1 1 13.3143 -88.4736 -174.45 + 76 112.909 456 1 0 13.2577 -88.6994 -175.85 + 76 115.324 960 0 1 12.0673 -93.4945 -204.45 + 76 112.535 432 0 0 12.0331 -93.6455 -205.85 + 76 117.361 983 0 1 16.8049 -85.7665 -204.45 + 76 239.611 984 0 1 16.8501 -85.7077 -204.711 + 76 114.374 473 0 0 17.0586 -85.3976 -205.85 + 76 254.856 985 0 1 17.05 -85.6544 -204.763 + 76 106.21 474 0 0 17.598 -85.1433 -205.85 + 76 51.4705 475 0 0 17.7605 -85.05 -206.123 + 76 21.1742 668 0 0 54.9173 -46.2921 -206.25 + 76 115.696 669 0 0 54.963 -46.25 -206.227 + 76 113.475 670 0 0 55.2705 -46.05 -206.045 + 76 15.7734 671 0 0 55.588 -45.8495 -205.861 + 76 62.3011 1201 0 1 60.3471 -42.7 -204.85 + 76 54.8547 1202 0 1 60.45 -42.6394 -204.835 + 76 231.734 1203 0 1 60.65 -42.5121 -204.765 + 76 157.197 1204 0 1 60.85 -41.771 -204.549 + 76 217.289 1205 0 1 61.05 -41.2741 -204.48 + 76 208.145 1206 0 1 61.25 -40.8467 -204.509 + 76 60.1539 1207 0 1 61.45 -40.0194 -204.746 + 76 40.4529 721 0 0 63.402 -35.7594 -205.85 + 76 61.4569 722 0 0 63.4487 -35.65 -205.881 + 76 98.9905 723 0 0 63.558 -35.4498 -205.949 + 76 173.823 724 0 0 63.8753 -35.25 -206.1 + 76 58.2536 1224 0 1 64.9718 -34.807 -204.85 + 76 79.9645 1225 0 1 65.0502 -34.722 -204.708 + 76 73.3564 977 0 1 15.4878 -87.072 -204.702 + 76 262.711 464 0 0 15.4892 -87.0711 -205.85 + 76 153.275 978 3 1 15.7909 -86.4386 -114.45 + 76 143.605 468 3 0 15.7834 -86.4347 -115.85 + 76 117.509 977 2 1 15.6358 -86.3765 -144.45 + 76 153.346 468 2 0 15.6279 -86.3745 -145.85 + 76 119.909 977 1 1 15.4716 -86.3228 -174.45 + 76 120.777 468 1 0 15.4651 -86.3187 -175.85 + 76 263.297 976 0 1 15.3316 -86.2355 -204.45 + 76 96.5958 469 0 0 15.3255 -86.2315 -205.85 + 76 249.301 548 4 0 -137.995 -70.4178 -86.25 + 76 27.0976 104 0 0 10.8349 -159.15 -206.122 + 76 2.97632 1302 4 1 80.6086 8.57183 -84.85 + 76 16.7898 1273 7 0 111.376 74.7738 3.75 + 76 138.046 1274 7 0 111.41 74.8501 3.82629 +Number of digits in this event = 51 +Using G4ParticleGun ... +8.97489 LIN +e- +Event: 77 +Number of tracker hits in this event = 93 + 77 143.348 554 8 1 -69.1869 -120.771 35.55 + 77 157.641 296 8 0 -69.1871 -120.771 34.15 + 77 111.28 543 7 1 -71.3263 -121.685 5.54979 + 77 67.4345 292 7 0 -71.3953 -121.748 4.15 + 77 44.4733 291 7 0 -71.3987 -121.75 4.07263 + 77 122.536 540 6 1 -71.8639 -120.973 -24.45 + 77 61.0643 293 6 0 -71.8293 -121.481 -25.85 + 77 42.4227 292 6 0 -71.8208 -121.55 -26.0558 + 77 117.753 542 5 1 -71.5145 -131.656 -54.45 + 77 16.7534 241 5 0 -71.4186 -131.939 -55.85 + 77 122.852 240 5 0 -71.4154 -131.95 -55.9039 + 77 10.7307 549 4 1 -70.2228 -136.745 -84.45 + 77 118.133 548 4 1 -70.25 -136.743 -84.4849 + 77 40.0542 547 4 1 -70.45 -136.736 -84.7421 + 77 277.216 217 4 0 -71.2687 -136.685 -85.85 + 77 70.8891 443 3 1 -91.3627 -134.17 -114.45 + 77 83.339 442 3 1 -91.55 -134.151 -114.636 + 77 6.38029 441 3 1 -91.7505 -134.13 -114.829 + 77 181.634 231 3 0 -92.9003 -133.945 -115.85 + 77 7.89609 272 2 1 -125.737 -124.34 -144.45 + 77 147.119 271 2 1 -125.75 -124.315 -144.478 + 77 18.3935 285 2 0 -126.17 -123.007 -145.85 + 77 66.5849 286 2 0 -126.186 -122.95 -145.909 + 77 57.6877 287 2 0 -126.235 -122.75 -146.122 + 77 29.6648 236 2 0 -165.319 -132.891 -146.25 + 77 89.6 235 2 0 -165.369 -132.95 -146.208 + 77 94.5679 234 2 0 -165.543 -133.15 -146.065 + 77 33.2517 233 2 0 -165.707 -133.35 -145.919 + 77 137.758 68 2 1 -166.419 -134.578 -144.85 + 77 99.8901 67 2 1 -166.55 -134.811 -144.656 + 77 20.4366 82 3 0 -158.138 -163.697 -116.25 + 77 128.105 81 3 0 -158.123 -163.75 -116.195 + 77 66.2521 80 3 0 -158.07 -163.95 -115.991 + 77 222.146 112 3 1 -157.675 -165.13 -114.85 + 77 239.417 115 3 1 -157.139 -166.124 -114.45 + 77 153.289 116 3 1 -156.95 -166.57 -114.677 + 77 12.3889 58 3 0 -155.94 -168.515 -115.85 + 77 66.7693 57 3 0 -155.922 -168.55 -115.872 + 77 89.9191 56 3 0 -155.843 -168.75 -115.967 + 77 56.5972 55 3 0 -155.778 -168.95 -116.049 + 77 53.0204 54 3 0 -155.719 -169.15 -116.118 + 77 107.941 53 3 0 -155.66 -169.35 -116.19 + 77 223.426 554 5 1 -69.1818 -120.75 -54.45 + 77 252.521 296 5 0 -69.1822 -120.751 -55.85 + 77 532.224 554 4 1 -69.1869 -120.766 -84.45 + 77 117.703 296 4 0 -69.1872 -120.766 -85.85 + 77 125.488 554 3 1 -69.1937 -120.783 -114.45 + 77 130.579 296 3 0 -69.1941 -120.784 -115.85 + 77 153.409 554 2 1 -69.2067 -120.795 -144.45 + 77 346.737 296 2 0 -69.2075 -120.796 -145.85 + 77 275.071 554 1 1 -69.2278 -120.809 -174.45 + 77 95.9104 296 1 0 -69.2296 -120.811 -175.85 + 77 761.946 553 0 1 -69.2671 -120.857 -204.45 + 77 341.322 296 0 0 -69.2686 -120.861 -205.85 + 77 171.273 553 1 1 -69.2981 -120.422 -174.45 + 77 123.731 298 1 0 -69.2955 -120.403 -175.85 + 77 157.927 554 0 1 -69.2384 -119.896 -204.45 + 77 100.995 301 0 0 -69.232 -119.845 -205.85 + 77 59.483 437 2 0 -76.4588 -92.7274 -146.25 + 77 218.065 700 1 0 -11.4332 -39.9028 -176.25 + 77 103.607 701 1 0 -11.3831 -39.85 -176.217 + 77 133.718 293 1 0 -69.1714 -121.504 -175.85 + 77 150.961 293 0 0 -69.3106 -121.547 -205.85 + 77 206.149 297 4 0 -69.2997 -120.737 -85.85 + 77 114.867 540 3 1 -71.9631 -120.628 -114.45 + 77 136.778 297 3 0 -72.06 -120.65 -115.85 + 77 96.2846 531 2 1 -73.7153 -120.316 -144.45 + 77 102.789 299 2 0 -73.7524 -120.239 -145.85 + 77 32.3215 529 1 1 -74.0713 -118.493 -174.45 + 77 76.83 530 1 1 -74.05 -118.464 -174.554 + 77 101.187 310 1 0 -73.8061 -118.113 -175.85 + 77 152.496 349 0 0 -69.0865 -110.281 -205.85 + 77 43.0517 456 0 1 -88.7437 -44.5832 -204.45 + 77 0.0344516 457 0 1 -88.6499 -44.5151 -204.45 + 77 112.292 557 3 1 -68.5782 -120.156 -114.45 + 77 341.206 300 3 0 -68.5992 -120.098 -115.85 + 77 148.031 555 2 1 -68.9487 -118.654 -144.45 + 77 126.361 308 2 0 -68.9713 -118.532 -145.85 + 77 93.5377 552 1 1 -69.45 -115.977 -174.545 + 77 120.617 321 1 0 -69.5936 -115.895 -175.85 + 77 311.974 543 0 1 -71.4292 -113.77 -204.45 + 77 109.225 542 0 1 -71.45 -113.748 -204.674 + 77 110.778 332 0 0 -71.5519 -113.648 -205.85 + 77 25.0444 333 0 0 -70.5498 -113.54 -205.85 + 77 161.671 557 4 1 -68.5958 -120.955 -84.45 + 77 118.065 295 4 0 -68.5619 -120.963 -85.85 + 77 114.098 560 3 1 -67.8562 -121.091 -114.45 + 77 239.665 295 3 0 -67.8509 -121.097 -115.85 + 77 122.254 561 2 1 -67.8367 -121.201 -144.45 + 77 230.089 294 2 0 -67.8524 -121.173 -145.85 + 77 168.243 559 1 1 -68.1693 -120.659 -174.45 + 77 160.9 297 1 0 -68.3222 -120.585 -175.85 + 77 125.895 306 0 0 -71.4958 -118.817 -205.85 +Number of digits in this event = 45 +Using G4ParticleGun ... +9.90404 LIN +e- +Event: 78 +Number of tracker hits in this event = 72 + 78 139.045 1104 11 1 40.9421 38.9058 125.55 + 78 109.89 1094 11 0 40.9432 38.9053 124.15 + 78 114.956 1104 10 1 40.9644 38.8937 95.55 + 78 126.413 1094 10 0 40.9655 38.8932 94.15 + 78 130.274 1104 9 1 40.9683 38.8857 65.55 + 78 109.297 1094 9 0 40.9682 38.887 64.15 + 78 126.603 1104 8 1 40.9706 38.9085 35.55 + 78 110.498 1094 8 0 40.9719 38.9104 34.15 + 78 131.764 1104 7 1 40.9877 38.9462 5.55 + 78 105.49 1094 7 0 40.9868 38.9484 4.15 + 78 150.046 1104 6 1 40.9618 39.0014 -24.45 + 78 132.631 1094 6 0 40.9551 39.0011 -25.85 + 78 129.414 1103 5 1 40.8258 38.9255 -54.45 + 78 143.231 1094 5 0 40.821 38.9235 -55.85 + 78 160.523 1103 4 1 40.7324 38.8827 -84.45 + 78 118.323 1094 4 0 40.725 38.8753 -85.85 + 78 121.671 1102 3 1 40.5787 38.7334 -114.45 + 78 99.6004 1093 3 0 40.5699 38.7285 -115.85 + 78 112.419 1101 2 1 40.398 38.6383 -144.45 + 78 126.905 1092 2 0 40.3902 38.6322 -145.85 + 78 107.951 1100 1 1 40.2018 38.5326 -174.45 + 78 148.041 1092 1 0 40.1892 38.5282 -175.85 + 78 162.812 1099 0 1 39.9354 38.4385 -204.45 + 78 127.031 1091 0 0 39.9204 38.4314 -205.85 + 78 91.5314 788 8 1 -22.3308 -71.7607 35.15 + 78 19.4744 1300 5 1 80.05 -114.359 -54.7136 + 78 323.943 1104 4 1 41.0097 39.0572 -84.45 + 78 213.476 1095 4 0 40.9968 39.0961 -85.8501 + 78 64.9565 1105 3 1 41.2463 39.9839 -114.45 + 78 56.2285 1106 3 1 41.25 39.9995 -114.671 + 78 117.467 1100 3 0 41.2763 40.0903 -115.85 + 78 108.318 1111 2 1 42.2899 42.3605 -144.45 + 78 24.1905 1111 2 0 42.2902 42.2581 -145.85 + 78 104.85 1110 2 0 42.2903 42.25 -145.953 + 78 108.604 1110 1 1 42.0889 40.2177 -174.45 + 78 5.4388 1100 1 0 42.1113 40.0532 -175.85 + 78 107.974 1099 1 0 42.1118 40.05 -175.876 + 78 25.2906 1113 0 1 42.8471 35.4421 -204.45 + 78 104.729 1114 0 1 42.85 35.4325 -204.519 + 78 121.202 1075 0 0 42.8728 35.2301 -205.85 + 78 246.376 1104 3 1 41.0138 39.1031 -114.45 + 78 119.816 1095 3 0 41.0137 39.1066 -115.85 + 78 131.708 1104 2 1 41.0374 39.1686 -144.45 + 78 110.716 1095 2 0 41.0376 39.1733 -145.85 + 78 103.376 1104 1 1 41.0489 39.2703 -174.45 + 78 117.648 1096 1 0 41.0527 39.2762 -175.85 + 78 99.5373 1105 0 1 41.1079 39.4002 -204.45 + 78 221.53 1096 0 0 41.1099 39.4148 -205.85 + 78 59.9475 1167 9 1 53.4519 40.1432 65.5499 + 78 263.231 1166 9 1 53.45 40.1418 65.5484 + 78 182.909 1165 9 1 53.2498 40 65.4686 + 78 352.027 1164 9 1 53.0499 39.8165 65.3993 + 78 194.253 1163 9 1 52.85 39.0218 65.249 + 78 30.6505 1089 9 0 52.2373 37.9194 64.1499 + 78 91.6157 1088 9 0 52.1873 37.85 64.0938 + 78 97.8642 1087 9 0 51.9841 37.65 63.9685 + 78 83.337 1086 9 0 51.6485 37.45 64.0107 + 78 33.0694 1152 9 1 50.493 36.183 65.15 + 78 239.773 1151 9 1 50.45 36.0816 65.204 + 78 128.549 1150 9 1 50.2499 35.5009 65.348 + 78 143.498 1149 9 1 50.05 35.4232 65.2987 + 78 251.491 1063 9 0 47.9764 32.8174 64.1499 + 78 113.882 1062 9 0 47.9431 32.65 64.0014 + 78 208.115 1064 9 0 48.6365 32.85 63.8244 + 78 110.649 1065 9 0 48.4368 33.05 63.8684 + 78 67.8498 1162 9 1 52.6495 39.7385 65.2343 + 78 27.433 1104 9 0 51.9615 40.9587 64.15 + 78 111.449 1105 9 0 51.9138 41.05 64.085 + 78 82.523 1106 9 0 51.7648 41.2502 64.1403 + 78 63.6415 1119 9 0 48.6535 43.9637 64.15 + 78 210.677 1120 9 0 48.5889 44.05 64.0459 + 78 330.883 1165 7 1 53.0637 -144.071 5.15 +Number of digits in this event = 34 +Using G4ParticleGun ... +8.92053 LIN +e- +Event: 79 +Number of tracker hits in this event = 154 + 79 138.474 1168 11 1 53.6559 -58.234 125.55 + 79 128.213 609 11 0 53.6565 -58.2345 124.15 + 79 140.038 1168 10 1 53.6696 -58.244 95.55 + 79 102.76 609 10 0 53.6716 -58.2447 94.15 + 79 133.216 1168 9 1 53.7137 -58.2525 65.55 + 79 152.747 608 9 0 53.7153 -58.2532 64.15 + 79 495.077 1168 8 1 53.7493 -58.2685 35.55 + 79 251.967 608 8 0 53.7504 -58.2701 34.15 + 79 202.158 1168 7 1 53.7773 -58.3044 5.55 + 79 123.838 608 7 0 53.779 -58.3066 4.15 + 79 391.358 1168 6 1 53.8119 -58.351 -24.45 + 79 532.968 608 6 0 53.8137 -58.353 -25.85 + 79 342.363 1168 5 1 53.8492 -58.3956 -54.45 + 79 209.65 608 5 0 53.8505 -58.397 -55.85 + 79 106.829 1169 4 1 53.8746 -58.4259 -84.45 + 79 213.227 608 4 0 53.8754 -58.4272 -85.85 + 79 456.815 1169 3 1 53.8914 -58.4517 -114.45 + 79 730.546 607 3 0 53.8926 -58.4529 -115.85 + 79 108.389 1169 2 1 53.9178 -58.478 -144.45 + 79 328.519 607 2 0 53.9198 -58.4783 -145.85 + 79 339.674 1169 1 1 53.959 -58.4803 -174.45 + 79 330.257 607 1 0 53.959 -58.4776 -175.85 + 79 428.388 1169 0 1 53.9561 -58.4247 -204.45 + 79 154.03 608 0 0 53.9488 -58.4184 -205.85 + 79 130.666 1185 2 1 57.1203 -58.1942 -144.45 + 79 122.613 609 2 0 57.2921 -58.1929 -145.851 + 79 68.3516 1202 1 1 60.6254 -57.5753 -174.45 + 79 56.5782 1203 1 1 60.65 -57.5735 -174.636 + 79 104.712 612 1 0 60.8113 -57.5536 -175.851 + 79 134.943 1226 0 1 65.3033 -56.8497 -204.45 + 79 201.119 615 0 0 65.6814 -56.862 -205.85 + 79 10.2721 614 0 0 65.6078 -57.0503 -206.217 + 79 222.883 636 0 0 50.7211 -52.8258 -206.25 + 79 83.7844 637 0 0 50.6043 -52.65 -206.239 + 79 112.394 1177 2 1 55.4722 -60.4268 -144.45 + 79 121.48 596 2 0 55.5436 -60.7287 -145.85 + 79 174.591 1184 1 1 57.0033 -66.385 -174.45 + 79 126.964 567 1 0 57.0518 -66.5806 -175.85 + 79 39.2161 1188 0 1 57.8185 -70.9844 -204.45 + 79 115.193 1189 0 1 57.85 -71.0467 -204.587 + 79 73.7181 542 0 0 58.1242 -71.5584 -205.85 + 79 87.2196 541 0 0 58.174 -71.65 -206.057 + 79 87.4081 449 0 0 66.2844 -90.2477 -206.25 + 79 117.303 448 0 0 66.2809 -90.35 -206.06 + 79 134.75 1231 0 1 66.4039 -90.9269 -204.85 + 79 11.9906 1232 0 1 66.45 -91.0918 -204.498 + 79 131.206 434 1 0 75.5172 -93.2265 -176.25 + 79 161.822 1280 1 1 76.1592 -93.0554 -174.85 + 79 89.381 1281 1 1 76.25 -93.0169 -174.615 + 79 317.999 470 2 0 79.4676 -85.9645 -146.25 + 79 29.3747 1297 2 1 79.4568 -85.99 -144.85 + 79 78.0663 1296 2 1 79.45 -85.9942 -144.781 + 79 111.298 423 3 0 68.8416 -95.4722 -116.25 + 79 37.3621 422 3 0 68.7478 -95.55 -115.975 + 79 8.12141 1242 3 1 68.4581 -95.9578 -114.85 + 79 149.165 1241 3 1 68.45 -95.9682 -114.818 + 79 233.72 1240 3 1 68.25 -96.0248 -114.488 + 79 41.2041 419 3 0 68.933 -96.3099 -115.85 + 79 424.508 418 3 0 68.981 -96.3501 -115.923 + 79 59.9748 469 2 0 79.6318 -86.05 -145.971 + 79 109.507 606 0 0 53.8826 -58.7113 -205.85 + 79 43.2135 806 1 1 -18.8109 -174.69 -174.45 + 79 3.39773 805 1 1 -18.85 -174.841 -174.645 + 79 126.421 606 1 0 53.8372 -58.7677 -175.85 + 79 134.916 1165 0 1 53.0758 -59.7347 -204.45 + 79 153.106 601 0 0 53.0704 -59.8063 -205.85 + 79 198.947 608 2 0 53.931 -58.45 -146.148 + 79 133.002 1166 5 1 53.3654 -58.3045 -54.45 + 79 313.76 1162 4 1 52.4566 -58.37 -84.45 + 79 11.2966 1161 4 1 52.45 -58.3907 -84.8094 + 79 254.92 607 4 0 52.4358 -58.4528 -85.85 + 79 144.727 1160 3 1 52.1048 -60.3158 -114.45 + 79 137.051 598 3 0 52.0954 -60.4092 -115.85 + 79 119.519 1158 2 1 51.7549 -62.3365 -144.45 + 79 15.7792 588 2 0 51.7502 -62.4445 -145.85 + 79 116.427 587 2 0 51.7501 -62.45 -145.921 + 79 252.333 1155 1 1 51.2004 -65.0306 -174.45 + 79 144.058 574 1 0 51.0287 -65.1123 -175.85 + 79 111.074 1138 0 1 47.7481 -66.7159 -204.45 + 79 126.676 566 0 0 47.6119 -66.763 -205.85 + 79 9.05111 863 0 1 -7.25 -63.494 -204.716 + 79 91.8956 1156 1 1 51.25 -65.1141 -174.641 + 79 147.642 1152 0 1 50.5317 -64.1621 -204.45 + 79 132.135 579 0 0 50.5099 -64.1852 -205.85 + 79 135.214 1153 0 1 50.6501 -64.2133 -204.527 + 79 237.256 571 0 0 50.8488 -65.7069 -205.85 + 79 130.659 570 0 0 50.937 -65.85 -206 + 79 290.345 1163 4 1 52.6837 -58.4465 -84.4502 + 79 113.406 1142 3 1 48.6367 -56.726 -114.45 + 79 103.146 616 3 0 48.3934 -56.6578 -115.85 + 79 113.259 617 3 0 48.3766 -56.65 -115.979 + 79 129.023 1137 2 1 47.4517 -55.923 -144.45 + 79 58.025 621 2 0 47.4916 -55.6897 -145.85 + 79 58.6756 622 2 0 47.492 -55.65 -146.065 + 79 112.06 1138 1 1 47.7692 -50.1612 -174.45 + 79 148.118 650 1 0 47.6725 -50.0451 -175.85 + 79 338.99 1125 0 1 45.1957 -48.5926 -204.45 + 79 116.619 654 0 0 44.9805 -49.0779 -205.85 + 79 16.5458 1144 3 1 48.856 -58.5152 -114.45 + 79 99.7956 1143 3 1 48.85 -58.5154 -114.496 + 79 126.176 1177 5 1 55.4781 -58.4371 -54.45 + 79 122.595 607 5 0 55.6949 -58.5092 -55.85 + 79 64.1487 1203 4 1 60.7915 -59.7733 -84.45 + 79 57.3922 1204 4 1 60.85 -59.7937 -84.6947 + 79 110.453 600 4 0 61.1499 -59.876 -85.8503 + 79 39.092 1244 3 1 68.9979 -61.5946 -114.45 + 79 68.5363 1245 3 1 69.05 -61.5996 -114.613 + 79 38.1542 592 3 0 69.4487 -61.6482 -115.85 + 79 112.42 591 3 0 69.4625 -61.65 -115.893 + 79 57.7693 1293 2 1 78.7704 -63.3801 -144.45 + 79 53.5563 1294 2 1 78.8501 -63.3835 -144.68 + 79 170.684 583 2 0 79.2542 -63.3892 -145.85 + 79 151.566 1350 1 1 90.15 -63.9061 -174.476 + 79 31.092 1351 1 1 90.35 -63.9547 -174.786 + 79 180.503 579 1 0 91.0321 -64.1013 -175.85 + 79 95.3383 1446 0 1 109.382 -68.1576 -204.45 + 79 31.4424 1447 0 1 109.55 -68.2252 -204.713 + 79 116.023 557 0 0 110.292 -68.5172 -205.85 + 79 17.2021 582 2 0 79.3949 -63.45 -146.207 + 79 71.4605 491 2 0 118.528 -81.7078 -146.25 + 79 98.1392 641 2 0 156.922 -51.8051 -146.25 + 79 20.3187 1238 1 1 67.7991 -61.9901 -174.45 + 79 90.1581 1239 1 1 67.85 -61.9736 -174.52 + 79 70.9474 1240 1 1 68.05 -61.9675 -174.609 + 79 147.193 1241 1 1 68.25 -61.957 -174.708 + 79 99.8674 590 1 0 68.7159 -62.0112 -175.85 + 79 35.4712 589 1 0 68.9034 -62.0501 -176.184 + 79 32.338 1167 8 1 53.65 -58.2268 35.2609 + 79 96.9952 609 8 0 53.5383 -58.1541 34.1499 + 79 128.607 1151 7 1 50.3808 -56.1356 5.55 + 79 123.172 619 7 0 50.24 -56.0937 4.14968 + 79 119.287 1147 6 1 49.6464 -54.6267 -24.45 + 79 110.779 626 6 0 49.5452 -54.7224 -25.85 + 79 133.915 1136 5 1 47.2946 -56.3413 -54.45 + 79 24.4921 1135 5 1 47.25 -56.3728 -54.798 + 79 139.943 617 5 0 47.1236 -56.4691 -55.85 + 79 145.993 1128 4 1 45.7767 -59.0823 -84.4504 + 79 123.07 603 4 0 45.7648 -59.2707 -85.8502 + 79 137.149 1128 3 1 45.8358 -63.5169 -114.45 + 79 34.5934 582 3 0 45.6771 -63.6368 -115.85 + 79 82.7725 581 3 0 45.6613 -63.65 -115.988 + 79 110.945 1110 2 1 42.1683 -65.8658 -144.45 + 79 117.909 571 2 0 42.1378 -65.817 -145.85 + 79 6.09798 1109 1 1 42.047 -64.7565 -174.45 + 79 107.277 1110 1 1 42.05 -64.7565 -174.473 + 79 105.235 576 1 0 42.2071 -64.7838 -175.85 + 79 2.8343 1126 0 1 45.2502 -65.3707 -204.834 + 79 104.052 573 0 0 45.5515 -65.3252 -205.85 + 79 120.717 237 13 0 1.43663 -132.55 183.801 + 79 49.1284 1167 10 1 53.65 -58.2223 95.548 + 79 61.7961 1166 10 1 53.45 -58.2144 95.5007 + 79 39.2488 1165 10 1 53.25 -58.227 95.5255 + 79 94.4059 1163 10 1 52.7485 -58.2884 95.55 + 79 139.766 608 10 0 52.9388 -58.3752 94.1499 +Number of digits in this event = 75 +Using G4ParticleGun ... +3.01167 LIN +e- +Event: 80 +Number of tracker hits in this event = 96 + 80 101.925 1149 10 1 49.8552 -99.8814 95.55 + 80 161.056 401 10 0 49.8553 -99.8831 94.15 + 80 103.168 1149 9 1 49.8634 -99.9154 65.55 + 80 184.336 401 9 0 49.8598 -99.9183 64.15 + 80 114.537 1148 8 1 49.7907 -99.9791 35.55 + 80 342.675 400 8 0 49.7885 -99.9799 34.15 + 80 112.81 1148 7 1 49.7496 -99.9943 5.55 + 80 151.504 400 7 0 49.7473 -99.9941 4.15 + 80 233.794 1148 6 1 49.6893 -99.9869 -24.45 + 80 250.691 400 6 0 49.6789 -99.9902 -25.85 + 80 118.187 1147 5 1 49.4833 -100.055 -54.45 + 80 140.786 400 5 0 49.473 -100.062 -55.85 + 80 224.844 1146 4 1 49.3152 -100.191 -84.45 + 80 139.776 399 4 0 49.3055 -100.202 -85.85 + 80 111.922 1145 3 1 49.1746 -100.416 -114.45 + 80 139.694 398 3 0 49.1487 -100.447 -115.85 + 80 117.556 1142 2 1 48.53 -101.057 -144.45 + 80 136.268 395 2 0 48.4878 -101.089 -145.85 + 80 130.689 1137 1 1 47.5848 -101.57 -174.45 + 80 114.226 392 1 0 47.5201 -101.565 -175.85 + 80 151.579 1130 0 1 46.1112 -101.374 -204.45 + 80 111.878 394 0 0 46.0676 -101.292 -205.85 + 80 372.718 1134 0 1 46.9986 -101.886 -204.45 + 80 313.753 391 0 0 46.9635 -101.931 -205.85 + 80 40.0923 1453 8 0 130.619 110.75 33.9907 + 80 23.8303 394 2 0 48.4606 -101.15 -146.194 + 80 61.7295 232 2 0 35.5438 -133.706 -146.25 + 80 281.487 231 2 0 35.3838 -133.75 -146.128 + 80 120.909 1080 2 1 36.0568 -134.308 -144.85 + 80 37.0794 220 2 0 36.2701 -136.105 -145.85 + 80 142.146 219 2 0 36.2912 -136.15 -145.907 + 80 114.388 1171 5 1 54.303 -99.2973 -54.45 + 80 137.647 403 5 0 54.2875 -99.3723 -55.85 + 80 322.329 1161 4 1 52.4436 -99.5807 -84.45 + 80 32.0162 405 4 0 51.9465 -98.9908 -85.85 + 80 106.317 406 4 0 51.9149 -98.95 -85.9428 + 80 143.223 1111 3 1 42.4007 -84.753 -114.45 + 80 127.994 480 3 0 42.2995 -84.042 -115.85 + 80 10.2433 481 3 0 42.2768 -83.8499 -116.202 + 80 242.906 1101 2 1 40.364 -67.2645 -144.45 + 80 20.8922 1100 2 1 40.2499 -66.651 -144.817 + 80 71.1472 575 2 0 39.9474 -65.0442 -145.85 + 80 64.6795 576 2 0 39.9095 -64.8497 -145.978 + 80 89.5991 577 2 0 39.8648 -64.65 -146.112 + 80 5.55375 578 2 0 39.815 -64.4499 -146.242 + 80 108.182 1034 1 1 26.9343 -13.5901 -174.45 + 80 144.491 1033 1 1 26.85 -13.3948 -174.472 + 80 148.229 1032 1 1 26.6499 -12.943 -174.5 + 80 83.3359 1031 1 1 26.4497 -12.5485 -174.523 + 80 89.9093 1030 1 1 26.25 -12.2216 -174.557 + 80 114.596 1029 1 1 26.0498 -11.8915 -174.594 + 80 166.246 1028 1 1 25.85 -11.5225 -174.61 + 80 139.258 1027 1 1 25.65 -11.1247 -174.607 + 80 155.523 1026 1 1 25.4499 -10.6866 -174.596 + 80 115.693 1025 1 1 25.25 -10.3126 -174.58 + 80 106.848 1024 1 1 25.05 -9.96279 -174.575 + 80 122.357 1023 1 1 24.8499 -9.57754 -174.571 + 80 124.616 1022 1 1 24.65 -9.19744 -174.559 + 80 166.232 1021 1 1 24.45 -8.84328 -174.544 + 80 115.015 1020 1 1 24.2499 -8.49158 -174.517 + 80 116.375 1019 1 1 24.0497 -8.1116 -174.494 + 80 67.5318 1018 1 1 23.85 -7.71881 -174.467 + 80 110.093 1015 1 1 23.099 -6.10563 -174.45 + 80 64.1067 1014 1 1 23.05 -6.04118 -174.695 + 80 28.9173 871 1 0 22.7991 -5.68053 -175.85 + 80 195.967 872 1 0 22.7795 -5.65 -175.934 + 80 89.2426 974 0 1 14.9332 6.8069 -204.45 + 80 40.6692 973 0 1 14.85 6.90065 -204.728 + 80 92.8515 937 0 0 14.3961 7.47106 -205.85 + 80 61.7033 938 0 0 14.2748 7.65008 -206.197 + 80 69.5237 750 2 1 -29.85 132.383 -144.844 + 80 78.9046 1162 4 1 52.45 -99.5155 -84.5961 + 80 106.502 1147 6 1 49.6176 -100.127 -24.45 + 80 5.80449 398 6 0 49.39 -100.542 -25.85 + 80 113.522 397 6 0 49.385 -100.55 -25.8776 + 80 130.371 1119 5 1 43.9619 -109.103 -54.45 + 80 221.23 353 5 0 44.3042 -109.378 -55.85 + 80 103.564 1166 4 1 53.371 -116.483 -84.45 + 80 39.8789 1167 4 1 53.45 -116.405 -84.7204 + 80 114.469 320 4 0 53.7538 -116.073 -85.85 + 80 9.70332 321 4 0 53.8687 -115.95 -86.2151 + 80 34.6081 1218 3 1 63.7383 -106.823 -114.45 + 80 79.5574 1219 3 1 63.8503 -106.904 -114.506 + 80 81.5502 1220 3 1 64.0502 -107.046 -114.614 + 80 78.3691 1221 3 1 64.25 -107.199 -114.755 + 80 42.482 359 3 0 65.5561 -108.29 -115.85 + 80 113.397 358 3 0 65.6282 -108.35 -115.909 + 80 74.0199 357 3 0 65.918 -108.55 -116.124 + 80 210.839 1405 2 1 101.244 -129.505 -144.45 + 80 0.157195 1406 2 1 101.35 -129.52 -144.849 + 80 99.2701 252 2 0 101.614 -129.625 -145.85 + 80 10.0752 1423 1 1 104.94 -132.056 -174.45 + 80 87.6689 1424 1 1 104.95 -132.053 -174.501 + 80 135.97 241 1 0 105.312 -131.86 -175.85 + 80 234.844 1145 0 1 49.1746 -100.117 -204.45 + 80 223.167 400 0 0 49.1486 -100.08 -205.85 +Number of digits in this event = 40 +Using G4ParticleGun ... +6.70937 LIN +e- +Event: 81 +Number of tracker hits in this event = 153 + 81 122.833 1537 9 1 127.556 -22.2086 65.55 + 81 167.818 789 9 0 127.557 -22.2084 64.15 + 81 133.714 1537 8 1 127.581 -22.2034 35.55 + 81 130.225 789 8 0 127.582 -22.2029 34.15 + 81 110.451 1537 7 1 127.616 -22.1967 5.55 + 81 159.041 789 7 0 127.617 -22.1978 4.15 + 81 196.224 1537 6 1 127.644 -22.217 -24.45 + 81 149.643 789 6 0 127.646 -22.2176 -25.85 + 81 726.658 1537 5 1 127.689 -22.2328 -54.45 + 81 689.053 789 5 0 127.691 -22.2337 -55.85 + 81 212.6 1537 4 1 127.74 -22.2497 -84.45 + 81 155.988 789 4 0 127.743 -22.25 -85.85 + 81 259.61 788 4 0 127.744 -22.25 -85.9097 + 81 351.01 1538 3 1 127.831 -22.2605 -114.45 + 81 221.28 788 3 0 127.835 -22.2619 -115.85 + 81 161.809 1538 2 1 127.913 -22.292 -144.45 + 81 113.028 788 2 0 127.915 -22.2979 -145.85 + 81 259.343 1538 1 1 127.949 -22.4158 -174.45 + 81 129.872 788 1 0 127.949 -22.4198 -175.85 + 81 115.56 1539 0 1 127.953 -22.5045 -204.45 + 81 124.661 787 0 0 127.955 -22.5101 -205.85 + 81 37.3823 478 13 0 -20.9059 -84.4148 183.75 + 81 154.882 477 13 0 -20.9534 -84.45 183.824 + 81 160.955 790 3 0 128.354 -21.9392 -115.85 + 81 120.629 791 3 0 128.465 -21.85 -116.212 + 81 307.658 1538 4 1 127.761 -22.1103 -84.45 + 81 133.344 1541 3 1 128.408 -21.6689 -114.45 + 81 166.394 1543 2 1 128.782 -21.9731 -144.45 + 81 137.483 790 2 0 128.821 -21.9855 -145.85 + 81 228.104 1546 1 1 129.456 -22.3934 -174.45 + 81 122.451 787 1 0 129.415 -22.524 -175.85 + 81 133.579 1541 0 1 128.426 -25.2607 -204.45 + 81 187.02 773 0 0 128.356 -25.3929 -205.85 + 81 61.7104 1536 4 1 127.547 -22.3952 -84.45 + 81 256.409 1537 3 1 127.749 -22.3294 -114.45 + 81 121.177 1537 2 1 127.618 -22.2093 -144.45 + 81 112.578 789 2 0 127.629 -22.2349 -145.85 + 81 94.7461 785 1 0 127.83 -22.8615 -175.85 + 81 128.036 1540 0 1 128.231 -23.5537 -204.45 + 81 118.759 782 0 0 128.229 -23.583 -205.85 + 81 131.733 515 9 0 33.5091 -76.8893 63.75 + 81 289.457 514 9 0 33.6968 -77.05 64.0176 + 81 44.871 1534 6 1 127.15 -23.7445 -24.7819 + 81 54.6527 1535 6 1 127.15 -23.8072 -24.7701 + 81 69.6643 1536 6 1 127.55 -21.9852 -24.6442 + 81 26.5819 793 6 0 127.263 -21.2993 -25.85 + 81 118.915 794 6 0 127.243 -21.25 -25.9337 + 81 15.7929 1490 5 1 118.208 -6.85687 -54.4501 + 81 76.2467 1489 5 1 118.15 -6.82851 -54.477 + 81 102.522 1488 5 1 117.95 -6.72181 -54.5524 + 81 66.9484 1487 5 1 117.75 -6.6016 -54.6201 + 81 71.1068 1486 5 1 117.55 -6.44916 -54.7156 + 81 48.6431 1485 5 1 117.35 -6.30485 -54.7973 + 81 55.7051 876 5 0 115.001 -4.74149 -55.85 + 81 158.85 877 5 0 114.867 -4.65 -55.9196 + 81 105.05 878 5 0 114.579 -4.45 -56.1139 + 81 1.80418 879 5 0 114.418 -4.25 -56.2462 + 81 351.51 926 2 1 5.45 79.0704 -144.499 + 81 96.4455 927 2 1 5.45015 79.5888 -144.581 + 81 16.8979 881 5 0 116.068 -3.85 -55.9905 + 81 142.235 787 3 0 127.441 -22.5015 -115.85 + 81 108.349 1064 3 0 107.852 32.8847 -116.25 + 81 116.257 1065 3 0 107.821 33.05 -116.069 + 81 92.5311 1433 3 1 106.839 32.8103 -114.85 + 81 89.322 1432 3 1 106.75 32.725 -114.827 + 81 92.4353 793 3 0 127.792 -21.2621 -115.85 + 81 108.782 794 3 0 127.793 -21.25 -115.873 + 81 20.0068 795 3 0 127.751 -21.0498 -116.187 + 81 221.886 1509 2 1 122.084 -7.04112 -144.45 + 81 152.216 1508 2 1 121.95 -6.55414 -144.665 + 81 27.0898 886 2 0 120.348 -2.71571 -145.85 + 81 52.5101 887 2 0 120.319 -2.65 -145.869 + 81 88.3284 888 2 0 120.24 -2.44996 -145.93 + 81 270.12 889 2 0 120.157 -2.24987 -146.083 + 81 180.884 1069 2 0 66.9833 33.9019 -146.25 + 81 819.455 1230 2 1 66.1882 33.4873 -144.85 + 81 32.3296 1229 2 1 66.05 32.9799 -144.484 + 81 15.0709 1231 2 1 66.25 32.7362 -144.577 + 81 53.5412 1533 3 1 126.829 -20.3515 -114.85 + 81 37.4578 1536 5 1 127.426 -22.2517 -54.45 + 81 89.5136 1535 5 1 127.35 -22.2599 -54.5515 + 81 19.7642 1534 5 1 127.15 -22.2505 -54.799 + 81 139.673 790 5 0 126.223 -21.9616 -55.85 + 81 36.4713 1138 5 0 92.7812 47.7471 -56.25 + 81 67.6422 1139 5 0 92.7632 47.85 -56.1992 + 81 71.497 1140 5 0 92.7257 48.05 -56.0799 + 81 106.329 1141 5 0 92.6881 48.25 -55.9636 + 81 81.0537 1360 5 1 92.2287 49.6898 -54.85 + 81 156.699 1359 5 1 92.15 49.8909 -54.7054 + 81 9.224 1373 6 0 91.8415 94.9308 -26.2497 + 81 74.8523 1374 6 0 91.8419 94.95 -26.2376 + 81 409.126 1375 6 0 91.8347 95.15 -26.1069 + 81 163.473 1376 6 0 91.7743 95.3504 -25.8833 + 81 98.4367 1357 6 1 91.6111 96.0514 -24.85 + 81 186.274 1356 6 1 91.55 96.2157 -24.6015 + 81 48.8302 1355 6 1 91.35 96.2829 -24.6386 + 81 117.05 1379 6 0 90.9562 96.1296 -25.85 + 81 50.9475 1558 6 0 120.427 131.835 -26.2499 + 81 77.1054 1559 6 0 120.516 131.95 -26.105 + 81 23.9885 1498 6 1 119.809 131.985 -24.85 + 81 104.396 1497 6 1 119.75 131.963 -24.7687 + 81 12.0974 1496 6 1 119.55 131.72 -24.4858 + 81 66.5861 1564 4 1 132.974 -19.3359 -84.45 + 81 149.934 1563 4 1 132.95 -19.3642 -84.5256 + 81 138.405 801 4 0 132.441 -19.7318 -85.8506 + 81 317.994 1507 3 1 121.59 -27.5189 -114.45 + 81 41.6739 770 3 0 121.741 -26.0072 -115.85 + 81 67.436 771 3 0 121.758 -25.85 -115.988 + 81 82.5604 772 3 0 121.845 -25.6498 -116.136 + 81 68.9447 773 3 0 121.988 -25.45 -116.215 + 81 92.6849 774 3 0 122.145 -25.25 -116.19 + 81 96.9454 775 3 0 122.301 -25.05 -116.188 + 81 101.911 776 3 0 122.424 -24.85 -116.127 + 81 55.5679 777 3 0 122.565 -24.65 -116.045 + 81 25.8459 778 3 0 122.652 -24.45 -115.925 + 81 94.9985 1513 3 1 122.77 -23.0441 -114.85 + 81 160.346 1512 3 1 122.75 -22.8579 -114.722 + 81 127.929 1511 3 1 122.55 -22.305 -114.556 + 81 142.75 1510 3 1 122.35 -21.8576 -114.58 + 81 161.774 1509 3 1 122.15 -21.6403 -114.676 + 81 316.816 1508 3 1 121.95 -21.528 -114.735 + 81 43.9166 796 3 0 121.274 -20.7228 -115.85 + 81 101.995 797 3 0 121.228 -20.65 -115.92 + 81 60.3683 798 3 0 121.221 -20.4499 -115.999 + 81 60.8264 799 3 0 121.234 -20.25 -116.014 + 81 83.1799 800 3 0 121.276 -20.05 -116.028 + 81 79.9426 801 3 0 121.257 -19.85 -116.028 + 81 78.5132 802 3 0 121.269 -19.6499 -115.983 + 81 345.936 803 3 0 121.357 -19.45 -115.943 + 81 30.1849 849 3 0 26.7441 -10.2091 -116.25 + 81 134.867 787 4 0 127.987 -22.5111 -85.85 + 81 13.478 1545 3 1 129.168 -24.2418 -114.45 + 81 118.136 1544 3 1 129.15 -24.2398 -114.492 + 81 130.945 779 3 0 128.549 -24.2452 -115.85 + 81 136.155 1495 2 1 119.29 -24.7217 -144.45 + 81 14.0653 1496 2 1 119.35 -24.7803 -144.791 + 81 102.358 775 2 0 119.562 -24.9039 -145.85 + 81 44.5872 1527 1 1 125.668 -31.4369 -174.45 + 81 92.1655 1526 1 1 125.55 -31.4133 -174.55 + 81 80.2604 1525 1 1 125.35 -31.3664 -174.708 + 81 106.846 745 1 0 123.923 -30.9329 -175.85 + 81 94.8332 746 1 0 123.673 -30.85 -176.077 + 81 70.9982 1378 0 1 95.8061 -18.9463 -204.45 + 81 44.3176 1377 0 1 95.75 -18.966 -204.686 + 81 103.83 805 0 0 95.5947 -19.0311 -205.85 + 81 65.483 726 0 0 84.7412 -34.7473 -206.25 + 81 110.402 725 0 0 84.7045 -34.85 -206.141 + 81 17.9224 724 0 0 84.644 -35.05 -205.909 + 81 129.238 1322 0 1 84.6175 -35.9076 -204.85 + 81 148.286 749 1 0 58.5222 -30.2087 -176.25 + 81 3.2724 750 1 0 58.2524 -30.0497 -175.865 + 81 79.8622 1187 1 1 57.5637 -29.8636 -174.85 + 81 56.2562 1186 1 1 57.45 -29.7982 -174.65 +Number of digits in this event = 63 +Using G4ParticleGun ... +6.99228 LIN +e- +Event: 82 +Number of tracker hits in this event = 141 + 82 223.478 482 10 1 -83.5536 26.6746 95.55 + 82 111.702 1033 10 0 -83.5526 26.6742 94.15 + 82 131.867 482 9 1 -83.5381 26.6684 65.55 + 82 120.039 1033 9 0 -83.5364 26.6674 64.15 + 82 207.057 482 8 1 -83.4993 26.6502 35.55 + 82 139.416 1033 8 0 -83.4972 26.6509 34.15 + 82 367.94 483 7 1 -83.4399 26.6595 5.55 + 82 401.086 1033 7 0 -83.4362 26.6589 4.15 + 82 424.774 483 6 1 -83.3571 26.6446 -24.45 + 82 251.366 1032 6 0 -83.3521 26.6458 -25.85 + 82 344.626 484 5 1 -83.2444 26.6791 -54.45 + 82 460.665 1033 5 0 -83.2398 26.6795 -55.85 + 82 236.066 484 4 1 -83.1416 26.6952 -84.45 + 82 104.613 1033 4 0 -83.1377 26.6959 -85.85 + 82 592.512 484 3 1 -83.0513 26.723 -114.45 + 82 118.697 1033 3 0 -83.0468 26.7232 -115.85 + 82 237.5 485 2 1 -82.9587 26.7615 -144.45 + 82 111.346 1033 2 0 -82.9487 26.7677 -145.85 + 82 108.589 486 1 1 -82.7523 26.8839 -174.45 + 82 124.524 1034 1 0 -82.741 26.891 -175.85 + 82 102.88 487 0 1 -82.4964 27.0553 -204.45 + 82 142.946 1035 0 0 -82.4868 27.0674 -205.85 + 82 208.657 1308 5 0 -99.7311 81.8483 -56.25 + 82 4.61293 1309 5 0 -99.7236 81.85 -56.2113 + 82 161.335 1307 5 0 -99.9095 81.65 -55.9424 + 82 170.98 1306 5 0 -99.7229 81.4499 -56.0651 + 82 111.707 1456 5 0 -174.974 111.495 -56.25 + 82 303.306 1032 5 0 -83.1806 26.4885 -55.85 + 82 99.2422 485 4 1 -83.0141 26.2671 -84.45 + 82 116.372 1031 4 0 -83.0079 26.26 -85.85 + 82 624.95 485 3 1 -82.8585 26.1284 -114.45 + 82 163.007 1030 3 0 -82.8485 26.1468 -115.85 + 82 378.289 487 2 1 -82.5042 26.3802 -144.45 + 82 224.634 1031 2 0 -82.4987 26.3952 -145.85 + 82 108.002 488 1 1 -82.4349 26.7 -174.45 + 82 183.773 1033 1 0 -82.4112 26.7023 -175.85 + 82 240.648 490 0 1 -81.9709 26.7862 -204.45 + 82 123.503 1033 0 0 -81.969 26.792 -205.85 + 82 18.0119 489 0 1 -82.0501 26.837 -204.781 + 82 93.7822 913 10 1 2.65 36.1651 95.3919 + 82 47.8267 486 2 1 -82.65 25.9498 -144.696 + 82 185.598 1029 2 0 -83.2723 25.8801 -145.85 + 82 43.2821 1028 2 0 -83.4617 25.85 -146.133 + 82 155.579 383 1 1 -103.463 19.715 -174.45 + 82 3.88332 996 1 0 -103.548 19.2542 -175.85 + 82 330.058 995 1 0 -103.548 19.25 -175.862 + 82 149.592 378 0 1 -104.405 11.9628 -204.451 + 82 116.026 953 0 0 -104.72 10.8471 -205.85 + 82 133.389 952 0 0 -104.853 10.65 -206.123 + 82 107.385 850 1 0 -107.218 -9.85075 -176.25 + 82 85.1561 849 1 0 -107.234 -10.0501 -176.152 + 82 143.994 848 1 0 -107.353 -10.25 -176.061 + 82 130.106 847 1 0 -107.732 -10.4501 -176.129 + 82 117.541 846 1 0 -108.055 -10.65 -176.151 + 82 24.3284 845 1 0 -108.206 -10.85 -176.209 + 82 42.5134 793 1 0 -136.422 -21.353 -176.25 + 82 115.14 466 1 1 -86.813 27.1708 -174.45 + 82 14.5663 465 1 1 -86.85 27.1533 -174.805 + 82 112.098 1035 1 0 -86.9617 27.1354 -175.85 + 82 97.2575 447 0 1 -90.6062 26.8153 -204.45 + 82 131.807 1034 0 0 -90.5881 26.874 -205.85 + 82 9.95866 492 1 1 -81.6429 28.9534 -174.45 + 82 10.4136 1371 6 0 -101.679 94.5265 -26.25 + 82 131.525 1372 6 0 -101.692 94.55 -26.2313 + 82 119.008 1424 6 0 -105.144 105.092 -26.2498 + 82 16.6349 512 2 1 -77.6437 44.4321 -144.85 + 82 142.093 1033 6 0 -83.3444 26.6738 -25.85 + 82 222.578 483 5 1 -83.2688 26.6519 -54.45 + 82 198.066 1032 4 0 -83.1524 26.5745 -85.85 + 82 137.197 1031 3 0 -83.0827 26.4347 -115.85 + 82 117.571 485 1 1 -82.9926 26.2788 -174.45 + 82 125.617 1031 1 0 -82.9985 26.2838 -175.85 + 82 174.139 484 0 1 -83.1117 26.4017 -204.45 + 82 152.417 1031 0 0 -83.1139 26.4073 -205.85 + 82 135.32 484 2 1 -83.1179 26.3048 -144.45 + 82 16.3821 1036 2 0 -83.1734 27.4088 -145.85 + 82 90.5287 1037 2 0 -83.1598 27.45 -145.893 + 82 68.4709 1038 2 0 -83.081 27.65 -146.088 + 82 55.1708 1039 2 0 -83.0416 27.85 -146.157 + 82 72.8587 1040 2 0 -83.062 28.05 -146.19 + 82 25.4103 1041 2 0 -83.0755 28.2501 -146.203 + 82 172.062 1420 2 0 -130.931 104.306 -146.25 + 82 31.4923 1421 2 0 -130.985 104.35 -146.141 + 82 187.579 246 2 1 -130.817 104.001 -144.85 + 82 122.668 1034 3 0 -83.3002 26.8749 -115.85 + 82 131.09 457 2 1 -88.4805 33.7079 -144.45 + 82 57.1852 1069 2 0 -88.5273 33.9994 -145.85 + 82 39.7202 1070 2 0 -88.5369 34.05 -146.095 + 82 160.94 453 1 1 -89.3664 41.6323 -174.45 + 82 98.5576 1108 1 0 -89.0671 41.665 -175.85 + 82 148.428 483 0 1 -83.2752 42.1473 -204.45 + 82 150.305 1111 0 0 -83.5134 42.258 -205.85 + 82 2.76278 1038 3 0 -82.8726 27.8461 -115.85 + 82 124.085 1039 3 0 -82.8721 27.8502 -115.855 + 82 26.566 504 2 1 -79.1159 38.494 -144.45 + 82 90.6915 505 2 1 -79.05 38.5205 -144.535 + 82 78.8976 1093 2 0 -78.5471 38.7818 -145.85 + 82 99.2502 1094 2 0 -78.3863 38.85 -146.138 + 82 128.163 488 4 1 -82.4141 27.3934 -84.45 + 82 196.848 1036 4 0 -82.3115 27.4272 -85.85 + 82 91.5565 497 3 1 -80.6039 28.2932 -114.45 + 82 93.5492 1041 3 0 -80.4959 28.4198 -115.85 + 82 13.9211 1042 3 0 -80.467 28.45 -116.181 + 82 131.878 510 2 1 -77.8596 31.0094 -144.45 + 82 115.996 1055 2 0 -77.863 31.1749 -145.85 + 82 140.36 511 1 1 -77.6841 35.2652 -174.45 + 82 33.6377 1077 1 0 -77.6964 35.638 -175.85 + 82 104.466 1078 1 0 -77.6968 35.65 -175.895 + 82 121.151 508 0 1 -78.2869 43.8955 -204.45 + 82 106.545 1121 0 0 -78.1683 44.4015 -205.85 + 82 69.0514 1122 0 0 -78.1566 44.45 -205.982 + 82 135.323 1035 5 0 -83.0002 27.0655 -55.85 + 82 342.138 510 4 1 -78.0135 33.3916 -84.45 + 82 56.7069 1073 4 0 -78.0783 34.7133 -85.85 + 82 80.44 1074 4 0 -78.0837 34.8503 -85.9874 + 82 47.8352 1075 4 0 -78.1008 35.05 -86.1791 + 82 130.274 496 3 1 -80.7268 64.1308 -114.45 + 82 99.4056 495 3 1 -80.85 64.4442 -114.738 + 82 26.8153 1228 3 0 -81.2416 65.7694 -115.85 + 82 258.73 1229 3 0 -81.2642 65.85 -115.917 + 82 54.0672 1230 3 0 -81.3372 66.05 -116.094 + 82 88.199 1402 3 0 -97.8367 100.706 -116.25 + 82 22.0894 1403 3 0 -97.9565 100.75 -115.945 + 82 125.201 408 3 1 -98.3518 100.971 -114.85 + 82 45.0249 409 3 1 -98.236 101.22 -114.45 + 82 80.5672 410 3 1 -98.15 101.153 -114.597 + 82 20.6448 1401 3 0 -98.233 100.406 -115.85 + 82 77.4025 1400 3 0 -98.2465 100.35 -115.904 + 82 73.0306 1399 3 0 -98.2847 100.15 -116.109 + 82 225.403 1198 3 0 -74.8912 59.8036 -116.25 + 82 12.1674 540 3 1 -71.8852 61.6325 -114.85 + 82 56.2074 541 3 1 -71.85 61.6564 -114.836 + 82 77.3569 542 3 1 -71.65 61.7714 -114.741 + 82 91.7604 543 3 1 -71.4497 61.9182 -114.703 + 82 103.9 544 3 1 -71.25 62.0808 -114.642 + 82 74.6559 545 3 1 -71.0499 62.2598 -114.539 + 82 23.2601 546 3 1 -70.6779 62.3782 -114.45 + 82 75.3949 547 3 1 -70.65 62.3517 -114.5 + 82 91.2063 548 3 1 -70.45 62.2373 -114.651 + 82 0.464149 1205 3 0 -69.4706 61.0519 -115.85 + 82 179.165 1204 3 0 -69.4689 61.05 -115.852 +Number of digits in this event = 67 +Using G4ParticleGun ... +1.70013 LIN +e- +Event: 83 +Number of tracker hits in this event = 98 + 83 112.423 1597 8 1 139.661 38.7073 35.55 + 83 113.298 1093 8 0 139.659 38.7046 34.15 + 83 110.794 1597 7 1 139.629 38.6125 5.55 + 83 134.501 1092 7 0 139.628 38.6191 4.15 + 83 207.094 1597 6 1 139.585 38.785 -24.45 + 83 163.33 1093 6 0 139.59 38.7925 -25.85 + 83 133.068 1597 5 1 139.676 38.9483 -54.45 + 83 98.5777 1094 5 0 139.675 38.9442 -55.85 + 83 457.168 1597 4 1 139.591 38.858 -84.45 + 83 191.249 1094 4 0 139.595 38.8654 -85.85 + 83 185.446 1597 3 1 139.706 39.0494 -114.45 + 83 110.706 1095 3 0 139.715 39.0714 -115.85 + 83 100.125 1598 2 1 139.876 39.513 -144.45 + 83 111.712 1097 2 0 139.883 39.521 -145.85 + 83 251.631 1599 1 1 140.061 39.6514 -174.45 + 83 108.652 1098 1 0 140.07 39.6673 -175.85 + 83 183.772 1600 0 1 140.258 40.0169 -204.45 + 83 58.6632 1099 0 0 140.263 40.0471 -205.85 + 83 83.1019 1100 0 0 140.264 40.05 -205.985 + 83 491.973 1599 0 1 140.15 39.9905 -204.759 + 83 58.7826 1598 0 1 139.95 40.2631 -204.581 + 83 174.393 1597 0 1 139.75 40.433 -204.676 + 83 77.1463 1596 0 1 139.55 40.6206 -204.74 + 83 63.9528 1595 0 1 139.349 40.8009 -204.773 + 83 70.3142 1594 0 1 139.15 40.9111 -204.74 + 83 71.7715 1593 0 1 138.95 41.0543 -204.711 + 83 96.5287 1592 0 1 138.75 41.202 -204.663 + 83 183.234 1591 0 1 138.55 41.3669 -204.594 + 83 82.8813 1590 0 1 138.35 41.5186 -204.509 + 83 71.0748 1589 0 1 138.15 41.6442 -204.473 + 83 50.6972 1588 0 1 137.95 41.8007 -204.466 + 83 23.937 1587 0 1 137.75 41.8912 -204.461 + 83 105.118 1598 1 1 139.95 39.7115 -174.789 + 83 1.56799 1102 1 0 139.197 40.6471 -175.85 + 83 242.492 1103 1 0 139.195 40.65 -175.854 + 83 37.2696 1600 1 1 140.24 40.0222 -174.45 + 83 65.0683 1601 1 1 140.35 40.0002 -174.485 + 83 107.551 1602 1 1 140.55 39.9134 -174.633 + 83 72.5152 1603 1 1 140.75 39.7125 -174.716 + 83 344.004 1604 1 1 140.95 39.5286 -174.676 + 83 114.339 1605 1 1 141.15 39.4766 -174.632 + 83 52.4654 1606 1 1 141.35 39.4702 -174.609 + 83 54.0254 1607 1 1 141.55 39.4797 -174.533 + 83 64.3461 1608 1 1 141.75 39.5187 -174.512 + 83 85.5291 1609 1 1 141.95 39.4894 -174.526 + 83 71.9566 1610 1 1 142.15 39.4597 -174.529 + 83 72.8236 1611 1 1 142.35 39.4147 -174.55 + 83 172.446 1612 1 1 142.55 39.3697 -174.538 + 83 296.921 1613 1 1 142.75 39.3271 -174.484 + 83 5.04563 1102 3 0 136.133 40.638 -115.85 + 83 53.0259 1563 3 1 132.803 41.8814 -114.85 + 83 84.8892 1562 3 1 132.75 41.923 -114.807 + 83 309.481 1596 4 1 139.537 38.453 -84.45 + 83 253.159 1092 4 0 139.584 38.6167 -85.8501 + 83 65.7498 1093 4 0 139.597 38.65 -86.1151 + 83 5.05606 1604 3 1 141.145 41.4801 -114.45 + 83 97.6257 1605 3 1 141.15 41.48 -114.468 + 83 137.467 1107 3 0 141.501 41.5115 -115.85 + 83 306.237 1644 2 1 149.07 41.461 -144.45 + 83 147.085 1107 2 0 148.696 41.5206 -145.85 + 83 1.60763 1108 1 0 141.566 41.8479 -175.85 + 83 154.704 1109 1 0 141.57 41.85 -175.861 + 83 219.495 1657 0 1 151.666 47.0388 -204.45 + 83 4.16917 1658 0 1 151.75 47.1661 -204.825 + 83 175.184 1137 0 0 151.997 47.4865 -205.851 + 83 17.9439 1645 2 1 149.15 41.4655 -144.514 + 83 69.133 1095 4 0 139.626 39.05 -86.06 + 83 70.822 1289 4 0 143.028 77.9044 -86.2495 + 83 77.7148 1290 4 0 142.992 78.05 -86.0849 + 83 171.067 1612 4 1 142.702 79.056 -84.85 + 83 90.891 1613 4 1 142.75 79.3246 -84.4715 + 83 41.5775 1614 4 1 142.95 79.4188 -84.754 + 83 256.024 1301 4 0 144.327 80.3142 -85.85 + 83 341.066 1302 4 0 144.793 80.45 -86.0106 + 83 189.991 1303 4 0 145.469 80.65 -86.049 + 83 98.2938 1304 4 0 146.148 80.85 -86.1343 + 83 223.711 1598 3 1 139.788 38.2132 -114.45 + 83 168.279 1090 3 0 139.807 38.2052 -115.85 + 83 124.43 1600 2 1 140.338 38.0178 -144.45 + 83 105.445 1089 2 0 140.371 38.0182 -145.85 + 83 524.009 1089 1 0 141.073 38.0478 -175.85 + 83 163.769 1607 0 1 141.623 37.9905 -204.45 + 83 108.892 1089 0 0 141.624 37.9879 -205.85 + 83 154.15 594 6 0 -145.032 -61.2287 -26.25 + 83 113.755 595 6 0 -145.191 -61.05 -25.9476 + 83 182.856 596 6 0 -145.079 -60.85 -25.9219 + 83 166.946 1091 4 0 139.71 38.3916 -85.8502 + 83 124.956 1610 3 1 142.286 36.1448 -114.45 + 83 14.8069 1611 3 1 142.35 36.1415 -114.803 + 83 212.193 1080 3 0 142.525 36.1378 -115.85 + 83 125.02 1633 2 1 146.79 37.3202 -144.451 + 83 213.854 1086 2 0 147.24 37.3016 -145.85 + 83 107.176 1686 1 1 157.411 35.0755 -174.45 + 83 21.2544 1687 1 1 157.55 34.9852 -174.8 + 83 223.446 1073 1 0 158.018 34.7269 -175.85 + 83 39.1199 1072 1 0 158.141 34.65 -176.125 + 83 130.78 1750 0 1 170.152 26.8444 -204.45 + 83 126.398 1034 0 0 170.541 26.9743 -205.851 +Number of digits in this event = 46 +Using G4ParticleGun ... +9.19271 LIN +e- +Event: 84 +Number of tracker hits in this event = 116 + 84 110.751 1073 11 1 34.7587 -56.0366 125.55 + 84 113.265 620 11 0 34.7589 -56.0367 124.15 + 84 111.338 1073 10 1 34.7646 -56.0386 95.55 + 84 119.705 620 10 0 34.7647 -56.0387 94.15 + 84 156.647 1073 9 1 34.7683 -56.0422 65.55 + 84 112.036 620 9 0 34.7679 -56.0425 64.15 + 84 101.885 1073 8 1 34.7605 -56.0474 35.55 + 84 116.522 620 8 0 34.7593 -56.0484 34.15 + 84 406.404 1073 7 1 34.7339 -56.0628 5.55 + 84 120.62 619 7 0 34.733 -56.0625 4.15 + 84 135.264 1073 6 1 34.7175 -56.0526 -24.45 + 84 106.533 619 6 0 34.7174 -56.0518 -25.85 + 84 105.364 1073 5 1 34.7194 -56.0336 -54.45 + 84 133.943 620 5 0 34.7194 -56.032 -55.85 + 84 330.982 1073 4 1 34.7153 -55.998 -84.45 + 84 135.317 620 4 0 34.7146 -55.9969 -85.85 + 84 146.059 1073 3 1 34.7017 -55.9772 -114.45 + 84 135.276 620 3 0 34.7032 -55.973 -115.85 + 84 113.035 1073 2 1 34.7321 -55.883 -144.45 + 84 111.542 620 2 0 34.7332 -55.8775 -145.85 + 84 176.571 1073 1 1 34.7549 -55.7691 -174.45 + 84 127.601 621 1 0 34.7564 -55.764 -175.85 + 84 307.598 1073 0 1 34.7839 -55.6597 -204.45 + 84 113.603 621 0 0 34.7853 -55.654 -205.85 + 84 9.64912 1097 2 1 39.6058 -63.7245 -144.85 + 84 231.895 1098 2 1 39.65 -63.7429 -144.541 + 84 38.7437 129 0 0 37.734 -154.15 -205.947 + 84 163.724 811 6 0 -95.0043 -17.8162 -26.25 + 84 232.97 195 7 0 57.0052 -141.027 3.75 + 84 37.0599 781 7 1 -23.6574 49.1729 5.15 + 84 197.07 782 7 1 -23.65 49.2136 5.27093 + 84 99.2205 621 4 0 34.9242 -55.7564 -85.85 + 84 216.176 1109 3 1 41.9164 -47.9169 -114.45 + 84 43.3951 666 3 0 41.9256 -46.7753 -115.85 + 84 101.103 667 3 0 41.9247 -46.6496 -116.008 + 84 2.50651 668 3 0 41.926 -46.4496 -116.242 + 84 14.0863 1111 2 1 42.4257 -21.7208 -144.45 + 84 107.868 1112 2 1 42.4503 -21.7013 -144.456 + 84 105.955 1113 2 1 42.65 -21.4602 -144.559 + 84 85.7523 1114 2 1 42.8501 -21.173 -144.667 + 84 28.5766 1115 2 1 43.0506 -20.9785 -144.811 + 84 28.5525 805 2 0 45.5897 -18.9191 -145.85 + 84 64.3666 806 2 0 45.6614 -18.85 -145.888 + 84 85.9119 807 2 0 45.758 -18.6496 -146.002 + 84 136.175 808 2 0 45.9842 -18.45 -146.138 + 84 146.579 1467 3 0 -78.1829 113.696 -116.25 + 84 133.001 621 7 0 34.7633 -55.7873 4.15 + 84 19.72 1070 6 1 34.2352 -52.6034 -24.45 + 84 90.7836 1071 6 1 34.25 -52.5973 -24.5049 + 84 109.307 638 6 0 34.6242 -52.4424 -25.8501 + 84 142.529 1111 5 1 42.3154 -49.9455 -54.45 + 84 29.3659 651 5 0 42.1604 -49.6637 -55.85 + 84 99.2035 652 5 0 42.1521 -49.65 -55.927 + 84 124.897 1103 4 1 40.7325 -44.9266 -84.45 + 84 108.696 677 4 0 40.8541 -44.5625 -85.85 + 84 1.55136 678 4 0 40.8929 -44.45 -86.244 + 84 38.7188 1118 3 1 43.7343 -35.8411 -114.45 + 84 83.7023 1119 3 1 43.85 -35.8124 -114.582 + 84 15.4312 1120 3 1 44.05 -35.7516 -114.805 + 84 50.0698 722 3 0 44.9049 -35.4814 -115.85 + 84 103.297 723 3 0 44.9992 -35.45 -115.967 + 84 28.6128 1216 2 1 63.3869 -31.1513 -144.45 + 84 99.5536 1217 2 1 63.45 -31.1834 -144.523 + 84 53.1743 1218 2 1 63.65 -31.2974 -144.735 + 84 168.259 739 2 0 65.055 -32.0835 -145.85 + 84 36.3275 738 2 0 65.4754 -32.25 -146.201 + 84 177.63 1452 1 1 110.74 -44.6839 -174.45 + 84 83.7651 683 1 0 110.706 -43.4439 -175.85 + 84 45.417 684 1 0 110.698 -43.25 -176.101 + 84 202.622 1430 0 1 106.192 -23.3568 -204.45 + 84 58.2726 791 0 0 105.821 -21.7744 -205.85 + 84 77.6452 792 0 0 105.79 -21.65 -205.957 + 84 22.4898 793 0 0 105.768 -21.45 -206.176 + 84 169.843 1034 0 1 27.0462 -63.2353 -204.45 + 84 85.2901 1035 0 1 27.05 -63.2327 -204.626 + 84 116.124 584 0 0 27.0899 -63.2051 -205.851 + 84 116.768 583 0 0 27.023 -63.2997 -205.85 + 84 117.77 620 7 0 34.8719 -55.9347 4.15 + 84 189.247 1084 6 1 36.8932 -55.2362 -24.45 + 84 135.664 623 6 0 37.0519 -55.2872 -25.8501 + 84 106.709 1100 5 1 40.0844 -56.3689 -54.4504 + 84 130.426 618 5 0 40.3986 -56.4273 -55.8502 + 84 165.106 1132 4 1 46.5307 -57.8941 -84.45 + 84 137.169 610 4 0 46.7582 -57.9653 -85.85 + 84 128.15 1155 3 1 51.2164 -59.6625 -114.45 + 84 15.6734 1156 3 1 51.25 -59.6983 -114.793 + 84 127.841 601 3 0 51.3528 -59.7955 -115.851 + 84 132.409 1168 2 1 53.8179 -62.3162 -144.45 + 84 144.243 588 2 0 53.7725 -62.3786 -145.85 + 84 129.09 1163 1 1 52.7242 -63.8635 -174.45 + 84 117.146 579 1 0 52.704 -64.0607 -175.85 + 84 35.6667 1161 0 1 52.3222 -67.4247 -204.45 + 84 148.853 1162 0 1 52.4508 -67.4885 -204.521 + 84 42.63 1163 0 1 52.65 -67.6456 -204.64 + 84 187.253 1164 0 1 52.8502 -67.7142 -204.659 + 84 270.101 1165 0 1 53.05 -68.0269 -204.637 + 84 48.8523 1166 0 1 53.2503 -68.4429 -204.774 + 84 11.6112 552 0 0 56.1266 -69.6294 -205.85 + 84 95.6975 551 0 0 56.1769 -69.65 -205.866 + 84 65.9377 550 0 0 56.4354 -69.8508 -205.929 + 84 58.2784 549 0 0 56.498 -70.05 -206.029 + 84 69.252 548 0 0 56.492 -70.25 -206.118 + 84 125.004 542 0 0 40.3233 -71.5719 -206.25 + 84 70.7098 543 0 0 40.1271 -71.45 -206.023 + 84 93.1487 1101 0 1 40.3189 -71.3109 -204.85 + 84 176.604 1100 0 1 40.25 -71.3708 -204.651 + 84 180.327 1169 2 1 53.85 -62.3362 -144.497 + 84 172.828 612 4 0 48.2743 -57.4921 -85.85 + 84 76.5216 1083 6 1 36.7143 -55.1853 -24.45 + 84 81.1043 621 6 0 37.4789 -55.7673 -25.85 + 84 45.7805 620 6 0 37.5758 -55.85 -26.1419 + 84 77.8961 579 6 0 97.4062 -64.1776 -26.25 + 84 87.8417 578 6 0 97.5376 -64.25 -26.0616 + 84 51.0478 1391 6 1 98.4186 -64.966 -24.85 + 84 101.729 1392 6 1 98.55 -64.9992 -24.774 + 84 84.2754 1393 6 1 98.75 -65.1018 -24.6793 +Number of digits in this event = 47 +Using G4ParticleGun ... +2.58878 LIN +e- +Event: 85 +Number of tracker hits in this event = 132 + 85 179.908 769 11 1 -26.1373 -22.8074 125.55 + 85 113.328 786 11 0 -26.1382 -22.805 124.15 + 85 118.136 769 10 1 -26.1517 -22.7518 95.55 + 85 107.47 786 10 0 -26.1509 -22.7496 94.15 + 85 114.937 769 9 1 -26.1449 -22.7122 65.55 + 85 104.355 786 9 0 -26.1452 -22.7131 64.15 + 85 413.621 769 8 1 -26.1565 -22.7323 35.55 + 85 276.1 786 8 0 -26.1542 -22.736 34.15 + 85 153.787 769 7 1 -26.1098 -22.7984 5.55 + 85 140.265 786 7 0 -26.1046 -22.8018 4.15 + 85 119.442 770 6 1 -25.9929 -22.8902 -24.45 + 85 386.339 785 6 0 -25.9911 -22.8919 -25.85 + 85 134.877 770 5 1 -25.9556 -22.9241 -54.45 + 85 131.986 785 5 0 -25.9525 -22.9251 -55.85 + 85 122.027 770 4 1 -25.8723 -22.9382 -84.45 + 85 144.535 785 4 0 -25.8674 -22.9392 -85.85 + 85 197.08 771 3 1 -25.7745 -22.9504 -114.45 + 85 151.47 785 3 0 -25.7689 -22.9497 -115.85 + 85 133.994 772 2 1 -25.6429 -22.9418 -144.45 + 85 120.029 785 2 0 -25.6362 -22.9424 -145.85 + 85 114.589 772 1 1 -25.4887 -22.9333 -174.45 + 85 114.114 785 1 0 -25.4831 -22.9363 -175.85 + 85 127.045 773 0 1 -25.3605 -23.0171 -204.45 + 85 120.006 785 0 0 -25.3577 -23.0251 -205.85 + 85 71.834 340 0 0 75.763 -111.95 -206.095 + 85 261.848 339 0 0 75.9875 -112.15 -206.045 + 85 132.593 770 3 1 -25.8501 -22.991 -114.657 + 85 204.165 783 3 0 -26.1756 -23.3206 -115.85 + 85 27.1119 782 3 0 -26.2723 -23.4501 -116.17 + 85 92.4474 720 2 1 -35.9987 -37.7152 -144.45 + 85 6.90784 719 2 1 -36.05 -37.7161 -144.817 + 85 140.514 711 2 0 -36.0846 -37.795 -145.85 + 85 56.1973 731 1 1 -33.7351 -38.657 -174.45 + 85 99.8936 730 1 1 -33.85 -38.7401 -174.582 + 85 54.8081 729 1 1 -34.05 -38.8283 -174.75 + 85 100.661 703 1 0 -35.4343 -39.3631 -175.85 + 85 91.0128 702 1 0 -35.6387 -39.4501 -176.018 + 85 10.1232 749 1 0 -76.3797 -30.0639 -176.25 + 85 103.659 750 1 0 -76.3935 -30.05 -176.23 + 85 41.5301 751 1 0 -76.4882 -29.85 -176.012 + 85 140.321 516 1 1 -76.7472 -28.9327 -174.85 + 85 2.86177 515 1 1 -76.85 -28.722 -174.465 + 85 326.009 769 6 1 -26.072 -22.8774 -24.4502 + 85 116.316 765 5 1 -26.9132 -23.4717 -54.45 + 85 127.267 782 5 0 -26.9714 -23.5432 -55.85 + 85 128.864 757 4 1 -28.4637 -25.3763 -84.45 + 85 132.499 772 4 0 -28.4458 -25.4574 -85.85 + 85 151.273 759 3 1 -28.0699 -26.6788 -114.45 + 85 158.567 766 3 0 -28.0319 -26.8036 -115.85 + 85 121.694 763 2 1 -27.283 -29.1736 -144.45 + 85 69.0979 753 2 0 -27.2987 -29.4279 -145.85 + 85 98.3641 752 2 0 -27.2993 -29.45 -145.968 + 85 157.071 762 1 1 -27.518 -35.1435 -174.45 + 85 125.984 722 1 0 -27.3725 -35.464 -175.851 + 85 103.226 781 0 1 -23.786 -42.0887 -204.45 + 85 127.78 688 0 0 -23.7627 -42.2845 -205.85 + 85 92.8999 749 0 1 -30.1176 -26.6292 -204.45 + 85 69.5661 748 0 1 -30.25 -26.5725 -204.633 + 85 11.4349 765 0 0 -30.3426 -27.0272 -205.85 + 85 164.708 764 0 0 -30.3461 -27.05 -205.893 + 85 59.3706 763 0 0 -30.359 -27.25 -206.037 + 85 146.947 762 0 0 -30.2926 -27.4503 -206.063 + 85 77.1211 761 0 0 -30.0951 -27.6502 -206.105 + 85 211.41 760 0 0 -29.8942 -27.85 -206.139 + 85 78.3015 759 0 0 -29.4258 -28.05 -206.122 + 85 358.804 758 0 0 -29.4269 -28.25 -206.192 + 85 20.5857 757 0 0 -29.7598 -28.45 -205.959 + 85 126.685 786 6 0 -26.225 -22.8257 -25.8506 + 85 96.4513 750 5 1 -29.9405 -21.7601 -54.45 + 85 116.554 791 5 0 -30.0436 -21.7287 -55.8501 + 85 115.099 738 4 1 -32.4172 -21.2128 -84.45 + 85 117.831 794 4 0 -32.4498 -21.0933 -85.85 + 85 3.66246 729 3 1 -34.2474 -19.212 -114.45 + 85 100.665 728 3 1 -34.25 -19.2121 -114.469 + 85 102.072 804 3 0 -34.4172 -19.2203 -115.85 + 85 108.082 713 2 1 -37.3811 -18.9265 -144.45 + 85 131.712 804 2 0 -37.3984 -19.1382 -145.85 + 85 155.403 706 1 1 -38.7589 -22.2365 -174.45 + 85 179.686 787 1 0 -38.7682 -22.4959 -175.85 + 85 133.707 707 0 1 -38.5372 -26.3135 -204.45 + 85 36.0774 768 0 0 -38.4713 -26.4365 -205.851 + 85 58.2868 767 0 0 -38.4661 -26.45 -206.015 + 85 108.405 787 8 0 -26.1079 -22.6475 34.1498 + 85 180.714 790 7 1 -22.0233 -21.8525 5.55 + 85 161.615 788 7 0 -21.5457 -22.2961 4.15 + 85 63.0481 842 6 1 -11.6052 -30.0123 -24.4503 + 85 57.076 843 6 1 -11.45 -30.0092 -24.6701 + 85 159.165 750 6 0 -10.6682 -29.9765 -25.8502 + 85 62.6386 943 5 1 8.66405 -29.6502 -54.4501 + 85 81.7482 944 5 1 8.85 -29.6175 -54.6001 + 85 37.4065 945 5 1 9.05 -29.5798 -54.7613 + 85 451.807 753 5 0 10.4188 -29.3849 -55.8501 + 85 25.5955 1148 4 1 49.7326 -22.5921 -84.45 + 85 51.6995 1149 4 1 49.85 -22.5896 -84.4818 + 85 46.3165 1150 4 1 50.0502 -22.5842 -84.5315 + 85 56.5203 1151 4 1 50.25 -22.5731 -84.5793 + 85 73.2453 1152 4 1 50.4502 -22.56 -84.6281 + 85 110.072 1153 4 1 50.65 -22.5452 -84.6751 + 85 149.828 1154 4 1 50.85 -22.5235 -84.7113 + 85 44.5355 1155 4 1 51.05 -22.5047 -84.7443 + 85 48.4513 1156 4 1 51.25 -22.493 -84.7671 + 85 50.7209 1157 4 1 51.45 -22.4854 -84.7922 + 85 29.7582 1158 4 1 51.65 -22.4917 -84.827 + 85 453.258 787 4 0 56.5161 -22.5507 -85.85 + 85 35.1556 1680 3 1 156.207 -24.6023 -114.45 + 85 80.4448 1679 3 1 156.15 -24.5629 -114.54 + 85 45.257 1678 3 1 155.95 -24.4304 -114.756 + 85 61.8859 784 3 0 154.285 -23.2498 -115.985 + 85 134.424 996 3 0 150.008 19.2709 -116.25 + 85 19.9005 997 3 0 150.031 19.45 -115.889 + 85 121.527 1647 3 1 149.658 19.8054 -114.85 + 85 114.251 766 7 1 -26.825 -24.0754 5.54983 + 85 131.23 779 7 0 -26.8433 -24.1698 4.15 + 85 222.415 766 6 1 -26.788 -25.7504 -24.45 + 85 102.906 770 6 0 -26.8419 -25.8667 -25.85 + 85 104.287 756 5 1 -28.758 -28.5199 -54.4504 + 85 144.073 757 5 0 -28.8629 -28.5477 -55.8503 + 85 129.882 750 4 1 -29.9222 -28.004 -84.45 + 85 157.306 760 4 0 -29.8657 -27.9573 -85.8503 + 85 118.055 756 3 1 -28.8152 -26.8225 -114.45 + 85 145.158 767 3 0 -28.5275 -26.6372 -115.85 + 85 201.915 785 2 1 -22.9461 -21.9039 -144.45 + 85 91.2895 792 2 0 -22.8704 -21.5186 -145.85 + 85 54.7818 793 2 0 -22.8592 -21.45 -146.085 + 85 138.548 792 1 1 -21.5707 -12.3987 -174.45 + 85 384.066 840 1 0 -21.6118 -11.9994 -175.85 + 85 83.6089 783 0 1 -23.356 -2.87602 -204.45 + 85 156.082 782 0 1 -23.45 -2.85765 -204.596 + 85 124.228 886 0 0 -24.2632 -2.69839 -205.85 + 85 69.5534 841 1 0 -21.2272 -11.85 -176.189 + 85 150.784 565 1 0 0.251799 -66.8991 -176.25 + 85 214.836 784 2 1 -23.05 -21.6753 -144.605 +Number of digits in this event = 63 +Using G4ParticleGun ... +2.20261 LIN +e- +Event: 86 +Number of tracker hits in this event = 63 + 86 132.768 724 11 1 -35.0535 -33.7466 125.55 + 86 100.806 731 11 0 -35.0536 -33.7443 124.15 + 86 248.011 724 10 1 -35.0736 -33.6991 95.55 + 86 238.904 731 10 0 -35.0741 -33.691 94.15 + 86 128.292 724 9 1 -35.0828 -33.5296 65.55 + 86 142.162 732 9 0 -35.0828 -33.5179 64.15 + 86 103.226 724 8 1 -35.0968 -33.2896 35.55 + 86 147.454 733 8 0 -35.0959 -33.283 34.15 + 86 110.311 724 7 1 -35.0777 -33.1527 5.55 + 86 111.387 734 7 0 -35.0771 -33.146 4.15 + 86 120.516 724 6 1 -35.1102 -32.9978 -24.45 + 86 268.217 735 6 0 -35.0993 -32.978 -25.85 + 86 262.905 725 5 1 -34.8627 -32.5184 -54.45 + 86 127.35 737 5 0 -34.8489 -32.4899 -55.85 + 86 109.118 727 4 1 -34.5541 -31.9135 -84.45 + 86 127.937 740 4 0 -34.5473 -31.8807 -85.85 + 86 115.234 728 3 1 -34.3846 -31.1963 -114.45 + 86 133.059 744 3 0 -34.379 -31.1391 -115.85 + 86 168.924 728 2 1 -34.2783 -29.9675 -144.45 + 86 122.065 750 2 0 -34.2652 -29.921 -145.85 + 86 161.469 730 1 1 -33.9511 -28.9345 -174.45 + 86 114.493 755 1 0 -33.9252 -28.879 -175.85 + 86 155.293 733 0 1 -33.3272 -27.7559 -204.45 + 86 177.056 761 0 0 -33.3241 -27.7358 -205.85 + 86 69.3765 729 1 1 -34.1741 -29.7995 -174.45 + 86 91.4873 751 1 0 -33.6055 -29.7431 -175.851 + 86 67.4689 750 1 0 -33.4807 -29.8501 -176.107 + 86 336.607 594 1 0 23.7932 -61.2333 -176.25 + 86 103.065 593 1 0 23.8619 -61.25 -176.196 + 86 72.2403 595 1 0 24.5742 -61.05 -175.945 + 86 43.6102 235 1 0 123.233 -133.102 -176.25 + 86 325.973 234 1 0 123.352 -133.15 -176.173 + 86 54.9581 233 1 0 122.952 -133.35 -176.132 + 86 128.844 726 5 1 -34.85 -32.5105 -54.8317 + 86 218.714 734 5 0 -34.5051 -33.1252 -55.85 + 86 100.413 734 8 0 -35.0734 -33.2499 33.8656 + 86 81.2191 729 10 0 -35.0511 -34.1482 94.15 + 86 20.6796 728 10 0 -35.0315 -34.25 93.828 + 86 70.2546 740 9 1 -31.9392 -44.7471 65.55 + 86 159.013 741 9 1 -31.85 -44.8201 65.3809 + 86 190.194 673 9 0 -30.788 -45.2994 64.1497 + 86 28.6731 674 9 0 -30.402 -45.25 63.7812 + 86 112.535 974 8 1 14.8966 36.5086 35.55 + 86 148.36 973 8 1 14.85 36.2031 35.342 + 86 54.1152 1067 8 0 14.5491 33.5814 34.15 + 86 84.6766 1066 8 0 14.5305 33.4497 34.0997 + 86 75.6513 1065 8 0 14.4969 33.25 34.0375 + 86 125.573 1064 8 0 14.4543 33.05 33.977 + 86 55.991 1063 8 0 14.4151 32.85 33.9155 + 86 99.7387 1062 8 0 14.3887 32.65 33.8595 + 86 34.1735 1061 8 0 14.3524 32.4499 33.7934 + 86 121.299 901 7 1 0.309809 -34.2843 5.55 + 86 8.00449 902 7 1 0.450048 -34.2412 5.18187 + 86 143.532 730 7 0 0.716007 -34.0095 4.15 + 86 60.1922 731 7 0 0.803903 -33.85 3.90396 + 86 91.3877 578 7 0 39.6601 -64.3303 3.75 + 86 222.851 577 7 0 39.7644 -64.45 3.86127 + 86 13.9433 1001 6 1 20.25 -66.1564 -24.7289 + 86 26.9869 1000 6 1 20.2499 -66.1768 -24.7739 + 86 184.273 565 6 0 19.8613 -67.0236 -25.8501 + 86 167.58 564 6 0 19.8543 -67.05 -25.8823 + 86 95.119 725 11 1 -35.0062 -33.7608 125.55 + 86 217.471 726 11 1 -34.85 -33.9711 125.454 +Number of digits in this event = 33 +Using G4ParticleGun ... +9.44681 LIN +e- +Event: 87 +Number of tracker hits in this event = 127 + 87 117.262 1127 11 1 45.5954 62.1807 125.55 + 87 133.565 1210 11 0 45.5952 62.1811 124.15 + 87 127.73 1127 10 1 45.5919 62.1901 95.55 + 87 150.224 1210 10 0 45.5918 62.1904 94.15 + 87 189.57 1127 9 1 45.5894 62.194 65.55 + 87 117.963 1210 9 0 45.588 62.1932 64.15 + 87 127.124 1127 8 1 45.5585 62.1736 35.55 + 87 123.179 1210 8 0 45.5568 62.173 34.15 + 87 344.67 1127 7 1 45.5186 62.1595 5.55 + 87 237.211 1210 7 0 45.5172 62.1586 4.15 + 87 197.647 1127 6 1 45.4868 62.1399 -24.45 + 87 120.434 1210 6 0 45.4861 62.1376 -25.85 + 87 121.063 1127 5 1 45.4717 62.0919 -54.45 + 87 152.872 1210 5 0 45.473 62.0903 -55.85 + 87 92.5689 1127 4 1 45.503 62.0562 -84.45 + 87 115.017 1210 4 0 45.505 62.0562 -85.85 + 87 99.1501 1127 3 1 45.5468 62.0542 -114.45 + 87 115.301 1210 3 0 45.5482 62.0536 -115.85 + 87 298.373 1127 2 1 45.5837 62.0475 -144.45 + 87 138.324 1209 2 0 45.5862 62.0467 -145.85 + 87 329.299 1127 1 1 45.5998 62.0385 -174.45 + 87 397.279 1209 1 0 45.5959 62.0352 -175.85 + 87 109.13 1127 0 1 45.5121 61.9721 -204.45 + 87 263.243 1209 0 0 45.5059 61.9668 -205.85 + 87 99.0956 448 4 0 154.452 -90.35 -86.1446 + 87 128.416 1118 0 1 43.6665 60.7851 -204.45 + 87 185.224 1203 0 0 43.6181 60.7386 -205.85 + 87 1.88051 1448 0 0 17.2316 109.948 -206.25 + 87 153.543 1449 0 0 17.2286 109.95 -206.248 + 87 175.651 1128 0 1 45.6929 61.9874 -204.45 + 87 288.456 1211 2 0 45.3852 62.2713 -145.85 + 87 83.1175 1151 1 1 50.3034 61.7383 -174.45 + 87 48.5114 1152 1 1 50.45 61.8597 -174.724 + 87 150.751 1211 1 0 51.5559 62.2533 -175.85 + 87 243.266 1247 1 0 39.6512 69.5846 -176.25 + 87 59.3858 1248 1 0 39.3542 69.6501 -176.004 + 87 105.48 1092 1 1 38.5545 70.2783 -174.849 + 87 30.1815 1091 1 1 38.45 70.4701 -174.545 + 87 4.78498 387 3 0 138.324 -102.683 -116.25 + 87 231.015 386 3 0 138.357 -102.75 -116.232 + 87 69.3818 1016 3 0 52.0829 23.4487 -116.25 + 87 74.536 1015 3 0 52.1252 23.2497 -116.125 + 87 49.9164 1014 3 0 52.1978 23.05 -116.023 + 87 55.2391 1013 3 0 52.2293 22.85 -115.965 + 87 98.2769 1012 3 0 52.265 22.65 -115.943 + 87 48.2169 1011 3 0 52.2882 22.45 -115.976 + 87 63.0166 1010 3 0 52.3358 22.25 -115.968 + 87 49.6554 1009 3 0 52.4071 22.05 -115.92 + 87 15.6412 1008 3 0 52.5192 21.85 -115.856 + 87 89.5577 1170 3 1 54.1291 19.4118 -114.85 + 87 137.744 1171 3 1 54.25 19.2305 -114.761 + 87 81.1717 1172 3 1 54.4505 18.8672 -114.618 + 87 44.5428 1173 3 1 54.6501 18.684 -114.507 + 87 139.662 1123 6 1 44.6922 61.0789 -24.45 + 87 114.416 1204 6 0 44.6833 61.0413 -25.85 + 87 93.8416 1122 5 1 44.4569 59.6876 -54.45 + 87 91.8986 1121 5 1 44.45 59.6822 -54.5146 + 87 116.003 1197 5 0 44.301 59.5886 -55.85 + 87 144.595 1109 4 1 41.8918 57.6126 -84.45 + 87 198.492 1187 4 0 41.8488 57.4868 -85.85 + 87 93.4569 1103 3 1 40.6627 55.1055 -114.45 + 87 7.75013 1102 3 1 40.65 55.1041 -114.824 + 87 91.8685 1175 3 0 40.614 55.0978 -115.851 + 87 5.50653 1100 2 1 40.0544 54.4407 -144.45 + 87 112.417 1099 2 1 40.05 54.4464 -144.472 + 87 68.5382 1173 2 0 39.8003 54.808 -145.85 + 87 79.6693 1174 2 0 39.7724 54.85 -146.015 + 87 114.727 1074 1 1 34.9917 62.7283 -174.45 + 87 83.4738 1215 1 0 34.8004 63.1766 -175.85 + 87 47.8945 1216 1 0 34.7701 63.25 -176.082 + 87 77.1661 1058 0 1 31.699 73.062 -204.45 + 87 87.802 1057 0 1 31.65 73.1468 -204.684 + 87 32.9226 1267 0 0 31.4514 73.6016 -205.85 + 87 71.1377 1268 0 0 31.4291 73.65 -205.978 + 87 113.17 1119 4 0 23.2592 44.0002 -86.25 + 87 18.1683 1118 4 0 23.1575 43.8499 -85.8984 + 87 120.838 1014 4 1 22.8754 43.2714 -84.85 + 87 240.583 1013 4 1 22.85 43.2239 -84.7559 + 87 39.8484 1109 4 0 22.94 41.9584 -85.85 + 87 73.3365 1108 4 0 22.9847 41.85 -85.9173 + 87 86.8811 1107 4 0 23.0357 41.65 -85.9799 + 87 236.246 1106 4 0 23.0851 41.4497 -85.973 + 87 83.3674 1004 3 0 93.0539 21.0372 -116.25 + 87 113.443 629 3 0 145.135 -54.0885 -116.25 + 87 81.3895 628 3 0 145.312 -54.2501 -116.066 + 87 59.7408 627 3 0 145.379 -54.45 -116.012 + 87 104.543 626 3 0 145.322 -54.65 -115.915 + 87 117.274 625 3 0 145.183 -54.85 -115.986 + 87 235.176 624 3 0 145.337 -55.05 -116.084 + 87 162.507 1211 7 0 45.4607 62.3159 4.15 + 87 129.944 1112 6 1 42.5892 65.1457 -24.45 + 87 114.545 1226 6 0 42.6756 65.3514 -25.85 + 87 81.7482 1123 5 1 44.65 69.7786 -54.6032 + 87 150.775 1249 5 0 45.1289 69.8822 -55.8503 + 87 53.3901 1173 4 1 54.751 70.9469 -84.4501 + 87 103.751 1174 4 1 54.85 70.9036 -84.5657 + 87 11.6647 1175 4 1 55.05 70.8132 -84.8079 + 87 49.2403 1252 4 0 55.8533 70.4847 -85.85 + 87 156.581 1251 4 0 55.9369 70.4499 -85.9564 + 87 55.8537 1278 3 1 75.7739 61.1879 -114.45 + 87 94.4902 1279 3 1 75.85 61.1447 -114.568 + 87 16.4025 1203 3 0 76.6735 60.6722 -115.85 + 87 155.728 1202 3 0 76.7101 60.65 -115.91 + 87 5.7177 1360 2 1 92.3324 51.0152 -144.45 + 87 132.585 1361 2 1 92.35 51.0114 -144.486 + 87 0.27034 1362 2 1 92.55 50.9632 -144.849 + 87 141.65 1153 2 0 93.0908 50.823 -145.85 + 87 208.593 1436 1 1 107.388 46.375 -174.45 + 87 38.0978 1128 1 0 107.5 45.7086 -175.85 + 87 92.5923 1127 1 0 107.522 45.65 -175.984 + 87 54.6891 1468 0 1 113.781 32.9922 -204.45 + 87 178.392 1467 0 1 113.75 32.9567 -204.496 + 87 333.331 1466 0 1 113.55 32.7043 -204.765 + 87 54.8863 1058 0 0 112.603 31.7465 -205.85 + 87 82.5801 1057 0 0 112.511 31.65 -205.952 + 87 49.8288 1056 0 0 112.307 31.45 -206.181 + 87 272.113 1465 0 1 113.35 33.419 -204.676 + 87 31.5766 1096 3 1 39.2888 71.2522 -114.45 + 87 111.68 1095 3 1 39.25 71.2527 -114.535 + 87 176.52 1256 3 0 38.6002 71.3056 -115.85 + 87 2.43555 1077 3 0 -19.8195 35.4598 -116.25 + 87 126.859 1076 3 0 -19.8336 35.45 -116.243 + 87 101.654 1075 3 0 -20.1893 35.25 -116.052 + 87 33.8354 1074 3 0 -20.4173 35.0499 -115.916 + 87 56.0402 1251 2 0 29.6361 70.45 -145.942 + 87 13.5692 1084 2 1 36.9172 62.1018 -144.85 + 87 54.8274 1609 3 0 89.9326 141.968 -116.25 +Number of digits in this event = 49 +Using G4ParticleGun ... +6.04899 LIN +e- +Event: 88 +Number of tracker hits in this event = 84 + 88 132.582 582 10 1 -63.6396 66.2518 95.55 + 88 153.111 1231 10 0 -63.6397 66.2528 94.15 + 88 167.587 582 9 1 -63.6406 66.2718 65.55 + 88 140.517 1231 9 0 -63.6385 66.2725 64.15 + 88 105.344 582 8 1 -63.5943 66.2855 35.55 + 88 98.7291 1231 8 0 -63.5919 66.2861 34.15 + 88 148.972 582 7 1 -63.5399 66.3017 5.55 + 88 139.188 1231 7 0 -63.5379 66.3018 4.15 + 88 102.496 582 6 1 -63.493 66.3006 -24.45 + 88 453.046 1231 6 0 -63.4923 66.2999 -25.85 + 88 124.389 582 5 1 -63.4787 66.2886 -54.45 + 88 119.573 1231 5 0 -63.4792 66.2878 -55.85 + 88 105.337 582 4 1 -63.4899 66.2713 -84.45 + 88 124.158 1231 4 0 -63.4919 66.2712 -85.85 + 88 121.223 582 3 1 -63.5298 66.2653 -114.45 + 88 329.149 1231 3 0 -63.5315 66.265 -115.85 + 88 108.251 582 2 1 -63.5664 66.2598 -144.45 + 88 136.105 1231 2 0 -63.5705 66.2594 -145.85 + 88 113.894 581 1 1 -63.6574 66.2478 -174.45 + 88 134.766 1230 1 0 -63.6638 66.249 -175.85 + 88 113.452 581 0 1 -63.7956 66.2705 -204.45 + 88 118.991 1231 0 0 -63.8002 66.2691 -205.85 + 88 23.2197 1702 0 0 103.856 160.55 -205.859 + 88 251.154 582 0 1 -63.6067 66.1501 -204.45 + 88 259.607 1230 0 0 -63.5354 66.0758 -205.851 + 88 116.064 583 5 1 -63.45 66.307 -54.4692 + 88 5.4073 584 5 1 -63.2495 66.4973 -54.8296 + 88 36.2696 1234 5 0 -62.7056 67.002 -55.85 + 88 127.43 1235 5 0 -62.6563 67.0502 -55.9408 + 88 277.112 654 4 1 -49.1326 82.5917 -84.45 + 88 32.271 1326 4 0 -49.3438 85.3484 -85.85 + 88 52.99 1327 4 0 -49.3532 85.45 -85.9005 + 88 57.4967 1328 4 0 -49.3758 85.65 -85.999 + 88 65.3616 1329 4 0 -49.4033 85.85 -86.0816 + 88 67.8947 1330 4 0 -49.4531 86.0507 -86.1556 + 88 1.32536 1331 4 0 -49.5194 86.25 -86.2473 + 88 122.078 1571 4 0 -111.347 134.459 -86.25 + 88 39.5997 1570 4 0 -111.68 134.35 -85.9564 + 88 71.2183 336 4 1 -112.763 133.821 -84.85 + 88 463.147 335 4 1 -112.95 133.749 -84.6436 + 88 2.8429 1545 4 0 -113.004 129.157 -85.85 + 88 53.4927 1544 4 0 -113.003 129.15 -85.8521 + 88 52.246 1543 4 0 -113.012 128.95 -85.9048 + 88 76.3276 1542 4 0 -113.011 128.75 -85.9183 + 88 62.0572 1541 4 0 -113.02 128.55 -85.9464 + 88 58.8412 1540 4 0 -112.925 128.35 -85.9849 + 88 64.5605 1539 4 0 -112.768 128.15 -86.0137 + 88 63.2951 1538 4 0 -112.621 127.95 -86.0368 + 88 68.2872 1537 4 0 -112.462 127.75 -86.1028 + 88 16.4097 1536 4 0 -112.322 127.55 -86.2164 + 88 142.275 444 3 1 -91.2703 91.8885 -114.45 + 88 77.0331 443 3 1 -91.3503 91.5156 -114.72 + 88 185.179 1365 3 0 -92.9957 93.2085 -115.85 + 88 65.2166 1366 3 0 -93.3125 93.35 -116.072 + 88 249.398 580 1 1 -63.89 66.4446 -174.45 + 88 252.702 1231 1 0 -63.8503 66.3128 -175.85 + 88 108.736 595 0 1 -60.8838 64.4283 -204.45 + 88 4.64195 1219 0 0 -61.2051 63.8581 -205.85 + 88 102.045 1218 0 0 -61.2096 63.85 -205.871 + 88 8.35703 1217 0 0 -61.3625 63.65 -206.222 + 88 98.2435 1139 0 0 -73.5307 47.9662 -206.25 + 88 17.8577 1138 0 0 -73.5719 47.85 -205.917 + 88 109.359 531 0 1 -73.6719 47.613 -204.849 + 88 110.049 580 0 1 -64.0449 65.9602 -204.45 + 88 123.575 1228 0 0 -63.9737 65.7447 -205.85 + 88 109.521 581 6 1 -63.7146 66.343 -24.45 + 88 111.257 587 5 1 -62.6426 65.8043 -54.45 + 88 126.147 1228 5 0 -62.5099 65.7852 -55.85 + 88 153.37 600 4 1 -60.0019 65.6784 -84.4504 + 88 133.025 1228 4 0 -59.6905 65.6772 -85.85 + 88 44.1833 638 3 1 -52.2756 63.9966 -114.45 + 88 77.9499 639 3 1 -52.25 63.9799 -114.602 + 88 156.592 1218 3 0 -52.0315 63.8416 -115.85 + 88 127.199 662 2 1 -47.5438 61.0347 -144.45 + 88 113.312 1203 2 0 -47.4687 60.7839 -145.85 + 88 101.117 670 1 1 -45.9654 56.5848 -174.45 + 88 120.221 1181 1 0 -45.9436 56.3162 -175.85 + 88 22.4522 1180 1 0 -45.9384 56.25 -176.187 + 88 113.441 673 0 1 -45.3437 50.3536 -204.45 + 88 0.69124 1149 0 0 -45.2104 49.8517 -205.85 + 88 150.484 1148 0 0 -45.2099 49.85 -205.855 + 88 8.31158 1222 3 0 -53.7297 64.5426 -115.85 + 88 176.781 1146 3 0 -34.5043 49.4084 -116.25 + 88 167.921 1145 3 0 -34.8016 49.25 -116.146 +Number of digits in this event = 37 +Using G4ParticleGun ... +1.5237 LIN +e- +Event: 89 +Number of tracker hits in this event = 50 + 89 241.778 1176 9 1 55.264 -103.871 65.55 + 89 128.37 381 9 0 55.2693 -103.871 64.15 + 89 233.562 1176 8 1 55.3988 -103.934 35.55 + 89 117.306 381 8 0 55.407 -103.934 34.15 + 89 115.431 1177 7 1 55.5096 -103.863 5.55 + 89 160.618 381 7 0 55.5094 -103.855 4.15 + 89 134.517 1177 6 1 55.5246 -103.727 -24.45 + 89 105.708 382 6 0 55.5215 -103.723 -25.85 + 89 123.248 1176 5 1 55.3937 -103.76 -54.45 + 89 129.906 381 5 0 55.3934 -103.761 -55.85 + 89 98.3434 1176 4 1 55.3574 -103.812 -84.45 + 89 93.0553 381 4 0 55.3462 -103.806 -85.85 + 89 155.587 1175 3 1 55.1236 -103.691 -114.45 + 89 155.282 382 3 0 55.1278 -103.694 -115.85 + 89 314.77 1175 2 1 55.116 -103.77 -144.45 + 89 117.688 381 2 0 55.1115 -103.762 -145.85 + 89 109.07 1174 1 1 54.9867 -103.618 -174.45 + 89 133.935 382 1 0 54.9924 -103.631 -175.85 + 89 145.886 1174 0 1 55.0293 -103.912 -204.45 + 89 125.974 381 0 0 55.0133 -103.872 -205.85 + 89 50.4974 370 2 0 55.0771 -105.963 -145.85 + 89 68.3744 369 2 0 55.0799 -106.15 -145.962 + 89 134.179 368 2 0 55.0749 -106.35 -146.071 + 89 29.8447 367 2 0 55.0536 -106.55 -146.193 + 89 165.05 1146 1 1 49.2504 -156.184 -174.451 + 89 29.653 124 1 0 49.2791 -155.169 -175.85 + 89 185.48 125 1 0 49.2787 -155.15 -175.88 + 89 12.676 126 1 0 49.249 -154.95 -176.207 + 89 67.2294 1133 0 1 46.8375 -137.328 -204.45 + 89 190.357 1132 0 1 46.6497 -137.254 -204.518 + 89 49.8127 1131 0 1 46.45 -137.192 -204.557 + 89 52.4507 1130 0 1 46.25 -137.17 -204.624 + 89 117.05 1129 0 1 46.05 -137.185 -204.639 + 89 170.409 1128 0 1 45.8496 -137.231 -204.656 + 89 143.519 1127 0 1 45.6498 -137.3 -204.648 + 89 143.332 1126 0 1 45.45 -137.34 -204.634 + 89 155.13 1125 0 1 45.2494 -137.35 -204.652 + 89 278.198 1124 0 1 45.0499 -137.364 -204.624 + 89 143.486 1123 0 1 44.8496 -137.436 -204.589 + 89 87.5051 1122 0 1 44.65 -137.56 -204.509 + 89 138.907 204 0 0 46.1541 -139.217 -205.85 + 89 223.534 1177 8 1 55.45 -104.096 35.3359 + 89 191.757 1181 0 1 56.4282 -103.317 -204.45 + 89 40.2414 1182 0 1 56.45 -103.348 -204.707 + 89 110.322 383 0 0 56.525 -103.493 -205.85 + 89 236.246 384 0 0 56.2354 -103.241 -205.85 + 89 215.616 445 0 0 37.7979 -91.1047 -206.25 + 89 262.056 446 0 0 37.3674 -90.95 -206.113 + 89 128.184 189 0 0 70.0874 -142.209 -206.25 + 89 157.016 1042 2 1 28.65 -140.209 -144.829 +Number of digits in this event = 33 +Using G4ParticleGun ... +9.50737 LIN +e- +Event: 90 +Number of tracker hits in this event = 112 + 90 124.238 790 11 1 -21.8718 -65.1183 125.55 + 90 124.5 574 11 0 -21.8712 -65.1183 124.15 + 90 115.563 790 10 1 -21.854 -65.1148 95.55 + 90 104.99 574 10 0 -21.8539 -65.1155 94.15 + 90 114.252 790 9 1 -21.8539 -65.1336 65.55 + 90 133.851 574 9 0 -21.8537 -65.1347 64.15 + 90 183.602 791 8 1 -21.8477 -65.1618 35.55 + 90 130.911 574 8 0 -21.8487 -65.1637 34.15 + 90 122.059 790 7 1 -21.8683 -65.2073 5.55 + 90 365.599 574 7 0 -21.8687 -65.2081 4.15 + 90 274.449 790 6 1 -21.8905 -65.2222 -24.45 + 90 344.609 574 6 0 -21.8911 -65.2224 -25.85 + 90 129.772 790 5 1 -21.8996 -65.2217 -54.45 + 90 371.879 574 5 0 -21.9 -65.2233 -55.85 + 90 129.566 790 4 1 -21.9082 -65.258 -84.45 + 90 135.674 573 4 0 -21.9089 -65.2583 -85.85 + 90 386.544 790 3 1 -21.9172 -65.2555 -114.45 + 90 291.138 573 3 0 -21.9185 -65.255 -115.85 + 90 110.805 790 2 1 -21.9565 -65.2354 -144.45 + 90 419.567 574 2 0 -21.9583 -65.2311 -145.85 + 90 567.195 790 1 1 -21.9974 -65.148 -174.45 + 90 277.545 574 1 0 -21.9999 -65.1437 -175.85 + 90 124.072 789 0 1 -22.0533 -65.0459 -204.45 + 90 129.251 575 0 0 -22.0567 -65.0414 -205.85 + 90 19.2559 78 5 0 144.404 -164.55 -56.2397 + 90 10.9109 1668 3 1 153.75 -84.1299 -114.645 + 90 46.3341 731 2 0 61.7936 -33.7139 -146.25 + 90 186.284 732 2 0 61.7403 -33.65 -146.129 + 90 26.0885 733 2 0 61.5143 -33.45 -145.883 + 90 3.30024 1200 2 1 60.06 -32.0539 -144.85 + 90 100.115 1199 2 1 60.05 -32.0448 -144.843 + 90 75.3115 1198 2 1 59.85 -31.9329 -144.752 + 90 346.095 1197 2 1 59.65 -31.9228 -144.685 + 90 181.073 1196 2 1 59.45 -31.8969 -144.57 + 90 4.98064 746 2 0 61.1062 -30.85 -145.908 + 90 380.253 1195 2 1 59.2499 -31.9774 -144.591 + 90 159.105 1211 2 1 62.2927 -34.4488 -144.85 + 90 292.825 574 3 0 -22.0078 -65.2349 -115.85 + 90 243.268 784 2 1 -23.1923 -65.9102 -144.45 + 90 113.765 571 2 0 -23.314 -65.7982 -145.851 + 90 116.038 772 1 1 -25.495 -63.4233 -174.45 + 90 39.1637 583 1 0 -25.6043 -63.2671 -175.85 + 90 62.6645 584 1 0 -25.6173 -63.25 -176.008 + 90 155.96 758 0 1 -28.34 -60.1324 -204.45 + 90 25.2909 599 0 0 -28.3167 -60.2435 -205.85 + 90 91.6737 598 0 0 -28.3157 -60.25 -205.933 + 90 173.952 762 2 1 -27.4927 -67.9749 -144.45 + 90 134.671 557 2 0 -27.8986 -68.4963 -145.85 + 90 21.2382 710 1 1 -38.0133 -77.8244 -174.45 + 90 107.819 709 1 1 -38.05 -77.8409 -174.515 + 90 157.565 509 1 0 -38.7305 -78.1347 -175.85 + 90 115.288 636 0 1 -52.7248 -83.5515 -204.45 + 90 54.0871 635 0 1 -52.85 -83.3476 -204.671 + 90 31.2821 487 0 0 -53.4592 -82.511 -205.85 + 90 114.631 488 0 0 -53.5036 -82.4499 -205.938 + 90 7.9058 489 0 0 -53.6501 -82.25 -206.227 + 90 111.765 615 1 0 -22.4532 -57.0349 -176.25 + 90 70.6492 791 1 1 -21.85 -56.6768 -174.606 + 90 49.8804 790 8 1 -21.85 -65.1534 35.305 + 90 21.0005 579 8 0 -21.9815 -64.1064 34.1496 + 90 95.4761 580 8 0 -21.994 -64.05 34.0885 + 90 36.2938 581 8 0 -22.0957 -63.8499 33.8421 + 90 314.501 791 6 1 -21.7997 -65.1737 -24.45 + 90 297.85 791 5 1 -21.7013 -65.07 -54.45 + 90 119.13 792 4 1 -21.481 -65.0988 -84.45 + 90 320.904 574 4 0 -21.4651 -65.0957 -85.85 + 90 106.13 794 3 1 -21.2142 -65.0767 -114.45 + 90 155.444 797 2 1 -20.4914 -65.451 -144.45 + 90 98.1983 572 2 0 -20.472 -65.4715 -145.85 + 90 150.647 799 1 1 -20.2203 -65.8606 -174.45 + 90 119.612 570 1 0 -20.1764 -65.8596 -175.85 + 90 250.15 803 0 1 -19.3102 -65.7916 -204.45 + 90 260.645 571 0 0 -19.2845 -65.7961 -205.85 + 90 2.43653 256 2 0 25.6828 -128.95 -146.135 + 90 25.2569 255 2 0 25.6874 -128.95 -146.137 + 90 416.206 575 3 0 -21.1841 -65.05 -116.085 + 90 41.1806 576 3 0 -21.222 -64.85 -116.23 + 90 146.359 579 3 0 -44.4487 -64.113 -116.25 + 90 163.462 791 4 1 -21.7685 -65.15 -84.45 + 90 209.589 791 3 1 -21.7133 -65.0364 -114.45 + 90 115.783 792 2 1 -21.558 -64.8347 -144.45 + 90 103.402 576 2 0 -21.5475 -64.8215 -145.85 + 90 318.891 793 1 1 -21.3275 -64.5525 -174.45 + 90 105.837 577 1 0 -21.3193 -64.5358 -175.85 + 90 121.12 794 0 1 -21.1754 -64.2142 -204.45 + 90 145.366 579 0 0 -21.1748 -64.2028 -205.85 + 90 42.6953 531 0 0 45.2684 -73.8121 -206.25 + 90 306.663 506 1 0 -15.4154 -78.7046 -176.25 + 90 13.6751 787 0 0 -66.016 -22.4864 -206.25 + 90 97.4625 788 0 0 -66.0096 -22.45 -206.202 + 90 101.159 568 0 1 -66.3251 -21.8817 -204.85 + 90 73.935 567 0 1 -66.45 -21.7506 -204.517 + 90 96.8076 566 0 1 -66.65 -21.8117 -204.576 + 90 87.2445 786 0 0 -66.5765 -22.7495 -205.85 + 90 107.618 785 0 0 -66.5102 -22.8501 -205.983 + 90 38.3497 695 0 0 -59.9794 -40.9737 -206.25 + 90 117.243 694 0 0 -59.9511 -41.0503 -206.202 + 90 358.611 791 2 1 -21.7431 -65.2058 -144.45 + 90 117.148 572 1 0 -22.0571 -65.5343 -175.85 + 90 126.767 787 0 1 -22.6177 -65.7598 -204.45 + 90 23.1512 1060 8 0 -42.4736 32.1093 33.75 + 90 42.1808 607 11 1 -58.4894 120.701 125.15 + 90 137.148 797 0 1 -20.5242 -65.2161 -204.45 + 90 355.745 574 0 0 -20.4909 -65.2154 -205.85 + 90 153.787 901 1 0 63.783 0.25 -176.18 + 90 59.483 1208 1 1 61.65 0.876891 -174.652 + 90 115.184 902 1 0 63.988 0.45 -176.005 + 90 82.8869 798 0 1 -20.45 -65.1982 -204.557 + 90 24.271 799 0 1 -20.25 -65.2024 -204.786 + 90 13.2977 582 0 0 -14.3661 -63.6028 -206.25 + 90 294.729 581 0 0 -14.345 -63.65 -206.219 + 90 251.986 794 1 1 -21.25 -65.2526 -174.457 +Number of digits in this event = 55 +Using G4ParticleGun ... +1.49671 LIN +e- +Event: 91 +Number of tracker hits in this event = 26 + 91 115.042 1394 10 1 98.9687 -44.903 95.55 + 91 123.728 675 10 0 98.972 -44.9059 94.15 + 91 110.86 1394 9 1 99.0331 -44.9504 65.55 + 91 103.994 675 9 0 99.0404 -44.9596 64.15 + 91 171.414 1395 8 1 99.2068 -45.1371 35.55 + 91 157.257 674 8 0 99.2111 -45.1419 34.15 + 91 168.269 1395 7 1 99.3169 -45.2578 5.55 + 91 169.828 673 7 0 99.3077 -45.2685 4.15 + 91 122.798 1394 6 1 99.1218 -45.4851 -24.45 + 91 145.791 672 6 0 99.1077 -45.4993 -25.85 + 91 163.956 1393 5 1 98.8257 -45.7907 -54.45 + 91 112.777 671 5 0 98.8159 -45.8074 -55.85 + 91 128.641 1392 4 1 98.6336 -46.1531 -84.45 + 91 134.562 669 4 0 98.6175 -46.1724 -85.85 + 91 138.415 1390 3 1 98.2842 -46.5461 -114.45 + 91 124.037 667 3 0 98.2705 -46.5675 -115.85 + 91 117.127 1389 2 1 97.9771 -46.9847 -144.45 + 91 101.225 665 2 0 97.9642 -47.0023 -145.85 + 91 101.376 1387 1 1 97.6911 -47.3822 -174.45 + 91 112.144 663 1 0 97.6754 -47.402 -175.85 + 91 71.1678 1386 0 1 97.3527 -47.8144 -204.45 + 91 58.8013 1385 0 1 97.35 -47.8172 -204.641 + 91 172.554 661 0 0 97.3328 -47.8345 -205.85 + 91 177.556 1391 3 1 98.35 -46.5622 -114.762 + 91 11.237 560 3 0 113.919 -67.8717 -116.25 + 91 11.3227 561 3 0 113.95 -67.85 -116.242 +Number of digits in this event = 15 +Using G4ParticleGun ... +5.75398 LIN +e- +Event: 92 +Number of tracker hits in this event = 25 + 92 25.9628 1551 9 1 130.384 -35.2685 65.2391 + 92 160.567 723 9 0 130.384 -35.2684 64.15 + 92 200.924 1551 8 1 130.381 -35.2616 35.55 + 92 187.624 723 8 0 130.38 -35.261 34.15 + 92 162.996 1551 7 1 130.359 -35.2467 5.55 + 92 95.0498 724 7 0 130.357 -35.2453 4.15 + 92 120.208 1550 6 1 130.306 -35.2168 -24.45 + 92 113.735 724 6 0 130.305 -35.2158 -25.85 + 92 178.51 1550 5 1 130.278 -35.1853 -54.45 + 92 196.446 724 5 0 130.277 -35.1832 -55.85 + 92 108.11 1550 4 1 130.253 -35.1376 -84.45 + 92 210.158 724 4 0 130.253 -35.1361 -85.85 + 92 152.566 1550 3 1 130.235 -35.1084 -114.45 + 92 118.469 724 3 0 130.233 -35.1064 -115.85 + 92 230.406 1550 2 1 130.183 -35.061 -144.45 + 92 130.533 724 2 0 130.181 -35.0586 -145.85 + 92 173.445 1549 1 1 130.145 -35.0097 -174.45 + 92 128.683 725 1 0 130.143 -35.0083 -175.85 + 92 149.434 1549 0 1 130.095 -34.9942 -204.45 + 92 106.988 725 0 0 130.09 -34.9936 -205.85 + 92 102.448 1347 0 0 65.4976 89.4622 -206.25 + 92 182.965 1225 0 1 65.187 89.6315 -204.85 + 92 26.2526 1226 0 1 65.25 89.52 -204.532 + 92 26.8171 813 5 1 -17.25 -87.1104 -54.7409 + 92 124.083 349 5 0 75.1519 -110.181 -56.25 +Number of digits in this event = 19 +Using G4ParticleGun ... +6.92055 LIN +e- +Event: 93 +Number of tracker hits in this event = 53 + 93 107.737 707 10 1 -38.4533 -85.5881 95.55 + 93 111.753 472 10 0 -38.4529 -85.5881 94.15 + 93 123.724 708 9 1 -38.4466 -85.5842 65.55 + 93 182.151 472 9 0 -38.4472 -85.585 64.15 + 93 140.055 707 8 1 -38.4616 -85.5998 35.55 + 93 250.093 472 8 0 -38.4603 -85.6011 34.15 + 93 122.616 708 7 1 -38.4296 -85.6295 5.55 + 93 209.172 472 7 0 -38.4283 -85.6301 4.15 + 93 120.753 708 6 1 -38.3991 -85.6405 -24.45 + 93 128.695 472 6 0 -38.3988 -85.642 -25.85 + 93 390.485 708 5 1 -38.3909 -85.6708 -54.45 + 93 179.868 471 5 0 -38.3897 -85.6728 -55.85 + 93 254.417 708 4 1 -38.3655 -85.7176 -84.45 + 93 97.7826 471 4 0 -38.3682 -85.7133 -85.85 + 93 266.284 708 3 1 -38.4245 -85.626 -114.45 + 93 148.043 472 3 0 -38.4266 -85.6215 -115.85 + 93 126.76 707 2 1 -38.4721 -85.5213 -144.45 + 93 106.132 472 2 0 -38.4776 -85.5161 -145.85 + 93 122.281 707 1 1 -38.5854 -85.3603 -174.45 + 93 119.955 473 1 0 -38.589 -85.3517 -175.85 + 93 125.19 706 0 1 -38.6566 -85.1671 -204.45 + 93 118.777 474 0 0 -38.6635 -85.1578 -205.85 + 93 61.015 156 1 0 46.1769 -148.86 -176.25 + 93 129.33 354 4 0 -20.0867 -109.157 -86.25 + 93 24.853 806 4 1 -18.7187 -109.777 -84.85 + 93 100.09 807 4 1 -18.65 -109.816 -84.7708 + 93 76.7548 808 4 1 -18.4498 -109.92 -84.596 + 93 113.532 809 4 1 -18.2498 -109.986 -84.5252 + 93 183.612 650 3 0 91.3468 -50.05 -116.094 + 93 189.86 315 4 0 -31.8012 -117.081 -86.25 + 93 387.277 741 4 1 -31.657 -116.879 -84.85 + 93 42.3952 423 2 0 -44.3349 -95.512 -146.25 + 93 106.883 422 2 0 -44.3005 -95.55 -146.212 + 93 242.561 472 5 0 -38.3654 -85.6336 -55.85 + 93 187.763 707 4 1 -38.4681 -85.1949 -84.45 + 93 84.649 474 4 0 -38.4887 -85.1744 -85.85 + 93 114.824 705 3 1 -38.9595 -84.7326 -114.45 + 93 108.657 476 3 0 -38.9893 -84.713 -115.85 + 93 143.492 702 2 1 -39.6392 -84.2821 -144.45 + 93 119.135 479 2 0 -39.6626 -84.2173 -145.85 + 93 129.146 699 1 1 -40.1938 -83.0251 -174.45 + 93 267.112 485 1 0 -40.3047 -82.9715 -175.85 + 93 204.458 686 0 1 -42.6614 -82.1925 -204.45 + 93 108.456 488 0 0 -42.8191 -82.303 -205.85 + 93 105.264 475 4 0 -38.2806 -85.0296 -85.85 + 93 132.384 479 3 0 -38.3164 -84.0859 -115.85 + 93 30.2793 480 3 0 -38.3124 -84.05 -116.15 + 93 122.122 710 2 1 -38.009 -80.7484 -144.45 + 93 118.493 497 2 0 -38.0125 -80.5471 -145.85 + 93 258.912 709 1 1 -38.0537 -76.5544 -174.45 + 93 103.685 518 1 0 -38.0591 -76.3385 -175.85 + 93 177.273 710 0 1 -37.9749 -71.852 -204.45 + 93 139.824 542 0 0 -37.9573 -71.6371 -205.85 +Number of digits in this event = 33 +Using G4ParticleGun ... +4.92547 LIN +e- +Event: 94 +Number of tracker hits in this event = 24 + 94 188.753 959 9 1 11.9497 -130.907 65.55 + 94 110.488 246 9 0 11.9514 -130.907 64.15 + 94 149.62 959 8 1 11.9903 -130.927 35.55 + 94 134.241 246 8 0 11.9905 -130.928 34.15 + 94 104.873 959 7 1 11.9932 -130.946 5.55 + 94 148.591 246 7 0 11.9932 -130.947 4.15 + 94 99.1195 959 6 1 12.0012 -130.955 -24.45 + 94 124.471 245 6 0 12.0018 -130.954 -25.85 + 94 213.838 959 5 1 12.0162 -130.94 -54.45 + 94 172.665 246 5 0 12.0156 -130.939 -55.85 + 94 116.895 959 4 1 11.9949 -130.939 -84.45 + 94 134.952 246 4 0 11.9914 -130.941 -85.85 + 94 101.512 959 3 1 11.9201 -130.99 -114.45 + 94 116.605 245 3 0 11.9168 -130.992 -115.85 + 94 269.186 958 2 1 11.8493 -131.031 -144.45 + 94 130.183 245 2 0 11.8463 -131.034 -145.85 + 94 124.962 958 1 1 11.7841 -131.093 -174.45 + 94 229.518 245 1 0 11.7809 -131.096 -175.85 + 94 99.2156 958 0 1 11.722 -131.153 -204.45 + 94 151.803 244 0 0 11.7215 -131.156 -205.85 + 94 89.5538 959 2 1 11.8637 -131.046 -144.45 + 94 62.4434 960 2 1 12.05 -131.17 -144.685 + 94 90.3076 241 2 0 13.0075 -131.793 -145.85 + 94 51.8212 240 2 0 13.2394 -131.95 -146.102 +Number of digits in this event = 15 +Using G4ParticleGun ... +1.6854 LIN +e- +Event: 95 +Number of tracker hits in this event = 62 + 95 110.569 1488 9 1 117.921 -64.9224 65.55 + 95 131.508 575 9 0 117.92 -64.9289 64.15 + 95 112.873 1488 8 1 117.915 -65.0472 35.55 + 95 250.324 574 8 0 117.916 -65.0551 34.15 + 95 132.116 1488 7 1 117.918 -65.1925 5.55 + 95 107.687 574 7 0 117.919 -65.1931 4.15 + 95 101.053 1488 6 1 117.934 -65.1848 -24.45 + 95 109.86 574 6 0 117.926 -65.1738 -25.85 + 95 174.869 1488 5 1 117.806 -64.9428 -54.45 + 95 198.872 575 5 0 117.809 -64.9351 -55.85 + 95 128.49 1488 4 1 117.806 -64.7622 -84.45 + 95 108.544 576 4 0 117.808 -64.7495 -85.85 + 95 123.513 1488 3 1 117.887 -64.5051 -114.45 + 95 116.019 577 3 0 117.872 -64.5027 -115.85 + 95 139.149 1487 2 1 117.658 -64.3566 -144.45 + 95 241.041 578 2 0 117.674 -64.3658 -145.85 + 95 116.866 1488 1 1 117.886 -64.679 -174.45 + 95 124.178 576 1 0 117.842 -64.6949 -175.85 + 95 577.337 1484 0 1 116.962 -64.9804 -204.45 + 95 732.153 575 0 0 116.923 -64.982 -205.85 + 95 171.18 1487 5 1 117.75 -64.9215 -54.4671 + 95 164.604 1486 5 1 117.55 -64.9369 -54.786 + 95 394.254 1485 2 1 117.31 -64.0154 -144.45 + 95 225.006 580 2 0 117.3 -64.0044 -145.85 + 95 306.327 1483 1 1 116.86 -63.8901 -174.45 + 95 144.141 580 1 0 116.853 -63.9573 -175.85 + 95 109.08 572 0 0 117.038 -65.4613 -205.85 + 95 99.2672 577 1 0 116.805 -64.4608 -175.85 + 95 116.895 574 0 0 117.162 -65.05 -205.952 + 95 88.4834 576 0 0 117.396 -64.8499 -206.159 + 95 69.5311 582 0 0 93.5708 -63.5349 -206.25 + 95 87.6524 1485 0 1 117.15 -64.6291 -204.603 + 95 465.265 1486 0 1 117.35 -64.5842 -204.599 + 95 262.517 1489 6 1 117.968 -65.3192 -24.45 + 95 234.005 573 6 0 117.97 -65.3268 -25.85 + 95 205.118 1489 5 1 117.989 -65.5386 -54.45 + 95 134.678 572 5 0 117.995 -65.5452 -55.85 + 95 128.106 1489 4 1 118.131 -65.6832 -84.45 + 95 101.95 571 4 0 118.14 -65.6865 -85.85 + 95 114.586 1490 3 1 118.3 -65.7489 -114.45 + 95 105.636 571 3 0 118.299 -65.7562 -115.85 + 95 118.376 1490 2 1 118.295 -65.9131 -144.45 + 95 113.305 570 2 0 118.292 -65.9226 -145.85 + 95 149.338 1490 1 1 118.26 -66.1627 -174.45 + 95 105.009 569 1 0 118.239 -66.1772 -175.85 + 95 124.111 1488 0 1 117.924 -66.6753 -204.45 + 95 175.255 566 0 0 117.888 -66.6992 -205.85 + 95 244.289 393 1 0 -11.8007 -101.431 -176.25 + 95 114.469 574 5 0 117.977 -65.2118 -55.85 + 95 255.152 1490 4 1 118.214 -65.1572 -84.45 + 95 176.613 574 4 0 118.25 -65.2226 -85.85 + 95 123.22 1493 3 1 118.785 -66.4207 -114.45 + 95 36.7453 568 3 0 118.898 -66.4478 -115.85 + 95 86.8683 567 3 0 118.908 -66.45 -115.972 + 95 139.925 1503 2 1 120.825 -66.8764 -144.45 + 95 240.829 565 2 0 120.958 -66.8857 -145.85 + 95 142.908 1512 1 1 122.728 -67.4405 -174.451 + 95 116.554 562 1 0 122.763 -67.4507 -175.85 + 95 125.019 1517 0 1 123.647 -67.4306 -204.45 + 95 121.402 563 0 0 123.75 -67.4311 -205.85 + 95 55.1325 553 1 0 122.377 -69.4364 -175.85 + 95 289.281 552 1 0 122.372 -69.45 -175.862 +Number of digits in this event = 39 +Using G4ParticleGun ... +8.91921 LIN +e- +Event: 96 +Number of tracker hits in this event = 102 + 96 163.12 646 10 1 -50.8219 70.69 95.55 + 96 114.7 1253 10 0 -50.822 70.6914 94.15 + 96 107.188 646 9 1 -50.8266 70.7138 65.55 + 96 157.36 1253 9 0 -50.8276 70.7163 64.15 + 96 147.118 646 8 1 -50.8474 70.7691 35.55 + 96 122.758 1253 8 0 -50.8471 70.7748 34.15 + 96 127.297 646 7 1 -50.8466 70.8893 5.55 + 96 124.41 1254 7 0 -50.8471 70.8941 4.15 + 96 122.347 645 6 1 -50.8584 70.9947 -24.45 + 96 107.27 1254 6 0 -50.8588 70.9996 -25.85 + 96 221.616 645 5 1 -50.8701 71.102 -54.45 + 96 116.78 1255 5 0 -50.8691 71.1071 -55.85 + 96 321.503 646 4 1 -50.8478 71.2122 -84.45 + 96 223.101 1255 4 0 -50.8471 71.2165 -85.85 + 96 124.783 646 3 1 -50.8323 71.3025 -114.45 + 96 95.1736 1256 3 0 -50.8332 71.3078 -115.85 + 96 187.286 645 2 1 -50.8528 71.4189 -144.45 + 96 123.388 1256 2 0 -50.8529 71.4229 -145.85 + 96 356.633 645 1 1 -50.8596 71.5032 -174.45 + 96 310.801 1257 1 0 -50.8595 71.5078 -175.85 + 96 242.286 645 0 1 -50.858 71.6051 -204.45 + 96 117.067 1257 0 0 -50.8584 71.6154 -205.85 + 96 88.1055 1068 8 1 33.7214 160.499 35.15 + 96 64.6022 1704 8 0 32.5889 161.03 34.1498 + 96 63.9829 1056 8 1 31.3337 161.08 35.15 + 96 21.4402 1400 10 0 -15.6186 100.322 93.75 + 96 179.529 1401 10 0 -15.6509 100.35 93.8076 + 96 74.9983 814 10 1 -17.078 100.972 95.1502 + 96 53.3821 813 10 1 -17.25 101.039 95.3651 + 96 8.06322 931 4 0 -144.303 6.39871 -86.25 + 96 73.1165 175 4 1 -144.983 5.6027 -84.8498 + 96 237.91 176 4 1 -144.95 5.60216 -84.7301 + 96 58.6331 1023 0 0 -140.077 24.8237 -206.25 + 96 87.0781 1488 2 0 -56.8134 117.93 -146.25 + 96 126.274 1258 0 0 -50.8722 71.6852 -205.85 + 96 53.1569 1256 1 0 -50.8591 71.45 -176.065 + 96 334.886 646 0 1 -50.6731 70.2477 -204.45 + 96 123.51 1250 0 0 -50.603 70.1515 -205.85 + 96 147.069 1119 3 1 43.9169 175.408 -114.45 + 96 21.7109 1118 3 1 43.85 175.45 -114.52 + 96 8.73967 651 0 1 -49.7133 40.8018 -204.45 + 96 49.3763 1129 0 0 -36.3523 45.85 -206.175 + 96 337.488 646 5 1 -50.7994 70.6458 -54.4502 + 96 96.108 1250 5 0 -50.6441 70.15 -55.85 + 96 28.0588 1249 5 0 -50.6042 70.05 -56.1752 + 96 16.3588 660 4 1 -48.0162 61.9267 -84.45 + 96 94.0607 659 4 1 -48.05 61.9272 -84.4932 + 96 37.9686 658 4 1 -48.25 61.9267 -84.7513 + 96 151.686 1209 4 0 -49.086 61.8862 -85.85 + 96 11.6134 562 3 1 -67.6185 59.2489 -114.45 + 96 79.5263 561 3 1 -67.65 59.2738 -114.475 + 96 131.865 560 3 1 -67.8503 59.429 -114.633 + 96 36.2479 559 3 1 -68.0502 59.5854 -114.776 + 96 97.5637 1203 3 0 -69.489 60.738 -115.85 + 96 124.472 1204 3 0 -69.6405 60.85 -115.953 + 96 58.2137 1205 3 0 -69.9177 61.05 -116.139 + 96 11.5271 348 2 1 -110.512 94.3143 -144.45 + 96 170.534 347 2 1 -110.55 94.3003 -144.48 + 96 34.2217 346 2 1 -110.75 94.1909 -144.729 + 96 157.491 1368 2 0 -111.665 93.8949 -145.85 + 96 44.8505 213 1 1 -137.513 89.0401 -174.45 + 96 92.7706 212 1 1 -137.55 89.099 -174.563 + 96 41.0222 1348 1 0 -137.875 89.778 -175.85 + 96 75.6503 1349 1 0 -137.917 89.85 -176 + 96 155.956 632 5 1 -53.5173 -101.305 -54.85 + 96 167.503 1253 5 0 -50.7778 70.6921 -55.85 + 96 90.9079 1253 4 0 -50.668 70.7347 -85.85 + 96 116.396 647 3 1 -50.5628 70.7922 -114.45 + 96 127.851 1253 3 0 -50.5553 70.7946 -115.85 + 96 207.571 648 2 1 -50.4055 70.8428 -144.45 + 96 122.199 1253 2 0 -50.4002 70.8424 -145.85 + 96 149.416 648 1 1 -50.2937 70.8248 -174.45 + 96 114.656 1253 1 0 -50.289 70.8271 -175.85 + 96 106.506 649 0 1 -50.1963 70.8757 -204.45 + 96 205.558 1254 0 0 -50.1913 70.8793 -205.85 + 96 382.439 737 1 1 -32.5968 17.8462 -174.45 + 96 573.113 738 1 1 -32.45 16.9809 -174.725 + 96 3.38822 739 1 1 -32.25 16.1661 -174.733 + 96 83.8769 648 3 1 -50.4127 70.7568 -114.45 + 96 71.8085 649 3 1 -50.25 70.65 -114.571 + 96 67.0155 650 3 1 -50.05 70.5332 -114.678 + 96 397.505 1249 3 0 -48.9818 69.9763 -115.85 + 96 54.4396 659 3 1 -48.1724 70.1069 -114.85 + 96 101.329 658 3 1 -48.25 70.0759 -114.663 + 96 98.8329 657 3 1 -48.4504 70.0617 -114.463 + 96 209.601 656 3 1 -48.65 70.1174 -114.626 + 96 257.599 655 3 1 -48.85 69.6706 -114.759 + 96 41.9568 1283 0 0 -12.0615 76.6945 -206.25 + 96 47.3956 429 3 1 -94.337 123.326 -114.45 + 96 206.824 428 3 1 -94.35 123.272 -114.53 + 96 17.1531 427 3 1 -94.55 123.295 -114.582 + 96 32.3852 647 4 1 -50.65 70.7948 -84.7106 + 96 41.1081 697 3 1 -40.5264 81.4267 -114.45 + 96 80.489 698 3 1 -40.45 81.4159 -114.543 + 96 13.3545 699 3 1 -40.25 81.4021 -114.804 + 96 216.41 1307 3 0 -39.3945 81.4554 -115.85 + 96 64.5731 867 2 1 -6.59139 82.4223 -144.45 + 96 105.307 868 2 1 -6.45 82.6045 -144.593 + 96 51.2415 869 2 1 -6.24992 82.7904 -144.791 + 96 49.4965 1317 2 0 -4.81484 83.5729 -145.85 + 96 150.053 1318 2 0 -4.66384 83.65 -145.962 + 96 64.3742 1319 2 0 -4.38439 83.85 -146.187 +Number of digits in this event = 46 +Using G4ParticleGun ... +6.21673 LIN +e- +Event: 97 +Number of tracker hits in this event = 40 + 97 116.271 1118 10 1 43.6631 102.891 95.55 + 97 175.775 1413 10 0 43.663 102.891 94.15 + 97 106.953 1118 9 1 43.6532 102.895 65.55 + 97 111.565 1413 9 0 43.6533 102.895 64.15 + 97 109.017 1118 8 1 43.6542 102.883 35.55 + 97 163.043 1413 8 0 43.6532 102.881 34.15 + 97 101.633 1117 7 1 43.6319 102.847 5.55 + 97 107.794 1413 7 0 43.6307 102.845 4.15 + 97 95.4019 1117 6 1 43.6017 102.786 -24.45 + 97 97.0242 1413 6 0 43.6005 102.784 -25.85 + 97 99.5093 1117 5 1 43.5801 102.75 -54.45 + 97 246.886 1413 5 0 43.58 102.752 -55.85 + 97 116.003 1117 4 1 43.5842 102.794 -84.45 + 97 101.124 1413 4 0 43.5837 102.8 -85.85 + 97 128.661 1117 3 1 43.5843 102.904 -114.45 + 97 139.11 1413 3 0 43.5861 102.905 -115.85 + 97 103.435 1117 2 1 43.6236 102.919 -144.45 + 97 156.801 1413 2 0 43.6223 102.922 -145.85 + 97 147.132 1117 1 1 43.6 102.994 -174.45 + 97 107.287 1414 1 0 43.6047 102.997 -175.85 + 97 200.832 1118 0 1 43.7002 103.059 -204.45 + 97 269.159 1414 0 0 43.7063 103.064 -205.85 + 97 38.5461 1639 0 0 139.789 147.95 -205.949 + 97 156.475 1198 0 1 59.6827 124.154 -204.45 + 97 171.952 1199 0 1 59.85 124.151 -204.594 + 97 133.696 1117 0 1 43.5588 103.009 -204.45 + 97 6.34935 591 13 0 -39.1108 -61.7463 183.75 + 97 108.678 590 13 0 -39.1678 -61.85 184.006 + 97 50.2873 589 13 0 -39.0837 -62.05 184.123 + 97 213.982 703 13 1 -39.377 -63.0891 185.15 + 97 310.285 702 13 1 -39.45 -63.3229 185.255 + 97 87.7795 1489 1 0 61.8843 118.047 -176.25 + 97 39.5926 1490 1 0 62.0509 118.15 -175.992 + 97 28.6388 1213 1 1 62.8116 118.195 -174.85 + 97 110.652 1214 1 1 62.85 118.204 -174.789 + 97 368.177 1215 1 1 63.1892 118.387 -174.45 + 97 109.909 1629 3 0 65.7156 145.95 -116.196 + 97 73.2197 1630 3 0 65.7798 146.15 -115.919 + 97 142.207 1235 3 1 67.0937 144.332 -114.85 + 97 16.8545 1654 8 0 54.1642 151.12 33.7502 +Number of digits in this event = 19 +Using G4ParticleGun ... +4.60653 LIN e- Event: 98 -Number of tracker hits in this event = 58 - 98 145.165 1405 10 1 101.193 -21.9404 95.55 - 98 128.185 790 10 0 101.192 -21.9422 94.15 - 98 120.306 1405 9 1 101.161 -21.9744 65.55 - 98 140.97 790 9 0 101.16 -21.9735 64.15 - 98 201.304 1404 8 1 101.147 -21.9538 35.55 - 98 111.217 790 8 0 101.148 -21.9549 34.15 - 98 325.661 1405 7 1 101.188 -21.9852 5.55 - 98 176.823 790 7 0 101.19 -21.9887 4.15 - 98 119.236 1405 6 1 101.204 -22.0792 -24.45 - 98 100.82 789 6 0 101.206 -22.0828 -25.85 - 98 242.525 1405 5 1 101.256 -22.1641 -54.45 - 98 122.643 789 5 0 101.261 -22.1675 -55.85 - 98 102.278 1406 4 1 101.373 -22.2246 -84.45 - 98 125.617 789 4 0 101.379 -22.2258 -85.85 - 98 114.158 1406 3 1 101.503 -22.228 -114.45 - 98 101.364 789 3 0 101.508 -22.2281 -115.85 - 98 118.387 1407 2 1 101.609 -22.2246 -144.45 - 98 118.839 789 2 0 101.608 -22.2254 -145.85 - 98 202.834 1407 1 1 101.584 -22.2126 -174.45 - 98 155.298 789 1 0 101.583 -22.2131 -175.85 - 98 111.08 1406 0 1 101.429 -22.2684 -204.45 - 98 143.858 788 0 0 101.389 -22.2734 -205.85 - 98 45.3361 939 0 0 156.54 7.85 -205.963 - 98 138.725 1692 0 1 158.613 10.0393 -204.85 - 98 206.403 1341 0 1 88.45 -4.30651 -204.727 - 98 20.6393 1342 0 1 88.45 -4.30413 -204.721 - 98 190.963 737 0 0 157.35 -32.4903 -206.25 - 98 125.584 738 0 0 157.527 -32.45 -206.013 - 98 170.152 1405 8 1 101.187 -21.9333 35.55 - 98 20.8599 781 8 0 100.242 -23.7916 34.1496 - 98 95.1477 780 8 0 100.227 -23.8503 34.1053 - 98 123.163 779 8 0 100.247 -24.0501 34.0478 - 98 127.887 778 8 0 100.081 -24.2502 34.0816 - 98 71.1756 1391 8 1 98.4338 -23.9943 35.15 - 98 219.128 1404 6 1 101.065 -22.0041 -24.45 - 98 242.592 790 6 0 101.058 -22.0044 -25.85 - 98 317.549 1403 5 1 100.885 -22.0383 -54.45 - 98 345.558 790 5 0 100.877 -22.0368 -55.85 - 98 282.12 1402 4 1 100.693 -21.9996 -84.45 - 98 97.1127 790 4 0 100.679 -22.0019 -85.85 - 98 123.638 1401 3 1 100.391 -22.0393 -114.45 - 98 124.727 790 3 0 100.375 -22.0371 -115.85 - 98 128.086 1399 2 1 100.024 -21.9848 -144.45 - 98 98.1653 790 2 0 100.012 -21.9842 -145.85 - 98 151.165 1398 1 1 99.7599 -21.9744 -174.45 - 98 92.404 790 1 0 99.7471 -21.9679 -175.85 - 98 110.13 1396 0 1 99.4872 -21.8289 -204.45 - 98 132.707 791 0 0 99.4699 -21.8232 -205.85 - 98 107.368 791 4 0 100.709 -21.8099 -85.85 - 98 107.17 1402 3 1 100.591 -21.6264 -114.45 - 98 171.046 792 3 0 100.584 -21.6278 -115.85 - 98 98.4973 1401 2 1 100.462 -21.6581 -144.45 - 98 121.524 791 2 0 100.456 -21.6615 -145.85 - 98 102.952 1400 1 1 100.343 -21.7411 -174.45 - 98 146.378 791 1 0 100.336 -21.7371 -175.85 - 98 125.961 1400 0 1 100.163 -21.6568 -204.45 - 98 116.758 792 0 0 100.159 -21.6418 -205.85 - 98 205.035 1182 0 1 56.4745 -132.942 -204.85 -Number of digits in this event = 38 +Number of tracker hits in this event = 66 + 98 174.091 448 10 1 -90.4398 -23.8855 95.55 + 98 143.772 780 10 0 -90.4377 -23.8864 94.15 + 98 163.024 448 9 1 -90.3964 -23.9015 65.55 + 98 234.879 780 9 0 -90.3951 -23.9006 64.15 + 98 112.562 448 8 1 -90.3661 -23.8833 35.55 + 98 172.913 780 8 0 -90.3638 -23.8807 34.15 + 98 161.864 449 7 1 -90.3267 -23.8342 5.55 + 98 104.058 781 7 0 -90.3244 -23.8324 4.15 + 98 327.952 449 6 1 -90.2827 -23.7919 -24.45 + 98 100.164 781 6 0 -90.2835 -23.7881 -25.85 + 98 133.714 449 5 1 -90.3113 -23.7021 -54.45 + 98 102.074 781 5 0 -90.312 -23.7006 -55.85 + 98 212.352 449 4 1 -90.3217 -23.6762 -84.45 + 98 259.324 781 4 0 -90.3251 -23.6753 -85.85 + 98 156.234 448 3 1 -90.395 -23.6615 -114.45 + 98 121.239 781 3 0 -90.4023 -23.662 -115.85 + 98 124.737 448 2 1 -90.5471 -23.6855 -144.45 + 98 297.745 781 2 0 -90.5534 -23.6919 -145.85 + 98 102.96 447 1 1 -90.6841 -23.8124 -174.45 + 98 98.9207 781 1 0 -90.6875 -23.8191 -175.85 + 98 124.903 446 0 1 -90.7588 -23.9399 -204.45 + 98 117.378 780 0 0 -90.7635 -23.9474 -205.85 + 98 94.2367 803 5 0 -53.2791 -19.2688 -56.25 + 98 112.448 461 5 1 -87.7836 -23.8291 -54.45 + 98 144.255 779 5 0 -87.8081 -24.0856 -55.85 + 98 124.295 745 4 0 -90.2413 -30.9877 -85.8509 + 98 86.3051 744 4 0 -90.2456 -31.0502 -86.2252 + 98 98.9615 443 3 1 -91.3616 -34.7705 -114.45 + 98 69.6561 442 3 1 -91.55 -34.7795 -114.685 + 98 139.907 725 3 0 -92.4904 -34.9164 -115.85 + 98 69.3167 325 2 1 -115.051 -37.0598 -144.45 + 98 62.0644 324 2 1 -115.15 -37.0556 -144.654 + 98 143.152 715 2 0 -115.815 -36.9779 -145.85 + 98 94.5504 228 1 1 -134.373 -34.7706 -174.45 + 98 40.9851 227 1 1 -134.55 -34.6615 -174.718 + 98 76.9923 729 1 0 -135.341 -34.1385 -175.85 + 98 161.787 730 1 0 -135.465 -34.05 -176.041 + 98 83.1307 743 4 0 -90.194 -31.25 -86.1182 + 98 99.0665 684 4 0 6.60514 -43.2141 -86.25 + 98 185.967 683 4 0 6.62614 -43.25 -86.1909 + 98 44.0916 448 6 1 -90.35 -23.76 -24.7271 + 98 134.222 782 6 0 -90.6071 -23.5881 -25.85 + 98 44.8992 412 5 1 -97.7038 -18.2855 -54.4502 + 98 84.7875 411 5 1 -97.75 -18.2299 -54.5669 + 98 60.0957 812 5 0 -98.3474 -17.5667 -55.85 + 98 92.8583 813 5 0 -98.4428 -17.45 -56.0544 + 98 120.637 344 4 1 -111.236 -0.157503 -84.45 + 98 0.269934 906 4 0 -111.607 1.44871 -85.85 + 98 76.7107 907 4 0 -111.608 1.45 -85.8511 + 98 85.9891 908 4 0 -111.658 1.65 -86.0167 + 98 23.1657 909 4 0 -111.717 1.85 -86.1903 + 98 5.93787 295 3 1 -121.138 33.105 -114.45 + 98 149.634 294 3 1 -121.15 33.1176 -114.476 + 98 79.2445 1068 3 0 -121.853 33.7349 -115.85 + 98 55.2206 1069 3 0 -121.992 33.8501 -116.069 + 98 42.8823 192 2 1 -141.709 46.8092 -144.45 + 98 107.591 191 2 1 -141.75 46.8998 -144.578 + 98 75.7873 1140 2 0 -142.128 48.0798 -145.85 + 98 69.3729 1141 2 0 -142.182 48.25 -146.022 + 98 8.56099 1142 2 0 -142.246 48.45 -146.234 + 98 79.3783 1393 2 0 -151.052 98.7864 -146.25 + 98 127.003 1394 2 0 -151.073 98.95 -146.066 + 98 32.0638 144 2 1 -151.323 99.849 -144.85 + 98 209.311 143 2 1 -151.35 99.9361 -144.728 + 98 154.354 910 2 0 -168.376 2.17644 -146.25 + 98 117.63 911 2 0 -168.7 2.25 -146.092 +Number of digits in this event = 29 Using G4ParticleGun ... -2.46659 LIN +1.94134 LIN e- Event: 99 -Number of tracker hits in this event = 102 - 99 348.447 789 11 1 -22.2236 63.7129 125.55 - 99 106.753 1218 11 0 -22.2233 63.7152 124.15 - 99 177.668 789 10 1 -22.2172 63.7674 95.55 - 99 126.571 1218 10 0 -22.2182 63.7722 94.15 - 99 112.76 789 9 1 -22.2335 63.8673 65.55 - 99 142.465 1219 9 0 -22.2364 63.8684 64.15 - 99 126.847 788 8 1 -22.2813 63.9025 35.55 - 99 108.658 1219 8 0 -22.279 63.9017 34.15 - 99 266.067 789 7 1 -22.2205 63.873 5.55 - 99 108.56 1219 7 0 -22.2184 63.8657 4.15 - 99 118.661 789 6 1 -22.1305 63.5779 -24.45 - 99 132.43 1217 6 0 -22.1262 63.562 -25.85 - 99 123.534 790 5 1 -22.0219 63.2457 -54.45 - 99 129.273 1215 5 0 -22.0118 63.2291 -55.85 - 99 159.876 791 4 1 -21.7984 62.8741 -84.45 - 99 95.1054 1214 4 0 -21.7868 62.86 -85.85 - 99 241.976 792 3 1 -21.5487 62.5798 -114.45 - 99 280.191 1212 3 0 -21.5396 62.5644 -115.85 - 99 126.571 793 2 1 -21.3488 62.2542 -144.45 - 99 154.36 1210 2 0 -21.3375 62.2391 -145.85 - 99 122.355 794 1 1 -21.1078 61.9108 -174.45 - 99 101.38 1209 1 0 -21.0932 61.8847 -175.85 - 99 231.29 796 0 1 -20.8302 61.3197 -204.45 - 99 221.752 1206 0 0 -20.8141 61.2878 -205.85 - 99 296.489 1195 8 0 22.7161 59.1368 33.75 - 99 1.77566 1019 4 0 -154.375 23.9431 -86.25 - 99 109.672 1211 3 0 -21.6456 62.45 -115.968 - 99 69.3593 795 3 1 -20.8965 61.6001 -114.85 - 99 73.013 1206 3 0 -20.7229 61.37 -115.85 - 99 128.441 796 3 1 -20.85 61.5923 -114.739 - 99 142.767 1216 7 0 -22.1232 63.3769 4.15 - 99 27.407 1215 7 0 -22.1553 63.2498 3.84221 - 99 103.278 1173 7 0 -33.6703 54.8122 3.7512 - 99 66.3909 728 7 1 -34.3267 54.727 5.15 - 99 48.0693 727 7 1 -34.45 54.7062 5.41837 - 99 134.599 1154 8 0 -42.5184 50.9952 33.7502 - 99 170.829 689 8 1 -42.1379 49.9697 35.15 - 99 6.81294 690 8 1 -42.0499 49.4675 35.5406 - 99 360.361 789 4 1 -22.0984 64.0749 -84.45 - 99 258.967 1220 4 0 -22.1094 64.0851 -85.85 - 99 147.5 788 3 1 -22.28 64.0555 -114.45 - 99 125.603 1220 3 0 -22.2934 64.0871 -115.85 - 99 380.716 788 2 1 -22.2867 64.7058 -144.45 - 99 201.404 1224 2 0 -22.1986 64.8564 -145.85 - 99 125.617 797 1 1 -20.5061 67.9099 -174.45 - 99 137.032 1240 1 0 -20.3755 68.0645 -175.85 - 99 153.603 812 0 1 -17.6187 71.1324 -204.45 - 99 176.528 1256 0 0 -17.5586 71.2896 -205.85 - 99 143.733 1223 2 0 -22.1887 64.8498 -145.947 - 99 328.9 1225 3 0 -20.7904 65.1761 -115.85 - 99 176.854 792 2 1 -21.4714 67.8759 -144.45 - 99 78.3946 1239 2 0 -21.4675 68.0244 -145.85 - 99 48.8291 1240 2 0 -21.4662 68.05 -146.084 - 99 112.858 791 1 1 -21.7347 71.1056 -174.45 - 99 144.011 1256 1 0 -21.913 71.3123 -175.85 - 99 71.264 772 0 1 -25.604 75.7032 -204.45 - 99 32.7927 771 0 1 -25.65 75.7402 -204.703 - 99 100.252 1279 0 0 -25.8634 75.9124 -205.85 - 99 215.895 788 5 1 -22.4364 63.8594 -54.45 - 99 36.9917 787 5 1 -22.45 63.8447 -54.7134 - 99 116.631 1218 5 0 -22.5062 63.7823 -55.85 - 99 77.8752 779 4 1 -24.2258 62.1599 -84.45 - 99 47.0571 778 4 1 -24.25 62.1521 -84.6961 - 99 116.812 1210 4 0 -24.3758 62.1178 -85.85 - 99 108.986 763 3 1 -27.3186 61.3318 -114.45 - 99 158.044 1205 3 0 -27.4517 61.2499 -115.85 - 99 118.795 744 2 1 -31.1239 59.4007 -144.45 - 99 116.304 1195 2 0 -31.5319 59.1818 -145.85 - 99 131.245 700 1 1 -39.8723 54.9213 -174.45 - 99 176.044 1174 1 0 -40.2633 54.8814 -175.85 - 99 4.90945 659 0 1 -48.2463 53.0585 -204.45 - 99 133.775 658 0 1 -48.25 53.0579 -204.459 - 99 132.497 1164 0 0 -48.8625 52.9502 -205.85 - 99 122.275 1277 1 0 -23.1705 75.5063 -176.25 - 99 256.716 1278 1 0 -23.0931 75.65 -176.061 - 99 143.356 1219 5 0 -22.4261 63.8871 -55.85 - 99 117.361 1221 4 0 -22.2042 64.4316 -85.85 - 99 185.726 791 3 1 -21.7917 65.2905 -114.45 - 99 138.282 1226 3 0 -21.787 65.3278 -115.85 - 99 256.062 789 2 1 -22.1582 65.7612 -144.45 - 99 109.006 1228 2 0 -22.1243 65.7687 -145.85 - 99 106.335 792 1 1 -21.5672 65.5451 -174.45 - 99 166.709 1227 1 0 -21.3092 65.4707 -175.85 - 99 36.6091 821 0 1 -15.6619 63.9894 -204.45 - 99 83.077 822 0 1 -15.65 63.9721 -204.594 - 99 148.495 1218 0 0 -15.5457 63.8061 -205.85 - 99 37.8184 1631 2 0 -59.9412 146.351 -146.25 - 99 37.2166 1630 2 0 -59.9658 146.35 -146.183 - 99 63.4719 787 2 1 -22.45 65.9049 -144.762 - 99 108.006 1230 2 0 -21.3018 66.1941 -145.85 - 99 11.9653 790 3 1 -21.8644 65.2476 -114.45 - 99 16.5468 793 3 1 -21.4497 65.4773 -114.824 - 99 28.9184 808 3 1 -18.3084 65.1782 -114.85 - 99 72.5149 809 3 1 -18.25 65.189 -114.803 - 99 93.1224 810 3 1 -18.05 65.0557 -114.765 - 99 493.79 811 3 1 -17.8499 64.9576 -114.549 - 99 117.286 1415 4 0 -3.35891 103.158 -86.25 - 99 116.852 1710 3 0 58.0263 162.15 -115.935 - 99 146.608 1414 4 0 -3.34711 103.15 -85.9273 - 99 89.614 1208 11 0 -21.8886 61.8396 124.15 - 99 92.5605 1207 11 0 -22.0579 61.65 124 - 99 205.699 790 11 1 -22.05 63.2848 125.19 -Number of digits in this event = 57 +Number of tracker hits in this event = 44 + 99 136.209 532 8 1 -73.4721 120.294 35.55 + 99 115.068 1500 8 0 -73.4745 120.294 34.15 + 99 172.189 532 7 1 -73.5235 120.287 5.55 + 99 157.632 1500 7 0 -73.5248 120.287 4.15 + 99 307.908 532 6 1 -73.5564 120.293 -24.45 + 99 176.603 1500 6 0 -73.5581 120.29 -25.85 + 99 112.317 532 5 1 -73.6047 120.211 -54.45 + 99 250.381 1500 5 0 -73.6109 120.215 -55.85 + 99 95.4865 531 4 1 -73.7428 120.271 -84.45 + 99 140.835 1500 4 0 -73.7498 120.274 -85.85 + 99 110.428 530 3 1 -73.894 120.351 -114.45 + 99 111.024 1501 3 0 -73.898 120.352 -115.85 + 99 130.927 530 2 1 -73.9686 120.362 -144.45 + 99 111.717 1501 2 0 -73.9744 120.37 -145.85 + 99 115.053 529 1 1 -74.1027 120.528 -174.45 + 99 151.529 1501 1 0 -74.1138 120.539 -175.85 + 99 124.685 528 0 1 -74.3296 120.777 -204.45 + 99 108.406 1503 0 0 -74.3411 120.785 -205.85 + 99 116.485 1501 6 0 -73.5687 120.452 -25.8507 + 99 68.1644 522 5 1 -75.5464 127.398 -54.4503 + 99 113.05 521 5 1 -75.65 127.453 -54.5436 + 99 76.0772 520 5 1 -75.85 127.587 -54.6987 + 99 16.693 519 5 1 -76.05 127.705 -54.8249 + 99 4.80195 1542 5 0 -77.4065 128.741 -55.85 + 99 273.555 1543 5 0 -77.4178 128.75 -55.8588 + 99 82.166 1544 5 0 -77.7042 128.95 -56.0593 + 99 18.9974 1545 5 0 -77.9088 129.15 -56.2156 + 99 53.6275 355 4 1 -108.996 156.968 -84.45 + 99 72.6175 354 4 1 -109.15 156.917 -84.6208 + 99 37.6736 353 4 1 -109.35 156.852 -84.7803 + 99 304.595 1681 4 0 -110.849 156.457 -85.85 + 99 111.988 1680 4 0 -111.363 156.35 -85.9747 + 99 57.8793 1679 4 0 -111.55 156.15 -85.9632 + 99 225.474 340 4 1 -112.095 154.845 -84.85 + 99 30.4533 339 4 1 -112.15 154.794 -84.778 + 99 117.172 341 4 1 -111.95 154.924 -84.6822 + 99 133.406 533 6 1 -73.45 120.341 -24.5831 + 99 63.9513 1506 6 0 -72.7272 121.437 -25.8502 + 99 143.085 1507 6 0 -72.6645 121.55 -25.9833 + 99 33.6478 1508 6 0 -72.5559 121.75 -26.1829 + 99 9.10085 1614 6 0 -11.9343 142.963 -26.25 + 99 128.881 1613 6 0 -11.8946 142.95 -26.2274 + 99 300.951 1612 6 0 -11.445 142.75 -26.1746 + 99 140.869 1611 6 0 -10.9533 142.55 -26.0342 +Number of digits in this event = 20 Run terminated. Run Summary Number of events processed : 100 - User=47.780000s Real=48.106847s Sys=0.020000s + User=56.010000s Real=56.456758s Sys=0.040000s End of Run 2 Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 19 of which, static: 0 -Dynamic pools deleted: 19 / Total memory freed: 0.21 MB +Dynamic pools deleted: 19 / Total memory freed: 0.19 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/advanced/hadrontherapy/hadrontherapy.out b/examples/advanced/hadrontherapy/hadrontherapy.out index bf6161645f..3defb5d3ba 100644 --- a/examples/advanced/hadrontherapy/hadrontherapy.out +++ b/examples/advanced/hadrontherapy/hadrontherapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -586,17 +586,17 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 500 - User=5.400000s Real=5.566863s Sys=0.070000s + User=5.280000s Real=5.353012s Sys=0.050000s ... write Csv file : Hadrontherapy_h1_Ekin.csv - done ... write Csv file : Hadrontherapy_h1_Edep.csv - done ... write Csv files : - done Graphics systems deleted. Visualization Manager deleting... -The simulation took: 9.47318 s to run (real time) +The simulation took: 9.36765 s to run (real time) Dose is being written to Dose.out G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.45 MB +Dynamic pools deleted: 12 / Total memory freed: 0.39 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/advanced/human_phantom/human_phantom.out b/examples/advanced/human_phantom/human_phantom.out index 9f476ba1f2..da1bcfa011 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -80,19 +80,19 @@ MotherVolume: physicalWorld sensitivity : 0 Construct Head with mother physicalWorld Checking overlaps for volume physicalHead (G4UnionSolid) ... OK! -Volume of Head = 4657.34 cm^3 +Volume of Head = 4655.7 cm^3 Material of Head = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of Head = 4596.33 g +Mass of Head = 4594.71 g MotherVolume: physicalHead sensitivity : 0 Construct Skull with mother volume physicalHead Checking overlaps for volume physicalSkull (G4SubtractionSolid) ... OK! Skull created !!!!!! -Volume of Skull = 845.927 cm^3 +Volume of Skull = 845.339 cm^3 Material of Skull = skeleton Density of Material = 1.4862 g/cm^3 -Mass of Skull = 1257.22 g +Mass of Skull = 1256.34 g Construct Brain with mother physicalHead Checking overlaps for volume physicalBrain (G4Ellipsoid) ... OK! Volume of Brain = 1470.27 cm^3 @@ -167,28 +167,28 @@ sensitivity : 0 Construct UpperSpine with mother volume physicalHead Checking overlaps for volume physicalUpperSpine (G4SubtractionSolid) ... OK! UpperSpine created !!!!!! -Volume of UpperSpine = 126.361 cm^3 +Volume of UpperSpine = 126.526 cm^3 Material of UpperSpine = skeleton Density of Material = 1.4862 g/cm^3 -Mass of UpperSpine = 187.798 g +Mass of UpperSpine = 188.044 g MotherVolume: physicalTrunk sensitivity : 0 Construct LeftScapula with mother volume physicalTrunk Checking overlaps for volume physicalLeftScapula (G4SubtractionSolid) ... OK! LeftScapula created !!!!!! -Volume of LeftScapula = 100.174 cm^3 +Volume of LeftScapula = 99.759 cm^3 Material of LeftScapula = skeleton Density of Material = 1.4862 g/cm^3 -Mass of LeftScapula = 148.879 g +Mass of LeftScapula = 148.262 g MotherVolume: physicalTrunk sensitivity : 0 Construct RightScapula with mother volume physicalTrunk Checking overlaps for volume physicalRightScapula (G4SubtractionSolid) ... OK! RightScapula created !!!!!! -Volume of RightScapula = 101.994 cm^3 +Volume of RightScapula = 103.167 cm^3 Material of RightScapula = skeleton Density of Material = 1.4862 g/cm^3 -Mass of RightScapula = 151.584 g +Mass of RightScapula = 153.327 g Construct LeftAdrenal with mother physicalTrunk Checking overlaps for volume physicalLeftAdrenal (G4Ellipsoid) ... OK! Left LeftAdrenal created !!!!!! @@ -231,10 +231,10 @@ Mass of RightClavicle = 20.3099 g Construct SmallIntestine with mother volume physicalTrunk Checking overlaps for volume physicalSmallIntestine (G4SubtractionSolid) ... OK! SmallIntestine created !!!!!! -Volume of SmallIntestine = 1018.95 cm^3 +Volume of SmallIntestine = 1019.77 cm^3 Material of SmallIntestine = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of SmallIntestine = 1005.6 g +Mass of SmallIntestine = 1006.41 g Construct RibCage with mother volume physicalTrunk Checking overlaps for volume physicalRibCage (G4SubtractionSolid) ... OK! Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK! @@ -250,10 +250,10 @@ Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK! Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK! Checking overlaps for volume physicalRib (G4SubtractionSolid) ... OK! RibCage created !!!!!! -Volume of RibCage = 692.856 cm^3 +Volume of RibCage = 693.651 cm^3 Material of RibCage = skeleton Density of Material = 1.4862 g/cm^3 -Mass of RibCage = 1029.72 g +Mass of RibCage = 1030.9 g MotherVolume: physicalTrunk sensitivity : 0 Construct MiddleLowerSpine with mother volume physicalTrunk @@ -266,10 +266,10 @@ Mass of MiddleLowerSpine = 1120.57 g Construct Pelvis with mother volume physicalTrunk Checking overlaps for volume physicalPelvis (G4SubtractionSolid) ... OK! Pelvis created !!!!!! -Volume of Pelvis = 605.413 cm^3 +Volume of Pelvis = 605.932 cm^3 Material of Pelvis = skeleton Density of Material = 1.4862 g/cm^3 -Mass of Pelvis = 899.764 g +Mass of Pelvis = 900.536 g Construct Stomach with mother volume physicalTrunk Checking overlaps for volume physicalStomach (G4Ellipsoid) ... OK! Stomach created !!!!!! @@ -280,17 +280,17 @@ Mass of Stomach = 396.856 g Construct UpperLargeIntestine with mother volume physicalTrunk Checking overlaps for volume physicalUpperLargeIntestine (G4UnionSolid) ... OK! UpperLargeIntestine created !!!!!! -Volume of UpperLargeIntestine = 434.434 cm^3 +Volume of UpperLargeIntestine = 434.039 cm^3 Material of UpperLargeIntestine = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of UpperLargeIntestine = 428.743 g +Mass of UpperLargeIntestine = 428.353 g Construct LowerLargeIntestine with mother volume physicalTrunk Checking overlaps for volume physicalLowerLargeIntestine (G4UnionSolid) ... OK! LowerLargeIntestine created !!!!!! -Volume of LowerLargeIntestine = 344.701 cm^3 +Volume of LowerLargeIntestine = 343.562 cm^3 Material of LowerLargeIntestine = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of LowerLargeIntestine = 340.186 g +Mass of LowerLargeIntestine = 339.062 g Construct Spleen with mother volume physicalTrunk Checking overlaps for volume physicalSpleen (G4Ellipsoid) ... OK! Spleen created !!!!!! @@ -301,40 +301,40 @@ Mass of Spleen = 173.625 g Construct Pancreas with mother volume physicalTrunk Checking overlaps for volume physicalPancreas (G4SubtractionSolid) ... OK! Pancreas created !!!!!! -Volume of Pancreas = 60.9048 cm^3 +Volume of Pancreas = 61.0776 cm^3 Material of Pancreas = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of Pancreas = 60.1069 g +Mass of Pancreas = 60.2775 g Construct LeftKidney with mother volume physicalTrunk Checking overlaps for volume physicalLeftKidney (G4SubtractionSolid) ... OK! Left LeftKidney created !!!!!! -Volume of LeftKidney = 144.103 cm^3 +Volume of LeftKidney = 144.133 cm^3 Material of LeftKidney = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of LeftKidney = 142.215 g +Mass of LeftKidney = 142.245 g Construct RightKidney with mother volume physicalTrunk Checking overlaps for volume physicalRightKidney (G4SubtractionSolid) ... OK! RightKidney created !!!!!! -Volume of RightKidney = 144.185 cm^3 +Volume of RightKidney = 144.273 cm^3 Material of RightKidney = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of RightKidney = 142.297 g +Mass of RightKidney = 142.383 g Construct UrinaryBladder with mother volume physicalTrunk Checking overlaps for volume physicalUrinaryBladder (G4SubtractionSolid) ... OK! UrinaryBladder created !!!!!! -Volume of UrinaryBladder = 45.7174 cm^3 +Volume of UrinaryBladder = 45.7625 cm^3 Material of UrinaryBladder = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of UrinaryBladder = 45.1185 g +Mass of UrinaryBladder = 45.163 g MotherVolume: physicalWorld sensitivity : 0 Construct MaleGenitalia with mother volume physicalWorld Checking overlaps for volume physicalMaleGenitalia (G4SubtractionSolid) ... OK! MaleGenitalia created !!!!!! -Volume of MaleGenitalia = 229.61 cm^3 +Volume of MaleGenitalia = 229.44 cm^3 Material of MaleGenitalia = soft_tissue Density of Material = 0.9869 g/cm^3 -Mass of MaleGenitalia = 226.603 g +Mass of MaleGenitalia = 226.434 g MotherVolume: physicalWorld sensitivity : 0 Construct LeftTeste with mother volume physicalMaleGenitalia @@ -810,31 +810,31 @@ See commands in /vis/modeling/trajectories/ for other options. ### Run 0 start. Number of events = 100 Energy Total in Run:logicalBrain, ID: 0, Energy Deposition (MeV): 0 -Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 4.69457 +Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 4.39192 Energy Total in Run:logicalHeart, ID: 2, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftAdrenal, ID: 3, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftArmBone, ID: 4, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftBreast, ID: 5, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftClavicle, ID: 6, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftKidney, ID: 7, Energy Deposition (MeV): 0 -Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 7.51151 +Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 9.46308 Energy Total in Run:logicalLeftLegBone, ID: 9, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftLung, ID: 10, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftOvary, ID: 11, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftScapula, ID: 12, Energy Deposition (MeV): 0 Energy Total in Run:logicalLeftTeste, ID: 13, Energy Deposition (MeV): 0 Energy Total in Run:logicalLowerLargeIntestine, ID: 14, Energy Deposition (MeV): 0 -Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 1.9476 +Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 1.93927 Energy Total in Run:logicalMiddleLowerSpine, ID: 16, Energy Deposition (MeV): 0 Energy Total in Run:logicalPancreas, ID: 17, Energy Deposition (MeV): 0 Energy Total in Run:logicalPelvis, ID: 18, Energy Deposition (MeV): 0 -Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0.0129018 +Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightAdrenal, ID: 20, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightArmBone, ID: 21, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightBreast, ID: 22, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightClavicle, ID: 23, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightKidney, ID: 24, Energy Deposition (MeV): 0 -Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 10.4601 +Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 6.1743 Energy Total in Run:logicalRightLegBone, ID: 26, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightLung, ID: 27, Energy Deposition (MeV): 0 Energy Total in Run:logicalRightOvary, ID: 28, Energy Deposition (MeV): 0 @@ -846,11 +846,11 @@ Energy Total in Run:logicalSpleen, ID: 33, Energy Deposition (MeV): 0 Energy Total in Run:logicalStomach, ID: 34, Energy Deposition (MeV): 0 Energy Total in Run:logicalThymus, ID: 35, Energy Deposition (MeV): 0 Energy Total in Run:logicalThyroid, ID: 36, Energy Deposition (MeV): 0 -Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 25.6211 +Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 29.7901 Energy Total in Run:logicalUpperLargeIntestine, ID: 38, Energy Deposition (MeV): 0 Energy Total in Run:logicalUpperSpine, ID: 39, Energy Deposition (MeV): 0 Energy Total in Run:logicalUrinaryBladder, ID: 40, Energy Deposition (MeV): 0 Energy Total in Run:logicalUterus, ID: 41, Energy Deposition (MeV): 0 -Total Energy deposit in the body is: 50.2477 MeV +Total Energy deposit in the body is: 51.7587 MeV Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/advanced/iort_therapy/iort_therapy.out b/examples/advanced/iort_therapy/iort_therapy.out index 9eb38676d8..3e3fea34c0 100644 --- a/examples/advanced/iort_therapy/iort_therapy.out +++ b/examples/advanced/iort_therapy/iort_therapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -500,7 +500,7 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 2000 - User=11.530000s Real=12.040426s Sys=0.170000s + User=10.890000s Real=11.425052s Sys=0.170000s /score/dumpQuantityToFile boxMesh_1 dose dose.out Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out index 8fba2fb7fb..de59ba46d1 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1239,7 +1239,7 @@ Edep in FCAL1 FCAl2 : 19924.3 4.87868 Run terminated. Run Summary Number of events processed : 18 - User=9.560000s Real=9.619343s Sys=0.010000s + User=8.940000s Real=9.013551s Sys=0.010000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/advanced/medical_linac/medical_linac.out b/examples/advanced/medical_linac/medical_linac.out index bfe610862f..732436d45a 100644 --- a/examples/advanced/medical_linac/medical_linac.out +++ b/examples/advanced/medical_linac/medical_linac.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -883,10 +883,10 @@ Launched 50000 random primary particles Run terminated. Run Summary Number of events processed : 50000 - User=18.340000s Real=18.473930s Sys=0.030000s + User=17.290000s Real=17.460144s Sys=0.030000s PrimitiveScorer RUN PhantomSD,TotalDose Number of entries 166 -loop elapsed time [s] : 18.38 +loop elapsed time [s] : 17.32 Region -- -- appears in world volume @@ -1110,10 +1110,10 @@ Launched 50000 random primary particles Run terminated. Run Summary Number of events processed : 50000 - User=18.240000s Real=18.316144s Sys=0.010000s + User=17.210000s Real=17.304531s Sys=0.000000s PrimitiveScorer RUN PhantomSD,TotalDose Number of entries 117 -loop elapsed time [s] : 18.27 +loop elapsed time [s] : 17.24 ################ END NEW GEOMETRY ######################## /run/geometryModified @@ -1407,10 +1407,10 @@ Launched 50000 random primary particles Run terminated. Run Summary Number of events processed : 50000 - User=18.230000s Real=18.475172s Sys=0.030000s + User=17.180000s Real=17.303020s Sys=0.020000s PrimitiveScorer RUN PhantomSD,TotalDose Number of entries 71 -loop elapsed time [s] : 18.26 +loop elapsed time [s] : 17.22 Region -- -- appears in world volume @@ -1634,13 +1634,13 @@ Launched 50000 random primary particles Run terminated. Run Summary Number of events processed : 50000 - User=18.230000s Real=18.302562s Sys=0.010000s + User=17.170000s Real=17.279028s Sys=0.020000s PrimitiveScorer RUN PhantomSD,TotalDose Number of entries 128 -loop elapsed time [s] : 18.27 +loop elapsed time [s] : 17.22 ################ END NEW GEOMETRY ######################## -loop elapsed time [s] : 77.08 +loop elapsed time [s] : 72.9 G4 kernel has come to Quit state. UserDetectorConstruction deleted. diff --git a/examples/advanced/microbeam/microbeam.out b/examples/advanced/microbeam/microbeam.out index b2e98af3b9..c75a7721e5 100644 --- a/examples/advanced/microbeam/microbeam.out +++ b/examples/advanced/microbeam/microbeam.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -758,7 +758,7 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 eCoulombScattering : Emin= 0 eV Emax= 100 TeV G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model. See commands in /vis/modeling/trajectories/ for other options. -##### Create analysis manager 0x2a13060 +##### Create analysis manager 0x25934c0 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 1a9c8ba0d6..4d505d7b99 100644 --- a/examples/advanced/microelectronics/microelectronics.out +++ b/examples/advanced/microelectronics/microelectronics.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -192,13 +192,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics G4VisManager: Using G4TrajectoryDrawByCharge as fallback trajectory model. See commands in /vis/modeling/trajectories/ for other options. ### Run 0 starts. -##### Create analysis manager 0x12ffdd0 +##### Create analysis manager 0x1146e40 Using Root analysis manager ... open Root analysis file : microelectronics.root - done Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.006974s Sys=0.000000s + User=0.010000s Real=0.011922s Sys=0.000000s ... write Root file : microelectronics.root - done ... close Root file : microelectronics.root - done Number and type of particles created outside region "Target" : diff --git a/examples/advanced/nanobeam/nanobeam.out b/examples/advanced/nanobeam/nanobeam.out index 6bcb49d958..c5c592729b 100644 --- a/examples/advanced/nanobeam/nanobeam.out +++ b/examples/advanced/nanobeam/nanobeam.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -208,7 +208,7 @@ Index : 0 used in the geometry : Yes ==================================================================== -##### Create analysis manager 0x1c71770 +##### Create analysis manager 0x1a527c0 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 ac3f6d662b..252dd7761a 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -325,9 +325,3 @@ Total number of event = 5000 ---------------------------------------- Graphics systems deleted. Visualization Manager deleting... -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 15000 No Calls: 15000 Max-trial: 1 diff --git a/examples/advanced/radioprotection/radioprotection.out b/examples/advanced/radioprotection/radioprotection.out index b84070a3f3..af1baa8868 100644 --- a/examples/advanced/radioprotection/radioprotection.out +++ b/examples/advanced/radioprotection/radioprotection.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/advanced/underground_physics/underground_physics.out b/examples/advanced/underground_physics/underground_physics.out index 41b29c02a7..8de3296a37 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/advanced/xray_fluorescence/xray_fluorescence.out b/examples/advanced/xray_fluorescence/xray_fluorescence.out index 9c471cafe2..9e3f37f4d2 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -2908,7 +2908,7 @@ Created histos Run terminated. Run Summary Number of events processed : 10 - User=0.700000s Real=0.724247s Sys=0.000000s + User=0.680000s Real=0.678925s Sys=0.000000s Going to save histograms ... write Root file : xrayfluo.root - done ... close Root file : xrayfluo.root - done diff --git a/examples/advanced/xray_telescope/xray_telescope.out b/examples/advanced/xray_telescope/xray_telescope.out index d0b1b53c12..12d317d311 100644 --- a/examples/advanced/xray_telescope/xray_telescope.out +++ b/examples/advanced/xray_telescope/xray_telescope.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -379,7 +379,7 @@ Opening output file xraytel ... done Run terminated. Run Summary Number of events processed : 1000 - User=0.010000s Real=0.010981s Sys=0.000000s + User=0.020000s Real=0.011633s Sys=0.000000s ########################################## WARNING: command "/vis/viewer/update" could not be applied: no current viewer. Graphics systems deleted. diff --git a/examples/basic/B1/exampleB1.out b/examples/basic/B1/exampleB1.out index 412bdb5f22..0fef78fa23 100644 --- a/examples/basic/B1/exampleB1.out +++ b/examples/basic/B1/exampleB1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B1/run1.mac b/examples/basic/B1/run1.mac index 20ec8a3f69..8eb85c101b 100644 --- a/examples/basic/B1/run1.mac +++ b/examples/basic/B1/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B1/run2.mac b/examples/basic/B1/run2.mac index 8da9e15419..76b9b20ad5 100644 --- a/examples/basic/B1/run2.mac +++ b/examples/basic/B1/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB1 run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # /control/verbose 2 diff --git a/examples/basic/B2/B2a/exampleB2a.out b/examples/basic/B2/B2a/exampleB2a.out index 134666e2b7..8117b6ee96 100644 --- a/examples/basic/B2/B2a/exampleB2a.out +++ b/examples/basic/B2/B2a/exampleB2a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B2/B2a/run1.mac b/examples/basic/B2/B2a/run1.mac index aede406cc6..ff2607b81a 100644 --- a/examples/basic/B2/B2a/run1.mac +++ b/examples/basic/B2/B2a/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B2/B2a/run2.mac b/examples/basic/B2/B2a/run2.mac index 9241c2649d..6eff8fb276 100644 --- a/examples/basic/B2/B2a/run2.mac +++ b/examples/basic/B2/B2a/run2.mac @@ -3,6 +3,6 @@ # To be run preferably in batch, without graphics: # % exampleB2[a,b] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize /run/beamOn 500 diff --git a/examples/basic/B2/B2b/exampleB2b.out b/examples/basic/B2/B2b/exampleB2b.out index 4659b3f18e..3b6405065c 100644 --- a/examples/basic/B2/B2b/exampleB2b.out +++ b/examples/basic/B2/B2b/exampleB2b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B2/B2b/run1.mac b/examples/basic/B2/B2b/run1.mac index aede406cc6..ff2607b81a 100644 --- a/examples/basic/B2/B2b/run1.mac +++ b/examples/basic/B2/B2b/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B2/B2b/run2.mac b/examples/basic/B2/B2b/run2.mac index 9241c2649d..6eff8fb276 100644 --- a/examples/basic/B2/B2b/run2.mac +++ b/examples/basic/B2/B2b/run2.mac @@ -3,6 +3,6 @@ # To be run preferably in batch, without graphics: # % exampleB2[a,b] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize /run/beamOn 500 diff --git a/examples/basic/B2/macros/run1.mac b/examples/basic/B2/macros/run1.mac index aede406cc6..ff2607b81a 100644 --- a/examples/basic/B2/macros/run1.mac +++ b/examples/basic/B2/macros/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B2/macros/run2.mac b/examples/basic/B2/macros/run2.mac index 9241c2649d..6eff8fb276 100644 --- a/examples/basic/B2/macros/run2.mac +++ b/examples/basic/B2/macros/run2.mac @@ -3,6 +3,6 @@ # To be run preferably in batch, without graphics: # % exampleB2[a,b] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize /run/beamOn 500 diff --git a/examples/basic/B3/B3a/exampleB3a.out b/examples/basic/B3/B3a/exampleB3a.out index 352e99fa06..0b2081de3e 100644 --- a/examples/basic/B3/B3a/exampleB3a.out +++ b/examples/basic/B3/B3a/exampleB3a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -238,8 +238,8 @@ See commands in /vis/modeling/trajectories/ for other options. --> Event 9000 starts. --------------------End of Global Run----------------------- - The run was 10000 events Nb of 'good' e+ annihilations: 1345 - Total dose in patient : 292.044 picoGy + The run was 10000 events Nb of 'good' e+ annihilations: 1267 + Total dose in patient : 310.719 picoGy ------------------------------------------------------------ ... write Root file : scoring.root - done diff --git a/examples/basic/B3/B3a/run1.mac b/examples/basic/B3/B3a/run1.mac index 2e077fb60a..291a686d51 100644 --- a/examples/basic/B3/B3a/run1.mac +++ b/examples/basic/B3/B3a/run1.mac @@ -2,7 +2,7 @@ # Macro file of "exampleB3.cc" # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B3/B3a/run2.mac b/examples/basic/B3/B3a/run2.mac index 0c03432cb2..e3686721e8 100644 --- a/examples/basic/B3/B3a/run2.mac +++ b/examples/basic/B3/B3a/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB3 run3.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # /control/verbose 2 diff --git a/examples/basic/B3/B3b/exampleB3b.out b/examples/basic/B3/B3b/exampleB3b.out index 1f53e82057..8689f2266b 100644 --- a/examples/basic/B3/B3b/exampleB3b.out +++ b/examples/basic/B3/B3b/exampleB3b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -240,9 +240,9 @@ See commands in /vis/modeling/trajectories/ for other options. --> Event 9000 starts. --------------------End of Global Run----------------------- - The run was 10000 events Nb of 'good' e+ annihilations: 1345 - Total dose in patient : 292.044 picoGy - Total dose in patient : 2.92044e-10 [sigma: 1.76605e-14 | error: 0.0060472 | coeff: 0.0060472 | eff: 1 | fom: 27345.9 | r2int: 3.65649e-05 | r2eff: 0 | hits: 10000 ] Gy + The run was 10000 events Nb of 'good' e+ annihilations: 1267 + Total dose in patient : 310.719 picoGy + Total dose in patient : 3.10719e-10 [sigma: 1.77059e-14 | error: 0.00569837 | coeff: 0.00569837 | eff: 1 | fom: 30796.3 | r2int: 3.24682e-05 | r2eff: 0 | hits: 10000 ] Gy ------------------------------------------------------------ ... write Root file : scoring.root - done diff --git a/examples/basic/B3/B3b/run1.mac b/examples/basic/B3/B3b/run1.mac index 2e077fb60a..291a686d51 100644 --- a/examples/basic/B3/B3b/run1.mac +++ b/examples/basic/B3/B3b/run1.mac @@ -2,7 +2,7 @@ # Macro file of "exampleB3.cc" # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B3/B3b/run2.mac b/examples/basic/B3/B3b/run2.mac index 0c03432cb2..e3686721e8 100644 --- a/examples/basic/B3/B3b/run2.mac +++ b/examples/basic/B3/B3b/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB3 run3.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # /control/verbose 2 diff --git a/examples/basic/B3/macros/run1.mac b/examples/basic/B3/macros/run1.mac index 2e077fb60a..291a686d51 100644 --- a/examples/basic/B3/macros/run1.mac +++ b/examples/basic/B3/macros/run1.mac @@ -2,7 +2,7 @@ # Macro file of "exampleB3.cc" # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B3/macros/run2.mac b/examples/basic/B3/macros/run2.mac index 0c03432cb2..e3686721e8 100644 --- a/examples/basic/B3/macros/run2.mac +++ b/examples/basic/B3/macros/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB3 run3.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # /control/verbose 2 diff --git a/examples/basic/B4/B4a/exampleB4a.out b/examples/basic/B4/B4a/exampleB4a.out index 3d8a406f42..e1ad1aeb5f 100644 --- a/examples/basic/B4/B4a/exampleB4a.out +++ b/examples/basic/B4/B4a/exampleB4a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B4/B4a/run1.mac b/examples/basic/B4/B4a/run1.mac index 410d5c718e..18983715a0 100644 --- a/examples/basic/B4/B4a/run1.mac +++ b/examples/basic/B4/B4a/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B4/B4a/run2.mac b/examples/basic/B4/B4a/run2.mac index f6b4d0bec4..3de3c49bec 100644 --- a/examples/basic/B4/B4a/run2.mac +++ b/examples/basic/B4/B4a/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB4[a,b,c,d] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # Default kinemtics: diff --git a/examples/basic/B4/B4b/exampleB4b.out b/examples/basic/B4/B4b/exampleB4b.out index 2be4c5f682..02e5386928 100644 --- a/examples/basic/B4/B4b/exampleB4b.out +++ b/examples/basic/B4/B4b/exampleB4b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B4/B4b/run1.mac b/examples/basic/B4/B4b/run1.mac index 410d5c718e..18983715a0 100644 --- a/examples/basic/B4/B4b/run1.mac +++ b/examples/basic/B4/B4b/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B4/B4b/run2.mac b/examples/basic/B4/B4b/run2.mac index f6b4d0bec4..3de3c49bec 100644 --- a/examples/basic/B4/B4b/run2.mac +++ b/examples/basic/B4/B4b/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB4[a,b,c,d] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # Default kinemtics: diff --git a/examples/basic/B4/B4c/exampleB4c.out b/examples/basic/B4/B4c/exampleB4c.out index 3d8a406f42..e1ad1aeb5f 100644 --- a/examples/basic/B4/B4c/exampleB4c.out +++ b/examples/basic/B4/B4c/exampleB4c.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/basic/B4/B4c/run1.mac b/examples/basic/B4/B4c/run1.mac index 410d5c718e..18983715a0 100644 --- a/examples/basic/B4/B4c/run1.mac +++ b/examples/basic/B4/B4c/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B4/B4c/run2.mac b/examples/basic/B4/B4c/run2.mac index f6b4d0bec4..3de3c49bec 100644 --- a/examples/basic/B4/B4c/run2.mac +++ b/examples/basic/B4/B4c/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB4[a,b,c,d] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # Default kinemtics: diff --git a/examples/basic/B4/B4d/exampleB4d.out b/examples/basic/B4/B4d/exampleB4d.out index 2a61be4f65..882d51b11d 100644 --- a/examples/basic/B4/B4d/exampleB4d.out +++ b/examples/basic/B4/B4d/exampleB4d.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1573,4 +1573,4 @@ CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1 ... close Root file : B4.root - done Graphics systems deleted. Visualization Manager deleting... -### deleting chargedFilter 0x23492f0 +### deleting chargedFilter 0x2314700 diff --git a/examples/basic/B4/B4d/run1.mac b/examples/basic/B4/B4d/run1.mac index 410d5c718e..18983715a0 100644 --- a/examples/basic/B4/B4d/run1.mac +++ b/examples/basic/B4/B4d/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B4/B4d/run2.mac b/examples/basic/B4/B4d/run2.mac index d8938ad420..370ba78ae3 100644 --- a/examples/basic/B4/B4d/run2.mac +++ b/examples/basic/B4/B4d/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB4[a,b,c,d] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # Default kinemtics: diff --git a/examples/basic/B4/macros/run1.mac b/examples/basic/B4/macros/run1.mac index 410d5c718e..18983715a0 100644 --- a/examples/basic/B4/macros/run1.mac +++ b/examples/basic/B4/macros/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B4/macros/run2.mac b/examples/basic/B4/macros/run2.mac index f6b4d0bec4..3de3c49bec 100644 --- a/examples/basic/B4/macros/run2.mac +++ b/examples/basic/B4/macros/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB4[a,b,c,d] run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # Default kinemtics: diff --git a/examples/basic/B5/exampleB5.out b/examples/basic/B5/exampleB5.out index d66f268aa3..473b815acf 100644 --- a/examples/basic/B5/exampleB5.out +++ b/examples/basic/B5/exampleB5.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -881,14 +881,12 @@ See commands in /vis/modeling/trajectories/ for other options. >>> Event 0 >>> Simulation truth : proton (-0,0,100000) Hodoscope 1 has 1 hits. Hodoscope[7] 4.9870028523976 (nsec) -Hodoscope 2 has 4 hits. +Hodoscope 2 has 1 hits. Hodoscope[9] 43.187937103889 (nsec) - Hodoscope[3] 343.7101812424 (nsec) - Hodoscope[1] 368.39433739278 (nsec) - Hodoscope[4] 1120.9757842255 (nsec) -Drift Chamber 1 has 5 hits. +Drift Chamber 1 has 6 hits. Layer[0] : time 6.6712421465156 (nsec) --- local (x,y) 0.0068976087488375, -0.001060304538742 Layer[1] : time 8.3391360803921 (nsec) --- local (x,y) 0.013210911787839, -0.0046929086614397 + Layer[1] : time 8.7426621675878 (nsec) --- local (x,y) 39.269046316658, -58.598496678638 Layer[2] : time 10.007030014525 (nsec) --- local (x,y) 0.017790490821106, -0.0035138351901322 Layer[3] : time 11.674923948876 (nsec) --- local (x,y) 0.023425005836559, -0.0011390087980778 Layer[4] : time 13.342817883344 (nsec) --- local (x,y) 0.028071293571896, 0.0008951461009665 @@ -898,36 +896,34 @@ Drift Chamber 2 has 5 hits. Layer[2] : time 38.191927700839 (nsec) --- local (x,y) -206.40408252011, 0.060251975739992 Layer[3] : time 39.862722101185 (nsec) --- local (x,y) -235.90416191435, 0.069550578156142 Layer[4] : time 41.533516723828 (nsec) --- local (x,y) -265.4053723571, 0.077470538676864 -EM Calorimeter has 60 hits. Total Edep is 1142.9733926755 (MeV) -Hadron Calorimeter has 15 hits. Total Edep is 4083.3063753168 (MeV) +EM Calorimeter has 62 hits. Total Edep is 849.88134124286 (MeV) +Hadron Calorimeter has 16 hits. Total Edep is 4438.7285397424 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 1 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : pi+ (-0,0,100000) +>>> Event 0 >>> Simulation truth : pi+ (0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867880840202 (nsec) -Hodoscope 2 has 4 hits. - Hodoscope[10] 42.694428440293 (nsec) - Hodoscope[24] 67.92729448977 (nsec) - Hodoscope[2] 139.28267569892 (nsec) - Hodoscope[22] 619.96790178774 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709548426897 (nsec) --- local (x,y) 0.0050624195828011, -0.0013651812734906 - Layer[1] : time 8.338776944908 (nsec) --- local (x,y) 0.016563120978568, 0.0030877934273825 - Layer[2] : time 10.006599047368 (nsec) --- local (x,y) 0.030183744194107, -0.0029643249344607 - Layer[3] : time 11.674421149739 (nsec) --- local (x,y) 0.042961654818907, -0.0086708468616026 - Layer[4] : time 13.342243251965 (nsec) --- local (x,y) 0.05424873712076, -0.013603504093659 + Hodoscope[7] 4.9867880839421 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[10] 42.693676204473 (nsec) +Drift Chamber 1 has 6 hits. + Layer[0] : time 6.6709548424639 (nsec) --- local (x,y) -0.0094441611726117, -0.0029650084706917 + Layer[0] : time 7.2235069406174 (nsec) --- local (x,y) 270.23484737043, 83.527841028913 + Layer[1] : time 8.3387769444375 (nsec) --- local (x,y) -0.016717272669641, -0.0063009630761916 + Layer[2] : time 10.006599046517 (nsec) --- local (x,y) -0.022879503058124, -0.014004296686359 + Layer[3] : time 11.674421148632 (nsec) --- local (x,y) -0.030201956169539, -0.021334721492455 + Layer[4] : time 13.342243250899 (nsec) --- local (x,y) -0.040034526298235, -0.02869421396906 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.367095178277 (nsec) --- local (x,y) -82.683943098722, 0.00012054166571091 - Layer[1] : time 36.035832114765 (nsec) --- local (x,y) -99.247018175101, 0.0066316972645882 - Layer[2] : time 37.704569049497 (nsec) --- local (x,y) -115.81007668286, 0.014592347162893 - Layer[3] : time 39.373306555657 (nsec) --- local (x,y) -132.37830429164, 0.028935540094715 - Layer[4] : time 41.042044215455 (nsec) --- local (x,y) -148.9479239014, 0.041675733386845 -EM Calorimeter has 61 hits. Total Edep is 41988.174968205 (MeV) -Hadron Calorimeter has 17 hits. Total Edep is 1471.403814052 (MeV) + Layer[0] : time 34.366366766644 (nsec) --- local (x,y) -82.762434084779, -0.065567595931391 + Layer[1] : time 36.035099660419 (nsec) --- local (x,y) -99.28886223977, -0.068016524108466 + Layer[2] : time 37.703832110356 (nsec) --- local (x,y) -115.81126221135, -0.068734901742467 + Layer[3] : time 39.372564572467 (nsec) --- local (x,y) -132.33377236231, -0.071891173688295 + Layer[4] : time 41.041297040105 (nsec) --- local (x,y) -148.85633269663, -0.074732172828571 +EM Calorimeter has 54 hits. Total Edep is 700.14187810992 (MeV) +Hadron Calorimeter has 16 hits. Total Edep is 4254.7962495077 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 2 starts. @@ -936,51 +932,53 @@ Hadron Calorimeter has 17 hits. Total Edep is 1471.403814052 (MeV) >>> Event 0 >>> Simulation truth : e+ (0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867832233049 (nsec) -Hodoscope 2 has 3 hits. - Hodoscope[9] 43.186234924535 (nsec) - Hodoscope[18] 470.96922977071 (nsec) - Hodoscope[4] 56.996125944717 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709483413676 (nsec) --- local (x,y) 0.010396291919288, -0.017817142746325 - Layer[1] : time 8.3387688191634 (nsec) --- local (x,y) 0.028569605374595, -0.032319445232034 - Layer[2] : time 10.006589297374 (nsec) --- local (x,y) 0.047453578729187, -0.049870690683874 - Layer[3] : time 11.674409775557 (nsec) --- local (x,y) 0.066711499964905, -0.066773377182047 - Layer[4] : time 13.342230253482 (nsec) --- local (x,y) 0.085914878472482, -0.081293057338205 + Hodoscope[7] 4.9867832233951 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[9] 43.185256193668 (nsec) +Drift Chamber 1 has 10 hits. + Layer[0] : time 6.6709483454228 (nsec) --- local (x,y) -0.043045803505444, -0.022650485616768 + Layer[0] : time 6.7234012810142 (nsec) --- local (x,y) 124.80253298953, 11.588245621717 + Layer[1] : time 8.3387688268713 (nsec) --- local (x,y) -0.075628069356991, -0.046617439876332 + Layer[1] : time 8.4365354696137 (nsec) --- local (x,y) 238.44293271577, 37.412653652984 + Layer[2] : time 10.006589308129 (nsec) --- local (x,y) -0.10722002711301, -0.070703933325171 + Layer[2] : time 10.166377709854 (nsec) --- local (x,y) 371.77039481644, 67.849021827537 + Layer[3] : time 11.674409789748 (nsec) --- local (x,y) -0.13938010487078, -0.096254123303717 + Layer[3] : time 11.903382553481 (nsec) --- local (x,y) 515.47869517554, 83.354691279305 + Layer[4] : time 13.342230270963 (nsec) --- local (x,y) -0.17202707683003, -0.11857834331394 + Layer[4] : time 13.629140131894 (nsec) --- local (x,y) 645.49664678892, 107.04046108387 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.848992760374 (nsec) --- local (x,y) -147.37213411919, -0.29505532909232 - Layer[1] : time 36.519716147209 (nsec) --- local (x,y) -176.88531030006, -0.31914447701038 - Layer[2] : time 38.190439529152 (nsec) --- local (x,y) -206.39846258023, -0.34193852804264 - Layer[3] : time 39.861162414804 (nsec) --- local (x,y) -235.90909147326, -0.36239207437169 - Layer[4] : time 41.531885328261 (nsec) --- local (x,y) -265.41986206356, -0.38253157408852 -EM Calorimeter has 42 hits. Total Edep is 91129.81901073 (MeV) -Hadron Calorimeter has 5 hits. Total Edep is 37.245445341629 (MeV) + Layer[0] : time 34.84795567911 (nsec) --- local (x,y) -148.22329538041, -0.28245009598817 + Layer[1] : time 36.518690340455 (nsec) --- local (x,y) -177.79378742679, -0.2899215773712 + Layer[2] : time 38.189425384477 (nsec) --- local (x,y) -207.36622237556, -0.29833148454904 + Layer[3] : time 39.860160504233 (nsec) --- local (x,y) -236.93904166691, -0.30745471037711 + Layer[4] : time 41.530895225769 (nsec) --- local (x,y) -266.50983892796, -0.31454998374691 +EM Calorimeter has 42 hits. Total Edep is 89463.571399374 (MeV) +Hadron Calorimeter has 6 hits. Total Edep is 50.997136572829 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 3 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : proton (-0,0,10000) +>>> Event 0 >>> Simulation truth : proton (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 5.0086963524923 (nsec) -Hodoscope 2 has 2 hits. - Hodoscope[9] 43.376426180616 (nsec) - Hodoscope[19] 371.12339969207 (nsec) + Hodoscope[7] 5.0086958668975 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[9] 43.377407873731 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7002663344515 (nsec) --- local (x,y) 0.064729686670757, -0.31481797901308 - Layer[1] : time 8.3754200204965 (nsec) --- local (x,y) 0.023760757816926, -0.5056582595733 - Layer[2] : time 10.050573840366 (nsec) --- local (x,y) 0.0018589374504675, -0.6933953865286 - Layer[3] : time 11.725727813664 (nsec) --- local (x,y) 0.01035032366956, -0.85581692102207 - Layer[4] : time 13.400881925624 (nsec) --- local (x,y) 0.044865590184516, -1.0115908167295 + Layer[0] : time 6.7002643642573 (nsec) --- local (x,y) 0.14229560519521, -0.004869992857376 + Layer[1] : time 8.37541657243 (nsec) --- local (x,y) 0.19791116219288, -0.070634248766558 + Layer[2] : time 10.050568917717 (nsec) --- local (x,y) 0.26653281552991, -0.12648625341583 + Layer[3] : time 11.725721383341 (nsec) --- local (x,y) 0.34545674268712, -0.17745068290342 + Layer[4] : time 13.400873977763 (nsec) --- local (x,y) 0.39988693082324, -0.19992688856468 Drift Chamber 2 has 5 hits. - Layer[0] : time 35.0024194105 (nsec) --- local (x,y) -147.65594715699, -3.0055794234427 - Layer[1] : time 36.680511206262 (nsec) --- local (x,y) -177.27183217352, -3.1588328223695 - Layer[2] : time 38.358602185339 (nsec) --- local (x,y) -206.88303016038, -3.3046683943015 - Layer[3] : time 40.036691916958 (nsec) --- local (x,y) -236.48727267461, -3.4573425561407 - Layer[4] : time 41.714780631213 (nsec) --- local (x,y) -266.08564801388, -3.6090302851588 -EM Calorimeter has 14 hits. Total Edep is 448.06855925564 (MeV) -Hadron Calorimeter has 1 hits. Total Edep is 41.666004719031 (MeV) + Layer[0] : time 35.003424744184 (nsec) --- local (x,y) -146.90656495926, -0.2158608698142 + Layer[1] : time 36.681509789115 (nsec) --- local (x,y) -176.4957775974, -0.20006245767694 + Layer[2] : time 38.35959595202 (nsec) --- local (x,y) -206.08997399963, -0.17861192862172 + Layer[3] : time 40.037686975027 (nsec) --- local (x,y) -235.70807225657, -0.16268230493274 + Layer[4] : time 41.715773070649 (nsec) --- local (x,y) -265.30065459, -0.15726093717557 +EM Calorimeter has 33 hits. Total Edep is 355.16453389852 (MeV) +Hadron Calorimeter has 12 hits. Total Edep is 325.50875239358 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 4 starts. @@ -989,74 +987,78 @@ Hadron Calorimeter has 1 hits. Total Edep is 41.666004719031 (MeV) >>> Event 0 >>> Simulation truth : pi+ (-0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9872692049642 (nsec) + Hodoscope[7] 4.9872691719261 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[10] 42.700365709336 (nsec) + Hodoscope[10] 42.696283399216 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6715985598714 (nsec) --- local (x,y) 0.00064788649120932, -0.13304524387673 - Layer[1] : time 8.3395816688551 (nsec) --- local (x,y) 0.055083458120559, -0.19149787818302 - Layer[2] : time 10.007564779453 (nsec) --- local (x,y) 0.093368254624109, -0.25948844340181 - Layer[3] : time 11.675547882135 (nsec) --- local (x,y) 0.12246360058204, -0.30131591006524 - Layer[4] : time 13.343531002261 (nsec) --- local (x,y) 0.15917538526494, -0.37284880161189 + Layer[0] : time 6.6715985588073 (nsec) --- local (x,y) -0.090585312455802, -0.15548781422372 + Layer[1] : time 8.3395817130626 (nsec) --- local (x,y) -0.13735172352394, -0.30927124663737 + Layer[2] : time 10.007564891994 (nsec) --- local (x,y) -0.20714720096325, -0.47403732803784 + Layer[3] : time 11.675548087031 (nsec) --- local (x,y) -0.26873977950367, -0.65303840094554 + Layer[4] : time 13.343531300139 (nsec) --- local (x,y) -0.3207179038678, -0.84685633337518 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.372034544938 (nsec) --- local (x,y) -83.529992267384, -1.6503759810252 - Layer[1] : time 36.040972835977 (nsec) --- local (x,y) -100.45313352833, -1.7151211300795 - Layer[2] : time 37.709907488268 (nsec) --- local (x,y) -117.34388669324, -1.797345895128 - Layer[3] : time 39.378842427724 (nsec) --- local (x,y) -134.23710337675, -1.888725456054 - Layer[4] : time 41.047780721514 (nsec) --- local (x,y) -151.16002732897, -1.9821987803142 -EM Calorimeter has 34 hits. Total Edep is 3321.8463883141 (MeV) -Hadron Calorimeter has 13 hits. Total Edep is 239.4475029565 (MeV) + Layer[0] : time 34.368087039548 (nsec) --- local (x,y) -83.768520812507, -3.7875306533918 + Layer[1] : time 36.0369956943 (nsec) --- local (x,y) -100.42475412277, -4.0804712464521 + Layer[2] : time 37.705905465405 (nsec) --- local (x,y) -117.0911704884, -4.3642681057927 + Layer[3] : time 39.374815173688 (nsec) --- local (x,y) -133.75696463927, -4.6503086245232 + Layer[4] : time 41.043726757415 (nsec) --- local (x,y) -150.43975185618, -4.92632823078 +EM Calorimeter has 2 hits. Total Edep is 205.31969775532 (MeV) +Hadron Calorimeter has 14 hits. Total Edep is 484.49630305339 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 5 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : e+ (-0,0,10000) +>>> Event 0 >>> Simulation truth : e+ (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867832642254 (nsec) + Hodoscope[7] 4.9867832321246 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.184282969275 (nsec) + Hodoscope[2] 43.407125916824 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709484064958 (nsec) --- local (x,y) -0.10900858016502, 0.17810071623362 - Layer[1] : time 8.3387689019624 (nsec) --- local (x,y) -0.18427755969866, 0.17006737143187 - Layer[2] : time 10.006589388175 (nsec) --- local (x,y) -0.23763622120349, 0.15646002925037 - Layer[3] : time 11.674409871932 (nsec) --- local (x,y) -0.28481430783061, 0.16529304225753 - Layer[4] : time 13.342230361939 (nsec) --- local (x,y) -0.34833788997753, 0.17202057515347 + Layer[0] : time 6.6709484110987 (nsec) --- local (x,y) 0.16802966579064, -0.064360965148442 + Layer[1] : time 8.33876896517 (nsec) --- local (x,y) 0.29613548011261, -0.14762969733241 + Layer[2] : time 10.006589506284 (nsec) --- local (x,y) 0.42692642699756, -0.19476796040059 + Layer[3] : time 11.674410040978 (nsec) --- local (x,y) 0.55701521180704, -0.22033761562644 + Layer[4] : time 13.342230555565 (nsec) --- local (x,y) 0.66446355842517, -0.21883255546315 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.846884522008 (nsec) --- local (x,y) -149.37793803987, -0.2489095406814 - Layer[1] : time 36.517637461127 (nsec) --- local (x,y) -179.04109939904, -0.2462396800002 - Layer[2] : time 38.1883877776 (nsec) --- local (x,y) -208.6909731289, -0.26399997704399 - Layer[3] : time 39.859137141301 (nsec) --- local (x,y) -238.33601877731, -0.28970184807521 - Layer[4] : time 41.529895800016 (nsec) --- local (x,y) -268.02808670641, -0.33442485369796 -EM Calorimeter has 21 hits. Total Edep is 9221.7115814879 (MeV) -Hadron Calorimeter has 2 hits. Total Edep is 5.7974838636336 (MeV) + Layer[0] : time 34.907230454539 (nsec) --- local (x,y) -515.91713715762, -0.52904261729124 + Layer[1] : time 36.610551497563 (nsec) --- local (x,y) -619.6285490785, -0.64850700014902 + Layer[2] : time 38.313886090332 (nsec) --- local (x,y) -723.35996455104, -0.76451843745849 + Layer[3] : time 40.017214845778 (nsec) --- local (x,y) -827.08278418518, -0.86108812019949 + Layer[4] : time 41.720522917161 (nsec) --- local (x,y) -930.77509052908, -0.93415110668079 +EM Calorimeter has 7 hits. Total Edep is 7321.8806541565 (MeV) +Hadron Calorimeter has 1 hits. Total Edep is 0.86748128524393 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 6 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : proton (0,0,1000) +>>> Event 0 >>> Simulation truth : proton (-0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 6.8392895352614 (nsec) + Hodoscope[7] 6.8393277189197 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 59.438632379989 (nsec) -Drift Chamber 1 has 6 hits. - Layer[0] : time 9.1540190759168 (nsec) --- local (x,y) 1.4521662244452, 1.4661635419661 - Layer[1] : time 11.446570882717 (nsec) --- local (x,y) 1.9395157879677, 2.8912283228286 - Layer[2] : time 13.739312628117 (nsec) --- local (x,y) 2.755436329371, 4.0940589795297 - Layer[2] : time 13.74152926664 (nsec) --- local (x,y) 3.7431959191646, 3.3747568982841 - Layer[3] : time 16.032726630133 (nsec) --- local (x,y) 3.5825862215481, 5.5935007385707 - Layer[4] : time 18.326370046535 (nsec) --- local (x,y) 4.8421342427482, 7.3811816612691 -Drift Chamber 2 has 5 hits. - Layer[0] : time 47.954690859786 (nsec) --- local (x,y) -139.16119211787, 22.265536870324 - Layer[1] : time 50.255440165709 (nsec) --- local (x,y) -170.12947682074, 23.337985163478 - Layer[2] : time 52.556518822172 (nsec) --- local (x,y) -201.39453225937, 23.59122008521 - Layer[3] : time 54.857905330804 (nsec) --- local (x,y) -232.85580453652, 23.937366065789 - Layer[4] : time 57.159479905281 (nsec) --- local (x,y) -264.25848067808, 24.702460920679 -EM Calorimeter has 14 hits. Total Edep is 67.75959989501 (MeV) -Hadron Calorimeter has 3 hits. Total Edep is 3.6304311642584 (MeV) + Hodoscope[9] 59.505894132229 (nsec) +Drift Chamber 1 has 9 hits. + Layer[0] : time 9.1546180880927 (nsec) --- local (x,y) 2.8086388020593, 2.4415468809092 + Layer[0] : time 9.1546731337303 (nsec) --- local (x,y) 2.8086780568679, 2.441562306354 + Layer[0] : time 9.1546731337303 (nsec) --- local (x,y) 2.8086780568679, 2.441562306354 + Layer[0] : time 9.1550567546333 (nsec) --- local (x,y) 2.8147058019818, 2.4367229688312 + Layer[0] : time 9.1554449691445 (nsec) --- local (x,y) 2.8213903689215, 2.4344115992154 + Layer[1] : time 11.447684677538 (nsec) --- local (x,y) 4.4639320346292, 2.9326315917189 + Layer[2] : time 13.740938810923 (nsec) --- local (x,y) 6.2244736129704, 3.0954588961514 + Layer[3] : time 16.034394676086 (nsec) --- local (x,y) 8.2029629290516, 3.7211061584733 + Layer[4] : time 18.328110801997 (nsec) --- local (x,y) 10.96637493929, 4.788966302369 +Drift Chamber 2 has 6 hits. + Layer[0] : time 48.019288058303 (nsec) --- local (x,y) -111.23721903157, 23.896011360033 + Layer[0] : time 48.062175058099 (nsec) --- local (x,y) -112.18346682518, 30.874102362475 + Layer[1] : time 50.320684001242 (nsec) --- local (x,y) -141.43948357675, 26.090351416064 + Layer[2] : time 52.622317180214 (nsec) --- local (x,y) -171.55608688252, 28.400582708493 + Layer[3] : time 54.924172142131 (nsec) --- local (x,y) -201.67739809555, 31.004870734014 + Layer[4] : time 57.226198743754 (nsec) --- local (x,y) -231.78450517846, 33.874064210685 +EM Calorimeter has 12 hits. Total Edep is 134.49441404723 (MeV) +Hadron Calorimeter has 4 hits. Total Edep is 9.8949984949873 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 7 starts. @@ -1065,23 +1067,23 @@ Hadron Calorimeter has 3 hits. Total Edep is 3.6304311642584 (MeV) >>> Event 0 >>> Simulation truth : pi+ (0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 5.0351743513804 (nsec) + Hodoscope[7] 5.0351589066995 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[10] 43.131260255663 (nsec) + Hodoscope[10] 43.113602983876 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7357467599648 (nsec) --- local (x,y) 1.9534675720145, 1.1282107980231 - Layer[1] : time 8.4198178896479 (nsec) --- local (x,y) 2.6157636716599, 1.8270189600363 - Layer[2] : time 10.103893584129 (nsec) --- local (x,y) 3.3901702087705, 2.7305434999355 - Layer[3] : time 11.787975018045 (nsec) --- local (x,y) 4.0584417900053, 4.0005657176277 - Layer[4] : time 13.472066265956 (nsec) --- local (x,y) 4.4080440668488, 6.0142329280106 + Layer[0] : time 6.7357183637513 (nsec) --- local (x,y) 0.12454939268685, -0.1266780822379 + Layer[1] : time 8.4197772339928 (nsec) --- local (x,y) 0.061795021539463, -0.21965455987113 + Layer[2] : time 10.103838977004 (nsec) --- local (x,y) -0.063130466701966, -0.59493968361598 + Layer[3] : time 11.787904237484 (nsec) --- local (x,y) -0.1168508268976, -1.062189146105 + Layer[4] : time 13.471972267309 (nsec) --- local (x,y) -0.062742681906861, -1.6396563954855 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.720281717233 (nsec) --- local (x,y) -90.564469325351, 37.633264047691 - Layer[1] : time 36.405746253855 (nsec) --- local (x,y) -110.33698504281, 40.76735872828 - Layer[2] : time 38.091218305749 (nsec) --- local (x,y) -130.15681814318, 43.828696269145 - Layer[3] : time 39.776712818707 (nsec) --- local (x,y) -150.09515865005, 47.017463781587 - Layer[4] : time 41.462222951448 (nsec) --- local (x,y) -170.11457828404, 50.273587528051 -EM Calorimeter has 25 hits. Total Edep is 518.00908706211 (MeV) -Hadron Calorimeter has 8 hits. Total Edep is 10.500785909719 (MeV) + Layer[0] : time 34.704915183546 (nsec) --- local (x,y) -84.283120199521, -3.4711703204222 + Layer[1] : time 36.389958006513 (nsec) --- local (x,y) -100.95352494784, -3.3344634598325 + Layer[2] : time 38.075002616555 (nsec) --- local (x,y) -117.61614228795, -3.1503187293274 + Layer[3] : time 39.76005292452 (nsec) --- local (x,y) -134.25436184841, -2.5983973941548 + Layer[4] : time 41.445095464774 (nsec) --- local (x,y) -150.75763440828, -1.7709025644857 +EM Calorimeter has 23 hits. Total Edep is 468.39308707035 (MeV) +Hadron Calorimeter has 4 hits. Total Edep is 3.7801407133733 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 8 starts. @@ -1090,30 +1092,24 @@ Hadron Calorimeter has 8 hits. Total Edep is 10.500785909719 (MeV) >>> Event 0 >>> Simulation truth : e+ (0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867842004183 (nsec) + Hodoscope[7] 4.9867835815532 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.163748646989 (nsec) + Hodoscope[9] 43.179795122507 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709510595715 (nsec) --- local (x,y) -1.065070118712, 0.020881174109227 - Layer[1] : time 8.3387732745694 (nsec) --- local (x,y) -1.6672425633637, 0.41613548480397 - Layer[2] : time 10.006595676078 (nsec) --- local (x,y) -2.2827149332653, 0.86055239029902 - Layer[3] : time 11.674418692645 (nsec) --- local (x,y) -2.9017797256979, 1.4721811149782 - Layer[4] : time 13.342244474303 (nsec) --- local (x,y) -3.8015049443331, 2.3347451373945 + Layer[0] : time 6.6709488931514 (nsec) --- local (x,y) -0.29921747597948, 0.042376789567754 + Layer[1] : time 8.338769634134 (nsec) --- local (x,y) -0.44636469641414, -0.15726147096907 + Layer[2] : time 10.006590367365 (nsec) --- local (x,y) -0.64848185928713, -0.33719384936477 + Layer[3] : time 11.674411037874 (nsec) --- local (x,y) -0.7870244327052, -0.52902484057313 + Layer[4] : time 13.342231630038 (nsec) --- local (x,y) -0.95511454871227, -0.55881921749006 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.82484502302 (nsec) --- local (x,y) -169.44055683775, 12.364922793975 - Layer[1] : time 36.495907965344 (nsec) --- local (x,y) -200.62964575477, 12.848551772413 - Layer[2] : time 38.166971224066 (nsec) --- local (x,y) -231.81899113387, 13.421401672131 - Layer[3] : time 39.838027137573 (nsec) --- local (x,y) -262.97062390594, 14.108975415495 - Layer[4] : time 41.509057557532 (nsec) --- local (x,y) -293.9967796649, 14.893613011051 -EM Calorimeter has 5 hits. Total Edep is 944.76240996143 (MeV) + Layer[0] : time 34.841967946802 (nsec) --- local (x,y) -154.72818024603, 3.5695330256083 + Layer[1] : time 36.512798313398 (nsec) --- local (x,y) -184.78001436588, 3.3802834643569 + Layer[2] : time 38.183632274885 (nsec) --- local (x,y) -214.8485423434, 3.053207885002 + Layer[3] : time 39.854477849344 (nsec) --- local (x,y) -244.9747663731, 2.6988672083713 + Layer[4] : time 41.525312535792 (nsec) --- local (x,y) -275.04883116395, 2.7398464563369 +EM Calorimeter has 13 hits. Total Edep is 977.76611994084 (MeV) Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done Graphics systems deleted. Visualization Manager deleting... -G4Integration Driver Stats: #QuickAdvance 1779 - #AccurateAdvance 13 #good steps 13 #bad steps 0 -G4ChordFinder statistics report: - No trials: 1772 No Calls: 1772 Max-trial: 1 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 7989 No Calls: 4944 Max-trial: 5 diff --git a/examples/basic/B5/run1.mac b/examples/basic/B5/run1.mac index 523fefe2ae..89ab08d246 100644 --- a/examples/basic/B5/run1.mac +++ b/examples/basic/B5/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/basic/B5/run2.mac b/examples/basic/B5/run2.mac index e05cdf62f6..14aeccd359 100644 --- a/examples/basic/B5/run2.mac +++ b/examples/basic/B5/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB5 run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # # turn off randomization diff --git a/examples/basic/History b/examples/basic/History index d89b1b002b..1528f680dc 100644 --- a/examples/basic/History +++ b/examples/basic/History @@ -15,6 +15,9 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +24/01/20, A. Zaborowska (exbasic-V10-05-01) +- Fix suggested in macros command /run/numberOfThreads + 31/01/19, I.Hrivnacova (exbasic-V10-05-00) - Merged GitHub PR #4: all Boolean operators now return G4bool. diff --git a/examples/extended/analysis/AnaEx01/AnaEx01.out b/examples/extended/analysis/AnaEx01/AnaEx01.out index f58a6703e9..d7ef65816f 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/analysis/AnaEx02/AnaEx02.out b/examples/extended/analysis/AnaEx02/AnaEx02.out index c2cd8d4175..6b7a3223f4 100644 --- a/examples/extended/analysis/AnaEx02/AnaEx02.out +++ b/examples/extended/analysis/AnaEx02/AnaEx02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/analysis/B1Con/exampleB01Con.out b/examples/extended/analysis/B1Con/exampleB01Con.out index cb21ec09f7..4b28365d07 100644 --- a/examples/extended/analysis/B1Con/exampleB01Con.out +++ b/examples/extended/analysis/B1Con/exampleB01Con.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -838,13 +838,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY R = 0.0290251 SHIFT = 4.97518e-14 VOV = 0.000170576 - FOM = 4093.11 + FOM = 3956.67 THE LARGEST SCORE = 1.07563e-11 and it happened at 858th event Affected Mean = 5.02578e-12 and its ratio to original is 1.00114 Affected VAR = 2.12424e-23 and its ratio to original is 1.00055 Affected R = 0.0289855 and its ratio to original is 0.998634 Affected SHIFT = 4.5526e-14 and its ratio to original is 0.915062 - Affected FOM = 4093.11 and its ratio to original is 1 + Affected FOM = 3956.67 and its ratio to original is 1 MEAN distribution is not RANDOM r follows 1/std::sqrt(N) r is monotonically decrease @@ -858,22 +858,22 @@ This result passes 5 / 8 Convergence Test. G4ConvergenceTester Output History of DOSE_TALLY i/16 till_ith mean var sd r vov fom shift e r2eff r2int - 1 62 6.53175e-12 2.03034e-23 4.50593e-12 0.086913 0.00844893 456.492 -1.33549e-12 0.746032 0.00540358 0.00203038 - 2 124 5.55112e-12 2.14558e-23 4.63204e-12 0.074634 0.00160675 619.055 -3.82306e-13 0.696 0.00349425 0.00203142 - 3 187 5.30738e-12 2.14919e-23 4.63594e-12 0.0637058 0.000927957 849.659 -1.83031e-13 0.659574 0.00274537 0.00129147 - 4 249 5.15024e-12 2.1194e-23 4.60369e-12 0.0565339 0.000744103 1078.91 -6.1484e-14 0.652 0.00213497 0.00104833 - 5 312 4.92129e-12 2.11952e-23 4.60382e-12 0.0528771 0.00058703 1233.3 1.18743e-13 0.623003 0.00193332 0.000853736 - 6 374 4.80695e-12 2.13467e-23 4.62025e-12 0.0496341 0.000466755 1399.72 2.18457e-13 0.610667 0.00170015 0.000756827 - 7 437 4.85114e-12 2.12678e-23 4.6117e-12 0.0454234 0.00039924 1671.25 1.71454e-13 0.614155 0.00143437 0.000624212 - 8 499 4.9838e-12 2.12165e-23 4.60614e-12 0.0413325 0.000351382 2018.45 6.05528e-14 0.626 0.00119489 0.000510069 - 9 562 4.95828e-12 2.11699e-23 4.60107e-12 0.0391087 0.000316496 2254.52 9.05158e-14 0.625222 0.00106471 0.000462066 - 10 624 4.90925e-12 2.11716e-23 4.60126e-12 0.0374906 0.000284661 2453.34 1.30639e-13 0.6208 0.00097732 0.000425973 - 11 687 4.91322e-12 2.10675e-23 4.58993e-12 0.035616 0.000265223 2718.38 1.32122e-13 0.625 0.000872093 0.000394565 - 12 749 4.98136e-12 2.1168e-23 4.60087e-12 0.0337257 0.000235966 3031.66 7.49022e-14 0.630667 0.000780832 0.000355074 - 13 812 5.032e-12 2.12732e-23 4.61229e-12 0.0321463 0.0002119 3336.87 3.01346e-14 0.633456 0.000711735 0.000320379 - 14 874 5.07195e-12 2.13238e-23 4.61777e-12 0.0307789 0.000191704 3639.95 -6.53368e-15 0.637714 0.000649258 0.000297 - 15 937 5.06502e-12 2.12895e-23 4.61406e-12 0.0297441 0.000179612 3897.63 5.77018e-15 0.637527 0.000606143 0.000277624 - 16 999 5.02005e-12 2.12307e-23 4.60768e-12 0.0290251 0.000170576 4093.11 4.97518e-14 0.636 0.000572327 0.00026929 + 1 62 6.53175e-12 2.03034e-23 4.50593e-12 0.086913 0.00844893 441.275 -1.33549e-12 0.746032 0.00540358 0.00203038 + 2 124 5.55112e-12 2.14558e-23 4.63204e-12 0.074634 0.00160675 598.419 -3.82306e-13 0.696 0.00349425 0.00203142 + 3 187 5.30738e-12 2.14919e-23 4.63594e-12 0.0637058 0.000927957 821.337 -1.83031e-13 0.659574 0.00274537 0.00129147 + 4 249 5.15024e-12 2.1194e-23 4.60369e-12 0.0565339 0.000744103 1042.94 -6.1484e-14 0.652 0.00213497 0.00104833 + 5 312 4.92129e-12 2.11952e-23 4.60382e-12 0.0528771 0.00058703 1192.19 1.18743e-13 0.623003 0.00193332 0.000853736 + 6 374 4.80695e-12 2.13467e-23 4.62025e-12 0.0496341 0.000466755 1353.07 2.18457e-13 0.610667 0.00170015 0.000756827 + 7 437 4.85114e-12 2.12678e-23 4.6117e-12 0.0454234 0.00039924 1615.54 1.71454e-13 0.614155 0.00143437 0.000624212 + 8 499 4.9838e-12 2.12165e-23 4.60614e-12 0.0413325 0.000351382 1951.17 6.05528e-14 0.626 0.00119489 0.000510069 + 9 562 4.95828e-12 2.11699e-23 4.60107e-12 0.0391087 0.000316496 2179.37 9.05158e-14 0.625222 0.00106471 0.000462066 + 10 624 4.90925e-12 2.11716e-23 4.60126e-12 0.0374906 0.000284661 2371.56 1.30639e-13 0.6208 0.00097732 0.000425973 + 11 687 4.91322e-12 2.10675e-23 4.58993e-12 0.035616 0.000265223 2627.77 1.32122e-13 0.625 0.000872093 0.000394565 + 12 749 4.98136e-12 2.1168e-23 4.60087e-12 0.0337257 0.000235966 2930.6 7.49022e-14 0.630667 0.000780832 0.000355074 + 13 812 5.032e-12 2.12732e-23 4.61229e-12 0.0321463 0.0002119 3225.65 3.01346e-14 0.633456 0.000711735 0.000320379 + 14 874 5.07195e-12 2.13238e-23 4.61777e-12 0.0307789 0.000191704 3518.62 -6.53368e-15 0.637714 0.000649258 0.000297 + 15 937 5.06502e-12 2.12895e-23 4.61406e-12 0.0297441 0.000179612 3767.71 5.77018e-15 0.637527 0.000606143 0.000277624 + 16 999 5.02005e-12 2.12307e-23 4.60768e-12 0.0290251 0.000170576 3956.67 4.97518e-14 0.636 0.000572327 0.00026929 --------------------End of Global Run----------------------- The run consists of 1000 proton of 210 MeV diff --git a/examples/extended/biasing/B01/exampleB01.out b/examples/extended/biasing/B01/exampleB01.out index 26dd4d0fa2..61cab53ffd 100644 --- a/examples/extended/biasing/B01/exampleB01.out +++ b/examples/extended/biasing/B01/exampleB01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/B02/exampleB02.out b/examples/extended/biasing/B02/exampleB02.out index af31744abc..3dbf2ce688 100644 --- a/examples/extended/biasing/B02/exampleB02.out +++ b/examples/extended/biasing/B02/exampleB02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/B03/exampleB03.out b/examples/extended/biasing/B03/exampleB03.out index 2847b19cce..ba26b99d3d 100644 --- a/examples/extended/biasing/B03/exampleB03.out +++ b/examples/extended/biasing/B03/exampleB03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/GB01/exampleGB01.out b/examples/extended/biasing/GB01/exampleGB01.out index 4b98ddb691..6ed2db58c7 100644 --- a/examples/extended/biasing/GB01/exampleGB01.out +++ b/examples/extended/biasing/GB01/exampleGB01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/GB02/exampleGB02.out b/examples/extended/biasing/GB02/exampleGB02.out index cb1536b4a0..0bf70ae380 100644 --- a/examples/extended/biasing/GB02/exampleGB02.out +++ b/examples/extended/biasing/GB02/exampleGB02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/GB03/exampleGB03.out b/examples/extended/biasing/GB03/exampleGB03.out index 66cab44838..3573292f0d 100644 --- a/examples/extended/biasing/GB03/exampleGB03.out +++ b/examples/extended/biasing/GB03/exampleGB03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -805,7 +805,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.090000s Real=0.136506s Sys=0.010000s + User=0.090000s Real=0.098888s Sys=0.010000s Region -- -- appears in world volume This region is in the mass world. @@ -865,7 +865,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.150000s Real=0.155563s Sys=0.000000s + User=0.160000s Real=0.157271s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/biasing/GB04/exampleGB04.out b/examples/extended/biasing/GB04/exampleGB04.out index 043cb895bf..90d341de4a 100644 --- a/examples/extended/biasing/GB04/exampleGB04.out +++ b/examples/extended/biasing/GB04/exampleGB04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1012,7 +1012,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002122s Sys=0.000000s + User=0.000000s Real=0.002383s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -1934,7 +1934,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.004084s Sys=0.000000s + User=0.000000s Real=0.004956s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -4102,7 +4102,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.011872s Sys=0.000000s + User=0.010000s Real=0.010366s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/biasing/GB05/exampleGB05.out b/examples/extended/biasing/GB05/exampleGB05.out index e39bb95246..2e76a06695 100644 --- a/examples/extended/biasing/GB05/exampleGB05.out +++ b/examples/extended/biasing/GB05/exampleGB05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/GB06/exampleGB06.out b/examples/extended/biasing/GB06/exampleGB06.out index 5aa321f9fe..6a3cc78021 100644 --- a/examples/extended/biasing/GB06/exampleGB06.out +++ b/examples/extended/biasing/GB06/exampleGB06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out index e468323885..ae011bbc71 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -322,7 +322,7 @@ nb event 175000 Run terminated. Run Summary Run Aborted after 178102 events processed. - User=77.260000s Real=77.950652s Sys=0.130000s + User=78.510000s Real=80.035046s Sys=0.100000s Results of reverse/adjoint simulation! normalised edep [MeV] = 0.00163833 error[MeV] = 1.63831e-05 diff --git a/examples/extended/electromagnetic/TestEm0/TestEm0.out b/examples/extended/electromagnetic/TestEm0/TestEm0.out index 24aed0beae..01eb14ecc9 100644 --- a/examples/extended/electromagnetic/TestEm0/TestEm0.out +++ b/examples/extended/electromagnetic/TestEm0/TestEm0.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -301,7 +301,8 @@ Enable angular generator interface 1 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 1 GeV Max kinetic energy for NIEL computation 1 MeV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -369,7 +370,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000490s Sys=0.000000s + User=0.000000s Real=0.000550s Sys=0.000000s ========= Table of registered couples ============================== @@ -424,7 +425,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000173s Sys=0.000000s + User=0.000000s Real=0.000169s Sys=0.000000s G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 diff --git a/examples/extended/electromagnetic/TestEm1/TestEm1.out b/examples/extended/electromagnetic/TestEm1/TestEm1.out index 084122aab5..d605eb0741 100644 --- a/examples/extended/electromagnetic/TestEm1/TestEm1.out +++ b/examples/extended/electromagnetic/TestEm1/TestEm1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -332,7 +332,8 @@ Enable angular generator interface 0 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 1 GeV Max kinetic energy for NIEL computation 0 eV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -363,6 +364,9 @@ Screening factor 1 /run/initialize The Box is 10 m of Aluminium + G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11. + Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process. + If you want the general process, with optional biasing, use G4Radioactivation. GetProcess : RadioactiveDecay ##/globalField/setValue 0 0 5 tesla @@ -421,7 +425,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 2000 - User=1.360000s Real=1.364241s Sys=0.000000s + User=1.450000s Real=1.449853s Sys=0.000000s ======================== run summary ====================== @@ -490,7 +494,7 @@ N=17 V[N]={2090744789413038816, 475879386275182165, 924531448196777844, 92377436 Run terminated. Run Summary Number of events processed : 2000 - User=0.080000s Real=0.080563s Sys=0.000000s + User=0.080000s Real=0.085569s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm10/TestEm10.out b/examples/extended/electromagnetic/TestEm10/TestEm10.out index 71b30a8435..b3616d8d76 100644 --- a/examples/extended/electromagnetic/TestEm10/TestEm10.out +++ b/examples/extended/electromagnetic/TestEm10/TestEm10.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -560,7 +560,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.250000s Real=0.252695s Sys=0.000000s + User=0.270000s Real=0.273413s Sys=0.000000s ================== run summary ===================== End of Run TotNbofEvents = 1000 Mean energy deposit in absorber = 0.0480988 +-0.0184346 MeV diff --git a/examples/extended/electromagnetic/TestEm11/TestEm11.out b/examples/extended/electromagnetic/TestEm11/TestEm11.out index 46b161df16..80e6f5ea15 100644 --- a/examples/extended/electromagnetic/TestEm11/TestEm11.out +++ b/examples/extended/electromagnetic/TestEm11/TestEm11.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -35,6 +35,9 @@ userDetector->Construct() start. World is registered to the default region. physicsList->Construct() start. + G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11. + Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process. + If you want the general process, with optional biasing, use G4Radioactivation. physicsList->CheckParticleList() start. physicsList->setCut() start. # @@ -471,7 +474,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 20000 - User=1.300000s Real=1.292872s Sys=0.000000s + User=1.330000s Real=1.340874s Sys=0.010000s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm12/TestEm12.out b/examples/extended/electromagnetic/TestEm12/TestEm12.out index 744c264627..5323f17798 100644 --- a/examples/extended/electromagnetic/TestEm12/TestEm12.out +++ b/examples/extended/electromagnetic/TestEm12/TestEm12.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -141,7 +141,8 @@ Enable angular generator interface 0 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 1 GeV Max kinetic energy for NIEL computation 0 eV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -179,7 +180,7 @@ Screening factor 1 Run terminated. Run Summary Number of events processed : 10000 - User=0.860000s Real=0.866216s Sys=0.000000s + User=0.920000s Real=0.921520s Sys=0.000000s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm13/TestEm13.out b/examples/extended/electromagnetic/TestEm13/TestEm13.out index dd86982b21..e9e4f5e168 100644 --- a/examples/extended/electromagnetic/TestEm13/TestEm13.out +++ b/examples/extended/electromagnetic/TestEm13/TestEm13.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -52,7 +52,8 @@ Enable angular generator interface 0 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 1 GeV Max kinetic energy for NIEL computation 0 eV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -170,7 +171,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=2.230000s Real=2.238507s Sys=0.000000s + User=2.250000s Real=2.275494s Sys=0.000000s ======================== run summary ====================== @@ -237,7 +238,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=2.400000s Real=2.408276s Sys=0.000000s + User=3.350000s Real=3.420549s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm14/TestEm14.out b/examples/extended/electromagnetic/TestEm14/TestEm14.out index 752d464035..677daa4910 100644 --- a/examples/extended/electromagnetic/TestEm14/TestEm14.out +++ b/examples/extended/electromagnetic/TestEm14/TestEm14.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -52,7 +52,8 @@ Enable angular generator interface 0 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 1 GeV Max kinetic energy for NIEL computation 0 eV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -170,7 +171,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=3.380000s Real=3.392458s Sys=0.000000s + User=3.490000s Real=3.547021s Sys=0.000000s ======================== run summary ====================== @@ -240,7 +241,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=3.300000s Real=3.299101s Sys=0.000000s + User=3.300000s Real=3.315051s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm15/TestEm15.out b/examples/extended/electromagnetic/TestEm15/TestEm15.out index 755bdeaa5b..8fb026718f 100644 --- a/examples/extended/electromagnetic/TestEm15/TestEm15.out +++ b/examples/extended/electromagnetic/TestEm15/TestEm15.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -490,7 +490,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=0.040000s Real=0.037616s Sys=0.000000s + User=0.030000s Real=0.045402s Sys=0.000000s The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 ) @@ -562,7 +562,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=0.050000s Real=0.055099s Sys=0.000000s + User=0.050000s Real=0.055686s Sys=0.000000s The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm16/TestEm16.out b/examples/extended/electromagnetic/TestEm16/TestEm16.out index 94d118eda8..cc5776e4d2 100644 --- a/examples/extended/electromagnetic/TestEm16/TestEm16.out +++ b/examples/extended/electromagnetic/TestEm16/TestEm16.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -270,7 +270,7 @@ G4SynchrotronRadiation::GetRandomEnergySR : Run terminated. Run Summary Number of events processed : 100 - User=0.200000s Real=0.192070s Sys=0.000000s + User=0.190000s Real=0.201053s Sys=0.000000s Summary for synchrotron radiation : Number of photons = 65086 Emean = 20.39 +/- 0.1444 keV @@ -284,12 +284,6 @@ mixmax state, file version 1.0 N=17 V[N]={1402135844460474226, 1250051493877681105, 260032901618238037, 1959548330058272173, 333697207877744815, 2195090962095573257, 757497238491870347, 1983172992205346680, 333986983656040467, 1332034388201043752, 1148533830487492631, 1572133571051143919, 269618836299041414, 1500430236492907451, 1379717044319899969, 489791943798559179, 1807394300704501137} counter= 13sumtot= 1528124031986278951 --------------------------------------- G4 kernel has come to Quit state. -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 95705 No Calls: 81639 Max-trial: 2 ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 Dynamic pools deleted: 9 / Total memory freed: 0.35 MB diff --git a/examples/extended/electromagnetic/TestEm17/TestEm17.out b/examples/extended/electromagnetic/TestEm17/TestEm17.out index 667f7126d8..fb75d2296a 100644 --- a/examples/extended/electromagnetic/TestEm17/TestEm17.out +++ b/examples/extended/electromagnetic/TestEm17/TestEm17.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -189,7 +189,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 10000 - User=1.600000s Real=1.605165s Sys=0.000000s + User=1.950000s Real=2.001719s Sys=0.000000s The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -246,7 +246,7 @@ N=17 V[N]={286475725969272019, 102930219447347412, 811054343764696615, 164523614 Run terminated. Run Summary Number of events processed : 10000 - User=1.490000s Real=1.492561s Sys=0.000000s + User=1.470000s Real=1.497953s Sys=0.000000s The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -302,7 +302,7 @@ N=17 V[N]={1938593007681043377, 1555514513714236691, 194451399239091519, 1240852 Run terminated. Run Summary Number of events processed : 10000 - User=1.410000s Real=1.422179s Sys=0.000000s + User=1.510000s Real=1.864670s Sys=0.000000s The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm18/TestEm18.out b/examples/extended/electromagnetic/TestEm18/TestEm18.out index 60336ca85a..6b7efa2049 100644 --- a/examples/extended/electromagnetic/TestEm18/TestEm18.out +++ b/examples/extended/electromagnetic/TestEm18/TestEm18.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -53,7 +53,8 @@ Enable angular generator interface 0 Factor of cut reduction for sub-cutoff method 1 Max kinetic energy for CSDA tables 10 TeV Max kinetic energy for NIEL computation 0 eV -Linear loss limit 0.01 +Linear loss limit 0.01 +Read data from file for e+e- pair production by mu 0 ======================================================================= ====== Multiple Scattering Parameters ======== ======================================================================= @@ -160,7 +161,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=0.540000s Real=0.551257s Sys=0.000000s + User=0.580000s Real=0.608585s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm2/TestEm2.out b/examples/extended/electromagnetic/TestEm2/TestEm2.out index 120b773a49..4255178f3d 100644 --- a/examples/extended/electromagnetic/TestEm2/TestEm2.out +++ b/examples/extended/electromagnetic/TestEm2/TestEm2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -539,7 +539,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100 - User=2.650000s Real=2.651831s Sys=0.000000s + User=2.850000s Real=2.877386s Sys=0.000000s ===== SUMMARY ===== diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3.out b/examples/extended/electromagnetic/TestEm3/TestEm3.out index 6159588728..ee5a549c15 100644 --- a/examples/extended/electromagnetic/TestEm3/TestEm3.out +++ b/examples/extended/electromagnetic/TestEm3/TestEm3.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -508,7 +508,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100 - User=1.620000s Real=1.626427s Sys=0.010000s + User=1.940000s Real=1.942158s Sys=0.000000s ------------------------------------------------------------ material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen @@ -958,7 +958,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=1.360000s Real=1.354242s Sys=0.000000s + User=1.600000s Real=1.618314s Sys=0.000000s ------------------------------------------------------------ material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen diff --git a/examples/extended/electromagnetic/TestEm4/TestEm4.out b/examples/extended/electromagnetic/TestEm4/TestEm4.out index 8e65949eb6..a9abd3c036 100644 --- a/examples/extended/electromagnetic/TestEm4/TestEm4.out +++ b/examples/extended/electromagnetic/TestEm4/TestEm4.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -141,7 +141,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=0.690000s Real=0.696760s Sys=0.000000s + User=0.700000s Real=0.773257s Sys=0.000000s --------- Ranecu engine status --------- Initial seed (index) = 0 diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5.out b/examples/extended/electromagnetic/TestEm5/TestEm5.out index 75835ded2e..7c73206b99 100644 --- a/examples/extended/electromagnetic/TestEm5/TestEm5.out +++ b/examples/extended/electromagnetic/TestEm5/TestEm5.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -438,7 +438,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008 Run terminated. Run Summary Number of events processed : 100000 - User=0.880000s Real=0.893367s Sys=0.000000s + User=1.370000s Real=1.377399s Sys=0.000000s ======================== run summary ====================== @@ -863,7 +863,7 @@ N=17 V[N]={487039142106637111, 268522011348262973, 30963757192920968, 2982170328 Run terminated. Run Summary Number of events processed : 50000 - User=0.900000s Real=0.909986s Sys=0.000000s + User=0.920000s Real=0.922438s Sys=0.000000s ======================== run summary ====================== @@ -1293,7 +1293,7 @@ N=17 V[N]={757573894848696274, 400073108137045350, 2132458077966397313, 96621969 Run terminated. Run Summary Number of events processed : 50000 - User=2.030000s Real=2.038365s Sys=0.000000s + User=2.520000s Real=2.530312s Sys=0.000000s ======================== run summary ====================== @@ -1729,7 +1729,7 @@ N=17 V[N]={2039908199796061254, 212154955260722024, 982286759211187269, 13649097 Run terminated. Run Summary Number of events processed : 50000 - User=0.460000s Real=0.461907s Sys=0.000000s + User=0.700000s Real=0.699972s Sys=0.000000s ======================== run summary ====================== @@ -2166,7 +2166,7 @@ N=17 V[N]={981072211861672983, 1468495847380516116, 656071057052950235, 18853076 Run terminated. Run Summary Number of events processed : 50000 - User=7.810000s Real=7.832620s Sys=0.000000s + User=7.940000s Real=8.012233s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm6/TestEm6.out b/examples/extended/electromagnetic/TestEm6/TestEm6.out index 8cf837781b..bee0af570d 100644 --- a/examples/extended/electromagnetic/TestEm6/TestEm6.out +++ b/examples/extended/electromagnetic/TestEm6/TestEm6.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -194,7 +194,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000841s Sys=0.000000s + User=0.000000s Real=0.000819s Sys=0.000000s Number of process calls ---> GammaToMuPair : 5... write Root file : testem6_0.root - done ... close Root file : testem6_0.root - done @@ -300,7 +300,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000545s Sys=0.000000s + User=0.000000s Real=0.000440s Sys=0.000000s Number of process calls ---> ee2hadr : 5 AnnihiToMuPair : 1... write Root file : testem6_1.root - done ... close Root file : testem6_1.root - done diff --git a/examples/extended/electromagnetic/TestEm7/TestEm7.out b/examples/extended/electromagnetic/TestEm7/TestEm7.out index 164fd855bb..1e56a8a615 100644 --- a/examples/extended/electromagnetic/TestEm7/TestEm7.out +++ b/examples/extended/electromagnetic/TestEm7/TestEm7.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -508,7 +508,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=5.600000s Real=5.755756s Sys=0.010000s + User=5.370000s Real=5.420645s Sys=0.000000s The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -566,7 +566,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=2.260000s Real=2.293785s Sys=0.000000s + User=2.210000s Real=2.217359s Sys=0.000000s The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -966,7 +966,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.080000s Real=1.112988s Sys=0.000000s + User=1.080000s Real=1.101871s Sys=0.000000s The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 ) @@ -1360,7 +1360,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.000000s Real=0.000499s Sys=0.000000s + User=0.000000s Real=0.000438s Sys=0.000000s The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 kg/m3 ) @@ -1752,7 +1752,7 @@ Index : 3 used in the geometry : No Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.010423s Sys=0.000000s + User=0.010000s Real=0.010026s Sys=0.000000s The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -2153,7 +2153,7 @@ Index : 4 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=3.900000s Real=3.940393s Sys=0.030000s + User=3.840000s Real=3.901085s Sys=0.050000s The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 ) @@ -2560,7 +2560,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.520000s Real=0.530249s Sys=0.000000s + User=0.510000s Real=0.515612s Sys=0.000000s The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm8/TestEm8.out b/examples/extended/electromagnetic/TestEm8/TestEm8.out index bd707b5ea6..be6163fc78 100644 --- a/examples/extended/electromagnetic/TestEm8/TestEm8.out +++ b/examples/extended/electromagnetic/TestEm8/TestEm8.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -546,7 +546,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.060000s Real=0.067362s Sys=0.000000s + User=0.070000s Real=0.068029s Sys=0.000000s RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0161372 ==================================================== Beam Particle: proton diff --git a/examples/extended/electromagnetic/TestEm9/TestEm9.out b/examples/extended/electromagnetic/TestEm9/TestEm9.out index 66e5c7a652..ae5805b296 100644 --- a/examples/extended/electromagnetic/TestEm9/TestEm9.out +++ b/examples/extended/electromagnetic/TestEm9/TestEm9.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -506,7 +506,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.750000s Real=0.752146s Sys=0.000000s + User=0.740000s Real=0.745833s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 0 ================================================================= @@ -615,7 +615,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.170000s Real=1.183211s Sys=0.000000s + User=1.190000s Real=1.240852s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 1 ================================================================= @@ -1128,7 +1128,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.510000s Real=0.531399s Sys=0.000000s + User=0.510000s Real=0.512467s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 2 ================================================================= @@ -1641,7 +1641,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.760000s Real=0.767869s Sys=0.000000s + User=0.780000s Real=0.786885s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 3 ================================================================= diff --git a/examples/extended/errorpropagation/errorprop.out b/examples/extended/errorpropagation/errorprop.out index 39e03f6540..1fd59c63a6 100644 --- a/examples/extended/errorpropagation/errorprop.out +++ b/examples/extended/errorpropagation/errorprop.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -12,7 +12,7 @@ WWW : http://geant4.org/ ************************************************************** - creating G4RunManagerKernel 0x20e5640 + creating G4RunManagerKernel 0x129e650 The materials defined are : @@ -87,15 +87,15 @@ G4Transportation: Current values for thresholds related to the killing of loop Important Energy = 250 ( above this tracks are given multiple chances ) Extra Trials = 10 'important' tracks, i.e. those above 'important' energy G4Transportation constructor> set fShortStepOptimisation to false -0x23021a0G4ErrorPhysicsList:: particle process manager e+ = 0x2304820 -0x2301fc0G4ErrorPhysicsList:: particle process manager e- = 0x23062b0 -0x2301de0G4ErrorPhysicsList:: particle process manager gamma = 0x23064e0 -0x2303550G4ErrorPhysicsList:: particle process manager geantino = 0x2306730 -0x2302380G4ErrorPhysicsList:: particle process manager mu+ = 0x2306980 -0x2302690G4ErrorPhysicsList:: particle process manager mu- = 0x2306bd0 -0x2302ab0G4ErrorPhysicsList:: particle process manager pi+ = 0x2306e20 -0x2302f00G4ErrorPhysicsList:: particle process manager pi- = 0x2307070 -0x2303320G4ErrorPhysicsList:: particle process manager proton = 0x23072c0 +0x14bb1f0G4ErrorPhysicsList:: particle process manager e+ = 0x14bd870 +0x14bb010G4ErrorPhysicsList:: particle process manager e- = 0x14bf300 +0x14bae30G4ErrorPhysicsList:: particle process manager gamma = 0x14bf530 +0x14bc5a0G4ErrorPhysicsList:: particle process manager geantino = 0x14bf780 +0x14bb3d0G4ErrorPhysicsList:: particle process manager mu+ = 0x14bf9d0 +0x14bb6e0G4ErrorPhysicsList:: particle process manager mu- = 0x14bfc20 +0x14bbb00G4ErrorPhysicsList:: particle process manager pi+ = 0x14bfe70 +0x14bbf50G4ErrorPhysicsList:: particle process manager pi- = 0x14c00c0 +0x14bc370G4ErrorPhysicsList:: particle process manager proton = 0x14c0310 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 8729b2dd5f..7967a5cd12 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run1.out b/examples/extended/eventgenerator/particleGun/particleGun_run1.out index 6c769101da..f71051bd34 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run1.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -60,7 +60,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000454s Sys=0.000000s + User=0.000000s Real=0.000624s Sys=0.000000s # /tracking/verbose 0 /run/beamOn 5 @@ -80,7 +80,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 5 - User=0.000000s Real=0.000041s Sys=0.000000s + User=0.000000s Real=0.000044s Sys=0.000000s G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run2.out b/examples/extended/eventgenerator/particleGun/particleGun_run2.out index 68ee962e5f..866bcf2248 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run2.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -40,7 +40,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.270000s Real=0.266107s Sys=0.000000s + User=0.180000s Real=0.199125s Sys=0.000000s ... write Root file : run2.root - done ... close Root file : run2.root - done G4 kernel has come to Quit state. diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run3.out b/examples/extended/eventgenerator/particleGun/particleGun_run3.out index ac67b421f1..a36b133e2f 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run3.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run3.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -41,7 +41,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.200000s Real=0.197333s Sys=0.000000s + User=0.220000s Real=0.221275s Sys=0.000000s ... write Root file : run3.root - done ... close Root file : run3.root - done G4 kernel has come to Quit state. diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run4.out b/examples/extended/eventgenerator/particleGun/particleGun_run4.out index 77c6fb8698..0c123c8bc8 100644 --- a/examples/extended/eventgenerator/particleGun/particleGun_run4.out +++ b/examples/extended/eventgenerator/particleGun/particleGun_run4.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -56,7 +56,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=2.900000s Real=2.909573s Sys=0.000000s + User=3.970000s Real=4.006504s Sys=0.000000s ... write Root file : run4.root - done ... close Root file : run4.root - done G4 kernel has come to Quit state. diff --git a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out index 0cd4e36adc..b587e2685d 100644 --- a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out +++ b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -44,7 +44,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.440000s Real=0.438345s Sys=0.000000s + User=0.400000s Real=0.406575s Sys=0.010000s G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 9 of which, static: 0 diff --git a/examples/extended/exoticphysics/channeling/channeling.out b/examples/extended/exoticphysics/channeling/channeling.out index f2171eb923..7c6e2fe001 100644 --- a/examples/extended/exoticphysics/channeling/channeling.out +++ b/examples/extended/exoticphysics/channeling/channeling.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/exoticphysics/dmparticle/dmparticle.out b/examples/extended/exoticphysics/dmparticle/dmparticle.out index b2f9f6b27b..89d869d3e6 100644 --- a/examples/extended/exoticphysics/dmparticle/dmparticle.out +++ b/examples/extended/exoticphysics/dmparticle/dmparticle.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1046,7 +1046,7 @@ Event = 0 z0 = -779.999 Primary direction = (0,0,1) Run terminated. Run Summary Number of events processed : 100 - User=0.570000s Real=0.584071s Sys=0.010000s + User=0.570000s Real=0.662627s Sys=0.000000s RunAction: End of run actions are started 1 Nevt= 100 Edep= 3722.43 ==================================================== Beam Particle: proton diff --git a/examples/extended/exoticphysics/monopole/monopole.out b/examples/extended/exoticphysics/monopole/monopole.out index 65e8e024a0..98e44b0fe2 100644 --- a/examples/extended/exoticphysics/monopole/monopole.out +++ b/examples/extended/exoticphysics/monopole/monopole.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -933,11 +933,3 @@ Index : 1 used in the geometry : Yes ... close Root file : monopole.root - done Graphics systems deleted. Visualization Manager deleting... -G4Integration Driver Stats: #QuickAdvance 1519870 - #AccurateAdvance 8944 #good steps 14494 #bad steps 1 -G4ChordFinder statistics report: - No trials: 1518812 No Calls: 1518280 Max-trial: 2 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4Integration Driver Stats: #QuickAdvance 983295 - #AccurateAdvance 581 #good steps 5180 #bad steps 0 -G4ChordFinder statistics report: - No trials: 983186 No Calls: 983085 Max-trial: 3 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 diff --git a/examples/extended/exoticphysics/ucn/ExUCN.out b/examples/extended/exoticphysics/ucn/ExUCN.out index 289363e697..46dc14b5a8 100644 --- a/examples/extended/exoticphysics/ucn/ExUCN.out +++ b/examples/extended/exoticphysics/ucn/ExUCN.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1479,7 +1479,7 @@ Terminate current event processing. Run terminated. Run Summary Number of events processed : 1 - User=0.030000s Real=0.034800s Sys=0.010000s + User=0.030000s Real=0.031555s Sys=0.000000s Sum NoMT: 0 Sum NoMRT: 0 Sum NoMRCondition: 0 diff --git a/examples/extended/field/field01/field01.out b/examples/extended/field/field01/field01.out index a19faa33a8..8c7b677fb8 100644 --- a/examples/extended/field/field01/field01.out +++ b/examples/extended/field/field01/field01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -263,20 +263,12 @@ End of Run User Vis Actions: none Some /vis commands (optionally) take a string to specify colour. "/vis/list" to see available colours. -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 F01FieldSetup::CreateStepperAndChordFinder() called. 1. Creating Stepper. G4DormandPrince745 Stepper is chosen The minimal step is equal to 1 mm 2. Creating ChordFinder. 3. Updating Field Manager. -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 F01FieldSetup::CreateStepperAndChordFinder() called. 1. Creating Stepper. G4DormandPrince745 Stepper is chosen @@ -368,7 +360,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000172s Sys=0.000000s + User=0.000000s Real=0.000179s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. @@ -399,7 +391,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000138s Sys=0.000000s + User=0.000000s Real=0.000173s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. @@ -430,7 +422,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000205s Sys=0.000000s + User=0.000000s Real=0.000231s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. @@ -461,13 +453,9 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000136s Sys=0.000000s + User=0.000000s Real=0.000150s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. -G4Integration Driver Stats: #QuickAdvance 186 - #AccurateAdvance 30 #good steps 30 #bad steps 0 -G4ChordFinder statistics report: - No trials: 184 No Calls: 168 Max-trial: 5 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 F01FieldSetup::CreateStepperAndChordFinder() called. 1. Creating Stepper. G4DormandPrince745 Stepper is chosen @@ -503,7 +491,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000160s Sys=0.000000s + User=0.000000s Real=0.000164s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. @@ -534,7 +522,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.007954s Sys=0.000000s + User=0.000000s Real=0.010809s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. # @@ -601,7 +589,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.010000s Real=0.007430s Sys=0.000000s + User=0.000000s Real=0.008222s Sys=0.000000s G4Transportation: Statistics for looping particles No looping tracks found or killed. Graphics systems deleted. @@ -612,7 +600,3 @@ Number of memory pools allocated: 12 of which, static: 0 Dynamic pools deleted: 12 / Total memory freed: 0.29 MB ============================================================ RunManagerKernel is deleted. Good bye :) -G4Integration Driver Stats: #QuickAdvance 19753 - #AccurateAdvance 209 #good steps 209 #bad steps 1 -G4ChordFinder statistics report: - No trials: 19752 No Calls: 19404 Max-trial: 4 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 diff --git a/examples/extended/field/field02/field02.out b/examples/extended/field/field02/field02.out index f9ab3bf018..6f9d6270cf 100644 --- a/examples/extended/field/field02/field02.out +++ b/examples/extended/field/field02/field02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -5298,7 +5298,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne Run terminated. Run Summary Number of events processed : 100 - User=0.030000s Real=0.044940s Sys=0.000000s + User=0.030000s Real=0.051519s Sys=0.000000s # /calor/setAbsMat Air /calor/setWorldMat Xe20CO2 @@ -5768,7 +5768,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000599s Sys=0.000000s + User=0.000000s Real=0.000665s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/field/field03/field03.out b/examples/extended/field/field03/field03.out index 61a9d013b0..98458f7b90 100644 --- a/examples/extended/field/field03/field03.out +++ b/examples/extended/field/field03/field03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -268,14 +268,6 @@ End of Run User Vis Actions: none Some /vis commands (optionally) take a string to specify colour. "/vis/list" to see available colours. -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 F03FieldSetup::UpdateField> The minimal step is equal to 10 mm Stepper Type chosen = 4 G4ClassicalRK4 (default) is called @@ -983,7 +975,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.001146s Sys=0.000000s + User=0.000000s Real=0.001170s Sys=0.000000s ========= Table of registered couples ============================== @@ -1002,7 +994,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.010000s Real=0.010395s Sys=0.000000s + User=0.010000s Real=0.010387s Sys=0.000000s Set global field value to (0,0,1000) Gauss ========= Table of registered couples ============================== @@ -1021,16 +1013,8 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.001357s Sys=0.000000s + User=0.000000s Real=0.001382s Sys=0.000000s Set global field value to (33000,0,0) Gauss -G4Integration Driver Stats: #QuickAdvance 4741 - #AccurateAdvance 636 #good steps 636 #bad steps 0 -G4ChordFinder statistics report: - No trials: 4236 No Calls: 3913 Max-trial: 4 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4Integration Driver Stats: #QuickAdvance 4967 - #AccurateAdvance 2655 #good steps 2655 #bad steps 0 -G4ChordFinder statistics report: - No trials: 3937 No Calls: 3604 Max-trial: 4 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 F03FieldSetup::UpdateField> The minimal step is equal to 10 mm Stepper Type chosen = 4 G4ClassicalRK4 (default) is called @@ -1072,7 +1056,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000350s Sys=0.000000s + User=0.000000s Real=0.000410s Sys=0.000000s /tracking/verbose 0 # /calor/setAbsMat Xe20CO2 @@ -1510,7 +1494,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.330000s Real=0.330828s Sys=0.000000s + User=0.340000s Real=0.342283s Sys=0.010000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. @@ -1519,7 +1503,3 @@ Number of memory pools allocated: 12 of which, static: 0 Dynamic pools deleted: 12 / Total memory freed: 1.5 MB ============================================================ RunManagerKernel is deleted. Good bye :) -G4Integration Driver Stats: #QuickAdvance 358763 - #AccurateAdvance 100318 #good steps 200708 #bad steps 350 -G4ChordFinder statistics report: - No trials: 157705 No Calls: 149629 Max-trial: 22 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 diff --git a/examples/extended/field/field04/field04.out b/examples/extended/field/field04/field04.out index 5878080403..6df523126d 100644 --- a/examples/extended/field/field04/field04.out +++ b/examples/extended/field/field04/field04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -11006,51 +11006,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-14.676713(mm),0.87368791(mm),78.646228(mm),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.42 cm 873 um 7.62 cm 38.9 MeV 0 eV 0 fm 0 fm Target initStep - 1 -1.3192255 cm 582.02131 um 7.5379083 cm 33.709603 MeV 5.2163705 MeV 1.3887399 mm 1.3887399 mm Target hIoni - 2 -1.3163422 cm 579.30207 um 7.5364053 cm 33.602565 MeV 107.03844 keV 32.650463 um 1.4213904 mm Target CoulombScat - 3 -1.2167915 cm 534.90751 um 7.48624 cm 28.527407 MeV 5.0751576 MeV 1.1247499 mm 2.5461403 mm Target hIoni - 4 -1.1352514 cm 444.16354 um 7.4525145 cm 23.704864 MeV 4.8225426 MeV 894.69134 um 3.4408316 mm Target hIoni - 5 -1.0683975 cm 412.77512 um 7.4351673 cm 19.273609 MeV 4.4312555 MeV 697.81623 um 4.1386478 mm Target hIoni - 6 -1.0169874 cm 293.1473 um 7.4285679 cm 15.909325 MeV 3.3642835 MeV 537.44018 um 4.676088 mm Target hIoni - 7 -9.8317693 mm 58.735249 um 7.4179575 cm 12.585668 MeV 3.3236576 MeV 429.83456 um 5.1059226 mm Target hIoni - 8 -9.5558649 mm -102.45994 um 7.4090927 cm 9.9159381 MeV 2.6697297 MeV 336.249 um 5.4421716 mm Target hIoni - 9 -9.359966 mm -267.33791 um 7.4021429 cm 7.0782583 MeV 2.8376798 MeV 269.94181 um 5.7121134 mm Target hIoni - 10 -9.2633349 mm -419.51379 um 7.3933449 cm 4.3961284 MeV 2.68213 MeV 205.59882 um 5.9177122 mm Target hIoni - 11 -9.2140656 mm -529.34786 um 7.3876892 cm 939.6711 keV 3.4564573 MeV 138.49246 um 6.0562047 mm Target hIoni - 12 -9.2124755 mm -536.06464 um 7.3870061 cm 112.83167 keV 826.83944 keV 12.374872 um 6.0685795 mm Target hIoni - 13 -9.2124281 mm -536.29523 um 7.386983 cm 0 eV 112.83167 keV 665.31635 nm 6.0692448 mm Target hIoni - 14 -9.2124281 mm -536.29523 um 7.386983 cm 0 eV 0 eV 0 fm 6.0692448 mm Target Scintillation -Track (trackID 5, parentID 1) is processed with stopping code 2 - -********************************************************************************************************* -* G4Track Information: Particle = mu+, Track ID = 17, Parent ID = 5 -********************************************************************************************************* - -Step# X Y Z KineE dEStep StepLeng TrakLeng Volume Process - 0 -9.21 mm -536 um 7.39 cm 4.12 MeV 0 eV 0 fm 0 fm Target initStep - 1 -9.1456725 mm -592.12299 um 7.3958896 cm 1.4650641 MeV 2.6547486 MeV 143.92583 um 143.92583 um Target muIoni - 2 -9.1287044 mm -590.17162 um 7.3974038 cm 132.84446 keV 1.3322196 MeV 29.335773 um 173.26161 um Target muIoni - 3 -9.1286088 mm -589.82139 um 7.3974252 cm 64.359442 keV 68.485021 keV 874.5444 nm 174.13615 um Target muIoni - 4 -9.1286158 mm -589.89891 um 7.3974367 cm 0 eV 64.359442 keV 359.00018 nm 174.49515 um Target muIoni - 5 -9.1286158 mm -589.89891 um 7.3974367 cm 0 eV 0 eV 0 fm 174.49515 um Target Scintillation -Track (trackID 17, parentID 5) is processed with stopping code 2 -NULL returned from G4StackManager. -Terminate current event processing. -===================================== - G4EventManager::ProcessOneEvent() -===================================== -G4PrimaryTransformer::PrimaryVertex (-17.061419(mm),-1.9046406(mm),78.225741(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-14.397027(mm),-1.040827(mm),78.695545(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11059,7 +11015,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-15.450563(mm),-0.25398401(mm),78.509778(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-15.625758(mm),-3.1224928(mm),78.478886(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11068,7 +11024,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-12.749889(mm),-2.7222276(mm),78.985979(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-12.432274(mm),-3.3379955(mm),79.041984(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11077,7 +11033,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-15.528645(mm),0.67764856(mm),78.49601(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-15.965519(mm),-1.9443827(mm),78.418977(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11086,7 +11042,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-15.372204(mm),-1.8981448(mm),78.523595(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-14.911962(mm),2.3811459(mm),78.604748(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11095,7 +11051,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-16.662445(mm),-0.81286577(mm),78.29609(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-14.478616(mm),-3.0532103(mm),78.681158(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11104,7 +11060,7 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-11.005841(mm),-0.54924459(mm),79.293502(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-12.269897(mm),0.7679733(mm),79.070615(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11113,7 +11069,16 @@ Terminate current event processing. ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-10.384607(mm),0.25598394(mm),79.403043(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-16.599402(mm),-0.7409507(mm),78.307207(mm),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 (-17.70718(mm),-0.13246843(mm),78.111875(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11136,12 +11101,12 @@ G4NistMaterialBuilder::FindOrBuildMaterial G4_W --------- Ranecu engine status --------- Initial seed (index) = 159 - Current couple of seeds = 231192465, 497078173 + Current couple of seeds = 1826779113, 332233375 ---------------------------------------- ===================================== G4EventManager::ProcessOneEvent() ===================================== -G4PrimaryTransformer::PrimaryVertex (-13.635733(mm),-3.6166923(mm),78.829781(mm),0(nsec)) +G4PrimaryTransformer::PrimaryVertex (-16.054606(mm),-3.1850447(mm),78.403269(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! Track (trackID 1, parentID 0) is processed with stopping code 2 @@ -11152,7 +11117,3 @@ Visualization Manager deleting... ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Maximum number of tracks in the urgent stack : 576460752303423487 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -G4Integration Driver Stats: #QuickAdvance 13794 - #AccurateAdvance 5277 #good steps 43763 #bad steps 0 -G4ChordFinder statistics report: - No trials: 12796 No Calls: 9426 Max-trial: 5 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 diff --git a/examples/extended/field/field05/field05.out b/examples/extended/field/field05/field05.out index 248aaeef2d..46f6bbfd63 100644 --- a/examples/extended/field/field05/field05.out +++ b/examples/extended/field/field05/field05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/field/field06/field06.out b/examples/extended/field/field06/field06.out index 9ea887598c..e085917ab0 100644 --- a/examples/extended/field/field06/field06.out +++ b/examples/extended/field/field06/field06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -2305,7 +2305,7 @@ Terminate current event processing. Run terminated. Run Summary Number of events processed : 1 - User=0.010000s Real=0.020700s Sys=0.000000s + User=0.010000s Real=0.020998s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/g3tog4/clGeometry/clGeometry.out b/examples/extended/g3tog4/clGeometry/clGeometry.out index 2fd3436508..72ac4be2a2 100644 --- a/examples/extended/g3tog4/clGeometry/clGeometry.out +++ b/examples/extended/g3tog4/clGeometry/clGeometry.out @@ -7,7 +7,7 @@ evaluating -m ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -846,7 +846,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000467s Sys=0.000000s + User=0.000000s Real=0.000498s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -936,7 +936,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000044s Sys=0.000000s + User=0.000000s Real=0.000035s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -966,7 +966,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000110s Sys=0.000000s + User=0.000000s Real=0.000098s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -996,7 +996,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000052s Sys=0.000000s + User=0.000000s Real=0.000050s Sys=0.000000s Region -- -- appears in world volume This region is in the mass world. @@ -1056,7 +1056,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000045s Sys=0.000000s + User=0.000000s Real=0.000060s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/geometry/transforms/batch.out b/examples/extended/geometry/transforms/batch.out index 213ff99b7e..e8e71b66aa 100644 --- a/examples/extended/geometry/transforms/batch.out +++ b/examples/extended/geometry/transforms/batch.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -138,7 +138,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000479s Sys=0.000000s + User=0.000000s Real=0.000491s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/hadronic/FissionFragment/FissionFragment.out b/examples/extended/hadronic/FissionFragment/FissionFragment.out index 89584db7b7..cb774dab8d 100644 --- a/examples/extended/hadronic/FissionFragment/FissionFragment.out +++ b/examples/extended/hadronic/FissionFragment/FissionFragment.out @@ -5,7 +5,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/hadronic/Hadr00/hadr00.out b/examples/extended/hadronic/Hadr00/hadr00.out index d1fa8dc280..01a493298d 100644 --- a/examples/extended/hadronic/Hadr00/hadr00.out +++ b/examples/extended/hadronic/Hadr00/hadr00.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -776,7 +776,7 @@ EventAction: Event # 0 started Run terminated. Run Summary Number of events processed : 10 - User=0.010000s Real=0.024898s Sys=0.000000s + User=0.020000s Real=0.262601s Sys=0.010000s RunAction: End of run actions are started HistoManager: End of run actions are started ### Fill Cross Sections for proton off Al diff --git a/examples/extended/hadronic/Hadr01/History b/examples/extended/hadronic/Hadr01/History index 4eb9dd3564..25cba1dab3 100644 --- a/examples/extended/hadronic/Hadr01/History +++ b/examples/extended/hadronic/Hadr01/History @@ -14,6 +14,10 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +18-01-20 V.Ivanchenko (exhadr01-V10-05-02) +- HistoManager - removed FPE error (happens if check volume + material is not vacuum) + 21-08-19 V.Ivanchenko (exhadr01-V10-05-01) - DetectorConstruction - added "Battery" material from problem report 2175 and new macro test_battery.in diff --git a/examples/extended/hadronic/Hadr01/hadr01.out b/examples/extended/hadronic/Hadr01/hadr01.out index e0d24e61db..36e48bbced 100644 --- a/examples/extended/hadronic/Hadr01/hadr01.out +++ b/examples/extended/hadronic/Hadr01/hadr01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -826,7 +826,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics 100.00 10k 1 197 200 0.00 Check ### Run 0 starts. ### Run 0 start -RunAction::BeginOfRunAction: User=0.910000s Real=0.975400s Sys=0.020000s +RunAction::BeginOfRunAction: User=0.840000s Real=1.223337s Sys=0.020000s NuclearData: User=0.000000s Real=0.000004s Sys=0.000000s EventAction: Event # 0 started EventAction: Event # 10 started @@ -841,7 +841,7 @@ EventAction: Event # 90 started Run terminated. Run Summary Number of events processed : 100 - User=0.090000s Real=0.107910s Sys=0.000000s + User=0.090000s Real=0.284320s Sys=0.000000s RunAction: End of run actions are started HistoManager: End of run actions are started ======================================================== @@ -863,11 +863,11 @@ Average number of muons 0 Average number of deuterons+tritons 0.23 Average number of He3+alpha 0.2 Average number of ions 0.44 -Average number of forward neutrons 0.12 -Average number of reflected neutrons 0.62 +Average number of forward neutrons 0 +Average number of reflected neutrons 0.73 Average number of leaked neutrons 0 Average number of proton leak 0.36 -Average number of pion leak 0.21 +Average number of pion leak 0.2 ======================================================== # diff --git a/examples/extended/hadronic/Hadr01/src/HistoManager.cc b/examples/extended/hadronic/Hadr01/src/HistoManager.cc index f7c7cdd3ed..bb1bccc554 100644 --- a/examples/extended/hadronic/Hadr01/src/HistoManager.cc +++ b/examples/extended/hadronic/Hadr01/src/HistoManager.cc @@ -467,11 +467,12 @@ void HistoManager::AddTargetStep(const G4Step* step) void HistoManager::AddLeakingParticle(const G4Track* track) { - const G4ParticleDefinition* pd = track->GetDefinition(); - G4double e = std::log10(track->GetKineticEnergy()/MeV); + const G4ParticleDefinition* pd = track->GetDefinition(); + const G4StepPoint* sp = track->GetStep()->GetPreStepPoint(); + G4double e = std::log10(sp->GetKineticEnergy()/MeV); - G4ThreeVector pos = track->GetPosition(); - G4ThreeVector dir = track->GetMomentumDirection(); + G4ThreeVector pos = sp->GetPosition(); + G4ThreeVector dir = sp->GetMomentumDirection(); G4double x = pos.x(); G4double y = pos.y(); G4double z = pos.z(); diff --git a/examples/extended/hadronic/Hadr02/hadr02.out b/examples/extended/hadronic/Hadr02/hadr02.out index 98141578a5..0c5d03131c 100644 --- a/examples/extended/hadronic/Hadr02/hadr02.out +++ b/examples/extended/hadronic/Hadr02/hadr02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -810,7 +810,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 100 - User=0.110000s Real=0.139295s Sys=0.000000s + User=0.100000s Real=0.321217s Sys=0.000000s RunAction: End of run action is starting HistoManager: End of run actions are started ======================================================== diff --git a/examples/extended/hadronic/Hadr03/hadr03.out b/examples/extended/hadronic/Hadr03/hadr03.out index 67e24797c0..93730026ab 100644 --- a/examples/extended/hadronic/Hadr03/hadr03.out +++ b/examples/extended/hadronic/Hadr03/hadr03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -367,7 +367,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.120000s Real=0.136421s Sys=0.000000s + User=0.120000s Real=0.132529s Sys=0.000000s 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 aadc8a3b5a..187437f47c 100644 --- a/examples/extended/hadronic/Hadr04/hadr04.out +++ b/examples/extended/hadronic/Hadr04/hadr04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -159,7 +159,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000 - User=14.620000s Real=14.848915s Sys=0.000000s + User=14.900000s Real=15.870897s Sys=0.000000s The run is 1000 neutron of 2 MeV through 50 cm of Water_ts (density: 1 g/cm3 ) diff --git a/examples/extended/hadronic/Hadr06/hadr06.out b/examples/extended/hadronic/Hadr06/hadr06.out index 96f2fb9b52..6b34066290 100644 --- a/examples/extended/hadronic/Hadr06/hadr06.out +++ b/examples/extended/hadronic/Hadr06/hadr06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -419,7 +419,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=7.860000s Real=7.911688s Sys=0.010000s + User=7.800000s Real=8.412191s Sys=0.000000s The run is 10000 neutron of 14.1 MeV through 30 cm of Li7 (density: 1.85 g/cm3 ) diff --git a/examples/extended/hadronic/Hadr07/hadr07.out b/examples/extended/hadronic/Hadr07/hadr07.out index 128345650e..b14a36c040 100644 --- a/examples/extended/hadronic/Hadr07/hadr07.out +++ b/examples/extended/hadronic/Hadr07/hadr07.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -399,7 +399,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=4.800000s Real=4.818747s Sys=0.000000s + User=5.640000s Real=5.703005s Sys=0.000000s ======================== run summary ===================== diff --git a/examples/extended/hadronic/NeutronSource/NeutronSource.out b/examples/extended/hadronic/NeutronSource/NeutronSource.out index 2571d11afe..c00cb1f172 100644 --- a/examples/extended/hadronic/NeutronSource/NeutronSource.out +++ b/examples/extended/hadronic/NeutronSource/NeutronSource.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -436,7 +436,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=6.690000s Real=6.846393s Sys=0.010000s + User=7.300000s Real=7.653393s Sys=0.010000s The run is 10000 Am241 of 0 meV within BeO (D = 3 cm L = 6 cm ) diff --git a/examples/extended/medical/DICOM/run.out b/examples/extended/medical/DICOM/run.out index c2c27cc4ed..7fcd95e62e 100644 --- a/examples/extended/medical/DICOM/run.out +++ b/examples/extended/medical/DICOM/run.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1005,7 +1005,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 100 - User=0.020000s Real=2.378336s Sys=0.000000s + User=0.020000s Real=0.030020s Sys=0.010000s --------------------End of Global Run----------------------- The run was 100 events LOCAL TOTAL DOSE : 0 Gy diff --git a/examples/extended/medical/GammaTherapy/GammaTherapy.out b/examples/extended/medical/GammaTherapy/GammaTherapy.out index f61e094656..8267f907fa 100644 --- a/examples/extended/medical/GammaTherapy/GammaTherapy.out +++ b/examples/extended/medical/GammaTherapy/GammaTherapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -583,7 +583,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=3.780000s Real=3.786960s Sys=0.000000s + User=3.830000s Real=3.952165s Sys=0.000000s Histo: End of run actions are started ======================================================== Number of events 10000 diff --git a/examples/extended/medical/dna/chem1/chem1.out b/examples/extended/medical/dna/chem1/chem1.out index 2ad66a710f..0643ed9385 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -514,7 +514,7 @@ ___________________________________ Run terminated. Run Summary Number of events processed : 1 - User=109.220000s Real=109.997967s Sys=0.060000s + User=108.040000s Real=108.897602s Sys=0.070000s G4 kernel has come to Quit state. UserDetectorConstruction deleted. UserPhysicsList deleted. diff --git a/examples/extended/medical/dna/chem2/chem2.out b/examples/extended/medical/dna/chem2/chem2.out index 3ff449670b..86404019dd 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/chem3/chem3.out b/examples/extended/medical/dna/chem3/chem3.out index b626c4b706..d8258562f7 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/chem4/chem4.out b/examples/extended/medical/dna/chem4/chem4.out index 05b2d314b3..bf1277ce52 100644 --- a/examples/extended/medical/dna/chem4/chem4.out +++ b/examples/extended/medical/dna/chem4/chem4.out @@ -1,11 +1,11 @@ -Seed used : 1575548188 +Seed used : 1581670617 ############################################ !!! WARNING - FPE detection is activated !!! ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -260,15 +260,17 @@ Start event 2 Start event 3 Start event 4 Start event 5 + * PrimaryKiller: aborts event 5, energy loss is too large. + * Energy loss by primary is: 2.1301 keV. Event is aborted if the Eloss is > 2 keV Start event 6 Start event 7 Start event 8 Start event 9 --------------------End of Global Run----------------------- - The run has 10 events -Number of events recorded by the species scorer = 10 - Total energy deposited in the world volume : 11635 eV + The run has 9 events +Number of events recorded by the species scorer = 9 + Total energy deposited in the world volume : 9210.8 eV ------------------------------------------------------------ Graphics systems deleted. diff --git a/examples/extended/medical/dna/clustering/clustering.out b/examples/extended/medical/dna/clustering/clustering.out index 475b39c1b8..7cd9ca8b08 100644 --- a/examples/extended/medical/dna/clustering/clustering.out +++ b/examples/extended/medical/dna/clustering/clustering.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/dnaphysics/dnaphysics.out b/examples/extended/medical/dna/dnaphysics/dnaphysics.out index 082c45da50..2cffb0269b 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -12,7 +12,7 @@ WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0x179edb0 +##### Create analysis manager 0x2789200 Using Root analysis manager Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... @@ -695,7 +695,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 2 - User=5.570000s Real=5.627477s Sys=0.030000s + User=5.610000s Real=5.721499s Sys=0.040000s ... write Root file : dna.root - done ... close Root file : dna.root - done Graphics systems deleted. diff --git a/examples/extended/medical/dna/icsd/icsd.out b/examples/extended/medical/dna/icsd/icsd.out index 58d0fbdcac..47fcc9a808 100644 --- a/examples/extended/medical/dna/icsd/icsd.out +++ b/examples/extended/medical/dna/icsd/icsd.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -12,7 +12,7 @@ WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0xf3bca0 +##### Create analysis manager 0x14d9ce0 Using Root analysis manager e-_G4DNAPTBAugerModel is constructed diff --git a/examples/extended/medical/dna/mfp/mfp.out b/examples/extended/medical/dna/mfp/mfp.out index aa60c3af66..bc093ee36f 100644 --- a/examples/extended/medical/dna/mfp/mfp.out +++ b/examples/extended/medical/dna/mfp/mfp.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/microdosimetry/microdosimetry.out b/examples/extended/medical/dna/microdosimetry/microdosimetry.out index 93fb07204a..5dd0c3e3b1 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -345,7 +345,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 2 - User=28.620000s Real=28.865649s Sys=0.010000s + User=28.550000s Real=28.673988s Sys=0.020000s Number and type of particles created outside region "Target" : N e- : 728 _______________________ diff --git a/examples/extended/medical/dna/microyz/microyz.out b/examples/extended/medical/dna/microyz/microyz.out index a95da1fd22..2c583f6349 100644 --- a/examples/extended/medical/dna/microyz/microyz.out +++ b/examples/extended/medical/dna/microyz/microyz.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -12,7 +12,7 @@ WWW : http://geant4.org/ ************************************************************** -##### Create analysis manager 0x2206950 +##### Create analysis manager 0x29a2db0 Using Root analysis manager Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... diff --git a/examples/extended/medical/dna/neuron/neuron.out b/examples/extended/medical/dna/neuron/neuron.out index b3b9a31746..77b8d57eb7 100644 --- a/examples/extended/medical/dna/neuron/neuron.out +++ b/examples/extended/medical/dna/neuron/neuron.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -551,7 +551,7 @@ Physics stage ends Outputs of energy deposition per event written in data file: OutputPerEvent.out - Calculation time = 3.09124 s + Calculation time = 3.1469 s Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.out b/examples/extended/medical/dna/pdb4dna/pdb4dna.out index 1b7203411c..9aed7ab48e 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/range/range.out b/examples/extended/medical/dna/range/range.out index e41f043d2b..b66bd355d1 100644 --- a/examples/extended/medical/dna/range/range.out +++ b/examples/extended/medical/dna/range/range.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/slowing/slowing.out b/examples/extended/medical/dna/slowing/slowing.out index cd86da47a9..86877767c0 100644 --- a/examples/extended/medical/dna/slowing/slowing.out +++ b/examples/extended/medical/dna/slowing/slowing.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/spower/spower.out b/examples/extended/medical/dna/spower/spower.out index 7a5bf1dc3b..370c1f2bfa 100644 --- a/examples/extended/medical/dna/spower/spower.out +++ b/examples/extended/medical/dna/spower/spower.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/svalue/svalue.out b/examples/extended/medical/dna/svalue/svalue.out index 0f3b74e3bf..a6f6c0cd27 100644 --- a/examples/extended/medical/dna/svalue/svalue.out +++ b/examples/extended/medical/dna/svalue/svalue.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -71,6 +71,9 @@ PhysicsList::AddPhysicsList: ---> The Cytoplasm is a spherical shell of thickness 3 nm of G4_WATER of mass 1.00016e-13 mg --------------------------------------------------------- + G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11. + Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process. + If you want the general process, with optional biasing, use G4Radioactivation. Set atomic relaxation mode 1 diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out index b3f019552e..af9920d349 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-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/dna/wvalue/wvalue.out b/examples/extended/medical/dna/wvalue/wvalue.out index 859bdee85a..0a13cb7819 100644 --- a/examples/extended/medical/dna/wvalue/wvalue.out +++ b/examples/extended/medical/dna/wvalue/wvalue.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/medical/electronScattering/electronScattering.out b/examples/extended/medical/electronScattering/electronScattering.out index a92492ef5b..73c90b7ff6 100644 --- a/examples/extended/medical/electronScattering/electronScattering.out +++ b/examples/extended/medical/electronScattering/electronScattering.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -290,7 +290,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=6.310000s Real=6.348788s Sys=0.000000s + User=5.320000s Real=5.362890s Sys=0.000000s ======================== run summary ====================== diff --git a/examples/extended/medical/electronScattering2/electronScattering2.out b/examples/extended/medical/electronScattering2/electronScattering2.out index c97ed85b97..ebc98889af 100644 --- a/examples/extended/medical/electronScattering2/electronScattering2.out +++ b/examples/extended/medical/electronScattering2/electronScattering2.out @@ -8,7 +8,7 @@ Output File : output.csv ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -769,4 +769,4 @@ Number of Events Processed:20000 230 0.010869 0.0023612 14 3 231 0.008474 0.0034744 9 2 232 0.0054951 0.0017784 6 2 -### deleting electronFilter 0xa05e90 +### deleting electronFilter 0xabe2e0 diff --git a/examples/extended/medical/fanoCavity/fanoCavity.out b/examples/extended/medical/fanoCavity/fanoCavity.out index 1bbb576374..b26b99cb23 100644 --- a/examples/extended/medical/fanoCavity/fanoCavity.out +++ b/examples/extended/medical/fanoCavity/fanoCavity.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -220,7 +220,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 4000 - User=12.430000s Real=12.543470s Sys=0.010000s + User=12.630000s Real=12.849939s Sys=0.010000s ======================== run summary ====================== diff --git a/examples/extended/medical/fanoCavity2/fanoCavity2.out b/examples/extended/medical/fanoCavity2/fanoCavity2.out index d82e27ccbd..e80ffe4d5c 100644 --- a/examples/extended/medical/fanoCavity2/fanoCavity2.out +++ b/examples/extended/medical/fanoCavity2/fanoCavity2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -236,7 +236,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 40000 - User=2.400000s Real=2.474618s Sys=0.000000s + User=2.710000s Real=2.726254s Sys=0.000000s Process calls frequency ---> msc= 644751 eIoni= 258361 Transportation= 22831 diff --git a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out index 1cbff0b34a..eeaa8686b1 100644 --- a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out +++ b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -886,7 +886,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 10000 - User=25.390000s Real=99.157855s Sys=1.160000s + User=25.590000s Real=100.497609s Sys=1.250000s ###### EndOfTSRunAction ###### ============================================================ opened file mfd_tl_EnergyDeposit.out for output @@ -1113,13 +1113,13 @@ Run Summary 98 39344.9 [sigma: 472.086 | error: 0.157818 | coeff: 0.157818 | eff: 1 | fom: 1.54424 | r2int: 0.0247624 | r2eff: 0 | hits: 173 ] keV 99 29549.1 [sigma: 500.052 | error: 0.180685 | coeff: 0.180685 | eff: 1 | fom: 1.17809 | r2int: 0.0323609 | r2eff: 0 | hits: 114 ] keV 100 294489 [sigma: 447.055 | error: 0.0360202 | coeff: 0.0360202 | eff: 1 | fom: 29.6439 | r2int: 0.00129515 | r2eff: 0 | hits: 563 ] keV - 101 336509 [sigma: 472.634 | error: 0.0364905 | coeff: 0.0364905 | eff: 1 | fom: 28.8846 | r2int: 0.00132958 | r2eff: 0 | hits: 675 ] keV - 102 366816 [sigma: 489.286 | error: 0.0355672 | coeff: 0.0355672 | eff: 1 | fom: 30.4037 | r2int: 0.00126325 | r2eff: 0 | hits: 711 ] keV - 103 366495 [sigma: 477.187 | error: 0.0353711 | coeff: 0.0353711 | eff: 1 | fom: 30.7418 | r2int: 0.00124942 | r2eff: 0 | hits: 738 ] keV - 104 298898 [sigma: 446.185 | error: 0.0356081 | coeff: 0.0356081 | eff: 1 | fom: 30.334 | r2int: 0.00126571 | r2eff: 0 | hits: 569 ] keV - 105 375118 [sigma: 505.128 | error: 0.0357796 | coeff: 0.0357796 | eff: 1 | fom: 30.0438 | r2int: 0.00127837 | r2eff: 0 | hits: 706 ] keV - 106 383166 [sigma: 464.37 | error: 0.0359516 | coeff: 0.0359516 | eff: 1 | fom: 29.7571 | r2int: 0.00129105 | r2eff: 0 | hits: 880 ] keV - 107 419257 [sigma: 488.874 | error: 0.0344527 | coeff: 0.0344527 | eff: 1 | fom: 32.4025 | r2int: 0.00118563 | r2eff: 0 | hits: 873 ] keV + 101 336509 [sigma: 472.634 | error: 0.0364905 | coeff: 0.0364905 | eff: 1 | fom: 27.8148 | r2int: 0.00132958 | r2eff: 0 | hits: 675 ] keV + 102 366816 [sigma: 489.286 | error: 0.0355672 | coeff: 0.0355672 | eff: 1 | fom: 29.2777 | r2int: 0.00126325 | r2eff: 0 | hits: 711 ] keV + 103 366495 [sigma: 477.187 | error: 0.0353711 | coeff: 0.0353711 | eff: 1 | fom: 29.6032 | r2int: 0.00124942 | r2eff: 0 | hits: 738 ] keV + 104 298898 [sigma: 446.185 | error: 0.0356081 | coeff: 0.0356081 | eff: 1 | fom: 29.2105 | r2int: 0.00126571 | r2eff: 0 | hits: 569 ] keV + 105 375118 [sigma: 505.128 | error: 0.0357796 | coeff: 0.0357796 | eff: 1 | fom: 28.9311 | r2int: 0.00127837 | r2eff: 0 | hits: 706 ] keV + 106 383166 [sigma: 464.37 | error: 0.0359516 | coeff: 0.0359516 | eff: 1 | fom: 28.6549 | r2int: 0.00129105 | r2eff: 0 | hits: 880 ] keV + 107 419257 [sigma: 488.874 | error: 0.0344527 | coeff: 0.0344527 | eff: 1 | fom: 31.2024 | r2int: 0.00118563 | r2eff: 0 | hits: 873 ] keV 108 383740 [sigma: 491.712 | error: 0.0370491 | coeff: 0.0370491 | eff: 1 | fom: 26.9824 | r2int: 0.00137099 | r2eff: 0 | hits: 836 ] keV 109 353160 [sigma: 520.041 | error: 0.0379447 | coeff: 0.0379447 | eff: 1 | fom: 25.7238 | r2int: 0.00143763 | r2eff: 0 | hits: 664 ] keV 110 355081 [sigma: 482.15 | error: 0.0364605 | coeff: 0.0364605 | eff: 1 | fom: 27.8607 | r2int: 0.00132752 | r2eff: 0 | hits: 721 ] keV @@ -1135,8 +1135,8 @@ Run Summary 120 285375 [sigma: 479.695 | error: 0.0391335 | coeff: 0.0391335 | eff: 1 | fom: 24.1846 | r2int: 0.00152861 | r2eff: 0 | hits: 542 ] keV 121 363410 [sigma: 487.352 | error: 0.0351499 | coeff: 0.0351499 | eff: 1 | fom: 29.977 | r2int: 0.00123372 | r2eff: 0 | hits: 687 ] keV 122 384504 [sigma: 475.249 | error: 0.0338494 | coeff: 0.0338494 | eff: 1 | fom: 32.3246 | r2int: 0.00114426 | r2eff: 0 | hits: 750 ] keV - 123 383393 [sigma: 496.404 | error: 0.035435 | coeff: 0.035435 | eff: 1 | fom: 29.4966 | r2int: 0.00125396 | r2eff: 0 | hits: 749 ] keV - 124 302753 [sigma: 467.763 | error: 0.0365295 | coeff: 0.0365295 | eff: 1 | fom: 27.7555 | r2int: 0.00133202 | r2eff: 0 | hits: 559 ] keV + 123 383393 [sigma: 496.404 | error: 0.035435 | coeff: 0.035435 | eff: 1 | fom: 28.4432 | r2int: 0.00125396 | r2eff: 0 | hits: 749 ] keV + 124 302753 [sigma: 467.763 | error: 0.0365295 | coeff: 0.0365295 | eff: 1 | fom: 26.7642 | r2int: 0.00133202 | r2eff: 0 | hits: 559 ] keV ============================================================ closed file mfd_tl_EnergyDeposit.out for output ============================================================ @@ -1395,111 +1395,111 @@ Run Summary 122 19728.000000 steps 123 19005.000000 steps 124 13676.000000 steps - 0 55 [sigma: 10.8817 | error: 0.5596 | coeff: 0.5596 | eff: 1 | fom: 0.118272 | r2int: 0.274008 | r2eff: 0 | hits: 8 ] steps - 1 51 [sigma: 8.66025 | error: 0.294118 | coeff: 0.294118 | eff: 1 | fom: 0.428148 | r2int: 0.0576701 | r2eff: 0 | hits: 3 ] steps - 2 60 [sigma: 8.48528 | error: 0.447214 | coeff: 0.447214 | eff: 1 | fom: 0.185185 | r2int: 0.18 | r2eff: 0 | hits: 10 ] steps - 3 33 [sigma: 3.50714 | error: 0.237642 | coeff: 0.237642 | eff: 1 | fom: 0.655827 | r2int: 0.0451791 | r2eff: 0 | hits: 5 ] steps + 0 55 [sigma: 10.8817 | error: 0.5596 | coeff: 0.5596 | eff: 1 | fom: 0.114048 | r2int: 0.274008 | r2eff: 0 | hits: 8 ] steps + 1 51 [sigma: 8.66025 | error: 0.294118 | coeff: 0.294118 | eff: 1 | fom: 0.412857 | r2int: 0.0576701 | r2eff: 0 | hits: 3 ] steps + 2 60 [sigma: 8.48528 | error: 0.447214 | coeff: 0.447214 | eff: 1 | fom: 0.178571 | r2int: 0.18 | r2eff: 0 | hits: 10 ] steps + 3 33 [sigma: 3.50714 | error: 0.237642 | coeff: 0.237642 | eff: 1 | fom: 0.632404 | r2int: 0.0451791 | r2eff: 0 | hits: 5 ] steps 4 3 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 3 ] steps - 5 22 [sigma: 2.69979 | error: 0.388068 | coeff: 0.388068 | eff: 1 | fom: 0.245935 | r2int: 0.135537 | r2eff: 0 | hits: 10 ] steps + 5 22 [sigma: 2.69979 | error: 0.388068 | coeff: 0.388068 | eff: 1 | fom: 0.237152 | r2int: 0.135537 | r2eff: 0 | hits: 10 ] steps 6 4 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 4 ] steps - 7 56 [sigma: 6.07728 | error: 0.343179 | coeff: 0.343179 | eff: 1 | fom: 0.314481 | r2int: 0.105995 | r2eff: 0 | hits: 10 ] steps - 8 44 [sigma: 11.0393 | error: 0.614562 | coeff: 0.614562 | eff: 1 | fom: 0.0980631 | r2int: 0.314738 | r2eff: 0 | hits: 6 ] steps - 9 38 [sigma: 7.20725 | error: 0.568993 | coeff: 0.568993 | eff: 1 | fom: 0.114399 | r2int: 0.287781 | r2eff: 0 | hits: 9 ] steps - 10 160 [sigma: 9.36207 | error: 0.218935 | coeff: 0.218935 | eff: 1 | fom: 0.772688 | r2int: 0.0445089 | r2eff: 0 | hits: 14 ] steps - 11 111 [sigma: 10.8397 | error: 0.292966 | coeff: 0.292966 | eff: 1 | fom: 0.431521 | r2int: 0.0762925 | r2eff: 0 | hits: 9 ] steps - 12 50 [sigma: 5.29837 | error: 0.351454 | coeff: 0.351454 | eff: 1 | fom: 0.299846 | r2int: 0.112291 | r2eff: 0 | hits: 11 ] steps - 13 20 [sigma: 2.82843 | error: 0.4 | coeff: 0.4 | eff: 1 | fom: 0.231481 | r2int: 0.14 | r2eff: 0 | hits: 8 ] steps - 14 70 [sigma: 19.6638 | error: 0.688091 | coeff: 0.688091 | eff: 1 | fom: 0.0782248 | r2int: 0.394558 | r2eff: 0 | hits: 6 ] steps - 15 18 [sigma: 2.0702 | error: 0.30429 | coeff: 0.30429 | eff: 1 | fom: 0.4 | r2int: 0.0793651 | r2eff: 0 | hits: 7 ] steps - 16 42 [sigma: 6.84105 | error: 0.398978 | coeff: 0.398978 | eff: 1 | fom: 0.232669 | r2int: 0.132653 | r2eff: 0 | hits: 6 ] steps - 17 60 [sigma: 5.47723 | error: 0.288675 | coeff: 0.288675 | eff: 1 | fom: 0.444444 | r2int: 0.075 | r2eff: 0 | hits: 10 ] steps - 18 12 [sigma: 4 | error: 0.666667 | coeff: 0.666667 | eff: 1 | fom: 0.0833333 | r2int: 0.333333 | r2eff: 0 | hits: 4 ] steps - 19 62 [sigma: 9.17683 | error: 0.418645 | coeff: 0.418645 | eff: 1 | fom: 0.211322 | r2int: 0.153356 | r2eff: 0 | hits: 8 ] steps - 20 89 [sigma: 13.0601 | error: 0.359445 | coeff: 0.359445 | eff: 1 | fom: 0.286662 | r2int: 0.107667 | r2eff: 0 | hits: 6 ] steps - 21 51 [sigma: 7.72364 | error: 0.502282 | coeff: 0.502282 | eff: 1 | fom: 0.146805 | r2int: 0.229352 | r2eff: 0 | hits: 11 ] steps - 22 21 [sigma: 3.49285 | error: 0.371917 | coeff: 0.371917 | eff: 1 | fom: 0.26776 | r2int: 0.110658 | r2eff: 0 | hits: 5 ] steps - 23 41 [sigma: 6.49175 | error: 0.418916 | coeff: 0.418916 | eff: 1 | fom: 0.211048 | r2int: 0.150421 | r2eff: 0 | hits: 7 ] steps - 24 88 [sigma: 17.5005 | error: 0.487128 | coeff: 0.487128 | eff: 1 | fom: 0.156081 | r2int: 0.197744 | r2eff: 0 | hits: 6 ] steps - 25 123 [sigma: 8.94069 | error: 0.262082 | coeff: 0.262082 | eff: 1 | fom: 0.539214 | r2int: 0.0634034 | r2eff: 0 | hits: 13 ] steps - 26 81 [sigma: 4.91063 | error: 0.2348 | coeff: 0.2348 | eff: 1 | fom: 0.671801 | r2int: 0.0514556 | r2eff: 0 | hits: 15 ] steps - 27 141 [sigma: 12.0153 | error: 0.371444 | coeff: 0.371444 | eff: 1 | fom: 0.268441 | r2int: 0.130709 | r2eff: 0 | hits: 19 ] steps - 28 153 [sigma: 8.94592 | error: 0.248067 | coeff: 0.248067 | eff: 1 | fom: 0.601862 | r2int: 0.0581187 | r2eff: 0 | hits: 18 ] steps - 29 132 [sigma: 12.0605 | error: 0.316505 | coeff: 0.316505 | eff: 1 | fom: 0.369722 | r2int: 0.0918274 | r2eff: 0 | hits: 12 ] steps - 30 107 [sigma: 6.9351 | error: 0.267235 | coeff: 0.267235 | eff: 1 | fom: 0.51862 | r2int: 0.0672137 | r2eff: 0 | hits: 17 ] steps - 31 357 [sigma: 11.3046 | error: 0.170524 | coeff: 0.170524 | eff: 1 | fom: 1.2737 | r2int: 0.0280756 | r2eff: 0 | hits: 29 ] steps - 32 266 [sigma: 10.0856 | error: 0.204183 | coeff: 0.204183 | eff: 1 | fom: 0.888379 | r2int: 0.040253 | r2eff: 0 | hits: 29 ] steps - 33 294 [sigma: 11.9584 | error: 0.190783 | coeff: 0.190783 | eff: 1 | fom: 1.01756 | r2int: 0.0347435 | r2eff: 0 | hits: 22 ] steps - 34 223 [sigma: 12.6579 | error: 0.27222 | coeff: 0.27222 | eff: 1 | fom: 0.499802 | r2int: 0.0708816 | r2eff: 0 | hits: 23 ] steps - 35 173 [sigma: 9.61735 | error: 0.277958 | coeff: 0.277958 | eff: 1 | fom: 0.479378 | r2int: 0.0741702 | r2eff: 0 | hits: 25 ] steps - 36 278 [sigma: 9.81882 | error: 0.193453 | coeff: 0.193453 | eff: 1 | fom: 0.98966 | r2int: 0.0361765 | r2eff: 0 | hits: 30 ] steps - 37 383 [sigma: 12.5736 | error: 0.18571 | coeff: 0.18571 | eff: 1 | fom: 1.0739 | r2int: 0.0334106 | r2eff: 0 | hits: 32 ] steps - 38 200 [sigma: 12.9929 | error: 0.267856 | coeff: 0.267856 | eff: 1 | fom: 0.516218 | r2int: 0.0675265 | r2eff: 0 | hits: 17 ] steps - 39 168 [sigma: 12.061 | error: 0.287166 | coeff: 0.287166 | eff: 1 | fom: 0.449129 | r2int: 0.0773101 | r2eff: 0 | hits: 16 ] steps - 40 263 [sigma: 10.3614 | error: 0.208469 | coeff: 0.208469 | eff: 1 | fom: 0.852223 | r2int: 0.0419072 | r2eff: 0 | hits: 28 ] steps - 41 155 [sigma: 8.32175 | error: 0.234024 | coeff: 0.234024 | eff: 1 | fom: 0.676265 | r2int: 0.0518846 | r2eff: 0 | hits: 19 ] steps - 42 288 [sigma: 12.3832 | error: 0.214986 | coeff: 0.214986 | eff: 1 | fom: 0.801339 | r2int: 0.0443702 | r2eff: 0 | hits: 25 ] steps - 43 205 [sigma: 8.686 | error: 0.203203 | coeff: 0.203203 | eff: 1 | fom: 0.896966 | r2int: 0.0394962 | r2eff: 0 | hits: 23 ] steps - 44 153 [sigma: 10.4105 | error: 0.254592 | coeff: 0.254592 | eff: 1 | fom: 0.571407 | r2int: 0.0601875 | r2eff: 0 | hits: 14 ] steps - 45 177 [sigma: 12.6419 | error: 0.319415 | coeff: 0.319415 | eff: 1 | fom: 0.363016 | r2int: 0.0969246 | r2eff: 0 | hits: 20 ] steps - 46 184 [sigma: 10.6953 | error: 0.266371 | coeff: 0.266371 | eff: 1 | fom: 0.521991 | r2int: 0.0675747 | r2eff: 0 | hits: 21 ] steps - 47 112 [sigma: 9.68929 | error: 0.356696 | coeff: 0.356696 | eff: 1 | fom: 0.291098 | r2int: 0.119748 | r2eff: 0 | hits: 17 ] steps - 48 112 [sigma: 8.47545 | error: 0.34678 | coeff: 0.34678 | eff: 1 | fom: 0.307983 | r2int: 0.11453 | r2eff: 0 | hits: 21 ] steps - 49 175 [sigma: 14.9555 | error: 0.330985 | coeff: 0.330985 | eff: 1 | fom: 0.33808 | r2int: 0.102248 | r2eff: 0 | hits: 15 ] steps - 50 254 [sigma: 18.5564 | error: 0.357904 | coeff: 0.357904 | eff: 1 | fom: 0.289137 | r2int: 0.122758 | r2eff: 0 | hits: 24 ] steps - 51 283 [sigma: 10.7885 | error: 0.249982 | coeff: 0.249982 | eff: 1 | fom: 0.592676 | r2int: 0.0610379 | r2eff: 0 | hits: 43 ] steps - 52 518 [sigma: 10.39 | error: 0.148753 | coeff: 0.148753 | eff: 1 | fom: 1.6738 | r2int: 0.0217252 | r2eff: 0 | hits: 55 ] steps - 53 610 [sigma: 12.7841 | error: 0.163684 | coeff: 0.163684 | eff: 1 | fom: 1.38237 | r2int: 0.0263531 | r2eff: 0 | hits: 61 ] steps - 54 323 [sigma: 10.3916 | error: 0.184814 | coeff: 0.184814 | eff: 1 | fom: 1.08434 | r2int: 0.0331213 | r2eff: 0 | hits: 33 ] steps - 55 462 [sigma: 9.88001 | error: 0.151217 | coeff: 0.151217 | eff: 1 | fom: 1.6197 | r2int: 0.0224093 | r2eff: 0 | hits: 50 ] steps - 56 801 [sigma: 11.8039 | error: 0.117892 | coeff: 0.117892 | eff: 1 | fom: 2.66481 | r2int: 0.0136814 | r2eff: 0 | hits: 64 ] steps - 57 1103 [sigma: 11.4943 | error: 0.0960762 | coeff: 0.0960762 | eff: 1 | fom: 4.0124 | r2int: 0.00912204 | r2eff: 0 | hits: 85 ] steps - 58 1158 [sigma: 14.2939 | error: 0.112455 | coeff: 0.112455 | eff: 1 | fom: 2.9287 | r2int: 0.0124939 | r2eff: 0 | hits: 83 ] steps - 59 437 [sigma: 9.40531 | error: 0.159615 | coeff: 0.159615 | eff: 1 | fom: 1.45375 | r2int: 0.0250137 | r2eff: 0 | hits: 55 ] steps - 60 923 [sigma: 23.1486 | error: 0.208328 | coeff: 0.208328 | eff: 1 | fom: 0.85338 | r2int: 0.0427714 | r2eff: 0 | hits: 69 ] steps - 61 1194 [sigma: 14.012 | error: 0.110711 | coeff: 0.110711 | eff: 1 | fom: 3.02172 | r2int: 0.0121192 | r2eff: 0 | hits: 89 ] steps - 62 1203 [sigma: 11.8556 | error: 0.0970608 | coeff: 0.0970608 | eff: 1 | fom: 3.93141 | r2int: 0.00932368 | r2eff: 0 | hits: 97 ] steps - 63 949 [sigma: 11.0484 | error: 0.100824 | coeff: 0.100824 | eff: 1 | fom: 3.64341 | r2int: 0.01003 | r2eff: 0 | hits: 75 ] steps - 64 591 [sigma: 10.7094 | error: 0.143829 | coeff: 0.143829 | eff: 1 | fom: 1.79036 | r2int: 0.0203586 | r2eff: 0 | hits: 63 ] steps - 65 690 [sigma: 14.8104 | error: 0.180862 | coeff: 0.180862 | eff: 1 | fom: 1.13225 | r2int: 0.0322503 | r2eff: 0 | hits: 71 ] steps - 66 921 [sigma: 9.9314 | error: 0.0964486 | coeff: 0.0964486 | eff: 1 | fom: 3.98148 | r2int: 0.00918605 | r2eff: 0 | hits: 80 ] steps - 67 1019 [sigma: 11.2623 | error: 0.10601 | coeff: 0.10601 | eff: 1 | fom: 3.29564 | r2int: 0.011116 | r2eff: 0 | hits: 92 ] steps - 68 682 [sigma: 10.1752 | error: 0.127473 | coeff: 0.127473 | eff: 1 | fom: 2.27929 | r2int: 0.0160268 | r2eff: 0 | hits: 73 ] steps - 69 586 [sigma: 11.8835 | error: 0.15444 | coeff: 0.15444 | eff: 1 | fom: 1.5528 | r2int: 0.0234405 | r2eff: 0 | hits: 58 ] steps - 70 222 [sigma: 6.45279 | error: 0.183833 | coeff: 0.183833 | eff: 1 | fom: 1.09594 | r2int: 0.0329498 | r2eff: 0 | hits: 40 ] steps - 71 602 [sigma: 13.1383 | error: 0.170455 | coeff: 0.170455 | eff: 1 | fom: 1.27473 | r2int: 0.0285785 | r2eff: 0 | hits: 61 ] steps - 72 622 [sigma: 17.9126 | error: 0.215507 | coeff: 0.215507 | eff: 1 | fom: 0.797466 | r2int: 0.0456141 | r2eff: 0 | hits: 56 ] steps - 73 433 [sigma: 8.82448 | error: 0.146961 | coeff: 0.146961 | eff: 1 | fom: 1.71487 | r2int: 0.0211823 | r2eff: 0 | hits: 52 ] steps - 74 286 [sigma: 12.6083 | error: 0.264509 | coeff: 0.264509 | eff: 1 | fom: 0.529365 | r2int: 0.0680215 | r2eff: 0 | hits: 36 ] steps - 75 2655 [sigma: 24.3983 | error: 0.10558 | coeff: 0.10558 | eff: 1 | fom: 3.32256 | r2int: 0.0110627 | r2eff: 0 | hits: 132 ] steps - 76 3060 [sigma: 22.6005 | error: 0.0996397 | coeff: 0.0996397 | eff: 1 | fom: 3.73054 | r2int: 0.00987352 | r2eff: 0 | hits: 182 ] steps - 77 3753 [sigma: 25.843 | error: 0.096894 | coeff: 0.096894 | eff: 1 | fom: 3.94496 | r2int: 0.00934104 | r2eff: 0 | hits: 198 ] steps - 78 4531 [sigma: 30.6261 | error: 0.102286 | coeff: 0.102286 | eff: 1 | fom: 3.54002 | r2int: 0.0104167 | r2eff: 0 | hits: 229 ] steps - 79 2716 [sigma: 21.7783 | error: 0.0938542 | coeff: 0.0938542 | eff: 1 | fom: 4.20464 | r2int: 0.00874431 | r2eff: 0 | hits: 137 ] steps - 80 3817 [sigma: 20.9216 | error: 0.0792403 | coeff: 0.0792403 | eff: 1 | fom: 5.89853 | r2int: 0.00624899 | r2eff: 0 | hits: 209 ] steps - 81 3989 [sigma: 12.3244 | error: 0.0524321 | coeff: 0.0524321 | eff: 1 | fom: 13.4723 | r2int: 0.00273958 | r2eff: 0 | hits: 288 ] steps - 82 3936 [sigma: 13.0455 | error: 0.0589182 | coeff: 0.0589182 | eff: 1 | fom: 10.6693 | r2int: 0.00346037 | r2eff: 0 | hits: 316 ] steps - 83 3728 [sigma: 11.9304 | error: 0.0572472 | coeff: 0.0572472 | eff: 1 | fom: 11.3013 | r2int: 0.00326701 | r2eff: 0 | hits: 320 ] steps - 84 4072 [sigma: 26.8102 | error: 0.0917051 | coeff: 0.0917051 | eff: 1 | fom: 4.40402 | r2int: 0.00836647 | r2eff: 0 | hits: 194 ] steps - 85 4692 [sigma: 21.0785 | error: 0.0717385 | coeff: 0.0717385 | eff: 1 | fom: 7.19668 | r2int: 0.00512623 | r2eff: 0 | hits: 255 ] steps - 86 4402 [sigma: 13.4877 | error: 0.0548959 | coeff: 0.0548959 | eff: 1 | fom: 12.2901 | r2int: 0.00300417 | r2eff: 0 | hits: 321 ] steps - 87 4477 [sigma: 12.8589 | error: 0.0524128 | coeff: 0.0524128 | eff: 1 | fom: 13.4822 | r2int: 0.00273885 | r2eff: 0 | hits: 333 ] steps - 88 3822 [sigma: 12.148 | error: 0.055691 | coeff: 0.055691 | eff: 1 | fom: 11.9417 | r2int: 0.00309138 | r2eff: 0 | hits: 307 ] steps - 89 3227 [sigma: 23.4831 | error: 0.100834 | coeff: 0.100834 | eff: 1 | fom: 3.6427 | r2int: 0.0101145 | r2eff: 0 | hits: 192 ] steps - 90 4663 [sigma: 30.4037 | error: 0.0926695 | coeff: 0.0926695 | eff: 1 | fom: 4.31283 | r2int: 0.00854513 | r2eff: 0 | hits: 202 ] steps - 91 3950 [sigma: 12.5934 | error: 0.0573878 | coeff: 0.0573878 | eff: 1 | fom: 11.246 | r2int: 0.0032832 | r2eff: 0 | hits: 324 ] steps - 92 4155 [sigma: 13.0521 | error: 0.0575811 | coeff: 0.0575811 | eff: 1 | fom: 11.1706 | r2int: 0.00330572 | r2eff: 0 | hits: 336 ] steps - 93 4551 [sigma: 12.1931 | error: 0.0511865 | coeff: 0.0511865 | eff: 1 | fom: 14.136 | r2int: 0.00261288 | r2eff: 0 | hits: 365 ] steps - 94 4329 [sigma: 23.9447 | error: 0.0849725 | coeff: 0.0849725 | eff: 1 | fom: 5.12956 | r2int: 0.00718973 | r2eff: 0 | hits: 236 ] steps - 95 2948 [sigma: 27.7628 | error: 0.110631 | coeff: 0.110631 | eff: 1 | fom: 3.02612 | r2int: 0.0121504 | r2eff: 0 | hits: 138 ] steps - 96 3757 [sigma: 28.3705 | error: 0.108645 | coeff: 0.108645 | eff: 1 | fom: 3.13772 | r2int: 0.0117468 | r2eff: 0 | hits: 207 ] steps - 97 4754 [sigma: 25.8235 | error: 0.0875876 | coeff: 0.0875876 | eff: 1 | fom: 4.82782 | r2int: 0.00764208 | r2eff: 0 | hits: 260 ] steps - 98 4163 [sigma: 27.2083 | error: 0.100616 | coeff: 0.100616 | eff: 1 | fom: 3.65847 | r2int: 0.0100809 | r2eff: 0 | hits: 237 ] steps - 99 2844 [sigma: 22.5376 | error: 0.0986606 | coeff: 0.0986606 | eff: 1 | fom: 3.80495 | r2int: 0.00967111 | r2eff: 0 | hits: 155 ] steps - 100 13997 [sigma: 27.0579 | error: 0.0477837 | coeff: 0.0477837 | eff: 1 | fom: 16.221 | r2int: 0.00227954 | r2eff: 0 | hits: 611 ] steps - 101 17086 [sigma: 26.4188 | error: 0.0424861 | coeff: 0.0424861 | eff: 1 | fom: 20.5184 | r2int: 0.00180268 | r2eff: 0 | hits: 755 ] steps - 102 18468 [sigma: 27.0967 | error: 0.0411869 | coeff: 0.0411869 | eff: 1 | fom: 21.8332 | r2int: 0.00169421 | r2eff: 0 | hits: 788 ] steps - 103 18981 [sigma: 26.8279 | error: 0.0402512 | coeff: 0.0402512 | eff: 1 | fom: 22.8602 | r2int: 0.00161816 | r2eff: 0 | hits: 811 ] steps - 104 13613 [sigma: 28.3923 | error: 0.0519748 | coeff: 0.0519748 | eff: 1 | fom: 13.7104 | r2int: 0.00269703 | r2eff: 0 | hits: 621 ] steps + 7 56 [sigma: 6.07728 | error: 0.343179 | coeff: 0.343179 | eff: 1 | fom: 0.303249 | r2int: 0.105995 | r2eff: 0 | hits: 10 ] steps + 8 44 [sigma: 11.0393 | error: 0.614562 | coeff: 0.614562 | eff: 1 | fom: 0.0945608 | r2int: 0.314738 | r2eff: 0 | hits: 6 ] steps + 9 38 [sigma: 7.20725 | error: 0.568993 | coeff: 0.568993 | eff: 1 | fom: 0.110313 | r2int: 0.287781 | r2eff: 0 | hits: 9 ] steps + 10 160 [sigma: 9.36207 | error: 0.218935 | coeff: 0.218935 | eff: 1 | fom: 0.745092 | r2int: 0.0445089 | r2eff: 0 | hits: 14 ] steps + 11 111 [sigma: 10.8397 | error: 0.292966 | coeff: 0.292966 | eff: 1 | fom: 0.416109 | r2int: 0.0762925 | r2eff: 0 | hits: 9 ] steps + 12 50 [sigma: 5.29837 | error: 0.351454 | coeff: 0.351454 | eff: 1 | fom: 0.289138 | r2int: 0.112291 | r2eff: 0 | hits: 11 ] steps + 13 20 [sigma: 2.82843 | error: 0.4 | coeff: 0.4 | eff: 1 | fom: 0.223214 | r2int: 0.14 | r2eff: 0 | hits: 8 ] steps + 14 70 [sigma: 19.6638 | error: 0.688091 | coeff: 0.688091 | eff: 1 | fom: 0.075431 | r2int: 0.394558 | r2eff: 0 | hits: 6 ] steps + 15 18 [sigma: 2.0702 | error: 0.30429 | coeff: 0.30429 | eff: 1 | fom: 0.385714 | r2int: 0.0793651 | r2eff: 0 | hits: 7 ] steps + 16 42 [sigma: 6.84105 | error: 0.398978 | coeff: 0.398978 | eff: 1 | fom: 0.224359 | r2int: 0.132653 | r2eff: 0 | hits: 6 ] steps + 17 60 [sigma: 5.47723 | error: 0.288675 | coeff: 0.288675 | eff: 1 | fom: 0.428571 | r2int: 0.075 | r2eff: 0 | hits: 10 ] steps + 18 12 [sigma: 4 | error: 0.666667 | coeff: 0.666667 | eff: 1 | fom: 0.0803571 | r2int: 0.333333 | r2eff: 0 | hits: 4 ] steps + 19 62 [sigma: 9.17683 | error: 0.418645 | coeff: 0.418645 | eff: 1 | fom: 0.203774 | r2int: 0.153356 | r2eff: 0 | hits: 8 ] steps + 20 89 [sigma: 13.0601 | error: 0.359445 | coeff: 0.359445 | eff: 1 | fom: 0.276425 | r2int: 0.107667 | r2eff: 0 | hits: 6 ] steps + 21 51 [sigma: 7.72364 | error: 0.502282 | coeff: 0.502282 | eff: 1 | fom: 0.141562 | r2int: 0.229352 | r2eff: 0 | hits: 11 ] steps + 22 21 [sigma: 3.49285 | error: 0.371917 | coeff: 0.371917 | eff: 1 | fom: 0.258197 | r2int: 0.110658 | r2eff: 0 | hits: 5 ] steps + 23 41 [sigma: 6.49175 | error: 0.418916 | coeff: 0.418916 | eff: 1 | fom: 0.203511 | r2int: 0.150421 | r2eff: 0 | hits: 7 ] steps + 24 88 [sigma: 17.5005 | error: 0.487128 | coeff: 0.487128 | eff: 1 | fom: 0.150507 | r2int: 0.197744 | r2eff: 0 | hits: 6 ] steps + 25 123 [sigma: 8.94069 | error: 0.262082 | coeff: 0.262082 | eff: 1 | fom: 0.519956 | r2int: 0.0634034 | r2eff: 0 | hits: 13 ] steps + 26 81 [sigma: 4.91063 | error: 0.2348 | coeff: 0.2348 | eff: 1 | fom: 0.647808 | r2int: 0.0514556 | r2eff: 0 | hits: 15 ] steps + 27 141 [sigma: 12.0153 | error: 0.371444 | coeff: 0.371444 | eff: 1 | fom: 0.258854 | r2int: 0.130709 | r2eff: 0 | hits: 19 ] steps + 28 153 [sigma: 8.94592 | error: 0.248067 | coeff: 0.248067 | eff: 1 | fom: 0.580367 | r2int: 0.0581187 | r2eff: 0 | hits: 18 ] steps + 29 132 [sigma: 12.0605 | error: 0.316505 | coeff: 0.316505 | eff: 1 | fom: 0.356518 | r2int: 0.0918274 | r2eff: 0 | hits: 12 ] steps + 30 107 [sigma: 6.9351 | error: 0.267235 | coeff: 0.267235 | eff: 1 | fom: 0.500098 | r2int: 0.0672137 | r2eff: 0 | hits: 17 ] steps + 31 357 [sigma: 11.3046 | error: 0.170524 | coeff: 0.170524 | eff: 1 | fom: 1.22821 | r2int: 0.0280756 | r2eff: 0 | hits: 29 ] steps + 32 266 [sigma: 10.0856 | error: 0.204183 | coeff: 0.204183 | eff: 1 | fom: 0.856652 | r2int: 0.040253 | r2eff: 0 | hits: 29 ] steps + 33 294 [sigma: 11.9584 | error: 0.190783 | coeff: 0.190783 | eff: 1 | fom: 0.981216 | r2int: 0.0347435 | r2eff: 0 | hits: 22 ] steps + 34 223 [sigma: 12.6579 | error: 0.27222 | coeff: 0.27222 | eff: 1 | fom: 0.481952 | r2int: 0.0708816 | r2eff: 0 | hits: 23 ] steps + 35 173 [sigma: 9.61735 | error: 0.277958 | coeff: 0.277958 | eff: 1 | fom: 0.462257 | r2int: 0.0741702 | r2eff: 0 | hits: 25 ] steps + 36 278 [sigma: 9.81882 | error: 0.193453 | coeff: 0.193453 | eff: 1 | fom: 0.954315 | r2int: 0.0361765 | r2eff: 0 | hits: 30 ] steps + 37 383 [sigma: 12.5736 | error: 0.18571 | coeff: 0.18571 | eff: 1 | fom: 1.03555 | r2int: 0.0334106 | r2eff: 0 | hits: 32 ] steps + 38 200 [sigma: 12.9929 | error: 0.267856 | coeff: 0.267856 | eff: 1 | fom: 0.497782 | r2int: 0.0675265 | r2eff: 0 | hits: 17 ] steps + 39 168 [sigma: 12.061 | error: 0.287166 | coeff: 0.287166 | eff: 1 | fom: 0.433089 | r2int: 0.0773101 | r2eff: 0 | hits: 16 ] steps + 40 263 [sigma: 10.3614 | error: 0.208469 | coeff: 0.208469 | eff: 1 | fom: 0.821787 | r2int: 0.0419072 | r2eff: 0 | hits: 28 ] steps + 41 155 [sigma: 8.32175 | error: 0.234024 | coeff: 0.234024 | eff: 1 | fom: 0.652113 | r2int: 0.0518846 | r2eff: 0 | hits: 19 ] steps + 42 288 [sigma: 12.3832 | error: 0.214986 | coeff: 0.214986 | eff: 1 | fom: 0.77272 | r2int: 0.0443702 | r2eff: 0 | hits: 25 ] steps + 43 205 [sigma: 8.686 | error: 0.203203 | coeff: 0.203203 | eff: 1 | fom: 0.864932 | r2int: 0.0394962 | r2eff: 0 | hits: 23 ] steps + 44 153 [sigma: 10.4105 | error: 0.254592 | coeff: 0.254592 | eff: 1 | fom: 0.550999 | r2int: 0.0601875 | r2eff: 0 | hits: 14 ] steps + 45 177 [sigma: 12.6419 | error: 0.319415 | coeff: 0.319415 | eff: 1 | fom: 0.350051 | r2int: 0.0969246 | r2eff: 0 | hits: 20 ] steps + 46 184 [sigma: 10.6953 | error: 0.266371 | coeff: 0.266371 | eff: 1 | fom: 0.503348 | r2int: 0.0675747 | r2eff: 0 | hits: 21 ] steps + 47 112 [sigma: 9.68929 | error: 0.356696 | coeff: 0.356696 | eff: 1 | fom: 0.280702 | r2int: 0.119748 | r2eff: 0 | hits: 17 ] steps + 48 112 [sigma: 8.47545 | error: 0.34678 | coeff: 0.34678 | eff: 1 | fom: 0.296984 | r2int: 0.11453 | r2eff: 0 | hits: 21 ] steps + 49 175 [sigma: 14.9555 | error: 0.330985 | coeff: 0.330985 | eff: 1 | fom: 0.326006 | r2int: 0.102248 | r2eff: 0 | hits: 15 ] steps + 50 254 [sigma: 18.5564 | error: 0.357904 | coeff: 0.357904 | eff: 1 | fom: 0.278811 | r2int: 0.122758 | r2eff: 0 | hits: 24 ] steps + 51 283 [sigma: 10.7885 | error: 0.249982 | coeff: 0.249982 | eff: 1 | fom: 0.571509 | r2int: 0.0610379 | r2eff: 0 | hits: 43 ] steps + 52 518 [sigma: 10.39 | error: 0.148753 | coeff: 0.148753 | eff: 1 | fom: 1.61402 | r2int: 0.0217252 | r2eff: 0 | hits: 55 ] steps + 53 610 [sigma: 12.7841 | error: 0.163684 | coeff: 0.163684 | eff: 1 | fom: 1.333 | r2int: 0.0263531 | r2eff: 0 | hits: 61 ] steps + 54 323 [sigma: 10.3916 | error: 0.184814 | coeff: 0.184814 | eff: 1 | fom: 1.04561 | r2int: 0.0331213 | r2eff: 0 | hits: 33 ] steps + 55 462 [sigma: 9.88001 | error: 0.151217 | coeff: 0.151217 | eff: 1 | fom: 1.56186 | r2int: 0.0224093 | r2eff: 0 | hits: 50 ] steps + 56 801 [sigma: 11.8039 | error: 0.117892 | coeff: 0.117892 | eff: 1 | fom: 2.56964 | r2int: 0.0136814 | r2eff: 0 | hits: 64 ] steps + 57 1103 [sigma: 11.4943 | error: 0.0960762 | coeff: 0.0960762 | eff: 1 | fom: 3.8691 | r2int: 0.00912204 | r2eff: 0 | hits: 85 ] steps + 58 1158 [sigma: 14.2939 | error: 0.112455 | coeff: 0.112455 | eff: 1 | fom: 2.82411 | r2int: 0.0124939 | r2eff: 0 | hits: 83 ] steps + 59 437 [sigma: 9.40531 | error: 0.159615 | coeff: 0.159615 | eff: 1 | fom: 1.40183 | r2int: 0.0250137 | r2eff: 0 | hits: 55 ] steps + 60 923 [sigma: 23.1486 | error: 0.208328 | coeff: 0.208328 | eff: 1 | fom: 0.822902 | r2int: 0.0427714 | r2eff: 0 | hits: 69 ] steps + 61 1194 [sigma: 14.012 | error: 0.110711 | coeff: 0.110711 | eff: 1 | fom: 2.9138 | r2int: 0.0121192 | r2eff: 0 | hits: 89 ] steps + 62 1203 [sigma: 11.8556 | error: 0.0970608 | coeff: 0.0970608 | eff: 1 | fom: 3.791 | r2int: 0.00932368 | r2eff: 0 | hits: 97 ] steps + 63 949 [sigma: 11.0484 | error: 0.100824 | coeff: 0.100824 | eff: 1 | fom: 3.51329 | r2int: 0.01003 | r2eff: 0 | hits: 75 ] steps + 64 591 [sigma: 10.7094 | error: 0.143829 | coeff: 0.143829 | eff: 1 | fom: 1.72642 | r2int: 0.0203586 | r2eff: 0 | hits: 63 ] steps + 65 690 [sigma: 14.8104 | error: 0.180862 | coeff: 0.180862 | eff: 1 | fom: 1.09181 | r2int: 0.0322503 | r2eff: 0 | hits: 71 ] steps + 66 921 [sigma: 9.9314 | error: 0.0964486 | coeff: 0.0964486 | eff: 1 | fom: 3.83928 | r2int: 0.00918605 | r2eff: 0 | hits: 80 ] steps + 67 1019 [sigma: 11.2623 | error: 0.10601 | coeff: 0.10601 | eff: 1 | fom: 3.17794 | r2int: 0.011116 | r2eff: 0 | hits: 92 ] steps + 68 682 [sigma: 10.1752 | error: 0.127473 | coeff: 0.127473 | eff: 1 | fom: 2.19789 | r2int: 0.0160268 | r2eff: 0 | hits: 73 ] steps + 69 586 [sigma: 11.8835 | error: 0.15444 | coeff: 0.15444 | eff: 1 | fom: 1.49734 | r2int: 0.0234405 | r2eff: 0 | hits: 58 ] steps + 70 222 [sigma: 6.45279 | error: 0.183833 | coeff: 0.183833 | eff: 1 | fom: 1.0568 | r2int: 0.0329498 | r2eff: 0 | hits: 40 ] steps + 71 602 [sigma: 13.1383 | error: 0.170455 | coeff: 0.170455 | eff: 1 | fom: 1.22921 | r2int: 0.0285785 | r2eff: 0 | hits: 61 ] steps + 72 622 [sigma: 17.9126 | error: 0.215507 | coeff: 0.215507 | eff: 1 | fom: 0.768985 | r2int: 0.0456141 | r2eff: 0 | hits: 56 ] steps + 73 433 [sigma: 8.82448 | error: 0.146961 | coeff: 0.146961 | eff: 1 | fom: 1.65362 | r2int: 0.0211823 | r2eff: 0 | hits: 52 ] steps + 74 286 [sigma: 12.6083 | error: 0.264509 | coeff: 0.264509 | eff: 1 | fom: 0.510459 | r2int: 0.0680215 | r2eff: 0 | hits: 36 ] steps + 75 2655 [sigma: 24.3983 | error: 0.10558 | coeff: 0.10558 | eff: 1 | fom: 3.20389 | r2int: 0.0110627 | r2eff: 0 | hits: 132 ] steps + 76 3060 [sigma: 22.6005 | error: 0.0996397 | coeff: 0.0996397 | eff: 1 | fom: 3.59731 | r2int: 0.00987352 | r2eff: 0 | hits: 182 ] steps + 77 3753 [sigma: 25.843 | error: 0.096894 | coeff: 0.096894 | eff: 1 | fom: 3.80406 | r2int: 0.00934104 | r2eff: 0 | hits: 198 ] steps + 78 4531 [sigma: 30.6261 | error: 0.102286 | coeff: 0.102286 | eff: 1 | fom: 3.41359 | r2int: 0.0104167 | r2eff: 0 | hits: 229 ] steps + 79 2716 [sigma: 21.7783 | error: 0.0938542 | coeff: 0.0938542 | eff: 1 | fom: 4.05447 | r2int: 0.00874431 | r2eff: 0 | hits: 137 ] steps + 80 3817 [sigma: 20.9216 | error: 0.0792403 | coeff: 0.0792403 | eff: 1 | fom: 5.68787 | r2int: 0.00624899 | r2eff: 0 | hits: 209 ] steps + 81 3989 [sigma: 12.3244 | error: 0.0524321 | coeff: 0.0524321 | eff: 1 | fom: 12.9911 | r2int: 0.00273958 | r2eff: 0 | hits: 288 ] steps + 82 3936 [sigma: 13.0455 | error: 0.0589182 | coeff: 0.0589182 | eff: 1 | fom: 10.2883 | r2int: 0.00346037 | r2eff: 0 | hits: 316 ] steps + 83 3728 [sigma: 11.9304 | error: 0.0572472 | coeff: 0.0572472 | eff: 1 | fom: 10.8976 | r2int: 0.00326701 | r2eff: 0 | hits: 320 ] steps + 84 4072 [sigma: 26.8102 | error: 0.0917051 | coeff: 0.0917051 | eff: 1 | fom: 4.24674 | r2int: 0.00836647 | r2eff: 0 | hits: 194 ] steps + 85 4692 [sigma: 21.0785 | error: 0.0717385 | coeff: 0.0717385 | eff: 1 | fom: 6.93965 | r2int: 0.00512623 | r2eff: 0 | hits: 255 ] steps + 86 4402 [sigma: 13.4877 | error: 0.0548959 | coeff: 0.0548959 | eff: 1 | fom: 11.8512 | r2int: 0.00300417 | r2eff: 0 | hits: 321 ] steps + 87 4477 [sigma: 12.8589 | error: 0.0524128 | coeff: 0.0524128 | eff: 1 | fom: 13.0007 | r2int: 0.00273885 | r2eff: 0 | hits: 333 ] steps + 88 3822 [sigma: 12.148 | error: 0.055691 | coeff: 0.055691 | eff: 1 | fom: 11.5152 | r2int: 0.00309138 | r2eff: 0 | hits: 307 ] steps + 89 3227 [sigma: 23.4831 | error: 0.100834 | coeff: 0.100834 | eff: 1 | fom: 3.5126 | r2int: 0.0101145 | r2eff: 0 | hits: 192 ] steps + 90 4663 [sigma: 30.4037 | error: 0.0926695 | coeff: 0.0926695 | eff: 1 | fom: 4.1588 | r2int: 0.00854513 | r2eff: 0 | hits: 202 ] steps + 91 3950 [sigma: 12.5934 | error: 0.0573878 | coeff: 0.0573878 | eff: 1 | fom: 10.8443 | r2int: 0.0032832 | r2eff: 0 | hits: 324 ] steps + 92 4155 [sigma: 13.0521 | error: 0.0575811 | coeff: 0.0575811 | eff: 1 | fom: 10.7716 | r2int: 0.00330572 | r2eff: 0 | hits: 336 ] steps + 93 4551 [sigma: 12.1931 | error: 0.0511865 | coeff: 0.0511865 | eff: 1 | fom: 13.6311 | r2int: 0.00261288 | r2eff: 0 | hits: 365 ] steps + 94 4329 [sigma: 23.9447 | error: 0.0849725 | coeff: 0.0849725 | eff: 1 | fom: 4.94636 | r2int: 0.00718973 | r2eff: 0 | hits: 236 ] steps + 95 2948 [sigma: 27.7628 | error: 0.110631 | coeff: 0.110631 | eff: 1 | fom: 2.91804 | r2int: 0.0121504 | r2eff: 0 | hits: 138 ] steps + 96 3757 [sigma: 28.3705 | error: 0.108645 | coeff: 0.108645 | eff: 1 | fom: 3.02566 | r2int: 0.0117468 | r2eff: 0 | hits: 207 ] steps + 97 4754 [sigma: 25.8235 | error: 0.0875876 | coeff: 0.0875876 | eff: 1 | fom: 4.6554 | r2int: 0.00764208 | r2eff: 0 | hits: 260 ] steps + 98 4163 [sigma: 27.2083 | error: 0.100616 | coeff: 0.100616 | eff: 1 | fom: 3.52781 | r2int: 0.0100809 | r2eff: 0 | hits: 237 ] steps + 99 2844 [sigma: 22.5376 | error: 0.0986606 | coeff: 0.0986606 | eff: 1 | fom: 3.66906 | r2int: 0.00967111 | r2eff: 0 | hits: 155 ] steps + 100 13997 [sigma: 27.0579 | error: 0.0477837 | coeff: 0.0477837 | eff: 1 | fom: 15.6417 | r2int: 0.00227954 | r2eff: 0 | hits: 611 ] steps + 101 17086 [sigma: 26.4188 | error: 0.0424861 | coeff: 0.0424861 | eff: 1 | fom: 19.7856 | r2int: 0.00180268 | r2eff: 0 | hits: 755 ] steps + 102 18468 [sigma: 27.0967 | error: 0.0411869 | coeff: 0.0411869 | eff: 1 | fom: 21.0534 | r2int: 0.00169421 | r2eff: 0 | hits: 788 ] steps + 103 18981 [sigma: 26.8279 | error: 0.0402512 | coeff: 0.0402512 | eff: 1 | fom: 22.0437 | r2int: 0.00161816 | r2eff: 0 | hits: 811 ] steps + 104 13613 [sigma: 28.3923 | error: 0.0519748 | coeff: 0.0519748 | eff: 1 | fom: 13.2207 | r2int: 0.00269703 | r2eff: 0 | hits: 621 ] steps 105 18950 [sigma: 29.9208 | error: 0.0440124 | coeff: 0.0440124 | eff: 1 | fom: 18.4371 | r2int: 0.0019346 | r2eff: 0 | hits: 777 ] steps 106 23426 [sigma: 28.2457 | error: 0.0375526 | coeff: 0.0375526 | eff: 1 | fom: 25.3257 | r2int: 0.00140875 | r2eff: 0 | hits: 970 ] steps 107 22470 [sigma: 25.3877 | error: 0.0355679 | coeff: 0.0355679 | eff: 1 | fom: 28.231 | r2int: 0.0012638 | r2eff: 0 | hits: 991 ] steps @@ -1510,10 +1510,10 @@ Run Summary 112 22879 [sigma: 25.9986 | error: 0.0349694 | coeff: 0.0349694 | eff: 1 | fom: 29.2055 | r2int: 0.00122157 | r2eff: 0 | hits: 947 ] steps 113 22440 [sigma: 26.8139 | error: 0.0368492 | coeff: 0.0368492 | eff: 1 | fom: 26.3019 | r2int: 0.00135643 | r2eff: 0 | hits: 951 ] steps 114 18826 [sigma: 28.063 | error: 0.0420564 | coeff: 0.0420564 | eff: 1 | fom: 20.1919 | r2int: 0.00176652 | r2eff: 0 | hits: 796 ] steps - 115 18855 [sigma: 28.0932 | error: 0.0421687 | coeff: 0.0421687 | eff: 1 | fom: 20.0845 | r2int: 0.00177598 | r2eff: 0 | hits: 801 ] steps - 116 23237 [sigma: 26.8413 | error: 0.0366372 | coeff: 0.0366372 | eff: 1 | fom: 26.6071 | r2int: 0.00134095 | r2eff: 0 | hits: 1006 ] steps - 117 23547 [sigma: 26.0885 | error: 0.0354018 | coeff: 0.0354018 | eff: 1 | fom: 28.4964 | r2int: 0.00125206 | r2eff: 0 | hits: 1021 ] steps - 118 23816 [sigma: 29.7534 | error: 0.0387888 | coeff: 0.0387888 | eff: 1 | fom: 23.7372 | r2int: 0.00150301 | r2eff: 0 | hits: 964 ] steps + 115 18855 [sigma: 28.0932 | error: 0.0421687 | coeff: 0.0421687 | eff: 1 | fom: 19.3919 | r2int: 0.00177598 | r2eff: 0 | hits: 801 ] steps + 116 23237 [sigma: 26.8413 | error: 0.0366372 | coeff: 0.0366372 | eff: 1 | fom: 25.6896 | r2int: 0.00134095 | r2eff: 0 | hits: 1006 ] steps + 117 23547 [sigma: 26.0885 | error: 0.0354018 | coeff: 0.0354018 | eff: 1 | fom: 27.5138 | r2int: 0.00125206 | r2eff: 0 | hits: 1021 ] steps + 118 23816 [sigma: 29.7534 | error: 0.0387888 | coeff: 0.0387888 | eff: 1 | fom: 22.9187 | r2int: 0.00150301 | r2eff: 0 | hits: 964 ] steps 119 17848 [sigma: 24.9493 | error: 0.0392901 | coeff: 0.0392901 | eff: 1 | fom: 22.3376 | r2int: 0.00154176 | r2eff: 0 | hits: 790 ] steps 120 14109 [sigma: 29.8744 | error: 0.0521671 | coeff: 0.0521671 | eff: 1 | fom: 12.6709 | r2int: 0.00271693 | r2eff: 0 | hits: 607 ] steps 121 18215 [sigma: 28.6109 | error: 0.0435011 | coeff: 0.0435011 | eff: 1 | fom: 18.2222 | r2int: 0.00188988 | r2eff: 0 | hits: 767 ] steps diff --git a/examples/extended/parameterisations/Par01/examplePar01.out b/examples/extended/parameterisations/Par01/examplePar01.out index a10cfb20ac..a47a83c17a 100644 --- a/examples/extended/parameterisations/Par01/examplePar01.out +++ b/examples/extended/parameterisations/Par01/examplePar01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/parameterisations/Par02/examplePar02.out b/examples/extended/parameterisations/Par02/examplePar02.out index c18ebd103d..e249d56e40 100644 --- a/examples/extended/parameterisations/Par02/examplePar02.out +++ b/examples/extended/parameterisations/Par02/examplePar02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -25,27 +25,27 @@ G4GDML: Reading 'Par02FullDetector.gdml' done! Stripping off GDML names of materials, solids and volumes ... Geometry loaded from file .......Par02FullDetector.gdml -hcal !!! - -hcal !!! - -hcal !!! - tracker !!! ecal !!! ecal !!! -ecal !!! +hcal !!! -ecal !!! - -ecal !!! +hcal !!! hcal !!! hcal !!! + +hcal !!! + +ecal !!! + +ecal !!! + +ecal !!! Warning : Region does not have specific production cuts, even though it appears in the current tracking world. Default cuts are used for this region. @@ -1136,9 +1136,3 @@ See commands in /vis/modeling/trajectories/ for other options. ... close Root file : DefaultOutput.root - done Graphics systems deleted. Visualization Manager deleting... -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 7000 No Calls: 4000 Max-trial: 2 diff --git a/examples/extended/persistency/P01/p01-write.out b/examples/extended/persistency/P01/p01-write.out index 4d0935a430..bfc6362936 100644 --- a/examples/extended/persistency/P01/p01-write.out +++ b/examples/extended/persistency/P01/p01-write.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1848,7 +1848,7 @@ writing Event_1 Run terminated. Run Summary Number of events processed : 1 - User=0.240000s Real=2.676782s Sys=0.230000s + User=0.240000s Real=3.645896s Sys=0.230000s Region -- -- appears in world volume This region is in the mass world. @@ -2111,7 +2111,7 @@ writing Event_4 Run terminated. Run Summary Number of events processed : 3 - User=0.010000s Real=0.005833s Sys=0.000000s + User=0.010000s Real=0.007578s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. @@ -2123,12 +2123,6 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -G4Integration Driver Stats: #QuickAdvance 0 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 0 No Calls: 0 Max-trial: 0 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 945 No Calls: 945 Max-trial: 1 TransportationManager deleted. Total navigation history collections cleaned: 19 ================== Deleting memory pools =================== diff --git a/examples/extended/persistency/P03/batch.out b/examples/extended/persistency/P03/batch.out index e033e8dbf3..f151096c61 100644 --- a/examples/extended/persistency/P03/batch.out +++ b/examples/extended/persistency/P03/batch.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -156,7 +156,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.000905s Sys=0.000000s + User=0.000000s Real=0.001080s Sys=0.000000s 10 events have been kept for refreshing and/or reviewing. "/vis/reviewKeptEvents" to review them one by one. diff --git a/examples/extended/persistency/gdml/G01/g01.out b/examples/extended/persistency/gdml/G01/g01.out index 9f7c24c502..c32d65cdcd 100644 --- a/examples/extended/persistency/gdml/G01/g01.out +++ b/examples/extended/persistency/gdml/G01/g01.out @@ -41,7 +41,7 @@ Stripping off GDML names of materials, solids and volumes ... ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1152,7 +1152,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.005574s Sys=0.000000s + User=0.010000s Real=0.009418s Sys=0.000000s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1519,7 +1519,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.004949s Sys=0.000000s + User=0.000000s Real=0.004360s Sys=0.000000s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 @@ -1559,7 +1559,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.010000s Real=0.002244s Sys=0.000000s + User=0.000000s Real=0.002517s Sys=0.000000s /gun/direction 0.3 -0.2 1 /run/beamOn 20 @@ -1598,7 +1598,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.002259s Sys=0.000000s + User=0.010000s Real=0.002205s Sys=0.000000s /gun/direction -0.3 0.2 0.6 /run/beamOn 20 @@ -1637,7 +1637,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.002198s Sys=0.000000s + User=0.000000s Real=0.002361s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/persistency/gdml/G04/g04.out b/examples/extended/persistency/gdml/G04/g04.out index 47b7959460..bf1e61f009 100644 --- a/examples/extended/persistency/gdml/G04/g04.out +++ b/examples/extended/persistency/gdml/G04/g04.out @@ -15,7 +15,7 @@ Stripping off GDML names of materials, solids and volumes ... ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1013,7 +1013,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.001357s Sys=0.000000s + User=0.000000s Real=0.001777s Sys=0.000000s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1265,7 +1265,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000927s Sys=0.000000s + User=0.010000s Real=0.001197s Sys=0.000000s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 @@ -1318,7 +1318,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000126s Sys=0.000000s + User=0.000000s Real=0.000173s Sys=0.000000s /gun/direction 0.3 -0.2 1 /run/beamOn 20 @@ -1370,7 +1370,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000116s Sys=0.000000s + User=0.000000s Real=0.000189s Sys=0.000000s /gun/direction -0.3 0.2 0.6 /run/beamOn 20 @@ -1422,7 +1422,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.000000s Real=0.000119s Sys=0.000000s + User=0.000000s Real=0.000156s Sys=0.000000s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/physicslists/History b/examples/extended/physicslists/History index 2ff9622b87..55ee512619 100644 --- a/examples/extended/physicslists/History +++ b/examples/extended/physicslists/History @@ -14,6 +14,9 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +24/01/20 A. Zaborowska +- Fix suggested in macros command /run/numberOfThreads + 03/11/17 R. Hatcher - Addition of extensibleFactory example diff --git a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out index 1f653a5861..b35cce901f 100644 --- a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out +++ b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/physicslists/extensibleFactory/run.mac b/examples/extended/physicslists/extensibleFactory/run.mac index b9fadcb2ee..0f9d0e1f77 100644 --- a/examples/extended/physicslists/extensibleFactory/run.mac +++ b/examples/extended/physicslists/extensibleFactory/run.mac @@ -4,7 +4,7 @@ # % extensibleFactory -m run.mac # # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # /run/initialize # diff --git a/examples/extended/physicslists/factory/factory-environment.out b/examples/extended/physicslists/factory/factory-environment.out index c374248b09..a7760c1c3d 100644 --- a/examples/extended/physicslists/factory/factory-environment.out +++ b/examples/extended/physicslists/factory/factory-environment.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/physicslists/factory/factory.out b/examples/extended/physicslists/factory/factory.out index 7102cf4651..c72422cc7f 100644 --- a/examples/extended/physicslists/factory/factory.out +++ b/examples/extended/physicslists/factory/factory.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/physicslists/factory/run.mac b/examples/extended/physicslists/factory/run.mac index e77cb54ca5..d382df6c49 100644 --- a/examples/extended/physicslists/factory/run.mac +++ b/examples/extended/physicslists/factory/run.mac @@ -4,7 +4,7 @@ # % factory -m run.mac # # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # /run/initialize # diff --git a/examples/extended/physicslists/genericPL/genericPL.out b/examples/extended/physicslists/genericPL/genericPL.out index 01571ad818..4ebd11f0fd 100644 --- a/examples/extended/physicslists/genericPL/genericPL.out +++ b/examples/extended/physicslists/genericPL/genericPL.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/physicslists/genericPL/run.mac b/examples/extended/physicslists/genericPL/run.mac index e77cb54ca5..d382df6c49 100644 --- a/examples/extended/physicslists/genericPL/run.mac +++ b/examples/extended/physicslists/genericPL/run.mac @@ -4,7 +4,7 @@ # % factory -m run.mac # # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # /run/initialize # diff --git a/examples/extended/polarisation/Pol01/pol01.out b/examples/extended/polarisation/Pol01/pol01.out index a10097408c..dcd7b7918b 100644 --- a/examples/extended/polarisation/Pol01/pol01.out +++ b/examples/extended/polarisation/Pol01/pol01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -195,7 +195,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 10000 - User=0.080000s Real=0.074662s Sys=0.000000s + User=0.080000s Real=0.075061s Sys=0.000000s The run consists of 10000 gamma of 10 MeV through 1.75 mm of G4_Fe (density: 7.874 g/cm3 ) diff --git a/examples/extended/radioactivedecay/Activation/Activation.out b/examples/extended/radioactivedecay/Activation/Activation.out index a35d41b951..4e01fab3b3 100644 --- a/examples/extended/radioactivedecay/Activation/Activation.out +++ b/examples/extended/radioactivedecay/Activation/Activation.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -418,7 +418,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.170000s Real=0.174605s Sys=0.000000s + User=0.170000s Real=0.208558s Sys=0.000000s The run is 1000 neutron of 25 meV through 1 cm of G4_Co (density: 8.9 g/cm3 ) diff --git a/examples/extended/radioactivedecay/rdecay01/rdecay01.out b/examples/extended/radioactivedecay/rdecay01/rdecay01.out index 6308bac9a9..af1754cbf5 100644 --- a/examples/extended/radioactivedecay/rdecay01/rdecay01.out +++ b/examples/extended/radioactivedecay/rdecay01/rdecay01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -95,7 +95,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.014870s Sys=0.000000s + User=0.000000s Real=0.008666s Sys=0.000000s ======================== run summary ====================== The run was 1 Co60 of 0 eV @@ -170,7 +170,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=0.720000s Real=0.750654s Sys=0.000000s + User=0.730000s Real=0.730964s Sys=0.000000s ======================== run summary ====================== The run was 100000 Co60 of 0 eV @@ -245,7 +245,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=1.690000s Real=1.744772s Sys=0.010000s + User=1.650000s Real=1.813963s Sys=0.000000s ======================== 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 6677d51968..3628ebe881 100644 --- a/examples/extended/radioactivedecay/rdecay02/rdecay02.out +++ b/examples/extended/radioactivedecay/rdecay02/rdecay02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -398,7 +398,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.950000s Real=0.982970s Sys=0.010000s + User=1.100000s Real=1.214392s Sys=0.010000s The run is 10000 Ne24 of 0 meV through : Target : Length = 1 cm Radius = 5 mm Material = G4_CESIUM_IODIDE diff --git a/examples/extended/runAndEvent/RE01/sample.out b/examples/extended/runAndEvent/RE01/sample.out index d4282acfc5..6828d09f3c 100644 --- a/examples/extended/runAndEvent/RE01/sample.out +++ b/examples/extended/runAndEvent/RE01/sample.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -748,2154 +748,2220 @@ See commands in /vis/modeling/trajectories/ for other options. Tracks in tracking region have been processed. -- Stage 0 over. -Source track ID 11769 (e-,0.30926489842467[GeV]) at (79.208486491358,493.68615097828,-286.33010925274) +Source track ID 11954 (gamma,5.6142219011056e-05[GeV]) at (51.395376434746,497.35150073276,-291.02741168754) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[8,10] 0.17878241854585 [GeV] -Cell[14,29] 0.0022637595364335 [GeV] -Cell[8,11] 0.11707926093245 [GeV] -Cell[7,12] 0.0025488770102923 [GeV] -Cell[9,9] 0.00086645250647919 [GeV] -Cell[8,12] 0.0011340621508536 [GeV] -Cell[8,9] 0.0026745760488676 [GeV] -Cell[8,18] 0.00045557337385034 [GeV] -Cell[8,17] 0.0010615518245204 [GeV] -Cell[8,13] 0.00045996030507492 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.30732649223467 (GeV) +Cell[8,11] 5.6142219011056e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 5.6142219011056e-05 (GeV) -Source track ID 11793 (gamma,0.00051099891[GeV]) at (157.28959437508,474.61561657969,-255.92954456167) +Source track ID 11957 (gamma,0.013797087104302[GeV]) at (-429.01885135506,-256.79335112496,-679.95806705379) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[8,9] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00051099891 (GeV) +Cell[6,28] 0.010599934849678 [GeV] +Cell[3,19] 0.0027321562282024 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.013332091077881 (GeV) -Source track ID 11794 (gamma,0.00051099891[GeV]) at (-194.76711241905,-460.50599553094,-171.89657752839) +Source track ID 11958 (gamma,0.025034966123084[GeV]) at (-404.41244385176,-294.02478680861,-643.09557253249) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[9,32] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00051099891 (GeV) +Cell[6,28] 0.018861599605562 [GeV] +Cell[3,6] 0.0024260266589868 [GeV] +Cell[6,29] 0.003747339858536 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.025034966123084 (GeV) -Source track ID 11770 (e+,0.040580845460719[GeV]) at (377.35468307758,328.02963762352,-1118.3924629286) +Source track ID 11918 (e-,0.029447003737171[GeV]) at (12.912320677972,499.8332441672,-1071.1728544061) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[4,5] 0.016822124040442 [GeV] -Cell[2,31] 0.00051099891 [GeV] -Cell[4,4] 0.015315155664939 [GeV] -Cell[4,3] 0.00051099891 [GeV] -Cell[0,27] 0.00052731371599089 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.033686591241372 (GeV) +Cell[4,11] 0.028425005917171 [GeV] +Cell[4,12] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.028936004827171 (GeV) -Source track ID 11768 (gamma,0.025628376572502[GeV]) at (140.71276552708,479.79153558365,-280.89747587634) +Source track ID 11933 (gamma,0.00089858282897582[GeV]) at (137.29174727788,480.78163039928,-1108.4753047302) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[8,10] 0.0093977537995571 [GeV] -Cell[8,9] 0.016230622772945 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.025628376572502 (GeV) +Cell[4,10] 0.00080163694455009 [GeV] +Cell[4,9] 9.6945884425723e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.00089858282897582 (GeV) -Source track ID 11708 (e+,73.181613711529[GeV]) at (140.78237458198,479.77111522794,-280.89251281123) +Source track ID 11919 (e-,0.0011960066009252[GeV]) at (-479.52329996031,141.62416741211,-1516.0905784173) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[8,10] 4.6720810382994 [GeV] -Cell[8,11] 0.12089484215908 [GeV] -Cell[7,12] 0.0035585339769739 [GeV] -Cell[9,9] 0.01376686441916 [GeV] -Cell[8,12] 0.011940111244018 [GeV] -Cell[8,9] 66.999653198826 [GeV] -Cell[8,13] 0.0037507220156934 [GeV] -Cell[9,32] 0.00010736370398508 [GeV] -Cell[4,3] 0.00051469841670736 [GeV] -Cell[7,11] 0.044106613442607 [GeV] -Cell[7,9] 0.30987368259131 [GeV] -Cell[7,8] 0.041236431871869 [GeV] -Cell[7,10] 0.17496431403066 [GeV] -Cell[10,14] 0.00041555565887379 [GeV] -Cell[7,30] 0.0021280559811012 [GeV] -Cell[6,13] 0.00078774553877596 [GeV] -Cell[8,8] 0.31871366304351 [GeV] -Cell[8,7] 0.030914278649862 [GeV] -Cell[9,10] 0.0174977953596 [GeV] -Cell[7,17] 0.0002929081061287 [GeV] -Cell[9,7] 0.0049180179574495 [GeV] -Cell[13,26] 0.00042602597439845 [GeV] -Cell[2,30] 0.00043688131466705 [GeV] -Cell[3,25] 0.00070548046806825 [GeV] -Cell[3,24] 0.00016516475570733 [GeV] -Cell[7,43] 7.1729430344249e-05 [GeV] -Cell[6,43] 0.00093413960578977 [GeV] -Cell[7,37] 0.0018395027556661 [GeV] -Cell[6,10] 0.001477046206303 [GeV] -Cell[4,29] 0.00023613302983809 [GeV] -Cell[9,11] 0.014315082296508 [GeV] -Cell[8,5] 0.0010192264995201 [GeV] -Cell[6,30] 0.00080293017937916 [GeV] -Cell[7,27] 0.001975824683582 [GeV] -Cell[5,32] 0.0002012923124653 [GeV] -Cell[9,0] 0.002651887081736 [GeV] -Cell[9,8] 0.011445226617768 [GeV] -Cell[5,30] 0.0045937004759962 [GeV] -Cell[9,26] 0.0015442248643752 [GeV] -Cell[7,35] 0.00051099891 [GeV] -Cell[9,37] 0.0013327659898118 [GeV] -Cell[7,39] 0.0061098444386109 [GeV] -Cell[8,37] 0.0010494381286329 [GeV] -Cell[6,9] 0.009700568998351 [GeV] -Cell[6,8] 0.0004965924851131 [GeV] -Cell[6,11] 0.0015714390910546 [GeV] -Cell[7,47] 0.00044446616625467 [GeV] -Cell[0,39] 0.0036694668565937 [GeV] -Cell[7,7] 0.015770442385547 [GeV] -Cell[5,29] 0.0010245629733722 [GeV] -Cell[5,24] 0.001043099264876 [GeV] -Cell[8,27] 0.00425038457164 [GeV] -Cell[8,23] 0.0012426672299046 [GeV] -Cell[9,13] 0.0027550387879352 [GeV] -Cell[7,2] 0.00057857299096719 [GeV] -Cell[7,6] 0.00773485974758 [GeV] -Cell[6,28] 0.0096473109429167 [GeV] -Cell[8,2] 0.0023102437966192 [GeV] -Cell[9,5] 0.00075721449481433 [GeV] -Cell[10,24] 0.00060583339566139 [GeV] -Cell[10,27] 8.5645747894887e-06 [GeV] -Cell[10,26] 0.0017300383238202 [GeV] -Cell[10,25] 7.9430969890382e-09 [GeV] -Cell[8,31] 0.0030555862433964 [GeV] -Cell[6,29] 0.0018465042127992 [GeV] -Cell[8,35] 0.0017927806152091 [GeV] -Cell[11,40] 0.0013293455991007 [GeV] -Cell[10,38] 0.00080935324984266 [GeV] -Cell[3,29] 0.00068647856334183 [GeV] -Cell[4,44] 0.0022995243920847 [GeV] -Cell[4,45] 0.00012184317934116 [GeV] -Cell[7,38] 0.00080760492691913 [GeV] -Cell[15,39] 0.00093120644119688 [GeV] -Cell[15,40] 8.6786947116366e-05 [GeV] -Cell[15,41] 2.3692348349869e-09 [GeV] -Cell[7,1] 0.0019199709559169 [GeV] -Cell[5,2] 0.0040506899337207 [GeV] -Cell[7,40] 0.00091018771717028 [GeV] -Cell[6,7] 0.00057085109067197 [GeV] -Cell[9,1] 0.00021330065571796 [GeV] -Cell[8,34] 0.0039765891881252 [GeV] -Cell[5,40] 0.001283469090521 [GeV] -Cell[1,45] 0.0025579708270758 [GeV] -Cell[0,33] 0.00043092864499867 [GeV] -Cell[1,23] 0.00074432128413711 [GeV] -Cell[8,25] 0.0012205185118679 [GeV] -Cell[10,1] 0.00017914843559834 [GeV] -Cell[3,32] 0.0032887631928416 [GeV] -Cell[8,20] 0.00025777517712038 [GeV] -Cell[8,21] 0.00027809212966611 [GeV] -Cell[6,22] 0.0022230586223155 [GeV] -Cell[4,47] 0.00025778311012574 [GeV] -Cell[4,33] 0.0022649352146279 [GeV] -Cell[10,6] 0.0021604365306899 [GeV] -Cell[1,29] 0.0024721853108716 [GeV] -Cell[2,38] 0.0014871125916461 [GeV] -Cell[9,27] 0.0005877152405752 [GeV] -Cell[4,32] 0.0065826392138758 [GeV] -Cell[5,37] 0.00092903441028819 [GeV] -Cell[5,43] 0.00068495009959207 [GeV] -Cell[6,44] 0.00071759990793858 [GeV] -Cell[10,33] 0.012223598926153 [GeV] -Cell[6,38] 0.0022869155111702 [GeV] -Cell[5,42] 0.00038618249800215 [GeV] -Cell[12,43] 0.0013723382930612 [GeV] -Cell[4,31] 0.0010010283407201 [GeV] -Cell[16,30] 0.0012677523099887 [GeV] -Cell[6,39] 0.00092765935627898 [GeV] -Cell[8,6] 0.00024718474295455 [GeV] -Cell[2,32] 0.0051734715787067 [GeV] -Cell[5,33] 1.6787031199783e-08 [GeV] -Cell[3,42] 1.6492267604917e-09 [GeV] -Cell[3,43] 1.4614492688452e-06 [GeV] -Cell[15,38] 4.0295718506513e-06 [GeV] -Cell[9,17] 0.00069435894636539 [GeV] -Cell[8,29] 0.0003472863148224 [GeV] -Cell[11,31] 0.0019539590336614 [GeV] -Cell[10,30] 3.7288220992014e-05 [GeV] -Cell[6,45] 0.00042601901467982 [GeV] -Cell[9,18] 0.00069411209538426 [GeV] -Cell[4,34] 0.0046131421994966 [GeV] -Cell[8,28] 0.003737393394051 [GeV] -Cell[9,36] 0.0011387548198901 [GeV] -Cell[10,41] 9.7810575086914e-05 [GeV] -Cell[8,15] 0.0027409970509087 [GeV] -Cell[6,42] 0.001382056763393 [GeV] -Cell[6,41] 0.0032513209729934 [GeV] -Cell[10,16] 0.00049795983105256 [GeV] -Cell[3,26] 0.0010837135982797 [GeV] -Cell[4,35] 0.0010465500825291 [GeV] -Cell[10,44] 0.00030765837307671 [GeV] -Cell[5,28] 0.00063126611815386 [GeV] -Cell[7,29] 0.0007816307407373 [GeV] -Cell[6,31] 0.00059509833668066 [GeV] -Cell[12,16] 0.00082275828174756 [GeV] -Cell[7,31] 0.00051099891 [GeV] -Cell[9,29] 0.00043585468086944 [GeV] -Cell[2,42] 0.00041871370185379 [GeV] -Cell[7,46] 0.00021034921414898 [GeV] -Cell[9,6] 0.000317224471571 [GeV] -Cell[10,31] 0.00023779514828758 [GeV] -Cell[9,23] 0.0047868239086745 [GeV] -Cell[8,14] 0.00097590553721894 [GeV] -Cell[8,47] 0.0020036846168793 [GeV] -Cell[5,38] 0.00082673229120566 [GeV] -Cell[10,9] 0.0002350047480257 [GeV] -Cell[9,46] 0.00010545446538675 [GeV] -Cell[9,2] 0.00030250701776856 [GeV] -Cell[10,40] 0.00015231816848283 [GeV] -Cell[9,4] 2.3723732936105e-06 [GeV] -Cell[10,4] 3.2180758898903e-07 [GeV] -Cell[13,27] 1.4370016288012e-09 [GeV] -Cell[13,28] 1.2058770676049e-07 [GeV] -Cell[13,29] 8.8007628733067e-08 [GeV] -Cell[13,13] 0.00070408145728657 [GeV] -Cell[8,0] 0.00044647936784292 [GeV] -Cell[6,23] 0.00051099891 [GeV] -Cell[7,23] 0.00050549871870046 [GeV] -Cell[7,0] 0.0030579878290633 [GeV] -### Total energy deposition in calorimeter by a source track in 159 cells : 73.015839493315 (GeV) +Cell[2,21] 0.00068500769092518 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00068500769092518 (GeV) -Source track ID 11672 (mu+,97.449383105188[GeV]) at (421.38076181839,269.14355568981,1659.1483501403) +Source track ID 11911 (gamma,0.00032683406552394[GeV]) at (-100.77101254251,489.73993407844,-458.31189766178) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[18,4] 0.74448536347991 [GeV] -Cell[19,4] 0.23212949782506 [GeV] -Cell[19,21] 0.00062423447584239 [GeV] -Cell[19,5] 0.00024799479684819 [GeV] -Cell[18,5] 0.0040207686531937 [GeV] -Cell[18,3] 0.0020201648428857 [GeV] -Cell[18,2] 0.0041758777690645 [GeV] -Cell[19,22] 0.00037916624754769 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.98808306809036 (GeV) +Cell[7,13] 0.00032683406552394 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00032683406552394 (GeV) -Source track ID 11673 (mu-,49.164366597563[GeV]) at (-250.03454579631,-432.99275502996,234.23334560986) +Source track ID 11913 (gamma,4.3547142186874[GeV]) at (140.53210501216,479.84448257831,-280.90596002153) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[11,31] 0.031135842452341 [GeV] -Cell[11,32] 0.465350447223 [GeV] -Cell[12,32] 0.64189406501764 [GeV] -Cell[13,32] 0.56075570539682 [GeV] -Cell[14,32] 0.58355964548139 [GeV] -Cell[15,32] 0.82093020601441 [GeV] -Cell[16,32] 0.45681133427023 [GeV] -Cell[16,31] 0.0088331826476307 [GeV] -Cell[15,31] 0.018241380847717 [GeV] -Cell[14,31] 0.0051686157792923 [GeV] -Cell[13,31] 0.041511622164852 [GeV] -Cell[12,31] 0.038593631704207 [GeV] -Cell[11,33] 0.0017270452056371 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 3.6745127242052 (GeV) +Cell[8,9] 4.0298416087197 [GeV] +Cell[8,10] 0.23671780767227 [GeV] +Cell[8,8] 0.019606597494734 [GeV] +Cell[8,7] 0.00010830240438219 [GeV] +Cell[9,10] 0.006318760480424 [GeV] +Cell[7,8] 0.0027015880328243 [GeV] +Cell[7,33] 0.00065748542420192 [GeV] +Cell[7,11] 0.0034957521148347 [GeV] +Cell[7,10] 0.011961824799 [GeV] +Cell[6,37] 0.0041572500912653 [GeV] +Cell[7,41] 0.0010750205370304 [GeV] +Cell[7,36] 0.0055882065986432 [GeV] +Cell[9,19] 0.00026500126968358 [GeV] +Cell[8,13] 0.001743188553248 [GeV] +Cell[8,22] 0.0013536831307798 [GeV] +Cell[4,21] 0.00083376835679225 [GeV] +Cell[7,9] 0.013504472817438 [GeV] +Cell[9,9] 0.00044721761672712 [GeV] +Cell[7,7] 0.00077777184392491 [GeV] +Cell[10,8] 0.00021994301497711 [GeV] +Cell[7,35] 0.0014863356053566 [GeV] +Cell[9,14] 0.00013061653421187 [GeV] +Cell[9,13] 0.00094288134004312 [GeV] +Cell[8,45] 0.0010452817188081 [GeV] +### Total energy deposition in calorimeter by a source track in 24 cells : 4.3449803661713 (GeV) -Source track ID 11642 (gamma,0.18586941759822[GeV]) at (-308.5713160489,-393.42565105983,1178.600734468) +Source track ID 11914 (gamma,6.0228565414755[GeV]) at (140.64375195167,479.81177042352,-280.90433264581) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[8,11] 0.0054187134991833 [GeV] +Cell[8,9] 5.474278754242 [GeV] +Cell[8,10] 0.44058562456561 [GeV] +Cell[8,8] 0.030243008083192 [GeV] +Cell[8,7] 0.0023525405998427 [GeV] +Cell[9,10] 0.0014730824836273 [GeV] +Cell[7,8] 0.0087080080261356 [GeV] +Cell[7,11] 0.00076754924213127 [GeV] +Cell[7,10] 0.018770412066628 [GeV] +Cell[7,9] 0.037243383644042 [GeV] +Cell[9,9] 0.00034604666898407 [GeV] +Cell[7,7] 0.0012914410010948 [GeV] +Cell[9,7] 0.00042629260805155 [GeV] +Cell[8,12] 0.00010941391151649 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 6.0220142706421 (GeV) + +Source track ID 11915 (gamma,1.5350877860349[GeV]) at (140.6554805248,479.8083323561,-280.89919221006) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[8,11] 0.0033239269913021 [GeV] +Cell[7,13] 0.00050081290108669 [GeV] +Cell[8,9] 1.3765737931963 [GeV] +Cell[8,10] 0.13554446433027 [GeV] +Cell[8,8] 0.0027184101489381 [GeV] +Cell[7,8] 0.00011381951114999 [GeV] +Cell[7,11] 0.00055948152946609 [GeV] +Cell[7,10] 0.0059386092399079 [GeV] +Cell[7,9] 0.0042366184468302 [GeV] +Cell[7,7] 0.00075849601526617 [GeV] +Cell[8,46] 0.0015856481656772 [GeV] +Cell[7,45] 0.0015586607820069 [GeV] +Cell[7,14] 0.00058278494628192 [GeV] +### Total energy deposition in calorimeter by a source track in 13 cells : 1.5339955262045 (GeV) + +Source track ID 11817 (e+,61.579100872487[GeV]) at (140.83276703154,479.75632536762,-280.9301144118) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[8,11] 0.10379852020282 [GeV] +Cell[6,29] 0.00024122434086262 [GeV] +Cell[7,13] 0.0014001368360434 [GeV] +Cell[8,9] 56.083987755907 [GeV] +Cell[8,10] 4.2698739758539 [GeV] +Cell[8,8] 0.24412334147447 [GeV] +Cell[8,7] 0.021647035633396 [GeV] +Cell[9,10] 0.0032998214665082 [GeV] +Cell[7,8] 0.031049988199828 [GeV] +Cell[7,33] 0.002664523480153 [GeV] +Cell[7,11] 0.018027758687398 [GeV] +Cell[7,10] 0.20386140056381 [GeV] +Cell[8,13] 0.0025587676870241 [GeV] +Cell[7,9] 0.33482499947114 [GeV] +Cell[9,9] 0.016087916285316 [GeV] +Cell[7,7] 0.0016654272079077 [GeV] +Cell[9,7] 0.00087846895222695 [GeV] +Cell[8,12] 0.017330937839033 [GeV] +Cell[6,47] 0.0047701233987978 [GeV] +Cell[8,6] 0.00044920435700135 [GeV] +Cell[7,42] 0.0011329508155109 [GeV] +Cell[7,12] 0.0053012568492673 [GeV] +Cell[11,6] 0.00023530364005044 [GeV] +Cell[9,11] 0.0020068935229611 [GeV] +Cell[5,29] 0.0028791223944121 [GeV] +Cell[7,6] 0.0023481752597665 [GeV] +Cell[11,47] 0.00050160251040602 [GeV] +Cell[9,8] 0.0028095710248715 [GeV] +Cell[1,25] 0.0022004125508304 [GeV] +Cell[2,25] 0.0010924224098891 [GeV] +Cell[11,29] 0.00036917179149082 [GeV] +Cell[9,30] 0.001157688017143 [GeV] +Cell[7,15] 0.0035144882305538 [GeV] +Cell[5,28] 0.00051099891 [GeV] +Cell[6,12] 0.0007739276546249 [GeV] +Cell[9,26] 0.00090077169141104 [GeV] +Cell[6,34] 0.00059982608965686 [GeV] +Cell[7,25] 2.1306467993782e-05 [GeV] +Cell[7,27] 6.1515399311475e-05 [GeV] +Cell[7,26] 0.00022046113292174 [GeV] +Cell[6,26] 0.0013641776991096 [GeV] +Cell[6,25] 4.5806407395048e-06 [GeV] +Cell[7,28] 0.00078844687010786 [GeV] +Cell[3,36] 0.00021863620687055 [GeV] +Cell[7,16] 0.0068125371473394 [GeV] +Cell[8,17] 0.00025028021408598 [GeV] +Cell[6,0] 0.00027126550721899 [GeV] +Cell[7,46] 0.0035658403750157 [GeV] +Cell[8,41] 0.0010473582949112 [GeV] +Cell[14,42] 8.4890699848951e-05 [GeV] +Cell[4,39] 0.0028494084951339 [GeV] +Cell[13,46] 0.00026615749505016 [GeV] +Cell[13,35] 0.00077089889363097 [GeV] +Cell[4,36] 0.0012393603151541 [GeV] +Cell[2,17] 0.00032328938898986 [GeV] +Cell[6,40] 0.00051099891 [GeV] +Cell[8,40] 0.00064803063477671 [GeV] +Cell[8,38] 5.0587852308695e-05 [GeV] +Cell[4,20] 0.00080371748802661 [GeV] +Cell[0,40] 0.00097238326397666 [GeV] +Cell[8,26] 0.0013143757691658 [GeV] +Cell[9,28] 0.0005712154933844 [GeV] +Cell[7,43] 0.00058867752649105 [GeV] +Cell[6,6] 0.00087022228419734 [GeV] +Cell[2,38] 0.00068338951801519 [GeV] +Cell[10,25] 0.00088615796223271 [GeV] +Cell[9,33] 0.0025905014152609 [GeV] +Cell[10,39] 0.0029555914466739 [GeV] +Cell[10,40] 0.00076311830358603 [GeV] +Cell[5,31] 0.0014650824709007 [GeV] +Cell[8,29] 0.0022285538023822 [GeV] +Cell[8,28] 0.00014706846628369 [GeV] +Cell[5,45] 0.00078591041596149 [GeV] +Cell[7,20] 0.00026983364544593 [GeV] +Cell[8,0] 0.00044051428511247 [GeV] +Cell[7,5] 0.0035204038359243 [GeV] +Cell[11,36] 0.00062429431989665 [GeV] +Cell[5,47] 0.0028733460121596 [GeV] +Cell[17,43] 0.00013925029113605 [GeV] +Cell[10,28] 0.0012302394017265 [GeV] +Cell[8,5] 0.00087904040023918 [GeV] +Cell[8,27] 0.0019073498981118 [GeV] +Cell[6,36] 0.00025744317340356 [GeV] +Cell[6,35] 0.00095934214272827 [GeV] +Cell[5,25] 0.0019897429327644 [GeV] +Cell[5,24] 0.00068399394195038 [GeV] +Cell[1,33] 0.00082011068524309 [GeV] +Cell[6,8] 0.0028582232560474 [GeV] +Cell[5,36] 0.0020606696661465 [GeV] +Cell[7,18] 0.00072793660179489 [GeV] +Cell[8,42] 0.00052166034357242 [GeV] +Cell[17,23] 0.000181607962303 [GeV] +Cell[9,44] 0.00091207008699792 [GeV] +Cell[9,43] 0.00031445741708749 [GeV] +Cell[8,3] 0.00053964974598851 [GeV] +Cell[6,39] 0.00077665022020827 [GeV] +Cell[7,22] 0.001569190936854 [GeV] +Cell[7,17] 0.00042539506673161 [GeV] +Cell[7,4] 0.00095826901963095 [GeV] +Cell[9,18] 3.4891623654403e-06 [GeV] +Cell[11,26] 1.1881901271408e-05 [GeV] +Cell[10,29] 0.00024170658949356 [GeV] +### Total energy deposition in calorimeter by a source track in 102 cells : 61.458569668417 (GeV) + +Source track ID 11804 (e-,0.55403329432944[GeV]) at (416.67485467463,276.37305491288,1737.6371015518) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[17,23] 0.00037257899691645 [GeV] +Cell[18,4] 0.47769613086285 [GeV] +Cell[15,38] 0.0012291113236664 [GeV] +Cell[18,5] 0.0010003728212572 [GeV] +Cell[19,46] 0.0018634212220492 [GeV] +Cell[19,29] 0.00102199782 [GeV] +Cell[9,36] 0.00067656173705157 [GeV] +Cell[10,36] 3.4873082764907e-05 [GeV] +Cell[19,4] 0.047085424803027 [GeV] +Cell[19,23] 0.00048629057796926 [GeV] +Cell[18,3] 0.001425618803094 [GeV] +Cell[19,5] 0.0016794020017628 [GeV] +Cell[19,3] 0.0011690574419533 [GeV] +Cell[19,7] 0.00021068405208706 [GeV] +Cell[19,6] 6.7315201227015e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 15 cells : 0.53601884074768 (GeV) + +Source track ID 11786 (mu+,96.895697493702[GeV]) at (421.40599642411,269.10404340663,1658.7200954473) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[18,4] 0.17555113717465 [GeV] +Cell[19,4] 0.25785311069176 [GeV] +Cell[19,3] 0.0025546963688273 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.43595894423525 (GeV) + +Source track ID 11787 (mu-,49.168682301722[GeV]) at (-250.00483342011,-433.00991127985,234.27505813593) +Original primary track ID 1 (unknown,305.48142430119[GeV]) +Cell[11,31] 0.026761654140113 [GeV] +Cell[11,32] 0.52806159292833 [GeV] +Cell[12,32] 0.84648229655943 [GeV] +Cell[13,32] 0.94817627235555 [GeV] +Cell[14,32] 1.1229636214625 [GeV] +Cell[15,32] 0.54180942281125 [GeV] +Cell[16,32] 0.69017812650859 [GeV] +Cell[17,32] 0.0040793578952045 [GeV] +Cell[16,31] 0.019389137714092 [GeV] +Cell[17,31] 0.00083708583163648 [GeV] +Cell[15,31] 0.034957432505547 [GeV] +Cell[14,31] 0.22950239277649 [GeV] +Cell[13,31] 0.13678212964496 [GeV] +Cell[12,31] 0.15700620536278 [GeV] +Cell[11,11] 0.00078998858861499 [GeV] +### Total energy deposition in calorimeter by a source track in 15 cells : 5.2877767170851 (GeV) + +Source track ID 11782 (gamma,0.18586941759822[GeV]) at (-308.57129876552,-393.42566461552,1178.6007666186) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[16,30] 0.047061837223698 [GeV] -Cell[16,32] 0.0020780659436635 [GeV] -Cell[16,31] 0.01821522936909 [GeV] -Cell[15,31] 0.0025269702793823 [GeV] -Cell[15,30] 0.10423619718176 [GeV] -Cell[17,21] 0.0017948759232961 [GeV] -Cell[14,4] 0.0051559618760473 [GeV] -Cell[6,14] 0.0016107799397356 [GeV] -Cell[15,4] 0.00098655379227073 [GeV] -Cell[15,3] 0.0013276685292679 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.18499414005822 (GeV) +Cell[16,32] 0.00065502010959941 [GeV] +Cell[16,31] 0.034260076443054 [GeV] +Cell[15,31] 0.002458512708259 [GeV] +Cell[15,30] 0.061370945236538 [GeV] +Cell[16,30] 0.078733009722978 [GeV] +Cell[18,13] 0.00042721945567307 [GeV] +Cell[14,5] 0.00019176581440706 [GeV] +Cell[14,4] 7.5443215027917e-06 [GeV] +Cell[15,5] 0.00021883915880994 [GeV] +Cell[15,6] 1.7623901840125e-09 [GeV] +Cell[10,6] 0.00046084432075892 [GeV] +Cell[15,28] 0.0003450671127888 [GeV] +### Total energy deposition in calorimeter by a source track in 12 cells : 0.17912884616676 (GeV) -Source track ID 11644 (e-,0.76148831511785[GeV]) at (-384.33693404569,-319.82045139165,681.47796495663) +Source track ID 11783 (gamma,0.79108390679382[GeV]) at (-463.39575500327,-187.78810996692,658.34952964275) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[14,29] 0.0016249039454254 [GeV] -Cell[12,43] 0.00051099891 [GeV] -Cell[13,28] 0.019425499375902 [GeV] -Cell[13,29] 0.70083309704327 [GeV] -Cell[13,15] 0.00039391474602959 [GeV] -Cell[13,7] 0.00024512402764836 [GeV] -Cell[13,10] 0.00017913658865895 [GeV] -Cell[12,11] 0.00048574479759343 [GeV] -Cell[15,45] 0.0018480742127991 [GeV] -Cell[14,44] 0.003527115097334 [GeV] -Cell[14,22] 0.00029484435523092 [GeV] -Cell[10,46] 0.00034500993796559 [GeV] -Cell[17,45] 0.00030045129190632 [GeV] -Cell[14,28] 0.005563907142783 [GeV] -Cell[13,45] 0.0077382935096759 [GeV] -Cell[13,34] 0.0023120443383838 [GeV] -Cell[13,30] 0.0093938461524476 [GeV] -Cell[11,7] 0.0023660401713043 [GeV] -Cell[12,7] 0.00062174046522389 [GeV] -Cell[14,27] 0.00036528961111709 [GeV] -Cell[14,37] 0.0020212524794285 [GeV] -### Total energy deposition in calorimeter by a source track in 21 cells : 0.76039632820012 (GeV) +Cell[15,5] 0.0067264569897022 [GeV] +Cell[13,26] 0.67044312844076 [GeV] +Cell[13,47] 0.0026826232095971 [GeV] +Cell[10,16] 0.00076863264833235 [GeV] +Cell[13,27] 0.090168961521214 [GeV] +Cell[13,28] 0.003262214044209 [GeV] +Cell[13,8] 0.00048168361332835 [GeV] +Cell[14,25] 0.00086610788099953 [GeV] +Cell[13,22] 0.0016681558719434 [GeV] +Cell[14,7] 0.00051099891 [GeV] +Cell[12,42] 0.00051099891 [GeV] +Cell[10,4] 0.00043072878025834 [GeV] +Cell[13,25] 0.0091299385001171 [GeV] +### Total energy deposition in calorimeter by a source track in 13 cells : 0.78765062932046 (GeV) -Source track ID 11645 (e+,0.029065637408727[GeV]) at (-389.12321684999,313.97949313341,1581.9928424086) +Source track ID 11485 (gamma,0.68389327451526[GeV]) at (-406.71452137306,-290.83207887763,428.61112859246) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[17,18] 0.026245687028568 [GeV] -Cell[11,8] 0.0018955195940397 [GeV] -Cell[12,2] 0.00051099891 [GeV] -Cell[19,10] 0.00088276248717436 [GeV] -Cell[19,11] 4.1668298944929e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.029576636318727 (GeV) +Cell[11,6] 0.00049797015776374 [GeV] +Cell[11,29] 0.00080288797939256 [GeV] +Cell[14,4] 5.6116711765645e-05 [GeV] +Cell[12,28] 0.58033833337197 [GeV] +Cell[13,6] 0.00079710087101454 [GeV] +Cell[12,27] 0.0052037977220526 [GeV] +Cell[12,29] 0.084319782562358 [GeV] +Cell[10,1] 0.0016260093031798 [GeV] +Cell[12,30] 0.0036639862033863 [GeV] +Cell[10,12] 0.00065168187254466 [GeV] +Cell[13,4] 0.00063156069887494 [GeV] +Cell[9,24] 0.0012541715966336 [GeV] +Cell[12,10] 0.00051099891 [GeV] +Cell[11,28] 0.0010262151489219 [GeV] +Cell[15,2] 0.00046873445653397 [GeV] +### Total energy deposition in calorimeter by a source track in 15 cells : 0.68184934756639 (GeV) -Source track ID 11351 (gamma,0.68389327451526[GeV]) at (-406.71457659348,-290.83200165454,428.61116138011) +Source track ID 11486 (gamma,0.23519569097121[GeV]) at (-263.70607900084,-424.80478328051,329.32758317624) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[13,26] 0.0010071806827882 [GeV] -Cell[13,29] 0.00046458145102157 [GeV] -Cell[12,28] 0.66270899966378 [GeV] -Cell[12,29] 0.012975309344792 [GeV] -Cell[15,2] 0.0019956968092897 [GeV] -Cell[14,9] 0.00084116835455583 [GeV] -Cell[13,23] 0.00046836356726494 [GeV] -Cell[12,25] 6.8803377497475e-05 [GeV] -Cell[12,27] 0.0013586254843459 [GeV] -Cell[12,26] 0.00020278762094478 [GeV] -Cell[11,14] 0.001056968105802 [GeV] -Cell[12,14] 0.00052691345409033 [GeV] -Cell[11,28] 0.00021787659908714 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 0.68389327451526 (GeV) +Cell[11,31] 0.21385412829446 [GeV] +Cell[11,32] 0.00098651790301828 [GeV] +Cell[12,32] 0.0057736237412441 [GeV] +Cell[12,31] 0.012645699271547 [GeV] +Cell[11,30] 0.0019357217609386 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.23519569097121 (GeV) -Source track ID 11352 (gamma,0.23519569097121[GeV]) at (-263.70586578196,-424.80491564033,329.3274204801) +Source track ID 11307 (proton,1.6978752622655[GeV]) at (-499.99001211032,3.1603464879358,255.32983593122) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[11,31] 0.2090199724784 [GeV] -Cell[13,27] 0.0011135284334093 [GeV] -Cell[11,32] 0.014509316717045 [GeV] -Cell[12,32] 0.0015973960419533 [GeV] -Cell[12,31] 0.0033921718706339 [GeV] -Cell[12,28] 0.0022381913985202 [GeV] -Cell[11,30] 0.0027919199406871 [GeV] -Cell[12,30] 0.0005331940905635 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.23519569097121 (GeV) +Cell[10,8] 0.002724094631374 [GeV] +Cell[11,6] 2.3010746197542e-05 [GeV] +Cell[11,29] 1.098101369962e-06 [GeV] +Cell[9,26] 2.6864068262512e-05 [GeV] +Cell[14,42] 0.00065110743937289 [GeV] +Cell[10,25] 0.00061845677633448 [GeV] +Cell[10,39] 1.3226227456471e-05 [GeV] +Cell[10,40] 0.0013956084133333 [GeV] +Cell[10,28] 2.3224966073485e-06 [GeV] +Cell[8,3] 1.3891063328174e-05 [GeV] +Cell[11,26] 5.7127914630087e-05 [GeV] +Cell[10,29] 3.7290050335059e-06 [GeV] +Cell[12,32] 0.0012536584330682 [GeV] +Cell[9,24] 0.0006196925922402 [GeV] +Cell[11,23] 0.40922938383501 [GeV] +Cell[12,23] 1.8055240066928e-05 [GeV] +Cell[11,24] 0.014255239664841 [GeV] +Cell[11,22] 0.0064988771875294 [GeV] +Cell[11,25] 0.011801913234892 [GeV] +Cell[10,24] 0.00016473315631242 [GeV] +Cell[11,21] 0.0054163883668528 [GeV] +Cell[9,22] 4.7439555055462e-06 [GeV] +Cell[8,2] 1.8478430138202e-05 [GeV] +Cell[10,9] 0.00049649032328834 [GeV] +Cell[11,9] 0.00052327697805673 [GeV] +Cell[11,8] 0.0037404745301371 [GeV] +Cell[14,6] 2.3710761946859e-05 [GeV] +Cell[14,22] 0.0012822889792853 [GeV] +Cell[15,13] 2.9183916933221e-05 [GeV] +Cell[14,13] 2.2861162619847e-08 [GeV] +Cell[14,12] 1.1833643259251e-07 [GeV] +Cell[10,21] 1.9856282960973e-08 [GeV] +Cell[11,5] 0.0030587366650274 [GeV] +Cell[11,4] 0.00015675085576777 [GeV] +Cell[11,3] 0.00025743908506047 [GeV] +Cell[12,4] 0.0019398602828367 [GeV] +Cell[12,33] 0.00049455563545721 [GeV] +Cell[11,33] 0.0011725713892506 [GeV] +Cell[11,34] 2.5987643311964e-08 [GeV] +Cell[11,43] 0.0012164007219068 [GeV] +Cell[4,37] 5.0641578854993e-07 [GeV] +Cell[2,7] 5.9019097903956e-05 [GeV] +Cell[2,6] 1.4161128201522e-06 [GeV] +Cell[4,35] 1.3864494476366e-06 [GeV] +Cell[4,34] 3.7628781683452e-08 [GeV] +Cell[12,1] 1.3692235399503e-05 [GeV] +Cell[12,47] 0.0012125420750448 [GeV] +Cell[12,46] 1.3830470278322e-05 [GeV] +Cell[10,23] 0.0065617432557359 [GeV] +Cell[12,24] 0.0021693509067293 [GeV] +Cell[10,22] 0.00011281292106306 [GeV] +Cell[12,22] 0.0032293411123191 [GeV] +Cell[10,26] 1.0806304431753e-05 [GeV] +Cell[9,25] 0.0008150448177851 [GeV] +### Total energy deposition in calorimeter by a source track in 54 cells : 0.48340515794976 (GeV) -Source track ID 11333 (proton,1.5796766823515[GeV]) at (-499.99644445239,1.8856126253665,217.78477397628) +Source track ID 11452 (pi-,0.45190315970639[GeV]) at (451.65111799794,-214.50237204098,41.540450638893) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[8,18] 0.0026166814919991 [GeV] -Cell[8,17] 0.00026453445522821 [GeV] -Cell[9,11] 0.00041998584288893 [GeV] -Cell[9,0] 1.5706485783085e-09 [GeV] -Cell[9,26] 0.0017408509846417 [GeV] -Cell[7,6] 8.9366526594858e-08 [GeV] -Cell[10,24] 0.0041793053892448 [GeV] -Cell[10,27] 0.0020742444443072 [GeV] -Cell[10,26] 0.011652611002488 [GeV] -Cell[10,1] 2.4735061801039e-05 [GeV] -Cell[8,20] 0.0017711390699505 [GeV] -Cell[4,47] 0.00032528525924329 [GeV] -Cell[10,6] 0.0011248597048655 [GeV] -Cell[10,30] 1.5998557722696e-06 [GeV] -Cell[9,29] 0.00010684870268233 [GeV] -Cell[10,31] 8.8764074607752e-06 [GeV] -Cell[9,23] 0.0027391460593669 [GeV] -Cell[13,27] 7.515546394643e-08 [GeV] -Cell[6,14] 6.8096508039162e-06 [GeV] -Cell[13,7] 0.00095365208086878 [GeV] -Cell[13,34] 0.00070196432004923 [GeV] -Cell[13,23] 9.5857976396019e-07 [GeV] -Cell[12,27] 0.00028315654528853 [GeV] -Cell[12,26] 0.0025582414172617 [GeV] -Cell[12,14] 0.0015147303881897 [GeV] -Cell[11,23] 0.2392567867111 [GeV] -Cell[11,24] 0.023616318879561 [GeV] -Cell[11,25] 0.0080307709716002 [GeV] -Cell[9,33] 1.2669268646277e-05 [GeV] -Cell[10,0] 6.4625491178845e-05 [GeV] -Cell[10,32] 2.2297697869362e-05 [GeV] -Cell[9,30] 0.00064129447673156 [GeV] -Cell[9,31] 9.4296410679817e-12 [GeV] -Cell[11,46] 0.0009841500993432 [GeV] -Cell[11,45] 0.00024507207350314 [GeV] -Cell[10,20] 1.3694058579858e-05 [GeV] -Cell[10,21] 3.450133340084e-05 [GeV] -Cell[3,45] 1.3032573478995e-05 [GeV] -Cell[1,13] 1.2344424176263e-05 [GeV] -Cell[1,14] 0.00023987488552302 [GeV] -Cell[0,13] 5.7860973386937e-05 [GeV] -Cell[0,14] 0.00081738892331509 [GeV] -Cell[0,15] 3.525645355694e-06 [GeV] -Cell[4,1] 0.0010026826460338 [GeV] -Cell[3,1] 0.00017748070624907 [GeV] -Cell[3,47] 3.2542006346148e-06 [GeV] -Cell[3,0] 5.6490676649901e-07 [GeV] -Cell[4,0] 1.569016603753e-09 [GeV] -Cell[10,23] 0.0056263204039289 [GeV] -Cell[11,22] 0.0076237581926203 [GeV] -Cell[12,35] 0.00091107347539059 [GeV] -Cell[12,36] 2.6509164308663e-05 [GeV] -Cell[13,35] 0.0018224996008536 [GeV] -Cell[12,34] 2.1438709809445e-06 [GeV] -Cell[13,22] 0.0006696365162145 [GeV] -Cell[14,24] 5.9686552094718e-07 [GeV] -Cell[14,23] 1.041693290631e-06 [GeV] -Cell[11,26] 0.0010022936213479 [GeV] -Cell[12,38] 0.0022523484365123 [GeV] -Cell[12,37] 0.0025374631265986 [GeV] -Cell[6,15] 5.8252757880837e-06 [GeV] -Cell[8,24] 0.00024653579692711 [GeV] -Cell[15,43] 7.2568118707181e-05 [GeV] -Cell[15,42] 2.4844429587688e-05 [GeV] -Cell[11,17] 3.4596351647451e-06 [GeV] -Cell[11,16] 1.5832483768463e-11 [GeV] -Cell[11,41] 0.00022556927046235 [GeV] -Cell[16,43] 1.947389790439e-05 [GeV] -Cell[7,45] 0.00094915465801976 [GeV] -Cell[5,21] 0.00061192904410506 [GeV] -Cell[12,22] 2.1127813622229e-05 [GeV] -Cell[12,23] 0.0020744590310443 [GeV] -Cell[10,22] 0.00048538330210067 [GeV] -Cell[8,19] 0.0011137846897313 [GeV] -Cell[6,6] 2.3829792472725e-05 [GeV] -Cell[9,39] 0.0019475506918025 [GeV] -Cell[12,6] 8.4906517295167e-06 [GeV] -Cell[13,8] 1.6430553796454e-07 [GeV] -Cell[12,13] 1.3075600634238e-07 [GeV] -Cell[13,14] 5.4776492106612e-09 [GeV] -Cell[12,21] 2.7362505079509e-09 [GeV] -Cell[11,27] 0.00096234537162872 [GeV] -Cell[9,24] 0.00114650542865 [GeV] -Cell[9,25] 0.00058083302214824 [GeV] -Cell[9,22] 3.053706893752e-08 [GeV] -Cell[9,47] 7.837307293812e-09 [GeV] -Cell[10,47] 1.0441557302556e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 87 cells : 0.34332131604223 (GeV) +Cell[9,10] 0.0021021493856045 [GeV] +Cell[8,13] 1.9402997248108e-05 [GeV] +Cell[9,9] 0.0056266926405409 [GeV] +Cell[10,8] 1.5075997715257e-05 [GeV] +Cell[9,7] 1.287685790885e-09 [GeV] +Cell[8,12] 0.0003796490812565 [GeV] +Cell[9,11] 1.4551915228367e-13 [GeV] +Cell[11,47] 1.0493562524516e-07 [GeV] +Cell[9,8] 0.00058149658291302 [GeV] +Cell[7,15] 0.00092174475094907 [GeV] +Cell[6,34] 6.049860996427e-06 [GeV] +Cell[7,25] 7.0568051793089e-05 [GeV] +Cell[7,26] 1.3732574938331e-05 [GeV] +Cell[6,26] 0.0010723781441197 [GeV] +Cell[6,25] 0.0033864013581692 [GeV] +Cell[10,40] 5.9889060821661e-09 [GeV] +Cell[5,25] 5.9103019884787e-07 [GeV] +Cell[9,44] 1.4373628857356e-05 [GeV] +Cell[11,31] 0.00011760811630063 [GeV] +Cell[12,32] 1.2102318316465e-05 [GeV] +Cell[12,31] 0.00023981593813824 [GeV] +Cell[10,6] 0.00025644974025977 [GeV] +Cell[13,26] 6.4571917755529e-07 [GeV] +Cell[14,25] 0.00066403192580887 [GeV] +Cell[10,4] 1.7429151921533e-07 [GeV] +Cell[10,1] 1.9456568406895e-07 [GeV] +Cell[12,30] 1.747007103404e-06 [GeV] +Cell[15,2] 0.00028386509334518 [GeV] +Cell[9,22] 3.3249140280532e-05 [GeV] +Cell[14,12] 1.1420069087762e-05 [GeV] +Cell[11,5] 5.0278141861781e-07 [GeV] +Cell[12,4] 0.00011983635106367 [GeV] +Cell[11,33] 8.4294343878355e-09 [GeV] +Cell[11,34] 1.2177734561192e-07 [GeV] +Cell[12,47] 8.5963322899261e-06 [GeV] +Cell[12,46] 4.2079958819841e-05 [GeV] +Cell[10,44] 0.037066396331047 [GeV] +Cell[10,45] 0.1692185285733 [GeV] +Cell[9,46] 0.0012646880420635 [GeV] +Cell[10,32] 8.6577923502773e-07 [GeV] +Cell[11,14] 5.9158079578992e-05 [GeV] +Cell[10,14] 7.888779360087e-06 [GeV] +Cell[10,47] 0.00059949323271383 [GeV] +Cell[14,26] 0.0013208342179137 [GeV] +Cell[14,27] 1.1258189333603e-06 [GeV] +Cell[9,16] 1.7574793659151e-05 [GeV] +Cell[10,10] 3.058770642383e-05 [GeV] +Cell[16,37] 0.00080787241568237 [GeV] +Cell[15,36] 2.5852156599285e-05 [GeV] +Cell[16,36] 5.5622839427087e-06 [GeV] +Cell[15,37] 5.538495228393e-06 [GeV] +Cell[15,1] 1.7859157685507e-07 [GeV] +Cell[9,15] 0.00082239876514905 [GeV] +Cell[10,46] 0.010038638648367 [GeV] +Cell[4,42] 1.7337094031973e-05 [GeV] +Cell[4,43] 1.1108843900729e-05 [GeV] +Cell[4,44] 1.8743109336356e-05 [GeV] +Cell[16,24] 3.4942192171002e-05 [GeV] +Cell[15,11] 0.0005081885309952 [GeV] +Cell[15,10] 0.00078501562082977 [GeV] +Cell[11,46] 0.00075602080877525 [GeV] +Cell[9,47] 0.0010330686456178 [GeV] +Cell[9,0] 0.00044360229509869 [GeV] +Cell[6,24] 1.6504114000782e-08 [GeV] +Cell[8,47] 8.6465837272044e-05 [GeV] +Cell[5,37] 7.3094150866382e-07 [GeV] +Cell[4,47] 7.5746190850623e-07 [GeV] +Cell[8,23] 4.7209534520675e-05 [GeV] +Cell[9,45] 7.3112160687288e-06 [GeV] +Cell[10,5] 6.6657091112575e-05 [GeV] +Cell[10,7] 2.4463126919727e-09 [GeV] +Cell[10,43] 0.0019980426790862 [GeV] +Cell[5,26] 3.2222367008217e-07 [GeV] +Cell[11,41] 4.9203376111109e-06 [GeV] +Cell[11,40] 4.1893447601069e-05 [GeV] +Cell[12,3] 2.8584446408786e-07 [GeV] +Cell[10,0] 1.3623802806251e-07 [GeV] +Cell[8,16] 8.4030616562814e-09 [GeV] +Cell[9,31] 5.4869742598385e-09 [GeV] +Cell[9,32] 4.6941568143666e-10 [GeV] +Cell[11,45] 0.0030958930436426 [GeV] +Cell[6,20] 2.2386828321032e-05 [GeV] +Cell[5,20] 0.0046353048560039 [GeV] +Cell[5,21] 0.0036684967343102 [GeV] +Cell[5,19] 9.1548551382743e-05 [GeV] +Cell[4,19] 2.0411913283169e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 86 cells : 0.25467249429289 (GeV) -Source track ID 11334 (neutron,0.97925443145385[GeV]) at (-490.07560484093,-99.125685570352,931.6150741952) +Source track ID 11453 (pi+,0.27064609787518[GeV]) at (-301.22744607228,-399.0764660222,-430.7843724603) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[2,31] 4.9366421991749e-05 [GeV] -Cell[2,30] 2.769484205146e-06 [GeV] -Cell[10,1] 1.9736709534754e-06 [GeV] -Cell[2,32] 1.0724499588832e-08 [GeV] -Cell[10,0] 2.0689993034466e-06 [GeV] -Cell[12,35] 4.8231994151138e-06 [GeV] -Cell[15,25] 0.0071611393914765 [GeV] -Cell[11,2] 1.7048188019544e-06 [GeV] -Cell[10,2] 0.00014306093851008 [GeV] -Cell[5,4] 4.9386377213523e-07 [GeV] -Cell[1,30] 7.935329904285e-11 [GeV] -Cell[1,31] 1.202862563332e-09 [GeV] -Cell[19,30] 1.7719334398862e-05 [GeV] -Cell[19,29] 6.5884818613995e-06 [GeV] -Cell[15,26] 4.6237540620496e-05 [GeV] -Cell[15,27] 1.1288986104773e-05 [GeV] -Cell[14,17] 0.00072691692108913 [GeV] -Cell[13,17] 1.093280319003e-05 [GeV] -Cell[13,18] 1.236041128368e-05 [GeV] -Cell[17,10] 0.0019116495462514 [GeV] -### Total energy deposition in calorimeter by a source track in 20 cells : 0.010111106819945 (GeV) +Cell[7,31] 0.026874005093583 [GeV] +Cell[7,30] 0.16042370505456 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.18729771014814 (GeV) -Source track ID 11335 (neutron,0.95272773821068[GeV]) at (-499.5194581376,-21.91599739729,177.59118311827) +Source track ID 11450 (gamma,0.030277472066976[GeV]) at (-262.61717472897,-425.47881208983,-249.93722879078) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[10,24] 0.004917123651209 [GeV] -Cell[11,25] 0.00046155027943348 [GeV] -Cell[11,26] 4.1557308887036e-05 [GeV] -Cell[9,22] 0.00039314082498993 [GeV] -Cell[9,21] 0.00052217194768434 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.0063355440122037 (GeV) +Cell[9,31] 0.00055732738445458 [GeV] +Cell[8,31] 0.029720144682522 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.030277472066976 (GeV) -Source track ID 11338 (gamma,0.00026983910895222[GeV]) at (-497.03221795087,54.396455020902,231.97299611366) +Source track ID 11451 (gamma,0.21817839651567[GeV]) at (494.37179956987,-74.809917725211,-128.26271925525) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[11,23] 0.00026983910895222 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00026983910895222 (GeV) +Cell[9,46] 0.022273879522718 [GeV] +Cell[9,47] 0.19036318775727 [GeV] +Cell[9,0] 0.0055413292356789 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.21817839651567 (GeV) -Source track ID 11339 (gamma,9.2998752475598e-05[GeV]) at (50.021654878731,-497.49154168005,814.74155071525) +Source track ID 11359 (pi-,0.61947578125273[GeV]) at (-469.60907620308,-171.66046588451,-293.55237800909) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[14,36] 9.2998752475598e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 9.2998752475598e-05 (GeV) +Cell[6,28] 2.4030427505295e-06 [GeV] +Cell[6,29] 2.2674995534544e-09 [GeV] +Cell[8,9] 4.0510152313118e-06 [GeV] +Cell[8,10] 0.0010052480141544 [GeV] +Cell[9,10] 1.4048875425942e-05 [GeV] +Cell[7,33] 7.5654975262296e-10 [GeV] +Cell[4,21] 3.6198204441462e-05 [GeV] +Cell[7,9] 1.4616701821524e-07 [GeV] +Cell[9,9] 0.00038914803469038 [GeV] +Cell[9,7] 0.0011866383732661 [GeV] +Cell[9,30] 2.7385705255938e-06 [GeV] +Cell[9,26] 0.0013760387056555 [GeV] +Cell[7,25] 9.7322568804429e-05 [GeV] +Cell[7,27] 0.00095563632813833 [GeV] +Cell[7,26] 0.004245581875857 [GeV] +Cell[7,28] 0.006100516435135 [GeV] +Cell[6,40] 0.00071295722282907 [GeV] +Cell[4,20] 0.00018009591842929 [GeV] +Cell[8,26] 0.20951208389136 [GeV] +Cell[9,28] 0.0009252873900889 [GeV] +Cell[10,25] 0.00076763432713332 [GeV] +Cell[9,33] 0.00040041799290168 [GeV] +Cell[8,29] 0.015794938143102 [GeV] +Cell[8,28] 0.0071793017618404 [GeV] +Cell[7,20] 0.00017387159277268 [GeV] +Cell[11,36] 1.5451398212463e-08 [GeV] +Cell[8,27] 0.013907329413702 [GeV] +Cell[7,18] 1.2785312719643e-10 [GeV] +Cell[7,17] 0.00019684878970429 [GeV] +Cell[10,36] 1.91502913367e-08 [GeV] +Cell[13,6] 1.4246255916078e-05 [GeV] +Cell[9,24] 1.7180067288791e-09 [GeV] +Cell[11,22] 8.038041414693e-09 [GeV] +Cell[11,25] 0.0010330698944412 [GeV] +Cell[10,24] 2.418219082756e-10 [GeV] +Cell[11,9] 0.0032006482137672 [GeV] +Cell[11,5] 3.7355505628511e-07 [GeV] +Cell[10,26] 0.00056499036310838 [GeV] +Cell[9,25] 0.00024338196773044 [GeV] +Cell[15,36] 3.6765995901078e-09 [GeV] +Cell[15,37] 9.4657298177481e-10 [GeV] +Cell[12,3] 9.6337642351045e-06 [GeV] +Cell[6,20] 6.2416410053174e-06 [GeV] +Cell[7,31] 0.0023443633550586 [GeV] +Cell[7,30] 0.0038411394609506 [GeV] +Cell[8,25] 0.0044080011020104 [GeV] +Cell[5,43] 2.4749577405601e-06 [GeV] +Cell[2,10] 2.3998338190268e-07 [GeV] +Cell[11,1] 4.8356887418777e-07 [GeV] +Cell[14,28] 1.3412128144978e-05 [GeV] +Cell[15,29] 2.2606996935906e-05 [GeV] +Cell[14,29] 2.2709284938855e-06 [GeV] +Cell[8,24] 0.00019723221612662 [GeV] +Cell[9,34] 5.471280842653e-05 [GeV] +Cell[6,1] 5.6979668675922e-05 [GeV] +Cell[3,40] 5.3535906452453e-05 [GeV] +Cell[2,40] 0.00011245581935509 [GeV] +Cell[2,41] 5.8526911627268e-05 [GeV] +Cell[2,39] 1.1712542822352e-05 [GeV] +Cell[2,23] 4.8666590533685e-05 [GeV] +Cell[2,28] 0.00035005335908318 [GeV] +Cell[3,28] 0.0006159205014701 [GeV] +Cell[2,29] 0.00070622309260045 [GeV] +Cell[3,29] 0.0013234948668859 [GeV] +Cell[9,27] 0.0017544090396604 [GeV] +Cell[10,27] 0.0021585155703234 [GeV] +Cell[11,37] 1.8215416639578e-06 [GeV] +Cell[11,38] 0.00015637793280098 [GeV] +Cell[10,37] 4.9399091728901e-06 [GeV] +Cell[10,31] 3.537253360264e-08 [GeV] +Cell[11,10] 7.4144014588455e-06 [GeV] +Cell[13,37] 0.00056716458910866 [GeV] +Cell[12,2] 5.5856615247194e-06 [GeV] +Cell[11,2] 2.6441703084856e-09 [GeV] +Cell[15,44] 6.0418377979659e-06 [GeV] +Cell[13,7] 0.00084037963866263 [GeV] +Cell[7,29] 0.004948347907628 [GeV] +Cell[6,31] 1.7378039223217e-05 [GeV] +Cell[6,32] 1.2572918193769e-05 [GeV] +Cell[7,32] 1.1256927211889e-06 [GeV] +Cell[6,30] 2.5403552399439e-09 [GeV] +Cell[6,21] 2.6256399669364e-06 [GeV] +Cell[6,46] 0.0014821881515837 [GeV] +Cell[6,45] 0.00042483139639887 [GeV] +Cell[9,29] 0.0012008379118398 [GeV] +Cell[8,30] 0.0042654330131298 [GeV] +### Total energy deposition in calorimeter by a source track in 86 cells : 0.30232165880042 (GeV) -Source track ID 11277 (anti_proton,1.0356943949006[GeV]) at (-279.53057132695,-414.56321555781,-336.04888622339) +Source track ID 11361 (pi+,0.24491772937007[GeV]) at (367.0829200119,-339.48509515962,-1105.3247813573) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[8,10] 7.6249578036141e-06 [GeV] -Cell[8,11] 0.0013929211450667 [GeV] -Cell[8,9] 0.00060034196640973 [GeV] -Cell[7,30] 0.0029194375268907 [GeV] -Cell[9,11] 5.8606470702216e-08 [GeV] -Cell[6,30] 0.00069882534109536 [GeV] -Cell[6,28] 6.2387696123778e-05 [GeV] -Cell[8,2] 0.035030028107387 [GeV] -Cell[8,31] 0.37844267732794 [GeV] -Cell[6,29] 2.7938274681674e-06 [GeV] -Cell[4,44] 0.0040023033605206 [GeV] -Cell[4,45] 0.27319683031146 [GeV] -Cell[15,39] 0.00062467798540214 [GeV] -Cell[8,34] 0.0024172035067517 [GeV] -Cell[4,47] 0.0021303155639409 [GeV] -Cell[3,43] 0.0014545573251944 [GeV] -Cell[9,36] 2.1248886274407e-05 [GeV] -Cell[6,41] 4.9727329286611e-05 [GeV] -Cell[7,29] 0.0050223128982596 [GeV] -Cell[6,31] 7.7081972558517e-06 [GeV] -Cell[7,31] 0.00350167635539 [GeV] -Cell[10,9] 6.5832020482048e-07 [GeV] -Cell[8,0] 0.0003039752763803 [GeV] -Cell[6,23] 0.00051099891 [GeV] -Cell[9,33] 0.00098903475991834 [GeV] -Cell[9,30] 8.6567504126833e-08 [GeV] -Cell[9,31] 2.635530245243e-08 [GeV] -Cell[3,45] 0.0078608490780604 [GeV] -Cell[0,15] 3.9341208175756e-06 [GeV] -Cell[4,1] 7.7651544302171e-08 [GeV] -Cell[3,47] 0.0013073828559347 [GeV] -Cell[4,0] 0.00041580745085662 [GeV] -Cell[5,21] 0.00042829396715265 [GeV] -Cell[7,32] 0.0048509424452224 [GeV] -Cell[7,33] 0.010079345530705 [GeV] -Cell[9,40] 1.7755825771019e-05 [GeV] -Cell[9,35] 0.00096878015087111 [GeV] -Cell[10,35] 4.2809397409997e-05 [GeV] -Cell[10,34] 2.6273903204128e-06 [GeV] -Cell[9,34] 1.6530975699425e-11 [GeV] -Cell[8,30] 0.18039667863557 [GeV] -Cell[8,32] 0.28829036165412 [GeV] -Cell[7,34] 0.0012905812350156 [GeV] -Cell[11,4] 0.00030957215460364 [GeV] -Cell[11,20] 0.0013991622170573 [GeV] -Cell[15,12] 0.00030009522656034 [GeV] -Cell[8,1] 0.0054142716767985 [GeV] -Cell[10,8] 2.3259867739398e-06 [GeV] -Cell[8,33] 0.0037596249460707 [GeV] -Cell[16,0] 0.23537272462372 [GeV] -Cell[17,25] 0.00051099891 [GeV] -Cell[15,33] 0.0005249917060088 [GeV] -Cell[16,1] 0.011326304890473 [GeV] -Cell[6,27] 0.0002239632106434 [GeV] -Cell[7,28] 6.894756309066e-07 [GeV] -Cell[4,46] 0.0065354340758361 [GeV] -Cell[3,46] 0.067573268168158 [GeV] -Cell[3,44] 0.0010326897763852 [GeV] -Cell[4,43] 0.0037442628354086 [GeV] -Cell[3,22] 1.0766309424071e-07 [GeV] -Cell[5,8] 0.00011043823326327 [GeV] -Cell[5,7] 0.00038578414868948 [GeV] -Cell[2,44] 0.00018397505535154 [GeV] -Cell[2,45] 0.0039373837575761 [GeV] -Cell[2,1] 1.0406150075141e-05 [GeV] -Cell[1,1] 0.000663337418884 [GeV] -Cell[0,1] 0.00044460177696317 [GeV] -Cell[1,2] 0.00054965634600455 [GeV] -Cell[0,2] 2.0393449517542e-08 [GeV] -Cell[2,47] 0.0010335242118512 [GeV] -Cell[5,0] 0.00026015043302812 [GeV] -Cell[5,1] 3.263891740778e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 72 cells : 1.5549890702034 (GeV) +Cell[4,42] 0.13213614041216 [GeV] +Cell[4,41] 0.011626048587971 [GeV] +Cell[3,41] 0.00087519258213294 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.14463738158226 (GeV) -Source track ID 11298 (gamma,0.37133215847831[GeV]) at (-133.93656067727,-481.72709879552,181.68248390089) +Source track ID 11362 (neutron,0.94404684688646[GeV]) at (-421.82144845646,-268.45235261047,-269.14707135045) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[6,13] 0.00013207648340543 [GeV] -Cell[10,33] 0.28039060640139 [GeV] -Cell[11,33] 0.062699566509347 [GeV] -Cell[11,27] 0.0016528359309472 [GeV] -Cell[10,34] 0.013162724729419 [GeV] -Cell[18,22] 0.0019866143308877 [GeV] -Cell[11,34] 0.010289145197121 [GeV] -Cell[11,10] 0.00038873407157244 [GeV] -Cell[11,9] 0.00012243231417218 [GeV] -Cell[11,35] 0.00011096456627217 [GeV] -Cell[10,36] 0.00020759469630541 [GeV] -### Total energy deposition in calorimeter by a source track in 11 cells : 0.37114329523084 (GeV) +Cell[8,28] 0.00092158549143385 [GeV] +Cell[8,0] 0.00069355604392706 [GeV] +Cell[8,3] 0.0028541061463555 [GeV] +Cell[8,1] 5.5107375374064e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.0044693027890918 (GeV) -Source track ID 11299 (gamma,0.136782797126[GeV]) at (-378.97238376205,-326.15936648472,68.392639976519) +Source track ID 11365 (neutron,0.94034369375949[GeV]) at (-452.39977122473,-212.91887421225,-110.59935352816) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[10,29] 0.13384850703224 [GeV] -Cell[9,28] 0.0024232911837615 [GeV] -Cell[10,28] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.136782797126 (GeV) +Cell[6,26] 2.9069761512801e-07 [GeV] +Cell[7,17] 3.2388957876833e-05 [GeV] +Cell[9,27] 0.00028672419952068 [GeV] +Cell[2,45] 0.00045710427396091 [GeV] +Cell[2,46] 1.8256299372297e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.00077833375891078 (GeV) -Source track ID 11280 (pi+,0.39483736706657[GeV]) at (-475.49617643021,-154.6071997038,240.38081678035) +Source track ID 11366 (gamma,0.00052816623409991[GeV]) at (-498.82511037525,-34.256521410093,281.76147979198) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[9,5] 0.00068560487173215 [GeV] -Cell[9,4] 2.4524889601025e-06 [GeV] -Cell[12,25] 0.0010275756036366 [GeV] -Cell[12,26] 0.00046036518715721 [GeV] -Cell[11,23] 0.0016405726493716 [GeV] -Cell[11,24] 0.11099134233846 [GeV] -Cell[11,25] 0.13365555664948 [GeV] -Cell[11,26] 0.063740076261237 [GeV] -Cell[12,23] 0.00059390850095679 [GeV] -Cell[11,10] 0.0004796025882689 [GeV] -Cell[12,24] 0.0030754847621707 [GeV] -Cell[9,3] 6.6554044686882e-06 [GeV] -Cell[11,11] 0.00072195361662227 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 0.31708115092252 (GeV) +Cell[11,24] 0.00052816623409991 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00052816623409991 (GeV) -Source track ID 11281 (pi-,0.89499581125074[GeV]) at (-156.50387688873,-474.87528522634,406.76931925896) +Source track ID 11367 (gamma,0.00015273356432965[GeV]) at (-350.9712186522,-356.11683992447,-220.88839737848) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[8,18] 0.0012795382627176 [GeV] -Cell[9,11] 0.00059325159695743 [GeV] -Cell[7,6] 6.895457499536e-05 [GeV] -Cell[10,24] 0.00076813830932613 [GeV] -Cell[6,45] 9.5781958953012e-06 [GeV] -Cell[6,31] 2.5171611923724e-09 [GeV] -Cell[11,32] 0.0022231025860178 [GeV] -Cell[12,32] 0.0084637264492064 [GeV] -Cell[13,32] 0.0017393850002379 [GeV] -Cell[13,31] 1.6526967965547e-07 [GeV] -Cell[12,31] 0.0011468510389451 [GeV] -Cell[11,33] 0.0034780578338687 [GeV] -Cell[13,15] 4.686153260991e-10 [GeV] -Cell[13,34] 0.058120344279608 [GeV] -Cell[14,37] 0.00058393213095076 [GeV] -Cell[12,2] 2.9196294462963e-08 [GeV] -Cell[12,25] 4.8530824831687e-05 [GeV] -Cell[11,30] 3.1605874168008e-06 [GeV] -Cell[12,30] 0.00027200640120861 [GeV] -Cell[11,23] 0.00061622537829367 [GeV] -Cell[11,25] 1.8157384911319e-05 [GeV] -Cell[10,0] 8.7350222165696e-06 [GeV] -Cell[10,23] 0.00015158161977297 [GeV] -Cell[12,35] 0.00033258006849644 [GeV] -Cell[12,36] 9.7619967934634e-05 [GeV] -Cell[13,35] 0.011901384684951 [GeV] -Cell[12,34] 0.076050567274584 [GeV] -Cell[12,37] 1.2241635122336e-05 [GeV] -Cell[10,22] 3.1195372275761e-07 [GeV] -Cell[13,14] 1.7957063391805e-11 [GeV] -Cell[11,2] 0.0028228951516734 [GeV] -Cell[13,17] 7.4385594716659e-05 [GeV] -Cell[14,36] 0.00073297331973845 [GeV] -Cell[11,34] 0.0069367865782591 [GeV] -Cell[11,35] 0.00059505289095023 [GeV] -Cell[12,33] 0.18536193077048 [GeV] -Cell[11,1] 0.00068933611187639 [GeV] -Cell[5,6] 1.8054901534924e-05 [GeV] -Cell[5,31] 1.3382307862457e-06 [GeV] -Cell[13,33] 0.014581304048698 [GeV] -Cell[15,7] 5.226667271927e-07 [GeV] -Cell[14,7] 6.2808293019771e-05 [GeV] -Cell[14,8] 3.5176831146373e-06 [GeV] -Cell[14,6] 8.5119972936809e-10 [GeV] -Cell[13,38] 0.00022967511907882 [GeV] -Cell[14,11] 0.0015709663735295 [GeV] -Cell[13,11] 1.0180522804148e-07 [GeV] -Cell[10,11] 4.2888589848644e-07 [GeV] -Cell[10,10] 1.3587404013379e-05 [GeV] -Cell[10,12] 0.00010937227813884 [GeV] -Cell[9,12] 0.00025270747765876 [GeV] -Cell[14,15] 4.300739529981e-07 [GeV] -Cell[14,14] 3.6246534364182e-08 [GeV] -Cell[15,15] 7.0275034090628e-08 [GeV] -Cell[7,5] 1.7208053833428e-06 [GeV] -Cell[13,42] 0.0011572759095332 [GeV] -Cell[15,14] 0.00039323392233484 [GeV] -Cell[17,9] 0.00060434124381993 [GeV] -Cell[17,8] 1.2366139324058e-05 [GeV] -Cell[16,5] 0.0010965063229876 [GeV] -Cell[15,9] 0.0016930545685603 [GeV] -Cell[12,1] 4.8942155217446e-09 [GeV] -Cell[12,17] 7.5156278915529e-05 [GeV] -Cell[12,18] 5.2212199079804e-06 [GeV] -Cell[13,16] 0.00022901728288934 [GeV] -Cell[14,35] 0.0011994017725605 [GeV] -Cell[14,34] 0.00041023511124104 [GeV] -Cell[13,36] 0.023049039610297 [GeV] -Cell[15,36] 0.00011267948235547 [GeV] -Cell[13,37] 4.2177594309578e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 70 cells : 0.41208574030566 (GeV) +Cell[8,30] 0.00015273356432965 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00015273356432965 (GeV) -Source track ID 11270 (gamma,0.032559394638405[GeV]) at (-498.62850976201,-37.008232226344,-1796.9979074348) +Source track ID 11368 (gamma,8.6523380193532e-05[GeV]) at (-489.17247690511,-103.49052052491,-723.07666334843) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[6,25] 8.6523380193532e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 8.6523380193532e-05 (GeV) + +Source track ID 11350 (neutron,0.94329086622439[GeV]) at (-407.70258636182,-289.44533348092,-92.108094885551) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[9,30] 0.0034727562616117 [GeV] +Cell[9,28] 0.00016395388109049 [GeV] +Cell[9,31] 6.2665145946994e-08 [GeV] +Cell[9,29] 1.0199978843957e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.0036469727866921 (GeV) + +Source track ID 11351 (neutron,0.94038526655418[GeV]) at (-473.11354147796,161.75159000821,-304.69199236031) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[7,27] 9.7689449057725e-07 [GeV] +Cell[3,28] 1.9680534023792e-08 [GeV] +Cell[8,21] 0.00081857471236242 [GeV] +Cell[4,5] 6.138879689388e-08 [GeV] +Cell[4,4] 2.4726672563702e-08 [GeV] +Cell[4,6] 2.1024112356827e-08 [GeV] +Cell[2,27] 2.3055035853758e-08 [GeV] +Cell[3,27] 6.1260332586244e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.00081976274233728 (GeV) + +Source track ID 11352 (gamma,0.00019891753459734[GeV]) at (486.16618545096,116.80085669232,-842.64122605155) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[5,1] 0.00019891753459734 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00019891753459734 (GeV) + +Source track ID 11353 (gamma,0.0045589713607505[GeV]) at (-338.58945119125,367.90920556845,-795.28295112636) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[5,17] 0.0045589713607505 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.0045589713607505 (GeV) + +Source track ID 11354 (gamma,0.0021306168529282[GeV]) at (-442.33429136175,233.11022003656,-767.19802887523) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[6,20] 0.0021306168529282 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.0021306168529282 (GeV) + +Source track ID 11355 (gamma,0.0043490592191237[GeV]) at (-263.79913591217,-424.7470022166,-270.74575300488) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[8,31] 0.0043490592191237 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.0043490592191237 (GeV) + +Source track ID 11356 (gamma,0.002744980480673[GeV]) at (-452.48390326757,-212.74002275957,368.40568125783) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[11,27] 0.002744980480673 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.002744980480673 (GeV) + +Source track ID 11357 (gamma,0.0013630949766026[GeV]) at (241.39916632113,437.86578137537,-396.9058974139) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[8,8] 0.0013630949766026 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.0013630949766026 (GeV) + +Source track ID 11328 (gamma,0.37133215847831[GeV]) at (-133.93656217983,-481.72709837775,181.68248343666) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[11,32] 0.00057019409239618 [GeV] +Cell[11,33] 0.068294483833698 [GeV] +Cell[11,34] 0.01196920839336 [GeV] +Cell[10,32] 0.0024621477948471 [GeV] +Cell[10,33] 0.27027060834623 [GeV] +Cell[10,34] 0.0167229702034 [GeV] +Cell[12,35] 0.00025224779643049 [GeV] +Cell[10,35] 0.00048475019819631 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.37102661065856 (GeV) + +Source track ID 11329 (gamma,0.136782797126[GeV]) at (-378.97238114212,-326.15936952887,68.392641781324) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[10,28] 0.015563656838057 [GeV] +Cell[10,29] 0.11731885293237 [GeV] +Cell[9,16] 0.0014093758028973 [GeV] +Cell[10,33] 0.0024909115526771 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.136782797126 (GeV) + +Source track ID 11311 (pi+,0.39381255726278[GeV]) at (-477.75927219491,-147.46551404239,247.70938647134) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[7,10] 0.0012953806721169 [GeV] +Cell[8,13] 2.6847721223021e-05 [GeV] +Cell[7,9] 2.4230212147813e-10 [GeV] +Cell[10,39] 0.00050871352759577 [GeV] +Cell[11,26] 0.097695335521907 [GeV] +Cell[11,31] 0.00035641884662562 [GeV] +Cell[11,32] 0.0025253611788177 [GeV] +Cell[12,31] 3.1160507725303e-05 [GeV] +Cell[13,26] 0.00039804633740096 [GeV] +Cell[12,28] 5.132296559168e-06 [GeV] +Cell[12,27] 2.8496087470558e-06 [GeV] +Cell[12,29] 0.049432611219788 [GeV] +Cell[12,30] 0.0055784473053832 [GeV] +Cell[11,28] 0.00029805902844964 [GeV] +Cell[11,24] 2.2281262955062e-05 [GeV] +Cell[11,25] 0.0020226314116715 [GeV] +Cell[10,26] 2.8978742966501e-07 [GeV] +Cell[9,15] 0.0002287632978208 [GeV] +Cell[10,27] 0.0002879840969623 [GeV] +Cell[12,2] 3.0662849894725e-07 [GeV] +Cell[4,4] 6.718497374095e-06 [GeV] +Cell[11,27] 0.0031639912860321 [GeV] +Cell[10,35] 5.5674370814813e-05 [GeV] +Cell[8,14] 0.0007968664200107 [GeV] +Cell[5,4] 0.00097707845175114 [GeV] +Cell[4,3] 5.5183903528928e-05 [GeV] +Cell[4,2] 0.00072483717190244 [GeV] +Cell[9,41] 5.1377882016823e-05 [GeV] +Cell[8,34] 1.4739461573754e-07 [GeV] +Cell[8,35] 8.0384290868096e-10 [GeV] +Cell[13,19] 0.0010795505592783 [GeV] +Cell[9,40] 0.00073932650154711 [GeV] +Cell[13,2] 0.010047209169625 [GeV] +Cell[14,3] 2.460058340148e-09 [GeV] +Cell[13,3] 1.703369889583e-12 [GeV] +Cell[13,1] 0.015129327395831 [GeV] +Cell[14,1] 0.00089670234023579 [GeV] +Cell[14,2] 0.0063075717444959 [GeV] +Cell[12,26] 0.028086514516077 [GeV] +Cell[13,30] 0.00069263474462418 [GeV] +Cell[13,29] 0.0005472680628842 [GeV] +### Total energy deposition in calorimeter by a source track in 41 cells : 0.23007460417823 (GeV) + +Source track ID 11312 (pi-,0.89499772809866[GeV]) at (-157.4895732273,-474.54929599008,409.41675484986) +Original primary track ID 2 (unknown,2.8798399642419[GeV]) +Cell[9,13] 0.001568708095175 [GeV] +Cell[11,6] 0.00045271213315391 [GeV] +Cell[8,28] 8.5774360923097e-07 [GeV] +Cell[8,0] 5.4868048570029e-05 [GeV] +Cell[11,36] 0.0042456602800921 [GeV] +Cell[1,33] 1.966005685972e-05 [GeV] +Cell[7,18] 4.3563288636506e-07 [GeV] +Cell[10,36] 6.0623432538819e-05 [GeV] +Cell[11,32] 0.00032830942945475 [GeV] +Cell[12,32] 0.16679406101716 [GeV] +Cell[13,32] 9.3024573288858e-10 [GeV] +Cell[18,13] 9.7421815713915e-05 [GeV] +Cell[13,4] 0.0032096651368228 [GeV] +Cell[11,5] 0.00060371796056436 [GeV] +Cell[12,33] 0.49252714151772 [GeV] +Cell[11,33] 0.0046174628382582 [GeV] +Cell[11,34] 0.0041680375636661 [GeV] +Cell[10,22] 1.0535438690567e-05 [GeV] +Cell[10,27] 1.137188373832e-06 [GeV] +Cell[11,37] 3.0971382329881e-09 [GeV] +Cell[10,37] 5.6947465054691e-09 [GeV] +Cell[6,21] 0.00038720621203578 [GeV] +Cell[8,1] 1.4244730118662e-07 [GeV] +Cell[10,33] 6.7549001299767e-06 [GeV] +Cell[10,34] 0.0019248757933237 [GeV] +Cell[12,35] 0.0048020473180884 [GeV] +Cell[9,41] 9.3257761927362e-05 [GeV] +Cell[12,34] 0.0099658125915347 [GeV] +Cell[18,27] 6.0753683210351e-06 [GeV] +Cell[19,39] 0.00031873813816469 [GeV] +Cell[18,7] 4.6420181670328e-05 [GeV] +Cell[17,46] 8.9188520951552e-05 [GeV] +Cell[17,45] 3.0565677661798e-08 [GeV] +Cell[18,45] 1.069500142421e-07 [GeV] +Cell[18,46] 1.606152113709e-08 [GeV] +Cell[19,38] 8.6545187918091e-05 [GeV] +Cell[12,9] 5.3917424811516e-06 [GeV] +Cell[9,42] 0.00018118330475306 [GeV] +Cell[13,5] 0.00069539873065366 [GeV] +Cell[3,1] 8.5027101245942e-05 [GeV] +Cell[4,18] 3.6396713723661e-05 [GeV] +Cell[3,18] 6.1037053528707e-06 [GeV] +Cell[3,20] 0.0033128044969081 [GeV] +Cell[3,21] 3.4080585464835e-11 [GeV] +Cell[17,5] 1.9138835777994e-06 [GeV] +Cell[17,4] 6.5111752774101e-06 [GeV] +Cell[18,14] 2.3115622184378e-07 [GeV] +Cell[17,14] 6.7247242441226e-11 [GeV] +Cell[17,13] 1.4018280580785e-10 [GeV] +Cell[13,33] 0.0075363146730787 [GeV] +Cell[11,35] 0.0088841803780107 [GeV] +Cell[5,5] 0.0016751931765452 [GeV] +Cell[12,36] 2.9871702054152e-09 [GeV] +Cell[12,37] 1.5123351886359e-09 [GeV] +Cell[6,9] 1.17083376972e-06 [GeV] +Cell[7,1] 8.4677140133635e-06 [GeV] +Cell[7,0] 2.2846734304949e-07 [GeV] +Cell[4,15] 4.9067521758843e-06 [GeV] +Cell[0,33] 0.00011923449418646 [GeV] +Cell[1,34] 1.1047555917571e-05 [GeV] +Cell[1,35] 0.0009274039745086 [GeV] +Cell[11,7] 4.8861671141822e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 62 cells : 0.72003621949192 (GeV) + +Source track ID 11301 (gamma,0.032559394638405[GeV]) at (-498.62851114553,-37.008213585492,-1796.9984131748) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,24] 0.030108695839771 [GeV] -Cell[0,37] 0.00051099891 [GeV] -Cell[0,23] 0.0014287009786339 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.032048395728405 (GeV) +Cell[1,44] 0.00038875061703686 [GeV] +Cell[1,24] 0.00045229029861484 [GeV] +Cell[0,24] 0.031718353722754 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.032559394638405 (GeV) -Source track ID 11246 (pi+,0.77707525149562[GeV]) at (-481.23491504708,135.69434969678,-1803.0587384877) +Source track ID 11288 (pi+,0.77713653711371[GeV]) at (-480.20692235192,139.28859151165,-1799.7935475857) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,21] 0.23243915773614 [GeV] -Cell[2,9] 0.00083022231048471 [GeV] -Cell[0,22] 0.00043228063063853 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.23370166067726 (GeV) +Cell[6,6] 0.0011984444404634 [GeV] +Cell[5,24] 5.1563807890034e-06 [GeV] +Cell[6,8] 1.1178285523783e-05 [GeV] +Cell[9,44] 0.0022021844082444 [GeV] +Cell[9,43] 0.0058922996916458 [GeV] +Cell[10,43] 6.7114490192353e-06 [GeV] +Cell[2,40] 3.4668960724957e-06 [GeV] +Cell[2,41] 3.6258276668377e-07 [GeV] +Cell[2,46] 2.8371486114338e-06 [GeV] +Cell[9,41] 3.1466720429307e-09 [GeV] +Cell[9,42] 2.0473221789416e-05 [GeV] +Cell[1,24] 2.6200589900327e-08 [GeV] +Cell[0,24] 0.0033286326828739 [GeV] +Cell[1,21] 0.00024105348859365 [GeV] +Cell[0,21] 0.31351677239869 [GeV] +Cell[0,20] 0.010836370397218 [GeV] +Cell[0,19] 0.0010139398762689 [GeV] +Cell[0,22] 0.048322238576484 [GeV] +Cell[1,23] 0.0019447097645405 [GeV] +Cell[0,23] 0.00037044109598571 [GeV] +Cell[4,23] 8.6424674250679e-05 [GeV] +Cell[5,23] 4.3905745542361e-08 [GeV] +Cell[1,20] 0.0013943708637136 [GeV] +Cell[8,43] 1.5043807507027e-05 [GeV] +Cell[8,44] 8.7109970627353e-06 [GeV] +Cell[1,22] 8.9278592494225e-05 [GeV] +Cell[0,6] 0.00025936121568088 [GeV] +Cell[0,5] 0.0008882099113398 [GeV] +Cell[0,4] 1.227599568665e-10 [GeV] +Cell[1,31] 1.3629155815579e-05 [GeV] +Cell[6,5] 4.1442566333558e-05 [GeV] +Cell[6,7] 1.527622712274e-07 [GeV] +Cell[2,13] 1.3570633891504e-05 [GeV] +Cell[2,12] 2.1479782648385e-05 [GeV] +Cell[0,26] 0.0008266498342328 [GeV] +Cell[0,25] 0.00082805835271279 [GeV] +Cell[0,10] 9.1550351520027e-05 [GeV] +Cell[0,9] 6.7716210310209e-05 [GeV] +Cell[0,18] 0.00048503892710528 [GeV] +Cell[2,33] 2.348765093484e-05 [GeV] +Cell[3,2] 6.3792557048146e-06 [GeV] +Cell[1,19] 0.00038449843821718 [GeV] +Cell[0,7] 1.0351650416851e-09 [GeV] +### Total energy deposition in calorimeter by a source track in 43 cells : 0.39446240118026 (GeV) -Source track ID 11243 (gamma,1.9015972345341[GeV]) at (-363.22356457906,343.61117871001,-955.17212154506) +Source track ID 11285 (gamma,1.9015972345341[GeV]) at (-363.22356463351,343.61117865245,-955.17208655004) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,39] 0.00043336217915249 [GeV] -Cell[4,31] 0.010859454713339 [GeV] -Cell[6,45] 0.00050128591040534 [GeV] -Cell[3,26] 0.00051099891 [GeV] -Cell[7,33] 0.00051099891 [GeV] -Cell[3,46] 0.0040536774400857 [GeV] -Cell[2,47] 0.00054813325327221 [GeV] -Cell[5,31] 0.00045029270636575 [GeV] -Cell[5,18] 0.97274472891789 [GeV] -Cell[1,44] 0.00040555961324957 [GeV] -Cell[5,19] 0.00072140819885506 [GeV] -Cell[4,18] 0.74276740189139 [GeV] -Cell[4,6] 0.00063641101662024 [GeV] -Cell[4,17] 0.1088832272176 [GeV] -Cell[3,18] 2.9170762078138e-05 [GeV] -Cell[3,19] 0.0010569538642621 [GeV] -Cell[5,17] 0.018178949114883 [GeV] -Cell[5,35] 0.00047267134215835 [GeV] -Cell[0,3] 0.00071977662071659 [GeV] -Cell[0,32] 0.00066489193918001 [GeV] -Cell[5,34] 0.0003984625946735 [GeV] -Cell[1,27] 0.0016621681869242 [GeV] -Cell[5,45] 0.0020225765258093 [GeV] -Cell[8,40] 0.00041584628091621 [GeV] -Cell[2,7] 0.0012639831003756 [GeV] -Cell[5,16] 0.0080313668282861 [GeV] -Cell[8,39] 0.0010829350711002 [GeV] -Cell[8,38] 0.00025372296513923 [GeV] -Cell[1,43] 0.00056413660839481 [GeV] -Cell[1,42] 0.0018293402722496 [GeV] -Cell[4,19] 0.00034646737721196 [GeV] -Cell[4,15] 0.00016139568563889 [GeV] -Cell[3,23] 0.0028687539112465 [GeV] -### Total energy deposition in calorimeter by a source track in 33 cells : 1.8860505099295 (GeV) +Cell[3,6] 1.045991666615e-10 [GeV] +Cell[4,11] 0.00097149160893142 [GeV] +Cell[4,12] 0.00063169255261468 [GeV] +Cell[7,35] 0.00046198589418151 [GeV] +Cell[6,47] 0.00051099891 [GeV] +Cell[7,12] 0.0010792141816971 [GeV] +Cell[1,25] 0.0020587732821526 [GeV] +Cell[8,41] 0.00070506921262416 [GeV] +Cell[8,40] 0.0022612789405527 [GeV] +Cell[6,6] 0.00051099891 [GeV] +Cell[2,38] 0.0022853285159569 [GeV] +Cell[5,47] 0.0028447038938552 [GeV] +Cell[6,8] 0.000717708934447 [GeV] +Cell[9,44] 0.00047594104930283 [GeV] +Cell[6,39] 0.00042498301965006 [GeV] +Cell[4,43] 0.00032632718665318 [GeV] +Cell[5,19] 0.0012744483877895 [GeV] +Cell[4,19] 0.011742280353567 [GeV] +Cell[5,43] 0.0013365112284856 [GeV] +Cell[2,10] 0.0022082132208144 [GeV] +Cell[6,1] 0.0015541600432873 [GeV] +Cell[3,40] 0.00025753751217097 [GeV] +Cell[4,5] 1.9541475921869e-07 [GeV] +Cell[5,17] 0.02766350985805 [GeV] +Cell[4,2] 0.00043007631675608 [GeV] +Cell[4,18] 0.31897437322336 [GeV] +Cell[7,1] 0.0036632011180576 [GeV] +Cell[4,23] 0.0034936725127785 [GeV] +Cell[0,6] 0.00073682803319796 [GeV] +Cell[0,5] 0.00026530823868483 [GeV] +Cell[5,18] 1.3927758843489 [GeV] +Cell[5,34] 0.0028211098046894 [GeV] +Cell[6,44] 0.0010327137603626 [GeV] +Cell[4,16] 0.0018368429557183 [GeV] +Cell[4,17] 0.052589599579239 [GeV] +Cell[4,26] 0.011063980808002 [GeV] +Cell[5,9] 0.00037723475860093 [GeV] +Cell[1,42] 0.00033097934093109 [GeV] +Cell[3,17] 0.0045430112903793 [GeV] +Cell[2,35] 0.00054311507307368 [GeV] +Cell[5,14] 0.00027340895050475 [GeV] +Cell[5,39] 0.00031043021958316 [GeV] +Cell[3,43] 0.0015531629950091 [GeV] +Cell[3,5] 5.1590425649806e-05 [GeV] +Cell[8,32] 0.0004285874913103 [GeV] +Cell[5,10] 0.0010519281039969 [GeV] +Cell[3,44] 0.0006671023729648 [GeV] +Cell[2,42] 0.00043968157027109 [GeV] +Cell[4,25] 0.0008460613626341 [GeV] +Cell[2,3] 0.00048535022361524 [GeV] +Cell[4,32] 0.00059686540878247 [GeV] +Cell[5,2] 0.00048311623211907 [GeV] +Cell[6,38] 0.00069640359282133 [GeV] +Cell[1,2] 0.00044010312008719 [GeV] +Cell[1,0] 0.001252176405092 [GeV] +Cell[2,44] 0.0019774524115991 [GeV] +Cell[6,27] 0.00051099891 [GeV] +Cell[7,2] 0.0022677125572841 [GeV] +Cell[4,27] 0.0031168382830833 [GeV] +Cell[5,16] 0.004785814380818 [GeV] +### Total energy deposition in calorimeter by a source track in 60 cells : 1.8800160683961 (GeV) -Source track ID 11223 (pi-,4.4333055942746[GeV]) at (-407.23317276595,290.1053998101,-1898.6951059079) +Source track ID 11249 (e-,0.0011494282257855[GeV]) at (411.19633011609,-284.46015204077,-1306.531604591) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,19] 0.16791449314757 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.16791449314757 (GeV) +Cell[3,43] 0.00063842931578546 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00063842931578546 (GeV) -Source track ID 11214 (e-,0.00063807743006673[GeV]) at (-457.17880889077,202.45378905128,-1539.1185817318) +Source track ID 11241 (pi-,4.4323774254275[GeV]) at (-407.53914392194,289.67541520014,-1898.3565115894) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[2,20] 9.8156748923174e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 9.8156748923174e-05 (GeV) +Cell[3,6] 8.5348270151826e-06 [GeV] +Cell[4,9] 0.0025546517931947 [GeV] +Cell[9,44] 0.00010281768239111 [GeV] +Cell[4,37] 2.8507054201327e-05 [GeV] +Cell[2,7] 0.00024353223268577 [GeV] +Cell[2,6] 9.4503771379095e-08 [GeV] +Cell[4,44] 0.02214453685417 [GeV] +Cell[4,47] 7.7036007714923e-06 [GeV] +Cell[2,45] 0.0032651564284006 [GeV] +Cell[2,46] 0.0010389628596405 [GeV] +Cell[0,21] 0.0051016297687376 [GeV] +Cell[0,20] 0.010865266197648 [GeV] +Cell[0,19] 0.91060920205832 [GeV] +Cell[0,22] 0.011804615347718 [GeV] +Cell[0,23] 0.00078064210598779 [GeV] +Cell[1,22] 0.00045585624176181 [GeV] +Cell[0,5] 0.00032409614057957 [GeV] +Cell[0,4] 0.0012489080607957 [GeV] +Cell[6,7] 4.7706639161333e-06 [GeV] +Cell[0,9] 7.9429003858422e-07 [GeV] +Cell[0,18] 0.037476950535163 [GeV] +Cell[2,33] 5.0537027589144e-06 [GeV] +Cell[3,2] 1.8291652850166e-09 [GeV] +Cell[1,19] 2.3197324026114e-09 [GeV] +Cell[0,7] 0.00038596402835799 [GeV] +Cell[1,42] 4.9344044589361e-07 [GeV] +Cell[2,35] 5.9958766505588e-06 [GeV] +Cell[3,43] 5.8936476455074e-07 [GeV] +Cell[3,5] 0.0077135093602694 [GeV] +Cell[3,44] 0.0035102481731954 [GeV] +Cell[2,42] 0.000653689413954 [GeV] +Cell[2,3] 3.4499172215874e-08 [GeV] +Cell[2,44] 0.0078967915289558 [GeV] +Cell[0,8] 0.0011568390439516 [GeV] +Cell[1,18] 0.00015835258600771 [GeV] +Cell[1,17] 0.00048002564883404 [GeV] +Cell[1,16] 6.0227664562262e-09 [GeV] +Cell[3,11] 0.0012973744892486 [GeV] +Cell[3,10] 6.7731798626482e-06 [GeV] +Cell[3,12] 0.0066573346116811 [GeV] +Cell[0,17] 0.0011720830753022 [GeV] +Cell[1,8] 0.02808289135613 [GeV] +Cell[1,7] 3.1249349841232e-05 [GeV] +Cell[2,8] 2.2560792027775e-05 [GeV] +Cell[1,9] 0.0017616268126453 [GeV] +Cell[1,10] 9.3874984724835e-05 [GeV] +Cell[3,4] 0.0028375609292539 [GeV] +Cell[3,3] 5.5907914429554e-08 [GeV] +Cell[2,4] 0.00099520708681746 [GeV] +Cell[2,5] 0.0026066465933761 [GeV] +Cell[4,7] 1.4386128327715e-08 [GeV] +Cell[0,37] 0.00019383474294693 [GeV] +Cell[0,36] 2.5357208018022e-06 [GeV] +Cell[0,15] 4.8982302200784e-07 [GeV] +Cell[0,11] 4.5769024106789e-05 [GeV] +Cell[0,12] 2.615690974153e-06 [GeV] +Cell[0,0] 0.0036803525812348 [GeV] +Cell[3,33] 3.5607196332421e-06 [GeV] +Cell[5,7] 9.4368997961283e-06 [GeV] +Cell[5,8] 4.1899837132974e-05 [GeV] +Cell[3,34] 0.0010766334837404 [GeV] +Cell[3,32] 3.9158181493804e-08 [GeV] +Cell[3,35] 0.0002002691186251 [GeV] +Cell[1,46] 0.0094865912785726 [GeV] +Cell[0,43] 0.00030356449416408 [GeV] +Cell[0,42] 0.0015394495480369 [GeV] +Cell[1,45] 0.0029352473445166 [GeV] +Cell[1,47] 0.0018263912489024 [GeV] +Cell[2,47] 2.609963381758e-05 [GeV] +Cell[2,43] 0.0022772055365016 [GeV] +Cell[3,45] 0.00098508846477466 [GeV] +Cell[0,39] 0.00034640159606117 [GeV] +### Total energy deposition in calorimeter by a source track in 72 cells : 1.1005835555864 (GeV) -Source track ID 11188 (pi+,1.2124541538053[GeV]) at (-449.28755315655,219.40987803334,-1909.4730205188) +Source track ID 11209 (pi+,1.2126746359266[GeV]) at (-482.82359647339,129.92834443839,-1839.7664106231) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,33] 0.00023360672162904 [GeV] -Cell[1,23] 0.0022248327378555 [GeV] -Cell[1,13] 8.541531892115e-05 [GeV] -Cell[1,14] 0.0021346359525513 [GeV] -Cell[0,13] 0.0027256273870023 [GeV] -Cell[0,14] 0.0012301626601848 [GeV] -Cell[0,15] 5.0213112035635e-07 [GeV] -Cell[9,39] 0.00026538162286718 [GeV] -Cell[0,23] 0.00054424287466327 [GeV] -Cell[0,21] 0.010048267377773 [GeV] -Cell[0,22] 0.004921212224704 [GeV] -Cell[0,32] 0.00058728002091782 [GeV] -Cell[0,19] 0.0011864140788871 [GeV] -Cell[0,20] 0.25624233831976 [GeV] -Cell[0,18] 1.6665983366693e-09 [GeV] -Cell[0,46] 0.00020365982584735 [GeV] -Cell[0,47] 0.0004563749164339 [GeV] -Cell[3,27] 0.001007482032935 [GeV] -Cell[0,12] 0.0019750734338679 [GeV] -Cell[1,15] 8.5673942737685e-07 [GeV] -Cell[2,13] 6.4462524605915e-06 [GeV] -Cell[1,33] 0.00038562981074202 [GeV] -Cell[1,22] 0.00020871847413946 [GeV] -Cell[1,20] 0.00042443146117319 [GeV] -Cell[1,21] 0.00049488897114634 [GeV] -Cell[0,42] 2.3223729105666e-05 [GeV] -Cell[0,43] 0.00055220623632329 [GeV] -Cell[4,12] 0.0011733318061643 [GeV] -### Total energy deposition in calorimeter by a source track in 28 cells : 0.28934224478521 (GeV) +Cell[2,21] 2.6939640520141e-08 [GeV] +Cell[2,6] 1.1973469547684e-06 [GeV] +Cell[2,46] 8.076520389227e-05 [GeV] +Cell[1,24] 0.00056561544592989 [GeV] +Cell[0,24] 0.027550520644254 [GeV] +Cell[1,21] 0.0022410698726452 [GeV] +Cell[0,21] 0.34500121403199 [GeV] +Cell[0,20] 0.001737833683776 [GeV] +Cell[0,22] 0.099826788276076 [GeV] +Cell[1,23] 0.0036652202880242 [GeV] +Cell[0,23] 0.0063259198680059 [GeV] +Cell[1,20] 0.00024666776633132 [GeV] +Cell[1,22] 0.0043635289696285 [GeV] +Cell[1,31] 1.0758958524093e-08 [GeV] +Cell[0,25] 0.0002406550983336 [GeV] +Cell[3,2] 0.00026282083397784 [GeV] +Cell[1,19] 0.0028131278445017 [GeV] +Cell[5,14] 0.0013905472681763 [GeV] +Cell[2,3] 0.0021300676295412 [GeV] +Cell[1,18] 3.8212563586171e-05 [GeV] +Cell[1,7] 0.0018716900899848 [GeV] +Cell[2,5] 2.3638887796551e-08 [GeV] +Cell[3,33] 3.8999132812023e-12 [GeV] +Cell[3,32] 1.7332164024879e-05 [GeV] +Cell[1,47] 4.9407742380936e-08 [GeV] +Cell[2,47] 0.0031198704035858 [GeV] +Cell[1,6] 0.00031615355633699 [GeV] +Cell[1,5] 1.8573746988295e-06 [GeV] +Cell[1,32] 0.0022599047164219 [GeV] +Cell[2,19] 6.7506107370718e-11 [GeV] +Cell[1,26] 3.9418013882823e-05 [GeV] +Cell[0,46] 1.2967924703844e-08 [GeV] +Cell[4,31] 1.9972113977929e-05 [GeV] +Cell[4,30] 2.016507778535e-08 [GeV] +Cell[0,27] 6.9823106285185e-05 [GeV] +Cell[5,42] 0.0023425082446599 [GeV] +Cell[5,41] 0.0016184051566167 [GeV] +Cell[2,16] 8.0638876534067e-06 [GeV] +Cell[3,16] 0.001749484861674 [GeV] +Cell[3,15] 0.00011017623251337 [GeV] +Cell[2,20] 5.8590347180143e-08 [GeV] +Cell[2,22] 3.7387653719634e-08 [GeV] +Cell[2,32] 7.3713763890737e-07 [GeV] +Cell[2,2] 0.0028026256337731 [GeV] +Cell[4,0] 0.003248550200733 [GeV] +### Total energy deposition in calorimeter by a source track in 45 cells : 0.51807858545773 (GeV) -Source track ID 11189 (anti_proton,5.3585638917839[GeV]) at (-478.30612564398,145.6820173235,-1703.6006459733) +Source track ID 11224 (e-,0.00052241577322568[GeV]) at (-472.24330130751,164.27496574398,-1713.2180079859) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[4,4] 2.7492933440953e-09 [GeV] -Cell[4,3] 5.0226996753963e-05 [GeV] -Cell[7,17] 1.1454371182481e-05 [GeV] -Cell[2,30] 9.044198945719e-05 [GeV] -Cell[8,5] 0.00040651018460665 [GeV] -Cell[7,39] 0.00048826286105131 [GeV] -Cell[0,39] 1.9401326804655e-05 [GeV] -Cell[6,28] 0.00063838162795178 [GeV] -Cell[8,2] 4.4449098641053e-07 [GeV] -Cell[6,29] 0.0031820921861512 [GeV] -Cell[3,29] 2.0315414320066e-05 [GeV] -Cell[4,44] 2.9777752047266e-08 [GeV] -Cell[0,33] 1.9827157346299e-05 [GeV] -Cell[1,23] 0.0028026589628918 [GeV] -Cell[3,32] 0.00025025978358713 [GeV] -Cell[1,29] 0.00033736041250791 [GeV] -Cell[2,38] 0.0095434308227326 [GeV] -Cell[4,31] 7.9205521728909e-08 [GeV] -Cell[2,32] 0.015404839209781 [GeV] -Cell[5,38] 7.6695261714121e-07 [GeV] -Cell[10,9] 1.3943808353361e-06 [GeV] -Cell[9,2] 8.5899474336088e-05 [GeV] -Cell[6,14] 0.0019582533064318 [GeV] -Cell[11,7] 0.00010868854770342 [GeV] -Cell[11,8] 0.00022928876174956 [GeV] -Cell[1,13] 0.0006348572701928 [GeV] -Cell[1,14] 0.00020206951291307 [GeV] -Cell[0,14] 7.7398472931236e-06 [GeV] -Cell[3,47] 0.00034227963804653 [GeV] -Cell[3,0] 0.00031554317196242 [GeV] -Cell[7,34] 8.634603349492e-06 [GeV] -Cell[10,8] 3.0652426008601e-05 [GeV] -Cell[4,46] 0.0040326531214341 [GeV] -Cell[3,46] 4.0926687461251e-09 [GeV] -Cell[3,44] 0.0014729685172829 [GeV] -Cell[4,43] 0.0028609562634748 [GeV] -Cell[2,1] 1.0345415736083e-05 [GeV] -Cell[1,1] 0.0018139153902109 [GeV] -Cell[0,1] 3.8886666879989e-06 [GeV] -Cell[1,2] 0.0013796971872946 [GeV] -Cell[2,47] 0.00022405884802674 [GeV] -Cell[11,9] 0.00092372038430926 [GeV] -Cell[10,10] 4.68227606234e-08 [GeV] -Cell[13,37] 0.0014508866319399 [GeV] -Cell[0,24] 0.00055358926804576 [GeV] -Cell[0,23] 7.3624911429306e-05 [GeV] -Cell[0,21] 0.48811057299726 [GeV] -Cell[0,22] 0.12528145687204 [GeV] -Cell[1,44] 1.3520750508178e-06 [GeV] -Cell[4,17] 1.3256018486572e-05 [GeV] -Cell[5,17] 0.00018913040794561 [GeV] -Cell[0,32] 0.0036752592648999 [GeV] -Cell[1,27] 1.4730789413875e-05 [GeV] -Cell[2,7] 2.8812634879387e-05 [GeV] -Cell[4,15] 2.0090509610782e-07 [GeV] -Cell[0,19] 0.0031248521190719 [GeV] -Cell[0,20] 0.020590489620599 [GeV] -Cell[0,18] 1.8404895747608e-06 [GeV] -Cell[0,47] 0.00051874350735709 [GeV] -Cell[1,22] 0.11606952895602 [GeV] -Cell[1,20] 0.021146884387867 [GeV] -Cell[1,21] 2.8257558889372 [GeV] -Cell[3,5] 1.2495181581471e-06 [GeV] -Cell[3,6] 1.523234474007e-06 [GeV] -Cell[1,47] 0.01468535455875 [GeV] -Cell[8,4] 2.9735440621153e-06 [GeV] -Cell[2,28] 0.00021216970393164 [GeV] -Cell[1,28] 0.0037426504188809 [GeV] -Cell[1,26] 5.2036721097011e-06 [GeV] -Cell[2,27] 0.00058534820843045 [GeV] -Cell[0,0] 0.0040670159539923 [GeV] -Cell[0,5] 0.0040457083093221 [GeV] -Cell[1,5] 0.0019404538907779 [GeV] -Cell[1,6] 6.2306079923246e-05 [GeV] -Cell[1,4] 0.0017435247151328 [GeV] -Cell[0,4] 0.0055800304273768 [GeV] -Cell[0,31] 0.00043545129311337 [GeV] -Cell[1,36] 0.00146338405933 [GeV] -Cell[1,37] 0.002816476956758 [GeV] -Cell[2,23] 0.0025095059166537 [GeV] -Cell[2,24] 0.0063801108924451 [GeV] -Cell[0,17] 0.018010004851592 [GeV] -Cell[0,38] 0.00012837755821397 [GeV] -Cell[1,38] 9.5865916243724e-05 [GeV] -Cell[5,39] 0.00033364893619301 [GeV] -Cell[4,2] 0.0014293792001346 [GeV] -Cell[0,8] 0.0017533996810187 [GeV] -Cell[0,9] 1.4340758639264e-08 [GeV] -Cell[2,16] 1.2896946573164e-06 [GeV] -Cell[3,4] 0.00022685073730952 [GeV] -Cell[3,28] 2.8520133928396e-06 [GeV] -Cell[3,30] 3.0763171258741e-06 [GeV] -Cell[2,29] 8.719694338879e-06 [GeV] -Cell[6,2] 0.0035745016018997 [GeV] -Cell[6,36] 0.00086837694351056 [GeV] -Cell[6,21] 7.7203434304051e-05 [GeV] -Cell[10,39] 1.2134728371166e-05 [GeV] -Cell[10,43] 1.0169236338697e-05 [GeV] -Cell[6,20] 0.00085463676680114 [GeV] -Cell[2,37] 0.00101367421139 [GeV] -Cell[1,39] 3.5533025311452e-06 [GeV] -Cell[2,21] 8.6707080937799e-05 [GeV] -Cell[2,22] 0.25905340322536 [GeV] -Cell[1,19] 0.0033173401687927 [GeV] -Cell[1,17] 0.020895677911037 [GeV] -Cell[1,18] 0.0014507848505654 [GeV] -Cell[2,12] 0.00059385700040973 [GeV] -Cell[2,17] 6.486909405794e-06 [GeV] -Cell[17,0] 2.0168954506516e-10 [GeV] -Cell[18,0] 2.6632915250957e-09 [GeV] -Cell[1,9] 0.0014038816862696 [GeV] -Cell[3,39] 7.6217819587328e-06 [GeV] -Cell[6,34] 7.3796571814455e-07 [GeV] -Cell[2,0] 2.4842448765412e-06 [GeV] -Cell[2,46] 9.9593307822943e-11 [GeV] -Cell[6,3] 0.00023238506808229 [GeV] -Cell[7,18] 1.3718489033636e-05 [GeV] -Cell[10,7] 0.00013127643896155 [GeV] -Cell[0,35] 1.6878054622794e-05 [GeV] -Cell[0,25] 0.0035340159405694 [GeV] -Cell[6,46] 0.00074442802684174 [GeV] -Cell[0,26] 0.001408366565161 [GeV] -Cell[1,40] 0.0010699462968579 [GeV] -Cell[3,35] 0.00082350907371308 [GeV] -Cell[3,38] 0.0014881063493424 [GeV] -Cell[3,11] 0.00041954313782815 [GeV] -Cell[4,11] 0.00082460834100419 [GeV] -Cell[2,33] 0.016155383142776 [GeV] -Cell[2,35] 0.020625779152327 [GeV] -Cell[5,13] 0.00051099891 [GeV] -Cell[2,36] 0.0063459218940029 [GeV] -Cell[1,35] 0.002963639148941 [GeV] -Cell[1,32] 0.0027189341826879 [GeV] -Cell[1,0] 0.047994697416543 [GeV] -Cell[2,2] 0.034495535081026 [GeV] -Cell[2,3] 0.011368043473435 [GeV] -Cell[1,10] 0.00019645673238947 [GeV] -Cell[3,8] 0.003023171791061 [GeV] -Cell[0,16] 0.0011525234642349 [GeV] -Cell[1,16] 0.00061307802188731 [GeV] -Cell[0,44] 0.0017298396578649 [GeV] -Cell[3,12] 5.4942512750813e-06 [GeV] -Cell[3,13] 3.6130205454924e-05 [GeV] -Cell[1,8] 0.0036550099294135 [GeV] -Cell[1,7] 7.3376530197152e-05 [GeV] -Cell[0,7] 3.4131433608309e-08 [GeV] -Cell[1,34] 0.0034591510962509 [GeV] -Cell[2,34] 0.0087589370062043 [GeV] -Cell[4,16] 0.0033328963353296 [GeV] -Cell[3,16] 1.9220771036998e-09 [GeV] -Cell[3,15] 0.0023563528870158 [GeV] -Cell[4,10] 0.00017914128938537 [GeV] -Cell[4,9] 1.1223165625893e-05 [GeV] -Cell[3,31] 0.0020580879955761 [GeV] -Cell[1,24] 0.00053806505853458 [GeV] -Cell[0,34] 0.00062059212639497 [GeV] -Cell[2,43] 0.0017753422357399 [GeV] -Cell[2,19] 4.3055552635792e-05 [GeV] -Cell[2,18] 8.177813873715e-05 [GeV] -Cell[1,12] 2.4035341455601e-05 [GeV] -Cell[2,15] 0.00060624715805693 [GeV] -Cell[2,14] 1.428254627001e-05 [GeV] -Cell[0,29] 2.3154464486197e-06 [GeV] -Cell[6,1] 3.634147901721e-08 [GeV] -Cell[4,30] 4.3803325688714e-06 [GeV] -Cell[2,6] 4.0646227716934e-09 [GeV] -Cell[2,5] 0.098992178921843 [GeV] -Cell[2,4] 0.29399788893356 [GeV] -Cell[3,3] 3.1404962044235e-07 [GeV] -Cell[1,3] 2.6484485715628e-12 [GeV] -### Total energy deposition in calorimeter by a source track in 170 cells : 4.6032497360849 (GeV) +Cell[1,21] 3.1149674243383e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 3.1149674243383e-06 (GeV) -Source track ID 11184 (gamma,0.3844820986824[GeV]) at (-410.17657534421,285.92862227992,-1157.3836750588) +Source track ID 11210 (anti_proton,5.358604860197[GeV]) at (-471.92063332963,165.19962420587,-1716.4113770269) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[8,9] 0.00099246564941509 [GeV] -Cell[6,30] 0.00044987727398943 [GeV] -Cell[6,29] 0.00039440860357753 [GeV] -Cell[1,13] 0.0015497911771006 [GeV] -Cell[4,46] 0.00072852920459474 [GeV] -Cell[4,18] 0.0024396649591119 [GeV] -Cell[3,18] 0.0021233331477301 [GeV] -Cell[3,19] 0.066535776130596 [GeV] -Cell[4,19] 0.30616747370776 [GeV] -Cell[1,39] 0.00078069448089405 [GeV] -Cell[6,0] 0.00051099891 [GeV] -Cell[3,36] 0.0008875627193557 [GeV] -### Total energy deposition in calorimeter by a source track in 12 cells : 0.38356057596412 (GeV) +Cell[7,8] 1.1648322454221e-06 [GeV] +Cell[6,37] 0.0025113855634183 [GeV] +Cell[7,7] 1.2479576980695e-08 [GeV] +Cell[8,46] 0.00044926313370471 [GeV] +Cell[1,25] 0.00051099891 [GeV] +Cell[6,34] 0.00051099891 [GeV] +Cell[7,46] 5.1071625784971e-06 [GeV] +Cell[4,39] 0.00032268592809364 [GeV] +Cell[2,17] 1.2783327006105e-05 [GeV] +Cell[0,40] 6.443138117902e-07 [GeV] +Cell[6,36] 2.110434138558e-09 [GeV] +Cell[6,35] 0.00093169252605703 [GeV] +Cell[6,8] 2.7954142751696e-07 [GeV] +Cell[5,36] 0.006943062390285 [GeV] +Cell[2,7] 4.0764798759483e-05 [GeV] +Cell[2,6] 0.001620481799101 [GeV] +Cell[12,1] 4.7755689593032e-08 [GeV] +Cell[10,26] 0.00036174470283538 [GeV] +Cell[4,44] 0.0012461767623489 [GeV] +Cell[8,47] 3.2284020265753e-05 [GeV] +Cell[5,37] 6.1392767406687e-06 [GeV] +Cell[5,21] 0.00051099891 [GeV] +Cell[5,43] 0.0062365037649767 [GeV] +Cell[2,10] 4.3817359011882e-05 [GeV] +Cell[3,40] 0.0099978500109628 [GeV] +Cell[2,40] 0.0043780683533074 [GeV] +Cell[6,30] 0.00032709934835387 [GeV] +Cell[6,45] 0.0033621626667181 [GeV] +Cell[3,41] 0.02168471347931 [GeV] +Cell[2,45] 0.0016413360343824 [GeV] +Cell[4,4] 0.0012303316818121 [GeV] +Cell[5,4] 0.00045234944582703 [GeV] +Cell[13,1] 2.5531044229865e-08 [GeV] +Cell[3,1] 0.0012309108814225 [GeV] +Cell[0,24] 0.0051414906396651 [GeV] +Cell[1,21] 0.12400558109873 [GeV] +Cell[0,21] 3.2446485056197 [GeV] +Cell[0,20] 0.20410149029708 [GeV] +Cell[0,19] 0.0088670865208026 [GeV] +Cell[0,22] 0.18546080147339 [GeV] +Cell[1,23] 0.00015772615121875 [GeV] +Cell[0,23] 0.033362765920703 [GeV] +Cell[1,20] 0.0029396941145124 [GeV] +Cell[1,22] 0.0035425669461005 [GeV] +Cell[0,6] 0.001529166847872 [GeV] +Cell[0,5] 0.00037874594453092 [GeV] +Cell[0,4] 1.0428827052237e-05 [GeV] +Cell[6,7] 1.4221935998648e-08 [GeV] +Cell[0,18] 0.00018869070964558 [GeV] +Cell[2,33] 0.0013831717842193 [GeV] +Cell[1,19] 0.001558489718428 [GeV] +Cell[5,34] 0.00075201024185844 [GeV] +Cell[6,44] 0.00052042700841945 [GeV] +Cell[5,39] 1.6236648662016e-08 [GeV] +Cell[3,43] 0.00036944607590979 [GeV] +Cell[3,44] 0.00023606785753884 [GeV] +Cell[6,38] 5.1348411943763e-08 [GeV] +Cell[1,0] 8.6349427874666e-10 [GeV] +Cell[2,44] 0.0023406613194568 [GeV] +Cell[0,8] 0.0002345416895082 [GeV] +Cell[1,18] 0.011421038226637 [GeV] +Cell[1,17] 2.776569526759e-05 [GeV] +Cell[1,7] 0.0011861339820645 [GeV] +Cell[1,9] 2.7598588480942e-06 [GeV] +Cell[1,10] 0.00013845579338306 [GeV] +Cell[2,4] 2.7903087261393e-05 [GeV] +Cell[2,5] 0.00015431494337884 [GeV] +Cell[0,36] 5.8403635048307e-06 [GeV] +Cell[1,46] 0.0024343203143588 [GeV] +Cell[2,47] 1.6375127248466e-05 [GeV] +Cell[2,43] 0.0017567717536374 [GeV] +Cell[1,6] 4.0616739822281e-05 [GeV] +Cell[1,5] 0.0006439805314984 [GeV] +Cell[2,19] 0.00010074291688511 [GeV] +Cell[2,16] 0.00076760748054687 [GeV] +Cell[2,20] 0.0014131577349367 [GeV] +Cell[2,2] 0.0018904716180199 [GeV] +Cell[1,4] 6.0104691943934e-06 [GeV] +Cell[4,22] 6.1812927015126e-08 [GeV] +Cell[6,41] 5.1949185726698e-06 [GeV] +Cell[12,25] 0.00078070697521207 [GeV] +Cell[9,3] 7.2130081813725e-05 [GeV] +Cell[9,4] 0.00050330540955974 [GeV] +Cell[2,9] 9.5919938081352e-05 [GeV] +Cell[2,11] 8.8862282154878e-10 [GeV] +Cell[1,11] 2.3946995497681e-10 [GeV] +Cell[5,35] 0.0014643090925822 [GeV] +Cell[15,26] 1.0836654313607e-05 [GeV] +Cell[16,6] 0.00085635735285643 [GeV] +Cell[16,5] 5.6985224364325e-07 [GeV] +Cell[5,38] 0.00077449136353493 [GeV] +Cell[5,30] 0.0040762195428797 [GeV] +Cell[3,0] 0.0017990181130994 [GeV] +Cell[2,1] 0.0015134152503904 [GeV] +Cell[2,0] 0.00081733243787291 [GeV] +Cell[2,18] 0.00089942975666975 [GeV] +Cell[0,31] 0.00042436067697861 [GeV] +Cell[0,28] 0.00045479569769212 [GeV] +Cell[3,7] 0.00027493105246116 [GeV] +Cell[3,38] 0.010113253172271 [GeV] +Cell[5,40] 0.0022388038692504 [GeV] +Cell[1,39] 0.00074305625304667 [GeV] +Cell[0,38] 0.0017416280143628 [GeV] +Cell[5,46] 0.0016887235738693 [GeV] +Cell[1,29] 0.0026906763311855 [GeV] +Cell[3,47] 0.014235201206945 [GeV] +Cell[3,24] 0.00040708413020752 [GeV] +Cell[1,14] 0.0029709152223275 [GeV] +Cell[5,11] 0.0010523918930776 [GeV] +Cell[1,3] 0.0081233376417607 [GeV] +Cell[3,42] 0.00092986254672857 [GeV] +Cell[1,30] 0.0017182573902406 [GeV] +Cell[2,30] 0.0016971902454232 [GeV] +### Total energy deposition in calorimeter by a source track in 113 cells : 3.9755415624234 (GeV) -Source track ID 11027 (proton,2.1151385627637[GeV]) at (-42.979874098088,498.14930535183,-1596.5948334448) +Source track ID 11205 (gamma,0.3844820986824[GeV]) at (-397.86894191999,302.82058228507,-1232.7639962601) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[4,5] 0.00032090756637808 [GeV] -Cell[4,4] 0.00071364625106001 [GeV] -Cell[4,3] 8.1967128207907e-06 [GeV] -Cell[3,24] 1.7194267245941e-05 [GeV] -Cell[7,39] 2.0601908422577e-06 [GeV] -Cell[7,38] 4.9242679437157e-05 [GeV] -Cell[5,2] 3.4217494854602e-05 [GeV] -Cell[7,40] 0.0017290829868472 [GeV] -Cell[0,33] 5.9576780768111e-07 [GeV] -Cell[4,47] 1.8439482237795e-05 [GeV] -Cell[12,43] 1.1789961718023e-10 [GeV] -Cell[4,34] 0.0012017754308049 [GeV] -Cell[4,35] 8.798971863871e-05 [GeV] -Cell[1,13] 0.016474916408395 [GeV] -Cell[1,14] 0.017747798957601 [GeV] -Cell[0,13] 0.001343812205012 [GeV] -Cell[0,14] 0.011503571537078 [GeV] -Cell[4,1] 3.3257991424762e-05 [GeV] -Cell[3,0] 0.00015085615855241 [GeV] -Cell[4,0] 0.0047839775965532 [GeV] -Cell[5,0] 6.3460545871976e-06 [GeV] -Cell[5,1] 0.00045307567778195 [GeV] -Cell[5,6] 3.1282477430068e-05 [GeV] -Cell[0,37] 9.4496041345906e-05 [GeV] -Cell[5,19] 1.6070618003141e-06 [GeV] -Cell[4,6] 0.00029650372836659 [GeV] -Cell[5,34] 0.00010440716268818 [GeV] -Cell[4,15] 1.2923116194088e-06 [GeV] -Cell[3,23] 8.5700087656733e-06 [GeV] -Cell[0,47] 4.9149332885918e-05 [GeV] -Cell[0,12] 0.00049938831659993 [GeV] -Cell[1,15] 0.00063290015521795 [GeV] -Cell[2,13] 0.0043921988709192 [GeV] -Cell[3,6] 1.3931453489931e-05 [GeV] -Cell[0,0] 6.488520672292e-07 [GeV] -Cell[0,31] 0.0085929415782994 [GeV] -Cell[1,36] 0.00075203482720266 [GeV] -Cell[0,38] 3.6773766303668e-05 [GeV] -Cell[1,38] 1.4839080104139e-05 [GeV] -Cell[0,8] 0.00097845656120694 [GeV] -Cell[0,9] 0.0012664081523372 [GeV] -Cell[2,16] 5.1013023494306e-10 [GeV] -Cell[1,39] 0.0014654081320557 [GeV] -Cell[2,12] 0.0095773744373197 [GeV] -Cell[2,17] 0.00021994122551575 [GeV] -Cell[1,9] 1.9479339447571e-05 [GeV] -Cell[0,35] 0.00032895150939066 [GeV] -Cell[1,40] 5.6917616166174e-07 [GeV] -Cell[3,35] 1.1835272596045e-05 [GeV] -Cell[2,35] 0.0012653062568681 [GeV] -Cell[2,36] 0.0013295818728589 [GeV] -Cell[1,0] 1.2036839907523e-05 [GeV] -Cell[1,10] 0.00078167746086565 [GeV] -Cell[0,16] 0.0031658671289765 [GeV] -Cell[1,16] 0.00015047134182987 [GeV] -Cell[3,12] 2.6795332049801e-05 [GeV] -Cell[3,13] 7.3326883693881e-09 [GeV] -Cell[2,34] 1.1535382946022e-06 [GeV] -Cell[4,16] 9.1099037701269e-05 [GeV] -Cell[3,16] 1.4586777308523e-07 [GeV] -Cell[3,15] 4.4442302261132e-06 [GeV] -Cell[4,9] 1.2578193077843e-05 [GeV] -Cell[0,34] 1.3586579112598e-05 [GeV] -Cell[2,18] 1.7694868816761e-05 [GeV] -Cell[1,12] 0.42528032028167 [GeV] -Cell[2,14] 0.0055084684722315 [GeV] -Cell[6,1] 5.4796658105261e-08 [GeV] -Cell[3,36] 4.3564724023781e-08 [GeV] -Cell[12,44] 0.00046361127416765 [GeV] -Cell[3,17] 0.00056141897128009 [GeV] -Cell[1,11] 0.099097600866752 [GeV] -Cell[3,34] 1.4634688093793e-05 [GeV] -Cell[4,27] 0.0005013106892884 [GeV] -Cell[4,25] 0.00057545344617927 [GeV] -Cell[4,28] 0.00014290947026859 [GeV] -Cell[2,11] 0.0078900000173418 [GeV] -Cell[2,10] 0.00052263924575607 [GeV] -Cell[3,7] 1.1365039099474e-06 [GeV] -Cell[4,7] 0.0016840040137032 [GeV] -Cell[3,14] 2.5747368815473e-05 [GeV] -Cell[0,36] 0.00055849953138829 [GeV] -Cell[0,11] 0.003380795253886 [GeV] -Cell[5,5] 2.2964207280893e-05 [GeV] -Cell[4,8] 0.00051536424262929 [GeV] -Cell[0,10] 0.001256487122229 [GeV] -### Total energy deposition in calorimeter by a source track in 85 cells : 0.64094826050443 (GeV) +Cell[3,19] 0.33396962156911 [GeV] +Cell[3,18] 0.038741243512194 [GeV] +Cell[3,20] 0.00059639492022106 [GeV] +Cell[1,34] 0.00094014995958592 [GeV] +Cell[4,27] 0.00047748216180309 [GeV] +Cell[3,45] 0.00074200188396558 [GeV] +Cell[1,4] 0.00057733318974461 [GeV] +Cell[0,28] 0.00021893520826486 [GeV] +Cell[3,24] 0.0074911917822 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.38375435418709 (GeV) -Source track ID 10402 (pi+,0.78144133044917[GeV]) at (-497.52607730028,49.676980646962,-1145.8498251425) +Source track ID 11033 (proton,2.1151124875476[GeV]) at (-95.341949990702,490.8257456287,-1626.4241756979) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[8,11] 0.0025289129108515 [GeV] -Cell[7,12] 2.3614920453952e-05 [GeV] -Cell[8,12] 2.2221054241527e-05 [GeV] -Cell[4,3] 0.0011898904865177 [GeV] -Cell[7,11] 4.8775394247969e-07 [GeV] -Cell[3,24] 7.8890457714351e-05 [GeV] -Cell[8,5] 0.0011424802444856 [GeV] -Cell[5,32] 4.6785053669282e-05 [GeV] -Cell[9,0] 0.0022230583083647 [GeV] -Cell[9,37] 0.00043213670575615 [GeV] -Cell[8,37] 0.00014007679461724 [GeV] -Cell[6,11] 1.1147020200724e-05 [GeV] -Cell[5,24] 6.7739286168944e-06 [GeV] -Cell[8,31] 1.819186611408e-05 [GeV] -Cell[4,32] 0.00038620710384419 [GeV] -Cell[5,43] 0.0039110208520309 [GeV] -Cell[6,44] 1.5720721450634e-05 [GeV] -Cell[4,31] 9.6089990923701e-05 [GeV] -Cell[3,42] 0.00053799561627841 [GeV] -Cell[9,36] 3.8883247179911e-06 [GeV] -Cell[6,42] 0.0011399008938138 [GeV] -Cell[6,41] 0.00035501449291798 [GeV] -Cell[3,26] 0.00018409931181274 [GeV] -Cell[7,31] 0.0039381478790043 [GeV] -Cell[8,0] 4.8050676749654e-06 [GeV] -Cell[5,21] 0.00016826785944806 [GeV] -Cell[6,6] 0.00093682726791652 [GeV] -Cell[8,30] 0.0011235401097728 [GeV] -Cell[8,32] 1.8914380576462e-05 [GeV] -Cell[8,1] 4.5512026304095e-08 [GeV] -Cell[3,22] 0.13214976973426 [GeV] -Cell[5,31] 2.237371623437e-06 [GeV] -Cell[7,5] 1.17648478207e-05 [GeV] -Cell[2,9] 1.8499535712181e-05 [GeV] -Cell[4,19] 4.1126919541057e-09 [GeV] -Cell[3,23] 8.4451021307359e-06 [GeV] -Cell[8,4] 2.1157167452657e-08 [GeV] -Cell[1,9] 0.00029203432661438 [GeV] -Cell[1,8] 5.9177313232794e-08 [GeV] -Cell[4,10] 0.0019225007524446 [GeV] -Cell[4,25] 0.00075184261684591 [GeV] -Cell[2,11] 0.00040106940495752 [GeV] -Cell[2,10] 0.00026504801122041 [GeV] -Cell[5,5] 0.00086065391373264 [GeV] -Cell[4,23] 0.25641002459519 [GeV] -Cell[4,22] 0.10296938953619 [GeV] -Cell[7,4] 1.2446282198653e-08 [GeV] -Cell[7,3] 2.1571809395482e-07 [GeV] -Cell[8,3] 8.3584191088448e-09 [GeV] -Cell[4,24] 0.0034224591488082 [GeV] -Cell[4,26] 0.0032422448618172 [GeV] -Cell[7,41] 1.027285476448e-05 [GeV] -Cell[8,36] 7.6286998761589e-05 [GeV] -Cell[4,21] 0.0067522870863139 [GeV] -Cell[4,42] 2.4059248800427e-05 [GeV] -Cell[3,41] 0.0042116855847719 [GeV] -Cell[3,21] 0.006616148286675 [GeV] -Cell[3,20] 0.0015897083939784 [GeV] -Cell[5,22] 0.00013345422000714 [GeV] -Cell[5,23] 1.0151916806308e-05 [GeV] -Cell[5,44] 2.3545128642581e-05 [GeV] -Cell[6,12] 0.00076935081415024 [GeV] -Cell[6,5] 0.0017510497967272 [GeV] -Cell[4,20] 0.00034965646016337 [GeV] -### Total energy deposition in calorimeter by a source track in 64 cells : 0.54573111440965 (GeV) +Cell[0,12] 0.0011003670771767 [GeV] +Cell[3,0] 1.9012393167941e-05 [GeV] +Cell[1,14] 0.019393062320921 [GeV] +Cell[1,13] 0.61406973879105 [GeV] +Cell[0,13] 0.13753083735777 [GeV] +Cell[1,15] 0.00046903861372385 [GeV] +Cell[1,12] 0.0014921763700177 [GeV] +Cell[0,14] 0.01198010465135 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.78605433757518 (GeV) -Source track ID 10405 (pi+,0.50630153817161[GeV]) at (393.69763238752,308.22422723151,-1359.7289458335) +Source track ID 10418 (pi+,0.7815637632757[GeV]) at (-497.53774658938,49.5599709318,-1146.2446377707) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[7,30] 0.0064096109812779 [GeV] -Cell[3,29] 0.0011417712214851 [GeV] -Cell[1,45] 0.00076805287485154 [GeV] -Cell[3,32] 9.1386027634144e-12 [GeV] -Cell[4,31] 1.3689840852749e-05 [GeV] -Cell[7,31] 4.4674288801616e-10 [GeV] -Cell[2,42] 6.4598127792124e-06 [GeV] -Cell[8,47] 5.7246872747783e-06 [GeV] -Cell[2,44] 2.0701196604023e-08 [GeV] -Cell[2,45] 8.1629081125129e-05 [GeV] -Cell[2,1] 8.4030185826123e-06 [GeV] -Cell[1,1] 9.2851527122548e-05 [GeV] -Cell[1,2] 0.00026970523202453 [GeV] -Cell[2,47] 1.4508618885884e-05 [GeV] -Cell[1,44] 0.00053659402286499 [GeV] -Cell[4,18] 0.00066246243805551 [GeV] -Cell[4,6] 3.7539138010061e-06 [GeV] -Cell[8,40] 0.00018453804914361 [GeV] -Cell[8,39] 2.7696918199581e-05 [GeV] -Cell[8,38] 1.9619794329628e-08 [GeV] -Cell[1,43] 0.00098525172106268 [GeV] -Cell[1,42] 1.0091955336975e-05 [GeV] -Cell[3,5] 0.034059170240899 [GeV] -Cell[3,6] 2.3272104328953e-07 [GeV] -Cell[1,47] 0.001924166316091 [GeV] -Cell[1,36] 0.00050897708723573 [GeV] -Cell[2,23] 2.2946239914745e-05 [GeV] -Cell[1,38] 4.0112204054594e-06 [GeV] -Cell[0,9] 7.4285372102167e-06 [GeV] -Cell[3,4] 0.043308612021327 [GeV] -Cell[3,30] 0.0014062286771936 [GeV] -Cell[2,29] 0.0022443266024287 [GeV] -Cell[2,46] 1.6399493790232e-05 [GeV] -Cell[3,35] 9.2093029040029e-05 [GeV] -Cell[2,35] 0.0001013560244686 [GeV] -Cell[2,36] 1.4005433302373e-05 [GeV] -Cell[1,0] 0.00079164115678018 [GeV] -Cell[2,2] 0.002280338918277 [GeV] -Cell[2,3] 0.00034082240737575 [GeV] -Cell[1,8] 0.00095692310520494 [GeV] -Cell[1,7] 0.00025302543968046 [GeV] -Cell[4,9] 0.00040431274645541 [GeV] -Cell[3,31] 0.00012038294885679 [GeV] -Cell[1,24] 0.0013744310439199 [GeV] -Cell[2,43] 8.5508686315734e-06 [GeV] -Cell[2,5] 0.0070352643799796 [GeV] -Cell[2,4] 0.11927510575573 [GeV] -Cell[3,3] 0.001468875647761 [GeV] -Cell[4,7] 1.6942521232295e-06 [GeV] -Cell[0,36] 0.00011580720700579 [GeV] -Cell[8,46] 0.00016653045444446 [GeV] -Cell[8,45] 5.5117797594562e-05 [GeV] -Cell[7,13] 5.423220393368e-07 [GeV] -Cell[3,37] 0.0013683230883067 [GeV] -### Total energy deposition in calorimeter by a source track in 54 cells : 0.23095047987612 (GeV) +Cell[3,6] 0.0011508032952319 [GeV] +Cell[8,9] 7.0988326624501e-06 [GeV] +Cell[8,10] 0.00024256722893904 [GeV] +Cell[7,11] 1.1927837394978e-06 [GeV] +Cell[7,10] 6.1725706538596e-05 [GeV] +Cell[4,21] 1.7317106668997e-05 [GeV] +Cell[7,9] 5.7130582332661e-05 [GeV] +Cell[7,6] 7.7500195766333e-06 [GeV] +Cell[11,21] 5.9435019502416e-06 [GeV] +Cell[10,21] 6.9966873270459e-06 [GeV] +Cell[4,5] 0.0054202585729561 [GeV] +Cell[4,4] 0.00027193965162894 [GeV] +Cell[4,6] 0.0078119085856276 [GeV] +Cell[3,20] 0.00026255112956073 [GeV] +Cell[3,21] 0.014933866018715 [GeV] +Cell[5,5] 6.6753970168065e-06 [GeV] +Cell[4,23] 0.10073760447577 [GeV] +Cell[3,5] 0.00099196082764172 [GeV] +Cell[3,4] 5.2169583930549e-05 [GeV] +Cell[4,7] 0.0017696292644411 [GeV] +Cell[3,32] 3.3092466532253e-05 [GeV] +Cell[3,35] 0.0010090153264796 [GeV] +Cell[4,22] 0.0015642551987266 [GeV] +Cell[3,7] 1.6833819245221e-09 [GeV] +Cell[3,24] 0.00015174982103292 [GeV] +Cell[3,23] 0.068339006124163 [GeV] +Cell[3,22] 0.25199741907843 [GeV] +Cell[4,24] 0.00037690642927008 [GeV] +Cell[2,26] 4.5417109504342e-09 [GeV] +Cell[10,20] 0.0021249502749165 [GeV] +Cell[10,19] 4.7575249423971e-05 [GeV] +Cell[11,20] 6.0735852748621e-06 [GeV] +Cell[3,25] 0.002588206754705 [GeV] +Cell[3,39] 1.1375232134014e-09 [GeV] +Cell[5,6] 4.0792662184685e-07 [GeV] +Cell[3,8] 6.0581589877984e-09 [GeV] +Cell[1,37] 0.00046737525980833 [GeV] +### Total energy deposition in calorimeter by a source track in 37 cells : 0.46252313616842 (GeV) -Source track ID 10245 (anti_proton,1.6910587239836[GeV]) at (-493.76259327341,78.730562578462,-1171.4357549803) +Source track ID 10421 (pi+,0.50614505165669[GeV]) at (486.78771149647,114.18285307361,-1143.1872225155) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[4,4] 3.7360067173836e-05 [GeV] -Cell[3,25] 0.0046652016838882 [GeV] -Cell[3,24] 0.1648767443208 [GeV] -Cell[6,9] 4.3321454431862e-06 [GeV] -Cell[6,8] 1.0079530504299e-05 [GeV] -Cell[15,39] 1.1707610383382e-08 [GeV] -Cell[1,45] 0.00011295072437565 [GeV] -Cell[1,23] 0.00045018905430891 [GeV] -Cell[3,32] 2.627595418744e-06 [GeV] -Cell[6,39] 0.00041408957538852 [GeV] -Cell[15,38] 4.9871084684128e-10 [GeV] -Cell[14,37] 6.0680066730129e-05 [GeV] -Cell[1,13] 0.00068764805379067 [GeV] -Cell[0,13] 4.1228921779521e-05 [GeV] -Cell[0,14] 0.0010083171519869 [GeV] -Cell[3,1] 4.0191506773454e-05 [GeV] -Cell[3,47] 5.0378047744744e-06 [GeV] -Cell[3,0] 0.00074096740653238 [GeV] -Cell[5,4] 1.1465640185634e-05 [GeV] -Cell[14,36] 0.0055483926211515 [GeV] -Cell[3,22] 0.14053310683438 [GeV] -Cell[2,44] 0.0026160586127187 [GeV] -Cell[2,45] 0.011698009853103 [GeV] -Cell[2,1] 0.28617989201028 [GeV] -Cell[1,1] 9.0765396307688e-06 [GeV] -Cell[1,2] 0.00042351088760131 [GeV] -Cell[2,47] 2.0065384102281e-06 [GeV] -Cell[7,5] 1.1292286217213e-11 [GeV] -Cell[15,36] 0.00014416914423543 [GeV] -Cell[0,24] 0.00024187756115668 [GeV] -Cell[0,23] 3.8693542592227e-10 [GeV] -Cell[1,44] 2.5716053846736e-07 [GeV] -Cell[3,19] 0.00034416916887665 [GeV] -Cell[3,23] 0.13372983648512 [GeV] -Cell[0,19] 9.8056937124511e-06 [GeV] -Cell[2,20] 0.00043448411686518 [GeV] -Cell[0,46] 7.310637011858e-05 [GeV] -Cell[0,47] 0.0034890760644071 [GeV] -Cell[1,20] 0.0038150174779927 [GeV] -Cell[1,21] 0.00012423610371479 [GeV] -Cell[1,47] 0.050183034166924 [GeV] -Cell[8,4] 2.4056649999693e-07 [GeV] -Cell[0,0] 6.8108777491034e-06 [GeV] -Cell[1,5] 2.0532198333512e-05 [GeV] -Cell[2,23] 0.74803267465346 [GeV] -Cell[2,24] 0.011574026983664 [GeV] -Cell[5,39] 1.7669172433671e-05 [GeV] -Cell[3,4] 6.7017152730386e-07 [GeV] -Cell[6,20] 1.6446523363584e-05 [GeV] -Cell[2,21] 0.00097886713707505 [GeV] -Cell[2,22] 0.4107173576825 [GeV] -Cell[1,19] 0.0020851459211609 [GeV] -Cell[1,18] 3.8924873311771e-05 [GeV] -Cell[2,0] 0.00091333622377294 [GeV] -Cell[2,46] 0.012109325960495 [GeV] -Cell[3,38] 0.00083675888502751 [GeV] -Cell[1,0] 0.0049454605383846 [GeV] -Cell[2,2] 0.001940977568659 [GeV] -Cell[2,3] 0.0012544911829512 [GeV] -Cell[0,44] 3.9232064737007e-06 [GeV] -Cell[3,13] 1.5224396980784e-06 [GeV] -Cell[1,24] 1.443716617473e-06 [GeV] -Cell[2,19] 2.3199583498013e-05 [GeV] -Cell[2,18] 0.00027876036781038 [GeV] -Cell[2,5] 0.00045698512850385 [GeV] -Cell[2,4] 0.00014444320793905 [GeV] -Cell[3,3] 0.0011357452098362 [GeV] -Cell[1,3] 0.00049778169588842 [GeV] -Cell[3,36] 0.000619166865876 [GeV] -Cell[3,34] 0.00036263436072079 [GeV] -Cell[4,23] 0.0013042295731502 [GeV] -Cell[4,22] 0.046087454616959 [GeV] -Cell[4,24] 3.4400636650389e-10 [GeV] -Cell[4,21] 3.6326976024384e-05 [GeV] -Cell[3,21] 0.00044826996013057 [GeV] -Cell[3,20] 0.00055828541682172 [GeV] -Cell[6,5] 0.0037881466313669 [GeV] -Cell[4,20] 3.9118458516896e-10 [GeV] -Cell[3,37] 0.0029961289592367 [GeV] -Cell[14,39] 1.9530750932972e-07 [GeV] -Cell[2,25] 0.0019654303745514 [GeV] -Cell[4,37] 1.7156541231088e-05 [GeV] -Cell[3,2] 0.00037246607613633 [GeV] -Cell[3,33] 5.5444082738063e-05 [GeV] -Cell[5,25] 0.0015868887009527 [GeV] -Cell[1,46] 0.0049854577903647 [GeV] -Cell[6,4] 0.0013793018109884 [GeV] -Cell[6,19] 3.2589552550917e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 88 cells : 2.0773680126772 (GeV) +Cell[7,26] 5.8064947254024e-05 [GeV] +Cell[7,28] 0.0004252369127222 [GeV] +Cell[2,38] 2.3924223759195e-06 [GeV] +Cell[5,31] 0.0010082405692324 [GeV] +Cell[4,47] 0.00030540224578181 [GeV] +Cell[7,30] 1.4083596732235e-05 [GeV] +Cell[7,29] 0.0011503010049519 [GeV] +Cell[8,30] 0.00024572978792537 [GeV] +Cell[2,45] 1.638755611566e-08 [GeV] +Cell[4,4] 4.302040906623e-09 [GeV] +Cell[4,3] 0.00019914399384322 [GeV] +Cell[4,2] 0.00077566973336252 [GeV] +Cell[3,1] 0.13224172482314 [GeV] +Cell[0,19] 9.294567280449e-08 [GeV] +Cell[2,33] 0.00028252174122645 [GeV] +Cell[3,2] 0.0045522924880148 [GeV] +Cell[2,42] 4.6025001211092e-08 [GeV] +Cell[4,32] 0.001093036070347 [GeV] +Cell[2,44] 1.0222082937617e-06 [GeV] +Cell[3,3] 1.9657646931819e-05 [GeV] +Cell[2,5] 4.7528010327369e-08 [GeV] +Cell[0,15] 1.1382234515622e-07 [GeV] +Cell[0,43] 1.1619704309851e-11 [GeV] +Cell[2,47] 0.00010708819258798 [GeV] +Cell[2,43] 2.111547081654e-06 [GeV] +Cell[3,45] 1.3107224231135e-07 [GeV] +Cell[0,46] 4.7171968462067e-05 [GeV] +Cell[4,31] 3.1145192167514e-06 [GeV] +Cell[4,0] 6.2420166518677e-06 [GeV] +Cell[5,30] 8.7809678548524e-05 [GeV] +Cell[3,0] 0.14491172879621 [GeV] +Cell[2,1] 0.00038441884271697 [GeV] +Cell[2,0] 0.00067873242456642 [GeV] +Cell[1,39] 3.9088760677259e-06 [GeV] +Cell[3,47] 0.0061678792795934 [GeV] +Cell[4,1] 0.087472175096961 [GeV] +Cell[2,37] 7.5084685686306e-06 [GeV] +Cell[4,46] 1.8007184178259e-07 [GeV] +Cell[0,16] 8.4324041381478e-08 [GeV] +Cell[3,46] 0.0039024061051173 [GeV] +Cell[6,10] 5.0084730610251e-06 [GeV] +Cell[1,1] 1.6348085628124e-05 [GeV] +Cell[0,45] 0.00019295489907847 [GeV] +Cell[0,44] 7.5909854865586e-07 [GeV] +### Total energy deposition in calorimeter by a source track in 44 cells : 0.38637260305117 (GeV) + +Source track ID 10245 (anti_proton,1.690800887941[GeV]) at (-493.85093447754,78.174513210247,-1172.1960372615) +Original primary track ID 8 (unknown,11.672977589613[GeV]) +Cell[3,19] 0.00086433076032034 [GeV] +Cell[4,21] 0.035554498813327 [GeV] +Cell[5,29] 9.9362388427835e-06 [GeV] +Cell[2,25] 3.5271186003229e-05 [GeV] +Cell[6,12] 8.7987818274541e-05 [GeV] +Cell[4,36] 3.3048284822144e-06 [GeV] +Cell[4,20] 0.00025049296080806 [GeV] +Cell[7,43] 0.0041429708470863 [GeV] +Cell[8,0] 2.4946988560259e-08 [GeV] +Cell[5,47] 1.6070252924692e-05 [GeV] +Cell[6,8] 4.3712218757719e-06 [GeV] +Cell[6,39] 9.5905576689233e-05 [GeV] +Cell[9,36] 0.0027234246769349 [GeV] +Cell[9,22] 0.0016887086508835 [GeV] +Cell[8,2] 3.3719263774401e-07 [GeV] +Cell[4,37] 0.00048127822457218 [GeV] +Cell[10,22] 6.2838078406457e-08 [GeV] +Cell[6,24] 4.8147122142836e-06 [GeV] +Cell[4,47] 0.00033655857924816 [GeV] +Cell[5,21] 0.00036595678591561 [GeV] +Cell[4,19] 9.9916221984131e-08 [GeV] +Cell[5,43] 0.00093869562941421 [GeV] +Cell[2,23] 0.011678217634061 [GeV] +Cell[3,28] 5.0579288217705e-06 [GeV] +Cell[6,46] 1.3244297384517e-05 [GeV] +Cell[6,45] 0.00022621171025912 [GeV] +Cell[8,1] 2.5357852439356e-06 [GeV] +Cell[4,6] 0.00054252968861738 [GeV] +Cell[2,27] 0.0031377362206871 [GeV] +Cell[3,27] 0.0011622370778698 [GeV] +Cell[3,18] 0.0030924716362059 [GeV] +Cell[3,21] 0.00533197832882 [GeV] +Cell[7,1] 9.1477223405377e-05 [GeV] +Cell[7,0] 1.5458858420061e-06 [GeV] +Cell[4,15] 2.4036147578954e-09 [GeV] +Cell[1,23] 3.2854562164744e-05 [GeV] +Cell[4,23] 0.006166362016531 [GeV] +Cell[6,44] 1.3176839565858e-06 [GeV] +Cell[4,16] 0.00021575785219022 [GeV] +Cell[4,26] 0.0025139566506555 [GeV] +Cell[3,17] 0.0049794958010462 [GeV] +Cell[5,14] 5.9855207509827e-06 [GeV] +Cell[5,39] 2.4482431425668e-05 [GeV] +Cell[4,25] 0.00014520321500379 [GeV] +Cell[4,32] 0.00021965439772828 [GeV] +Cell[6,38] 0.00019380949188792 [GeV] +Cell[1,2] 5.3676168929087e-05 [GeV] +Cell[7,2] 3.2837851904333e-09 [GeV] +Cell[4,7] 1.8809588429349e-05 [GeV] +Cell[0,37] 0.062156404153726 [GeV] +Cell[0,36] 0.027481088547455 [GeV] +Cell[0,15] 0.00013146775717905 [GeV] +Cell[5,8] 0.0016514430214417 [GeV] +Cell[0,43] 2.7993886324111e-06 [GeV] +Cell[0,42] 0.00056586190728888 [GeV] +Cell[1,6] 0.00089584163680856 [GeV] +Cell[4,31] 2.2704961156705e-05 [GeV] +Cell[2,16] 3.7393790523765e-07 [GeV] +Cell[3,16] 0.015083524820327 [GeV] +Cell[3,15] 0.0010419755798439 [GeV] +Cell[2,22] 0.12594585664056 [GeV] +Cell[4,22] 0.057826415777338 [GeV] +Cell[5,38] 1.5199265275214e-05 [GeV] +Cell[3,24] 0.0080288624259678 [GeV] +Cell[1,14] 4.9794065546394e-07 [GeV] +Cell[1,13] 8.4499388322001e-09 [GeV] +Cell[3,23] 0.035632557260191 [GeV] +Cell[3,22] 0.81611582074222 [GeV] +Cell[4,24] 0.00047119749867272 [GeV] +Cell[2,26] 0.0007107617569302 [GeV] +Cell[3,25] 0.0059146947464124 [GeV] +Cell[1,37] 7.4733922083396e-06 [GeV] +Cell[4,46] 2.3140282075929e-07 [GeV] +Cell[6,10] 1.3129372349567e-06 [GeV] +Cell[4,33] 0.00016812218079804 [GeV] +Cell[6,13] 0.00022448577333955 [GeV] +Cell[6,14] 0.00063664279788338 [GeV] +Cell[2,24] 7.4250316247344e-06 [GeV] +Cell[9,39] 0.0031672017141596 [GeV] +Cell[3,26] 0.0024143970271642 [GeV] +Cell[1,41] 0.0014317519775008 [GeV] +Cell[7,39] 0.0010960752355374 [GeV] +Cell[7,40] 0.00013125887843375 [GeV] +Cell[7,38] 3.9650049700413e-07 [GeV] +Cell[7,3] 1.6910256817937e-08 [GeV] +Cell[6,3] 1.2327756764989e-06 [GeV] +Cell[13,39] 0.00061620437268436 [GeV] +Cell[13,40] 0.00095689869191222 [GeV] +Cell[12,38] 4.9911179706896e-06 [GeV] +Cell[12,39] 9.3483886303147e-09 [GeV] +Cell[13,38] 2.3229358703247e-10 [GeV] +Cell[7,23] 3.6942985079804e-05 [GeV] +Cell[7,44] 0.0001302922783791 [GeV] +Cell[5,13] 1.4805649028858e-05 [GeV] +Cell[6,11] 0.0041804061364358 [GeV] +### Total energy deposition in calorimeter by a source track in 95 cells : 1.2623856507063 (GeV) Source track ID 10246 (neutron,1.4783692592721[GeV]) at (458.5309876774,199.3723484829,-606.56000985403) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[4,5] 0.0075402161738657 [GeV] -Cell[4,4] 0.024331326216847 [GeV] -Cell[4,3] 0.025169732921931 [GeV] -Cell[5,2] 0.030879997980734 [GeV] -Cell[4,33] 1.5613943280187e-05 [GeV] -Cell[4,34] 0.00053039043898684 [GeV] -Cell[4,1] 0.00044118146317669 [GeV] -Cell[3,1] 0.0005195431753034 [GeV] -Cell[5,4] 0.0087511286835703 [GeV] -Cell[5,1] 0.0066064858986441 [GeV] -Cell[4,6] 0.00050461358930215 [GeV] -Cell[3,5] 0.0031052441843532 [GeV] -Cell[3,6] 0.00015858472191985 [GeV] -Cell[4,2] 0.094601330766134 [GeV] -Cell[3,4] 0.0013743487416785 [GeV] -Cell[3,28] 6.3858866342343e-06 [GeV] -Cell[6,2] 0.0016181777559822 [GeV] -Cell[6,3] 0.0014718185912193 [GeV] -Cell[6,1] 9.821599951465e-08 [GeV] -Cell[3,3] 0.0015595639531108 [GeV] -Cell[4,7] 2.4847115810189e-08 [GeV] -Cell[5,5] 2.673645437585e-05 [GeV] -Cell[3,2] 5.6810340765537e-05 [GeV] -Cell[6,4] 5.393178525992e-11 [GeV] -Cell[5,3] 0.06128334542237 [GeV] -### Total energy deposition in calorimeter by a source track in 25 cells : 0.27055270042123 (GeV) +Cell[2,10] 0.00084416716135695 [GeV] +Cell[6,1] 0.0072722283064349 [GeV] +Cell[5,1] 0.0056261603910874 [GeV] +Cell[5,4] 6.5318486238084e-06 [GeV] +Cell[5,5] 8.1654179375619e-06 [GeV] +Cell[7,1] 2.7237312871421e-05 [GeV] +Cell[5,2] 0.0022825105054994 [GeV] +Cell[7,2] 0.0014372945632188 [GeV] +Cell[3,10] 0.00025956760306451 [GeV] +Cell[2,9] 0.014704189386182 [GeV] +Cell[5,6] 0.00069553260083376 [GeV] +Cell[3,8] 0.00093406208101862 [GeV] +Cell[7,3] 0.00054302885627487 [GeV] +Cell[6,3] 0.087108437768414 [GeV] +Cell[6,2] 0.11349040573517 [GeV] +Cell[6,4] 0.0074468780377631 [GeV] +Cell[3,9] 0.0072568220326363 [GeV] +Cell[5,3] 0.0032890095429917 [GeV] +Cell[5,0] 0.00100881622947 [GeV] +### Total energy deposition in calorimeter by a source track in 19 cells : 0.25424104538085 (GeV) -Source track ID 10247 (pi+,0.53362098179975[GeV]) at (101.50324742582,489.58869550063,290.40154181831) +Source track ID 10247 (pi+,0.53390152536725[GeV]) at (110.59551376964,487.61525030912,295.47725584079) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[8,17] 0.0002018705493806 [GeV] -Cell[7,37] 0.00055035551255946 [GeV] -Cell[7,39] 1.2459144520108e-05 [GeV] -Cell[9,5] 1.2992478156093e-06 [GeV] -Cell[10,38] 1.6538178686346e-05 [GeV] -Cell[7,38] 0.0010267698969902 [GeV] -Cell[5,40] 8.2710495917127e-08 [GeV] -Cell[10,1] 2.493237843737e-09 [GeV] -Cell[10,6] 0.040426675972544 [GeV] -Cell[9,17] 1.5684735005834e-06 [GeV] -Cell[9,6] 0.0022230748370564 [GeV] -Cell[9,23] 0.00089661307895338 [GeV] -Cell[10,9] 0.00027174816060869 [GeV] -Cell[9,46] 0.00016822125980968 [GeV] -Cell[10,4] 0.0043429785860091 [GeV] -Cell[15,30] 0.00032890081650191 [GeV] -Cell[6,14] 4.1914996487321e-05 [GeV] -Cell[10,46] 0.00015484622263261 [GeV] -Cell[11,7] 0.0035872952077848 [GeV] -Cell[12,7] 6.6943205310963e-06 [GeV] -Cell[11,8] 8.1900527584367e-07 [GeV] -Cell[12,14] 0.00059277139798996 [GeV] -Cell[10,0] 0.0018257182807323 [GeV] -Cell[12,35] 3.693551283277e-05 [GeV] -Cell[12,36] 0.0012486682400721 [GeV] -Cell[9,47] 2.3625743779121e-09 [GeV] -Cell[10,47] 1.0521617622885e-05 [GeV] -Cell[14,36] 9.9725786421914e-06 [GeV] -Cell[10,35] 2.0044495613547e-08 [GeV] -Cell[10,34] 0.00019181202430411 [GeV] -Cell[10,8] 1.1472115488687e-08 [GeV] -Cell[4,43] 4.7750079538673e-06 [GeV] -Cell[11,10] 0.1536990140993 [GeV] -Cell[11,9] 1.4486696716631e-05 [GeV] -Cell[11,35] 0.0007395537844119 [GeV] -Cell[10,36] 6.368447790237e-07 [GeV] -Cell[11,1] 9.8313845228404e-07 [GeV] -Cell[10,11] 0.0042971672918087 [GeV] -Cell[10,10] 0.0026079325300137 [GeV] -Cell[10,12] 0.007654213890002 [GeV] -Cell[8,38] 0.00010446951007179 [GeV] -Cell[3,27] 4.4166314182803e-07 [GeV] -Cell[4,12] 2.226437209174e-07 [GeV] -Cell[1,9] 1.7968529436985e-06 [GeV] -Cell[10,7] 0.00041680960461042 [GeV] -Cell[2,2] 1.5862963045947e-06 [GeV] -Cell[1,8] 5.5227849270523e-07 [GeV] -Cell[4,25] 0.00020068671577917 [GeV] -Cell[4,23] 6.4166637001563e-05 [GeV] -Cell[4,22] 0.0011577813194226 [GeV] -Cell[4,26] 9.3716017129509e-05 [GeV] -Cell[4,20] 8.0186518607661e-07 [GeV] -Cell[2,41] 2.8806625050493e-07 [GeV] -Cell[7,22] 0.0033828889065306 [GeV] -Cell[12,10] 0.051565246629931 [GeV] -Cell[9,45] 0.00013607480568066 [GeV] -Cell[10,45] 6.6917014909905e-05 [GeV] -Cell[14,42] 0.00037112503534092 [GeV] -Cell[14,43] 0.0002226436831769 [GeV] -Cell[12,20] 7.9626822553109e-06 [GeV] -Cell[11,36] 6.8853998311624e-07 [GeV] -Cell[12,9] 0.0028169005946437 [GeV] -Cell[7,36] 4.9887373114643e-06 [GeV] -Cell[5,46] 3.9509410271421e-08 [GeV] -Cell[9,19] 0.002951651895357 [GeV] -Cell[4,13] 2.1912378724664e-07 [GeV] -Cell[5,12] 1.5488437031763e-07 [GeV] -Cell[5,11] 1.5298768119919e-05 [GeV] -Cell[11,6] 0.0039579959221541 [GeV] -Cell[15,29] 9.027890245477e-05 [GeV] -Cell[12,39] 0.00098126685974499 [GeV] -Cell[11,5] 0.00051127262440217 [GeV] -Cell[10,5] 0.00028460812460446 [GeV] -Cell[12,42] 5.6714166540814e-06 [GeV] -Cell[11,42] 0.00055000755909532 [GeV] -Cell[12,41] 1.0555916560406e-08 [GeV] -Cell[10,3] 0.00025158544842088 [GeV] -Cell[10,37] 1.8030648129752e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 78 cells : 0.29741492348699 (GeV) +Cell[10,8] 4.8261287884088e-07 [GeV] +Cell[11,6] 5.2386894822121e-12 [GeV] +Cell[11,11] 0.010497935632001 [GeV] +Cell[10,12] 3.390459610273e-07 [GeV] +Cell[12,10] 0.00042462995010828 [GeV] +Cell[11,30] 9.8137672121084e-05 [GeV] +Cell[10,9] 0.001334045470847 [GeV] +Cell[11,9] 0.35411549979601 [GeV] +Cell[11,8] 0.0030313433732365 [GeV] +Cell[12,22] 0.001053584639486 [GeV] +Cell[10,10] 3.9253240916878e-05 [GeV] +Cell[11,10] 0.080489463088039 [GeV] +Cell[12,9] 0.0005265470082245 [GeV] +Cell[11,7] 2.7350906748325e-09 [GeV] +Cell[16,1] 1.8492604431231e-06 [GeV] +Cell[12,8] 1.1013262911547e-05 [GeV] +Cell[12,7] 1.4304926548903e-07 [GeV] +Cell[12,6] 3.2087449540086e-08 [GeV] +Cell[11,12] 0.0001273924208582 [GeV] +Cell[10,11] 0.00087520056983874 [GeV] +Cell[11,19] 0.00033796594900638 [GeV] +Cell[11,18] 0.001820854378495 [GeV] +Cell[11,17] 1.5661658567296e-06 [GeV] +Cell[12,18] 0.00038273664466215 [GeV] +Cell[12,19] 0.0017961958909302 [GeV] +Cell[11,0] 0.00021362291981053 [GeV] +### Total energy deposition in calorimeter by a source track in 26 cells : 0.45717983686968 (GeV) -Source track ID 10248 (kaon-,1.5172694934523[GeV]) at (462.18638580538,-190.74523526464,440.75805161348) +Source track ID 10248 (kaon-,1.5193869035986[GeV]) at (462.89713481562,-189.01386874907,440.73743419043) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[8,27] 0.0004952387581676 [GeV] -Cell[8,23] 3.6802967020776e-05 [GeV] -Cell[8,31] 5.5213867187831e-07 [GeV] -Cell[8,25] 1.6255947295576e-05 [GeV] -Cell[1,29] 3.6723875382449e-06 [GeV] -Cell[12,43] 6.2843802705174e-05 [GeV] -Cell[8,29] 0.00016897975258712 [GeV] -Cell[8,28] 1.7164056393085e-05 [GeV] -Cell[6,41] 9.10651870538e-06 [GeV] -Cell[9,4] 9.7935716912616e-06 [GeV] -Cell[15,45] 1.6134246152433e-09 [GeV] -Cell[14,44] 0.015056802276026 [GeV] -Cell[13,45] 0.63577868193632 [GeV] -Cell[12,2] 0.010750552506559 [GeV] -Cell[10,0] 7.7507861889899e-05 [GeV] -Cell[11,46] 0.00046270991039762 [GeV] -Cell[8,24] 2.926188686979e-05 [GeV] -Cell[10,22] 0.00010626293882888 [GeV] -Cell[8,19] 0.0025398860999551 [GeV] -Cell[11,2] 9.5715170223172e-06 [GeV] -Cell[19,29] 0.015413074261044 [GeV] -Cell[9,40] 5.7500079274178e-06 [GeV] -Cell[8,30] 0.0001194182307313 [GeV] -Cell[10,8] 5.3346369531937e-07 [GeV] -Cell[3,44] 1.5756297769258e-05 [GeV] -Cell[5,1] 1.3852480304195e-05 [GeV] -Cell[9,28] 5.7985123921753e-05 [GeV] -Cell[9,3] 6.1389183683787e-06 [GeV] -Cell[11,1] 0.00029491373681042 [GeV] -Cell[7,5] 1.2009186611976e-06 [GeV] -Cell[13,42] 5.4334293508873e-10 [GeV] -Cell[4,19] 1.2624567659714e-07 [GeV] -Cell[3,6] 0.00047619599297332 [GeV] -Cell[1,28] 7.2775524063786e-05 [GeV] -Cell[6,36] 2.0285432924538e-08 [GeV] -Cell[7,18] 1.8952623067889e-06 [GeV] -Cell[2,15] 9.0207465109415e-07 [GeV] -Cell[2,6] 3.2693659886718e-07 [GeV] -Cell[12,44] 0.021668968973417 [GeV] -Cell[3,20] 5.5503194039375e-07 [GeV] -Cell[5,22] 8.4890486323275e-07 [GeV] -Cell[4,20] 0.0003086755693389 [GeV] -Cell[8,46] 6.2937259790488e-06 [GeV] -Cell[14,42] 1.8846354530524e-06 [GeV] -Cell[14,43] 0.00035462078325315 [GeV] -Cell[4,13] 4.1492614309391e-06 [GeV] -Cell[12,42] 0.0013870510233373 [GeV] -Cell[12,45] 0.21533010405989 [GeV] -Cell[12,46] 0.012650559837925 [GeV] -Cell[12,47] 0.0075362675542982 [GeV] -Cell[13,1] 0.00051733496402721 [GeV] -Cell[13,47] 0.00029598044998409 [GeV] -Cell[11,47] 2.4330219957847e-08 [GeV] -Cell[13,46] 0.0070827925446056 [GeV] -Cell[13,0] 0.0016419764525014 [GeV] -Cell[13,44] 0.045782828461607 [GeV] -Cell[13,43] 0.00084764552011768 [GeV] -Cell[14,46] 0.011632390132832 [GeV] -Cell[14,45] 0.0056847195483543 [GeV] -Cell[13,41] 1.4795605125073e-08 [GeV] -Cell[19,28] 0.00048179005863137 [GeV] -Cell[18,27] 0.0044155896501824 [GeV] -Cell[18,28] 0.0011179012617914 [GeV] -Cell[18,29] 1.8128873443516e-05 [GeV] -Cell[14,47] 0.0027631469404919 [GeV] -Cell[15,46] 2.1640158718128e-07 [GeV] -Cell[16,9] 1.6611884348094e-09 [GeV] -Cell[14,0] 2.2555766122423e-08 [GeV] -Cell[14,1] 1.5879443253652e-09 [GeV] -Cell[14,21] 7.141030324945e-05 [GeV] -Cell[12,40] 0.0015568331861404 [GeV] -Cell[8,26] 0.0015570232938857 [GeV] -Cell[6,35] 0.0010865576903497 [GeV] -Cell[8,22] 0.0001067662075233 [GeV] -Cell[6,40] 4.370335659587e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 75 cells : 1.0280235953558 (GeV) +Cell[9,13] 0.0026091505298032 [GeV] +Cell[6,47] 0.0014371327146421 [GeV] +Cell[11,47] 1.5544526240774e-07 [GeV] +Cell[11,29] 8.7914620526135e-06 [GeV] +Cell[14,42] 2.735760062933e-12 [GeV] +Cell[13,46] 0.025805006601991 [GeV] +Cell[10,40] 0.00010344290634134 [GeV] +Cell[13,47] 0.00051290206756289 [GeV] +Cell[14,22] 0.00022705462774115 [GeV] +Cell[11,43] 1.4019512033656e-05 [GeV] +Cell[12,1] 0.0042881346356948 [GeV] +Cell[12,47] 0.0087341266896512 [GeV] +Cell[12,46] 0.0076992832150593 [GeV] +Cell[10,45] 0.0010762882291608 [GeV] +Cell[11,14] 0.0055944069890531 [GeV] +Cell[10,14] 4.031672324345e-08 [GeV] +Cell[11,46] 0.00096237427450922 [GeV] +Cell[12,3] 0.00032421458788765 [GeV] +Cell[11,45] 1.7316490669941e-05 [GeV] +Cell[2,23] 0.0028305084542508 [GeV] +Cell[11,37] 1.3472462887876e-07 [GeV] +Cell[11,38] 2.6193715556701e-05 [GeV] +Cell[12,2] 0.00056784881126031 [GeV] +Cell[7,32] 1.9637693767436e-06 [GeV] +Cell[13,1] 1.6044941730797e-10 [GeV] +Cell[5,46] 0.00010184013189087 [GeV] +Cell[12,45] 0.80657364367671 [GeV] +Cell[12,44] 0.042923855713198 [GeV] +Cell[13,44] 0.015703329817047 [GeV] +Cell[17,25] 6.4900816360023e-06 [GeV] +Cell[16,14] 0.00040207464283822 [GeV] +Cell[16,15] 4.6264167857771e-05 [GeV] +Cell[11,44] 0.00039788625037875 [GeV] +Cell[13,45] 0.013461029839598 [GeV] +Cell[13,43] 0.00046775826106864 [GeV] +Cell[13,42] 4.3904838006824e-05 [GeV] +Cell[13,41] 2.2962796037973e-09 [GeV] +Cell[12,0] 0.11539727120078 [GeV] +Cell[12,43] 0.0056883477848629 [GeV] +Cell[13,21] 2.6476969971554e-05 [GeV] +Cell[15,22] 8.2407208101358e-06 [GeV] +Cell[14,23] 8.4551900740735e-06 [GeV] +Cell[14,21] 1.2521662177392e-05 [GeV] +Cell[14,14] 0.0012463240899262 [GeV] +Cell[12,14] 0.0019632412230831 [GeV] +Cell[11,15] 0.0052292422402713 [GeV] +Cell[12,12] 2.3112991002563e-05 [GeV] +Cell[13,13] 0.00062256944522198 [GeV] +Cell[13,12] 1.0564690455794e-11 [GeV] +Cell[12,13] 0.00015178525322631 [GeV] +Cell[16,20] 6.7288524334799e-05 [GeV] +Cell[16,19] 0.00024381388793677 [GeV] +Cell[17,1] 2.2864975617267e-06 [GeV] +Cell[15,8] 4.2757800256368e-06 [GeV] +Cell[15,35] 0.00059715913271123 [GeV] +Cell[14,36] 0.0015648655412941 [GeV] +Cell[14,37] 4.5838532969356e-13 [GeV] +Cell[13,0] 0.0013740345618103 [GeV] +Cell[14,44] 0.0003553719519349 [GeV] +Cell[14,45] 0.0091749766770819 [GeV] +Cell[14,46] 0.00036930134181443 [GeV] +Cell[14,47] 0.0002366346103513 [GeV] +### Total energy deposition in calorimeter by a source track in 62 cells : 1.0873361679399 (GeV) -Source track ID 10369 (gamma,0.23378010273678[GeV]) at (499.39193971472,24.651380244691,861.27114767511) +Source track ID 10355 (gamma,0.23378010273678[GeV]) at (499.39194143644,24.651345365873,861.27118490328) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,13] 0.0016858641925127 [GeV] -Cell[14,35] 0.00050379851756155 [GeV] -Cell[14,47] 0.0014800710274889 [GeV] -Cell[14,0] 0.22779153438218 [GeV] -Cell[14,1] 0.00017512698285125 [GeV] -Cell[14,2] 0.00036806102338864 [GeV] -Cell[18,35] 0.0013881533783152 [GeV] -Cell[17,28] 0.00038749323248354 [GeV] +Cell[15,29] 0.00049080015525419 [GeV] +Cell[13,30] 0.00051099891 [GeV] +Cell[14,23] 0.00051099891 [GeV] +Cell[14,47] 0.00075053735035867 [GeV] +Cell[14,0] 0.22783432636284 [GeV] +Cell[16,22] 0.0014624379178237 [GeV] +Cell[16,38] 0.0017090042205018 [GeV] +Cell[15,19] 0.00051099891 [GeV] ### Total energy deposition in calorimeter by a source track in 8 cells : 0.23378010273678 (GeV) -Source track ID 10370 (gamma,0.24889356279397[GeV]) at (220.29242955272,-448.85548396088,830.38546776364) +Source track ID 10356 (gamma,0.24889356279397[GeV]) at (220.29245821224,-448.85546989516,830.38550479504) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[12,1] 0.00051099891 [GeV] -Cell[14,39] 0.23880401409755 [GeV] -Cell[14,42] 0.00051099891 [GeV] -Cell[14,38] 0.0048782203238128 [GeV] -Cell[14,40] 0.0016658244802393 [GeV] -Cell[14,5] 0.0025235060723677 [GeV] +Cell[14,26] 0.00038331688449259 [GeV] +Cell[16,24] 0.00074358577882362 [GeV] +Cell[14,29] 0.00012768202550741 [GeV] +Cell[14,39] 0.22387476652561 [GeV] +Cell[14,40] 0.011294475585273 [GeV] +Cell[14,38] 0.012469735994262 [GeV] ### Total energy deposition in calorimeter by a source track in 6 cells : 0.24889356279397 (GeV) -Source track ID 10349 (kaon+,0.66836659222671[GeV]) at (298.5310382164,401.09751834366,366.3018853066) +Source track ID 10344 (kaon+,0.66769552364328[GeV]) at (301.46055592622,398.90040513975,371.7603729725) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,13] 0.0011039547428646 [GeV] -Cell[11,7] 0.04172405695391 [GeV] -Cell[12,7] 0.013950414139318 [GeV] -Cell[15,43] 0.00049938060720073 [GeV] -Cell[15,42] 0.0048029115082765 [GeV] -Cell[12,6] 0.15998819241009 [GeV] -Cell[11,4] 0.0014326233331379 [GeV] -Cell[13,11] 0.00021307898322573 [GeV] -Cell[11,6] 0.26454328780984 [GeV] -Cell[11,5] 0.087060796848892 [GeV] -Cell[11,3] 0.00050109886154318 [GeV] -Cell[12,5] 0.0015269164139661 [GeV] -### Total energy deposition in calorimeter by a source track in 12 cells : 0.57734671261227 (GeV) +Cell[11,6] 0.11039735188434 [GeV] +Cell[9,30] 0.0068696624098114 [GeV] +Cell[12,31] 0.001558817570971 [GeV] +Cell[12,27] 0.0033553475963016 [GeV] +Cell[12,29] 0.0051254991026657 [GeV] +Cell[12,30] 0.0010141556057918 [GeV] +Cell[11,4] 0.091279435010653 [GeV] +Cell[11,3] 0.0011325535580745 [GeV] +Cell[12,4] 0.0020477692358051 [GeV] +Cell[12,33] 0.0011062722176275 [GeV] +Cell[9,16] 0.00027047029531628 [GeV] +Cell[12,3] 0.00037960190284743 [GeV] +Cell[12,26] 0.00083146281275654 [GeV] +Cell[13,29] 0.00051099891 [GeV] +Cell[11,7] 0.016404567857353 [GeV] +Cell[12,6] 0.31017505403065 [GeV] +Cell[12,5] 0.0037931770106843 [GeV] +Cell[16,28] 0.0023386450491512 [GeV] +Cell[10,41] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 19 cells : 0.5591018409708 (GeV) -Source track ID 10250 (pi-,1.1892025788165[GeV]) at (43.91923710548,-498.0673655361,1039.0331060265) +Source track ID 10250 (pi-,1.1891822324484[GeV]) at (44.005141249517,-498.059783102,1039.0194080531) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[10,25] 0.00044033910197588 [GeV] -Cell[15,39] 0.0098965483213186 [GeV] -Cell[15,40] 0.0010472608545652 [GeV] -Cell[16,30] 1.3414778042147e-05 [GeV] -Cell[15,38] 0.0056347186412008 [GeV] -Cell[19,22] 0.0016693505073963 [GeV] -Cell[16,31] 1.3603235710207e-06 [GeV] -Cell[17,21] 0.00066695586244452 [GeV] -Cell[13,10] 6.4320028370275e-05 [GeV] -Cell[14,37] 0.0012813988992805 [GeV] -Cell[14,9] 4.4384444481693e-07 [GeV] -Cell[9,25] 8.364472784186e-06 [GeV] -Cell[14,36] 0.0057859390910717 [GeV] -Cell[11,20] 0.00051099891 [GeV] -Cell[15,12] 0.0006377021891758 [GeV] -Cell[15,33] 0.0010036555250481 [GeV] -Cell[13,38] 7.8664959346497e-10 [GeV] -Cell[15,15] 0.00038824074267882 [GeV] -Cell[14,35] 0.00030847588957261 [GeV] -Cell[14,34] 8.662865590145e-05 [GeV] -Cell[15,36] 0.19597352108319 [GeV] -Cell[2,23] 1.1433680716436e-05 [GeV] -Cell[2,24] 8.4732380637433e-06 [GeV] -Cell[14,39] 2.1598611965601e-10 [GeV] -Cell[12,10] 4.9489532898406e-08 [GeV] -Cell[9,45] 0.00091397351135788 [GeV] -Cell[14,42] 5.9170997701585e-10 [GeV] -Cell[12,9] 8.9120427446687e-09 [GeV] -Cell[13,43] 2.3478961178625e-05 [GeV] -Cell[13,41] 4.4976714707445e-06 [GeV] -Cell[14,38] 6.2272907259739e-05 [GeV] -Cell[15,37] 0.15380258819352 [GeV] -Cell[9,44] 6.4447181680748e-05 [GeV] -Cell[9,43] 5.5202758628639e-06 [GeV] -Cell[8,44] 0.00050819137892711 [GeV] -Cell[8,43] 4.423662321642e-07 [GeV] -Cell[14,10] 2.2567264386453e-07 [GeV] -Cell[18,13] 0.00084822837962406 [GeV] -Cell[18,8] 0.00046391368155037 [GeV] -Cell[19,8] 0.0022531302530859 [GeV] -Cell[19,7] 1.891503749448e-06 [GeV] -Cell[15,35] 0.0016043958207126 [GeV] -Cell[17,32] 1.4869072387228e-05 [GeV] -Cell[16,20] 0.00050012461554581 [GeV] -Cell[17,20] 0.00065317010007107 [GeV] -Cell[14,13] 0.0011872820336432 [GeV] -Cell[16,10] 0.00028782449846278 [GeV] -Cell[14,12] 0.00027242967701079 [GeV] -Cell[16,19] 0.0011036319311444 [GeV] -Cell[16,45] 6.9080366899139e-05 [GeV] -Cell[16,15] 0.023211514129436 [GeV] -Cell[16,14] 0.00014098156335649 [GeV] -Cell[15,16] 9.9476346804295e-10 [GeV] -Cell[16,16] 0.0021005305148901 [GeV] -Cell[16,12] 0.018351029755784 [GeV] -Cell[16,13] 0.00033700872961993 [GeV] -Cell[15,13] 3.2458892587783e-07 [GeV] -Cell[15,11] 2.5392726264499e-06 [GeV] -Cell[16,37] 0.14331134923631 [GeV] -Cell[16,36] 0.054442547604924 [GeV] -Cell[15,34] 0.00069108611766842 [GeV] -Cell[16,34] 0.002101216954853 [GeV] -Cell[16,38] 0.013154250990036 [GeV] -Cell[16,39] 0.005803818379105 [GeV] -Cell[16,35] 1.5418548605453e-05 [GeV] -Cell[16,33] 2.24128307309e-08 [GeV] -Cell[16,40] 0.00040773306503456 [GeV] -Cell[16,41] 4.0765989979263e-09 [GeV] -Cell[14,33] 1.3586874176781e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 69 cells : 0.6541701785003 (GeV) +Cell[15,38] 0.0019615753826757 [GeV] +Cell[16,32] 2.0570765263301e-05 [GeV] +Cell[16,31] 9.7814233868121e-10 [GeV] +Cell[16,30] 2.0129534241278e-06 [GeV] +Cell[13,27] 1.8427055726988e-07 [GeV] +Cell[15,13] 0.019858563391629 [GeV] +Cell[14,27] 0.00033137867398489 [GeV] +Cell[16,37] 0.088261391139503 [GeV] +Cell[15,36] 0.11204354899787 [GeV] +Cell[16,36] 0.00092928555374056 [GeV] +Cell[15,37] 0.072155708673207 [GeV] +Cell[16,24] 0.00010265863848883 [GeV] +Cell[14,28] 2.8573759278515e-05 [GeV] +Cell[15,29] 3.9569401706103e-06 [GeV] +Cell[13,37] 2.5149073632065e-05 [GeV] +Cell[13,30] 2.8829149377998e-06 [GeV] +Cell[18,27] 1.0812084539793e-05 [GeV] +Cell[18,14] 0.00015953107248038 [GeV] +Cell[17,14] 4.0340112025206e-07 [GeV] +Cell[16,20] 7.9405461654574e-05 [GeV] +Cell[16,19] 1.2316311185714e-06 [GeV] +Cell[14,37] 7.146181887947e-07 [GeV] +Cell[16,38] 0.0026043790640782 [GeV] +Cell[16,28] 6.6433170242817e-05 [GeV] +Cell[16,35] 4.9969020005506e-05 [GeV] +Cell[18,2] 2.6578716623362e-06 [GeV] +Cell[18,38] 1.856161543401e-05 [GeV] +Cell[15,39] 4.6771700348472e-05 [GeV] +Cell[17,15] 3.5027987905778e-09 [GeV] +Cell[16,29] 2.7621219342109e-06 [GeV] +Cell[17,24] 3.7944037467241e-06 [GeV] +Cell[16,25] 8.7525986172068e-05 [GeV] +Cell[13,36] 5.3932253533731e-06 [GeV] +Cell[14,9] 7.4466038786341e-06 [GeV] +Cell[14,8] 0.0012490534302704 [GeV] +Cell[16,27] 0.0022046980061825 [GeV] +Cell[18,0] 0.0054756967289974 [GeV] +Cell[19,1] 1.0739534627646e-07 [GeV] +Cell[18,1] 5.4889175772814e-06 [GeV] +Cell[18,47] 0.0017444411822036 [GeV] +Cell[19,47] 1.4791934514164e-05 [GeV] +Cell[19,0] 9.0692143203341e-08 [GeV] +Cell[16,12] 0.00023574572525243 [GeV] +Cell[16,13] 6.2518702113948e-05 [GeV] +Cell[17,11] 0.00029457518076254 [GeV] +Cell[16,11] 0.00087877003623794 [GeV] +Cell[17,10] 5.2841403885395e-07 [GeV] +Cell[17,37] 0.30599530193968 [GeV] +Cell[17,36] 0.0001777483115548 [GeV] +Cell[17,38] 0.0012965425280199 [GeV] +Cell[17,35] 0.00054129667463371 [GeV] +Cell[17,34] 0.00096755966210833 [GeV] +Cell[16,33] 0.00065602670023816 [GeV] +Cell[16,3] 1.2582029448822e-06 [GeV] +Cell[18,21] 6.74312870932e-05 [GeV] +Cell[17,21] 2.8424824449758e-10 [GeV] +Cell[18,37] 0.41724137046468 [GeV] +Cell[18,36] 0.0005896499052393 [GeV] +### Total energy deposition in calorimeter by a source track in 58 cells : 1.0385759309673 (GeV) -Source track ID 10337 (gamma,1.5351207931195[GeV]) at (395.5506280083,-305.84260769592,318.34458368449) +Source track ID 10330 (gamma,1.5351207931195[GeV]) at (395.55062673959,-305.84260933676,318.34457842222) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[12,43] 0.0093074404591032 [GeV] -Cell[10,40] 0.00044215468205102 [GeV] -Cell[11,46] 0.0002312313072486 [GeV] -Cell[11,41] 0.0040412677438321 [GeV] -Cell[11,1] 0.0015815784959151 [GeV] -Cell[12,42] 0.0096168612987228 [GeV] -Cell[11,42] 1.1464170797219 [GeV] -Cell[12,41] 0.0029607403472907 [GeV] -Cell[11,43] 0.35338407364755 [GeV] -Cell[11,44] 0.0046056615764771 [GeV] -Cell[18,16] 0.00034909948516277 [GeV] -Cell[11,39] 0.00051099891 [GeV] -Cell[11,29] 0.0004831823530498 [GeV] -Cell[5,14] 0.0001214659248917 [GeV] -### Total energy deposition in calorimeter by a source track in 14 cells : 1.5340528359532 (GeV) +Cell[10,40] 0.00051099891 [GeV] +Cell[12,42] 0.036442943605493 [GeV] +Cell[11,23] 0.0010721263421929 [GeV] +Cell[11,43] 0.21378933743906 [GeV] +Cell[12,47] 0.0023587599728504 [GeV] +Cell[15,11] 0.00062474879070121 [GeV] +Cell[11,41] 0.00087906318896079 [GeV] +Cell[12,18] 0.00051099891 [GeV] +Cell[12,44] 0.00069797233667042 [GeV] +Cell[11,44] 0.0022656641815928 [GeV] +Cell[12,43] 0.0482524142929 [GeV] +Cell[12,14] 0.00079509707511809 [GeV] +Cell[11,42] 1.2214958928503 [GeV] +Cell[12,41] 0.0034238152544711 [GeV] +Cell[13,23] 0.00084374354737129 [GeV] +### Total energy deposition in calorimeter by a source track in 15 cells : 1.5339635766977 (GeV) -Source track ID 10338 (gamma,0.1244455075516[GeV]) at (447.26695798083,-223.5000409364,557.85459290325) +Source track ID 10331 (gamma,0.1244455075516[GeV]) at (447.26697243518,-223.50001201044,557.8546694079) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,45] 0.00094980876154313 [GeV] -Cell[13,42] 0.00085023258695651 [GeV] -Cell[12,44] 0.10798344116899 [GeV] -Cell[12,45] 0.0049218042331142 [GeV] -Cell[13,44] 0.0062895795238123 [GeV] -Cell[13,43] 0.0024257822993778 [GeV] -Cell[14,25] 0.0010248589778019 [GeV] +Cell[11,23] 0.000849667968704 [GeV] +Cell[11,4] 0.0013818367652046 [GeV] +Cell[12,26] 0.00040297956339245 [GeV] +Cell[12,44] 0.10562456229538 [GeV] +Cell[13,44] 0.0128856030836 [GeV] +Cell[13,45] 0.00051099891 [GeV] +Cell[13,43] 0.0027898589653144 [GeV] ### Total energy deposition in calorimeter by a source track in 7 cells : 0.1244455075516 (GeV) -Source track ID 10312 (pi+,0.37521183505498[GeV]) at (184.66363514652,464.64969800321,1247.7416312947) +Source track ID 10316 (pi+,0.37526621351373[GeV]) at (181.12171410433,466.04176280663,1249.8679263286) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[11,26] 2.9871026754336e-09 [GeV] -Cell[15,42] 0.0013275648921903 [GeV] -Cell[11,27] 3.2874902046842e-07 [GeV] -Cell[19,30] 2.1497427951545e-08 [GeV] -Cell[19,29] 3.8295111153275e-09 [GeV] -Cell[17,8] 0.00034450328552805 [GeV] -Cell[16,5] 6.1118043959141e-12 [GeV] -Cell[16,9] 0.018682671292478 [GeV] -Cell[17,32] 0.00043444508844179 [GeV] -Cell[16,10] 0.0010288889752787 [GeV] -Cell[16,34] 0.00056566236666788 [GeV] -Cell[16,35] 3.9938056188817e-05 [GeV] -Cell[16,8] 0.19441424366215 [GeV] -Cell[16,7] 2.8599518875581e-05 [GeV] -Cell[16,6] 5.2619484603952e-05 [GeV] -Cell[17,6] 3.1659471328567e-06 [GeV] -Cell[17,5] 2.5518545498926e-10 [GeV] -Cell[17,7] 0.00072060276425839 [GeV] -Cell[15,10] 2.7963542379439e-09 [GeV] -Cell[16,11] 5.0497864373028e-05 [GeV] -Cell[17,26] 0.0019869007920064 [GeV] -Cell[19,47] 0.00068846737865306 [GeV] -Cell[19,0] 0.00017657052912909 [GeV] -Cell[19,46] 3.1280220014196e-08 [GeV] -Cell[19,37] 0.0038700537566085 [GeV] -Cell[18,38] 0.0010881818775289 [GeV] -Cell[19,18] 0.0024233816195994 [GeV] -Cell[15,1] 0.0010469666061715 [GeV] -### Total energy deposition in calorimeter by a source track in 28 cells : 0.2289743171588 (GeV) +Cell[7,18] 3.2216499384958e-06 [GeV] +Cell[15,38] 8.7010610094239e-05 [GeV] +Cell[16,31] 0.00049991239112578 [GeV] +Cell[16,30] 0.00085561785625157 [GeV] +Cell[13,26] 0.0003052773776812 [GeV] +Cell[13,27] 0.00095612757484831 [GeV] +Cell[12,42] 1.3977114576846e-11 [GeV] +Cell[15,37] 4.9775554771259e-09 [GeV] +Cell[11,45] 0.00076831960049529 [GeV] +Cell[12,26] 0.00091336186228312 [GeV] +Cell[17,5] 9.9008267397949e-09 [GeV] +Cell[5,34] 0.0001117767473155 [GeV] +Cell[16,6] 0.0017594260093782 [GeV] +Cell[13,40] 0.00010484635268222 [GeV] +Cell[13,42] 0.002355658119334 [GeV] +Cell[13,41] 0.0047569186840118 [GeV] +Cell[16,20] 6.0672164181597e-11 [GeV] +Cell[15,39] 0.00025894625763635 [GeV] +Cell[19,1] 0.00033015427282044 [GeV] +Cell[17,21] 2.7349670347121e-06 [GeV] +Cell[12,41] 4.758602961158e-05 [GeV] +Cell[16,9] 0.08334740631475 [GeV] +Cell[16,8] 0.10943066592316 [GeV] +Cell[17,22] 8.0435420386493e-08 [GeV] +Cell[16,21] 1.2776500415157e-06 [GeV] +Cell[17,20] 9.1493581521718e-08 [GeV] +Cell[17,27] 0.00099965659884296 [GeV] +Cell[16,10] 1.2905859862599e-05 [GeV] +Cell[16,7] 0.0001065850587604 [GeV] +Cell[17,8] 0.00028957398144439 [GeV] +Cell[17,9] 0.0019811708694367 [GeV] +Cell[15,16] 5.6125318806153e-05 [GeV] +Cell[17,6] 2.7006852995214e-05 [GeV] +Cell[13,10] 3.9550922228955e-06 [GeV] +Cell[7,19] 1.0559007234406e-05 [GeV] +Cell[8,18] 2.1683032682631e-06 [GeV] +Cell[5,33] 3.2125004402928e-05 [GeV] +Cell[15,9] 0.0033113047791259 [GeV] +Cell[16,39] 1.3416265661363e-05 [GeV] +Cell[15,33] 0.049129099933757 [GeV] +### Total energy deposition in calorimeter by a source track in 40 cells : 0.26287208605835 (GeV) -Source track ID 10297 (pi-,0.48042291679128[GeV]) at (186.04565472288,-464.09806545464,88.818097117002) +Source track ID 10307 (gamma,0.00010664996077107[GeV]) at (123.8354117657,-484.42212046192,84.768524718567) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[11,40] 0.0010445133619078 [GeV] -Cell[10,38] 0.012100939375986 [GeV] -Cell[10,41] 0.12552357324145 [GeV] -Cell[10,40] 0.052353452399899 [GeV] -Cell[11,41] 0.027162560138185 [GeV] -Cell[10,39] 0.20582775654095 [GeV] -Cell[10,45] 0.0012513722979682 [GeV] -Cell[11,42] 0.0057683218905314 [GeV] -Cell[11,44] 0.024506822486921 [GeV] -Cell[10,42] 0.0075581313235427 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.46309744305734 (GeV) +Cell[10,37] 0.00010664996077107 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00010664996077107 (GeV) + +Source track ID 10297 (pi-,0.47646501083038[GeV]) at (184.17148518675,-464.84498926428,97.362875406167) +Original primary track ID 8 (unknown,11.672977589613[GeV]) +Cell[10,39] 0.14732442482703 [GeV] +Cell[10,40] 0.10062467900428 [GeV] +Cell[11,41] 2.4759141297181e-09 [GeV] +Cell[11,40] 0.14891668974111 [GeV] +Cell[11,38] 0.00017490461185787 [GeV] +Cell[12,39] 0.0025583280872692 [GeV] +Cell[10,38] 0.018053550308468 [GeV] +Cell[11,39] 0.0050103706431025 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.42266294969903 (GeV) Source track ID 10265 (pi+,0.96821363163412[GeV]) at (-71.073877472723,-494.92272522182,1185.9144953086) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[16,30] 1.1118646943942e-07 [GeV] -Cell[15,38] 0.0089623888834009 [GeV] -Cell[15,32] 3.852319921134e-05 [GeV] -Cell[16,32] 0.0017295787819992 [GeV] -Cell[16,31] 0.00010255398702532 [GeV] -Cell[14,22] 0.0018957324383411 [GeV] -Cell[12,7] 7.7656062840106e-05 [GeV] -Cell[13,18] 3.3713172342686e-09 [GeV] -Cell[15,33] 0.0022557935161135 [GeV] -Cell[14,11] 0.0016454080781376 [GeV] -Cell[15,15] 0.00041843770341302 [GeV] -Cell[15,14] 1.3627879070555e-08 [GeV] -Cell[15,36] 0.0030659835287513 [GeV] -Cell[14,38] 0.00083417559181328 [GeV] -Cell[15,37] 0.0012365712141096 [GeV] -Cell[14,10] 0.00073249818930075 [GeV] -Cell[15,35] 0.062263055362263 [GeV] -Cell[14,12] 3.4471348917577e-06 [GeV] -Cell[15,16] 0.0010537867023029 [GeV] -Cell[16,37] 0.00037073913403196 [GeV] -Cell[16,36] 0.00013214530060804 [GeV] -Cell[15,34] 0.15458874446032 [GeV] -Cell[16,34] 0.31746784765628 [GeV] -Cell[16,35] 0.039087251432215 [GeV] -Cell[16,33] 0.016795226899172 [GeV] -Cell[18,16] 0.001500392390783 [GeV] -Cell[17,15] 2.2333393367262e-06 [GeV] -Cell[17,16] 6.8487543103402e-10 [GeV] -Cell[15,22] 2.0280857254875e-05 [GeV] -Cell[15,21] 6.7609675359108e-06 [GeV] -Cell[12,8] 2.9085709538776e-06 [GeV] -Cell[16,47] 2.4213191645686e-05 [GeV] -Cell[17,31] 0.00042360670693324 [GeV] -Cell[18,15] 0.0020208806156185 [GeV] -Cell[19,15] 0.0010575643171006 [GeV] -Cell[16,17] 1.4498745294986e-05 [GeV] -Cell[13,20] 0.00040167256828351 [GeV] -Cell[13,19] 0.012814270413259 [GeV] -Cell[17,35] 0.16386124883103 [GeV] -### Total energy deposition in calorimeter by a source track in 39 cells : 0.79690820564211 (GeV) +Cell[14,32] 4.7509383875877e-09 [GeV] +Cell[15,32] 0.015549204671333 [GeV] +Cell[16,32] 0.10072626464125 [GeV] +Cell[17,32] 2.6847732374335e-07 [GeV] +Cell[16,31] 0.010587409787784 [GeV] +Cell[15,31] 0.0057962447093747 [GeV] +Cell[15,30] 0.00032210964010267 [GeV] +Cell[16,30] 0.00014440397282601 [GeV] +Cell[15,6] 1.2685568071902e-07 [GeV] +Cell[15,28] 0.00029810860184728 [GeV] +Cell[11,1] 0.00056022816713846 [GeV] +Cell[15,29] 0.00061946809727237 [GeV] +Cell[14,29] 0.003990850181942 [GeV] +Cell[11,2] 1.0274933741812e-06 [GeV] +Cell[12,18] 0.00017332968950529 [GeV] +Cell[13,45] 2.1739575866377e-05 [GeV] +Cell[16,20] 3.9949171536136e-05 [GeV] +Cell[15,19] 3.4937034412451e-05 [GeV] +Cell[16,35] 0.17397710618091 [GeV] +Cell[17,36] 0.14403390058764 [GeV] +Cell[17,35] 0.10431574777082 [GeV] +Cell[17,34] 3.5033783919971e-06 [GeV] +Cell[16,33] 0.0049019338786531 [GeV] +Cell[18,37] 0.20668531092419 [GeV] +Cell[18,36] 0.065908100823961 [GeV] +Cell[15,33] 0.0052817712301904 [GeV] +Cell[15,34] 0.024414149694571 [GeV] +Cell[16,34] 0.0359851736157 [GeV] +Cell[12,17] 2.6774781872518e-07 [GeV] +Cell[13,18] 1.6602943651378e-07 [GeV] +Cell[16,44] 1.0367248323746e-06 [GeV] +Cell[18,23] 1.3957603368908e-07 [GeV] +Cell[17,3] 7.1320061950246e-05 [GeV] +Cell[15,18] 0.0017005203918209 [GeV] +Cell[15,17] 0.00091656660683865 [GeV] +Cell[14,18] 1.3299068143624e-07 [GeV] +Cell[14,19] 4.1554484005246e-07 [GeV] +Cell[17,47] 1.0105483524967e-06 [GeV] +Cell[17,0] 4.2756041046232e-05 [GeV] +Cell[15,41] 0.0017256287716114 [GeV] +Cell[18,33] 0.001478174344987 [GeV] +Cell[14,33] 0.0022243739407821 [GeV] +Cell[17,33] 0.00024530516528773 [GeV] +### Total energy deposition in calorimeter by a source track in 43 cells : 0.91278018809085 (GeV) Source track ID 10266 (kaon-,2.440400551569[GeV]) at (342.32513721655,-364.43586600343,532.42138617814) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[6,8] 5.1404378302777e-07 [GeV] -Cell[11,40] 0.00013731789206997 [GeV] -Cell[12,43] 0.0029835315449503 [GeV] -Cell[9,18] 2.1529883961193e-06 [GeV] -Cell[13,29] 0.0015974435886294 [GeV] -Cell[14,31] 6.6672296670731e-06 [GeV] -Cell[12,31] 0.000436202013468 [GeV] -Cell[12,11] 0.00045593783413031 [GeV] -Cell[15,45] 2.0655640488258e-05 [GeV] -Cell[14,44] 0.00095653962828908 [GeV] -Cell[13,45] 0.0011668074404403 [GeV] -Cell[13,34] 0.0021128337429047 [GeV] -Cell[13,30] 0.0013598149862474 [GeV] -Cell[12,7] 2.6703673938755e-09 [GeV] -Cell[11,8] 2.5762737332752e-05 [GeV] -Cell[19,10] 2.2949195175897e-05 [GeV] -Cell[12,26] 0.00037855751453571 [GeV] -Cell[12,30] 0.0030217804099214 [GeV] -Cell[11,23] 0.00017266406078243 [GeV] -Cell[12,38] 1.7580896383151e-08 [GeV] -Cell[15,43] 0.00057411857399165 [GeV] -Cell[15,42] 0.00010190193603216 [GeV] -Cell[11,41] 0.00087699149195635 [GeV] -Cell[12,6] 0.0022263177190248 [GeV] -Cell[12,21] 0.013917222518625 [GeV] -Cell[8,32] 0.0001778318338201 [GeV] -Cell[16,0] 0.0042747233712095 [GeV] -Cell[11,34] 0.00084615459531659 [GeV] -Cell[11,10] 2.8419977752492e-08 [GeV] -Cell[11,35] 1.7289367550234e-05 [GeV] -Cell[10,36] 1.9968239462287e-07 [GeV] -Cell[13,38] 0.009370539062784 [GeV] -Cell[13,42] 0.51161284443264 [GeV] -Cell[13,16] 0.00090226828922423 [GeV] -Cell[13,37] 1.8357217754783e-08 [GeV] -Cell[3,18] 6.7472511524102e-05 [GeV] -Cell[10,43] 8.1880134530365e-09 [GeV] -Cell[12,44] 0.0018707133952174 [GeV] -Cell[14,39] 0.0002168830164228 [GeV] -Cell[14,42] 0.014092334357738 [GeV] -Cell[14,43] 0.0093157928153277 [GeV] -Cell[11,36] 9.6934840819813e-05 [GeV] -Cell[11,6] 2.2238818928599e-08 [GeV] -Cell[12,39] 0.0012466379021507 [GeV] -Cell[12,42] 0.032938162161617 [GeV] -Cell[11,42] 2.2247803062783e-06 [GeV] -Cell[12,41] 0.5917172245006 [GeV] -Cell[12,45] 2.2322315565589e-05 [GeV] -Cell[13,46] 2.3351709195367e-06 [GeV] -Cell[13,44] 0.012154435420958 [GeV] -Cell[13,43] 0.027132699728426 [GeV] -Cell[14,45] 2.354006232963e-08 [GeV] -Cell[13,41] 0.3680011852388 [GeV] -Cell[15,46] 8.780695789028e-07 [GeV] -Cell[12,40] 0.020427889782128 [GeV] -Cell[14,40] 0.00032640560319362 [GeV] -Cell[19,8] 0.0033073374057881 [GeV] -Cell[16,20] 3.2255164114758e-08 [GeV] -Cell[16,15] 3.7092943763128e-05 [GeV] -Cell[16,14] 1.6960678680334e-05 [GeV] -Cell[15,16] 0.00063837691375787 [GeV] -Cell[16,12] 0.0017136999119354 [GeV] -Cell[16,13] 0.0006001743552315 [GeV] -Cell[14,33] 0.0014053223012171 [GeV] -Cell[11,43] 0.0001545001246559 [GeV] -Cell[11,44] 1.1954117439927e-08 [GeV] -Cell[16,11] 0.00051479624433955 [GeV] -Cell[16,47] 0.0076909480267611 [GeV] -Cell[13,40] 0.045480410968745 [GeV] -Cell[13,39] 0.023414722614225 [GeV] -Cell[13,3] 0.0017852114087287 [GeV] -Cell[14,41] 0.0035550172611451 [GeV] -Cell[17,14] 1.5490865480388e-05 [GeV] -Cell[11,37] 3.6739740840858e-05 [GeV] -Cell[11,38] 1.094198381179e-05 [GeV] -Cell[14,30] 0.00040337048632455 [GeV] -Cell[18,11] 3.8215460761535e-05 [GeV] -Cell[18,12] 9.6007688149484e-06 [GeV] -Cell[17,11] 5.2383984439075e-10 [GeV] -Cell[14,3] 7.4079232581425e-05 [GeV] -Cell[14,18] 0.001007010549898 [GeV] -Cell[18,18] 0.00072181979786824 [GeV] -Cell[14,20] 0.00050069325873307 [GeV] -Cell[9,16] 0.0017468789401104 [GeV] -Cell[15,44] 1.6348818520783e-05 [GeV] -Cell[15,0] 0.00040720619824526 [GeV] -Cell[15,47] 0.0035925866153301 [GeV] -### Total energy deposition in calorimeter by a source track in 87 cells : 1.7382847865818 (GeV) +Cell[14,42] 0.0028167434044688 [GeV] +Cell[13,46] 6.1949417807909e-06 [GeV] +Cell[15,38] 0.022319189311043 [GeV] +Cell[13,31] 4.9634836614132e-09 [GeV] +Cell[14,5] 2.1502857271116e-06 [GeV] +Cell[14,4] 9.5560838650727e-05 [GeV] +Cell[12,42] 0.0062516402080057 [GeV] +Cell[13,6] 1.5745928918477e-05 [GeV] +Cell[12,23] 0.00010648282096008 [GeV] +Cell[11,8] 1.5240823813656e-08 [GeV] +Cell[12,4] 0.00051099891 [GeV] +Cell[11,43] 0.0016678649636139 [GeV] +Cell[12,46] 2.6616822196956e-08 [GeV] +Cell[12,22] 0.0001719976648435 [GeV] +Cell[11,14] 0.00067771840551541 [GeV] +Cell[15,36] 0.00076190392368117 [GeV] +Cell[16,36] 0.0032225497158682 [GeV] +Cell[15,37] 1.6267980252223e-05 [GeV] +Cell[11,41] 2.0735046418849e-06 [GeV] +Cell[11,45] 6.8685039877892e-12 [GeV] +Cell[13,37] 0.0060604538087406 [GeV] +Cell[12,2] 8.1337639130652e-09 [GeV] +Cell[15,44] 1.2090672498744e-09 [GeV] +Cell[13,5] 0.0014966697490592 [GeV] +Cell[9,3] 1.1534367048398e-06 [GeV] +Cell[15,26] 6.6938810050488e-12 [GeV] +Cell[16,5] 2.1274037565718e-05 [GeV] +Cell[13,39] 0.00062671678791673 [GeV] +Cell[13,40] 0.012636498513742 [GeV] +Cell[12,8] 1.7424902497737e-05 [GeV] +Cell[12,7] 0.0013546014691432 [GeV] +Cell[12,6] 0.00052453923961014 [GeV] +Cell[12,45] 0.0027704843962797 [GeV] +Cell[12,44] 0.0004121381075355 [GeV] +Cell[13,44] 0.014354627244757 [GeV] +Cell[11,44] 2.5848919733221e-05 [GeV] +Cell[13,45] 0.0040723868385977 [GeV] +Cell[13,43] 0.039578901694443 [GeV] +Cell[13,42] 0.10673180810873 [GeV] +Cell[13,41] 1.0012580104795 [GeV] +Cell[12,43] 0.045784809682862 [GeV] +Cell[12,14] 1.7607329187513e-05 [GeV] +Cell[11,15] 2.5111930081039e-05 [GeV] +Cell[14,44] 0.010593300798115 [GeV] +Cell[14,45] 0.0045429568691314 [GeV] +Cell[14,46] 0.00048624726694356 [GeV] +Cell[14,47] 6.8306690081954e-11 [GeV] +Cell[14,39] 0.00015582760143025 [GeV] +Cell[14,40] 0.0022866535566667 [GeV] +Cell[14,38] 0.00054546440390095 [GeV] +Cell[12,5] 0.0030424157907087 [GeV] +Cell[15,39] 0.0034824178953605 [GeV] +Cell[16,25] 6.2489716560776e-06 [GeV] +Cell[11,42] 0.00089823079749738 [GeV] +Cell[12,41] 0.096287527313811 [GeV] +Cell[16,21] 3.6008868482895e-07 [GeV] +Cell[15,34] 1.3840617612004e-08 [GeV] +Cell[16,34] 1.5438299038692e-05 [GeV] +Cell[12,17] 7.358001312241e-09 [GeV] +Cell[12,21] 3.1491845220444e-10 [GeV] +Cell[14,43] 0.16634509209503 [GeV] +Cell[12,40] 7.234734045187e-05 [GeV] +Cell[16,4] 2.4252167647774e-06 [GeV] +Cell[15,43] 0.0016755123082078 [GeV] +Cell[15,0] 2.9741047183052e-07 [GeV] +Cell[15,46] 2.0059945095795e-05 [GeV] +Cell[15,47] 2.2616063688474e-11 [GeV] +Cell[14,41] 0.0018553437776128 [GeV] +Cell[13,9] 2.9007619712502e-05 [GeV] +Cell[15,25] 2.4518999271095e-06 [GeV] +Cell[15,45] 2.7830306374881e-06 [GeV] +Cell[16,26] 0.00012985388484719 [GeV] +Cell[15,27] 5.2427981245273e-10 [GeV] +Cell[15,40] 0.00084393835832816 [GeV] +### Total energy deposition in calorimeter by a source track in 74 cells : 1.569738430331 (GeV) Source track ID 10264 (kaon0L,0.85324689363199[GeV]) at (443.61976117133,-230.65451978727,564.59737040268) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[14,44] 3.0211707353926e-05 [GeV] -Cell[15,43] 0.028216942707956 [GeV] -Cell[15,42] 0.0004556736287916 [GeV] -Cell[16,43] 0.0024639782081345 [GeV] -Cell[14,43] 0.00025442256045149 [GeV] -Cell[16,45] 0.001413845742056 [GeV] -Cell[15,44] 0.74564266574104 [GeV] -Cell[16,44] 0.038102639947348 [GeV] -Cell[16,42] 0.00094435196161669 [GeV] -### Total energy deposition in calorimeter by a source track in 9 cells : 0.81752473220475 (GeV) +Cell[13,46] 0.0048478943029012 [GeV] +Cell[16,32] 0.0098016844119015 [GeV] +Cell[17,32] 0.0072244842004575 [GeV] +Cell[16,31] 0.0016672904301375 [GeV] +Cell[17,31] 0.0044931814847575 [GeV] +Cell[16,30] 0.00037860900166345 [GeV] +Cell[13,47] 0.00045185857758986 [GeV] +Cell[12,42] 0.01186923016867 [GeV] +Cell[11,23] 0.00091436878388845 [GeV] +Cell[11,24] 0.0017742231227498 [GeV] +Cell[11,25] 3.1799124865302e-05 [GeV] +Cell[12,33] 0.00085284772963486 [GeV] +Cell[11,43] 0.0008710729653601 [GeV] +Cell[12,46] 0.0021140230941765 [GeV] +Cell[11,41] 2.9058306720344e-05 [GeV] +Cell[11,40] 5.7275726703665e-08 [GeV] +Cell[15,44] 1.2793549391176e-05 [GeV] +Cell[12,35] 5.163289426946e-08 [GeV] +Cell[12,34] 0.0066896551297932 [GeV] +Cell[13,40] 3.3874704968184e-07 [GeV] +Cell[12,45] 0.004236215156571 [GeV] +Cell[12,44] 0.043663311527565 [GeV] +Cell[13,44] 0.19859518328142 [GeV] +Cell[11,44] 2.5526986463547e-06 [GeV] +Cell[13,45] 0.024212940531806 [GeV] +Cell[13,43] 0.0081716982154253 [GeV] +Cell[13,42] 0.01020821444402 [GeV] +Cell[13,41] 0.00017449777397303 [GeV] +Cell[12,43] 0.016241056163462 [GeV] +Cell[13,21] 5.6471326388419e-09 [GeV] +Cell[14,44] 0.00022006174814976 [GeV] +Cell[14,45] 0.0057731112997664 [GeV] +Cell[14,46] 0.00026611302026356 [GeV] +Cell[14,47] 0.00019607840128208 [GeV] +Cell[14,0] 4.2603068322933e-08 [GeV] +Cell[16,28] 2.5788163766265e-06 [GeV] +Cell[16,29] 0.00037493758169967 [GeV] +Cell[11,42] 0.00088549526303211 [GeV] +Cell[12,41] 0.016864702288703 [GeV] +Cell[14,19] 0.00027458703827028 [GeV] +Cell[18,33] 0.0036846493367041 [GeV] +Cell[17,33] 0.000161115978417 [GeV] +Cell[12,40] 0.00066820628574863 [GeV] +Cell[15,45] 0.00080259631593628 [GeV] +Cell[18,10] 3.4589954302646e-06 [GeV] +Cell[17,41] 0.00019978083654428 [GeV] +Cell[17,30] 0.0023123965319015 [GeV] +Cell[17,28] 0.00097903267501056 [GeV] +Cell[17,29] 1.8744334986081e-05 [GeV] +Cell[18,32] 0.0045453489725108 [GeV] +Cell[13,20] 4.2155892565802e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 51 cells : 0.39780539169672 (GeV) Source track ID 10255 (pi+,4.2124294839362[GeV]) at (194.28233765485,-460.71072624302,515.86221956022) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[8,10] 0.0013622303091572 [GeV] -Cell[14,29] 0.00038491356762017 [GeV] -Cell[8,13] 0.00051099891 [GeV] -Cell[9,7] 0.00051269656373472 [GeV] -Cell[13,26] 3.9824119907053e-06 [GeV] -Cell[3,25] 0.00090071728950654 [GeV] -Cell[9,8] 0.00061405593910695 [GeV] -Cell[11,40] 2.4127075448632e-11 [GeV] -Cell[9,1] 0.0011998759084159 [GeV] -Cell[16,30] 0.00070513888981156 [GeV] -Cell[3,43] 0.0017015479705033 [GeV] -Cell[15,38] 8.695236989297e-05 [GeV] -Cell[9,17] 1.6926394904431e-06 [GeV] -Cell[9,18] 0.00012610602042776 [GeV] -Cell[10,41] 6.4322917527306e-06 [GeV] -Cell[3,26] 0.0019211051667351 [GeV] -Cell[9,23] 1.0388642374892e-05 [GeV] -Cell[10,40] 0.00027182987212302 [GeV] -Cell[9,4] 3.9852171767052e-09 [GeV] -Cell[10,4] 1.8001305875259e-08 [GeV] -Cell[13,27] 9.3132257461548e-12 [GeV] -Cell[13,28] 0.0029709501299983 [GeV] -Cell[13,29] 0.01435337558046 [GeV] -Cell[13,13] 0.0032384694856318 [GeV] -Cell[7,23] 0.0059450835810418 [GeV] -Cell[12,32] 1.5963654732332e-08 [GeV] -Cell[13,32] 0.00062010162594595 [GeV] -Cell[16,32] 9.1793448181079e-06 [GeV] -Cell[16,31] 0.0028894185083504 [GeV] -Cell[13,31] 7.696725775304e-06 [GeV] -Cell[15,30] 0.00059660195398455 [GeV] -Cell[13,15] 1.1804578651208e-05 [GeV] -Cell[14,44] 0.001741756962508 [GeV] -Cell[10,46] 2.1229904268694e-07 [GeV] -Cell[14,28] 1.1216785042279e-05 [GeV] -Cell[13,34] 0.0084137763578859 [GeV] -Cell[13,30] 0.0024849710433962 [GeV] -Cell[11,7] 0.00088657853140228 [GeV] -Cell[14,37] 0.018356367384702 [GeV] -Cell[17,18] 0.0017016673727845 [GeV] -Cell[11,8] 5.6156652281061e-06 [GeV] -Cell[12,2] 2.3106351990236e-05 [GeV] -Cell[12,28] 0.0044399976914969 [GeV] -Cell[12,29] 0.026399762192813 [GeV] -Cell[12,27] 7.6432608434516e-06 [GeV] -Cell[11,28] 2.8422080653286e-05 [GeV] -Cell[11,30] 2.3126688150796e-06 [GeV] -Cell[12,30] 0.00047628242990936 [GeV] -Cell[3,45] 0.00013036337905214 [GeV] -Cell[3,1] 0.00046543324181778 [GeV] -Cell[3,0] 0.00079039777572689 [GeV] -Cell[12,35] 0.0024595078837703 [GeV] -Cell[12,36] 0.024171172812071 [GeV] -Cell[13,35] 0.0066243718341075 [GeV] -Cell[12,34] 0.034524936261606 [GeV] -Cell[11,26] 0.00077883634809182 [GeV] -Cell[12,38] 0.095912314084922 [GeV] -Cell[12,37] 0.10345811862698 [GeV] -Cell[6,15] 4.2411857459228e-05 [GeV] -Cell[8,19] 1.6461888910271e-05 [GeV] -Cell[12,21] 1.2324646522757e-06 [GeV] -Cell[11,27] 4.0508842289455e-08 [GeV] -Cell[9,22] 1.5160740964347e-05 [GeV] -Cell[10,47] 4.6016542597613e-05 [GeV] -Cell[11,2] 2.5208483886672e-05 [GeV] -Cell[10,2] 0.0061814205477076 [GeV] -Cell[13,17] 0.00032265993802082 [GeV] -Cell[13,18] 1.732255972604e-05 [GeV] -Cell[14,36] 0.01060800632151 [GeV] -Cell[10,35] 1.1310150352074e-05 [GeV] -Cell[10,34] 0.000268583096984 [GeV] -Cell[15,33] 0.0014015895966029 [GeV] -Cell[3,44] 0.0029311418266981 [GeV] -Cell[2,44] 0.00018413669280426 [GeV] -Cell[2,1] 8.0818800938687e-08 [GeV] -Cell[11,35] 1.8141404325434e-09 [GeV] -Cell[9,3] 5.5301188695012e-08 [GeV] -Cell[11,11] 2.7844922733493e-06 [GeV] -Cell[12,33] 0.001734584161443 [GeV] -Cell[11,1] 0.0012845592578363 [GeV] -Cell[5,6] 0.00046413645020903 [GeV] -Cell[13,33] 0.0047868267458364 [GeV] -Cell[15,7] 8.9337820509172e-07 [GeV] -Cell[14,7] 0.0014392023360351 [GeV] -Cell[13,38] 0.69214991330736 [GeV] -Cell[14,15] 3.6308903190729e-09 [GeV] -Cell[14,14] 0.0012027575386508 [GeV] -Cell[15,14] 1.1112479318399e-05 [GeV] -Cell[12,1] 0.00042094434626779 [GeV] -Cell[14,35] 0.0004928360796257 [GeV] -Cell[14,34] 0.0036930448218089 [GeV] -Cell[13,36] 0.014320062395744 [GeV] -Cell[13,37] 0.15335517436656 [GeV] -Cell[0,43] 3.1947775336448e-05 [GeV] -Cell[8,4] 0.00037160534474019 [GeV] -Cell[0,38] 1.5282738662791e-05 [GeV] -Cell[10,43] 0.0036291615690511 [GeV] -Cell[2,0] 3.2034261779813e-05 [GeV] -Cell[2,43] 7.8730412508321e-06 [GeV] -Cell[8,36] 0.00087061294801881 [GeV] -Cell[8,46] 7.0763289828847e-05 [GeV] -Cell[8,45] 8.0477603478357e-07 [GeV] -Cell[14,39] 0.36361064970954 [GeV] -Cell[12,20] 6.2946154503152e-06 [GeV] -Cell[11,36] 0.0034029191045602 [GeV] -Cell[9,19] 2.9875529889978e-09 [GeV] -Cell[12,39] 0.87806396650206 [GeV] -Cell[12,42] 5.8554953514999e-05 [GeV] -Cell[11,42] 1.3355212405031e-05 [GeV] -Cell[12,41] 0.00059413876385167 [GeV] -Cell[10,3] 2.5025828541175e-05 [GeV] -Cell[12,45] 6.7022661096416e-07 [GeV] -Cell[12,47] 0.0042945425647672 [GeV] -Cell[13,1] 0.0031030777977812 [GeV] -Cell[11,47] 0.0021298123338314 [GeV] -Cell[13,41] 0.0010773996505235 [GeV] -Cell[14,47] 0.068020560548789 [GeV] -Cell[15,46] 1.095439074561e-09 [GeV] -Cell[14,0] 0.00076504984134317 [GeV] -Cell[14,1] 4.1902822090378e-08 [GeV] -Cell[14,21] 6.297113141045e-06 [GeV] -Cell[12,40] 0.0019040601473343 [GeV] -Cell[14,38] 0.12711483819877 [GeV] -Cell[14,40] 0.017153435531824 [GeV] -Cell[14,5] 1.7251004464924e-09 [GeV] -Cell[12,5] 7.7457359793698e-08 [GeV] -Cell[15,37] 0.0021270618994941 [GeV] -Cell[16,20] 1.9616069330368e-05 [GeV] -Cell[17,20] 3.6728074977873e-05 [GeV] -Cell[16,19] 0.001218552598796 [GeV] -Cell[16,14] 0.00082011005000868 [GeV] -Cell[16,33] 3.2861224996736e-05 [GeV] -Cell[11,29] 0.00039093097502871 [GeV] -Cell[14,25] 3.5302249094684e-05 [GeV] -Cell[15,1] 8.6051766120363e-06 [GeV] -Cell[17,15] 0.0029124223370407 [GeV] -Cell[17,16] 1.246313588581e-07 [GeV] -Cell[12,8] 0.00055191083893146 [GeV] -Cell[13,40] 0.014655485776525 [GeV] -Cell[13,39] 0.025916941453495 [GeV] -Cell[17,14] 0.007035762886072 [GeV] -Cell[11,37] 0.0044376760096909 [GeV] -Cell[14,3] 1.1807715374744e-05 [GeV] -Cell[14,20] 0.00013205911644013 [GeV] -Cell[15,0] 1.2090166856069e-05 [GeV] -Cell[15,47] 1.6568412567722e-05 [GeV] -Cell[12,4] 3.6885805719066e-05 [GeV] -Cell[13,24] 8.4000102651771e-06 [GeV] -Cell[14,26] 0.0012069271666545 [GeV] -Cell[13,25] 0.0014540340906083 [GeV] -Cell[10,15] 0.00087980746184154 [GeV] -Cell[11,12] 0.00036295013655933 [GeV] -Cell[11,13] 7.7244788083704e-05 [GeV] -Cell[17,19] 0.0025964747178749 [GeV] -Cell[7,19] 0.0010515992527143 [GeV] -Cell[10,18] 0.00095968581527779 [GeV] -Cell[12,0] 2.4040932390108e-05 [GeV] -Cell[7,15] 6.152910910896e-05 [GeV] -Cell[6,16] 5.6318923307117e-06 [GeV] -Cell[6,24] 0.00068060112821024 [GeV] -Cell[17,17] 1.4616744010709e-09 [GeV] -Cell[6,37] 0.0011285195464556 [GeV] -Cell[16,29] 2.4813334050123e-05 [GeV] -Cell[15,6] 4.6918947418817e-08 [GeV] -Cell[15,18] 1.353833131725e-05 [GeV] -Cell[7,21] 2.0909087412292e-05 [GeV] -Cell[18,25] 0.0011087060883836 [GeV] -Cell[15,20] 8.1509980082046e-06 [GeV] -Cell[13,2] 0.00029963179989329 [GeV] -Cell[16,4] 0.00062901442549503 [GeV] -Cell[16,2] 8.3922583223739e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 171 cells : 2.8220776632729 (GeV) +Cell[13,35] 7.2415268321379e-05 [GeV] +Cell[15,38] 1.0584472811994 [GeV] +Cell[16,37] 0.21584013152753 [GeV] +Cell[15,36] 0.016592125790235 [GeV] +Cell[16,36] 4.0271178876537e-05 [GeV] +Cell[15,37] 0.072397480205252 [GeV] +Cell[13,37] 0.0089763490872732 [GeV] +Cell[13,39] 0.011877734642707 [GeV] +Cell[13,40] 6.2540053153839e-05 [GeV] +Cell[12,38] 0.066917255078148 [GeV] +Cell[12,39] 0.060638106499169 [GeV] +Cell[13,38] 0.27297774481327 [GeV] +Cell[13,41] 2.2838660242996e-09 [GeV] +Cell[15,35] 0.036923534132574 [GeV] +Cell[14,36] 0.0040000325408115 [GeV] +Cell[14,37] 0.073258074081932 [GeV] +Cell[16,38] 0.019172682185919 [GeV] +Cell[14,39] 0.06263678674115 [GeV] +Cell[14,40] 0.0094316888700429 [GeV] +Cell[14,38] 0.9567547359399 [GeV] +Cell[16,35] 3.1913931597956e-06 [GeV] +Cell[15,39] 0.073710567906088 [GeV] +Cell[13,36] 0.0015144349265938 [GeV] +Cell[16,39] 0.0091013694298206 [GeV] +Cell[15,41] 7.1246006205001e-06 [GeV] +Cell[12,40] 7.4705331246605e-06 [GeV] +Cell[14,41] 0.0028133311935009 [GeV] +Cell[15,40] 0.0087197358646645 [GeV] +Cell[14,35] 3.0797811970388e-05 [GeV] +Cell[16,40] 0.050283131428548 [GeV] +Cell[17,39] 3.3818650990725e-11 [GeV] +Cell[16,41] 0.0016249944765743 [GeV] +### Total energy deposition in calorimeter by a source track in 32 cells : 3.0948331217181 (GeV) Source track ID 9358 (kaon+,2.4810089336886[GeV]) at (286.88959914964,-409.5050157199,-438.61870457239) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,43] 0.0016239039669457 [GeV] -Cell[6,43] 0.00031158674121366 [GeV] -Cell[7,37] 0.00087586698992254 [GeV] -Cell[7,39] 0.0018972537715867 [GeV] -Cell[7,38] 0.00049016824122452 [GeV] -Cell[7,40] 0.44813648754662 [GeV] -Cell[5,40] 0.026582062299656 [GeV] -Cell[3,32] 0.0010363466824066 [GeV] -Cell[4,33] 4.7937749776338e-05 [GeV] -Cell[2,38] 0.00062783862187587 [GeV] -Cell[5,37] 3.5417526128754e-05 [GeV] -Cell[5,43] 0.0026082859205786 [GeV] -Cell[6,44] 2.1880974298597e-05 [GeV] -Cell[6,38] 9.2609710236502e-07 [GeV] -Cell[5,42] 0.003998568130354 [GeV] -Cell[6,39] 0.0088179040998381 [GeV] -Cell[5,33] 2.8728099402997e-07 [GeV] -Cell[6,45] 5.5570378572156e-07 [GeV] -Cell[4,34] 0.012884482415783 [GeV] -Cell[6,42] 0.0019561367591592 [GeV] -Cell[6,41] 0.034748085316418 [GeV] -Cell[4,35] 0.00030295278672825 [GeV] -Cell[5,38] 0.0020575062197852 [GeV] -Cell[7,45] 4.3711863960425e-06 [GeV] -Cell[4,43] 1.243416863872e-08 [GeV] -Cell[0,37] 1.2815591006074e-05 [GeV] -Cell[5,34] 0.0016090878496441 [GeV] -Cell[8,40] 6.4835514322567e-05 [GeV] -Cell[1,37] 0.00024883338591246 [GeV] -Cell[1,38] 9.5386499673396e-06 [GeV] -Cell[5,39] 0.11449349191033 [GeV] -Cell[2,37] 0.00034225602761819 [GeV] -Cell[3,39] 0.0025398851320867 [GeV] -Cell[6,46] 6.7225088287159e-09 [GeV] -Cell[3,35] 1.0629719326971e-11 [GeV] -Cell[3,38] 0.0068071164387935 [GeV] -Cell[3,31] 0.0010506589084549 [GeV] -Cell[3,34] 0.0025052264632863 [GeV] -Cell[7,41] 0.038960498808229 [GeV] -Cell[3,37] 0.012370235839445 [GeV] -Cell[4,37] 0.00066442678347482 [GeV] -Cell[3,33] 0.0007217691744554 [GeV] -Cell[6,40] 0.33127821114223 [GeV] -Cell[7,42] 0.18231782526965 [GeV] -Cell[8,41] 0.00029183375732043 [GeV] -Cell[7,44] 0.0031095005712402 [GeV] -Cell[8,42] 0.0020452119241675 [GeV] -Cell[5,41] 0.09831907567228 [GeV] -Cell[4,39] 0.013963503850824 [GeV] -Cell[4,38] 0.025316979370575 [GeV] -Cell[4,40] 0.0085185701327314 [GeV] -Cell[4,41] 0.002411598581977 [GeV] -Cell[3,40] 0.002011497466953 [GeV] -Cell[2,40] 1.7066729924409e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 54 cells : 1.4010513334796 (GeV) +Cell[4,11] 3.1891257181996e-05 [GeV] +Cell[8,9] 8.3871986716986e-06 [GeV] +Cell[7,33] 0.0021792825474473 [GeV] +Cell[6,37] 0.0058442819666198 [GeV] +Cell[7,41] 0.020506119845451 [GeV] +Cell[7,36] 8.0157702768702e-09 [GeV] +Cell[9,19] 0.00029498333906055 [GeV] +Cell[8,46] 0.0018172203708857 [GeV] +Cell[6,47] 8.032509712848e-05 [GeV] +Cell[7,42] 0.0041971142757339 [GeV] +Cell[7,6] 5.7210694649257e-07 [GeV] +Cell[9,8] 0.0003881828679195 [GeV] +Cell[7,15] 8.7438669579569e-06 [GeV] +Cell[6,12] 7.9596488908578e-05 [GeV] +Cell[7,26] 1.2336981744738e-05 [GeV] +Cell[6,25] 3.9041000709403e-06 [GeV] +Cell[6,0] 0.00084133725938796 [GeV] +Cell[7,46] 7.3036869707721e-10 [GeV] +Cell[8,41] 0.00076602901893697 [GeV] +Cell[6,40] 0.017756828283246 [GeV] +Cell[8,40] 0.017667757219152 [GeV] +Cell[8,38] 0.0067431720054982 [GeV] +Cell[8,26] 0.00076940039538798 [GeV] +Cell[7,43] 0.0018084683901932 [GeV] +Cell[2,38] 8.6575164459646e-10 [GeV] +Cell[5,45] 2.4504195380359e-08 [GeV] +Cell[8,0] 5.6371805840172e-07 [GeV] +Cell[7,5] 1.2774876668118e-06 [GeV] +Cell[11,36] 4.6695777273271e-06 [GeV] +Cell[10,28] 1.0374028427123e-06 [GeV] +Cell[6,36] 6.0884542563144e-10 [GeV] +Cell[5,25] 1.0795171197969e-05 [GeV] +Cell[5,24] 0.00018016288656395 [GeV] +Cell[5,36] 0.00012408293664339 [GeV] +Cell[8,42] 0.0013907637456107 [GeV] +Cell[17,23] 7.2353859764007e-07 [GeV] +Cell[9,44] 2.6372712227385e-09 [GeV] +Cell[6,39] 0.006091477345311 [GeV] +Cell[4,34] 5.2972861396938e-07 [GeV] +Cell[12,24] 7.4433225672692e-06 [GeV] +Cell[10,26] 4.936009645462e-11 [GeV] +Cell[4,42] 0.00011472478668009 [GeV] +Cell[4,43] 0.0038838155360976 [GeV] +Cell[4,44] 0.0046538851047355 [GeV] +Cell[6,24] 0.0051510462779869 [GeV] +Cell[8,47] 1.8190462469647e-11 [GeV] +Cell[5,37] 0.0036191370441942 [GeV] +Cell[9,45] 2.2811011876911e-07 [GeV] +Cell[6,20] 1.850201664206e-05 [GeV] +Cell[5,43] 0.00033019188767662 [GeV] +Cell[8,24] 0.0029987310722552 [GeV] +Cell[6,1] 1.0653337812982e-07 [GeV] +Cell[10,27] 1.0412915950269e-05 [GeV] +Cell[11,37] 0.00042586268352227 [GeV] +Cell[11,38] 0.00058638962370443 [GeV] +Cell[10,37] 0.00087300084800711 [GeV] +Cell[6,31] 5.93840770307e-06 [GeV] +Cell[6,46] 3.8174013297976e-08 [GeV] +Cell[6,45] 8.7245110159984e-07 [GeV] +Cell[4,2] 0.00061238756691057 [GeV] +Cell[9,41] 0.0011062365496682 [GeV] +Cell[9,40] 0.00042440567173765 [GeV] +Cell[18,27] 0.00025848442336712 [GeV] +Cell[9,42] 8.3574875588965e-09 [GeV] +Cell[7,1] 0.0001774584791003 [GeV] +Cell[7,0] 5.0809783159139e-05 [GeV] +Cell[4,15] 3.608874976635e-12 [GeV] +Cell[1,44] 1.2872032561972e-07 [GeV] +Cell[5,23] 0.0026473905048274 [GeV] +Cell[8,43] 0.064998645566117 [GeV] +Cell[8,44] 0.0027205598356904 [GeV] +Cell[5,34] 1.1713974946133e-05 [GeV] +Cell[6,44] 0.0017643122320623 [GeV] +Cell[3,17] 0.00038058509430675 [GeV] +Cell[5,39] 4.3605319579228e-05 [GeV] +Cell[3,44] 0.00058470889752812 [GeV] +Cell[6,38] 0.10930876187224 [GeV] +Cell[1,0] 0.00017282467347161 [GeV] +Cell[1,18] 2.9183980397647e-05 [GeV] +Cell[2,5] 6.1513856053352e-09 [GeV] +Cell[3,32] 1.0991492308676e-07 [GeV] +Cell[3,45] 0.0023968827948363 [GeV] +Cell[5,42] 0.0013519256984552 [GeV] +Cell[5,41] 0.00039774667070276 [GeV] +Cell[3,16] 0.00014825875638746 [GeV] +Cell[6,41] 0.086119937330873 [GeV] +Cell[5,35] 9.512842661934e-06 [GeV] +Cell[5,38] 0.0015512213947476 [GeV] +Cell[2,1] 1.4647151840563e-07 [GeV] +Cell[2,0] 5.3976837079972e-09 [GeV] +Cell[5,40] 1.2523743189604e-05 [GeV] +Cell[5,46] 1.7667193285888e-05 [GeV] +Cell[4,1] 6.7343031485052e-06 [GeV] +Cell[3,46] 1.1617382858731e-07 [GeV] +Cell[9,39] 4.4274094398133e-07 [GeV] +Cell[7,39] 0.059049653705608 [GeV] +Cell[7,40] 0.83249556963912 [GeV] +Cell[7,38] 0.014372694968188 [GeV] +Cell[7,44] 1.4543863914014e-06 [GeV] +Cell[6,11] 0.00051370901608209 [GeV] +Cell[17,1] 5.9831512167989e-05 [GeV] +Cell[17,24] 4.4889163859807e-08 [GeV] +Cell[18,21] 6.9269367086235e-06 [GeV] +Cell[5,33] 3.1315714287757e-05 [GeV] +Cell[10,38] 0.00027849647631047 [GeV] +Cell[11,39] 0.0073322609519791 [GeV] +Cell[17,3] 4.2158710130025e-06 [GeV] +Cell[6,43] 0.0045717379022759 [GeV] +Cell[7,37] 0.0015720677492633 [GeV] +Cell[8,39] 0.0068032223863026 [GeV] +Cell[15,7] 1.6871843021363e-05 [GeV] +Cell[17,2] 0.00026968978476395 [GeV] +Cell[16,2] 1.5199921108433e-09 [GeV] +Cell[8,37] 0.003161897087398 [GeV] +Cell[9,38] 0.00018813756616726 [GeV] +Cell[5,32] 4.9838997074403e-07 [GeV] +Cell[5,12] 0.0002613634013901 [GeV] +Cell[6,23] 0.0069287512719736 [GeV] +Cell[6,42] 0.16555935683331 [GeV] +Cell[5,22] 9.8358879040461e-06 [GeV] +Cell[18,43] 4.3785878515337e-06 [GeV] +Cell[18,26] 6.0138674623886e-05 [GeV] +Cell[18,28] 5.1832064559676e-07 [GeV] +Cell[6,22] 0.0030846887922195 [GeV] +Cell[7,34] 9.9737038544845e-06 [GeV] +Cell[18,20] 0.00020006452264636 [GeV] +Cell[6,19] 5.3333513581038e-06 [GeV] +Cell[7,21] 0.0011033954239385 [GeV] +Cell[8,19] 8.7945407722145e-07 [GeV] +Cell[7,47] 4.9873710850079e-10 [GeV] +Cell[5,44] 6.7574059357867e-08 [GeV] +Cell[2,15] 7.9040377167985e-06 [GeV] +Cell[4,45] 6.3125976149308e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 133 cells : 1.4976279063412 (GeV) Source track ID 9662 (gamma,0.19649521790461[GeV]) at (-493.903211094,77.843548679585,489.46550356119) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[13,30] 0.00033917893808502 [GeV] -Cell[12,22] 0.18493746232051 [GeV] -Cell[12,23] 0.0049241803380981 [GeV] -Cell[12,21] 0.0052539464643478 [GeV] -Cell[19,47] 0.00071739445919995 [GeV] -Cell[13,21] 0.00032305538436887 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.19649521790461 (GeV) +Cell[11,47] 0.00059128780912342 [GeV] +Cell[13,22] 0.0089506298057763 [GeV] +Cell[12,23] 0.014380579336944 [GeV] +Cell[12,24] 0.00044255764174052 [GeV] +Cell[12,22] 0.16714152293368 [GeV] +Cell[12,8] 0.0011266111262226 [GeV] +Cell[13,23] 0.0038620292511267 [GeV] +### Total energy deposition in calorimeter by a source track in 7 cells : 0.19649521790461 (GeV) Source track ID 9663 (gamma,0.89164369738079[GeV]) at (-456.12361587977,204.82003573078,886.89513832554) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[14,28] 0.00083995438406702 [GeV] -Cell[13,30] 0.0015035917888205 [GeV] -Cell[14,27] 0.00070831652631759 [GeV] -Cell[14,35] 0.00051099891 [GeV] -Cell[14,34] 0.0004806345841941 [GeV] -Cell[14,21] 0.031821062684667 [GeV] -Cell[16,37] 0.00078609982194268 [GeV] -Cell[16,39] 0.00055151322342368 [GeV] -Cell[16,35] 0.00051099001021241 [GeV] -Cell[15,21] 0.00095750162797384 [GeV] -Cell[14,20] 0.82010832427867 [GeV] -Cell[15,20] 0.025948155528688 [GeV] -Cell[13,12] 0.0019444463687981 [GeV] -Cell[14,19] 0.0031840162342524 [GeV] -Cell[15,19] 0.00066714577905604 [GeV] -### Total energy deposition in calorimeter by a source track in 15 cells : 0.89052275175108 (GeV) +Cell[12,46] 0.00050264342686185 [GeV] +Cell[13,30] 0.00058345856173573 [GeV] +Cell[14,21] 0.031243996493027 [GeV] +Cell[15,19] 0.0015962587232416 [GeV] +Cell[14,19] 0.0093764302400966 [GeV] +Cell[14,20] 0.82242082916587 [GeV] +Cell[15,20] 0.004694736762678 [GeV] +Cell[18,42] 0.00038430107456841 [GeV] +Cell[14,10] 0.0005752003953983 [GeV] +Cell[15,21] 0.0062308970214957 [GeV] +Cell[14,24] 0.0019123526702979 [GeV] +Cell[13,11] 0.0012104411248132 [GeV] +### Total energy deposition in calorimeter by a source track in 12 cells : 0.88073154566009 (GeV) Source track ID 9648 (pi-,0.85434396776798[GeV]) at (-164.66186493542,472.10853649981,872.61282272391) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[15,41] 3.889316925779e-05 [GeV] -Cell[13,10] 0.00058132929707062 [GeV] -Cell[12,11] 2.6112890168406e-08 [GeV] -Cell[11,7] 0.00015358703879399 [GeV] -Cell[11,8] 0.00051731989976645 [GeV] -Cell[12,21] 0.00051099891 [GeV] -Cell[11,20] 0.00099187874259577 [GeV] -Cell[18,22] 4.578944105765e-05 [GeV] -Cell[11,10] 2.1470850333571e-07 [GeV] -Cell[12,24] 0.00087071633355299 [GeV] -Cell[13,11] 2.1217813744443e-05 [GeV] -Cell[14,15] 7.7979284076719e-05 [GeV] -Cell[14,14] 0.16016531794724 [GeV] -Cell[15,15] 0.00021978017457468 [GeV] -Cell[12,18] 0.0014760411812268 [GeV] -Cell[12,10] 0.00020922183084099 [GeV] -Cell[12,20] 0.0018995511952927 [GeV] -Cell[12,9] 5.7826284827343e-05 [GeV] -Cell[14,0] 0.00021645847973434 [GeV] -Cell[14,1] 0.00082677141520719 [GeV] -Cell[14,2] 2.8866556065623e-05 [GeV] -Cell[17,32] 0.0034839315019 [GeV] -Cell[14,13] 0.0072871627320379 [GeV] -Cell[14,12] 6.1429823523213e-05 [GeV] -Cell[15,16] 5.7606030168245e-11 [GeV] -Cell[15,13] 4.4685512648357e-08 [GeV] -Cell[16,34] 0.25094217024947 [GeV] -Cell[15,1] 0.00010820112568399 [GeV] -Cell[13,19] 3.5166255240711e-05 [GeV] -Cell[15,0] 1.9452759588603e-05 [GeV] -Cell[13,24] 0.0035676150067067 [GeV] -Cell[13,12] 6.2722303300689e-05 [GeV] -Cell[18,42] 0.0010349756472922 [GeV] -Cell[11,18] 8.5533729359554e-05 [GeV] -Cell[12,19] 0.00046430101374619 [GeV] -Cell[17,36] 0.0024159110799904 [GeV] -Cell[18,21] 1.4413685712498e-06 [GeV] -Cell[18,23] 3.3371323149822e-05 [GeV] -Cell[19,23] 1.1263182386756e-10 [GeV] -Cell[18,24] 4.699724627244e-09 [GeV] -Cell[17,33] 0.0017688482038912 [GeV] -Cell[13,9] 0.00095941342102572 [GeV] -Cell[17,34] 0.10150290429273 [GeV] -### Total energy deposition in calorimeter by a source track in 43 cells : 0.542744387209 (GeV) +Cell[13,46] 0.0012448974094241 [GeV] +Cell[13,35] 0.0062548971017847 [GeV] +Cell[18,4] 0.00022251310469164 [GeV] +Cell[19,4] 0.00035934748840771 [GeV] +Cell[18,3] 1.257192080061e-06 [GeV] +Cell[11,31] 5.0084840664795e-06 [GeV] +Cell[15,31] 1.4621662674472e-05 [GeV] +Cell[15,30] 1.4227248728275e-05 [GeV] +Cell[16,30] 6.1586170016426e-05 [GeV] +Cell[15,28] 0.00087795960998012 [GeV] +Cell[13,47] 4.2392349130523e-05 [GeV] +Cell[14,25] 0.0023692299622786 [GeV] +Cell[13,4] 0.00031828788642235 [GeV] +Cell[15,2] 0.00058609321602307 [GeV] +Cell[11,30] 0.0021677148225049 [GeV] +Cell[15,13] 0.0011219268527268 [GeV] +Cell[14,13] 0.0034374721431058 [GeV] +Cell[14,12] 0.0002093086655321 [GeV] +Cell[11,5] 5.1531952049118e-06 [GeV] +Cell[11,4] 2.0147421368165e-05 [GeV] +Cell[4,34] 8.2298728508249e-05 [GeV] +Cell[12,47] 6.0475420591501e-06 [GeV] +Cell[12,46] 1.3732386605625e-09 [GeV] +Cell[10,32] 5.3691737465897e-05 [GeV] +Cell[14,26] 0.0010293748025167 [GeV] +Cell[14,27] 0.014098276303048 [GeV] +Cell[15,1] 0.020028928635004 [GeV] +Cell[15,11] 7.5000991637353e-06 [GeV] +Cell[11,41] 0.00047997865465516 [GeV] +Cell[11,40] 7.7598486669103e-05 [GeV] +Cell[12,3] 0.00066829114221136 [GeV] +Cell[14,28] 0.0012522756410121 [GeV] +Cell[14,29] 0.00069795940789076 [GeV] +Cell[10,31] 0.00091097467030135 [GeV] +Cell[6,46] 1.351146583329e-05 [GeV] +Cell[3,41] 0.0017314069568745 [GeV] +Cell[13,2] 0.00025003270930722 [GeV] +Cell[13,3] 4.7067657704815e-05 [GeV] +Cell[14,1] 4.7748565411894e-05 [GeV] +Cell[17,46] 0.0015927764513684 [GeV] +Cell[18,46] 0.0020054652057549 [GeV] +Cell[17,14] 0.00016932454107678 [GeV] +Cell[15,26] 0.002283851121325 [GeV] +Cell[12,39] 8.0628266298504e-05 [GeV] +Cell[11,18] 0.00050075843284924 [GeV] +Cell[12,19] 1.7898396443343e-05 [GeV] +Cell[16,15] 0.0001782644641374 [GeV] +Cell[13,45] 1.3090332191041e-05 [GeV] +Cell[12,0] 0.00028264286301373 [GeV] +Cell[14,23] 7.9031173954718e-06 [GeV] +Cell[14,14] 0.30359380373021 [GeV] +Cell[12,14] 6.8465952062979e-07 [GeV] +Cell[13,13] 0.058882978599389 [GeV] +Cell[13,12] 0.017218186176167 [GeV] +Cell[12,13] 0.0015303157287173 [GeV] +Cell[17,1] 9.7771408036351e-10 [GeV] +Cell[13,0] 4.941074814451e-05 [GeV] +Cell[15,19] 3.2496695857844e-05 [GeV] +Cell[14,40] 0.00021001778986283 [GeV] +Cell[18,2] 7.6437136158347e-09 [GeV] +Cell[18,38] 5.8523748807602e-06 [GeV] +Cell[17,15] 7.658226212618e-05 [GeV] +Cell[16,29] 0.00045567929727292 [GeV] +Cell[13,36] 0.0017407103075312 [GeV] +Cell[18,0] 2.2303953642222e-08 [GeV] +Cell[18,47] 1.16247169899e-08 [GeV] +Cell[16,11] 0.00032705422691811 [GeV] +Cell[17,37] 3.4279348154087e-05 [GeV] +Cell[17,36] 0.0005745318351328 [GeV] +Cell[17,35] 0.0017650475907792 [GeV] +Cell[12,41] 0.0011895677668604 [GeV] +Cell[16,9] 0.00045970340549661 [GeV] +Cell[16,8] 1.4248663278522e-06 [GeV] +Cell[16,10] 0.0004327862511924 [GeV] +Cell[15,16] 2.1673199662473e-06 [GeV] +Cell[11,39] 3.5201836567467e-08 [GeV] +Cell[15,34] 1.2714840995613e-05 [GeV] +Cell[16,44] 4.6548671671189e-06 [GeV] +Cell[15,18] 2.0741686836118e-05 [GeV] +Cell[14,19] 2.2083064250182e-06 [GeV] +Cell[17,47] 0.00017618394143483 [GeV] +Cell[17,0] 8.8188230181458e-06 [GeV] +Cell[12,40] 7.2858439816628e-06 [GeV] +Cell[15,0] 0.0053594860374939 [GeV] +Cell[15,47] 0.0066693434858575 [GeV] +Cell[14,41] 0.00017682845756462 [GeV] +Cell[15,27] 0.00010184058444429 [GeV] +Cell[17,30] 2.1228321391391e-05 [GeV] +Cell[17,29] 8.6702678498114e-05 [GeV] +Cell[16,41] 0.0010938333440492 [GeV] +Cell[17,2] 2.1487283129318e-07 [GeV] +Cell[15,20] 0.0019805260880685 [GeV] +Cell[14,24] 0.0029048331758597 [GeV] +Cell[14,15] 0.020505722350931 [GeV] +Cell[13,15] 6.6977914897507e-05 [GeV] +Cell[17,12] 9.6166888251901e-06 [GeV] +Cell[15,14] 0.003959994410005 [GeV] +Cell[15,15] 0.0012080503785768 [GeV] +Cell[13,14] 0.00043023253350259 [GeV] +Cell[14,16] 0.0042763364464462 [GeV] +Cell[18,24] 0.0023692436460571 [GeV] +Cell[10,18] 1.6798103430347e-06 [GeV] +Cell[13,34] 0.00014495188282558 [GeV] +Cell[10,30] 0.0052391880634944 [GeV] +Cell[12,15] 1.9783479263992e-05 [GeV] +Cell[16,47] 0.00017346928292079 [GeV] +Cell[10,3] 3.4426650498062e-05 [GeV] +Cell[10,2] 5.9411118796561e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 108 cells : 0.51365949850262 (GeV) Source track ID 9506 (pi+,0.41599911580086[GeV]) at (-366.45829892828,-340.15924968549,-454.26842290022) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,30] 0.0012700395249019 [GeV] -Cell[6,30] 0.00047337059256188 [GeV] -Cell[7,27] 0.0020497703655626 [GeV] -Cell[8,27] 0.00061009964928087 [GeV] -Cell[6,22] 8.5573037184076e-05 [GeV] -Cell[9,27] 3.5043485695496e-09 [GeV] -Cell[8,29] 5.6333775673465e-05 [GeV] -Cell[8,28] 0.00094092243026223 [GeV] -Cell[7,29] 0.15888702215757 [GeV] -Cell[6,31] 1.2582427530106e-08 [GeV] -Cell[7,31] 0.0012078908188802 [GeV] -Cell[6,23] 2.1239088033326e-05 [GeV] -Cell[19,21] 0.00014820468295613 [GeV] -Cell[19,22] 3.4457393202729e-05 [GeV] -Cell[13,32] 2.0189909264445e-09 [GeV] -Cell[13,31] 3.2827374525368e-09 [GeV] -Cell[10,20] 0.00014035399817679 [GeV] -Cell[9,24] 0.0019251773741264 [GeV] -Cell[8,30] 0.0062581640077188 [GeV] -Cell[7,28] 0.00012674112887032 [GeV] -Cell[9,28] 3.2764120987849e-08 [GeV] -Cell[5,17] 0.00011827954037108 [GeV] -Cell[2,2] 0.0010378618154896 [GeV] -Cell[2,3] 0.00173618294197 [GeV] -Cell[0,16] 0.00024394589502466 [GeV] -Cell[2,5] 0.0006636974217945 [GeV] -Cell[2,4] 0.00020058968621379 [GeV] -Cell[14,43] 0.0027674351694021 [GeV] -Cell[11,3] 0.0051247496914613 [GeV] -Cell[14,3] 1.0828608588781e-05 [GeV] -Cell[12,3] 2.743472578004e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 31 cells : 0.18613898769138 (GeV) +Cell[6,28] 0.013690974626978 [GeV] +Cell[7,28] 0.14337282944486 [GeV] +Cell[7,29] 0.16854874783456 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.3256125519064 (GeV) Source track ID 9518 (neutron,1.0701113802454[GeV]) at (90.010234414109,491.83143220083,-613.68262380867) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[4,5] 3.4247332951054e-06 [GeV] -Cell[7,11] 1.6135257444603e-06 [GeV] -Cell[7,9] 0.0069179867583209 [GeV] -Cell[7,8] 0.0011697114026788 [GeV] -Cell[7,10] 0.0043676739087472 [GeV] -Cell[3,25] 7.1300840342587e-05 [GeV] -Cell[3,24] 1.3655570035098e-07 [GeV] -Cell[6,10] 0.0067106594703236 [GeV] -Cell[9,37] 5.1988108898513e-06 [GeV] -Cell[6,9] 0.011308880364989 [GeV] -Cell[6,8] 0.00030651067260578 [GeV] -Cell[6,11] 0.0046253906241596 [GeV] -Cell[7,47] 3.8326302831138e-07 [GeV] -Cell[7,7] 4.0802317096222e-07 [GeV] -Cell[0,33] 1.3546421687352e-05 [GeV] -Cell[4,47] 1.178152160719e-09 [GeV] -Cell[9,27] 0.00064341743344505 [GeV] -Cell[15,38] 1.4442929212237e-05 [GeV] -Cell[11,31] 1.1710799299181e-09 [GeV] -Cell[9,36] 3.0169914425642e-05 [GeV] -Cell[13,28] 1.6235566872638e-05 [GeV] -Cell[13,29] 4.553363454761e-06 [GeV] -Cell[8,0] 8.3709310274571e-09 [GeV] -Cell[7,0] 2.1828745957464e-09 [GeV] -Cell[12,32] 3.2203969021793e-06 [GeV] -Cell[14,37] 4.9753006605897e-06 [GeV] -Cell[15,2] 2.0737082697451e-05 [GeV] -Cell[11,23] 4.3610438588075e-06 [GeV] -Cell[4,1] 1.389134558849e-08 [GeV] -Cell[3,47] 1.9946612883359e-07 [GeV] -Cell[4,0] 4.0611562604113e-05 [GeV] -Cell[5,21] 0.0018814171157264 [GeV] -Cell[12,23] 8.776909991866e-06 [GeV] -Cell[10,34] 1.1060450109653e-05 [GeV] -Cell[12,33] 1.3094265857944e-05 [GeV] -Cell[14,6] 5.970823665848e-06 [GeV] -Cell[14,15] 3.1124236855931e-05 [GeV] -Cell[14,14] 9.6688584855656e-05 [GeV] -Cell[3,39] 7.2093275957741e-07 [GeV] -Cell[0,35] 2.0203099120408e-07 [GeV] -Cell[0,34] 0.00011543144033374 [GeV] -Cell[0,36] 6.1636527021847e-06 [GeV] -Cell[6,12] 1.270612119697e-07 [GeV] -Cell[2,25] 3.1681309394571e-06 [GeV] -Cell[14,20] 0.00035721325620034 [GeV] -Cell[7,15] 2.4745471891947e-06 [GeV] -Cell[5,41] 0.00070412855118013 [GeV] -Cell[4,41] 0.00048804811639457 [GeV] -Cell[14,16] 0.00018637076253901 [GeV] -Cell[5,10] 1.4423858374357e-10 [GeV] -Cell[5,9] 9.7607733096083e-10 [GeV] -### Total energy deposition in calorimeter by a source track in 51 cells : 0.04019795822015 (GeV) +Cell[4,11] 0.011192832741724 [GeV] +Cell[4,12] 0.00081841461541819 [GeV] +Cell[4,10] 0.009109408237899 [GeV] +Cell[4,9] 0.0020823938492709 [GeV] +Cell[5,10] 0.00015162753093864 [GeV] +Cell[3,11] 3.7978410887263e-08 [GeV] +Cell[3,10] 0.0076206807218754 [GeV] +Cell[5,11] 1.9373171759071e-05 [GeV] +Cell[6,10] 1.8824444909114e-05 [GeV] +Cell[6,11] 0.0018625392542326 [GeV] +Cell[3,9] 0.016515616284065 [GeV] +Cell[5,12] 2.3753087114528e-05 [GeV] +Cell[4,8] 0.00014285788999086 [GeV] +Cell[4,13] 2.0119312007068e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 0.049578479119616 (GeV) Source track ID 9556 (neutron,0.94365923917391[GeV]) at (167.16465389703,-471.22815969283,259.19057903033) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[11,39] 0.00277170149735 [GeV] -Cell[11,38] 0.0013015515036398 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.0040732530009898 (GeV) +Cell[11,38] 0.0014846406571805 [GeV] +Cell[10,38] 0.0026072463507816 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.0040918870079621 (GeV) Source track ID 9558 (gamma,0.00045976594704103[GeV]) at (242.4045824191,-437.30997978805,-115.5279715319) Original primary track ID 25 (unknown,7.7728456153487[GeV]) @@ -2909,14 +2975,19 @@ Cell[14,17] 0.00017084923259172 [GeV] Source track ID 9520 (neutron,1.0422536597794[GeV]) at (364.28044014422,-342.49052677167,487.86027701106) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[13,42] 0.018662804482493 [GeV] -Cell[14,42] 8.1467915600797e-06 [GeV] -Cell[12,42] 2.3138825432397e-05 [GeV] -Cell[13,43] 4.6667973947478e-09 [GeV] -Cell[13,41] 0.03868694283397 [GeV] -Cell[13,40] 0.00017076813323911 [GeV] -Cell[14,41] 0.0030850704723697 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.060636876205861 (GeV) +Cell[14,42] 0.00056176925407757 [GeV] +Cell[12,42] 4.5862350234529e-05 [GeV] +Cell[13,43] 0.0029686252202563 [GeV] +Cell[13,42] 0.011473657134621 [GeV] +Cell[13,41] 0.01876881243036 [GeV] +Cell[14,40] 0.019785920910038 [GeV] +Cell[12,41] 2.4370481842197e-05 [GeV] +Cell[15,41] 3.6901036881886e-05 [GeV] +Cell[14,43] 8.1407600873717e-09 [GeV] +Cell[12,40] 6.0074485190853e-09 [GeV] +Cell[14,41] 0.00058677557257059 [GeV] +Cell[15,40] 0.0029376712249604 [GeV] +### Total energy deposition in calorimeter by a source track in 12 cells : 0.057190379764051 (GeV) Source track ID 9536 (gamma,0.00033322908115935[GeV]) at (267.88256555743,422.18352771084,41.474174245774) Original primary track ID 25 (unknown,7.7728456153487[GeV]) @@ -2925,26 +2996,27 @@ Cell[10,7] 0.00033322908115935 [GeV] Source track ID 9544 (gamma,0.0045769394357161[GeV]) at (499.89972974387,-10.013001648226,-578.8320749405) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,17] 0.00011304078905658 [GeV] -Cell[7,47] 0.0040617804591782 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.0041748212482348 (GeV) +Cell[7,0] 0.0039616695153637 [GeV] +Cell[7,47] 0.00061526992035238 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.0045769394357161 (GeV) Source track ID 9546 (neutron,0.94057477617754[GeV]) at (434.08488830801,-248.13365298286,-246.35957904466) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[9,46] 0.00096532066149268 [GeV] -Cell[8,46] 2.4707763630431e-05 [GeV] -Cell[8,45] 1.938773859365e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.0010094161637168 (GeV) +Cell[8,45] 1.2675711564953e-05 [GeV] +Cell[15,5] 0.0017520174191211 [GeV] +Cell[15,6] 2.1410940775013e-06 [GeV] +Cell[8,44] 6.6726442250001e-05 [GeV] +Cell[12,38] 0.00058646033487992 [GeV] +Cell[13,38] 0.00032011427539646 [GeV] +Cell[15,4] 0.00049365390024706 [GeV] +### Total energy deposition in calorimeter by a source track in 7 cells : 0.003233789177537 (GeV) Source track ID 9538 (neutron,0.96169606516734[GeV]) at (-490.19381661273,98.539444663799,-76.916428785373) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[10,20] 0.0024346662966016 [GeV] -Cell[9,22] 0.016932932025246 [GeV] -Cell[9,21] 0.0026440788419443 [GeV] -Cell[6,3] 2.6606997266754e-08 [GeV] -Cell[9,19] 0.0001015375110569 [GeV] -Cell[10,19] 1.075149589451e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.022123992777741 (GeV) +Cell[9,24] 2.2650491246168e-07 [GeV] +Cell[9,22] 0.01330366229477 [GeV] +Cell[9,23] 0.0014002894731175 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.0147041782728 (GeV) Source track ID 9524 (gamma,0.002958439251524[GeV]) at (455.04507774661,-207.20515731656,-111.08972578259) Original primary track ID 25 (unknown,7.7728456153487[GeV]) @@ -2963,385 +3035,284 @@ Cell[9,38] 0.00045610050420234 [GeV] Source track ID 9504 (gamma,0.062293140479318[GeV]) at (-277.09239034422,416.19683710154,226.70075543132) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[11,16] 0.056518121681392 [GeV] -Cell[10,11] 0.0005991021952873 [GeV] -Cell[10,15] 0.0013405369385185 [GeV] -Cell[11,15] 0.0038353796641195 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.062293140479318 (GeV) +Cell[13,31] 0.00099791509637186 [GeV] +Cell[12,33] 0.00033987474987743 [GeV] +Cell[11,15] 0.0012424992475425 [GeV] +Cell[12,40] 0.0017706627089443 [GeV] +Cell[11,16] 0.057942188676582 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.062293140479318 (GeV) Source track ID 9505 (gamma,0.18169391742921[GeV]) at (418.45377904041,273.67213012435,279.34343987106) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[11,4] 0.16493874336306 [GeV] -Cell[11,3] 0.013844607319783 [GeV] -Cell[7,19] 0.00077769304203283 [GeV] -Cell[15,28] 0.0021328737043297 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.18169391742921 (GeV) +Cell[11,4] 0.17669548101822 [GeV] +Cell[11,3] 0.0036809994300193 [GeV] +Cell[10,34] 0.0013174369809687 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.18169391742921 (GeV) Source track ID 9478 (kaon+,1.7504650074154[GeV]) at (74.453780756478,494.42556015144,1963.3618378966) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[15,40] 1.0684848268284e-05 [GeV] -Cell[15,41] 4.7078285133466e-06 [GeV] -Cell[17,21] 0.0010412299305881 [GeV] -Cell[13,45] 0.0011726917853738 [GeV] -Cell[19,10] 0.30254602528246 [GeV] -Cell[19,11] 0.0019905305602238 [GeV] -Cell[17,25] 2.2725755351871e-05 [GeV] -Cell[13,44] 1.196551090743e-08 [GeV] -Cell[18,29] 0.0014507108820647 [GeV] -Cell[18,13] 0.011167438361703 [GeV] -Cell[17,20] 0.0022270657068609 [GeV] -Cell[18,38] 1.7863587128886e-05 [GeV] -Cell[18,15] 1.2223608791828e-10 [GeV] -Cell[19,15] 0.0014109922575649 [GeV] -Cell[14,41] 1.0202102246694e-05 [GeV] -Cell[17,14] 0.0090968743369095 [GeV] -Cell[18,11] 2.2030282025298e-09 [GeV] -Cell[18,12] 0.00014849584335434 [GeV] -Cell[19,44] 0.00068660597105782 [GeV] -Cell[19,12] 0.0028683499136057 [GeV] -Cell[18,20] 0.00015634378475261 [GeV] -Cell[18,19] 0.0038456428933364 [GeV] -Cell[19,19] 0.0016595124996024 [GeV] -Cell[17,24] 0.0073763951688517 [GeV] -Cell[19,13] 0.0053452091849021 [GeV] -Cell[19,14] 0.013819655055329 [GeV] -Cell[18,14] 0.0019396596682787 [GeV] -Cell[17,12] 0.0069644976145025 [GeV] -Cell[17,13] 0.00021791303686712 [GeV] -### Total energy deposition in calorimeter by a source track in 29 cells : 0.37719803815048 (GeV) +Cell[19,10] 0.04923031621248 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.04923031621248 (GeV) Source track ID 9362 (pi-,0.45746442888744[GeV]) at (-499.98297972694,-4.125528253025,-204.03003610923) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,30] 0.00058961820453328 [GeV] -Cell[6,10] 0.00057906956017416 [GeV] -Cell[7,27] 8.6457410361618e-08 [GeV] -Cell[9,26] 0.0019769909382214 [GeV] -Cell[6,11] 5.5014373676386e-05 [GeV] -Cell[8,27] 0.00016517093993207 [GeV] -Cell[8,23] 0.0034596936602507 [GeV] -Cell[10,27] 0.00030382456329789 [GeV] -Cell[10,26] 2.6907188586847e-05 [GeV] -Cell[10,25] 1.3418396868019e-06 [GeV] -Cell[8,25] 0.0055723318324791 [GeV] -Cell[2,38] 1.809450764199e-06 [GeV] -Cell[9,27] 1.2786058505299e-09 [GeV] -Cell[3,43] 0.0001960025298896 [GeV] -Cell[8,29] 2.6261850143783e-07 [GeV] -Cell[4,35] 1.7852993245469e-05 [GeV] -Cell[9,23] 0.0083820204604326 [GeV] -Cell[7,23] 0.00013471500659045 [GeV] -Cell[6,15] 7.4646652091133e-06 [GeV] -Cell[8,24] 0.21490235337856 [GeV] -Cell[9,24] 0.00089469493250363 [GeV] -Cell[9,25] 0.00240878500853 [GeV] -Cell[9,22] 0.0012959445851427 [GeV] -Cell[9,21] 5.2363611757755e-10 [GeV] -Cell[14,36] 6.6571685601957e-07 [GeV] -Cell[8,30] 0.0014586414691946 [GeV] -Cell[4,46] 5.7251209509559e-06 [GeV] -Cell[3,44] 0.0020715546350825 [GeV] -Cell[4,43] 0.0001867628893142 [GeV] -Cell[14,6] 2.2127118689241e-05 [GeV] -Cell[15,36] 0.00060870302222224 [GeV] -Cell[1,27] 0.000944288886967 [GeV] -Cell[1,26] 2.4831371125629e-06 [GeV] -Cell[2,27] 8.426105545368e-06 [GeV] -Cell[2,37] 0.0026122629529077 [GeV] -Cell[3,35] 1.0100253624842e-05 [GeV] -Cell[3,38] 9.7508994726923e-06 [GeV] -Cell[2,35] 0.0026132062997086 [GeV] -Cell[2,36] 0.0061265049167577 [GeV] -Cell[2,34] 5.5163851873658e-05 [GeV] -Cell[3,36] 0.0014700280787995 [GeV] -Cell[7,3] 6.3847014680505e-06 [GeV] -Cell[8,3] 0.00052926846000378 [GeV] -Cell[3,37] 3.944053498617e-05 [GeV] -Cell[5,46] 9.0609393082559e-06 [GeV] -Cell[8,26] 1.2218361085274e-05 [GeV] -Cell[8,22] 8.4148798617548e-05 [GeV] -Cell[14,5] 0.00021503841549384 [GeV] -Cell[9,43] 0.0012255108875935 [GeV] -Cell[8,43] 1.6923083437973e-05 [GeV] -Cell[6,16] 0.0006088360357291 [GeV] -Cell[7,24] 0.0053693204693887 [GeV] -Cell[7,25] 8.8781803516554e-05 [GeV] -Cell[7,26] 0.0003748894705061 [GeV] -Cell[2,39] 5.3093245810487e-08 [GeV] -Cell[4,36] 0.00031616606422722 [GeV] -### Total energy deposition in calorimeter by a source track in 56 cells : 0.26807439346354 (GeV) +Cell[8,7] 3.857082717559e-06 [GeV] +Cell[8,22] 0.006553399356184 [GeV] +Cell[9,13] 0.0018757770083293 [GeV] +Cell[8,6] 5.1478497334756e-07 [GeV] +Cell[9,26] 0.0014145058135504 [GeV] +Cell[7,25] 0.0023500098942329 [GeV] +Cell[7,26] 0.00017448930776106 [GeV] +Cell[8,26] 9.0221874415874e-13 [GeV] +Cell[7,43] 8.9911658724304e-06 [GeV] +Cell[6,6] 0.00034638043775988 [GeV] +Cell[8,5] 0.00031103835241322 [GeV] +Cell[10,6] 1.9055732991546e-11 [GeV] +Cell[10,4] 5.4396939231083e-05 [GeV] +Cell[10,12] 0.0025016510188985 [GeV] +Cell[9,24] 0.0038625059321809 [GeV] +Cell[9,22] 0.0050653505419437 [GeV] +Cell[10,21] 3.6906404716319e-08 [GeV] +Cell[9,25] 0.0094038037462266 [GeV] +Cell[8,23] 0.014168219278653 [GeV] +Cell[10,5] 0.001605190346939 [GeV] +Cell[8,25] 0.0044964417919471 [GeV] +Cell[8,24] 0.15766008645879 [GeV] +Cell[8,21] 0.0057106979262491 [GeV] +Cell[8,34] 0.00071334141257383 [GeV] +Cell[6,5] 2.1504865435418e-06 [GeV] +Cell[6,7] 2.3216655233682e-07 [GeV] +Cell[7,23] 0.002326888551916 [GeV] +Cell[6,23] 0.00052577510007405 [GeV] +Cell[9,23] 0.0087883157400092 [GeV] +Cell[10,13] 0.0004988780339463 [GeV] +Cell[7,24] 0.00019370560014682 [GeV] +Cell[8,4] 0.00075336612078645 [GeV] +Cell[9,35] 6.7720661376143e-06 [GeV] +Cell[9,21] 1.5770945857184e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 34 cells : 0.23139254033576 (GeV) Source track ID 9466 (gamma,0.43032370642417[GeV]) at (-193.66745839476,460.96953864536,1404.1020575273) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[15,30] 0.00045758382584829 [GeV] -Cell[16,15] 0.002531387561603 [GeV] -Cell[16,36] 0.00051099891 [GeV] -Cell[17,15] 0.32699225364953 [GeV] -Cell[17,35] 0.00028334000441528 [GeV] -Cell[17,14] 0.088119730313772 [GeV] -Cell[18,14] 0.0010012307921172 [GeV] -Cell[19,26] 0.00062022301521827 [GeV] -Cell[18,37] 0.00078785423288836 [GeV] -Cell[18,43] 0.00085084812325985 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.42215545042865 (GeV) +Cell[14,42] 0.00068217888697905 [GeV] +Cell[14,31] 0.00051099891 [GeV] +Cell[11,4] 0.00024325951690854 [GeV] +Cell[18,7] 0.00072523944856737 [GeV] +Cell[18,14] 0.0021995096761295 [GeV] +Cell[17,14] 0.084536595565296 [GeV] +Cell[15,39] 0.00061335883016528 [GeV] +Cell[17,15] 0.33460946336152 [GeV] +Cell[16,25] 0.00020350606854908 [GeV] +Cell[17,37] 0.00046116197431399 [GeV] +Cell[11,39] 0.00073753015744621 [GeV] +Cell[15,46] 0.00088900745670425 [GeV] +Cell[15,21] 0.00061586767544986 [GeV] +Cell[18,15] 0.0016476810400864 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 0.42867535856812 (GeV) Source track ID 9467 (gamma,0.84468519705162[GeV]) at (143.95468786943,478.82882937477,1448.6318382153) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[12,32] 0.00090337141181372 [GeV] -Cell[17,45] 0.0020573214165918 [GeV] -Cell[10,23] 0.00034332581297379 [GeV] -Cell[10,22] 0.0019303767653579 [GeV] -Cell[17,10] 0.041719914194792 [GeV] -Cell[17,9] 0.75897515845491 [GeV] -Cell[17,8] 0.0017699360342816 [GeV] -Cell[15,36] 0.0023600856519184 [GeV] -Cell[18,8] 1.8682604297169e-05 [GeV] -Cell[16,33] 0.00028804074981892 [GeV] -Cell[17,35] 0.00051099891 [GeV] -Cell[18,31] 0.00065226904840872 [GeV] -Cell[18,10] 0.0072596346704592 [GeV] -Cell[15,23] 0.00042618674497786 [GeV] -Cell[17,43] 0.00076026192786031 [GeV] -Cell[18,9] 0.0027314024864923 [GeV] -Cell[17,47] 0.0026737175372018 [GeV] -### Total energy deposition in calorimeter by a source track in 17 cells : 0.82538068442215 (GeV) +Cell[14,42] 0.00024025710494648 [GeV] +Cell[17,32] 0.00027682218560636 [GeV] +Cell[14,22] 0.0010190559479046 [GeV] +Cell[15,11] 0.00011795508680942 [GeV] +Cell[18,7] 0.00029914459713168 [GeV] +Cell[18,46] 0.00069825943220607 [GeV] +Cell[17,4] 0.0028278764704369 [GeV] +Cell[18,2] 0.00051099891 [GeV] +Cell[17,10] 0.014502069946763 [GeV] +Cell[17,8] 0.0022115584908289 [GeV] +Cell[17,9] 0.74816769565057 [GeV] +Cell[13,18] 0.00039304382319058 [GeV] +Cell[15,45] 0.000639969120596 [GeV] +Cell[18,10] 0.00051099891 [GeV] +Cell[16,41] 0.0007341029348845 [GeV] +Cell[18,20] 0.00051099891 [GeV] +Cell[13,14] 0.00051099891 [GeV] +Cell[18,15] 0.00051099891 [GeV] +Cell[18,9] 0.00231204835767 [GeV] +Cell[18,8] 0.0094306046553061 [GeV] +Cell[19,43] 0.0038333880210465 [GeV] +Cell[19,42] 0.00076996165240385 [GeV] +Cell[19,41] 0.00076362747780541 [GeV] +Cell[17,44] 0.0031321989104109 [GeV] +Cell[19,35] 0.00096101687880166 [GeV] +### Total energy deposition in calorimeter by a source track in 25 cells : 0.79588565129532 (GeV) Source track ID 9368 (pi-,1.1276335771418[GeV]) at (-499.98406277269,-3.9921138909742,952.60253522544) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[11,40] 0.00039960082903476 [GeV] -Cell[14,32] 0.0022127234750972 [GeV] -Cell[14,22] 0.00013242681757504 [GeV] -Cell[14,24] 0.069962389932863 [GeV] -Cell[15,25] 6.2616852286396e-05 [GeV] -Cell[15,26] 0.0014363092262431 [GeV] -Cell[15,27] 0.00063534413294857 [GeV] -Cell[14,21] 2.1278509750573e-06 [GeV] -Cell[14,25] 1.3748320634477e-07 [GeV] -Cell[15,22] 0.047383853127287 [GeV] -Cell[15,21] 3.0368405384706e-07 [GeV] -Cell[17,24] 9.4313252064921e-05 [GeV] -Cell[15,23] 0.46937920358485 [GeV] -Cell[15,24] 0.27885379870171 [GeV] -Cell[16,23] 0.012746084462052 [GeV] -Cell[16,22] 0.0047103294336093 [GeV] -Cell[16,24] 0.00045236498026816 [GeV] -Cell[17,23] 0.0025231980456664 [GeV] -Cell[16,25] 0.0037301671309723 [GeV] -Cell[16,26] 7.7089428036288e-05 [GeV] -Cell[16,27] 0.0008638431885892 [GeV] -### Total energy deposition in calorimeter by a source track in 21 cells : 0.89565822561939 (GeV) +Cell[8,5] 1.3591488823295e-11 [GeV] +Cell[8,3] 0.0051566831246475 [GeV] +Cell[14,32] 6.9761881604791e-10 [GeV] +Cell[15,28] 0.00083600505762456 [GeV] +Cell[14,25] 0.00015506096754666 [GeV] +Cell[11,8] 2.8711747290799e-10 [GeV] +Cell[14,22] 6.0523919237312e-06 [GeV] +Cell[14,13] 0.00029787667562496 [GeV] +Cell[12,4] 0.0011339873032724 [GeV] +Cell[16,24] 0.012379763834827 [GeV] +Cell[12,9] 0.00010020321941931 [GeV] +Cell[17,5] 3.4041344633806e-08 [GeV] +Cell[4,32] 0.00021208694581672 [GeV] +Cell[9,3] 0.00029988068568798 [GeV] +Cell[9,4] 3.2625393941998e-11 [GeV] +Cell[15,26] 0.0045779872645409 [GeV] +Cell[16,5] 0.00016656255866712 [GeV] +Cell[12,8] 3.8090825523796e-07 [GeV] +Cell[16,15] 0.0003130263795249 [GeV] +Cell[15,22] 0.0014278132400948 [GeV] +Cell[14,23] 0.0026360146932784 [GeV] +Cell[15,8] 0.00051099891 [GeV] +Cell[14,44] 4.6493369154632e-10 [GeV] +Cell[16,22] 1.4757126791665e-09 [GeV] +Cell[15,19] 0.0016248718657605 [GeV] +Cell[16,28] 0.002927533117758 [GeV] +Cell[16,29] 0.0033175927166459 [GeV] +Cell[17,24] 1.1667900707835e-09 [GeV] +Cell[16,25] 2.1997308416417e-05 [GeV] +Cell[16,27] 0.0029052435991096 [GeV] +Cell[17,6] 0.00018848993284814 [GeV] +Cell[15,33] 7.174676284194e-10 [GeV] +Cell[15,34] 0.00047926142129178 [GeV] +Cell[14,43] 1.1396929232887e-07 [GeV] +Cell[16,4] 0.00060600794965045 [GeV] +Cell[13,9] 0.00039485065084693 [GeV] +Cell[15,25] 0.012724130836406 [GeV] +Cell[16,26] 0.00078963505495449 [GeV] +Cell[15,27] 4.2418624191441e-05 [GeV] +Cell[17,30] 0.00085159418991873 [GeV] +Cell[17,28] 0.0065801219662752 [GeV] +Cell[17,29] 0.052269480822809 [GeV] +Cell[8,37] 0.0012672158183777 [GeV] +Cell[18,28] 0.018510634251668 [GeV] +Cell[15,20] 1.4108139439486e-05 [GeV] +Cell[15,21] 0.0028006527420397 [GeV] +Cell[14,24] 0.070724400917495 [GeV] +Cell[10,3] 1.3409988605417e-07 [GeV] +Cell[14,17] 0.00065757139110794 [GeV] +Cell[15,4] 0.0003431406624139 [GeV] +Cell[8,4] 6.9903913640701e-08 [GeV] +Cell[15,24] 0.28451155714786 [GeV] +Cell[15,23] 0.13808853585277 [GeV] +Cell[9,2] 1.9043459906243e-07 [GeV] +Cell[19,45] 1.3179952313294e-05 [GeV] +Cell[19,8] 5.9136720956303e-06 [GeV] +Cell[16,23] 0.0020216418676886 [GeV] +Cell[16,16] 5.9251733516248e-05 [GeV] +Cell[18,29] 0.017760381455221 [GeV] +Cell[18,30] 2.3802743224223e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 60 cells : 0.65273614986976 (GeV) Source track ID 9356 (gamma,0.21259862372436[GeV]) at (298.67434412772,-400.99081804933,-1192.0286673711) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[4,5] 0.00058154416954648 [GeV] -Cell[4,31] 0.00070259906805568 [GeV] -Cell[4,19] 0.00074038623051068 [GeV] -Cell[3,39] 0.0017541104813677 [GeV] -Cell[2,0] 0.0013706794794621 [GeV] -Cell[3,41] 0.020964148081279 [GeV] -Cell[3,40] 0.18386333024622 [GeV] -Cell[1,25] 0.0026218259679169 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.21259862372436 (GeV) +Cell[2,10] 0.0018045893530935 [GeV] +Cell[3,40] 0.16055787404886 [GeV] +Cell[2,23] 0.00046690814972494 [GeV] +Cell[3,29] 0.0010154013728016 [GeV] +Cell[3,41] 0.022043330167463 [GeV] +Cell[4,23] 0.00029258925724293 [GeV] +Cell[0,18] 0.0013657920288147 [GeV] +Cell[3,45] 0.00051099891 [GeV] +Cell[4,40] 0.011458604587612 [GeV] +Cell[0,30] 0.00071410015215021 [GeV] +### Total energy deposition in calorimeter by a source track in 10 cells : 0.20023018802776 (GeV) Source track ID 9319 (pi-,0.62983143358282[GeV]) at (341.14847515096,365.53757385825,-1020.6508677349) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[4,5] 0.00029739376789701 [GeV] -Cell[4,4] 1.198698377118e-05 [GeV] -Cell[1,13] 0.0059081547505829 [GeV] -Cell[1,14] 5.248582790648e-05 [GeV] -Cell[0,13] 0.00038935791578251 [GeV] -Cell[0,14] 6.9692555582606e-06 [GeV] -Cell[5,8] 0.0013545543724113 [GeV] -Cell[2,47] 0.00030177960373362 [GeV] -Cell[2,9] 0.05299958495722 [GeV] -Cell[4,6] 0.10065323085743 [GeV] -Cell[3,18] 0.00070598517747148 [GeV] -Cell[0,12] 0.0020217998843408 [GeV] -Cell[1,9] 0.00053850646135159 [GeV] -Cell[2,46] 0.00099477649768678 [GeV] -Cell[3,11] 0.00086663315967403 [GeV] -Cell[4,11] 0.0062321693812922 [GeV] -Cell[1,10] 2.1629709044646e-07 [GeV] -Cell[3,12] 1.1950180578424e-10 [GeV] -Cell[4,10] 0.00055402191522569 [GeV] -Cell[4,9] 0.032205812239409 [GeV] -Cell[1,12] 0.021848457969207 [GeV] -Cell[3,17] 6.9138917024247e-07 [GeV] -Cell[1,11] 0.024262197686006 [GeV] -Cell[2,11] 3.9282763770302e-05 [GeV] -Cell[2,10] 0.0060437120499972 [GeV] -Cell[4,7] 0.00030367352836242 [GeV] -Cell[4,8] 0.0062266699688806 [GeV] -Cell[5,9] 1.6317604718097e-08 [GeV] -Cell[3,10] 0.018265497318627 [GeV] -Cell[2,8] 1.298988568476e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 30 cells : 0.28309860830265 (GeV) +Cell[3,6] 0.0013484047878736 [GeV] +Cell[4,10] 1.5784981607112e-06 [GeV] +Cell[4,9] 0.00053964618306236 [GeV] +Cell[5,36] 7.8993055012688e-09 [GeV] +Cell[4,35] 1.2753298506141e-10 [GeV] +Cell[5,26] 3.0917733674869e-06 [GeV] +Cell[4,4] 0.028948735285619 [GeV] +Cell[4,6] 0.16845285174391 [GeV] +Cell[4,3] 0.0018131163791013 [GeV] +Cell[4,2] 1.231189594364e-08 [GeV] +Cell[3,20] 0.0036921823601843 [GeV] +Cell[3,21] 0.0071941866887982 [GeV] +Cell[5,34] 0.00058580156143535 [GeV] +Cell[4,26] 0.00052279802887961 [GeV] +Cell[3,5] 3.8536384818144e-07 [GeV] +Cell[4,25] 0.00118613031399 [GeV] +Cell[3,10] 0.0022241808525415 [GeV] +Cell[2,8] 0.0038329620627072 [GeV] +Cell[3,4] 0.0005079184939442 [GeV] +Cell[3,3] 5.5776784415684e-07 [GeV] +Cell[4,7] 0.0600825895834 [GeV] +Cell[2,9] 0.00098531415043986 [GeV] +Cell[5,35] 0.00063484128776804 [GeV] +Cell[3,7] 0.17729052778979 [GeV] +Cell[3,22] 3.1141098588705e-12 [GeV] +Cell[3,8] 8.8514430054147e-05 [GeV] +Cell[3,9] 0.0084226596171049 [GeV] +Cell[5,33] 0.00026609960988435 [GeV] +Cell[5,27] 8.7409594038036e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 29 cells : 0.4687125045496 (GeV) Source track ID 9320 (pi+,3.2625436071314[GeV]) at (499.99163790898,-2.8917159422998,-1672.004870072) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[0,27] 0.00020492746958109 [GeV] -Cell[8,7] 4.9151392757608e-05 [GeV] -Cell[2,30] 9.9550709826872e-05 [GeV] -Cell[3,29] 2.0062204021087e-07 [GeV] -Cell[1,45] 0.057906541719625 [GeV] -Cell[6,22] 1.9949043635279e-06 [GeV] -Cell[4,47] 9.2616771056328e-05 [GeV] -Cell[1,29] 3.3100585860666e-06 [GeV] -Cell[8,6] 0.00068625328437838 [GeV] -Cell[7,29] 0.00025330886108611 [GeV] -Cell[1,14] 0.00021397634375217 [GeV] -Cell[0,13] 0.00014953230577737 [GeV] -Cell[0,14] 3.4105009781342e-06 [GeV] -Cell[3,47] 2.9361489168878e-09 [GeV] -Cell[1,30] 0.00034730494312737 [GeV] -Cell[1,31] 6.952509871951e-05 [GeV] -Cell[7,28] 1.5037132942552e-06 [GeV] -Cell[3,46] 2.0081936554561e-08 [GeV] -Cell[2,44] 0.00064671775060435 [GeV] -Cell[2,45] 0.00095396108401758 [GeV] -Cell[1,1] 0.017752468013215 [GeV] -Cell[0,1] 0.0071308014709263 [GeV] -Cell[1,2] 0.0022938245937235 [GeV] -Cell[0,2] 0.084118115187348 [GeV] -Cell[2,47] 0.0062949339597886 [GeV] -Cell[5,6] 4.6757030067965e-06 [GeV] -Cell[0,24] 0.0041603383017083 [GeV] -Cell[0,23] 1.5298912641924e-05 [GeV] -Cell[0,21] 1.2066076160409e-06 [GeV] -Cell[0,22] 8.0726250530461e-08 [GeV] -Cell[5,18] 5.5587946641026e-05 [GeV] -Cell[1,44] 0.017455953224216 [GeV] -Cell[5,19] 0.00083451603904626 [GeV] -Cell[4,18] 0.00064376941372966 [GeV] -Cell[3,19] 8.5796273651795e-07 [GeV] -Cell[0,3] 0.012049171183181 [GeV] -Cell[0,32] 2.4893997933759e-05 [GeV] -Cell[1,27] 3.0483381367731e-05 [GeV] -Cell[2,7] 6.4213743848995e-07 [GeV] -Cell[1,43] 0.013291404622197 [GeV] -Cell[1,42] 0.0024725732496107 [GeV] -Cell[0,19] 0.0012772423824518 [GeV] -Cell[2,20] 3.0203955247998e-09 [GeV] -Cell[0,18] 0.0027933360657794 [GeV] -Cell[0,46] 0.0055206633486023 [GeV] -Cell[0,47] 0.049624221432021 [GeV] -Cell[0,12] 7.3115913546644e-06 [GeV] -Cell[1,15] 1.6521025357861e-06 [GeV] -Cell[2,13] 0.0034572026652249 [GeV] -Cell[1,22] 0.0038971625833804 [GeV] -Cell[1,21] 0.0021746601995119 [GeV] -Cell[0,42] 0.0066164157301554 [GeV] -Cell[0,43] 0.0072398742046591 [GeV] -Cell[4,12] 0.0002609788320151 [GeV] -Cell[1,47] 1.1004137158801 [GeV] -Cell[1,26] 4.7716493304506e-07 [GeV] -Cell[0,0] 0.14704700176276 [GeV] -Cell[0,5] 0.00029065719599225 [GeV] -Cell[1,5] 1.3948972948128e-05 [GeV] -Cell[1,4] 7.9497579718009e-06 [GeV] -Cell[0,4] 0.00055653601834456 [GeV] -Cell[0,31] 1.9061757193413e-06 [GeV] -Cell[1,37] 0.0019595930156172 [GeV] -Cell[2,24] 4.4335330312606e-06 [GeV] -Cell[0,17] 3.2105657737702e-08 [GeV] -Cell[0,38] 0.00010683917975985 [GeV] -Cell[0,8] 3.6924376327079e-06 [GeV] -Cell[0,9] 0.0006504682679091 [GeV] -Cell[3,4] 0.00049035694186091 [GeV] -Cell[1,19] 2.2663006120638e-09 [GeV] -Cell[1,18] 3.8052102967185e-06 [GeV] -Cell[2,12] 0.00064677163626014 [GeV] -Cell[2,46] 5.415163262785e-05 [GeV] -Cell[0,25] 0.0029225034532161 [GeV] -Cell[0,26] 0.00013519397502864 [GeV] -Cell[3,35] 0.00026878029908232 [GeV] -Cell[4,11] 1.6093035257654e-05 [GeV] -Cell[2,35] 0.0024971805429233 [GeV] -Cell[1,32] 0.00015207248796128 [GeV] -Cell[1,0] 0.29048822313933 [GeV] -Cell[1,10] 0.0020411545916 [GeV] -Cell[0,44] 0.0066479881948266 [GeV] -Cell[2,34] 1.9383151084185e-11 [GeV] -Cell[4,16] 0.0011862067698044 [GeV] -Cell[3,16] 6.4445826183942e-05 [GeV] -Cell[3,15] 2.1725769997147e-05 [GeV] -Cell[2,43] 3.0132941901684e-09 [GeV] -Cell[2,14] 0.00065292608362142 [GeV] -Cell[1,3] 5.387545419012e-05 [GeV] -Cell[4,27] 4.1733286742556e-06 [GeV] -Cell[3,14] 3.0412379533118e-07 [GeV] -Cell[0,11] 2.3197543229116e-06 [GeV] -Cell[0,10] 3.0112831382212e-08 [GeV] -Cell[4,22] 0.00079092419893379 [GeV] -Cell[4,21] 2.8451619669795e-05 [GeV] -Cell[4,42] 8.3785562310368e-06 [GeV] -Cell[3,20] 0.00078761449876311 [GeV] -Cell[4,20] 1.7656796171877e-05 [GeV] -Cell[5,25] 4.2518679110799e-05 [GeV] -Cell[1,46] 0.016348053137603 [GeV] -Cell[4,13] 0.00010778285824438 [GeV] -Cell[5,41] 2.3110950976843e-05 [GeV] -Cell[4,39] 3.7663988769054e-06 [GeV] -Cell[2,8] 0.00053833568405491 [GeV] -Cell[5,26] 0.0024233633701402 [GeV] -Cell[6,26] 0.0018536752888646 [GeV] -Cell[0,41] 0.00051084959841614 [GeV] -Cell[1,41] 0.0014426892026953 [GeV] -Cell[0,28] 0.0014894839859437 [GeV] -Cell[0,45] 0.0050282849825603 [GeV] -Cell[5,27] 0.0021868323435364 [GeV] -Cell[0,40] 0.00040138368480893 [GeV] -### Total energy deposition in calorimeter by a source track in 112 cells : 1.9066268263107 (GeV) +Cell[1,0] 0.0017802617425377 [GeV] +Cell[1,47] 0.16864178569015 [GeV] +Cell[0,47] 0.1633423289327 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.33376437636538 (GeV) Source track ID 9316 (gamma,0.53051937575115[GeV]) at (475.84610117729,-153.52683151283,-782.17056473706) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[6,9] 0.00040514465684702 [GeV] -Cell[8,27] 0.00022906997395742 [GeV] -Cell[6,44] 0.00033111771581858 [GeV] -Cell[6,45] 0.12840847012811 [GeV] -Cell[6,42] 0.0011659136157547 [GeV] -Cell[6,15] 0.00048694852995522 [GeV] -Cell[5,45] 0.36490633968098 [GeV] -Cell[6,46] 0.0032502172192913 [GeV] -Cell[4,9] 0.0032066410593846 [GeV] -Cell[4,25] 0.0024753100755134 [GeV] -Cell[4,26] 0.00051099891 [GeV] -Cell[5,22] 0.0021079139967854 [GeV] -Cell[5,44] 0.0036827449729806 [GeV] -Cell[5,46] 0.018932148989833 [GeV] -Cell[5,20] 0.00037227421756688 [GeV] -### Total energy deposition in calorimeter by a source track in 15 cells : 0.53047125374279 (GeV) +Cell[7,13] 0.00051099891 [GeV] +Cell[5,45] 0.28876057217967 [GeV] +Cell[11,34] 0.0010978915694889 [GeV] +Cell[8,23] 0.00051099891 [GeV] +Cell[6,31] 0.00051099891 [GeV] +Cell[6,46] 0.0011198420571456 [GeV] +Cell[6,45] 0.22324458762376 [GeV] +Cell[1,32] 0.0011511757055373 [GeV] +Cell[5,46] 0.0072374244763184 [GeV] +Cell[4,46] 0.00075624633882281 [GeV] +Cell[4,33] 0.00051099891 [GeV] +Cell[5,44] 0.0017161999255666 [GeV] +Cell[4,45] 0.0010275440378314 [GeV] +### Total energy deposition in calorimeter by a source track in 13 cells : 0.52815547955414 (GeV) Source track ID 9317 (gamma,0.17927399228015[GeV]) at (168.15425594365,-470.87593504875,-1264.5234731756) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[1,13] 0.00042015298413697 [GeV] -Cell[1,15] 0.00052426033351805 [GeV] -Cell[6,2] 0.00054036736807437 [GeV] -Cell[3,38] 0.17304451871764 [GeV] -Cell[4,20] 0.00038465029234057 [GeV] -Cell[10,3] 0.00034699806135337 [GeV] -Cell[5,14] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.17577194666706 (GeV) +Cell[2,46] 0.00090707738732276 [GeV] +Cell[5,5] 0.00042900352175243 [GeV] +Cell[0,24] 0.00016752022704862 [GeV] +Cell[0,25] 0.0029669600678655 [GeV] +Cell[1,46] 1.3621461395217e-06 [GeV] +Cell[1,45] 0.00070657371090927 [GeV] +Cell[4,0] 0.00051099891 [GeV] +Cell[3,38] 0.169979063615 [GeV] +Cell[3,24] 0.00051099891 [GeV] +Cell[3,39] 0.00057303452021979 [GeV] +Cell[4,38] 0.0013633351264227 [GeV] +### Total energy deposition in calorimeter by a source track in 11 cells : 0.17811592814268 (GeV) Source track ID 9266 (gamma,0.0068669591841856[GeV]) at (-255.41511767525,429.84080502314,-128.84694200583) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[9,16] 0.0068669591841856 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.0068669591841856 (GeV) +Cell[9,16] 0.0058035386731668 [GeV] +Cell[11,16] 0.00014789562131336 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.0059514342944802 (GeV) Source track ID 9267 (gamma,0.071100426623186[GeV]) at (-254.9886476944,430.09393107434,-129.64125312771) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[9,16] 0.026220558965534 [GeV] -Cell[9,15] 0.044368868747651 [GeV] -Cell[8,16] 0.00051099891 [GeV] +Cell[9,16] 0.043635026502431 [GeV] +Cell[9,15] 0.027389950675511 [GeV] +Cell[8,16] 7.5449445242915e-05 [GeV] ### Total energy deposition in calorimeter by a source track in 3 cells : 0.071100426623186 (GeV) Source track ID 9270 (gamma,0.15862189045398[GeV]) at (-218.97125795676,449.50148852794,-138.20382968251) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[8,15] 0.0094370239168469 [GeV] -Cell[10,4] 0.0001301555078974 [GeV] -Cell[10,3] 0.0016215169049593 [GeV] -Cell[9,15] 0.13987811220128 [GeV] -Cell[9,14] 0.0041200895122011 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.15518689804318 (GeV) +Cell[9,14] 0.0029629272025906 [GeV] +Cell[9,16] 0.00025606050936464 [GeV] +Cell[9,15] 0.13969526174309 [GeV] +Cell[8,14] 0.0011200660554198 [GeV] +Cell[7,1] 0.00015065558996929 [GeV] +Cell[11,7] 0.0088523861565515 [GeV] +Cell[8,39] 0.00064358715932193 [GeV] +Cell[8,15] 0.0038853970076604 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.15756634142396 (GeV) Source track ID 9272 (gamma,0.00072399955900513[GeV]) at (-85.129650688058,492.69964742602,25.385141000368) Original primary track ID 27 (unknown,1.8699577628705[GeV]) @@ -3355,9 +3326,12 @@ Cell[9,18] 9.4096398629568e-05 [GeV] Source track ID 9276 (gamma,0.056551040708461[GeV]) at (165.13507535012,471.94322422206,-205.21374479889) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[8,9] 0.052606857404448 [GeV] -Cell[8,8] 0.0039441833040127 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.056551040708461 (GeV) +Cell[8,9] 0.024882983519519 [GeV] +Cell[8,8] 0.0032766898222845 [GeV] +Cell[9,9] 0.025473144166715 [GeV] +Cell[9,8] 0.0024072242899428 [GeV] +Cell[17,19] 0.0004382363214122 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.056478278119873 (GeV) Source track ID 9277 (gamma,0.0051604899862108[GeV]) at (252.9110445481,431.31891164843,-232.25006173078) Original primary track ID 27 (unknown,1.8699577628705[GeV]) @@ -3381,29 +3355,30 @@ Cell[9,17] 0.00051099891 [GeV] Source track ID 9294 (gamma,0.00051099891[GeV]) at (419.77051823887,271.64814009574,-178.58702762711) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[9,4] 0.00019159029731671 [GeV] -Cell[10,43] 0.00030005611184764 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.00049164640916435 (GeV) +Cell[9,4] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00051099891 (GeV) Source track ID 9248 (gamma,0.020454502019701[GeV]) at (-496.72541564205,57.130214906217,-131.00158322551) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[9,23] 0.016672500174409 [GeV] -Cell[9,24] 0.0011797791357633 [GeV] -Cell[9,25] 0.001860410470387 [GeV] -Cell[9,22] 0.00074181223914104 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.020454502019701 (GeV) +Cell[9,46] 0.0038055941306112 [GeV] +Cell[9,23] 0.016648907889089 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.020454502019701 (GeV) Source track ID 9250 (gamma,0.48568833346257[GeV]) at (-499.43365828021,23.791195363946,-136.09334274072) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[8,23] 0.0015291217570423 [GeV] -Cell[8,25] 0.00086580155986021 [GeV] -Cell[9,23] 0.41470771660815 [GeV] -Cell[11,30] 0.00059765880871168 [GeV] -Cell[8,24] 0.0011186558766194 [GeV] -Cell[9,24] 0.063582879595904 [GeV] -Cell[9,22] 0.00031024640430622 [GeV] -Cell[8,46] 0.00046462459123641 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.48317670520183 (GeV) +Cell[8,22] 0.00031255841225231 [GeV] +Cell[8,26] 0.001478978106422 [GeV] +Cell[9,24] 0.098967380768772 [GeV] +Cell[9,22] 0.0051556305369607 [GeV] +Cell[9,25] 0.0024891602582149 [GeV] +Cell[8,23] 0.0067805683351091 [GeV] +Cell[8,25] 0.00023032523738642 [GeV] +Cell[8,24] 0.00435903989247 [GeV] +Cell[4,3] 0.00044114945691085 [GeV] +Cell[9,23] 0.36385738257136 [GeV] +Cell[8,20] 0.00019906010092558 [GeV] +Cell[9,6] 0.00059300860297144 [GeV] +### Total energy deposition in calorimeter by a source track in 12 cells : 0.48486424227976 (GeV) Source track ID 9253 (gamma,5.1035467530227e-05[GeV]) at (491.45995900962,92.016893504717,-572.171566775) Original primary track ID 27 (unknown,1.8699577628705[GeV]) @@ -3417,189 +3392,215 @@ Cell[3,44] 0.00073663120573012 [GeV] Source track ID 9243 (gamma,0.14815181584447[GeV]) at (-470.45468956495,169.32922094649,-336.66130507831) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[8,23] 0.00038021908851009 [GeV] -Cell[8,20] 0.0036346259966603 [GeV] -Cell[8,21] 0.13317929256278 [GeV] -Cell[7,18] 0.00047768993845502 [GeV] -Cell[8,22] 0.00013077982148991 [GeV] -Cell[7,19] 0.00072710861215178 [GeV] -Cell[7,21] 0.0080163716540514 [GeV] -Cell[7,20] 0.0016057281703742 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.14815181584447 (GeV) +Cell[7,20] 0.00029028373037243 [GeV] +Cell[2,46] 0.0011115071547378 [GeV] +Cell[8,21] 0.13969176468267 [GeV] +Cell[7,21] 0.0024559343727946 [GeV] +Cell[8,20] 0.004602325903893 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.14815181584447 (GeV) Source track ID 9220 (e-,0.00079356233177403[GeV]) at (-487.59837347696,110.66989736429,1392.2063604942) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[16,22] 0.00011990991106261 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00011990991106261 (GeV) +Cell[16,22] 0.00028256342177403 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00028256342177403 (GeV) Source track ID 9178 (pi+,0.18740948952204[GeV]) at (-499.93787537827,-7.8816725545492,1562.9465383954) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[18,23] 0.00072155968919624 [GeV] -Cell[17,24] 0.078144074969761 [GeV] -Cell[19,41] 0.010462550874541 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.089328185533498 (GeV) +Cell[17,23] 0.01934634080417 [GeV] +Cell[17,31] 0.00084487476954412 [GeV] +Cell[18,7] 0.0010189708811073 [GeV] +Cell[17,24] 0.068568737696229 [GeV] +Cell[13,9] 0.0012524596182034 [GeV] +Cell[16,43] 0.00036791493307065 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.091399298702324 (GeV) Source track ID 9169 (pi-,0.95196187566742[GeV]) at (-378.33246564164,-326.90143077313,-224.89896773169) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[7,30] 0.0091667933392016 [GeV] -Cell[7,27] 0.00012073416430451 [GeV] -Cell[5,32] 0.0005193821609397 [GeV] -Cell[9,8] 0.00045268376163463 [GeV] -Cell[8,27] 0.004237627841515 [GeV] -Cell[6,28] 7.1163915436046e-09 [GeV] -Cell[8,31] 0.015211813828764 [GeV] -Cell[8,35] 0.0022230493938499 [GeV] -Cell[8,34] 1.3305863495816e-06 [GeV] -Cell[10,6] 0.001775705469569 [GeV] -Cell[9,27] 9.2116465566505e-10 [GeV] -Cell[8,29] 0.30673428204228 [GeV] -Cell[8,28] 0.012179133508686 [GeV] -Cell[7,29] 0.0089077667451963 [GeV] -Cell[6,31] 0.0052187269691283 [GeV] -Cell[7,31] 0.00098092641772178 [GeV] -Cell[9,29] 0.0018352730148415 [GeV] -Cell[9,30] 0.0030149724437602 [GeV] -Cell[9,31] 0.00065614167645165 [GeV] -Cell[7,32] 6.4526151081054e-05 [GeV] -Cell[7,33] 1.596548827365e-08 [GeV] -Cell[8,30] 0.2252877969983 [GeV] -Cell[8,32] 0.0023127667913338 [GeV] -Cell[8,33] 2.1151963058855e-05 [GeV] -Cell[7,28] 0.0029115576618503 [GeV] -Cell[9,28] 0.0063073590065242 [GeV] -Cell[5,31] 0.0001796154116746 [GeV] -Cell[10,7] 0.00052146442084742 [GeV] -Cell[6,32] 0.0014344563840682 [GeV] -Cell[6,33] 3.2783527923129e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 30 cells : 0.6123098456839 (GeV) +Cell[5,29] 1.0528646754437e-06 [GeV] +Cell[9,30] 4.5121942002879e-05 [GeV] +Cell[8,29] 0.1680822891072 [GeV] +Cell[9,31] 8.4478186835327e-05 [GeV] +Cell[9,32] 3.2868701964617e-09 [GeV] +Cell[7,31] 0.0048407411216207 [GeV] +Cell[7,30] 0.014581692748232 [GeV] +Cell[8,31] 0.020668679889867 [GeV] +Cell[7,29] 0.0026006420354627 [GeV] +Cell[6,31] 0.0018635594301656 [GeV] +Cell[6,32] 4.5950952744533e-07 [GeV] +Cell[7,32] 0.0016537379566645 [GeV] +Cell[6,30] 0.0052588348611494 [GeV] +Cell[8,30] 0.54133126770683 [GeV] +Cell[8,32] 0.010654593504495 [GeV] +Cell[5,30] 0.00018521770481868 [GeV] +### Total energy deposition in calorimeter by a source track in 16 cells : 0.77185237185642 (GeV) Source track ID 9129 (mu-,0.22519410584162[GeV]) at (120.48486726316,-485.26631529561,1832.0586666912) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[14,14] 0.00052853107434373 [GeV] -Cell[14,13] 4.4363176243678e-08 [GeV] -Cell[17,7] 4.9727144360077e-06 [GeV] -Cell[19,37] 0.10288824701438 [GeV] -Cell[19,14] 6.8423864140641e-06 [GeV] -Cell[18,43] 1.2941282708198e-05 [GeV] -Cell[18,31] 4.8344332817351e-05 [GeV] -Cell[19,38] 0.037116553209437 [GeV] -Cell[19,36] 0.0036097214361256 [GeV] -Cell[19,31] 1.1984034783382e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.14422818184862 (GeV) +Cell[18,3] 9.2642200115733e-06 [GeV] +Cell[19,39] 5.2643718516947e-06 [GeV] +Cell[19,38] 0.0049414632712164 [GeV] +Cell[18,38] 0.00077128889239591 [GeV] +Cell[18,37] 0.0010870913870724 [GeV] +Cell[18,36] 4.0205577533925e-11 [GeV] +Cell[15,16] 0.00022927955003396 [GeV] +Cell[19,35] 3.6023570828547e-09 [GeV] +Cell[19,37] 0.14254177856293 [GeV] +Cell[19,36] 2.1922716383415e-05 [GeV] +Cell[16,18] 0.00086924620895026 [GeV] +### Total energy deposition in calorimeter by a source track in 11 cells : 0.15047660282341 (GeV) Source track ID 9104 (pi+,3.7103992500444[GeV]) at (209.68274044484,453.90874452861,1946.1211983203) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[19,8] 0.092061939299358 [GeV] -Cell[16,33] 0.00082168050080176 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.09288361980016 (GeV) +Cell[16,36] 0.0013470819694434 [GeV] +Cell[19,8] 0.097271965672666 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.09861904764211 (GeV) Source track ID 8867 (pi+,0.59774688923905[GeV]) at (-417.15997471535,275.64026464848,364.37396437989) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[13,17] 0.11067151692496 [GeV] -Cell[13,18] 0.007956143089369 [GeV] -Cell[12,17] 0.07560131080252 [GeV] -Cell[12,18] 0.21767631453762 [GeV] -Cell[12,19] 0.042340488456603 [GeV] -Cell[11,19] 0.058815515416226 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.51306128922729 (GeV) +Cell[12,32] 0.00028411282711943 [GeV] +Cell[11,11] 0.00086342282617193 [GeV] +Cell[13,6] 5.0144794732887e-06 [GeV] +Cell[11,21] 0.00092702001101918 [GeV] +Cell[12,33] 2.0491311443038e-07 [GeV] +Cell[12,1] 0.0014030343008961 [GeV] +Cell[10,32] 0.00052651466466534 [GeV] +Cell[9,47] 5.2285613492131e-09 [GeV] +Cell[8,16] 1.409353795907e-07 [GeV] +Cell[9,31] 5.0458285964851e-05 [GeV] +Cell[9,32] 0.00015017463574077 [GeV] +Cell[10,31] 1.8518381402828e-05 [GeV] +Cell[12,2] 0.0026024369991286 [GeV] +Cell[10,19] 8.8036422093865e-06 [GeV] +Cell[11,20] 3.9381306540236e-05 [GeV] +Cell[12,6] 1.4790566638112e-10 [GeV] +Cell[11,12] 0.0012137183164634 [GeV] +Cell[11,19] 0.060328369444877 [GeV] +Cell[11,18] 0.11654231064777 [GeV] +Cell[11,17] 0.0013496689198905 [GeV] +Cell[12,18] 0.2196310291213 [GeV] +Cell[12,19] 0.020252230041007 [GeV] +Cell[13,44] 4.1227584006265e-08 [GeV] +Cell[13,43] 1.8946838099509e-07 [GeV] +Cell[12,0] 7.7047708909959e-06 [GeV] +Cell[14,23] 0.00045999978681368 [GeV] +Cell[14,36] 0.00048705918570033 [GeV] +Cell[13,0] 4.5583845349029e-05 [GeV] +Cell[12,17] 0.0014865013824572 [GeV] +Cell[14,24] 1.4551915228367e-13 [GeV] +Cell[11,16] 0.0015488474863391 [GeV] +Cell[12,20] 0.003512339468089 [GeV] +Cell[10,17] 9.8641610435266e-05 [GeV] +Cell[11,13] 0.0074830379955353 [GeV] +### Total energy deposition in calorimeter by a source track in 34 cells : 0.44132651630433 (GeV) Source track ID 9095 (gamma,0.15251351239083[GeV]) at (-487.09323465364,-112.87240918249,-730.31334329596) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[5,25] 0.010780246943112 [GeV] -Cell[5,46] 0.0033079221478869 [GeV] -Cell[5,26] 0.024961136236686 [GeV] -Cell[6,26] 0.0064480776104659 [GeV] -Cell[6,25] 0.10701612945268 [GeV] +Cell[6,26] 0.0061582058402583 [GeV] +Cell[6,25] 0.13947459385767 [GeV] +Cell[5,10] 0.00045501752915766 [GeV] +Cell[2,1] 0.0010619905490063 [GeV] +Cell[5,27] 0.0053637046147332 [GeV] ### Total energy deposition in calorimeter by a source track in 5 cells : 0.15251351239083 (GeV) Source track ID 9096 (gamma,0.13352323164713[GeV]) at (-462.295998601,-190.47942061415,2.9650113942907) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[9,26] 0.043451906843907 [GeV] -Cell[10,27] 0.0064183149284094 [GeV] -Cell[10,26] 0.059471999685078 [GeV] -Cell[9,27] 0.024181010189735 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.13352323164713 (GeV) +Cell[9,26] 0.010987577153914 [GeV] +Cell[9,28] 0.00051099891 [GeV] +Cell[10,25] 0.000496562322877 [GeV] +Cell[10,28] 0.001442263985293 [GeV] +Cell[10,26] 0.067759921309391 [GeV] +Cell[9,25] 0.0025517553957041 [GeV] +Cell[9,16] 0.00017481822846933 [GeV] +Cell[9,27] 0.034932384301986 [GeV] +Cell[10,27] 0.013761180371509 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.13261746197914 (GeV) Source track ID 9081 (pi-,0.85379953419879[GeV]) at (323.49871788582,-381.24608788318,732.71103141799) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[0,27] 1.6403644183356e-06 [GeV] -Cell[8,8] 2.4285414838232e-07 [GeV] -Cell[11,40] 0.0046239594199513 [GeV] -Cell[10,38] 1.1420343071222e-10 [GeV] -Cell[15,39] 1.6007106751204e-12 [GeV] -Cell[15,40] 0.0001323260559285 [GeV] -Cell[15,41] 0.00022743849825963 [GeV] -Cell[15,38] 4.124147555558e-06 [GeV] -Cell[15,45] 0.00020958138820549 [GeV] -Cell[14,44] 0.0027561198719035 [GeV] -Cell[13,45] 1.746229827404e-11 [GeV] -Cell[15,43] 0.003813110055165 [GeV] -Cell[15,42] 0.00031575816852853 [GeV] -Cell[15,25] 2.5126848168156e-05 [GeV] -Cell[15,26] 0.00011006615465953 [GeV] -Cell[17,10] 3.7966679614215e-05 [GeV] -Cell[17,25] 2.8851400743406e-06 [GeV] -Cell[14,6] 8.9510813921265e-05 [GeV] -Cell[14,11] 3.2268573766032e-06 [GeV] -Cell[14,14] 4.7072469897103e-06 [GeV] -Cell[13,42] 0.011733582829736 [GeV] -Cell[13,37] 4.0789018385112e-10 [GeV] -Cell[10,39] 5.5982389994824e-09 [GeV] -Cell[0,26] 3.4977788405968e-06 [GeV] -Cell[12,44] 0.0012003710608988 [GeV] -Cell[14,39] 9.0005646939062e-08 [GeV] -Cell[14,42] 0.1893211901147 [GeV] -Cell[14,43] 0.023094514247371 [GeV] -Cell[12,39] 0.0003614956396741 [GeV] -Cell[12,42] 0.0006874949109224 [GeV] -Cell[12,41] 0.00010928543692785 [GeV] -Cell[12,45] 3.3940944646019e-05 [GeV] -Cell[13,44] 1.1753250553738e-05 [GeV] -Cell[13,43] 0.0016496544174428 [GeV] -Cell[14,46] 0.0042848382364553 [GeV] -Cell[14,45] 0.00064638571935222 [GeV] -Cell[13,41] 0.081101620792426 [GeV] -Cell[14,47] 0.018125524962477 [GeV] -Cell[15,46] 0.0015544931943617 [GeV] -Cell[16,9] 7.0775945971491e-07 [GeV] -Cell[14,0] 0.00021666145659242 [GeV] -Cell[12,40] 0.00114200221615 [GeV] -Cell[14,40] 0.0039192671781085 [GeV] -Cell[14,5] 2.5119516067207e-09 [GeV] -Cell[15,37] 0.0013217146276743 [GeV] -Cell[14,13] 0.00023066141347783 [GeV] -Cell[14,12] 4.154394129921e-05 [GeV] -Cell[16,45] 2.2477861421066e-09 [GeV] -Cell[16,14] 0.0006613360249208 [GeV] -Cell[15,16] 7.2003764798865e-06 [GeV] -Cell[16,13] 0.0016311438851634 [GeV] -Cell[15,11] 9.0405228547752e-10 [GeV] -Cell[11,39] 0.0046526735770125 [GeV] -Cell[17,26] 1.0127920985497e-06 [GeV] -Cell[15,22] 3.4499680623412e-10 [GeV] -Cell[13,40] 0.011609400296741 [GeV] -Cell[13,39] 6.3928380311609e-06 [GeV] -Cell[14,41] 0.075583771212132 [GeV] -Cell[11,38] 0.00085820038951692 [GeV] -Cell[14,30] 1.5563855413347e-09 [GeV] -Cell[15,44] 0.0039436303281152 [GeV] -Cell[15,47] 0.001752569530077 [GeV] -Cell[16,44] 0.015617346324375 [GeV] -Cell[18,42] 0.013053050160307 [GeV] -Cell[17,24] 0.00032550606095924 [GeV] -Cell[18,10] 4.0716189303339e-05 [GeV] -Cell[15,23] 3.5508806004145e-06 [GeV] -Cell[17,43] 0.0078351530918407 [GeV] -Cell[15,24] 4.1543081476902e-07 [GeV] -Cell[16,26] 4.8681551595564e-07 [GeV] -Cell[15,17] 0.00036679309709518 [GeV] -Cell[9,20] 2.5906975575253e-05 [GeV] -Cell[13,6] 1.5580108840027e-05 [GeV] -Cell[13,5] 3.7286121448687e-07 [GeV] -Cell[17,42] 0.0021886767162563 [GeV] -Cell[16,28] 9.8033123940695e-06 [GeV] -Cell[18,41] 0.0029945027161298 [GeV] -### Total energy deposition in calorimeter by a source track in 77 cells : 0.49633528839614 (GeV) +Cell[7,13] 3.3779788850552e-08 [GeV] +Cell[7,14] 2.9521203329978e-05 [GeV] +Cell[11,6] 0.0017880846940618 [GeV] +Cell[7,15] 5.4017127695261e-09 [GeV] +Cell[14,42] 0.0027635324098098 [GeV] +Cell[8,3] 1.0957582833271e-07 [GeV] +Cell[11,31] 0.00015800189431218 [GeV] +Cell[13,31] 5.8741956221638e-05 [GeV] +Cell[11,11] 1.1459685629234e-07 [GeV] +Cell[18,13] 5.6640804882591e-06 [GeV] +Cell[15,5] 0.00027638258759544 [GeV] +Cell[12,42] 2.5116043398157e-06 [GeV] +Cell[12,28] 9.6911682630889e-06 [GeV] +Cell[13,6] 1.1329407716403e-05 [GeV] +Cell[11,30] 0.00058963517689619 [GeV] +Cell[11,22] 2.1376763470471e-10 [GeV] +Cell[11,21] 0.00087191994398074 [GeV] +Cell[8,2] 1.1515367795027e-06 [GeV] +Cell[11,8] 7.4198523248015e-07 [GeV] +Cell[14,13] 0.0024787523640676 [GeV] +Cell[14,12] 9.2748609604314e-06 [GeV] +Cell[11,5] 0.00078392350980873 [GeV] +Cell[12,22] 2.1806541212754e-08 [GeV] +Cell[10,44] 3.8128042248218e-06 [GeV] +Cell[10,45] 2.9556635388417e-07 [GeV] +Cell[9,46] 1.1716669519046e-08 [GeV] +Cell[14,26] 0.0013390059055502 [GeV] +Cell[10,46] 1.1314346019958e-05 [GeV] +Cell[10,43] 5.7636003475636e-08 [GeV] +Cell[13,37] 0.0010876083798494 [GeV] +Cell[8,14] 0.0040302223119323 [GeV] +Cell[13,19] 0.00051099891 [GeV] +Cell[17,14] 0.00037444318940516 [GeV] +Cell[17,13] 1.4004556046416e-05 [GeV] +Cell[11,7] 0.0011607256774781 [GeV] +Cell[13,39] 0.0016005733884205 [GeV] +Cell[13,40] 0.0047988749967289 [GeV] +Cell[16,1] 2.9461516533047e-09 [GeV] +Cell[12,6] 0.00075539626224008 [GeV] +Cell[11,12] 1.5471933875233e-07 [GeV] +Cell[11,17] 2.4249618964745e-05 [GeV] +Cell[12,18] 9.0555779479473e-09 [GeV] +Cell[12,19] 0.0011475547932877 [GeV] +Cell[13,44] 4.3900766513616e-08 [GeV] +Cell[16,14] 2.2276653908193e-09 [GeV] +Cell[16,15] 4.1367602534592e-09 [GeV] +Cell[13,43] 0.0010892341281987 [GeV] +Cell[13,42] 0.014975601066461 [GeV] +Cell[13,41] 0.33686475549878 [GeV] +Cell[14,21] 1.3098561994411e-06 [GeV] +Cell[14,14] 7.5907946900088e-05 [GeV] +Cell[13,12] 2.8408201149432e-05 [GeV] +Cell[16,19] 0.00011453628950483 [GeV] +Cell[15,8] 7.5982418941294e-05 [GeV] +Cell[14,37] 0.0002807195517762 [GeV] +Cell[14,44] 4.9380622613171e-09 [GeV] +Cell[14,39] 2.6081258576596e-05 [GeV] +Cell[14,40] 0.0034552620110521 [GeV] +Cell[14,38] 2.919825995923e-05 [GeV] +Cell[12,5] 1.9824504387088e-05 [GeV] +Cell[17,15] 0.00035816617354533 [GeV] +Cell[14,8] 0.00013339718042414 [GeV] +Cell[12,41] 2.9760155939584e-10 [GeV] +Cell[17,6] 0.0014322332772713 [GeV] +Cell[13,18] 1.9851143292726e-08 [GeV] +Cell[16,44] 1.2659846106544e-08 [GeV] +Cell[12,21] 0.00020047802773274 [GeV] +Cell[14,43] 1.0227086022496e-10 [GeV] +Cell[12,40] 0.0012385615622122 [GeV] +Cell[15,0] 2.608808021364e-06 [GeV] +Cell[15,47] 2.3071595090073e-05 [GeV] +Cell[14,41] 0.014428906581635 [GeV] +Cell[16,2] 1.5362194972113e-08 [GeV] +Cell[14,15] 0.00053133386010632 [GeV] +Cell[15,4] 0.0010793424197785 [GeV] +Cell[9,2] 2.9550920020256e-06 [GeV] +Cell[16,18] 6.3703724212019e-06 [GeV] +Cell[12,20] 0.00024094676126651 [GeV] +Cell[15,12] 0.00066866417240443 [GeV] +Cell[16,45] 5.2972617122578e-06 [GeV] +Cell[16,46] 4.4563042251866e-08 [GeV] +Cell[14,11] 5.8343461423647e-06 [GeV] +Cell[15,3] 8.9336282371733e-09 [GeV] +### Total energy deposition in calorimeter by a source track in 83 cells : 0.40409360799524 (GeV) Source track ID 9075 (gamma,0.00089279460064432[GeV]) at (316.86296529522,-386.77882726996,152.63298074893) Original primary track ID 29 (unknown,1.6025887774154[GeV]) @@ -3608,221 +3609,156 @@ Cell[10,41] 0.00089279460064432 [GeV] Source track ID 9030 (e-,0.25915921690042[GeV]) at (347.05458289034,-359.9348781305,157.04940758746) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[11,40] 0.00044551429440229 [GeV] -Cell[10,41] 0.16297724492569 [GeV] -Cell[10,40] 0.0043242174247602 [GeV] -Cell[11,6] 0.00022338386606076 [GeV] -Cell[11,42] 0.0074429999693321 [GeV] -Cell[10,42] 0.082947242466236 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.25836060294648 (GeV) +Cell[11,43] 0.00027254814293735 [GeV] +Cell[10,43] 0.024839601757071 [GeV] +Cell[11,41] 0.0020007870829715 [GeV] +Cell[10,41] 0.099907434187205 [GeV] +Cell[11,42] 0.0068096628107791 [GeV] +Cell[10,42] 0.12481818400946 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.25864821799042 (GeV) Source track ID 9032 (gamma,0.026292583169064[GeV]) at (315.45330703443,-387.9293892979,149.23443814548) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[10,41] 0.019357284591726 [GeV] -Cell[10,40] 0.0020446565928039 [GeV] -Cell[9,4] 0.0048906419845343 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.026292583169065 (GeV) +Cell[10,40] 0.0088589243279577 [GeV] +Cell[10,41] 0.017433658841107 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.026292583169064 (GeV) Source track ID 9034 (gamma,0.018392093582882[GeV]) at (253.61966112716,-430.90261949743,157.10192253689) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[6,11] 0.0013037738367797 [GeV] -Cell[10,40] 0.016340934156426 [GeV] -Cell[9,30] 0.00056064893909751 [GeV] -Cell[4,41] 0.00018673665057926 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.018392093582882 (GeV) +Cell[10,39] 0.00121177705102 [GeV] +Cell[10,40] 0.011070570925707 [GeV] +Cell[12,3] 0.00049366186492135 [GeV] +Cell[10,17] 0.00015750402789857 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.012933513869547 (GeV) Source track ID 9031 (e+,0.051040894245688[GeV]) at (399.15628615942,301.12166846546,1320.2060975023) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[13,26] 0.00051099891 [GeV] -Cell[16,5] 0.014297157584405 [GeV] -Cell[16,4] 0.036743736661283 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.051551893155688 (GeV) +Cell[16,5] 0.013316349860253 [GeV] +Cell[16,4] 0.037474352963902 [GeV] +Cell[14,20] 0.00030208334407143 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.051092786168227 (GeV) Source track ID 9029 (gamma,0.13885684299554[GeV]) at (475.10691622037,-155.79928805862,345.33261146431) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[11,45] 0.12695977592029 [GeV] -Cell[12,45] 0.0038957476899996 [GeV] -Cell[12,46] 0.0023821042772356 [GeV] -Cell[11,43] 0.0012315373885082 [GeV] -Cell[11,44] 0.0043876777195088 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.13885684299554 (GeV) +Cell[11,47] 0.00083310250372033 [GeV] +Cell[11,46] 0.0026506943358924 [GeV] +Cell[11,45] 0.13327670946976 [GeV] +Cell[12,45] 0.0020156891697544 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.13877619547913 (GeV) Source track ID 9026 (e-,0.00052297320919408[GeV]) at (414.20818132135,-280.05639169006,1925.0991940846) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[19,43] 1.197429919408e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 1.197429919408e-05 (GeV) +Cell[19,43] 1.2009197145486e-07 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 1.2009197145486e-07 (GeV) Source track ID 8901 (e-,0.00074197523153615[GeV]) at (416.24619759768,-277.01823583561,1920.0838937951) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[19,43] 0.00023097632153615 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00023097632153615 (GeV) +Cell[19,43] 0.00020166728055784 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00020166728055784 (GeV) Source track ID 8881 (gamma,0.1484777566564[GeV]) at (-237.2276168365,440.13981620625,-159.00519862946) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[8,15] 0.0043084362091014 [GeV] -Cell[8,14] 0.00062516432408489 [GeV] -Cell[9,16] 0.0047933189391104 [GeV] -Cell[7,15] 0.00032564667560553 [GeV] -Cell[9,15] 0.13742621308012 [GeV] -Cell[9,14] 0.00051099891 [GeV] -Cell[7,14] 0.00048797851838064 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.1484777566564 (GeV) +Cell[8,0] 0.00051099891 [GeV] +Cell[9,16] 0.0036367122768128 [GeV] +Cell[9,15] 0.14007203164829 [GeV] +Cell[18,47] 0.0011032421846871 [GeV] +Cell[9,17] 0.00075965001986296 [GeV] +Cell[9,37] 0.00048053769111834 [GeV] +Cell[17,42] 0.0018841227067462 [GeV] +### Total energy deposition in calorimeter by a source track in 7 cells : 0.14844729543752 (GeV) Source track ID 8882 (gamma,0.20137908385321[GeV]) at (152.32667048377,476.2316510474,-66.015723937746) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[9,9] 0.19921241588896 [GeV] -Cell[9,10] 0.0010565379947779 [GeV] -Cell[9,8] 0.0008835628530661 [GeV] -Cell[10,9] 0.00022656711640632 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.20137908385321 (GeV) +Cell[9,10] 0.0058160870111364 [GeV] +Cell[9,9] 0.19218714555582 [GeV] +Cell[9,8] 0.0033758512862572 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.20137908385321 (GeV) Source track ID 8872 (pi-,0.40001460491105[GeV]) at (385.25627005268,-318.71241956519,360.23696107582) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[11,40] 1.1747682879104e-07 [GeV] -Cell[12,43] 0.19982586453735 [GeV] -Cell[14,44] 0.0011686786010088 [GeV] -Cell[12,25] 5.5134452704806e-06 [GeV] -Cell[12,27] 0.00064480968630244 [GeV] -Cell[12,26] 0.00022789923984783 [GeV] -Cell[11,24] 2.2461404114438e-10 [GeV] -Cell[11,25] 0.001021778276873 [GeV] -Cell[11,45] 9.8176610159726e-06 [GeV] -Cell[12,23] 0.00019865297283411 [GeV] -Cell[11,27] 0.00076738651497146 [GeV] -Cell[12,24] 0.00058840052620019 [GeV] -Cell[12,33] 4.8514601076022e-08 [GeV] -Cell[9,12] 8.9409379579592e-06 [GeV] -Cell[8,40] 0.00016874852452236 [GeV] -Cell[12,44] 0.0071411032086753 [GeV] -Cell[12,42] 0.003315712929074 [GeV] -Cell[11,42] 0.040736526427355 [GeV] -Cell[12,41] 1.0620812803381e-06 [GeV] -Cell[12,45] 0.00051388169743404 [GeV] -Cell[13,44] 0.00076606693551685 [GeV] -Cell[13,43] 1.4344947823702e-05 [GeV] -Cell[12,40] 1.2587406672537e-10 [GeV] -Cell[11,43] 0.032099298898327 [GeV] -Cell[11,44] 0.0015058019941338 [GeV] -Cell[11,39] 1.4421096580008e-08 [GeV] -Cell[14,25] 3.9549657996076e-06 [GeV] -Cell[15,21] 2.3380122843264e-06 [GeV] -Cell[16,47] 1.9759191509365e-06 [GeV] -Cell[14,20] 0.0032832430649305 [GeV] -Cell[14,26] 5.5882657405846e-06 [GeV] -Cell[15,20] 0.00035270746846379 [GeV] -Cell[8,41] 0.0016337199130443 [GeV] -Cell[14,19] 3.8295170170386e-05 [GeV] -Cell[10,13] 0.001243384808122 [GeV] -Cell[16,46] 1.0044764812847e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 36 cells : 0.29729668287097 (GeV) +Cell[13,46] 0.014292417639338 [GeV] +Cell[13,47] 0.015375012868232 [GeV] +Cell[12,42] 0.00085180125065772 [GeV] +Cell[11,23] 0.0011648279095511 [GeV] +Cell[11,43] 0.11268276597121 [GeV] +Cell[12,47] 1.4366553375567e-07 [GeV] +Cell[12,46] 0.00031503688483372 [GeV] +Cell[13,30] 0.0011005700782559 [GeV] +Cell[12,45] 0.00019035873488758 [GeV] +Cell[12,44] 0.00051133047474819 [GeV] +Cell[11,44] 0.0023409705503775 [GeV] +Cell[13,45] 2.3017454939691e-05 [GeV] +Cell[12,43] 0.12923604416742 [GeV] +Cell[13,0] 9.2494325485859e-08 [GeV] +Cell[14,45] 1.0899466414003e-06 [GeV] +Cell[14,46] 0.00019438151480495 [GeV] +Cell[11,42] 0.063870778527586 [GeV] +Cell[12,41] 0.0013095929613603 [GeV] +Cell[14,30] 0.0015803877247428 [GeV] +### Total energy deposition in calorimeter by a source track in 19 cells : 0.34504062081944 (GeV) Source track ID 8864 (gamma,0.094503470007519[GeV]) at (318.07142778765,385.78564880659,-1059.6706907862) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,5] 0.0013524164284671 [GeV] -Cell[3,24] 0.00078291545050256 [GeV] -Cell[4,6] 0.087677653645252 [GeV] -Cell[4,7] 0.0046904844832971 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.094503470007519 (GeV) +Cell[4,39] 8.9649246696534e-05 [GeV] +Cell[6,32] 0.0010025785744776 [GeV] +Cell[4,6] 0.087900240267284 [GeV] +Cell[4,7] 0.0015313515574487 [GeV] +Cell[2,47] 0.00027799104642257 [GeV] +Cell[0,31] 0.00034865062560728 [GeV] +Cell[18,24] 0.00051099891 [GeV] +Cell[4,38] 0.000381005882784 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.092042466110721 (GeV) Source track ID 8778 (pi+,0.33207240653513[GeV]) at (218.61875062503,449.67303885729,-1603.7786756606) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[2,38] 1.6744964406826e-05 [GeV] -Cell[8,15] 2.1171096013859e-06 [GeV] -Cell[6,31] 0.00058056336620393 [GeV] -Cell[8,14] 0.0033826854921241 [GeV] -Cell[7,32] 1.2363044481845e-06 [GeV] -Cell[7,33] 6.8561462285288e-11 [GeV] -Cell[1,1] 1.1048922897317e-07 [GeV] -Cell[2,47] 3.5902530507883e-05 [GeV] -Cell[2,9] 0.0013308672871753 [GeV] -Cell[2,7] 0.00055839439220699 [GeV] -Cell[1,15] 4.3565275973378e-09 [GeV] -Cell[1,5] 0.00079323043772422 [GeV] -Cell[1,6] 5.7641755069653e-05 [GeV] -Cell[1,4] 1.5869754395567e-05 [GeV] -Cell[0,8] 0.00099523351680818 [GeV] -Cell[0,9] 0.00039260702895717 [GeV] -Cell[1,9] 7.7556207013117e-05 [GeV] -Cell[3,35] 0.00016837037601215 [GeV] -Cell[2,36] 0.00059332399014299 [GeV] -Cell[1,10] 6.2017719790219e-05 [GeV] -Cell[1,16] 5.1147247216932e-06 [GeV] -Cell[1,8] 0.12735587783397 [GeV] -Cell[1,7] 0.038426750208331 [GeV] -Cell[0,7] 2.132198349841e-06 [GeV] -Cell[2,6] 2.3676886792373e-05 [GeV] -Cell[3,36] 0.0012740817160921 [GeV] -Cell[7,19] 5.3656176073673e-05 [GeV] -Cell[7,21] 0.0013302940115771 [GeV] -Cell[2,39] 0.0042218841662992 [GeV] -Cell[2,8] 0.0011119206487469 [GeV] -Cell[7,20] 3.7088533687893e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 31 cells : 0.18290695425155 (GeV) +Cell[4,21] 2.9023685638094e-05 [GeV] +Cell[0,40] 0.0010799145210592 [GeV] +Cell[5,20] 0.0042485886031527 [GeV] +Cell[5,21] 2.4109024525387e-05 [GeV] +Cell[0,26] 0.00017102937503296 [GeV] +Cell[0,25] 0.00059632594255174 [GeV] +Cell[1,8] 0.2364293000953 [GeV] +Cell[1,7] 0.0041294665081494 [GeV] +Cell[1,9] 0.0028482131509693 [GeV] +Cell[1,10] 0.0009216759136732 [GeV] +Cell[0,39] 2.0809881942114e-05 [GeV] +Cell[0,46] 8.9959650608762e-08 [GeV] +Cell[0,13] 0.004382319688272 [GeV] +Cell[0,14] 0.0015722776990116 [GeV] +Cell[0,45] 0.00019592889985688 [GeV] +Cell[0,47] 1.5570549294353e-11 [GeV] +Cell[0,41] 2.8177423280681e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 17 cells : 0.25667725038764 (GeV) Source track ID 8784 (e-,0.00092720887572138[GeV]) at (57.154839599462,496.72258284717,-1084.1243078827) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,11] 0.00041620996572138 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00041620996572138 (GeV) +Cell[4,11] 0.00017931841835649 [GeV] +Cell[5,10] 0.00014783941817013 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.00032715783652661 (GeV) Source track ID 8779 (pi-,0.61387615001562[GeV]) at (87.031636762496,492.36723510246,-888.62959515126) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[6,13] 0.0046328330047914 [GeV] -Cell[2,30] 0.0002756073597901 [GeV] -Cell[3,25] 0.0012037429648185 [GeV] -Cell[5,30] 4.390373750357e-05 [GeV] -Cell[7,35] 1.6791349189589e-05 [GeV] -Cell[6,9] 0.00087609357547103 [GeV] -Cell[6,8] 1.3036784434917e-07 [GeV] -Cell[5,29] 0.0054643655976224 [GeV] -Cell[8,31] 7.965062234689e-06 [GeV] -Cell[6,7] 2.5504825089229e-08 [GeV] -Cell[5,43] 0.0027754419266871 [GeV] -Cell[3,26] 7.7540288845057e-06 [GeV] -Cell[5,28] 0.00068887191214083 [GeV] -Cell[7,31] 7.9172459663823e-08 [GeV] -Cell[6,14] 0.0016207572718163 [GeV] -Cell[1,13] 0.00022188313990409 [GeV] -Cell[0,13] 3.358272465448e-09 [GeV] -Cell[3,0] 2.6010728441179e-05 [GeV] -Cell[6,15] 0.00014836923513019 [GeV] -Cell[7,32] 9.3335984274745e-11 [GeV] -Cell[8,32] 4.799530870514e-10 [GeV] -Cell[4,43] 2.2766067331077e-05 [GeV] -Cell[5,8] 0.00077360088252158 [GeV] -Cell[0,1] 3.5584962461144e-08 [GeV] -Cell[5,35] 0.00094255479912788 [GeV] -Cell[4,12] 0.0068292853093184 [GeV] -Cell[3,30] 0.00186915074334 [GeV] -Cell[6,2] 1.6018093447201e-07 [GeV] -Cell[3,39] 0.0030443664720008 [GeV] -Cell[3,38] 0.0012317097166334 [GeV] -Cell[4,11] 0.0032520747498886 [GeV] -Cell[5,13] 0.0018485181323352 [GeV] -Cell[3,15] 3.7510039954213e-05 [GeV] -Cell[4,10] 0.0027372676740036 [GeV] -Cell[4,9] 0.00072256797883665 [GeV] -Cell[1,12] 0.00079212601499921 [GeV] -Cell[4,8] 7.506536121582e-10 [GeV] -Cell[4,42] 6.0506863519549e-11 [GeV] -Cell[6,12] 0.0015333906997073 [GeV] -Cell[3,37] 1.7299649945926e-05 [GeV] -Cell[4,37] 0.00023752840996315 [GeV] -Cell[7,36] 0.00066814867914456 [GeV] -Cell[4,13] 5.5376085390435e-07 [GeV] -Cell[5,12] 0.011610388256816 [GeV] -Cell[5,11] 0.18252067721959 [GeV] -Cell[5,14] 4.4941273712539e-05 [GeV] -Cell[7,15] 1.5832483768463e-11 [GeV] -Cell[6,16] 0.0014539336799696 [GeV] -Cell[4,39] 1.7341913073324e-05 [GeV] -Cell[4,38] 0.0034841111104886 [GeV] -Cell[5,10] 0.16264128835444 [GeV] -Cell[5,9] 0.01049610274679 [GeV] -Cell[4,36] 5.0733397201839e-06 [GeV] -Cell[5,27] 6.6876384448733e-07 [GeV] -Cell[4,14] 4.2610270497789e-08 [GeV] -Cell[5,15] 4.2062124033691e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 56 cells : 0.41688787763665 (GeV) +Cell[4,11] 0.14304250747423 [GeV] +Cell[4,12] 0.057743186025267 [GeV] +Cell[4,10] 0.12479988366093 [GeV] +Cell[4,9] 0.0045447595026356 [GeV] +Cell[7,35] 1.8457649275661e-10 [GeV] +Cell[8,34] 3.3767996260735e-05 [GeV] +Cell[8,35] 1.4249343621486e-08 [GeV] +Cell[5,9] 1.3963341075396e-08 [GeV] +Cell[5,10] 0.076481962984082 [GeV] +Cell[3,11] 0.0086760283749956 [GeV] +Cell[3,10] 0.0014355884969371 [GeV] +Cell[3,12] 0.0042316787780404 [GeV] +Cell[5,11] 0.068953039949419 [GeV] +Cell[3,8] 2.2885740970651e-06 [GeV] +Cell[3,9] 0.00057076625317848 [GeV] +Cell[5,12] 7.1977194693318e-10 [GeV] +Cell[7,34] 6.0990689730716e-06 [GeV] +Cell[4,13] 0.00424783913342 [GeV] +Cell[3,13] 0.0027159746958168 [GeV] +Cell[4,14] 0.0011540845522425 [GeV] +### Total energy deposition in calorimeter by a source track in 20 cells : 0.49863948463756 (GeV) Source track ID 5108 (proton,1.064005230558[GeV]) at (185.28008537244,-464.40423120853,-323.73291114647) Original primary track ID 31 (unknown,691.32334101424[GeV]) @@ -3831,15 +3767,28 @@ Cell[8,38] 0.12573321755795 [GeV] Source track ID 5109 (neutron,0.97469878135098[GeV]) at (-327.73799731036,-377.60800457485,-649.67964999547) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,30] 0.00090946677212924 [GeV] -Cell[6,30] 0.0011666160808214 [GeV] -Cell[6,31] 0.0022264426926365 [GeV] -Cell[7,31] 1.2631062418222e-11 [GeV] -Cell[7,32] 1.1832390872542e-06 [GeV] -Cell[6,34] 0.0011286302284308 [GeV] -Cell[6,32] 0.0038978981237343 [GeV] -Cell[6,33] 0.0035251201040924 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.012855357253563 (GeV) +Cell[6,28] 0.00013203548857928 [GeV] +Cell[6,29] 1.9821437599603e-06 [GeV] +Cell[7,33] 1.9618670630734e-06 [GeV] +Cell[9,9] 1.3802491594106e-09 [GeV] +Cell[5,29] 0.0010086873314967 [GeV] +Cell[5,28] 6.865695569104e-05 [GeV] +Cell[6,34] 9.9314489572635e-05 [GeV] +Cell[8,29] 0.0011812719179957 [GeV] +Cell[8,28] 0.00030873077978268 [GeV] +Cell[8,16] 2.9228631756268e-06 [GeV] +Cell[7,31] 3.1090299278731e-05 [GeV] +Cell[7,30] 0.00084983547339789 [GeV] +Cell[10,31] 0.00046717854546432 [GeV] +Cell[7,29] 5.2257877347074e-05 [GeV] +Cell[6,31] 8.762982592998e-05 [GeV] +Cell[7,32] 0.0039407087730257 [GeV] +Cell[6,30] 0.00069380620315333 [GeV] +Cell[3,5] 2.7845219010487e-06 [GeV] +Cell[7,34] 4.4695578126039e-05 [GeV] +Cell[10,30] 4.2200554162264e-11 [GeV] +Cell[6,15] 3.5701143340475e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 21 cells : 0.009011253500531 (GeV) Source track ID 5110 (proton,0.9652435614822[GeV]) at (-496.30471373411,60.676446215154,-682.25092105431) Original primary track ID 31 (unknown,691.32334101424[GeV]) @@ -3853,1004 +3802,641 @@ Cell[7,30] 0.020046060109053 [GeV] Source track ID 5112 (neutron,0.95280765531774[GeV]) at (-367.97569385984,338.51719118587,-950.81426800642) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[5,18] 2.0248776418157e-06 [GeV] -Cell[4,18] 0.0012861345855827 [GeV] -Cell[4,17] 0.0041493924001887 [GeV] -Cell[4,19] 9.7488990888905e-07 [GeV] -Cell[4,16] 0.00042051483404794 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.00585904158737 (GeV) +Cell[3,19] 3.192251897417e-07 [GeV] +Cell[4,18] 0.002094969158333 [GeV] +Cell[3,18] 0.00032161656765948 [GeV] +Cell[5,18] 0.0022172550798499 [GeV] +Cell[4,17] 0.001148434321699 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.0057825943527311 (GeV) Source track ID 5113 (neutron,0.95156181488161[GeV]) at (-494.63985411857,-73.016537288203,-647.09864308437) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[6,28] 0.00053541294883632 [GeV] -Cell[5,28] 3.8587245398958e-11 [GeV] -Cell[6,27] 3.2721831999083e-05 [GeV] -Cell[6,26] 5.7534649386071e-06 [GeV] -Cell[5,27] 0.0032197531918599 [GeV] -Cell[6,25] 7.0410681946669e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.0038006825444158 (GeV) +Cell[7,27] 0.00027140038910602 [GeV] +Cell[6,26] 0.00078147381156611 [GeV] +Cell[6,25] 0.0022170492800361 [GeV] +Cell[7,28] 0.00057053823731462 [GeV] +Cell[7,29] 6.0254578863805e-07 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.0038410642638115 (GeV) Source track ID 5116 (neutron,0.9453417553991[GeV]) at (-55.128416664066,-496.95156471845,-930.09367433769) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,35] 0.001667771296657 [GeV] -Cell[5,35] 0.0031592982186393 [GeV] -Cell[5,36] 0.00094932588289703 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.0057763953981932 (GeV) +Cell[4,36] 0.0011890621166688 [GeV] +Cell[5,36] 0.0045844661413739 [GeV] +Cell[4,35] 2.4533102191526e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.0057735527911449 (GeV) Source track ID 5117 (gamma,0.00024823371805505[GeV]) at (498.8484892062,33.914374779642,-1425.9294437599) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[2,0] 0.00024823371805506 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00024823371805506 (GeV) +Cell[2,0] 0.00024823371805505 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00024823371805505 (GeV) Source track ID 5067 (pi-,0.4937221057664[GeV]) at (309.82905962012,-392.43592319628,-957.44753059329) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,12] 0.0016588883929288 [GeV] -Cell[3,24] 0.0045606166462816 [GeV] -Cell[6,43] 0.0003098451681393 [GeV] -Cell[4,29] 0.028506916516391 [GeV] -Cell[5,32] 4.499101600959e-05 [GeV] -Cell[9,26] 0.00036536604808316 [GeV] -Cell[7,35] 8.6809102672532e-05 [GeV] -Cell[7,47] 1.475022212253e-05 [GeV] -Cell[5,24] 1.4398820076508e-05 [GeV] -Cell[9,13] 1.2169912224635e-07 [GeV] -Cell[6,28] 3.0405132536544e-05 [GeV] -Cell[8,2] 0.0034177976170532 [GeV] -Cell[9,1] 0.001664740840924 [GeV] -Cell[5,40] 0.061458180277149 [GeV] -Cell[3,32] 9.3598553628453e-06 [GeV] -Cell[2,38] 3.1713934993604e-05 [GeV] -Cell[9,27] 0.00037550186018939 [GeV] -Cell[5,43] 0.0017232502299056 [GeV] -Cell[5,42] 0.019762750771779 [GeV] -Cell[6,39] 2.7588585944613e-05 [GeV] -Cell[2,32] 0.00055521754642893 [GeV] -Cell[8,28] 8.2623583439272e-06 [GeV] -Cell[6,42] 1.2837216955631e-05 [GeV] -Cell[6,41] 0.00018347563630209 [GeV] -Cell[6,31] 0.00014141276423277 [GeV] -Cell[9,23] 3.6511386861093e-07 [GeV] -Cell[8,14] 3.5944947740063e-08 [GeV] -Cell[9,2] 9.8431570405523e-05 [GeV] -Cell[7,0] 0.0011592609789061 [GeV] -Cell[3,1] 7.4056165414277e-05 [GeV] -Cell[8,24] 8.9052569819614e-08 [GeV] -Cell[9,22] 8.2497572293505e-08 [GeV] -Cell[10,2] 0.00012874582805102 [GeV] -Cell[13,18] 2.5210634630639e-06 [GeV] -Cell[3,22] 4.624830809189e-05 [GeV] -Cell[5,8] 5.345028564534e-07 [GeV] -Cell[2,1] 0.0002991574299034 [GeV] -Cell[2,47] 9.5439759206783e-10 [GeV] -Cell[9,28] 7.8344728390221e-06 [GeV] -Cell[9,3] 3.6635631693116e-07 [GeV] -Cell[13,36] 0.00016767028183187 [GeV] -Cell[5,16] 0.0020628709861245 [GeV] -Cell[8,39] 2.1696772018913e-06 [GeV] -Cell[8,38] 1.3555908226408e-05 [GeV] -Cell[0,43] 9.2587238759734e-06 [GeV] -Cell[1,5] 0.00078384276893331 [GeV] -Cell[1,4] 0.00089697737937964 [GeV] -Cell[3,28] 0.00051099891 [GeV] -Cell[3,30] 0.0001481226755945 [GeV] -Cell[6,21] 3.073680572561e-05 [GeV] -Cell[6,20] 0.0011530767858498 [GeV] -Cell[2,12] 0.00075740956479654 [GeV] -Cell[2,0] 8.5312170809857e-06 [GeV] -Cell[2,33] 1.3686158186829e-05 [GeV] -Cell[1,0] 3.2964628189802e-08 [GeV] -Cell[2,2] 0.0094549959308911 [GeV] -Cell[2,3] 0.00012249751609954 [GeV] -Cell[3,12] 0.073917238222562 [GeV] -Cell[3,13] 0.0031877015890477 [GeV] -Cell[2,34] 0.00079981102642148 [GeV] -Cell[3,31] 0.0018693195930049 [GeV] -Cell[2,4] 0.00010072999981764 [GeV] -Cell[3,3] 2.1598071040671e-05 [GeV] -Cell[4,28] 0.0079709631724815 [GeV] -Cell[4,7] 4.750209094027e-06 [GeV] -Cell[4,8] 6.9195795425685e-05 [GeV] -Cell[4,23] 2.144394768402e-05 [GeV] -Cell[4,22] 2.3472092405427e-05 [GeV] -Cell[4,24] 3.8569027674384e-07 [GeV] -Cell[8,36] 0.00034162164553257 [GeV] -Cell[4,42] 0.0056758906564774 [GeV] -Cell[5,23] 0.00057106604470459 [GeV] -Cell[3,2] 0.0012045729177064 [GeV] -Cell[3,33] 1.2687853304669e-06 [GeV] -Cell[7,36] 0.0010079838575092 [GeV] -Cell[10,3] 1.5491121985178e-09 [GeV] -Cell[8,26] 2.3023977701087e-06 [GeV] -Cell[9,44] 1.2549211736768e-05 [GeV] -Cell[9,43] 1.0363234003307e-05 [GeV] -Cell[10,15] 9.4751303549856e-08 [GeV] -Cell[6,16] 1.1112017120467e-05 [GeV] -Cell[8,41] 0.00012214187786708 [GeV] -Cell[5,41] 0.052666727899969 [GeV] -Cell[4,39] 0.0023625199826798 [GeV] -Cell[4,40] 2.09201756536e-05 [GeV] -Cell[4,41] 0.00088357289792175 [GeV] -Cell[5,9] 5.6965135149767e-07 [GeV] -Cell[5,20] 2.1097313265273e-09 [GeV] -Cell[9,15] 1.079415960703e-07 [GeV] -Cell[9,14] 2.419319935143e-08 [GeV] -Cell[10,13] 0.00010140833689104 [GeV] -Cell[6,32] 0.0037142627441797 [GeV] -Cell[7,14] 8.085195440799e-08 [GeV] -Cell[9,41] 7.8539412817918e-05 [GeV] -Cell[6,17] 0.0014110725614946 [GeV] -Cell[6,18] 1.3397773273027e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 96 cells : 0.30110675120861 (GeV) +Cell[4,9] 0.0011463664767472 [GeV] +Cell[4,21] 1.021870074328e-05 [GeV] +Cell[4,39] 7.9149346461236e-06 [GeV] +Cell[4,20] 3.8738429138903e-06 [GeV] +Cell[13,27] 0.0021589817184152 [GeV] +Cell[4,42] 0.14967422853333 [GeV] +Cell[4,43] 0.085954830425478 [GeV] +Cell[4,44] 5.7214375032345e-05 [GeV] +Cell[5,43] 4.5830490648768e-08 [GeV] +Cell[4,41] 0.10398533162985 [GeV] +Cell[3,41] 0.00057696871367727 [GeV] +Cell[3,21] 0.0015388860562928 [GeV] +Cell[5,34] 6.4992793431884e-05 [GeV] +Cell[5,9] 0.00024896751596805 [GeV] +Cell[3,43] 0.003537671351097 [GeV] +Cell[5,8] 7.9364743724e-06 [GeV] +Cell[2,43] 0.0041134814144301 [GeV] +Cell[5,42] 6.4010660656322e-05 [GeV] +Cell[5,41] 0.058642204965588 [GeV] +Cell[2,32] 3.817962409812e-05 [GeV] +Cell[3,38] 0.0025985528398502 [GeV] +Cell[3,42] 0.0015269482258408 [GeV] +Cell[3,23] 3.6194382232679e-08 [GeV] +Cell[3,22] 0.00026864908656376 [GeV] +Cell[3,39] 6.3253263990873e-05 [GeV] +Cell[5,33] 0.00016141513062621 [GeV] +Cell[5,32] 5.029960696811e-05 [GeV] +Cell[4,40] 0.00078337791574847 [GeV] +Cell[6,33] 5.373674969178e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 29 cells : 0.41728489203798 (GeV) Source track ID 5068 (pi+,1.8607759867074[GeV]) at (-197.34131315697,459.4087571232,-617.88836230729) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,10] 1.027473481372e-07 [GeV] -Cell[6,13] 0.0057314293859818 [GeV] -Cell[8,7] 2.2575435985459e-05 [GeV] -Cell[6,10] 3.7015026468907e-06 [GeV] -Cell[4,29] 2.5804125471041e-08 [GeV] -Cell[8,5] 0.00050165800901788 [GeV] -Cell[5,32] 1.6771955415606e-09 [GeV] -Cell[9,37] 0.00059258441004135 [GeV] -Cell[6,9] 0.0022251927602332 [GeV] -Cell[6,11] 0.0013119053208881 [GeV] -Cell[7,6] 0.00035310256232868 [GeV] -Cell[10,27] 9.4991497300839e-05 [GeV] -Cell[10,26] 1.7967073363252e-06 [GeV] -Cell[5,2] 6.6607317421585e-09 [GeV] -Cell[9,27] 9.2854696981703e-07 [GeV] -Cell[6,44] 0.0019462517013398 [GeV] -Cell[5,33] 2.180594674428e-07 [GeV] -Cell[8,29] 0.0076547059544106 [GeV] -Cell[6,45] 3.3646414522082e-08 [GeV] -Cell[8,28] 0.0044015698552632 [GeV] -Cell[9,36] 1.1807509930804e-05 [GeV] -Cell[10,44] 1.0585711152089e-10 [GeV] -Cell[6,31] 6.6787042596843e-06 [GeV] -Cell[9,29] 0.0018926124444719 [GeV] -Cell[8,47] 0.0013867661363922 [GeV] -Cell[10,9] 8.7718334252713e-06 [GeV] -Cell[9,46] 0.00013227408982129 [GeV] -Cell[9,2] 0.00016711345769698 [GeV] -Cell[7,23] 0.00066687938524865 [GeV] -Cell[6,14] 0.78304534241689 [GeV] -Cell[10,46] 0.0003040770894828 [GeV] -Cell[14,28] 4.0247787183034e-09 [GeV] -Cell[13,34] 1.3342091040158e-07 [GeV] -Cell[9,30] 0.0018033877273886 [GeV] -Cell[12,35] 6.6531356424093e-11 [GeV] -Cell[13,35] 2.0047547667446e-06 [GeV] -Cell[6,15] 0.24951198295648 [GeV] -Cell[5,21] 6.0036922070594e-07 [GeV] -Cell[11,27] 2.6981745684225e-06 [GeV] -Cell[10,47] 8.5575204653651e-05 [GeV] -Cell[15,27] 0.00020948709402626 [GeV] -Cell[7,32] 0.0028452728672779 [GeV] -Cell[8,30] 1.5868549089646e-05 [GeV] -Cell[10,8] 0.00054071364577351 [GeV] -Cell[6,27] 0.0031287712862608 [GeV] -Cell[7,28] 0.00061999006869519 [GeV] -Cell[3,22] 0.00060135333284643 [GeV] -Cell[2,47] 2.3168081725089e-08 [GeV] -Cell[5,0] 5.2271661406849e-06 [GeV] -Cell[5,1] 8.8451462261219e-08 [GeV] -Cell[9,28] 0.034234792439409 [GeV] -Cell[11,11] 0.00050440788999438 [GeV] -Cell[14,6] 3.6049080168596e-05 [GeV] -Cell[13,11] 0.000843014463781 [GeV] -Cell[13,36] 2.3879963846412e-06 [GeV] -Cell[0,37] 1.4613641633332e-07 [GeV] -Cell[5,17] 0.0078668076770777 [GeV] -Cell[5,16] 0.0034862408776007 [GeV] -Cell[8,39] 0.0066322023463082 [GeV] -Cell[4,12] 2.8393696993589e-09 [GeV] -Cell[1,47] 6.8323124924063e-07 [GeV] -Cell[2,28] 8.0481940240134e-06 [GeV] -Cell[2,23] 0.0009925439848105 [GeV] -Cell[0,9] 6.8189573357813e-06 [GeV] -Cell[3,4] 0.00098091428255188 [GeV] -Cell[6,2] 2.5932701829447e-05 [GeV] -Cell[1,18] 0.0020610975940113 [GeV] -Cell[10,7] 2.5824603626234e-05 [GeV] -Cell[5,13] 0.003566702173973 [GeV] -Cell[2,36] 0.00020192200480437 [GeV] -Cell[1,0] 1.0567648135975e-06 [GeV] -Cell[1,10] 0.0005220944297123 [GeV] -Cell[6,1] 9.96015820308e-05 [GeV] -Cell[3,3] 0.0029158042127282 [GeV] -Cell[6,0] 0.00055340950670939 [GeV] -Cell[0,11] 2.6486327442399e-10 [GeV] -Cell[0,10] 0.00012732315737094 [GeV] -Cell[4,22] 3.041576466785e-05 [GeV] -Cell[7,41] 0.00069222166250919 [GeV] -Cell[6,12] 0.00049402621104514 [GeV] -Cell[8,46] 1.8036098481389e-08 [GeV] -Cell[8,45] 5.2332761697471e-09 [GeV] -Cell[7,13] 0.010940137023605 [GeV] -Cell[5,3] 3.8222060538828e-09 [GeV] -Cell[7,22] 0.00076738185024726 [GeV] -Cell[9,45] 0.0019379513789303 [GeV] -Cell[10,45] 4.1483051920864e-05 [GeV] -Cell[4,13] 2.6506724657338e-07 [GeV] -Cell[5,12] 3.8025589878089e-05 [GeV] -Cell[9,44] 4.7161299327854e-05 [GeV] -Cell[5,14] 0.057809139755804 [GeV] -Cell[15,47] 1.9315131357871e-06 [GeV] -Cell[7,15] 0.0012284524922827 [GeV] -Cell[6,16] 0.0077821305734875 [GeV] -Cell[13,2] 0.0023131611664035 [GeV] -Cell[7,42] 1.0106387489941e-05 [GeV] -Cell[8,42] 2.4696326174308e-05 [GeV] -Cell[15,28] 0.0030695129838958 [GeV] -Cell[7,24] 6.0436050964654e-06 [GeV] -Cell[4,36] 0.0010251689869457 [GeV] -Cell[16,27] 0.00046075182208326 [GeV] -Cell[3,10] 0.00017255021706114 [GeV] -Cell[6,32] 1.6172445612028e-08 [GeV] -Cell[6,33] 7.0310519949999e-06 [GeV] -Cell[7,14] 0.0083564931839512 [GeV] -Cell[5,15] 0.045154059074397 [GeV] -Cell[5,36] 0.00048981309491175 [GeV] -Cell[6,17] 0.002101067765518 [GeV] -### Total energy deposition in calorimeter by a source track in 108 cells : 1.2825353393044 (GeV) +Cell[4,11] 0.0055304083593682 [GeV] +Cell[4,10] 0.008328399995122 [GeV] +Cell[2,21] 0.00028234141143116 [GeV] +Cell[7,13] 0.0041732089652297 [GeV] +Cell[7,33] 4.4259650167078e-09 [GeV] +Cell[7,11] 7.1248541644309e-10 [GeV] +Cell[8,13] 0.0002289360563102 [GeV] +Cell[8,12] 9.6883707954021e-07 [GeV] +Cell[7,14] 0.00041949717876969 [GeV] +Cell[7,12] 7.1625738056355e-05 [GeV] +Cell[7,15] 7.07557244084e-06 [GeV] +Cell[6,12] 0.00082648973260211 [GeV] +Cell[4,36] 5.1362119265832e-06 [GeV] +Cell[8,0] 1.0897906577156e-11 [GeV] +Cell[5,47] 9.5231214363594e-06 [GeV] +Cell[5,36] 0.00040447979193993 [GeV] +Cell[4,35] 2.9144571760753e-07 [GeV] +Cell[4,42] 3.4123254590668e-06 [GeV] +Cell[9,47] 0.00086767945816882 [GeV] +Cell[8,47] 0.00052673586817241 [GeV] +Cell[5,43] 0.0007286051818738 [GeV] +Cell[2,40] 0.0017863236071303 [GeV] +Cell[2,41] 0.0015003858208038 [GeV] +Cell[3,28] 5.9466368071526e-06 [GeV] +Cell[7,32] 9.8214368335903e-09 [GeV] +Cell[6,30] 4.3786675407318e-05 [GeV] +Cell[5,17] 3.9674514811168e-06 [GeV] +Cell[3,20] 0.00022153044050549 [GeV] +Cell[3,21] 9.9569286931001e-09 [GeV] +Cell[4,15] 0.0054796808541698 [GeV] +Cell[4,16] 0.0030950934685594 [GeV] +Cell[5,9] 0.0024170249967016 [GeV] +Cell[1,42] 2.2705875482643e-05 [GeV] +Cell[5,14] 0.64244804850334 [GeV] +Cell[5,10] 0.057273940356584 [GeV] +Cell[5,2] 4.8394757186543e-08 [GeV] +Cell[5,16] 0.0030318218526348 [GeV] +Cell[0,37] 1.5844672743697e-06 [GeV] +Cell[1,6] 9.9722032318823e-06 [GeV] +Cell[3,16] 0.0022230510621662 [GeV] +Cell[3,15] 0.0023586115570971 [GeV] +Cell[2,22] 6.6072557431198e-06 [GeV] +Cell[5,35] 0.0005365254549323 [GeV] +Cell[5,46] 2.3487843869134e-05 [GeV] +Cell[5,11] 0.061740996717472 [GeV] +Cell[4,33] 5.5225433723535e-05 [GeV] +Cell[6,13] 0.015671040693806 [GeV] +Cell[6,14] 0.19593294737174 [GeV] +Cell[1,41] 0.00019179724842797 [GeV] +Cell[5,13] 0.01590024158818 [GeV] +Cell[6,11] 0.00075234857816918 [GeV] +Cell[5,3] 3.0432535038472e-07 [GeV] +Cell[5,12] 0.0031208738785615 [GeV] +Cell[7,47] 0.007346795524327 [GeV] +Cell[4,45] 1.2716469500447e-05 [GeV] +Cell[4,13] 0.0044433410158661 [GeV] +Cell[4,14] 0.003475967481998 [GeV] +Cell[6,15] 0.090797630338673 [GeV] +Cell[5,15] 0.017994078302879 [GeV] +Cell[3,14] 0.0001168273240346 [GeV] +Cell[4,29] 3.3918805023859e-05 [GeV] +Cell[4,28] 0.00017268440981479 [GeV] +Cell[6,17] 0.00070814296827154 [GeV] +Cell[6,16] 0.00021113278084613 [GeV] +### Total energy deposition in calorimeter by a source track in 64 cells : 1.1635839962142 (GeV) Source track ID 5065 (gamma,1.5112205487345[GeV]) at (-499.81457207558,13.615929674816,-1633.5784615142) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,8] 0.00040312426194454 [GeV] -Cell[0,39] 0.00053119249128524 [GeV] -Cell[1,45] 0.0004102641521805 [GeV] -Cell[0,33] 0.0025106988250328 [GeV] -Cell[1,23] 1.3764979588572 [GeV] -Cell[2,38] 0.00065319285624523 [GeV] -Cell[12,7] 0.00029661525753475 [GeV] -Cell[1,31] 0.00045686749189279 [GeV] -Cell[5,1] 0.00035736948390852 [GeV] -Cell[0,24] 5.5480310020213e-05 [GeV] -Cell[0,23] 0.0018959189843171 [GeV] -Cell[0,22] 0.00041743410329921 [GeV] -Cell[0,32] 0.015034279906475 [GeV] -Cell[2,20] 0.0011162743448927 [GeV] -Cell[2,23] 0.00047682738539167 [GeV] -Cell[1,38] 0.0084085592725693 [GeV] -Cell[6,36] 0.00045226374964812 [GeV] -Cell[1,18] 0.0010213652526617 [GeV] -Cell[3,39] 0.0028736877364935 [GeV] -Cell[1,10] 0.0023198109758033 [GeV] -Cell[0,44] 0.00069745880003983 [GeV] -Cell[1,7] 0.0055892532510667 [GeV] -Cell[1,24] 0.036702513794031 [GeV] -Cell[2,6] 0.00027300292975724 [GeV] -Cell[3,3] 0.00056463477241292 [GeV] -Cell[0,10] 0.00073188119616974 [GeV] -Cell[4,42] 0.00051099891 [GeV] -Cell[3,41] 0.0025737720773852 [GeV] -Cell[3,37] 0.0004113775358597 [GeV] -Cell[3,2] 0.00054572178959853 [GeV] -Cell[4,38] 0.00081099560913083 [GeV] -Cell[2,40] 0.001870636468412 [GeV] -Cell[1,25] 0.0021241024726204 [GeV] -Cell[5,15] 0.00018111282641185 [GeV] -### Total energy deposition in calorimeter by a source track in 34 cells : 1.4697766481317 (GeV) +Cell[7,26] 3.8540524696549e-05 [GeV] +Cell[11,21] 0.00047245838530345 [GeV] +Cell[2,39] 0.00051099891 [GeV] +Cell[4,3] 0.00051099891 [GeV] +Cell[5,5] 0.00051099891 [GeV] +Cell[1,24] 0.056004153416503 [GeV] +Cell[1,23] 1.3940634082834 [GeV] +Cell[0,23] 0.0033264987029401 [GeV] +Cell[1,22] 0.0082935162280565 [GeV] +Cell[6,7] 0.00051099891 [GeV] +Cell[2,44] 0.00040106931230704 [GeV] +Cell[0,8] 0.00067557445818209 [GeV] +Cell[0,17] 0.00010992959769296 [GeV] +Cell[1,8] 0.00024590805523659 [GeV] +Cell[0,37] 0.00058449725695985 [GeV] +Cell[3,33] 0.0031500982376207 [GeV] +Cell[1,6] 0.00054403034100257 [GeV] +Cell[0,46] 0.0018123001583302 [GeV] +Cell[3,8] 0.00064381687369255 [GeV] +Cell[1,1] 0.00051099891 [GeV] +Cell[2,24] 0.00043278713635906 [GeV] +Cell[1,43] 0.00039636571115161 [GeV] +Cell[0,2] 0.0032253871541337 [GeV] +Cell[2,14] 0.00050017591322196 [GeV] +Cell[0,1] 0.0071445694590255 [GeV] +### Total energy deposition in calorimeter by a source track in 25 cells : 1.4846200797558 (GeV) Source track ID 5066 (gamma,2.1679106429722[GeV]) at (-488.39602897378,-107.09490596027,-1544.0566821353) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,4] 0.00035719220898102 [GeV] -Cell[4,3] 0.0013130593329242 [GeV] -Cell[2,30] 0.002446627913124 [GeV] -Cell[11,40] 0.0013564806014571 [GeV] -Cell[4,45] 0.00051099891 [GeV] -Cell[3,43] 0.0026047789827449 [GeV] -Cell[8,29] 0.00027626849620569 [GeV] -Cell[8,15] 0.00089067497498348 [GeV] -Cell[8,14] 0.00013196691783662 [GeV] -Cell[0,14] 0.00061631803466519 [GeV] -Cell[3,1] 0.00058799454505701 [GeV] -Cell[11,16] 0.00032423230925236 [GeV] -Cell[7,45] 0.0046447539973149 [GeV] -Cell[1,30] 0.00021780540507506 [GeV] -Cell[1,31] 0.00084120987462452 [GeV] -Cell[2,1] 0.0012230040473301 [GeV] -Cell[0,18] 0.0024473466092033 [GeV] -Cell[0,43] 0.00051099891 [GeV] -Cell[1,26] 0.022107911736101 [GeV] -Cell[2,27] 0.00060778665729983 [GeV] -Cell[1,4] 0.00043504377879788 [GeV] -Cell[2,23] 0.00032201867804758 [GeV] -Cell[2,24] 0.0015910537732864 [GeV] -Cell[0,8] 0.0059421807211746 [GeV] -Cell[2,29] 5.6877672063109e-05 [GeV] -Cell[1,19] 0.00051099891 [GeV] -Cell[2,12] 0.00034783820493564 [GeV] -Cell[2,0] 0.003422377749886 [GeV] -Cell[0,35] 0.0020179564333152 [GeV] -Cell[1,32] 0.00071857296247367 [GeV] -Cell[0,44] 0.00083174677803711 [GeV] -Cell[1,8] 0.00032382855374099 [GeV] -Cell[1,7] 0.00051099891 [GeV] -Cell[1,24] 0.0066707096799014 [GeV] -Cell[2,43] 0.00071029963878017 [GeV] -Cell[2,18] 0.00051099891 [GeV] -Cell[2,15] 0.00051099891 [GeV] -Cell[0,29] 0.0001044675014977 [GeV] -Cell[2,4] 0.00044276113760887 [GeV] -Cell[1,11] 0.00042387867977419 [GeV] -Cell[5,44] 0.00049120922885844 [GeV] -Cell[2,25] 1.5664264512199 [GeV] -Cell[3,2] 8.0387620317678e-05 [GeV] -Cell[1,46] 0.00064907037183738 [GeV] -Cell[7,44] 0.00051099891 [GeV] -Cell[3,40] 0.00051099891 [GeV] -Cell[1,25] 0.45411673429989 [GeV] -Cell[2,8] 0.0005234917610725 [GeV] -Cell[0,41] 0.0016586377433931 [GeV] -Cell[1,41] 0.0011152135505151 [GeV] -Cell[0,40] 0.0026749344088069 [GeV] -Cell[9,14] 0.00054149510150055 [GeV] -Cell[2,26] 0.012591094442828 [GeV] -Cell[3,9] 0.0049818995489699 [GeV] -Cell[0,6] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 55 cells : 2.1178066340753 (GeV) +Cell[7,6] 0.00085794199005305 [GeV] +Cell[1,25] 1.3832310136334 [GeV] +Cell[2,25] 0.65402422545253 [GeV] +Cell[6,12] 0.0011178734330383 [GeV] +Cell[2,38] 0.00051099891 [GeV] +Cell[1,33] 0.00095237324004011 [GeV] +Cell[2,7] 0.0010114249183289 [GeV] +Cell[1,24] 0.017087049222438 [GeV] +Cell[0,7] 0.00051099891 [GeV] +Cell[5,9] 0.00060407008152122 [GeV] +Cell[1,2] 0.00090012735791335 [GeV] +Cell[1,10] 0.00086735131043628 [GeV] +Cell[2,5] 0.00050436395931665 [GeV] +Cell[0,39] 0.0007234878225306 [GeV] +Cell[1,26] 0.078594477814548 [GeV] +Cell[2,1] 0.00051099891 [GeV] +Cell[2,26] 0.006477480042157 [GeV] +Cell[2,24] 0.0030708623761745 [GeV] +Cell[5,12] 0.0011175937661739 [GeV] +Cell[2,14] 0.00065127867009638 [GeV] +Cell[1,28] 0.00023659532903328 [GeV] +Cell[1,40] 0.0028622666299982 [GeV] +### Total energy deposition in calorimeter by a source track in 22 cells : 2.1564248537798 (GeV) Source track ID 5025 (pi-,0.39138162242658[GeV]) at (-224.35553848576,446.83844099491,-1618.5462298556) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[1,14] 5.1139307412086e-05 [GeV] -Cell[0,15] 2.401676245654e-06 [GeV] -Cell[3,22] 0.0011008581930791 [GeV] -Cell[4,19] 1.7038106763493e-05 [GeV] -Cell[3,23] 6.3596394284104e-10 [GeV] -Cell[2,20] 1.0412122719572e-10 [GeV] -Cell[1,15] 0.20738406104246 [GeV] -Cell[2,13] 0.0078018938638824 [GeV] -Cell[3,6] 0.0013231858234221 [GeV] -Cell[1,5] 7.3934725151048e-09 [GeV] -Cell[1,6] 0.00059727215092744 [GeV] -Cell[1,38] 0.0003236216476584 [GeV] -Cell[2,21] 3.7431100281538e-09 [GeV] -Cell[1,18] 4.5577382552437e-06 [GeV] -Cell[1,40] 0.00031368650953573 [GeV] -Cell[0,16] 0.00082963889023699 [GeV] -Cell[1,16] 0.062747511087871 [GeV] -Cell[2,14] 0.0015500664537607 [GeV] -Cell[4,23] 0.0017917869852452 [GeV] -Cell[4,22] 0.0029091923808161 [GeV] -Cell[4,21] 0.0078220811853824 [GeV] -Cell[3,21] 0.0041617172183466 [GeV] -Cell[3,20] 2.0377407736305e-08 [GeV] -Cell[4,20] 0.0024237681088612 [GeV] -Cell[0,41] 0.00011211724778695 [GeV] -Cell[1,41] 4.6953026355823e-07 [GeV] -Cell[0,40] 4.3718232973333e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 27 cells : 0.30326814112052 (GeV) +Cell[7,42] 0.00014034986555157 [GeV] +Cell[0,40] 0.00087738526629869 [GeV] +Cell[10,25] 0.0034968478009328 [GeV] +Cell[2,7] 0.002183090667442 [GeV] +Cell[10,26] 0.00061693344529399 [GeV] +Cell[7,30] 1.4140678104013e-09 [GeV] +Cell[2,28] 0.00032664090836238 [GeV] +Cell[3,28] 1.0737376345219e-05 [GeV] +Cell[2,29] 4.67617023196e-05 [GeV] +Cell[3,27] 5.9951787534374e-10 [GeV] +Cell[1,44] 0.0051383348199258 [GeV] +Cell[3,2] 2.0341809761248e-07 [GeV] +Cell[1,17] 1.560489977237e-09 [GeV] +Cell[1,16] 0.0019902263109931 [GeV] +Cell[3,11] 0.0012403392386567 [GeV] +Cell[3,10] 2.939086779952e-05 [GeV] +Cell[0,17] 5.1474483905508e-05 [GeV] +Cell[1,7] 0.0013655675687335 [GeV] +Cell[2,8] 0.048496729412443 [GeV] +Cell[1,9] 0.00025939280741477 [GeV] +Cell[3,3] 2.620845407364e-11 [GeV] +Cell[0,15] 0.00043002946245558 [GeV] +Cell[0,39] 0.00047127693178095 [GeV] +Cell[1,6] 0.00051099891 [GeV] +Cell[2,16] 6.8900136511729e-09 [GeV] +Cell[3,7] 7.0677616006378e-06 [GeV] +Cell[1,39] 3.618976499979e-06 [GeV] +Cell[1,14] 0.00084765526959863 [GeV] +Cell[1,13] 1.7666297033429e-05 [GeV] +Cell[1,15] 0.1454586400975 [GeV] +Cell[1,12] 2.8256992023671e-05 [GeV] +Cell[0,14] 2.2118911147118e-12 [GeV] +Cell[3,8] 0.0010198749346948 [GeV] +Cell[0,16] 2.9312970983256e-05 [GeV] +Cell[10,30] 0.00040321471555308 [GeV] +Cell[4,8] 2.4813925847411e-06 [GeV] +Cell[0,30] 0.00044301684399602 [GeV] +Cell[9,37] 0.00049626367530594 [GeV] +Cell[1,43] 3.3525375736644e-05 [GeV] +Cell[1,40] 0.0011378776277752 [GeV] +Cell[0,29] 5.6840572506189e-07 [GeV] +### Total energy deposition in calorimeter by a source track in 41 cells : 0.21761176309388 (GeV) Source track ID 4998 (pi+,4.0201145966647[GeV]) at (-418.65608108641,-273.36255370729,-1790.7114001931) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[8,10] 0.00075270105892893 [GeV] -Cell[0,27] 0.36677679408429 [GeV] -Cell[7,8] 0.0025094442990248 [GeV] -Cell[3,24] 1.4347468386404e-06 [GeV] -Cell[0,39] 0.0028364242265708 [GeV] -Cell[6,28] 1.2467048974941e-05 [GeV] -Cell[8,31] 0.00011168329678516 [GeV] -Cell[11,40] 0.00046289842476802 [GeV] -Cell[4,44] 3.8482976378873e-08 [GeV] -Cell[1,45] 0.000155168976391 [GeV] -Cell[0,33] 0.0083967086113213 [GeV] -Cell[4,47] 0.0035225791258926 [GeV] -Cell[1,29] 0.021389744720625 [GeV] -Cell[6,44] 3.0913894192963e-08 [GeV] -Cell[6,45] 0.0001406834564483 [GeV] -Cell[9,6] 0.00028159669497209 [GeV] -Cell[8,0] 0.00099130428958904 [GeV] -Cell[1,13] 0.00051101851426357 [GeV] -Cell[3,1] 0.00060122815091199 [GeV] -Cell[3,47] 2.6282805483788e-06 [GeV] -Cell[3,0] 4.1963024035795e-05 [GeV] -Cell[4,0] 2.1508296922548e-05 [GeV] -Cell[5,4] 0.00037018731734016 [GeV] -Cell[1,30] 0.00046211311227797 [GeV] -Cell[7,33] 1.0414499120088e-05 [GeV] -Cell[8,30] 0.00039931561321484 [GeV] -Cell[4,46] 3.0632660129186e-05 [GeV] -Cell[2,44] 6.0169787730047e-09 [GeV] -Cell[2,45] 9.2301388576743e-09 [GeV] -Cell[2,1] 0.0015660909065247 [GeV] -Cell[1,1] 0.00059862545154463 [GeV] -Cell[2,47] 0.00051099891 [GeV] -Cell[5,0] 2.2723479458364e-05 [GeV] -Cell[5,6] 0.00022819391526942 [GeV] -Cell[15,7] 1.0643610297507e-05 [GeV] -Cell[14,7] 4.6065339059282e-05 [GeV] -Cell[14,6] 0.0025146678681609 [GeV] -Cell[0,24] 2.00880367629e-09 [GeV] -Cell[0,37] 1.211991332184e-08 [GeV] -Cell[0,23] 0.001698469915925 [GeV] -Cell[4,18] 0.00051099891 [GeV] -Cell[4,6] 4.9018373829313e-06 [GeV] -Cell[4,17] 4.9409447819926e-07 [GeV] -Cell[5,17] 2.0944523566868e-06 [GeV] -Cell[0,32] 0.0011057827873929 [GeV] -Cell[1,27] 0.011721444768132 [GeV] -Cell[5,16] 3.6272328965197e-06 [GeV] -Cell[4,15] 2.303626795765e-06 [GeV] -Cell[0,46] 0.0035135789108561 [GeV] -Cell[2,13] 2.2937328674288e-07 [GeV] -Cell[0,42] 0.00085904992304985 [GeV] -Cell[0,43] 0.0044813455621548 [GeV] -Cell[1,47] 3.0231545679271e-08 [GeV] -Cell[1,28] 0.041461542626179 [GeV] -Cell[0,31] 0.0010098692738653 [GeV] -Cell[0,38] 0.0011046169722489 [GeV] -Cell[0,9] 0.0021175579054116 [GeV] -Cell[2,16] 0.0007204288880739 [GeV] -Cell[1,39] 0.0019640922926383 [GeV] -Cell[2,12] 1.1182997170181e-05 [GeV] -Cell[2,0] 0.00042490110638321 [GeV] -Cell[0,35] 0.00051099891 [GeV] -Cell[0,25] 0.0030608115821624 [GeV] -Cell[6,46] 0.0064616160968674 [GeV] -Cell[0,26] 0.011042086391889 [GeV] -Cell[1,40] 0.0058443649277571 [GeV] -Cell[1,32] 0.0010962439242179 [GeV] -Cell[2,3] 0.00051099891 [GeV] -Cell[4,16] 5.9627054724842e-09 [GeV] -Cell[3,15] 0.00038277821878387 [GeV] -Cell[0,34] 7.0991989923641e-07 [GeV] -Cell[2,43] 0.00077816599513809 [GeV] -Cell[0,29] 0.10384692568338 [GeV] -Cell[2,5] 0.00086478116110765 [GeV] -Cell[1,3] 0.0020444312522591 [GeV] -Cell[2,11] 6.2346282834028e-05 [GeV] -Cell[4,7] 0.00081173909092481 [GeV] -Cell[5,5] 0.00028073320200552 [GeV] -Cell[4,8] 0.00022660735112743 [GeV] -Cell[3,2] 0.00051099891 [GeV] -Cell[1,46] 0.0014517837704293 [GeV] -Cell[13,1] 0.0023834879525661 [GeV] -Cell[14,47] 3.0101228039712e-06 [GeV] -Cell[14,0] 5.506761954166e-08 [GeV] -Cell[12,5] 0.00037776766862728 [GeV] -Cell[15,6] 9.8453426960532e-07 [GeV] -Cell[5,9] 0.00043493168955285 [GeV] -Cell[0,41] 2.5058606183848e-08 [GeV] -Cell[1,41] 0.00014805709049365 [GeV] -Cell[0,28] 2.3639527020113 [GeV] -Cell[0,45] 0.0042343697813375 [GeV] -Cell[0,40] 3.963175576132e-06 [GeV] -Cell[5,20] 0.0049973459855793 [GeV] -Cell[13,5] 0.0021963801977419 [GeV] -Cell[0,30] 0.0028833907480656 [GeV] -Cell[5,47] 6.1419763369486e-07 [GeV] -Cell[15,5] 0.0014230003406863 [GeV] -### Total energy deposition in calorimeter by a source track in 97 cells : 3.0118385076374 (GeV) +Cell[0,28] 0.20196667646672 [GeV] +Cell[1,28] 0.016345526178619 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.21831220264534 (GeV) Source track ID 4999 (neutron,7.3741998938947[GeV]) at (-413.0762339184,-281.72331279429,-1776.1644807987) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,28] 1.7184944008477e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 1.7184944008477e-06 (GeV) +Cell[1,28] 1.1870569171151e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 1.1870569171151e-05 (GeV) + +Source track ID 4995 (anti_neutron,5.3948206100571[GeV]) at (-415.09134243251,-278.74572182829,-1871.4579101789) +Original primary track ID 31 (unknown,691.32334101424[GeV]) +Cell[4,9] 0.00074963031970741 [GeV] +Cell[8,7] 1.1030038062017e-05 [GeV] +Cell[9,19] 0.00016191562279971 [GeV] +Cell[4,21] 0.0035855115355658 [GeV] +Cell[10,8] 0.00099331953652264 [GeV] +Cell[9,8] 2.0602845092071e-05 [GeV] +Cell[1,25] 3.0752153892536e-05 [GeV] +Cell[6,25] 1.3368895417898e-07 [GeV] +Cell[3,36] 6.8420747993514e-08 [GeV] +Cell[4,36] 3.1725109010949e-08 [GeV] +Cell[4,20] 0.0066306310795295 [GeV] +Cell[0,40] 0.004450342845972 [GeV] +Cell[7,43] 5.9513957239687e-08 [GeV] +Cell[5,31] 2.589431591332e-05 [GeV] +Cell[9,18] 3.9639417082071e-10 [GeV] +Cell[11,11] 6.0785613546614e-05 [GeV] +Cell[12,10] 0.001401346748149 [GeV] +Cell[10,9] 1.7400199112672e-09 [GeV] +Cell[11,9] 0.0005223559555219 [GeV] +Cell[11,8] 0.0084319785481875 [GeV] +Cell[2,6] 0.00064925106106023 [GeV] +Cell[4,35] 9.4047824518384e-06 [GeV] +Cell[10,47] 2.7744076505769e-06 [GeV] +Cell[4,44] 4.8404315066364e-08 [GeV] +Cell[4,47] 0.00030236928683064 [GeV] +Cell[10,0] 1.4638018386904e-05 [GeV] +Cell[4,19] 1.5820079414652e-06 [GeV] +Cell[3,40] 0.0043699261034641 [GeV] +Cell[2,41] 5.6561754252016e-07 [GeV] +Cell[2,23] 0.0041919867265273 [GeV] +Cell[2,28] 2.1510129499802e-09 [GeV] +Cell[2,29] 8.8019079385049e-09 [GeV] +Cell[13,7] 1.9560044393074e-09 [GeV] +Cell[3,41] 0.0023915433153138 [GeV] +Cell[4,5] 1.4195746389305e-06 [GeV] +Cell[4,4] 0.0025464519999576 [GeV] +Cell[5,1] 1.4314221567474e-05 [GeV] +Cell[9,41] 2.7811772995847e-05 [GeV] +Cell[12,9] 0.014978788906861 [GeV] +Cell[9,42] 0.0010566698380359 [GeV] +Cell[3,1] 0.00021047877376304 [GeV] +Cell[5,5] 0.00052028342688493 [GeV] +Cell[0,33] 4.9713304622401e-07 [GeV] +Cell[1,35] 0.000547012632915 [GeV] +Cell[11,7] 0.00014748425165794 [GeV] +Cell[1,44] 0.011565442870139 [GeV] +Cell[1,24] 0.0027940173844371 [GeV] +Cell[0,24] 7.9005562874954e-05 [GeV] +Cell[0,20] 0.0019572981761656 [GeV] +Cell[0,19] 0.00023787099010042 [GeV] +Cell[0,22] 6.5597234643064e-06 [GeV] +Cell[1,23] 0.01711984294812 [GeV] +Cell[0,23] 3.6411787034012e-05 [GeV] +Cell[1,20] 0.00092080517771635 [GeV] +Cell[1,22] 0.00010230685949591 [GeV] +Cell[0,6] 0.0016770558602065 [GeV] +Cell[0,5] 0.00020341777652584 [GeV] +Cell[0,4] 7.6513940292898e-05 [GeV] +Cell[1,31] 0.0009688844837101 [GeV] +Cell[2,13] 0.0020631212754261 [GeV] +Cell[2,12] 0.0006456552895814 [GeV] +Cell[0,26] 0.0030466701036755 [GeV] +Cell[0,25] 0.0017239752499022 [GeV] +Cell[0,9] 0.00049721411662647 [GeV] +Cell[0,18] 0.0065796214417561 [GeV] +Cell[2,33] 0.0018586987228594 [GeV] +Cell[1,19] 0.0010082325906156 [GeV] +Cell[5,34] 0.00023611699888625 [GeV] +Cell[1,42] 0.0010425504018276 [GeV] +Cell[3,43] 1.9120518118143e-08 [GeV] +Cell[3,44] 0.0013406405559363 [GeV] +Cell[2,42] 4.3509773340134e-05 [GeV] +Cell[4,32] 0.0010891163016853 [GeV] +Cell[5,2] 0.00025493459759548 [GeV] +Cell[1,2] 0.0011566325361923 [GeV] +Cell[2,44] 0.0018918605866731 [GeV] +Cell[1,18] 3.3512167249228e-07 [GeV] +Cell[1,17] 0.000754174040816 [GeV] +Cell[1,16] 5.337893526405e-05 [GeV] +Cell[3,11] 7.2230153018609e-06 [GeV] +Cell[3,10] 4.1571325273253e-06 [GeV] +Cell[3,12] 0.0035571592802372 [GeV] +Cell[0,17] 0.0013749301819373 [GeV] +Cell[1,9] 0.090597663386606 [GeV] +Cell[3,4] 5.034164787503e-06 [GeV] +Cell[2,4] 0.0006967944992008 [GeV] +Cell[0,37] 6.5862910069313e-05 [GeV] +Cell[0,36] 0.049342679205577 [GeV] +Cell[0,15] 0.00043004316322405 [GeV] +Cell[5,7] 5.6243865807346e-06 [GeV] +Cell[3,32] 1.2358445587779e-08 [GeV] +Cell[0,43] 0.0009693690840059 [GeV] +Cell[1,45] 0.00021042764328683 [GeV] +Cell[2,47] 0.00045986444036824 [GeV] +Cell[2,43] 0.0028490291422095 [GeV] +Cell[3,45] 2.0927860954544e-05 [GeV] +Cell[0,39] 0.011402703048079 [GeV] +Cell[1,6] 0.0034800623916533 [GeV] +Cell[1,5] 0.00015917332200434 [GeV] +Cell[1,32] 3.2238738521073e-05 [GeV] +Cell[2,19] 3.6829451026733e-05 [GeV] +Cell[1,26] 3.1977459730115e-07 [GeV] +Cell[4,31] 0.0090206119356942 [GeV] +Cell[4,30] 2.7092461823486e-07 [GeV] +Cell[0,27] 0.040480393924503 [GeV] +Cell[2,20] 0.074849830714637 [GeV] +Cell[2,32] 0.00064034270017783 [GeV] +Cell[2,2] 0.039346891669212 [GeV] +Cell[4,0] 0.0010623894107842 [GeV] +Cell[2,11] 5.3034020762539e-05 [GeV] +Cell[5,35] 4.1878743213601e-06 [GeV] +Cell[0,31] 0.0017189044416513 [GeV] +Cell[0,28] 2.2412250976826 [GeV] +Cell[1,39] 6.0547114117071e-08 [GeV] +Cell[0,38] 0.006173484192969 [GeV] +Cell[1,29] 0.0018927402848818 [GeV] +Cell[1,14] 1.8527787149651e-05 [GeV] +Cell[5,11] 1.0293209925294e-07 [GeV] +Cell[3,42] 0.00021471032897769 [GeV] +Cell[1,30] 0.0025736832080476 [GeV] +Cell[2,30] 0.00054325740340153 [GeV] +Cell[1,13] 0.0003012019104159 [GeV] +Cell[0,13] 0.0060687140296372 [GeV] +Cell[1,15] 0.00062102997972002 [GeV] +Cell[1,12] 3.2969546737149e-10 [GeV] +Cell[4,46] 8.5298509696941e-05 [GeV] +Cell[3,46] 0.0016288673874868 [GeV] +Cell[1,1] 7.0875665250242e-05 [GeV] +Cell[0,45] 0.001849923404424 [GeV] +Cell[4,33] 4.1300838347524e-08 [GeV] +Cell[1,41] 0.091106518083306 [GeV] +Cell[6,4] 4.8707543688806e-06 [GeV] +Cell[12,8] 0.012405454284563 [GeV] +Cell[12,7] 0.0014587967421777 [GeV] +Cell[12,6] 0.0021575666336971 [GeV] +Cell[10,11] 0.00037806563580955 [GeV] +Cell[12,5] 1.4489431513312e-06 [GeV] +Cell[10,41] 1.0652001947165e-11 [GeV] +Cell[13,10] 0.00088370287892894 [GeV] +Cell[8,18] 0.00039957681675708 [GeV] +Cell[4,45] 6.8293345945904e-05 [GeV] +Cell[4,8] 0.0016895541940521 [GeV] +Cell[4,40] 6.8853644188493e-06 [GeV] +Cell[0,30] 0.026673623028446 [GeV] +Cell[10,42] 2.642773528919e-06 [GeV] +Cell[9,37] 0.0008104416495114 [GeV] +Cell[1,43] 0.010086817688424 [GeV] +Cell[0,2] 0.0020217869285541 [GeV] +Cell[1,28] 0.12983710624916 [GeV] +Cell[1,40] 0.00098791750437294 [GeV] +Cell[0,29] 0.3895836872061 [GeV] +Cell[1,27] 0.0055044688600139 [GeV] +Cell[0,3] 0.00040219511180692 [GeV] +Cell[0,35] 0.0076695593777798 [GeV] +Cell[3,31] 0.004764462277677 [GeV] +Cell[0,32] 0.0081662732411755 [GeV] +Cell[9,20] 8.0700402395451e-07 [GeV] +Cell[9,12] 0.0012937561790366 [GeV] +Cell[2,31] 4.5012191959927e-05 [GeV] +Cell[0,34] 0.00087317346043494 [GeV] +Cell[19,32] 9.6356744734294e-08 [GeV] +Cell[19,33] 1.1188240233651e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 162 cells : 3.4175318818 (GeV) Source track ID 4984 (e-,0.00090101831329999[GeV]) at (-236.21813905942,-440.68241487414,-1939.2517755647) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,32] 0.00038514121093521 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00038514121093521 (GeV) +Cell[0,32] 1.4490624571641e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 1.4490624571641e-05 (GeV) Source track ID 4896 (pi-,5.4472485115985[GeV]) at (-299.00341880184,-400.74549971872,-1915.5484683114) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,12] 0.00086173938001093 [GeV] -Cell[9,9] 0.00051099891 [GeV] -Cell[8,12] 0.0036107430321667 [GeV] -Cell[8,13] 0.00021431659509187 [GeV] -Cell[4,5] 0.001006607905003 [GeV] -Cell[2,31] 0.0005410083739622 [GeV] -Cell[0,27] 0.0029740730281808 [GeV] -Cell[7,8] 0.00059680699628443 [GeV] -Cell[8,8] 0.0027075874048338 [GeV] -Cell[8,7] 0.0011194415627546 [GeV] -Cell[9,7] 0.00034599555141654 [GeV] -Cell[2,30] 3.8224941096246e-05 [GeV] -Cell[6,10] 2.5864574126899e-10 [GeV] -Cell[9,11] 2.9178925906308e-06 [GeV] -Cell[9,8] 0.007001673765937 [GeV] -Cell[6,9] 3.9346380042844e-05 [GeV] -Cell[6,11] 2.2375833756769e-05 [GeV] -Cell[0,39] 0.00020890616608654 [GeV] -Cell[9,13] 5.2014246924841e-05 [GeV] -Cell[8,2] 0.0012097563230545 [GeV] -Cell[10,24] 0.00023119748086515 [GeV] -Cell[10,25] 2.4685586288342e-07 [GeV] -Cell[5,2] 0.00065680644065981 [GeV] -Cell[1,45] 0.0013448785174946 [GeV] -Cell[0,33] 0.01460695551607 [GeV] -Cell[1,29] 0.0039036428650033 [GeV] -Cell[2,32] 0.00039295542337675 [GeV] -Cell[6,45] 4.3378155396567e-09 [GeV] -Cell[9,18] 6.3968377378387e-07 [GeV] -Cell[9,6] 0.00015946119209116 [GeV] -Cell[8,14] 0.0002201079493497 [GeV] -Cell[5,38] 6.5467151837993e-05 [GeV] -Cell[9,46] 0.00069474954149928 [GeV] -Cell[13,27] 8.4159373072907e-06 [GeV] -Cell[11,23] 8.3195839781183e-05 [GeV] -Cell[11,24] 6.6226426487901e-05 [GeV] -Cell[1,13] 0.0023607622481345 [GeV] -Cell[1,14] 0.00021653919416235 [GeV] -Cell[0,13] 0.054031940810617 [GeV] -Cell[0,14] 0.00097765778761561 [GeV] -Cell[0,15] 0.00061765983318753 [GeV] -Cell[3,47] 1.2338479049504e-05 [GeV] -Cell[3,0] 4.4859703310067e-05 [GeV] -Cell[13,35] 1.8691085712135e-06 [GeV] -Cell[9,25] 0.00086147709261275 [GeV] -Cell[9,22] 0.0019082992355129 [GeV] -Cell[1,30] 0.13780018666785 [GeV] -Cell[1,31] 0.0092561694001 [GeV] -Cell[8,1] 0.00048592642427911 [GeV] -Cell[3,44] 0.0019002230610832 [GeV] -Cell[4,43] 6.542373157572e-07 [GeV] -Cell[1,1] 0.00023922237779514 [GeV] -Cell[1,2] 0.0011489714267587 [GeV] -Cell[5,1] 4.7413871226354e-05 [GeV] -Cell[18,22] 0.00013631919999671 [GeV] -Cell[10,10] 1.9319696293678e-06 [GeV] -Cell[9,12] 4.0999588673003e-06 [GeV] -Cell[13,36] 1.8342711252899e-06 [GeV] -Cell[15,36] 3.9631338440813e-06 [GeV] -Cell[0,37] 0.0010048794610124 [GeV] -Cell[5,18] 3.6428397131999e-05 [GeV] -Cell[1,44] 0.0017482022061243 [GeV] -Cell[0,3] 6.721746850485e-05 [GeV] -Cell[0,32] 0.025971856581218 [GeV] -Cell[5,45] 0.0012228162551852 [GeV] -Cell[8,38] 9.2745222209487e-06 [GeV] -Cell[1,43] 0.00087583321300693 [GeV] -Cell[1,42] 6.4865386870224e-05 [GeV] -Cell[4,15] 6.9265768956939e-07 [GeV] -Cell[0,19] 1.6243825666606e-07 [GeV] -Cell[2,20] 9.5686237036716e-06 [GeV] -Cell[0,18] 0.00064201726367377 [GeV] -Cell[0,12] 8.589047647547e-07 [GeV] -Cell[1,15] 9.1007247715879e-05 [GeV] -Cell[1,33] 0.017340757356836 [GeV] -Cell[1,20] 0.00045790965614084 [GeV] -Cell[1,21] 1.9593728781842e-05 [GeV] -Cell[0,42] 1.3138699916908e-05 [GeV] -Cell[0,43] 3.8693709057043e-06 [GeV] -Cell[3,6] 0.000292701049313 [GeV] -Cell[2,28] 0.0040593686052368 [GeV] -Cell[1,28] 0.0017050655447644 [GeV] -Cell[2,27] 0.0026307938143967 [GeV] -Cell[1,5] 0.0015311502678733 [GeV] -Cell[1,6] 0.00216693221719 [GeV] -Cell[0,4] 4.7814176650718e-07 [GeV] -Cell[0,31] 0.95838630615284 [GeV] -Cell[0,17] 2.9150687623769e-09 [GeV] -Cell[0,38] 0.0060409179602716 [GeV] -Cell[0,8] 9.5875888420096e-06 [GeV] -Cell[2,16] 0.00055812059120876 [GeV] -Cell[3,4] 2.7313362807035e-09 [GeV] -Cell[2,29] 0.034983657662837 [GeV] -Cell[6,21] 1.0279618436471e-08 [GeV] -Cell[2,37] 2.7024860108895e-05 [GeV] -Cell[1,19] 0.00017261527205585 [GeV] -Cell[1,17] 0.00062710111207286 [GeV] -Cell[1,18] 0.0012803087349335 [GeV] -Cell[1,9] 1.851375712431e-05 [GeV] -Cell[0,35] 5.3855743964277e-06 [GeV] -Cell[6,46] 0.00014791382778026 [GeV] -Cell[0,26] 0.0045400842771529 [GeV] -Cell[1,40] 2.1150044631213e-08 [GeV] -Cell[3,38] 0.00011808293647218 [GeV] -Cell[2,33] 0.002256523390617 [GeV] -Cell[2,35] 0.00059747534910951 [GeV] -Cell[5,13] 5.1170562801417e-06 [GeV] -Cell[2,36] 0.0027090295518292 [GeV] -Cell[1,35] 9.8498582593834e-05 [GeV] -Cell[1,32] 0.0034677224137325 [GeV] -Cell[2,3] 2.6479581837293e-06 [GeV] -Cell[0,16] 0.00030332332655109 [GeV] -Cell[1,16] 6.444615204714e-06 [GeV] -Cell[0,44] 0.022888970545357 [GeV] -Cell[1,8] 1.8655377857613e-08 [GeV] -Cell[1,7] 0.0059027589902665 [GeV] -Cell[0,7] 4.4367777604748e-08 [GeV] -Cell[1,34] 0.0021691763243106 [GeV] -Cell[2,34] 0.0067166832204225 [GeV] -Cell[4,16] 0.0099022438631011 [GeV] -Cell[3,15] 0.0013572310546607 [GeV] -Cell[0,34] 0.0015229778615092 [GeV] -Cell[1,12] 3.1951878336258e-06 [GeV] -Cell[2,15] 3.4510059473405e-06 [GeV] -Cell[0,29] 0.3131055851742 [GeV] -Cell[2,5] 6.3207953644451e-09 [GeV] -Cell[2,4] 7.7867255652109e-07 [GeV] -Cell[3,3] 0.0022019113505657 [GeV] -Cell[3,34] 5.47400850337e-09 [GeV] -Cell[0,36] 0.00094457810447721 [GeV] -Cell[5,5] 8.3388775237836e-07 [GeV] -Cell[7,3] 7.06050748704e-07 [GeV] -Cell[4,21] 0.0028601241119326 [GeV] -Cell[6,5] 4.0341874992009e-06 [GeV] -Cell[7,13] 0.00090201832528493 [GeV] -Cell[3,37] 0.052925909334169 [GeV] -Cell[3,2] 1.7089490604121e-05 [GeV] -Cell[1,46] 0.0023783676536249 [GeV] -Cell[5,3] 9.6725043840706e-06 [GeV] -Cell[2,41] 8.949124989158e-06 [GeV] -Cell[5,46] 0.00067399713421787 [GeV] -Cell[5,11] 5.9384281006601e-05 [GeV] -Cell[8,22] 0.0019420148364533 [GeV] -Cell[5,14] 0.0021961720261545 [GeV] -Cell[15,22] 2.2914683795534e-06 [GeV] -Cell[10,18] 0.0001629809541397 [GeV] -Cell[7,21] 9.1913747019134e-07 [GeV] -Cell[18,25] 2.1367636350078e-08 [GeV] -Cell[4,39] 0.00065157764785044 [GeV] -Cell[4,40] 0.0012928512923241 [GeV] -Cell[18,23] 4.9994115543086e-06 [GeV] -Cell[18,24] 3.4241725506945e-06 [GeV] -Cell[5,10] 2.94967321679e-10 [GeV] -Cell[10,19] 0.00079620844033809 [GeV] -Cell[15,23] 1.9502230570652e-06 [GeV] -Cell[2,8] 0.00075787724708981 [GeV] -Cell[5,26] 3.8383540231735e-07 [GeV] -Cell[0,28] 0.14832795803615 [GeV] -Cell[0,45] 0.0014620499691347 [GeV] -Cell[5,27] 1.1762733047362e-06 [GeV] -Cell[0,40] 0.00096149768930729 [GeV] -Cell[9,14] 4.0145983803086e-06 [GeV] -Cell[7,14] 8.8132757664425e-05 [GeV] -Cell[5,15] 2.4443947274904e-06 [GeV] -Cell[0,30] 0.6835638979319 [GeV] -Cell[19,32] 2.6263705221936e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 166 cells : 2.6046778565441 (GeV) +Cell[0,31] 0.15375222313071 [GeV] +Cell[0,30] 0.0037376105085525 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.15748983363926 (GeV) Source track ID 4854 (e-,0.00072474280267595[GeV]) at (-444.9347190606,-228.10764076301,-1805.2357841332) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,27] 5.7703541348757e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 5.7703541348757e-05 (GeV) +Cell[0,27] 2.8457122592209e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 2.8457122592209e-05 (GeV) Source track ID 3572 (pi-,5.0454956932765[GeV]) at (-463.67569079687,-187.09584111906,-1931.5201329033) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[2,31] 3.4366247082289e-06 [GeV] -Cell[4,4] 0.0031079466545016 [GeV] -Cell[0,27] 0.044250292665389 [GeV] -Cell[2,30] 0.00021735771687474 [GeV] -Cell[3,25] 1.6492413919877e-07 [GeV] -Cell[5,2] 9.6324291080236e-06 [GeV] -Cell[1,45] 8.0835273636239e-06 [GeV] -Cell[0,33] 0.0026143112290178 [GeV] -Cell[1,23] 0.0011662887602897 [GeV] -Cell[4,47] 1.2949829386798e-05 [GeV] -Cell[4,33] 0.00059712531849653 [GeV] -Cell[1,29] 0.0083590812362938 [GeV] -Cell[10,33] 9.2090062971693e-06 [GeV] -Cell[2,32] 0.0014133121789152 [GeV] -Cell[3,42] 0.0015467996812644 [GeV] -Cell[9,36] 0.00093593958164399 [GeV] -Cell[3,26] 0.00075395685608623 [GeV] -Cell[4,35] 7.3290013242513e-06 [GeV] -Cell[3,45] 1.148335612379e-05 [GeV] -Cell[3,0] 0.00051099891 [GeV] -Cell[4,0] 2.7770001906902e-09 [GeV] -Cell[6,6] 0.0028963981524416 [GeV] -Cell[1,30] 5.5860152227297e-05 [GeV] -Cell[1,31] 3.2117682596436e-05 [GeV] -Cell[9,35] 7.1895038530783e-05 [GeV] -Cell[9,34] 1.051737787202e-05 [GeV] -Cell[4,46] 1.5704805264249e-08 [GeV] -Cell[0,2] 0.00069236287125975 [GeV] -Cell[0,24] 0.023096651208728 [GeV] -Cell[0,23] 0.0016880962703668 [GeV] -Cell[2,9] 0.00065014903755177 [GeV] -Cell[1,44] 4.5874557376351e-05 [GeV] -Cell[3,18] 9.7260541224387e-06 [GeV] -Cell[3,19] 7.5812154017399e-05 [GeV] -Cell[0,32] 0.0018285510799703 [GeV] -Cell[1,27] 0.0013503738112007 [GeV] -Cell[1,43] 0.00079734221491776 [GeV] -Cell[1,42] 1.2790979089914e-05 [GeV] -Cell[2,20] 0.0064160262280527 [GeV] -Cell[0,20] 0.0016456271618168 [GeV] -Cell[1,15] 0.0064696779200234 [GeV] -Cell[1,33] 0.0031110610870863 [GeV] -Cell[1,22] 1.3242285640445e-05 [GeV] -Cell[1,20] 0.00013732718990582 [GeV] -Cell[1,21] 1.6169792615983e-09 [GeV] -Cell[0,42] 1.2676011916483e-05 [GeV] -Cell[0,43] 0.002002695268881 [GeV] -Cell[2,28] 0.00047877742598166 [GeV] -Cell[1,28] 0.0019045885147109 [GeV] -Cell[1,26] 0.0046259729444803 [GeV] -Cell[2,27] 0.00076128713198909 [GeV] -Cell[0,31] 5.0880860271718e-09 [GeV] -Cell[1,38] 1.6577721195063e-05 [GeV] -Cell[0,9] 0.00051645806809734 [GeV] -Cell[2,16] 0.00042095767063552 [GeV] -Cell[3,4] 0.001088567530526 [GeV] -Cell[2,37] 1.0557472705841e-08 [GeV] -Cell[2,21] 0.0012704823213595 [GeV] -Cell[2,17] 9.0054508148114e-06 [GeV] -Cell[2,0] 0.0010550919321772 [GeV] -Cell[0,35] 0.001464755076954 [GeV] -Cell[0,25] 0.0062662722471276 [GeV] -Cell[0,26] 0.87570222510153 [GeV] -Cell[2,35] 4.1427417687373e-05 [GeV] -Cell[2,36] 0.0027041602166498 [GeV] -Cell[1,35] 0.00011129826521028 [GeV] -Cell[1,32] 0.029683216277544 [GeV] -Cell[3,8] 2.6654375593125e-05 [GeV] -Cell[1,16] 9.6931211182891e-05 [GeV] -Cell[0,44] 0.006399631765151 [GeV] -Cell[1,34] 0.0021762409861237 [GeV] -Cell[2,34] 7.572655173135e-05 [GeV] -Cell[1,24] 0.028297008150154 [GeV] -Cell[0,34] 0.00031489211289772 [GeV] -Cell[2,19] 0.014920432266261 [GeV] -Cell[2,18] 0.0030771392911193 [GeV] -Cell[1,12] 3.9752924476488e-07 [GeV] -Cell[1,11] 0.00030471442603664 [GeV] -Cell[4,25] 0.00013887121501671 [GeV] -Cell[2,10] 0.0021042473044373 [GeV] -Cell[3,7] 0.00097197212238484 [GeV] -Cell[0,36] 3.8659838912736e-07 [GeV] -Cell[0,11] 1.1967512188562e-05 [GeV] -Cell[5,5] 2.0520942634903e-06 [GeV] -Cell[0,10] 0.00067824891340229 [GeV] -Cell[4,24] 0.00017224732528155 [GeV] -Cell[3,20] 0.00098192261413794 [GeV] -Cell[6,5] 5.971009406494e-06 [GeV] -Cell[2,25] 0.00092577491381019 [GeV] -Cell[4,37] 0.00061709716681594 [GeV] -Cell[4,38] 0.00048274244885977 [GeV] -Cell[4,36] 2.4541470309487e-05 [GeV] -Cell[1,25] 0.010911120527794 [GeV] -Cell[3,10] 0.00025940313670208 [GeV] -Cell[2,8] 0.00048643445462687 [GeV] -Cell[0,28] 0.0079403394098335 [GeV] -Cell[0,45] 0.0005216741969076 [GeV] -Cell[2,26] 0.00050205154551918 [GeV] -Cell[3,9] 0.0021937282507218 [GeV] -Cell[0,30] 1.2722690939881e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 100 cells : 1.1324022839608 (GeV) +Cell[0,26] 0.093908202576756 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.093908202576756 (GeV) Source track ID 4699 (pi-,26.431198148964[GeV]) at (-348.7630971408,-358.27964228066,-1955.4469823598) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[3,18] 0.0005456958372883 [GeV] -Cell[3,19] 0.00039620750629646 [GeV] -Cell[1,37] 0.00021394180466336 [GeV] -Cell[1,38] 0.00048903237746702 [GeV] -Cell[0,29] 0.0038219266538293 [GeV] -Cell[0,30] 0.10671867273244 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.11218547691198 (GeV) +Cell[0,30] 0.093538338416238 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.093538338416238 (GeV) Source track ID 4700 (pi+,1.1826369510799[GeV]) at (-499.00058167932,31.597776562614,-1753.9494730695) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,5] 0.00015939936768643 [GeV] -Cell[2,31] 0.00056997320876515 [GeV] -Cell[0,27] 2.5666721711445e-05 [GeV] -Cell[1,23] 0.072751564296741 [GeV] -Cell[2,32] 2.5341372292473e-05 [GeV] -Cell[2,42] 0.00066533554612074 [GeV] -Cell[1,31] 0.0013094886194656 [GeV] -Cell[0,24] 0.11011081114925 [GeV] -Cell[0,23] 0.25954382801395 [GeV] -Cell[0,21] 0.19079648211288 [GeV] -Cell[0,22] 0.0574767676124 [GeV] -Cell[1,44] 3.4274938807357e-05 [GeV] -Cell[4,6] 0.0024095201384125 [GeV] -Cell[0,19] 5.7877942936102e-09 [GeV] -Cell[0,20] 0.11854983573765 [GeV] -Cell[0,18] 0.00093180117832657 [GeV] -Cell[0,12] 5.2431197400438e-07 [GeV] -Cell[2,13] 6.4129038946703e-08 [GeV] -Cell[1,22] 0.0002280984560025 [GeV] -Cell[1,20] 0.00074811416831665 [GeV] -Cell[1,21] 9.689024209365e-07 [GeV] -Cell[0,42] 0.00038695344038138 [GeV] -Cell[2,21] 3.0921106517781e-06 [GeV] -Cell[1,19] 1.0362969305788e-08 [GeV] -Cell[1,17] 0.0005237333138657 [GeV] -Cell[1,18] 0.00090710802031867 [GeV] -Cell[2,12] 0.00079126506300031 [GeV] -Cell[0,25] 0.0018840114551557 [GeV] -Cell[0,26] 0.0063434740837468 [GeV] -Cell[2,33] 9.0425714779485e-07 [GeV] -Cell[1,32] 1.1181042238604e-05 [GeV] -Cell[1,24] 0.0086035326149948 [GeV] -Cell[2,43] 6.2933608319327e-08 [GeV] -Cell[1,12] 1.3394488509789e-05 [GeV] -Cell[3,3] 0.00034094775030883 [GeV] -Cell[2,11] 1.2592451456612e-06 [GeV] -Cell[0,11] 3.1619982394204e-07 [GeV] -Cell[3,2] 0.00017985805188721 [GeV] -Cell[2,41] 0.00046805019757289 [GeV] -Cell[2,40] 0.0029666815184824 [GeV] -Cell[1,25] 1.3995620511992e-05 [GeV] -Cell[0,41] 0.0017231970674903 [GeV] -Cell[0,28] 0.00035869302669948 [GeV] -### Total energy deposition in calorimeter by a source track in 43 cells : 0.84185958763453 (GeV) +Cell[1,25] 0.0022562473676609 [GeV] +Cell[5,25] 8.0363525694338e-07 [GeV] +Cell[5,24] 4.6575786268477e-07 [GeV] +Cell[5,1] 1.1809011127639e-05 [GeV] +Cell[0,33] 0.022752217670271 [GeV] +Cell[1,24] 2.412481169813e-06 [GeV] +Cell[0,24] 0.010269171089084 [GeV] +Cell[0,21] 0.004616150275627 [GeV] +Cell[0,20] 0.00087386217093433 [GeV] +Cell[0,22] 0.1404482259889 [GeV] +Cell[1,23] 0.068631501017791 [GeV] +Cell[0,23] 0.5516263130013 [GeV] +Cell[1,22] 0.0019866195946143 [GeV] +Cell[0,25] 0.0018462266407112 [GeV] +Cell[0,9] 0.013999204581708 [GeV] +Cell[1,9] 0.0084856914121879 [GeV] +Cell[1,10] 0.00034683052124933 [GeV] +Cell[1,47] 0.0026919244191956 [GeV] +Cell[0,39] 0.00047056507853624 [GeV] +Cell[3,47] 1.1971511412412e-08 [GeV] +Cell[2,30] 4.3163192458451e-08 [GeV] +Cell[3,46] 3.4148528720834e-07 [GeV] +Cell[1,1] 0.00091084270195173 [GeV] +Cell[5,0] 1.9680378500198e-09 [GeV] +Cell[0,2] 0.0048264927303757 [GeV] +Cell[0,32] 0.0024684927780087 [GeV] +Cell[2,31] 9.7683077910915e-08 [GeV] +Cell[0,34] 1.5238647847582e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 28 cells : 0.83952258143527 (GeV) Source track ID 4697 (gamma,1.5279055119092[GeV]) at (-73.254819193428,-494.60462135421,-436.11294835244) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,5] 0.0028965614302778 [GeV] -Cell[7,27] 0.00017921651949223 [GeV] -Cell[7,35] 0.1054510182997 [GeV] -Cell[8,34] 0.0004480914575111 [GeV] -Cell[5,38] 0.00056828927017326 [GeV] -Cell[7,33] 0.0056969020326261 [GeV] -Cell[7,34] 1.3983130814233 [GeV] -Cell[3,11] 0.00085549954459317 [GeV] -Cell[0,16] 0.00068900444614392 [GeV] -Cell[8,36] 0.0031413077207779 [GeV] -Cell[7,36] 0.0012286043346622 [GeV] -Cell[6,37] 0.00074952663144225 [GeV] -Cell[6,32] 0.001353306395189 [GeV] -Cell[6,33] 0.0008333787271038 [GeV] -Cell[6,47] 0.0012783909319982 [GeV] -### Total energy deposition in calorimeter by a source track in 15 cells : 1.523682179165 (GeV) +Cell[7,33] 0.0011577248390319 [GeV] +Cell[7,36] 0.00246219096045 [GeV] +Cell[7,35] 0.11810556175904 [GeV] +Cell[8,3] 0.0023948484884059 [GeV] +Cell[8,34] 0.0029416129781247 [GeV] +Cell[8,35] 0.00054527885180035 [GeV] +Cell[5,14] 6.8076941935763e-05 [GeV] +Cell[5,13] 0.00043934614330624 [GeV] +Cell[7,34] 1.3989398935138 [GeV] +Cell[6,33] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 10 cells : 1.5275655333859 (GeV) Source track ID 4698 (gamma,2.1921548366006[GeV]) at (-105.19675513121,-488.80839058865,-488.29268687399) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,12] 0.00051099891 [GeV] -Cell[7,37] 0.0020274002535594 [GeV] -Cell[7,35] 0.044123693986633 [GeV] -Cell[8,29] 0.00026100600025335 [GeV] -Cell[7,31] 0.00045850858675083 [GeV] -Cell[3,1] 0.00051099891 [GeV] -Cell[7,33] 0.030530757063333 [GeV] -Cell[8,30] 0.001555309055824 [GeV] -Cell[7,34] 2.0151722798322 [GeV] -Cell[5,1] 0.00077048593448775 [GeV] -Cell[9,12] 0.0012828010834296 [GeV] -Cell[6,36] 0.0016927595760647 [GeV] -Cell[6,34] 0.073068003537113 [GeV] -Cell[4,24] 0.0028226471618296 [GeV] -Cell[7,41] 0.00096232307351581 [GeV] -Cell[7,13] 0.0020308958622347 [GeV] -Cell[7,36] 0.0060275253831207 [GeV] -Cell[11,5] 0.00051099891 [GeV] -Cell[19,28] 0.00028910025051049 [GeV] -Cell[6,35] 0.0022482985284969 [GeV] -Cell[6,33] 0.0052760370053425 [GeV] -### Total energy deposition in calorimeter by a source track in 21 cells : 2.1921328289047 (GeV) +Cell[7,33] 0.074012326991157 [GeV] +Cell[7,35] 0.008371705306756 [GeV] +Cell[6,34] 0.027809234896631 [GeV] +Cell[8,26] 0.0016049795185869 [GeV] +Cell[6,35] 0.00017187849807442 [GeV] +Cell[7,31] 0.00018616387908068 [GeV] +Cell[2,10] 0.00051099891 [GeV] +Cell[6,27] 0.00047872686677725 [GeV] +Cell[1,11] 0.00060717380312377 [GeV] +Cell[3,8] 0.0012368448395413 [GeV] +Cell[11,15] 0.0044818588530178 [GeV] +Cell[7,34] 2.0586230148097 [GeV] +Cell[6,33] 0.013558943890352 [GeV] +### Total energy deposition in calorimeter by a source track in 13 cells : 2.1916538510628 (GeV) Source track ID 4695 (gamma,0.076632669216442[GeV]) at (-300.435996881,399.67263075937,200.63474681959) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[10,6] 0.00035024509280904 [GeV] -Cell[10,16] 0.0076385363088782 [GeV] -Cell[12,30] 0.00034245751524056 [GeV] -Cell[11,16] 0.067110697201604 [GeV] -Cell[14,6] 0.00071710065030917 [GeV] -Cell[11,15] 0.00025710702053284 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.076416143789374 (GeV) +Cell[10,16] 0.00051099891 [GeV] +Cell[13,37] 0.00051099891 [GeV] +Cell[11,19] 0.00015831680611105 [GeV] +Cell[11,17] 0.00080609043624901 [GeV] +Cell[11,15] 0.0031091070254895 [GeV] +Cell[11,16] 0.071113177743764 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.076208689831614 (GeV) Source track ID 4696 (gamma,0.17932025858732[GeV]) at (-255.57095700135,429.74816571734,-559.8002992084) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[6,15] 0.0038149155302859 [GeV] -Cell[7,15] 0.0028362999435177 [GeV] -Cell[6,16] 0.064976055906099 [GeV] -Cell[6,17] 0.00080591799699186 [GeV] -Cell[7,16] 0.10688706921043 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.17932025858732 (GeV) +Cell[7,15] 0.0031166252611333 [GeV] +Cell[7,16] 0.096426214901473 [GeV] +Cell[4,39] 0.00019285326704418 [GeV] +Cell[5,47] 0.00076461818245168 [GeV] +Cell[5,4] 0.0067878605408074 [GeV] +Cell[8,44] 0.00055647359780343 [GeV] +Cell[5,39] 0.00024170397390682 [GeV] +Cell[3,42] 0.00094942955314159 [GeV] +Cell[6,14] 0.00065289779207771 [GeV] +Cell[9,39] 0.00051099891 [GeV] +Cell[5,3] 0.00033246524125328 [GeV] +Cell[6,15] 0.0029650531586785 [GeV] +Cell[6,17] 0.0010375978333443 [GeV] +Cell[6,16] 0.064785466374209 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 0.17932025858732 (GeV) Source track ID 3576 (pi-,0.22761671221737[GeV]) at (38.741090188302,498.4968685268,-1283.4161110812) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[4,3] 0.00011523021642358 [GeV] -Cell[9,37] 0.0014302729788792 [GeV] -Cell[7,39] 0.00088211202253171 [GeV] -Cell[8,37] 0.00058499475718486 [GeV] -Cell[7,38] 0.00069788361312294 [GeV] -Cell[2,42] 4.0549197001383e-07 [GeV] -Cell[6,23] 9.3054441094864e-09 [GeV] -Cell[5,21] 1.2344702368409e-05 [GeV] -Cell[11,4] 3.0283809845628e-05 [GeV] -Cell[8,39] 5.4133124649525e-12 [GeV] -Cell[2,13] 0.0052341550355773 [GeV] -Cell[1,22] 0.00038454309646784 [GeV] -Cell[0,43] 6.5431740658823e-06 [GeV] -Cell[3,4] 0.00082889147793537 [GeV] -Cell[2,12] 0.0089957791118899 [GeV] -Cell[3,35] 5.6496361503378e-06 [GeV] -Cell[3,11] 0.14344516024013 [GeV] -Cell[2,35] 6.4062082674354e-07 [GeV] -Cell[2,36] 2.2313141380437e-07 [GeV] -Cell[3,36] 0.00037488555196421 [GeV] -Cell[1,11] 0.00076955186737757 [GeV] -Cell[2,11] 0.0046285413387159 [GeV] -Cell[5,22] 1.2539382441901e-07 [GeV] -Cell[2,41] 5.5161654017866e-09 [GeV] -Cell[11,5] 1.351843893417e-06 [GeV] -Cell[12,5] 7.7941167546669e-09 [GeV] -Cell[6,16] 4.8778059586994e-06 [GeV] -Cell[6,24] 4.3043697587564e-08 [GeV] -Cell[2,40] 2.6856619456339e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 29 cells : 0.16843478114955 (GeV) +Cell[6,28] 3.0413017407227e-07 [GeV] +Cell[8,13] 0.00013840936099882 [GeV] +Cell[8,12] 4.7119657438088e-09 [GeV] +Cell[11,29] 2.0681811438408e-06 [GeV] +Cell[5,36] 1.4400359941646e-07 [GeV] +Cell[11,28] 0.00035740441381984 [GeV] +Cell[5,37] 1.6648808377795e-07 [GeV] +Cell[10,27] 0.0073362036908877 [GeV] +Cell[6,46] 4.3837346282089e-05 [GeV] +Cell[4,6] 0.001783440719754 [GeV] +Cell[2,12] 2.056484518107e-07 [GeV] +Cell[3,11] 0.17007433681057 [GeV] +Cell[3,10] 0.0059302087016165 [GeV] +Cell[3,12] 2.5710517138577e-07 [GeV] +Cell[4,7] 6.475219688582e-07 [GeV] +Cell[3,7] 0.00058074888876524 [GeV] +Cell[3,8] 0.0079576077559406 [GeV] +Cell[3,26] 3.5081055830233e-07 [GeV] +Cell[3,9] 0.001143968618593 [GeV] +Cell[5,3] 2.0443794492166e-06 [GeV] +Cell[4,13] 1.6531332221348e-06 [GeV] +Cell[9,12] 3.4564948236948e-10 [GeV] +### Total energy deposition in calorimeter by a source track in 22 cells : 0.19535401276667 (GeV) Source track ID 4572 (gamma,0.31054837923301[GeV]) at (447.33312732682,223.36757418212,253.26070782363) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[10,30] 0.00049397093554423 [GeV] -Cell[10,32] 0.00088182284774547 [GeV] -Cell[11,2] 0.0016315782058332 [GeV] -Cell[11,4] 0.0015133999994749 [GeV] -Cell[10,29] 0.00015081554443563 [GeV] -Cell[10,11] 0.00068897886168811 [GeV] -Cell[11,3] 0.30148083229772 [GeV] -Cell[11,13] 0.0003798660052239 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.30722126469766 (GeV) +Cell[11,6] 0.0025032301141362 [GeV] +Cell[10,4] 0.00051099891 [GeV] +Cell[11,4] 0.0073448183613351 [GeV] +Cell[11,3] 0.28525628510313 [GeV] +Cell[12,3] 0.00086992208092808 [GeV] +Cell[11,2] 0.0098013277907961 [GeV] +Cell[9,40] 0.0017348906438719 [GeV] +Cell[3,31] 0.00083334179151558 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.30885481479571 (GeV) Source track ID 4573 (gamma,0.15995014937721[GeV]) at (486.2206820888,-116.57378911703,276.45970734161) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[11,46] 0.15752265995012 [GeV] -Cell[11,45] 0.001639305053217 [GeV] -Cell[10,47] 0.00051099891 [GeV] -Cell[11,47] 1.5850900952511e-06 [GeV] -Cell[11,0] 0.00027560037377644 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.15995014937721 (GeV) +Cell[9,9] 0.00048639175118216 [GeV] +Cell[13,22] 0.00020140608801106 [GeV] +Cell[11,46] 0.14867342677098 [GeV] +Cell[11,45] 0.0083633269239462 [GeV] +Cell[11,7] 0.0016055272505847 [GeV] +Cell[14,9] 0.00055475660386281 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.15988483538857 (GeV) Source track ID 4543 (pi+,0.58322964021203[GeV]) at (-499.15972434926,28.975327221119,858.17046130888) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[14,22] 0.026430564756299 [GeV] -Cell[12,7] 2.6763027030938e-06 [GeV] -Cell[14,23] 0.11345577025909 [GeV] -Cell[12,6] 0.0032929690603297 [GeV] -Cell[15,25] 0.00086252554794868 [GeV] -Cell[9,40] 0.00019295367236089 [GeV] -Cell[14,21] 0.0087212640747959 [GeV] -Cell[16,20] 1.7917543859994e-05 [GeV] -Cell[15,22] 0.17057203224673 [GeV] -Cell[15,21] 0.098136475778974 [GeV] -Cell[13,20] 1.7768539009921e-08 [GeV] -Cell[13,19] 2.0875419843378e-05 [GeV] -Cell[18,11] 0.0017012193356104 [GeV] -Cell[18,12] 1.362528835898e-06 [GeV] -Cell[14,20] 0.001288763925984 [GeV] -Cell[15,18] 0.00081586822307781 [GeV] -Cell[15,20] 0.0012528957406104 [GeV] -Cell[14,19] 0.00012361098761778 [GeV] -Cell[15,19] 0.00081569693523602 [GeV] -Cell[15,23] 0.0030077154622464 [GeV] -Cell[15,24] 0.00094241409709413 [GeV] -Cell[16,22] 0.00038721802188797 [GeV] -Cell[9,41] 7.457554072289e-06 [GeV] -Cell[16,21] 0.0020378128105302 [GeV] -### Total energy deposition in calorimeter by a source track in 24 cells : 0.43408807805428 (GeV) +Cell[14,25] 3.0902419093763e-05 [GeV] +Cell[13,22] 0.0003605215208172 [GeV] +Cell[14,22] 0.11889689548251 [GeV] +Cell[15,11] 9.654173435365e-07 [GeV] +Cell[15,44] 0.001034469379931 [GeV] +Cell[11,7] 8.0066249938682e-06 [GeV] +Cell[15,22] 0.0038975886977068 [GeV] +Cell[14,23] 0.17801602966158 [GeV] +Cell[14,21] 0.0011638118520833 [GeV] +Cell[13,23] 0.00019906789936044 [GeV] +Cell[16,34] 0.0013131187746717 [GeV] +Cell[15,43] 1.1072863605932e-07 [GeV] +Cell[15,0] 0.0001841578714816 [GeV] +Cell[15,46] 1.2094805872835e-05 [GeV] +Cell[15,47] 0.00013015965617797 [GeV] +Cell[15,45] 1.8229245324619e-07 [GeV] +Cell[18,42] 0.0039291929008291 [GeV] +Cell[15,21] 0.0012374791944073 [GeV] +Cell[14,24] 0.0213872404971 [GeV] +Cell[15,15] 0.00065274038850369 [GeV] +Cell[10,18] 2.5890845302001e-06 [GeV] +Cell[15,24] 0.080256382215267 [GeV] +Cell[15,23] 0.0022626892484934 [GeV] +Cell[16,43] 0.0001142050652827 [GeV] +Cell[10,17] 0.000388581199805 [GeV] +Cell[15,12] 1.1750817066059e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 26 cells : 0.41547919462975 (GeV) Source track ID 4527 (gamma,1.004682788758[GeV]) at (-131.64956905467,-482.35711974399,294.93685951191) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[11,31] 0.0035534836981707 [GeV] -Cell[11,32] 0.001290552824659 [GeV] -Cell[12,32] 0.0019885621298062 [GeV] -Cell[11,33] 0.77497283012908 [GeV] -Cell[12,27] 0.0015441649731056 [GeV] -Cell[10,32] 0.00044297385496714 [GeV] -Cell[12,34] 0.0058314614881128 [GeV] -Cell[11,34] 0.1962994743219 [GeV] -Cell[11,35] 0.0010338756450795 [GeV] -Cell[12,33] 0.014002768117115 [GeV] -Cell[15,7] 0.00088295475319615 [GeV] -Cell[12,44] 0.00063999145478918 [GeV] -Cell[12,12] 0.00039928594933081 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 1.0028823793393 (GeV) +Cell[11,47] 0.00020141645446305 [GeV] +Cell[11,32] 0.0053509726193408 [GeV] +Cell[12,33] 0.0096427240264786 [GeV] +Cell[11,33] 0.76695978227609 [GeV] +Cell[11,34] 0.19035541673988 [GeV] +Cell[10,47] 0.0001157222132648 [GeV] +Cell[10,0] 0.00041056118622987 [GeV] +Cell[10,33] 0.0077792267912967 [GeV] +Cell[12,34] 0.00059994159794754 [GeV] +Cell[11,35] 0.0010405972982859 [GeV] +Cell[12,0] 0.0012214116668642 [GeV] +Cell[14,9] 0.00069133863391553 [GeV] +Cell[13,9] 0.00045905456530022 [GeV] +Cell[14,15] 0.0012089262410008 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 0.98603709231036 (GeV) Source track ID 4540 (gamma,0.047344912284535[GeV]) at (-167.6917755668,-471.04083518019,257.21356697034) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[11,32] 0.00014263775385483 [GeV] -Cell[11,33] 0.044943351852963 [GeV] -Cell[11,34] 0.0022589226777174 [GeV] +Cell[11,33] 0.044280399080871 [GeV] +Cell[11,34] 0.0025445328041097 [GeV] +Cell[10,34] 0.00051998039955466 [GeV] ### Total energy deposition in calorimeter by a source track in 3 cells : 0.047344912284535 (GeV) Source track ID 4529 (e-,0.45572972920221[GeV]) at (-121.13190369133,-485.10520705113,252.3185994497) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[11,32] 0.0015385110798894 [GeV] -Cell[12,32] 0.00051896985491891 [GeV] -Cell[11,33] 0.0034303723730777 [GeV] -Cell[14,9] 0.00074046299777498 [GeV] -Cell[12,34] 0.00043358496100402 [GeV] -Cell[10,35] 0.0029762182378246 [GeV] -Cell[11,34] 0.437291602689 [GeV] -Cell[11,35] 0.0006393981640917 [GeV] -Cell[15,22] 0.0057321541522959 [GeV] -Cell[19,14] 0.001917455782328 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.4552187302922 (GeV) +Cell[11,32] 0.00034270829775008 [GeV] +Cell[12,33] 0.0012338912878802 [GeV] +Cell[11,33] 0.014025830388879 [GeV] +Cell[11,34] 0.43513443116012 [GeV] +Cell[11,35] 0.0028535258960432 [GeV] +Cell[11,7] 0.0016283432615314 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.45521873029221 (GeV) Source track ID 4531 (gamma,0.00095137690391003[GeV]) at (-188.9631430854,-462.91784428264,253.59877302816) Original primary track ID 31 (unknown,691.32334101424[GeV]) @@ -4869,246 +4455,280 @@ Cell[11,32] 0.00042957638698552 [GeV] Source track ID 4530 (e+,0.6400920826122[GeV]) at (-233.54818700119,-442.10320553967,252.81438153271) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[5,40] 0.0004080035361807 [GeV] -Cell[11,31] 0.075039566725286 [GeV] -Cell[11,32] 0.55424118321555 [GeV] -Cell[11,33] 0.0028189170820398 [GeV] -Cell[12,11] 0.00053258452423942 [GeV] -Cell[11,30] 0.0013267768761508 [GeV] -Cell[9,33] 0.00023887423709872 [GeV] -Cell[10,32] 0.00082662992984936 [GeV] -Cell[13,14] 7.6386579672067e-05 [GeV] -Cell[10,47] 0.00014033490043444 [GeV] -Cell[12,20] 0.00051099891 [GeV] -Cell[11,37] 8.2067208372243e-05 [GeV] -Cell[13,9] 0.0029863702657895 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 0.63922869399066 (GeV) +Cell[11,29] 0.00081776467174738 [GeV] +Cell[9,33] 0.00021317990481097 [GeV] +Cell[11,31] 0.035687068898412 [GeV] +Cell[11,32] 0.59923671088226 [GeV] +Cell[9,24] 0.0017533900233279 [GeV] +Cell[11,30] 0.0004203032670675 [GeV] +Cell[11,33] 0.0006535216589919 [GeV] +Cell[10,32] 0.00089087916602599 [GeV] +Cell[2,29] 0.00019496168020503 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.63986778015285 (GeV) Source track ID 3562 (gamma,0.17435926984906[GeV]) at (-435.61886486003,245.43065126032,445.72702586482) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[12,18] 0.00031260159515254 [GeV] -Cell[12,20] 0.15606948271364 [GeV] -Cell[11,3] 0.00085840955025772 [GeV] -Cell[12,19] 0.015981006241446 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.17322150010049 (GeV) +Cell[12,19] 0.0084295789396734 [GeV] +Cell[14,46] 0.00076662949242305 [GeV] +Cell[12,21] 0.0039281377551286 [GeV] +Cell[12,20] 0.16122089875891 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.17434524494613 (GeV) Source track ID 2988 (pi+,0.27816460875763[GeV]) at (266.40002603081,423.12058107682,15.006142572343) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[9,7] 0.00061378830227895 [GeV] -Cell[9,5] 0.0033364658962866 [GeV] -Cell[10,6] 0.0038463897951404 [GeV] -Cell[9,6] 0.07878485996767 [GeV] -Cell[8,40] 0.007326067333246 [GeV] -Cell[10,7] 0.08367803036762 [GeV] -Cell[5,12] 0.00051099891 [GeV] -Cell[10,5] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.17860759948224 (GeV) +Cell[10,6] 0.10531619624991 [GeV] +Cell[10,7] 0.072489029902234 [GeV] +Cell[9,6] 0.0032900519727746 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.18109527812492 (GeV) Source track ID 3547 (gamma,0.67224858404432[GeV]) at (444.05231999685,-229.82066292093,-518.95898316305) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[7,43] 0.002374785376843 [GeV] -Cell[6,43] 0.010362483221171 [GeV] -Cell[6,44] 0.18505422327401 [GeV] -Cell[6,45] 0.00023219215315134 [GeV] -Cell[6,42] 0.0044081991627045 [GeV] -Cell[7,46] 0.0011089538263442 [GeV] -Cell[7,45] 0.00048574595486837 [GeV] -Cell[7,44] 0.46798305205273 [GeV] -Cell[6,47] 0.00023894902249742 [GeV] -### Total energy deposition in calorimeter by a source track in 9 cells : 0.67224858404432 (GeV) +Cell[7,45] 0.0044095801760786 [GeV] +Cell[6,47] 0.00018064679802503 [GeV] +Cell[7,42] 0.00066622750908558 [GeV] +Cell[6,26] 0.0010349219654027 [GeV] +Cell[7,43] 0.013217335751893 [GeV] +Cell[2,27] 0.00093196153869046 [GeV] +Cell[8,35] 0.00049906880457185 [GeV] +Cell[9,42] 0.00035755721526793 [GeV] +Cell[6,44] 0.0032075634829629 [GeV] +Cell[7,44] 0.63055316120961 [GeV] +Cell[6,4] 0.00041941637806902 [GeV] +Cell[14,33] 0.0019522423921486 [GeV] +Cell[6,43] 0.0063806884504955 [GeV] +Cell[8,39] 0.00048794288533401 [GeV] +Cell[8,15] 0.00051099891 [GeV] +Cell[8,33] 0.0026578976547809 [GeV] +### Total energy deposition in calorimeter by a source track in 16 cells : 0.66746721112242 (GeV) Source track ID 3548 (gamma,0.13757172036947[GeV]) at (417.90943082583,-274.50265504514,-190.7461144873) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[8,45] 0.0035326654280362 [GeV] -Cell[9,44] 0.0018026548013423 [GeV] -Cell[9,43] 0.058722810231011 [GeV] -Cell[8,44] 0.00034648949454976 [GeV] -Cell[8,43] 0.073167100414526 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.13757172036947 (GeV) +Cell[8,45] 0.002085108426756 [GeV] +Cell[8,12] 0.00012087762807466 [GeV] +Cell[9,44] 0.0039723611657016 [GeV] +Cell[9,43] 0.10389081012885 [GeV] +Cell[8,43] 0.026671683643759 [GeV] +Cell[8,44] 0.0004407580944001 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.13718159908754 (GeV) Source track ID 3519 (kaon-,1.1677299737134[GeV]) at (474.64220307505,-157.20934787747,-18.859639528135) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[9,0] 0.0034937442083857 [GeV] -Cell[6,11] 6.1945962670507e-08 [GeV] -Cell[9,17] 7.4500078410438e-06 [GeV] -Cell[10,44] 0.014783804860756 [GeV] -Cell[9,46] 0.19824950112176 [GeV] -Cell[13,27] 8.6989376779911e-07 [GeV] -Cell[13,28] 0.0025711859271809 [GeV] -Cell[13,29] 1.8128100155081e-05 [GeV] -Cell[15,30] 0.00066672355963965 [GeV] -Cell[10,46] 0.0080417677426682 [GeV] -Cell[14,28] 0.00015028289209215 [GeV] -Cell[13,30] 3.9983628812479e-05 [GeV] -Cell[10,0] 0.0020198407747132 [GeV] -Cell[11,46] 0.022673456420693 [GeV] -Cell[11,45] 0.0048574570613126 [GeV] -Cell[12,35] 1.7584091983736e-07 [GeV] -Cell[12,36] 1.2006752685465e-05 [GeV] -Cell[9,47] 0.023384713510283 [GeV] -Cell[10,47] 0.00024039438577586 [GeV] -Cell[10,35] 0.0026394183152421 [GeV] -Cell[10,36] 0.00052858875952427 [GeV] -Cell[12,17] 0.00026978377823048 [GeV] -Cell[12,18] 0.00070323522519402 [GeV] -Cell[5,16] 0.00069703191138984 [GeV] -Cell[10,43] 0.0028053383747557 [GeV] -Cell[5,13] 7.9314867845824e-05 [GeV] -Cell[6,12] 1.7433194443583e-11 [GeV] -Cell[8,46] 0.00047812887520126 [GeV] -Cell[8,45] 0.0017151788971836 [GeV] -Cell[9,45] 0.36098655282282 [GeV] -Cell[10,45] 0.017940056705016 [GeV] -Cell[11,36] 8.7497706219892e-06 [GeV] -Cell[5,12] 0.00087397428927341 [GeV] -Cell[5,11] 0.0046164490548403 [GeV] -Cell[15,29] 0.00011783819571917 [GeV] -Cell[12,39] 0.00034626927542464 [GeV] -Cell[10,37] 2.6149392942898e-07 [GeV] -Cell[11,47] 0.0028294890059684 [GeV] -Cell[13,46] 3.1585950637236e-08 [GeV] -Cell[9,44] 0.0093147556283198 [GeV] -Cell[9,43] 0.00040780547301938 [GeV] -Cell[8,44] 3.9113510865718e-09 [GeV] -Cell[16,14] 3.817374818027e-08 [GeV] -Cell[5,14] 3.7998395797331e-05 [GeV] -Cell[17,6] 7.7161896915641e-06 [GeV] -Cell[17,5] 1.2030499143293e-05 [GeV] -Cell[17,7] 0.0011636581167568 [GeV] -Cell[10,42] 1.1331898742355e-05 [GeV] -Cell[11,37] 3.6229428587831e-08 [GeV] -Cell[11,38] 1.6366785757782e-09 [GeV] -Cell[9,16] 5.4720701882616e-08 [GeV] -Cell[13,24] 0.00073203200045666 [GeV] -Cell[10,15] 0.0027992526896366 [GeV] -Cell[8,42] 2.3025235122986e-09 [GeV] -Cell[12,19] 0.00071918154226864 [GeV] -Cell[15,28] 6.6572469708262e-05 [GeV] -Cell[9,15] 1.6626692377031e-07 [GeV] -Cell[10,13] 2.5009853187612e-06 [GeV] -Cell[5,15] 0.0025414831161226 [GeV] -Cell[11,0] 0.00069870254938405 [GeV] -### Total energy deposition in calorimeter by a source track in 60 cells : 0.69736256465269 (GeV) +Cell[8,10] 2.3290546930639e-06 [GeV] +Cell[8,8] 1.8633154172676e-07 [GeV] +Cell[8,45] 0.0061118166830697 [GeV] +Cell[8,46] 0.00036852431025522 [GeV] +Cell[11,47] 0.011764258864189 [GeV] +Cell[7,25] 0.0050214970776014 [GeV] +Cell[7,26] 0.00051099891 [GeV] +Cell[10,39] 0.00021198818683865 [GeV] +Cell[8,0] 1.6071412005658e-07 [GeV] +Cell[9,44] 0.02162929639261 [GeV] +Cell[9,43] 0.0030526124122226 [GeV] +Cell[15,30] 8.9712093467824e-06 [GeV] +Cell[13,22] 0.0066868092383581 [GeV] +Cell[10,1] 0.0012549626774275 [GeV] +Cell[10,9] 0.00073216108245035 [GeV] +Cell[14,22] 0.0053149021543896 [GeV] +Cell[15,13] 2.2954248765018e-05 [GeV] +Cell[12,46] 0.00049310803252627 [GeV] +Cell[12,22] 0.00014862180390628 [GeV] +Cell[10,44] 0.0018840778335963 [GeV] +Cell[10,45] 0.011581249115842 [GeV] +Cell[9,46] 0.0293720678269 [GeV] +Cell[10,47] 0.015354040257015 [GeV] +Cell[10,46] 0.02461184918725 [GeV] +Cell[11,46] 1.1955440268935e-05 [GeV] +Cell[9,47] 0.021971260479426 [GeV] +Cell[9,0] 7.920519325728e-05 [GeV] +Cell[8,47] 1.1825571971713e-05 [GeV] +Cell[9,45] 0.50899922523242 [GeV] +Cell[10,43] 0.0015594158856237 [GeV] +Cell[10,0] 0.00035257585519008 [GeV] +Cell[11,45] 2.9947614166304e-11 [GeV] +Cell[11,1] 0.0057549006104853 [GeV] +Cell[9,34] 0.00092695207832708 [GeV] +Cell[12,2] 6.2773071294146e-05 [GeV] +Cell[11,2] 0.0011130834537316 [GeV] +Cell[13,7] 2.6570690951075e-05 [GeV] +Cell[8,1] 9.3980474423461e-07 [GeV] +Cell[10,33] 2.6770140524604e-05 [GeV] +Cell[10,34] 0.00034430284693713 [GeV] +Cell[10,35] 4.3974443987054e-06 [GeV] +Cell[13,30] 4.1600747499615e-07 [GeV] +Cell[13,29] 7.7639881783398e-06 [GeV] +Cell[9,42] 5.7455966953057e-09 [GeV] +Cell[17,13] 4.0789086597215e-10 [GeV] +Cell[8,43] 6.4043199264461e-06 [GeV] +Cell[8,44] 0.0013903226889884 [GeV] +Cell[13,40] 0.0022050458769526 [GeV] +Cell[7,23] 8.1424126023194e-05 [GeV] +Cell[12,19] 0.00028854059104157 [GeV] +Cell[11,0] 0.00032888786340015 [GeV] +Cell[12,45] 3.5317454644428e-05 [GeV] +Cell[12,44] 3.7667142578357e-09 [GeV] +Cell[13,44] 0.0015856533982782 [GeV] +Cell[13,45] 2.5755712813407e-06 [GeV] +Cell[13,21] 0.0028216638939954 [GeV] +Cell[14,23] 0.0012163542683654 [GeV] +Cell[14,21] 0.0045709034855887 [GeV] +Cell[11,15] 3.7811135371157e-08 [GeV] +Cell[14,39] 0.0021054306314471 [GeV] +Cell[14,40] 1.8509418005124e-05 [GeV] +Cell[15,39] 0.0016973479403406 [GeV] +Cell[16,29] 0.00065698001009259 [GeV] +Cell[17,11] 3.8442866692549e-05 [GeV] +Cell[13,23] 0.0013469585990544 [GeV] +Cell[10,38] 8.7599471498834e-10 [GeV] +Cell[15,18] 6.3361634965986e-07 [GeV] +Cell[15,17] 1.0034664010163e-06 [GeV] +Cell[14,19] 0.00016164367868214 [GeV] +Cell[12,40] 0.00013048090587108 [GeV] +Cell[13,20] 9.5474925146846e-05 [GeV] +Cell[18,20] 2.7294615720166e-05 [GeV] +Cell[14,20] 0.0030379668283193 [GeV] +Cell[17,12] 3.9615827063244e-09 [GeV] +Cell[10,2] 6.1358703533188e-08 [GeV] +Cell[11,16] 3.827209092151e-07 [GeV] +Cell[7,24] 0.00010460955486633 [GeV] +Cell[9,1] 0.00092332956537734 [GeV] +Cell[18,11] 1.8191781418864e-06 [GeV] +Cell[18,12] 4.227725526107e-09 [GeV] +### Total energy deposition in calorimeter by a source track in 80 cells : 0.71227529764532 (GeV) Source track ID 3516 (gamma,0.015859560263227[GeV]) at (453.63011549699,-210.28485041532,-430.35183456153) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[6,14] 0.00089955052709641 [GeV] -Cell[7,44] 0.014070956171776 [GeV] -Cell[10,19] 0.00030290426286334 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.015273410961735 (GeV) +Cell[7,44] 0.015859560263227 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.015859560263227 (GeV) Source track ID 3517 (gamma,0.75885122891297[GeV]) at (497.51078033779,-49.829945290781,326.48051083415) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[6,28] 7.8245919297843e-05 [GeV] -Cell[12,43] 0.00021556367980218 [GeV] -Cell[11,8] 0.00030633573832639 [GeV] -Cell[11,46] 0.024801240522396 [GeV] -Cell[11,45] 0.00086472748428325 [GeV] -Cell[11,1] 0.00045118686908546 [GeV] -Cell[12,42] 0.00121448858573 [GeV] -Cell[12,46] 0.0089583283632242 [GeV] -Cell[12,47] 0.015943262135947 [GeV] -Cell[11,47] 0.69708244480253 [GeV] -Cell[12,0] 0.00031672319157109 [GeV] -Cell[11,0] 0.0060657443275236 [GeV] -### Total energy deposition in calorimeter by a source track in 12 cells : 0.75629829161972 (GeV) +Cell[11,47] 0.70819999438118 [GeV] +Cell[12,1] 0.0011189429093838 [GeV] +Cell[12,47] 0.019210113743374 [GeV] +Cell[12,46] 0.0019414294948138 [GeV] +Cell[10,47] 0.00046259122360249 [GeV] +Cell[11,46] 0.011000128751097 [GeV] +Cell[11,45] 0.00034698989605576 [GeV] +Cell[11,1] 0.0018197905710305 [GeV] +Cell[13,37] 0.0055582366739789 [GeV] +Cell[13,1] 0.00051099891 [GeV] +Cell[11,0] 0.0043065391144025 [GeV] +Cell[12,0] 0.0043754732440569 [GeV] +### Total energy deposition in calorimeter by a source track in 12 cells : 0.75885122891297 (GeV) Source track ID 3274 (mu-,0.90747186102164[GeV]) at (-495.01092354563,-70.45697673407,1794.0604343839) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[18,25] 0.0080482739061803 [GeV] -Cell[19,25] 0.20540608888339 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.21345436278957 (GeV) +Cell[16,8] 0.00047199025906088 [GeV] +Cell[18,25] 0.008380239918566 [GeV] +Cell[19,25] 0.15595107161654 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.16480330179417 (GeV) Source track ID 3258 (gamma,0.12620965025075[GeV]) at (-487.28250301992,-112.05249774389,703.88980967664) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[13,26] 0.0026367262826798 [GeV] -Cell[11,7] 0.00051099891 [GeV] -Cell[13,39] 0.00083092528569579 [GeV] -Cell[13,24] 0.0054827884177745 [GeV] -Cell[13,25] 0.1156242358381 [GeV] -Cell[12,19] 0.00046443072635688 [GeV] -Cell[18,6] 0.0006595447901392 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.12620965025075 (GeV) +Cell[13,26] 0.0040022018002664 [GeV] +Cell[13,25] 0.11996532620456 [GeV] +Cell[13,1] 0.00051099891 [GeV] +Cell[14,15] 0.00058983275411779 [GeV] +Cell[14,17] 0.0011412905818054 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.12620965025075 (GeV) Source track ID 3259 (gamma,0.088297327870564[GeV]) at (61.272156676056,-496.23152138519,76.525338646172) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[10,38] 0.001479561645504 [GeV] -Cell[10,36] 0.076441021168282 [GeV] -Cell[10,37] 0.010376745056778 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.088297327870564 (GeV) +Cell[10,36] 0.085748984109963 [GeV] +Cell[10,37] 0.0025483437606011 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.088297327870564 (GeV) Source track ID 2993 (pi+,0.88672798454736[GeV]) at (5.2511205757455,499.97242497232,750.14464187733) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[14,11] 0.18195372139306 [GeV] -Cell[13,11] 0.076668160556412 [GeV] -Cell[16,9] 0.2016473158986 [GeV] -Cell[14,10] 0.0066364167226486 [GeV] -Cell[16,10] 0.21415997218271 [GeV] -Cell[15,10] 0.18600008785257 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.867065674606 (GeV) +Cell[7,27] 6.2258428417977e-05 [GeV] +Cell[7,26] 8.712991369066e-06 [GeV] +Cell[7,28] 2.3632808006369e-07 [GeV] +Cell[8,28] 3.1121759093367e-07 [GeV] +Cell[14,5] 1.440639491193e-06 [GeV] +Cell[11,9] 1.2622352514882e-06 [GeV] +Cell[15,13] 0.00015131659071153 [GeV] +Cell[14,13] 0.00058225940765055 [GeV] +Cell[14,12] 0.003410496410161 [GeV] +Cell[15,37] 3.0614528222941e-06 [GeV] +Cell[15,11] 0.00092382597262164 [GeV] +Cell[15,10] 0.29954122991885 [GeV] +Cell[13,5] 6.075969140511e-07 [GeV] +Cell[14,23] 1.2357686355244e-06 [GeV] +Cell[14,36] 1.2970027495612e-05 [GeV] +Cell[14,45] 0.00090162073992417 [GeV] +Cell[16,28] 6.8676477530971e-07 [GeV] +Cell[16,29] 4.5057444367558e-07 [GeV] +Cell[14,9] 0.0041179804136542 [GeV] +Cell[13,23] 2.3399713682011e-06 [GeV] +Cell[13,10] 0.0013560319317188 [GeV] +Cell[15,9] 0.011321819880536 [GeV] +Cell[13,9] 3.7483354182086e-06 [GeV] +Cell[15,45] 2.8413748077583e-06 [GeV] +Cell[14,10] 0.11902249362297 [GeV] +Cell[13,11] 0.072367007883817 [GeV] +Cell[15,12] 0.00030700173705702 [GeV] +Cell[14,11] 0.26130738911227 [GeV] +Cell[17,42] 3.0753022874705e-06 [GeV] +Cell[18,40] 1.6218620003201e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 30 cells : 0.77541733449311 (GeV) Source track ID 3105 (pi-,0.65424359264842[GeV]) at (-91.720828329565,-491.5152995081,1125.4086718541) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[14,29] 0.0040652686348927 [GeV] -Cell[16,30] 0.033367623841366 [GeV] -Cell[13,28] 0.00057983959127751 [GeV] -Cell[13,29] 0.00015222537166107 [GeV] -Cell[13,32] 6.391629760617e-05 [GeV] -Cell[14,32] 0.000250762945612 [GeV] -Cell[15,32] 0.0016769115076856 [GeV] -Cell[16,32] 0.0011554132731499 [GeV] -Cell[16,31] 0.00090416388730388 [GeV] -Cell[15,31] 0.00030478618460802 [GeV] -Cell[14,31] 0.000379486033484 [GeV] -Cell[13,31] 0.00019500221678811 [GeV] -Cell[14,44] 3.7249278065019e-06 [GeV] -Cell[14,28] 0.0059408937843573 [GeV] -Cell[13,45] 6.0791646922098e-07 [GeV] -Cell[13,30] 0.0011702337765622 [GeV] -Cell[14,27] 0.0022296107782934 [GeV] -Cell[13,17] 8.4750125656683e-06 [GeV] -Cell[13,18] 7.3659755248514e-05 [GeV] -Cell[15,33] 0.00010485055150878 [GeV] -Cell[16,5] 4.2157321900049e-08 [GeV] -Cell[15,9] 0.00097070335853425 [GeV] -Cell[14,43] 6.7602803710543e-09 [GeV] -Cell[13,44] 2.3754144096984e-06 [GeV] -Cell[15,35] 0.0026092686095279 [GeV] -Cell[17,32] 8.8973089577848e-07 [GeV] -Cell[16,19] 4.7557816491462e-05 [GeV] -Cell[16,14] 9.4664418138564e-06 [GeV] -Cell[16,12] 4.6705477871001e-08 [GeV] -Cell[16,36] 3.7853296164258e-05 [GeV] -Cell[15,34] 0.096633765365734 [GeV] -Cell[16,34] 0.03146038772206 [GeV] -Cell[16,35] 0.27377935341143 [GeV] -Cell[16,33] 0.0031205489651554 [GeV] -Cell[16,40] 1.9839768938255e-05 [GeV] -Cell[16,7] 5.3306710924744e-05 [GeV] -Cell[16,6] 0.00010518990673336 [GeV] -Cell[17,6] 0.00052785817394363 [GeV] -Cell[17,5] 3.1344085582532e-06 [GeV] -Cell[15,10] 9.4705884694122e-06 [GeV] -Cell[13,19] 5.7567376643419e-11 [GeV] -Cell[17,35] 0.0002238495573157 [GeV] -Cell[14,30] 3.266420133059e-07 [GeV] -Cell[14,26] 1.8924402084849e-05 [GeV] -Cell[17,36] 7.8791434816594e-09 [GeV] -Cell[17,33] 0.00077962136029089 [GeV] -Cell[17,34] 1.1790485104257e-05 [GeV] -Cell[17,40] 1.9421922042966e-05 [GeV] -Cell[18,45] 0.0014853545958424 [GeV] -### Total energy deposition in calorimeter by a source track in 49 cells : 0.46455781850251 (GeV) +Cell[9,13] 4.6821848402487e-06 [GeV] +Cell[9,11] 7.9309364082292e-08 [GeV] +Cell[15,38] 1.6472768038511e-11 [GeV] +Cell[16,32] 0.0027639441613812 [GeV] +Cell[16,31] 9.1693147551268e-06 [GeV] +Cell[10,12] 1.5942990392887e-05 [GeV] +Cell[12,23] 0.00074482772370187 [GeV] +Cell[16,37] 0.0036497524051284 [GeV] +Cell[15,36] 0.0029057778210208 [GeV] +Cell[16,36] 0.0073742091118457 [GeV] +Cell[15,37] 0.002968147403447 [GeV] +Cell[13,33] 2.4579026103311e-09 [GeV] +Cell[10,11] 0.00013384383442622 [GeV] +Cell[15,35] 0.000167852747506 [GeV] +Cell[16,38] 0.00036144161588072 [GeV] +Cell[16,35] 0.24318824791202 [GeV] +Cell[18,0] 0.0042203431536466 [GeV] +Cell[18,1] 2.2492792340927e-06 [GeV] +Cell[17,37] 0.00034845054640596 [GeV] +Cell[17,36] 0.0035367239419812 [GeV] +Cell[17,38] 3.4106736291051e-07 [GeV] +Cell[17,35] 0.0017411445648515 [GeV] +Cell[17,34] 0.0019930161494189 [GeV] +Cell[16,33] 1.7357557643322e-05 [GeV] +Cell[17,20] 0.00016137278826125 [GeV] +Cell[16,39] 1.9694633901281e-05 [GeV] +Cell[15,33] 1.019133729244e-05 [GeV] +Cell[15,34] 0.11341740429792 [GeV] +Cell[16,34] 0.0095241112624927 [GeV] +Cell[14,33] 0.0020201557297403 [GeV] +Cell[17,33] 5.9971027326355e-08 [GeV] +Cell[17,41] 2.3770305915605e-08 [GeV] +Cell[14,35] 5.479886604121e-06 [GeV] +Cell[17,39] 0.00024440322589544 [GeV] +Cell[16,41] 3.0460796551779e-11 [GeV] +Cell[18,20] 2.4251801278297e-09 [GeV] +Cell[13,34] 8.9836791451944e-05 [GeV] +Cell[10,13] 1.7847864569376e-07 [GeV] +Cell[17,19] 3.4004366259751e-05 [GeV] +Cell[17,40] 2.1859267357058e-05 [GeV] +Cell[18,19] 1.1985323340014e-07 [GeV] +Cell[18,18] 3.3146364462596e-05 [GeV] +Cell[19,18] 3.5422957486162e-05 [GeV] +Cell[19,19] 2.1291518396538e-07 [GeV] +Cell[14,34] 0.013459470843351 [GeV] +### Total energy deposition in calorimeter by a source track in 45 cells : 0.41522469846714 (GeV) Source track ID 2943 (e-,0.10333826231856[GeV]) at (34.07274490176,-498.83769710684,-20.991620984339) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,37] 0.0017300762973366 [GeV] -Cell[9,36] 0.096479813548815 [GeV] -Cell[10,9] 0.00087016259059508 [GeV] -Cell[11,10] 0.00092191942162979 [GeV] -Cell[14,7] 0.00056386407944359 [GeV] -Cell[8,45] 0.001898530199272 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.10246436613709 (GeV) +Cell[10,25] 0.00017374220748854 [GeV] +Cell[9,36] 0.09675661019252 [GeV] +Cell[10,24] 0.0031065125381336 [GeV] +Cell[10,37] 0.00028305216358753 [GeV] +Cell[9,37] 0.0010692817626473 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.10138919886438 (GeV) Source track ID 2945 (gamma,4.4327787692407e-05[GeV]) at (-53.67723123915,-497.11040508774,-20.023309335458) Original primary track ID 43 (unknown,52.984237098069[GeV]) @@ -5117,21 +4737,21 @@ Cell[9,35] 4.4327787692407e-05 [GeV] Source track ID 2946 (gamma,0.058012336454055[GeV]) at (-55.097842717986,-496.9549554314,-19.603827870488) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,37] 0.00024395288801451 [GeV] -Cell[9,35] 0.056925271299082 [GeV] -Cell[9,34] 0.00057606624497293 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.05774529043207 (GeV) +Cell[9,34] 0.0090243390776608 [GeV] +Cell[9,35] 0.048987997376394 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.058012336454055 (GeV) Source track ID 2947 (gamma,0.0096907614520967[GeV]) at (-57.689091491533,-496.6608185904,-18.87521340349) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,35] 0.0044654168661048 [GeV] -Cell[9,34] 0.005225344585992 [GeV] +Cell[9,34] 0.0091161942781032 [GeV] +Cell[9,35] 0.00057456717399351 [GeV] ### Total energy deposition in calorimeter by a source track in 2 cells : 0.0096907614520967 (GeV) Source track ID 2953 (gamma,0.00074314472963598[GeV]) at (-14.471071828006,-499.79054420842,-44.943409692921) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,35] 0.00074314472963598 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00074314472963598 (GeV) +Cell[9,36] 0.00071565305527241 [GeV] +Cell[9,35] 2.7491674363569e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.00074314472963598 (GeV) Source track ID 2954 (gamma,0.00037257020570334[GeV]) at (131.28801785783,-482.45565222823,-280.32478155779) Original primary track ID 43 (unknown,52.984237098069[GeV]) @@ -5140,14 +4760,14 @@ Cell[8,38] 0.00037257020570334 [GeV] Source track ID 2958 (gamma,0.0015134800769359[GeV]) at (485.80234203064,118.30504840263,-216.9468060842) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[8,1] 0.0015134800769359 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.0015134800769359 (GeV) +Cell[8,2] 0.00044350261466636 [GeV] +Cell[8,1] 0.0010699774622696 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.0015134800769359 (GeV) Source track ID 2960 (gamma,0.0057458935923631[GeV]) at (-15.017369568104,-499.77442772841,-81.879259365328) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,36] 0.0041962176936196 [GeV] -Cell[9,35] 0.0015496758987435 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.0057458935923631 (GeV) +Cell[9,36] 0.0057458935923631 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.0057458935923631 (GeV) Source track ID 2961 (gamma,7.7028844988673e-05[GeV]) at (-102.14943654383,-489.45428041215,-80.442428914196) Original primary track ID 43 (unknown,52.984237098069[GeV]) @@ -5156,13 +4776,13 @@ Cell[9,34] 7.7028844988673e-05 [GeV] Source track ID 2963 (gamma,7.0510992949004e-05[GeV]) at (50.118178366793,-497.48182700195,-122.37880263997) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,35] 5.7240274133572e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 5.7240274133572e-05 (GeV) +Cell[9,36] 7.0510992949004e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 7.0510992949004e-05 (GeV) Source track ID 2965 (gamma,0.012522347812634[GeV]) at (100.24622885797,-489.84762283771,-87.151319025482) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,37] 0.011980442722439 [GeV] -Cell[9,38] 0.00054190509019437 [GeV] +Cell[9,38] 0.00046185051975638 [GeV] +Cell[9,37] 0.012060497292877 [GeV] ### Total energy deposition in calorimeter by a source track in 2 cells : 0.012522347812634 (GeV) Source track ID 2968 (gamma,0.0005598087508551[GeV]) at (366.44221967606,-340.17657126687,-1260.4109549274) @@ -5182,94 +4802,81 @@ Cell[11,17] 0.0003495219890744 [GeV] Source track ID 2942 (gamma,0.33413532464401[GeV]) at (245.8933673121,435.35784351717,97.500310757389) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[10,9] 1.0356683522218e-05 [GeV] -Cell[9,31] 0.00051603224181616 [GeV] -Cell[10,34] 0.00051099891 [GeV] -Cell[10,8] 0.24313704086268 [GeV] -Cell[12,33] 0.00053897538192623 [GeV] -Cell[10,7] 0.079733052928639 [GeV] -Cell[15,11] 9.6878347169823e-06 [GeV] -Cell[10,15] 0.00039194726124925 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.32484809210455 (GeV) +Cell[10,8] 0.27430799927489 [GeV] +Cell[9,7] 0.0063685003442124 [GeV] +Cell[5,47] 0.0014846391197547 [GeV] +Cell[10,7] 0.04870471684396 [GeV] +Cell[11,10] 0.00047264613161911 [GeV] +Cell[12,9] 0.00020490200223925 [GeV] +Cell[13,12] 0.00088197171940108 [GeV] +Cell[15,33] 0.00043814268320438 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.33286351811928 (GeV) Source track ID 2825 (pi-,1.7949639347304[GeV]) at (442.72387946477,-232.36946131465,-1863.5147116066) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[3,25] 0.0019886997297656 [GeV] -Cell[1,45] 6.8732464860659e-06 [GeV] -Cell[1,23] 0.029415357638871 [GeV] -Cell[10,16] 0.00069309375322286 [GeV] -Cell[10,8] 0.0022331032674279 [GeV] -Cell[3,22] 4.2663066820296e-05 [GeV] -Cell[2,1] 9.0763667249234e-05 [GeV] -Cell[1,2] 0.00054268732665253 [GeV] -Cell[0,23] 0.0035051671314246 [GeV] -Cell[2,9] 1.9208528101444e-12 [GeV] -Cell[0,22] 0.0010309133710105 [GeV] -Cell[0,3] 1.1415249900892e-08 [GeV] -Cell[2,7] 0.00028705957517809 [GeV] -Cell[1,43] 0.00019706065933349 [GeV] -Cell[2,20] 0.0026064665054618 [GeV] -Cell[0,46] 0.019148537525071 [GeV] -Cell[2,13] 2.1273712318362e-06 [GeV] -Cell[1,22] 0.0012726159618579 [GeV] -Cell[1,20] 0.0049301733860764 [GeV] -Cell[1,21] 0.000905819046548 [GeV] -Cell[0,42] 0.00019889151234861 [GeV] -Cell[0,43] 0.0426344431839 [GeV] -Cell[1,6] 0.00050292958723946 [GeV] -Cell[0,4] 1.2502481331467e-07 [GeV] -Cell[0,31] 1.4070657518459e-05 [GeV] -Cell[0,8] 0.00015602627314945 [GeV] -Cell[0,9] 5.5267995940994e-05 [GeV] -Cell[1,39] 1.2696528574452e-07 [GeV] -Cell[2,22] 0.011163107599612 [GeV] -Cell[1,19] 0.00098338804463651 [GeV] -Cell[1,9] 1.7122046881468e-07 [GeV] -Cell[6,3] 5.6729857192295e-08 [GeV] -Cell[10,7] 0.0024152022587441 [GeV] -Cell[0,35] 0.00066415761346809 [GeV] -Cell[0,25] 3.4718418115517e-05 [GeV] -Cell[1,40] 0.00039309331822142 [GeV] -Cell[3,35] 0.00039590233315118 [GeV] -Cell[2,36] 0.0001108642553445 [GeV] -Cell[1,32] 7.5170545023866e-06 [GeV] -Cell[2,2] 2.0380268358622e-07 [GeV] -Cell[2,3] 1.1140946298838e-10 [GeV] -Cell[3,8] 4.5086367663316e-07 [GeV] -Cell[1,16] 2.3800873925211e-05 [GeV] -Cell[0,44] 0.71183252637121 [GeV] -Cell[3,13] 0.0003899030378135 [GeV] -Cell[1,7] 0.00032101056811393 [GeV] -Cell[0,7] 5.0598282541614e-10 [GeV] -Cell[0,34] 4.2584760230966e-06 [GeV] -Cell[2,19] 0.0061604556050808 [GeV] -Cell[2,14] 2.3836037144065e-11 [GeV] -Cell[1,3] 0.00044121882804905 [GeV] -Cell[3,36] 0.00013547861506788 [GeV] -Cell[3,14] 2.7071178454435e-05 [GeV] -Cell[3,21] 0.001582393713545 [GeV] -Cell[1,46] 2.9886975011323e-05 [GeV] -Cell[5,3] 0.00030659563635299 [GeV] -Cell[2,8] 0.00049770873638784 [GeV] -Cell[0,41] 5.8043878816534e-06 [GeV] -Cell[1,41] 4.8651117505869e-05 [GeV] -Cell[0,45] 0.066399407779571 [GeV] -Cell[0,40] 6.3603227307567e-06 [GeV] -Cell[3,9] 1.381011770718e-09 [GeV] -Cell[0,30] 1.1890952009708e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 63 cells : 0.9168424437936 (GeV) +Cell[3,6] 2.7763957332354e-06 [GeV] +Cell[4,12] 7.5201769650448e-06 [GeV] +Cell[4,9] 0.00099563129141053 [GeV] +Cell[5,28] 4.0994200389832e-09 [GeV] +Cell[6,8] 0.00020614544381669 [GeV] +Cell[4,35] 6.1143424827605e-06 [GeV] +Cell[2,10] 0.00070471501331656 [GeV] +Cell[2,23] 7.246937538298e-06 [GeV] +Cell[3,41] 3.3036921813618e-06 [GeV] +Cell[3,1] 9.9663109822814e-05 [GeV] +Cell[4,15] 2.0988963369746e-06 [GeV] +Cell[0,33] 0.0037500617886331 [GeV] +Cell[1,23] 0.00054172873614009 [GeV] +Cell[3,2] 2.5874350194499e-07 [GeV] +Cell[1,42] 0.00016898555703335 [GeV] +Cell[0,17] 0.0013341349240997 [GeV] +Cell[4,7] 8.7981941178441e-06 [GeV] +Cell[0,15] 6.3450691465277e-05 [GeV] +Cell[1,46] 0.002986549605323 [GeV] +Cell[0,43] 0.01491494644702 [GeV] +Cell[0,42] 0.0038765461468705 [GeV] +Cell[1,45] 0.00073832500376628 [GeV] +Cell[0,46] 0.0015835955739548 [GeV] +Cell[2,22] 0.003503530556944 [GeV] +Cell[2,2] 0.0012269332237617 [GeV] +Cell[6,41] 0.00019634712289542 [GeV] +Cell[2,11] 0.00036947005754337 [GeV] +Cell[1,11] 0.00014536633783064 [GeV] +Cell[3,0] 1.3475073501468e-11 [GeV] +Cell[0,31] 3.5048466694889e-05 [GeV] +Cell[3,7] 0.0017053877643066 [GeV] +Cell[1,39] 0.00010133127797576 [GeV] +Cell[1,29] 1.344124808611e-07 [GeV] +Cell[3,42] 2.5042425171705e-05 [GeV] +Cell[2,37] 9.3741382879671e-06 [GeV] +Cell[0,16] 0.00020172118627738 [GeV] +Cell[0,45] 0.010835937409013 [GeV] +Cell[0,44] 0.35634395997135 [GeV] +Cell[3,9] 1.0474951093784e-05 [GeV] +Cell[6,22] 3.068183461437e-06 [GeV] +Cell[0,30] 2.5351562499054e-08 [GeV] +Cell[5,27] 1.4460264412719e-07 [GeV] +Cell[0,47] 0.0012190647731834 [GeV] +Cell[0,41] 3.2434785453006e-09 [GeV] +Cell[1,43] 4.4735476080859e-08 [GeV] +Cell[2,14] 0.00079921625486338 [GeV] +Cell[0,29] 0.0010513421687351 [GeV] +Cell[0,32] 0.002549349396876 [GeV] +Cell[1,38] 8.7883643941268e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 49 cells : 0.41242280248027 (GeV) Source track ID 2543 (gamma,0.16498092085606[GeV]) at (-167.27757101576,471.18808795965,-1116.9833877855) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[3,29] 0.00091039518945059 [GeV] -Cell[4,46] 0.00068272398271828 [GeV] -Cell[4,15] 0.0063763840430908 [GeV] -Cell[3,28] 0.00036721128576166 [GeV] -Cell[4,16] 0.00076617653508762 [GeV] -Cell[3,15] 0.0047835966234666 [GeV] -Cell[4,13] 0.0019358380926421 [GeV] -Cell[4,14] 0.14915859510384 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.16498092085606 (GeV) +Cell[6,39] 0.00051099891 [GeV] +Cell[3,40] 0.00090515269360951 [GeV] +Cell[7,0] 0.00018773472250028 [GeV] +Cell[4,15] 0.001264312367341 [GeV] +Cell[3,15] 0.0037150830125086 [GeV] +Cell[3,25] 0.00051099891 [GeV] +Cell[2,37] 0.00044212259601469 [GeV] +Cell[7,47] 0.0012541634863872 [GeV] +Cell[4,14] 0.1561903541577 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.16498092085606 (GeV) Source track ID 2454 (gamma,0.010797010482249[GeV]) at (-498.58295828964,37.616933728752,-405.5344744185) Original primary track ID 43 (unknown,52.984237098069[GeV]) @@ -5288,313 +4895,403 @@ Cell[6,13] 0.00046347025834578 [GeV] Source track ID 2450 (gamma,0.77353931528222[GeV]) at (193.22390241712,-461.1556391661,-1884.3170181557) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[4,3] 0.00073781303104308 [GeV] -Cell[0,27] 0.0012162364627299 [GeV] -Cell[0,39] 0.39048994501976 [GeV] -Cell[1,29] 3.0802819287213e-05 [GeV] -Cell[0,37] 0.0023490815407011 [GeV] -Cell[2,9] 0.00089883678535285 [GeV] -Cell[3,23] 0.0006255387440765 [GeV] -Cell[2,13] 0.00060314505325656 [GeV] -Cell[1,28] 0.0025839103154443 [GeV] -Cell[0,17] 0.0010310105831402 [GeV] -Cell[0,38] 0.33976533136382 [GeV] -Cell[0,26] 0.00064717659288609 [GeV] -Cell[1,16] 0.00050752810779267 [GeV] -Cell[0,44] 0.00046799652998836 [GeV] -Cell[0,29] 0.00085228078587262 [GeV] -Cell[2,4] 0.00051099891 [GeV] -Cell[0,36] 0.0025020309046192 [GeV] -Cell[3,9] 0.0017538157900134 [GeV] -Cell[0,30] 0.0026101745160858 [GeV] -### Total energy deposition in calorimeter by a source track in 19 cells : 0.75018365385587 (GeV) +Cell[2,25] 0.00051099891 [GeV] +Cell[6,21] 0.00051099891 [GeV] +Cell[0,20] 0.0018711236496071 [GeV] +Cell[0,19] 0.00029621899726621 [GeV] +Cell[0,42] 0.0011314028189617 [GeV] +Cell[0,39] 0.612404701575 [GeV] +Cell[0,28] 0.00051099891 [GeV] +Cell[0,38] 0.11374269397548 [GeV] +Cell[1,15] 0.00028631643330865 [GeV] +Cell[0,3] 0.0010735741618628 [GeV] +Cell[3,30] 0.0013348643563924 [GeV] +### Total energy deposition in calorimeter by a source track in 11 cells : 0.73367389269789 (GeV) Source track ID 2412 (pi+,0.23581836869373[GeV]) at (54.675458408949,497.00160386841,-1610.374924583) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[1,11] 0.13404017420555 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.13404017420555 (GeV) +Cell[0,40] 4.2489409679547e-06 [GeV] +Cell[4,34] 0.00093404501042966 [GeV] +Cell[4,43] 5.8145528714704e-07 [GeV] +Cell[4,44] 2.0713079574421e-05 [GeV] +Cell[4,47] 1.5791447367519e-09 [GeV] +Cell[5,43] 1.9240809913413e-05 [GeV] +Cell[2,10] 0.00017791097136978 [GeV] +Cell[4,5] 5.1659772364701e-05 [GeV] +Cell[4,6] 2.0622205920517e-07 [GeV] +Cell[4,15] 5.7886916329153e-07 [GeV] +Cell[1,44] 0.00018119449555661 [GeV] +Cell[0,6] 0.0002886432292076 [GeV] +Cell[0,5] 0.0004641729077366 [GeV] +Cell[4,17] 1.8580449686851e-06 [GeV] +Cell[3,44] 0.0048871697964647 [GeV] +Cell[1,9] 4.4708378579799e-06 [GeV] +Cell[1,10] 0.0011842065950681 [GeV] +Cell[0,12] 4.0631892625242e-06 [GeV] +Cell[1,45] 2.8072393266484e-05 [GeV] +Cell[3,45] 2.1889214986004e-07 [GeV] +Cell[1,6] 0.0022824971987251 [GeV] +Cell[1,5] 0.013563254772139 [GeV] +Cell[2,11] 0.00028992279327099 [GeV] +Cell[1,11] 0.093792293504611 [GeV] +Cell[3,24] 3.2596476376057e-07 [GeV] +Cell[1,13] 3.0140163641704e-05 [GeV] +Cell[1,12] 0.014929025324232 [GeV] +Cell[3,22] 9.674106258899e-07 [GeV] +Cell[5,6] 5.724261117939e-05 [GeV] +Cell[4,33] 0.0022971698341572 [GeV] +Cell[5,44] 1.3314505565631e-07 [GeV] +Cell[4,45] 0.0014209659285098 [GeV] +### Total energy deposition in calorimeter by a source track in 32 cells : 0.13691719574272 (GeV) Source track ID 2409 (gamma,0.59980090891317[GeV]) at (255.70125411862,-429.67065136237,-1133.3038249472) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[8,5] 0.00080696945725175 [GeV] -Cell[9,8] 0.0036039003069957 [GeV] -Cell[7,47] 0.00039672849145875 [GeV] -Cell[1,14] 0.0020665852828309 [GeV] -Cell[7,34] 0.00029510646357369 [GeV] -Cell[2,47] 0.00020265844388097 [GeV] -Cell[5,17] 0.00051099891 [GeV] -Cell[0,32] 0.00051099891 [GeV] -Cell[0,31] 0.0027767201875142 [GeV] -Cell[0,9] 0.0024752615761726 [GeV] -Cell[3,4] 0.0020831408621985 [GeV] -Cell[3,39] 0.050131647599084 [GeV] -Cell[3,38] 0.0023049355589378 [GeV] -Cell[4,42] 0.0003935857187794 [GeV] -Cell[3,37] 0.0019525608402601 [GeV] -Cell[2,41] 0.0014027840625611 [GeV] -Cell[4,39] 0.013238613668631 [GeV] -Cell[4,38] 0.00051099891 [GeV] -Cell[4,40] 0.40958417920029 [GeV] -Cell[4,41] 0.00068607514492931 [GeV] -Cell[3,40] 0.094703487313646 [GeV] -### Total energy deposition in calorimeter by a source track in 21 cells : 0.59063793690899 (GeV) +Cell[7,26] 0.0025585496039695 [GeV] +Cell[4,39] 0.015963838186733 [GeV] +Cell[4,47] 0.00091562757861697 [GeV] +Cell[3,40] 0.016834322874146 [GeV] +Cell[3,28] 0.0009333680377717 [GeV] +Cell[4,41] 0.0097322531517459 [GeV] +Cell[3,41] 0.0030201793303195 [GeV] +Cell[0,22] 0.00072630966204785 [GeV] +Cell[1,23] 7.3962697645911e-05 [GeV] +Cell[2,12] 0.00051099891 [GeV] +Cell[3,17] 0.00051099891 [GeV] +Cell[4,7] 0.0013586633600568 [GeV] +Cell[4,30] 0.00051099891 [GeV] +Cell[2,1] 0.0022256125286022 [GeV] +Cell[3,39] 0.0050214031918867 [GeV] +Cell[4,40] 0.53539998207399 [GeV] +### Total energy deposition in calorimeter by a source track in 16 cells : 0.59629706900753 (GeV) Source track ID 2410 (gamma,0.053266099197347[GeV]) at (183.99447358771,464.91508223458,-1027.4557474184) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[4,9] 0.048357429382669 [GeV] -Cell[4,8] 0.0049086698146785 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.053266099197347 (GeV) +Cell[4,9] 0.049747141833389 [GeV] +Cell[4,4] 0.0008876653085277 [GeV] +Cell[4,3] 0.00082034697527314 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.05145515411719 (GeV) Source track ID 2407 (gamma,0.39597382458922[GeV]) at (-372.59430025967,-333.4268846599,-1802.3851770954) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[1,10] 0.00086364065540045 [GeV] -Cell[1,12] 0.00061188580801535 [GeV] -Cell[0,29] 0.35832036661866 [GeV] -Cell[2,11] 0.00051099891 [GeV] -Cell[3,10] 0.00021158204974305 [GeV] -Cell[0,28] 0.0051630716893874 [GeV] -Cell[0,30] 0.013107531878982 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.37878907761018 (GeV) +Cell[2,45] 0.00051099891 [GeV] +Cell[0,7] 0.00039844601666798 [GeV] +Cell[0,28] 0.0036709268331729 [GeV] +Cell[1,39] 0.00051099891 [GeV] +Cell[0,30] 0.0021596494372033 [GeV] +Cell[1,28] 0.0012336764826967 [GeV] +Cell[0,29] 0.38638152556814 [GeV] +### Total energy deposition in calorimeter by a source track in 7 cells : 0.39486622215788 (GeV) Source track ID 2408 (gamma,0.02130681471934[GeV]) at (476.42903519095,151.70818839804,-84.417530924257) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,1] 0.00072277357141688 [GeV] -Cell[9,2] 0.017412989809386 [GeV] -Cell[11,28] 0.00034511217171428 [GeV] -Cell[13,18] 0.00030479486631602 [GeV] -Cell[8,41] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.019296669328833 (GeV) +Cell[9,2] 0.016106391974193 [GeV] +Cell[9,1] 0.005200422745147 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.02130681471934 (GeV) Source track ID 2406 (gamma,0.19239638056034[GeV]) at (-414.65189490664,279.39900867815,-1130.2072892199) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[6,45] 0.0010397595720672 [GeV] -Cell[4,18] 0.0013783218337478 [GeV] -Cell[3,19] 0.0016188927099724 [GeV] -Cell[1,42] 0.0021323326886687 [GeV] -Cell[4,19] 0.17138674577578 [GeV] -Cell[5,39] 0.00049585886083046 [GeV] -Cell[10,39] 0.00014806195499144 [GeV] -Cell[4,22] 0.0013958856978925 [GeV] -Cell[3,20] 0.0066715263200566 [GeV] -Cell[4,20] 0.0052784845532476 [GeV] -Cell[6,4] 0.00048757363807678 [GeV] -### Total energy deposition in calorimeter by a source track in 11 cells : 0.19203344360533 (GeV) +Cell[3,19] 0.016660433128612 [GeV] +Cell[4,20] 0.0012573997683701 [GeV] +Cell[4,19] 0.16049449485945 [GeV] +Cell[4,18] 0.005135585268756 [GeV] +Cell[3,18] 0.0074920394066053 [GeV] +Cell[1,6] 0.0005312028296572 [GeV] +Cell[5,40] 0.0003142263888891 [GeV] +Cell[4,33] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.19239638056034 (GeV) Source track ID 2338 (gamma,0.25162621009879[GeV]) at (499.02634689842,-31.188220552225,957.00754715835) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[15,39] 0.0040406014382208 [GeV] -Cell[15,32] 0.000688421487054 [GeV] -Cell[13,31] 0.0014623219690697 [GeV] -Cell[14,28] 0.00050181495056097 [GeV] -Cell[11,20] 0.00051099891 [GeV] -Cell[14,47] 0.21523502117342 [GeV] -Cell[15,44] 0.00051099891 [GeV] -Cell[15,47] 0.027578019361397 [GeV] -Cell[16,27] 0.00058701298907297 [GeV] -### Total energy deposition in calorimeter by a source track in 9 cells : 0.25111521118879 (GeV) +Cell[14,47] 0.18266692852322 [GeV] +Cell[16,33] 0.00051099891 [GeV] +Cell[15,46] 0.014199920799933 [GeV] +Cell[15,47] 0.054248361865637 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.25162621009879 (GeV) Source track ID 2070 (e-,0.00096143880294879[GeV]) at (469.57542643546,171.7524931055,1201.2186959977) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[16,2] 0.00045043989294879 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.00045043989294879 (GeV) +Cell[16,2] 0.00044703533950354 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.00044703533950354 (GeV) Source track ID 2058 (gamma,0.23940053141976[GeV]) at (-378.30991176711,-326.92753120342,1067.9855768915) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[13,15] 0.00036846684668877 [GeV] -Cell[15,29] 0.21784407352745 [GeV] -Cell[16,15] 0.0020059576329226 [GeV] -Cell[16,14] 0.0017227701810873 [GeV] -Cell[15,44] 0.00025649890806481 [GeV] -Cell[15,28] 0.0014392494257121 [GeV] -Cell[19,26] 0.0025737244028045 [GeV] -Cell[17,2] 0.00051099891 [GeV] -Cell[19,6] 0.0005990268125423 [GeV] -Cell[19,16] 0.00047088432020495 [GeV] -### Total energy deposition in calorimeter by a source track in 10 cells : 0.22779165096747 (GeV) +Cell[15,28] 0.0015821928392117 [GeV] +Cell[14,7] 0.00051099891 [GeV] +Cell[15,29] 0.22916198964156 [GeV] +Cell[16,29] 0.0030850357127724 [GeV] +Cell[16,25] 0.0006759714521651 [GeV] +Cell[16,12] 0.00050073854146274 [GeV] +Cell[15,45] 0.00051099891 [GeV] +Cell[15,4] 0.00056223369828133 [GeV] +Cell[18,8] 0.00056168058034677 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.2371518402858 (GeV) Source track ID 1762 (gamma,0.41164872010706[GeV]) at (-456.4220843953,204.15406162075,168.67818732075) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[10,20] 0.33412009033165 [GeV] -Cell[10,21] 0.013052543186355 [GeV] -Cell[10,22] 0.0018827796016534 [GeV] -Cell[11,20] 0.049528880699267 [GeV] -Cell[10,10] 0.00032002505939758 [GeV] -Cell[10,19] 0.0011052424561708 [GeV] -Cell[11,21] 0.011512673124528 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.41152223445902 (GeV) +Cell[11,21] 0.027766571139078 [GeV] +Cell[10,21] 0.0064078467239823 [GeV] +Cell[10,22] 0.0010847318654253 [GeV] +Cell[10,20] 0.2655908200013 [GeV] +Cell[11,20] 0.11046997611211 [GeV] +Cell[11,19] 0.00032877426516693 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.41164872010706 (GeV) Source track ID 1763 (gamma,0.17556583448629[GeV]) at (-370.26451991326,336.01218027536,-37.7282643361) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[9,17] 0.0035819390744025 [GeV] -Cell[9,18] 0.16123129653083 [GeV] -Cell[7,33] 7.9397253245827e-05 [GeV] -Cell[8,3] 0.00054893464928872 [GeV] -Cell[9,19] 0.0032989266137723 [GeV] -Cell[10,18] 0.0011669939388606 [GeV] -Cell[10,17] 0.0033903503107739 [GeV] -### Total energy deposition in calorimeter by a source track in 7 cells : 0.17329783837117 (GeV) +Cell[9,18] 0.17173079264895 [GeV] +Cell[10,18] 0.00051099891 [GeV] +Cell[9,17] 0.0015991135539512 [GeV] +Cell[10,17] 0.0017249293733976 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.17556583448629 (GeV) Source track ID 1761 (gamma,0.41324573943274[GeV]) at (303.44001238969,-397.39672731534,976.47730315274) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[15,39] 0.00046792153949082 [GeV] -Cell[15,40] 0.10274497062415 [GeV] -Cell[15,41] 0.021868692468247 [GeV] -Cell[8,20] 0.00051099891 [GeV] -Cell[18,2] 0.0058454472607951 [GeV] -Cell[15,31] 0.00051099891 [GeV] -Cell[12,22] 0.00084503448562204 [GeV] -Cell[16,0] 0.00051099891 [GeV] -Cell[14,42] 0.0016472952650723 [GeV] -Cell[14,40] 0.23639134944301 [GeV] -Cell[16,19] 0.00022402117252345 [GeV] -Cell[14,41] 0.037315268900455 [GeV] -Cell[12,4] 0.00077798923328728 [GeV] -Cell[17,17] 0.00018671847378242 [GeV] -Cell[18,20] 0.00044843004454029 [GeV] -Cell[18,14] 0.0014800018459869 [GeV] -Cell[16,25] 0.00041672559847849 [GeV] -Cell[15,5] 0.00051099891 [GeV] -### Total energy deposition in calorimeter by a source track in 18 cells : 0.41270386199544 (GeV) +Cell[16,24] 0.00054927353663621 [GeV] +Cell[17,14] 0.00077749571195171 [GeV] +Cell[14,39] 4.4203311290403e-08 [GeV] +Cell[14,40] 0.00071662955555752 [GeV] +Cell[15,39] 0.00059683071484978 [GeV] +Cell[15,41] 0.040049771008628 [GeV] +Cell[14,41] 0.0015848900689986 [GeV] +Cell[15,40] 0.36218907810254 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.40646401290247 (GeV) Source track ID 1716 (mu-,0.2096842669961[GeV]) at (154.44467220785,-475.54899140531,-1362.8283554151) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[2,38] 0.045972695893648 [GeV] -Cell[3,39] 0.0008840682207192 [GeV] -Cell[3,38] 0.071007969576279 [GeV] -Cell[3,40] 0.00010630748336223 [GeV] -Cell[2,40] 3.0442236050021e-07 [GeV] -Cell[2,39] 2.6831840023078e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 6 cells : 0.11797161391477 (GeV) +Cell[2,38] 0.0064997349833384 [GeV] +Cell[2,40] 2.7108060351111e-07 [GeV] +Cell[2,39] 0.0054237863355844 [GeV] +Cell[3,38] 0.10969209896661 [GeV] +Cell[3,39] 0.001492562804797 [GeV] +Cell[2,37] 0.0036638992894052 [GeV] +Cell[4,8] 0.0014361824323494 [GeV] +### Total energy deposition in calorimeter by a source track in 7 cells : 0.12820853589269 (GeV) Source track ID 1695 (pi+,1.0811176603476[GeV]) at (389.57687181548,-313.41643375303,505.70089598324) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[15,40] 0.00074951471132401 [GeV] -Cell[15,41] 0.37187365460606 [GeV] -Cell[12,43] 0.00073007609992614 [GeV] -Cell[10,4] 0.00019035927186741 [GeV] -Cell[15,42] 0.0010727180837664 [GeV] -Cell[13,42] 0.2707246313418 [GeV] -Cell[14,42] 0.12758748343526 [GeV] -Cell[12,42] 0.11812007859867 [GeV] -Cell[13,41] 0.00049618902212319 [GeV] -Cell[14,40] 0.0008141720915828 [GeV] -Cell[16,40] 4.1596467781346e-10 [GeV] -Cell[16,41] 0.00023318108253113 [GeV] -Cell[14,41] 0.11306735259105 [GeV] -Cell[16,42] 1.9018348801524e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 14 cells : 1.0056784297007 (GeV) +Cell[8,8] 4.7904904931784e-11 [GeV] +Cell[9,10] 5.9762201999547e-06 [GeV] +Cell[9,9] 0.00015206412973168 [GeV] +Cell[9,8] 5.272159546621e-08 [GeV] +Cell[7,16] 3.3555857080501e-06 [GeV] +Cell[13,46] 6.2625499267597e-06 [GeV] +Cell[11,11] 0.00038642914249222 [GeV] +Cell[15,6] 0.00085814797505465 [GeV] +Cell[13,26] 0.00044380433844867 [GeV] +Cell[13,8] 1.5154364518821e-10 [GeV] +Cell[12,42] 0.5641715401391 [GeV] +Cell[13,25] 3.04930274649e-06 [GeV] +Cell[12,23] 0.00062778285501375 [GeV] +Cell[11,43] 0.0032355269814033 [GeV] +Cell[12,1] 2.0428371732123e-05 [GeV] +Cell[12,47] 2.1250694313721e-06 [GeV] +Cell[12,46] 1.6310719261924e-05 [GeV] +Cell[10,22] 0.005340820129823 [GeV] +Cell[10,44] 1.4830324507784e-05 [GeV] +Cell[11,46] 6.1538588965959e-08 [GeV] +Cell[11,40] 3.5771370137809e-05 [GeV] +Cell[9,32] 1.4241392840631e-05 [GeV] +Cell[11,45] 9.0086929209178e-05 [GeV] +Cell[15,44] 1.5862963249674e-05 [GeV] +Cell[4,3] 6.7900423346146e-07 [GeV] +Cell[4,2] 0.00018232185774559 [GeV] +Cell[9,42] 2.6187188923359e-06 [GeV] +Cell[6,9] 1.1221632565139e-05 [GeV] +Cell[5,9] 0.00046064716705166 [GeV] +Cell[2,35] 0.00096426612990908 [GeV] +Cell[5,10] 1.3316688769919e-05 [GeV] +Cell[6,27] 0.00242651014346 [GeV] +Cell[3,35] 3.0646333470941e-11 [GeV] +Cell[4,1] 6.7221549979877e-06 [GeV] +Cell[13,40] 2.9956814927232e-05 [GeV] +Cell[12,39] 3.34200387897e-09 [GeV] +Cell[12,8] 0.0027401746578463 [GeV] +Cell[12,7] 0.0022230469493132 [GeV] +Cell[11,0] 0.00027027443527652 [GeV] +Cell[12,45] 1.7165498547911e-08 [GeV] +Cell[12,44] 0.0027013960741485 [GeV] +Cell[11,44] 0.0012835529493456 [GeV] +Cell[13,42] 0.00028931180016306 [GeV] +Cell[13,41] 0.00033372449866363 [GeV] +Cell[12,0] 2.0645453187171e-06 [GeV] +Cell[12,43] 0.067513249042989 [GeV] +Cell[11,15] 0.00021719246962595 [GeV] +Cell[17,1] 5.6716395766784e-05 [GeV] +Cell[14,46] 0.00044683473502656 [GeV] +Cell[16,35] 6.4005437889136e-05 [GeV] +Cell[18,38] 6.7312808710085e-08 [GeV] +Cell[16,12] 0.0028451780405142 [GeV] +Cell[17,10] 6.6051946491825e-05 [GeV] +Cell[16,33] 0.00017758984008685 [GeV] +Cell[18,37] 0.0011807477113455 [GeV] +Cell[18,36] 1.6129275755929e-06 [GeV] +Cell[11,42] 0.0088284466575465 [GeV] +Cell[12,41] 0.13390936859379 [GeV] +Cell[13,23] 3.1141098588705e-12 [GeV] +Cell[16,9] 0.00031209972359386 [GeV] +Cell[16,8] 0.039739056607987 [GeV] +Cell[16,10] 0.00019574321015273 [GeV] +Cell[17,8] 6.6294203293182e-08 [GeV] +Cell[17,9] 1.2814615635079e-06 [GeV] +Cell[17,6] 0.0012387065662284 [GeV] +Cell[17,3] 4.348304355517e-08 [GeV] +Cell[15,41] 1.780916950338e-07 [GeV] +Cell[12,40] 0.0068864118501436 [GeV] +Cell[15,45] 1.623103916063e-05 [GeV] +Cell[17,39] 7.066733087413e-08 [GeV] +Cell[16,41] 0.0016344247563303 [GeV] +Cell[17,2] 0.00030330993487667 [GeV] +Cell[14,15] 7.0546792994719e-06 [GeV] +Cell[13,15] 0.0019629244989468 [GeV] +Cell[13,14] 0.00030098641711402 [GeV] +Cell[18,24] 8.4935454651713e-09 [GeV] +Cell[11,16] 0.0017636858406191 [GeV] +Cell[18,11] 2.9984647437232e-05 [GeV] +Cell[18,25] 7.9692345047988e-07 [GeV] +Cell[18,40] 2.3798204586001e-06 [GeV] +Cell[19,18] 4.3308778869687e-05 [GeV] +Cell[19,19] 2.4297297317389e-05 [GeV] +Cell[19,27] 0.00013710482858005 [GeV] +Cell[19,26] 0.0030848618490091 [GeV] +Cell[16,42] 6.0489110182971e-09 [GeV] +Cell[15,42] 0.00083872707841628 [GeV] +Cell[19,17] 1.908717819606e-05 [GeV] +Cell[13,16] 0.0045859990631273 [GeV] +Cell[13,24] 2.7690725278262e-07 [GeV] +Cell[18,39] 6.6262052587263e-07 [GeV] +Cell[2,36] 0.0038016628501586 [GeV] +### Total energy deposition in calorimeter by a source track in 91 cells : 0.87162485833254 (GeV) Source track ID 1692 (gamma,0.028595474656773[GeV]) at (328.18598341926,377.21871677733,-300.64103077359) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[8,6] 0.028595474656773 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.028595474656773 (GeV) +Cell[8,6] 0.028084475746773 [GeV] +Cell[7,47] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.028595474656773 (GeV) Source track ID 1693 (gamma,0.46372847760985[GeV]) at (-465.99474893438,181.24263837626,-913.38295231319) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[7,7] 0.00020346531674577 [GeV] -Cell[5,21] 0.37857215557888 [GeV] -Cell[5,18] 0.00045813963365909 [GeV] -Cell[5,19] 0.00051099891 [GeV] -Cell[1,0] 0.00069661764146459 [GeV] -Cell[2,2] 0.00071832918427289 [GeV] -Cell[4,27] 0.00017484846080556 [GeV] -Cell[4,21] 0.057912481194666 [GeV] -Cell[4,20] 0.0047322734063191 [GeV] -Cell[5,10] 0.00063840889577208 [GeV] -Cell[1,41] 0.001386795588436 [GeV] -Cell[5,20] 0.015628434163912 [GeV] -### Total energy deposition in calorimeter by a source track in 12 cells : 0.46163294797493 (GeV) +Cell[7,8] 0.00102199782 [GeV] +Cell[4,21] 0.0017165308454943 [GeV] +Cell[5,20] 0.014751933799394 [GeV] +Cell[5,21] 0.44066710109463 [GeV] +Cell[2,10] 0.00021789118600779 [GeV] +Cell[3,11] 0.00044160890873785 [GeV] +Cell[3,4] 0.0011773068608655 [GeV] +Cell[4,30] 0.0014213310520397 [GeV] +Cell[2,11] 0.00051099891 [GeV] +Cell[5,38] 0.00034492015545625 [GeV] +Cell[8,36] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 11 cells : 0.46278261954262 (GeV) Source track ID 1690 (gamma,0.21067608644927[GeV]) at (-247.62062804232,-434.3777440983,-1046.3395502888) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[1,45] 0.0011505763296099 [GeV] -Cell[4,33] 0.0008784250183363 [GeV] -Cell[4,32] 0.1638786518169 [GeV] -Cell[4,31] 0.023586533482525 [GeV] -Cell[2,22] 0.00044229300097866 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.18993647964835 (GeV) +Cell[4,32] 0.16111509524373 [GeV] +Cell[4,31] 0.04768863152778 [GeV] +Cell[4,33] 0.001872359677754 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.21067608644927 (GeV) Source track ID 1688 (gamma,0.06726801612498[GeV]) at (-461.11390425204,-193.32347841232,-562.35054581228) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[7,27] 0.023701693428726 [GeV] -Cell[6,28] 0.0056617386949488 [GeV] -Cell[7,26] 0.035017278263751 [GeV] -Cell[6,26] 0.0010995438442654 [GeV] -Cell[6,25] 0.0017877618932887 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.06726801612498 (GeV) +Cell[7,27] 0.041663021667013 [GeV] +Cell[7,26] 0.022412195567806 [GeV] +Cell[4,4] 0.00051099891 [GeV] +Cell[6,27] 0.0026817999801605 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.06726801612498 (GeV) Source track ID 1689 (gamma,1.2213291054873[GeV]) at (-495.81010258856,64.593669744992,-1525.2871324817) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[1,23] 0.035802284241364 [GeV] -Cell[2,38] 0.0028724661666959 [GeV] -Cell[4,32] 0.00055696156042529 [GeV] -Cell[6,38] 0.0014986275367431 [GeV] -Cell[5,42] 0.00046999397594441 [GeV] -Cell[9,23] 8.879853019381e-05 [GeV] -Cell[0,47] 0.0010256949178096 [GeV] -Cell[1,15] 0.00059761360183701 [GeV] -Cell[1,22] 0.0094738687505543 [GeV] -Cell[1,21] 0.00023430910503206 [GeV] -Cell[1,37] 0.0019159277720793 [GeV] -Cell[2,23] 0.93129374837089 [GeV] -Cell[2,22] 0.21828865310063 [GeV] -Cell[3,35] 0.00057151400167302 [GeV] -Cell[1,34] 0.00046015682584801 [GeV] -Cell[1,24] 0.00036322919885708 [GeV] -Cell[2,14] 0.00051099891 [GeV] -Cell[0,36] 0.00054320398062852 [GeV] -Cell[4,8] 0.00070018531395298 [GeV] -Cell[11,47] 0.00042620352197189 [GeV] -Cell[4,40] 0.00051099891 [GeV] -Cell[2,26] 3.1893452271097e-05 [GeV] -Cell[17,46] 0.00058857303425167 [GeV] -### Total energy deposition in calorimeter by a source track in 23 cells : 1.2088259047796 (GeV) +Cell[4,11] 0.00051099891 [GeV] +Cell[2,21] 0.0025753597102692 [GeV] +Cell[1,25] 0.0017382504377236 [GeV] +Cell[3,36] 0.0012314818892325 [GeV] +Cell[6,0] 0.0010372747792548 [GeV] +Cell[4,39] 0.0008923883999796 [GeV] +Cell[13,47] 0.00013746203640824 [GeV] +Cell[2,41] 0.0010160729592409 [GeV] +Cell[2,23] 0.81719388722696 [GeV] +Cell[4,6] 0.00026904169518157 [GeV] +Cell[1,44] 0.0038059164663668 [GeV] +Cell[1,24] 0.0056767384436682 [GeV] +Cell[1,21] 0.0012259771254902 [GeV] +Cell[1,23] 0.019248319815596 [GeV] +Cell[1,22] 0.018231933798394 [GeV] +Cell[0,4] 0.00072061953738736 [GeV] +Cell[2,3] 0.00051099891 [GeV] +Cell[6,38] 0.00040135099668897 [GeV] +Cell[0,8] 0.00056803192610285 [GeV] +Cell[1,7] 0.00051099891 [GeV] +Cell[2,5] 0.00066125473483079 [GeV] +Cell[0,36] 0.0006343909576523 [GeV] +Cell[0,0] 0.00067900484617546 [GeV] +Cell[0,42] 0.00052251975526863 [GeV] +Cell[3,45] 0.00077536207568639 [GeV] +Cell[1,5] 0.00051099891 [GeV] +Cell[1,26] 0.002599350915358 [GeV] +Cell[2,22] 0.29668582295973 [GeV] +Cell[2,32] 0.0009757452120438 [GeV] +Cell[1,11] 0.00051099891 [GeV] +Cell[2,1] 0.001658026963495 [GeV] +Cell[2,18] 0.00051099891 [GeV] +Cell[0,38] 0.00046924335344752 [GeV] +Cell[3,42] 0.001122286153759 [GeV] +Cell[3,39] 0.00063849894396931 [GeV] +Cell[2,37] 0.00071648797938254 [GeV] +Cell[3,46] 0.00051099891 [GeV] +Cell[0,44] 0.00044822459930542 [GeV] +Cell[2,24] 0.0002488051211515 [GeV] +Cell[4,45] 0.002010198335913 [GeV] +Cell[9,21] 0.00023017675980613 [GeV] +Cell[0,30] 0.00095106167693233 [GeV] +Cell[0,35] 0.00048006820325964 [GeV] +Cell[0,32] 0.00099713001855369 [GeV] +Cell[2,36] 0.0015951019626637 [GeV] +### Total energy deposition in calorimeter by a source track in 45 cells : 1.1946458611423 (GeV) Source track ID 99 (pi-,0.29342985017753[GeV]) at (-34.703052818987,-530.35410348335,-2000) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[0,27] 0.0027447842618701 [GeV] -Cell[8,5] 1.2983997223728e-06 [GeV] -Cell[3,29] 0.00030162210638719 [GeV] -Cell[3,32] 0.0048993352010694 [GeV] -Cell[5,43] 0.0014710493488992 [GeV] -Cell[5,42] 5.3618587582605e-05 [GeV] -Cell[8,6] 0.00027604066456911 [GeV] -Cell[9,6] 3.8587050803471e-06 [GeV] -Cell[9,4] 9.2951306432951e-06 [GeV] -Cell[3,47] 0.0027985969625395 [GeV] -Cell[3,46] 0.00072036907035975 [GeV] -Cell[0,24] 0.00073589957509648 [GeV] -Cell[1,27] 0.0043549505910394 [GeV] -Cell[8,4] 1.4752953691641e-05 [GeV] -Cell[1,26] 3.563676259364e-05 [GeV] -Cell[1,36] 1.2929606632383e-05 [GeV] -Cell[4,2] 1.2811577442335e-05 [GeV] -Cell[3,28] 2.6953834024539e-05 [GeV] -Cell[3,30] 2.3189932107925e-10 [GeV] -Cell[0,35] 0.041235507107369 [GeV] -Cell[0,26] 0.0065213705182039 [GeV] -Cell[1,35] 0.0024506962758913 [GeV] -Cell[1,34] 2.8590637009529e-07 [GeV] -Cell[3,31] 2.6854261637936e-05 [GeV] -Cell[0,34] 0.076926703057235 [GeV] -Cell[0,29] 0.00026450615996339 [GeV] -Cell[0,28] 0.0052944927295379 [GeV] -Cell[0,30] 2.878248888112e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 28 cells : 0.15122300207623 (GeV) +Cell[2,21] 1.5104888007045e-08 [GeV] +Cell[1,33] 0.00077436838058958 [GeV] +Cell[4,41] 6.4775230421219e-06 [GeV] +Cell[0,33] 0.0020915603117092 [GeV] +Cell[1,34] 0.0019278135652671 [GeV] +Cell[1,35] 6.0068177218909e-05 [GeV] +Cell[1,21] 2.7538447170627e-08 [GeV] +Cell[1,20] 4.4340423198719e-06 [GeV] +Cell[0,18] 0.0021941997882499 [GeV] +Cell[1,19] 1.4710079402676e-06 [GeV] +Cell[1,18] 0.0045819191335294 [GeV] +Cell[0,36] 0.0013574120913573 [GeV] +Cell[2,19] 0.00010997121641788 [GeV] +Cell[4,30] 4.0992675640155e-06 [GeV] +Cell[5,42] 9.0801804035436e-06 [GeV] +Cell[2,20] 9.1164601876244e-05 [GeV] +Cell[2,2] 8.2904004100783e-05 [GeV] +Cell[1,14] 1.7542775144875e-05 [GeV] +Cell[1,13] 5.8935596825904e-08 [GeV] +Cell[1,15] 6.7220049337493e-05 [GeV] +Cell[1,37] 1.7295297711939e-05 [GeV] +Cell[0,41] 1.4616148604546e-05 [GeV] +Cell[1,43] 0.00077291169103898 [GeV] +Cell[2,14] 2.5201006792486e-10 [GeV] +Cell[0,35] 0.041207391334018 [GeV] +Cell[0,34] 0.14597546062163 [GeV] +Cell[1,36] 1.3102826113141e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 27 cells : 0.20138258586613 (GeV) Source track ID 103 (gamma,0.0014724843787097[GeV]) at (495.2894231023,68.471799764533,-1473.5397825067) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[2,1] 0.0014724843787097 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.0014724843787097 (GeV) +Cell[2,25] 0.00026543415122196 [GeV] +Cell[2,1] 0.0012070502274878 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.0014724843787097 (GeV) >>> Summary of Event 0 Tracker hits -------------------------------------------------------------- -1815 hits are stored in RE01TrackerHitsCollection. +1463 hits are stored in RE01TrackerHitsCollection. Calorimeter hits -------------------------------------------------------------- -913 hits are stored in RE01CalorimeterHitsCollection. - Total energy deposition in calorimeter : 153.93032554005 (GeV) +918 hits are stored in RE01CalorimeterHitsCollection. + Total energy deposition in calorimeter : 150.69815855278 (GeV) Trajectories in tracker -------------------------------------------------------------- @@ -5603,9 +5300,3 @@ Primary particles -------------------------------------------------------------- Primary vertex (0,0,0) at t = 0 [ns] Graphics systems deleted. Visualization Manager deleting... -G4Integration Driver Stats: #QuickAdvance 5968 - #AccurateAdvance 22 #good steps 43 #bad steps 0 -G4ChordFinder statistics report: - No trials: 5946 No Calls: 5946 Max-trial: 1 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 359518 No Calls: 342068 Max-trial: 8 diff --git a/examples/extended/runAndEvent/RE02/run.out b/examples/extended/runAndEvent/RE02/run.out index 09a33b449a..f6c4b72644 100644 --- a/examples/extended/runAndEvent/RE02/run.out +++ b/examples/extended/runAndEvent/RE02/run.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1187,7 +1187,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.000000s Real=0.002318s Sys=0.000000s + User=0.000000s Real=0.002213s Sys=0.000000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 10 PrimitiveScorer RUN PhantomSD,protonEDep diff --git a/examples/extended/runAndEvent/RE02/run3.out b/examples/extended/runAndEvent/RE02/run3.out index d93e66729b..06f3427e03 100644 --- a/examples/extended/runAndEvent/RE02/run3.out +++ b/examples/extended/runAndEvent/RE02/run3.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -963,7 +963,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 10000 - User=12.000000s Real=12.113340s Sys=0.030000s + User=13.050000s Real=13.188433s Sys=0.040000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 50896 PrimitiveScorer RUN PhantomSD,protonEDep diff --git a/examples/extended/runAndEvent/RE02/run4.out b/examples/extended/runAndEvent/RE02/run4.out index ea6211ee17..8c524ff19a 100644 --- a/examples/extended/runAndEvent/RE02/run4.out +++ b/examples/extended/runAndEvent/RE02/run4.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -965,7 +965,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 10000 - User=0.170000s Real=0.180699s Sys=0.000000s + User=0.180000s Real=0.177634s Sys=0.000000s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 85 PrimitiveScorer RUN PhantomSD,protonEDep diff --git a/examples/extended/runAndEvent/RE04/exampleRE04.out b/examples/extended/runAndEvent/RE04/exampleRE04.out index 6295ac500a..a4eb11f5ba 100644 --- a/examples/extended/runAndEvent/RE04/exampleRE04.out +++ b/examples/extended/runAndEvent/RE04/exampleRE04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.out b/examples/extended/runAndEvent/RE05/exampleRE05.out index 15125ec7a8..973d40d944 100644 --- a/examples/extended/runAndEvent/RE05/exampleRE05.out +++ b/examples/extended/runAndEvent/RE05/exampleRE05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -819,8 +819,8 @@ See commands in /vis/modeling/trajectories/ for other options. G4HEPEvtInterface - reading 484 HEPEvt particles from pythia_event.data. >>> Event 0 59 hits are stored in RE05TrackerHitsCollection. - 55 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.0292944107239 (GeV) + 52 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.65420211946 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data. >>> Event 1 @@ -838,19 +838,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.52761370039897 (GeV) + Total energy deposition in calorimeter : 0.51782953875026 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 945 HEPEvt particles from pythia_event.data. >>> Event 4 - 96 hits are stored in RE05TrackerHitsCollection. - 69 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 13.392121975075 (GeV) + 103 hits are stored in RE05TrackerHitsCollection. + 65 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 9.9066449187363 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 837 HEPEvt particles from pythia_event.data. >>> Event 5 - 42 hits are stored in RE05TrackerHitsCollection. + 52 hits are stored in RE05TrackerHitsCollection. 7 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.9037253278377 (GeV) + Total energy deposition in calorimeter : 2.9150506676619 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data. >>> Event 6 @@ -860,26 +860,26 @@ G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 627 HEPEvt particles from pythia_event.data. >>> Event 7 - 35 hits are stored in RE05TrackerHitsCollection. + 34 hits are stored in RE05TrackerHitsCollection. 30 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.712897793788 (GeV) + Total energy deposition in calorimeter : 6.2254016365643 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 682 HEPEvt particles from pythia_event.data. >>> Event 8 - 49 hits are stored in RE05TrackerHitsCollection. - 49 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 8.6164979229249 (GeV) + 79 hits are stored in RE05TrackerHitsCollection. + 64 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 13.085833766909 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 330 HEPEvt particles from pythia_event.data. >>> Event 9 - 12 hits are stored in RE05TrackerHitsCollection. - 24 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.2232230686275 (GeV) + 16 hits are stored in RE05TrackerHitsCollection. + 25 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.5902611947368 (GeV) 1 hits are stored in RE05MuonHitsCollection. Run terminated. Run Summary Number of events processed : 10 - User=2.310000s Real=2.479823s Sys=0.030000s + User=1.950000s Real=2.087637s Sys=0.020000s # Graphics systems deleted. Visualization Manager deleting... @@ -893,16 +893,10 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -G4Integration Driver Stats: #QuickAdvance 50 - #AccurateAdvance 0 #good steps 0 #bad steps 0 -G4ChordFinder statistics report: - No trials: 50 No Calls: 50 Max-trial: 1 - Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98 -G4ChordFinder statistics report: - No trials: 45342 No Calls: 44637 Max-trial: 6 TransportationManager deleted. -Total navigation history collections cleaned: 414 +Total navigation history collections cleaned: 419 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.678 MB +Pool ID '20G4NavigationLevelRep', size : 0.685 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.13 MB @@ -910,18 +904,18 @@ Pool ID '16G4HEPEvtParticle', size : 0.0221 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB Pool ID '16G4HitsCollection', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.689 MB +Pool ID '17G4DynamicParticle', size : 0.684 MB Pool ID '7G4Track', size : 1.17 MB Pool ID '18G4TouchableHistory', size : 0.05 MB Pool ID '15G4CountedObjectIvE', size : 0.00673 MB Pool ID '12G4Trajectory', size : 0.0279 MB -Pool ID '17G4TrajectoryPoint', size : 0.158 MB -Pool ID '14RE05TrackerHit', size : 0.00385 MB +Pool ID '17G4TrajectoryPoint', size : 0.153 MB +Pool ID '14RE05TrackerHit', size : 0.00481 MB Pool ID '18RE05CalorimeterHit', size : 0.00961 MB Pool ID '11RE05MuonHit', size : 0.000961 MB Pool ID '21G4TrajectoryContainer', size : 0.000961 MB -Pool ID '10G4Fragment', size : 0.00673 MB -Pool ID '17G4ReactionProduct', size : 0.00961 MB +Pool ID '10G4Fragment', size : 0.00577 MB +Pool ID '17G4ReactionProduct', size : 0.0115 MB Number of memory pools allocated: 20 of which, static: 0 Dynamic pools deleted: 20 / Total memory freed: 3 MB ============================================================ diff --git a/examples/extended/runAndEvent/RE06/exampleRE06.out b/examples/extended/runAndEvent/RE06/exampleRE06.out index c8e7f92554..b300a43e91 100644 --- a/examples/extended/runAndEvent/RE06/exampleRE06.out +++ b/examples/extended/runAndEvent/RE06/exampleRE06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -931,7 +931,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 10 - User=4.780000s Real=6.211145s Sys=1.360000s + User=5.170000s Real=6.728280s Sys=1.340000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -1579,7 +1579,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=1.260000s Real=1.651948s Sys=0.380000s + User=1.400000s Real=1.969286s Sys=0.370000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -2258,7 +2258,7 @@ Index : 12 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.300000s Real=0.379842s Sys=0.080000s + User=0.310000s Real=0.393709s Sys=0.080000s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -2966,7 +2966,7 @@ Index : 12 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.650000s Real=0.839214s Sys=0.180000s + User=0.670000s Real=0.858924s Sys=0.180000s ############################################################ Run Summary - Number of events : 10 ############################################################ diff --git a/examples/extended/visualization/userVisAction/History b/examples/extended/visualization/userVisAction/History index 9bf2c58d10..8f4c4f5691 100644 --- a/examples/extended/visualization/userVisAction/History +++ b/examples/extended/visualization/userVisAction/History @@ -15,6 +15,9 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +24th January 2020 Anna Zaborowska (exam-ext-vis-UVA-V10-05-00) +- Fix suggested in macros command /run/numberOfThreads + 3rd May 2017 John Allison (exam-ext-vis-UVA-V10-03-04) - Copied exampleB1.in to userVisAction.in. All macros now include /run/initialize. diff --git a/examples/extended/visualization/userVisAction/run1.mac b/examples/extended/visualization/userVisAction/run1.mac index 20ec8a3f69..8eb85c101b 100644 --- a/examples/extended/visualization/userVisAction/run1.mac +++ b/examples/extended/visualization/userVisAction/run1.mac @@ -4,7 +4,7 @@ # or interactively: Idle> /control/execute run1.mac # # Change the default number of workers (in multi-threading mode) -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 # # Initialize kernel /run/initialize diff --git a/examples/extended/visualization/userVisAction/run1.out b/examples/extended/visualization/userVisAction/run1.out index e806e9dda9..8a31b78283 100644 --- a/examples/extended/visualization/userVisAction/run1.out +++ b/examples/extended/visualization/userVisAction/run1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -1015,7 +1015,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 5 - User=0.010000s Real=0.001995s Sys=0.000000s + User=0.010000s Real=0.001898s Sys=0.000000s --------------------End of Global Run----------------------- The run consists of 5 gamma of 6 MeV @@ -1186,7 +1186,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 1 - User=0.000000s Real=0.000983s Sys=0.000000s + User=0.000000s Real=0.000816s Sys=0.000000s --------------------End of Global Run----------------------- The run consists of 1 proton of 210 MeV diff --git a/examples/extended/visualization/userVisAction/run2.mac b/examples/extended/visualization/userVisAction/run2.mac index 8da9e15419..76b9b20ad5 100644 --- a/examples/extended/visualization/userVisAction/run2.mac +++ b/examples/extended/visualization/userVisAction/run2.mac @@ -3,7 +3,7 @@ # To be run preferably in batch, without graphics: # % exampleB1 run2.mac # -#/run/numberOfWorkers 4 +#/run/numberOfThreads 4 /run/initialize # /control/verbose 2 diff --git a/examples/extended/visualization/userVisAction/run2.out b/examples/extended/visualization/userVisAction/run2.out index 8be12c4968..bc92246bc4 100644 --- a/examples/extended/visualization/userVisAction/run2.out +++ b/examples/extended/visualization/userVisAction/run2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 @@ -822,7 +822,7 @@ See commands in /vis/modeling/trajectories/ for other options. Run terminated. Run Summary Number of events processed : 1000 - User=0.040000s Real=0.035670s Sys=0.000000s + User=0.030000s Real=0.055962s Sys=0.000000s --------------------End of Global Run----------------------- The run consists of 1000 gamma of 6 MeV @@ -897,7 +897,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.280000s Real=0.285018s Sys=0.000000s + User=0.290000s Real=0.355726s Sys=0.000000s --------------------End of Global Run----------------------- The run consists of 1000 proton of 210 MeV diff --git a/examples/extended/visualization/userVisAction/userVisAction.out b/examples/extended/visualization/userVisAction/userVisAction.out index 08b05bbdad..41522e82cf 100644 --- a/examples/extended/visualization/userVisAction/userVisAction.out +++ b/examples/extended/visualization/userVisAction/userVisAction.out @@ -4,7 +4,7 @@ ############################################ ************************************************************** - Geant4 version Name: geant4-10-06-ref-00 (6-December-2019) + Geant4 version Name: geant4-10-06-patch-01 (14-February-2020) Copyright : Geant4 Collaboration References : NIM A 506 (2003), 250-303 : IEEE-TNS 53 (2006), 270-278 diff --git a/source/GNUmakefile b/source/GNUmakefile index a1fd463b88..555764c714 100644 --- a/source/GNUmakefile +++ b/source/GNUmakefile @@ -167,7 +167,7 @@ endif banner: @$(ECHO) "*************************************************************" - @$(ECHO) " Installation Geant4 version geant4-10-06 " + @$(ECHO) " Installation Geant4 version geant4-10-06-patch-01 " @$(ECHO) " Copyright (C) 1994-2020 Geant4 Collaboration " @$(ECHO) "*************************************************************" diff --git a/source/analysis/xml/GNUmakefile b/source/analysis/xml/GNUmakefile index 477363a5b3..5ef18ef8bf 100644 --- a/source/analysis/xml/GNUmakefile +++ b/source/analysis/xml/GNUmakefile @@ -10,9 +10,6 @@ endif include $(G4INSTALL)/config/architecture.gmk -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif ifdef G4LIB_BUILD_EXPAT CPPFLAGS += -I$(G4BASE)/externals/expat/include endif diff --git a/source/digits_hits/utils/History b/source/digits_hits/utils/History index 95427f9b96..5b56588123 100644 --- a/source/digits_hits/utils/History +++ b/source/digits_hits/utils/History @@ -16,6 +16,15 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 12th, 2020 T.Aso (detutils-V10-05-06) +- In G4ScoreQuantityMessenger, changed SetDefaultUnit() in trackLength + scorer to SetDefaultValue() to support various unit category. + Addressing problem report #2216. + +December 29th, 2019 M.Asai (detutils-V10-05-05) +- G4ScoringManager, G4VScoreWriter, G4ScoringMessenger: + Add missing setter/getter functions. + October 23rd, 2019 M.Asai (detutils-V10-05-04) - Revising utils/src/G4ScoringQuantiryMessenger.cc to better handle ther error cases. diff --git a/source/digits_hits/utils/include/G4ScoringManager.hh b/source/digits_hits/utils/include/G4ScoringManager.hh index c4290535bc..906829af0f 100644 --- a/source/digits_hits/utils/include/G4ScoringManager.hh +++ b/source/digits_hits/utils/include/G4ScoringManager.hh @@ -153,6 +153,18 @@ class G4ScoringManager if(writer) writer->SetVerboseLevel(verboseLevel); } // Replace score writers. + + public: + inline void SetFactor(G4double val=1.0) + { if(writer) writer->SetFactor(val); } + inline G4double GetFactor() const + { + if(writer) + { return writer->GetFactor(); } + else + { return -1.0; } + } + private: //Disable copy constructor and assignement operator G4ScoringManager(const G4ScoringManager&); diff --git a/source/digits_hits/utils/include/G4ScoringMessenger.hh b/source/digits_hits/utils/include/G4ScoringMessenger.hh index 2d44a36adf..07c4d0cce1 100644 --- a/source/digits_hits/utils/include/G4ScoringMessenger.hh +++ b/source/digits_hits/utils/include/G4ScoringMessenger.hh @@ -129,6 +129,8 @@ class G4ScoringMessenger: public G4UImessenger // Dump scoring result to file G4UIcommand * dumpQtyToFileCmd; G4UIcommand * dumpAllQtsToFileCmd; + G4UIcommand * dumpQtyWithFactorCmd; + G4UIcommand * dumpAllQtsWithFactorCmd; // }; diff --git a/source/digits_hits/utils/include/G4VScoreWriter.hh b/source/digits_hits/utils/include/G4VScoreWriter.hh index 7e23086d92..12902d61ce 100644 --- a/source/digits_hits/utils/include/G4VScoreWriter.hh +++ b/source/digits_hits/utils/include/G4VScoreWriter.hh @@ -55,9 +55,9 @@ public: // set a socring mesh to retrieve its quantities void SetScoringMesh(G4VScoringMesh * sm); // set a verbose level - inline void SetVerboseLevel(G4int vl) { - verboseLevel = vl; - } + inline void SetVerboseLevel(G4int vl) { verboseLevel = vl; } + inline void SetFactor(G4double val=1.0) { fact = val; } + inline G4double GetFactor() const { return fact; } protected: // get an index from (x,y,z) @@ -67,6 +67,7 @@ protected: G4int fNMeshSegments[3]; // number of segments of the mesh G4VScoringMesh * fScoringMesh; G4int verboseLevel; + G4double fact; }; diff --git a/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc b/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc index f0f0f47444..eeb405dd88 100644 --- a/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc +++ b/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc @@ -33,7 +33,8 @@ // 29-Mar-2013 T.Aso Support weighted options in the nOfTrack command. // Support a boundary flag option in the nOfStep command // for skipping stepLength=0 steps. -// +// 13-Feb-2020 T.Aso Change SetDefaultUnit() in trackLength scorer to +// SetDefaultValue() to support various unit category. // --------------------------------------------------------------------- #include "G4ScoreQuantityMessenger.hh" @@ -205,7 +206,7 @@ void G4ScoreQuantityMessenger::QuantityCommands() param->SetDefaultValue("false"); qTrackLengthCmd->SetParameter(param); param = new G4UIparameter("unit",'s',true); - param->SetDefaultUnit("mm"); + param->SetDefaultValue("mm"); qTrackLengthCmd->SetParameter(param); // qPassCellCurrCmd = new G4UIcommand("/score/quantity/passageCellCurrent",this); diff --git a/source/digits_hits/utils/src/G4ScoringMessenger.cc b/source/digits_hits/utils/src/G4ScoringMessenger.cc index c5ceecab86..bc9da3c2d4 100644 --- a/source/digits_hits/utils/src/G4ScoringMessenger.cc +++ b/source/digits_hits/utils/src/G4ScoringMessenger.cc @@ -287,6 +287,22 @@ G4ScoringMessenger::G4ScoringMessenger(G4ScoringManager* SManager) dumpQtyToFileCmd->SetParameter(param); dumpQtyToFileCmd->SetToBeBroadcasted(false); + dumpQtyWithFactorCmd = new G4UIcommand("/score/dumpQuantityWithFactor", this); + dumpQtyWithFactorCmd->SetGuidance("Dump one scored quantity to file."); + dumpQtyWithFactorCmd->SetGuidance("Each value is multiplied by the specified factor."); + param = new G4UIparameter("meshName", 's', false); + dumpQtyWithFactorCmd->SetParameter(param); + param = new G4UIparameter("psName", 's', false); + dumpQtyWithFactorCmd->SetParameter(param); + param = new G4UIparameter("fileName", 's', false); + dumpQtyWithFactorCmd->SetParameter(param); + param = new G4UIparameter("factor", 'd', false); + param->SetParameterRange("factor>0."); + dumpQtyWithFactorCmd->SetParameter(param); + param = new G4UIparameter("option", 's', true); + dumpQtyWithFactorCmd->SetParameter(param); + dumpQtyWithFactorCmd->SetToBeBroadcasted(false); + // Dump all scored quantities dumpAllQtsToFileCmd = new G4UIcommand("/score/dumpAllQuantitiesToFile", this); dumpAllQtsToFileCmd->SetGuidance("Dump all quantities of the mesh to file."); @@ -298,6 +314,20 @@ G4ScoringMessenger::G4ScoringMessenger(G4ScoringManager* SManager) dumpAllQtsToFileCmd->SetParameter(param); dumpAllQtsToFileCmd->SetToBeBroadcasted(false); + dumpAllQtsWithFactorCmd = new G4UIcommand("/score/dumpAllQuantitiesWithFactor", this); + dumpAllQtsWithFactorCmd->SetGuidance("Dump all quantities of the mesh to file."); + dumpAllQtsWithFactorCmd->SetGuidance("Each value is multiplied by the specified factor."); + param = new G4UIparameter("meshName", 's', false); + dumpAllQtsWithFactorCmd->SetParameter(param); + param = new G4UIparameter("fileName", 's', false); + dumpAllQtsWithFactorCmd->SetParameter(param); + param = new G4UIparameter("factor", 'd', false); + param->SetParameterRange("factor>0."); + dumpAllQtsWithFactorCmd->SetParameter(param); + param = new G4UIparameter("option", 's', true); + dumpAllQtsWithFactorCmd->SetParameter(param); + dumpAllQtsWithFactorCmd->SetToBeBroadcasted(false); + } G4ScoringMessenger::~G4ScoringMessenger() @@ -340,8 +370,10 @@ G4ScoringMessenger::~G4ScoringMessenger() delete floatMinMaxCmd; delete colorMapMinMaxCmd; delete colorMapDir; - delete dumpQtyToFileCmd; + delete dumpQtyWithFactorCmd; + delete dumpQtyWithFactorCmd; delete dumpAllQtsToFileCmd; + delete dumpAllQtsWithFactorCmd; // delete scoreDir; } @@ -383,13 +415,64 @@ void G4ScoringMessenger::SetNewValue(G4UIcommand * command,G4String newVal) G4String psName = next(); G4String fileName = next(); G4String option = next("\n"); + auto mesh = fSMan->FindMesh(meshName); + if(!mesh) + { + G4ExceptionDescription ed; + ed << "Mesh name <" << meshName << "> is not found. Command ignored."; + command->CommandFailed(ed); + return; + } fSMan->DumpQuantityToFile(meshName, psName, fileName, option); + } else if(command==dumpQtyWithFactorCmd) { + G4Tokenizer next(newVal); + G4String meshName = next(); + G4String psName = next(); + G4String fileName = next(); + G4double fac = StoD(next()); + G4String option = next("\n"); + auto mesh = fSMan->FindMesh(meshName); + if(!mesh) + { + G4ExceptionDescription ed; + ed << "Mesh name <" << meshName << "> is not found. Command ignored."; + command->CommandFailed(ed); + return; + } + fSMan->SetFactor(fac); + fSMan->DumpQuantityToFile(meshName, psName, fileName, option); + fSMan->SetFactor(1.0); } else if(command==dumpAllQtsToFileCmd) { G4Tokenizer next(newVal); G4String meshName = next(); G4String fileName = next(); G4String option = next("\n"); + auto mesh = fSMan->FindMesh(meshName); + if(!mesh) + { + G4ExceptionDescription ed; + ed << "Mesh name <" << meshName << "> is not found. Command ignored."; + command->CommandFailed(ed); + return; + } fSMan->DumpAllQuantitiesToFile(meshName, fileName, option); + } else if(command==dumpAllQtsWithFactorCmd) { + G4Tokenizer next(newVal); + G4String meshName = next(); + G4String fileName = next(); + G4double fac = StoD(next()); + G4String option = next("\n"); + auto mesh = fSMan->FindMesh(meshName); + if(!mesh) + { + G4ExceptionDescription ed; + ed << "Mesh name <" << meshName << "> is not found. Command ignored."; + command->CommandFailed(ed); + return; + } + fSMan->SetFactor(fac); + fSMan->DumpAllQuantitiesToFile(meshName, fileName, option); + fSMan->SetFactor(1.0); } else if(command==verboseCmd) { fSMan->SetVerboseLevel(verboseCmd->GetNewIntValue(newVal)); } else if(command==meshBoxCreateCmd) { diff --git a/source/digits_hits/utils/src/G4VScoreWriter.cc b/source/digits_hits/utils/src/G4VScoreWriter.cc index 996cdd92c5..b01a91102e 100644 --- a/source/digits_hits/utils/src/G4VScoreWriter.cc +++ b/source/digits_hits/utils/src/G4VScoreWriter.cc @@ -37,7 +37,8 @@ #include G4VScoreWriter::G4VScoreWriter() - : fScoringMesh(nullptr), verboseLevel(0) { + : fScoringMesh(nullptr), verboseLevel(0), fact(1.0) +{ fNMeshSegments[0] = fNMeshSegments[1] = fNMeshSegments[2] = 0; } @@ -90,7 +91,8 @@ void G4VScoreWriter::DumpQuantityToFile(const G4String& psName, std::map * score = msMapItr->second->GetMap(); ofile << "# primitive scorer name: " << msMapItr->first << std::endl; - + if(fact!=1.0) + { ofile << "# multiplied factor : " << fact << std::endl; } G4double unitValue = fScoringMesh->GetPSUnitValue(psName); G4String unit = fScoringMesh->GetPSUnit(psName); @@ -126,8 +128,8 @@ void G4VScoreWriter::DumpQuantityToFile(const G4String& psName, if(value == score->end()) { ofile << 0. << "," << 0. << "," << 0; } else { - ofile << (value->second->sum_wx())/unitValue << "," - << (value->second->sum_wx2())/unitValue/unitValue << "," + ofile << (value->second->sum_wx())/unitValue*fact << "," + << (value->second->sum_wx2())/unitValue/unitValue*fact*fact << "," << value->second->n(); } @@ -172,6 +174,8 @@ void G4VScoreWriter::DumpAllQuantitiesToFile(const G4String& fileName, return; } ofile << "# mesh name: " << fScoringMesh->GetWorldName() << G4endl; + if(fact!=1.0) + { ofile << "# multiplied factor : " << fact << std::endl; } // retrieve the map using MeshScoreMap = G4VScoringMesh::MeshScoreMap; @@ -220,8 +224,8 @@ void G4VScoreWriter::DumpAllQuantitiesToFile(const G4String& fileName, if(value == score->end()) { ofile << 0. << "," << 0. << "," << 0; } else { - ofile << (value->second->sum_wx())/unitValue << "," - << (value->second->sum_wx2())/unitValue/unitValue << "," + ofile << (value->second->sum_wx())/unitValue*fact << "," + << (value->second->sum_wx2())/unitValue/unitValue*fact*fact << "," << value->second->n(); } diff --git a/source/geometry/magneticfield/History b/source/geometry/magneticfield/History index e0a6ee5915..d901ca2492 100644 --- a/source/geometry/magneticfield/History +++ b/source/geometry/magneticfield/History @@ -15,6 +15,12 @@ committal in the CVS repository ! ---------------------------------------------------------- * Reverse chronological order (last date on top), please * ---------------------------------------------------------- + +January 13, 2020 G.Cosmo - field-V10-05-18 +------------------------ +- Turn off verbosity flags by default in G4IntegratorDriver, + G4InterpolationDriver and G4MagIntegratorDriver. + November 14, 2019 J.Apostolakis - field-V10-05-17 ------------------------------- - Added method / attribute to G4VIntegrationDriver DoesReIntegrate() diff --git a/source/geometry/magneticfield/include/G4IntegrationDriver.hh b/source/geometry/magneticfield/include/G4IntegrationDriver.hh index 7f357dbd85..2e371db570 100644 --- a/source/geometry/magneticfield/include/G4IntegrationDriver.hh +++ b/source/geometry/magneticfield/include/G4IntegrationDriver.hh @@ -53,7 +53,7 @@ class G4IntegrationDriver : public G4RKIntegrationDriver, G4IntegrationDriver( G4double hminimum, T* stepper, G4int numberOfComponents = 6, - G4int statisticsVerbosity = 1 ); + G4int statisticsVerbosity = 0 ); virtual ~G4IntegrationDriver() override; diff --git a/source/geometry/magneticfield/include/G4InterpolationDriver.hh b/source/geometry/magneticfield/include/G4InterpolationDriver.hh index b5611c7e32..46a22f6128 100644 --- a/source/geometry/magneticfield/include/G4InterpolationDriver.hh +++ b/source/geometry/magneticfield/include/G4InterpolationDriver.hh @@ -51,7 +51,7 @@ class G4InterpolationDriver : public G4RKIntegrationDriver G4InterpolationDriver(G4double hminimum, T* stepper, G4int numberOfComponents = 6, - G4int statisticsVerbosity = 1); + G4int statisticsVerbosity = 0); virtual ~G4InterpolationDriver() override; diff --git a/source/geometry/magneticfield/include/G4MagIntegratorDriver.hh b/source/geometry/magneticfield/include/G4MagIntegratorDriver.hh index 11d3c30fc1..96097307c0 100644 --- a/source/geometry/magneticfield/include/G4MagIntegratorDriver.hh +++ b/source/geometry/magneticfield/include/G4MagIntegratorDriver.hh @@ -49,7 +49,7 @@ class G4MagInt_Driver : public G4VIntegrationDriver, G4MagInt_Driver(G4double hminimum, G4MagIntegratorStepper* pItsStepper, G4int numberOfComponents = 6, - G4int statisticsVerbosity = 1); + G4int statisticsVerbosity = 0); virtual ~G4MagInt_Driver() override; // Constructor, destructor. diff --git a/source/geometry/navigation/History b/source/geometry/navigation/History index bd90963cef..28e55ff430 100644 --- a/source/geometry/navigation/History +++ b/source/geometry/navigation/History @@ -16,6 +16,11 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 5, 2020 - P.Arce (geomnav-V10-05-20) +------------------------- +- Fixed problem report #2196. + Avoid looping infinitely by pushing N times with increasing step size. + November 29, 2019 - J.Apostolakis (geomnav-V10-05-19) --------------------------------- - Added method to PropagatorInField to Get/Set new parameter that diff --git a/source/geometry/navigation/include/G4RegularNavigation.hh b/source/geometry/navigation/include/G4RegularNavigation.hh index 5c49189252..a5440468a6 100644 --- a/source/geometry/navigation/include/G4RegularNavigation.hh +++ b/source/geometry/navigation/include/G4RegularNavigation.hh @@ -32,7 +32,7 @@ // navigation does not stop at the surface // History: -// - Created: P.Arce, May 2007 +// - Created. P.Arce, May 2007 // -------------------------------------------------------------------- #ifndef G4RegularNavigation_HH #define G4RegularNavigation_HH @@ -122,6 +122,21 @@ class G4RegularNavigation G4NormalNavigation* fnormalNav = nullptr; G4double kCarTolerance; + G4double fMinStep; + + G4bool fLastStepWasZero; + // Whether the last ComputeStep moved Zero. Used to check for edges. + G4int fNumberZeroSteps; + // Number of preceding moves that were Zero. Reset to 0 after finite step + G4int fActionThreshold_NoZeroSteps; + // After this many failed/zero steps, act (push etc) + G4int fAbandonThreshold_NoZeroSteps; + // After this many failed/zero steps, abandon track + G4int fNoStepsAllowed; + // Maximum number of steps a track can travel skipping voxels + // (if there are more, track is assumed to be stuck and it is killed) + G4bool fWarnPush; + // Send warning message that a stuck particle has been pushed }; #endif diff --git a/source/geometry/navigation/src/G4RegularNavigation.cc b/source/geometry/navigation/src/G4RegularNavigation.cc index 01716b4e23..c391729b6f 100644 --- a/source/geometry/navigation/src/G4RegularNavigation.cc +++ b/source/geometry/navigation/src/G4RegularNavigation.cc @@ -26,6 +26,7 @@ // class G4RegularNavigation implementation // // Author: Pedro Arce, May 2007 +// // -------------------------------------------------------------------- #include "G4RegularNavigation.hh" @@ -41,6 +42,12 @@ G4RegularNavigation::G4RegularNavigation() { kCarTolerance = G4GeometryTolerance::GetInstance()->GetSurfaceTolerance(); + fMinStep = 101*kCarTolerance; + + fActionThreshold_NoZeroSteps = 2; + fAbandonThreshold_NoZeroSteps = 25; + fNoStepsAllowed = 10000; + fWarnPush = true; } @@ -71,7 +78,7 @@ G4double G4RegularNavigation:: // problems would make this method to be called G4ThreeVector globalPoint = - history.GetTopTransform().InverseTransformPoint(localPoint); + history.GetTopTransform().InverseTransformPoint(localPoint); G4ThreeVector globalDirection = history.GetTopTransform().InverseTransformAxis(localDirection); @@ -156,7 +163,8 @@ G4double G4RegularNavigation::ComputeStepSkippingEqualMaterials( // G4int ide = history.GetDepth(); G4ThreeVector containerPoint = history.GetTransform(ide) - .InverseTransformPoint(localPoint); + .InverseTransformPoint(localPoint); + // Point in global frame // containerPoint = history.GetTransform(ide).InverseTransformPoint(localPoint); @@ -191,9 +199,96 @@ G4double G4RegularNavigation::ComputeStepSkippingEqualMaterials( // Loop while same material is found // - for( ;; ) + // + fNumberZeroSteps = 0; + for( G4int ii = 0; ii < fNoStepsAllowed+1; ++ii ) { + if( ii == fNoStepsAllowed ) { + // Must kill this stuck track + // + G4ThreeVector pGlobalpoint = history.GetTransform(ide) + .InverseTransformPoint(localPoint); + std::ostringstream message; + message << "G4RegularNavigation::ComputeStepSkippingEqualMaterials()" + << "Stuck Track: potential geometry or navigation problem." + << G4endl + << " Track stuck, moving for more than " + << ii << " steps" << G4endl + << "- at point " << pGlobalpoint << G4endl + << " local direction: " << localDirection << G4endl; + G4Exception("G4RegularNavigation::ComputeStepSkippingEqualMaterials()", + "GeomRegNav1001", + EventMustBeAborted, + message); + } newStep = voxelBox->DistanceToOut( localPoint, localDirection ); + fLastStepWasZero = (newStep 1 ) + { + G4ThreeVector pGlobalpoint = history.GetTransform(ide) + .InverseTransformPoint(localPoint); + G4cout << "G4RegularNavigation::ComputeStepSkippingEqualMaterials():" + << " another 'zero' step, # " + << fNumberZeroSteps + << ", at " << pGlobalpoint + << ", nav-comp-step calls # " << ii + << ", Step= " << newStep + << G4endl; + } + //#endif + if( fNumberZeroSteps > fActionThreshold_NoZeroSteps-1 ) + { + // Act to recover this stuck track. Pushing it along direction + // + newStep = std::min(101*kCarTolerance*pow(10,fNumberZeroSteps-2),0.1); +#ifdef G4VERBOSE + if (fWarnPush) + { + G4ThreeVector pGlobalpoint = history.GetTransform(ide) + .InverseTransformPoint(localPoint); + std::ostringstream message; + message.precision(16); + message << "Track stuck or not moving." << G4endl + << " Track stuck, not moving for " + << fNumberZeroSteps << " steps" << G4endl + << "- at point " << pGlobalpoint + << " (local point " << localPoint << ")" << G4endl + << " local direction: " << localDirection + << " Potential geometry or navigation problem !" + << G4endl + << " Trying pushing it of " << newStep << " mm ..."; + G4Exception("G4RegularNavigation::ComputeStepSkippingEqualMaterials()", + "GeomRegNav1002", + JustWarning, + message, + "Potential overlap in geometry!"); + } +#endif + } + if( fNumberZeroSteps > fAbandonThreshold_NoZeroSteps-1 ) + { + // Must kill this stuck track + // + G4ThreeVector pGlobalpoint = history.GetTransform(ide) + .InverseTransformPoint(localPoint); + std::ostringstream message; + message << "G4RegularNavigation::ComputeStepSkippingEqualMaterials()" + << "Stuck Track: potential geometry or navigation problem." + << G4endl + << " Track stuck, not moving for " + << fNumberZeroSteps << " steps" << G4endl + << "- at point " << pGlobalpoint << G4endl + << " local direction: " << localDirection << G4endl; + G4Exception("G4RegularNavigation::ComputeStepSkippingEqualMaterials()", + "GeomRegNav1003", + EventMustBeAborted, + message); + } + } if( (bFirstStep) && (newStep < currentProposedStepLength) ) { @@ -245,7 +340,6 @@ G4double G4RegularNavigation::ComputeStepSkippingEqualMaterials( prevVoxelTranslation = voxelTranslation; // Check if material of next voxel is the same as that of the current voxel - // nextMate = param->ComputeMaterial( copyNo, nullptr, nullptr ); if( currentMate != nextMate ) { break; } diff --git a/source/geometry/solids/specific/History b/source/geometry/solids/specific/History index bc703247b5..6ef0ee3003 100644 --- a/source/geometry/solids/specific/History +++ b/source/geometry/solids/specific/History @@ -16,8 +16,29 @@ committal in the source repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +17-January-2020 E.Tcherniaev (geom-specific-V10-05-22) +- Implemented G4Tet::SetVertices(), it addresses request made + at Geant4 Technical Forum. + +14-January-2020 Gabriele Cosmo +- Added protection in G4VFacet header for double definition of global + symbols from Windows Kits code. + +08-January-2020 E.Tcherniaev +- Complete revision of G4Tet, speed up, new testG4Tet.cc. + It also fixes issues spotted by new unit test. + +16-December-2019 E.Tcherniaev +- Complete revision of G4Ellipsoid, it fixes issues with former + implementation, in particular it addresses problem report #2206. + 30%-70% speed-up in all main methods + +10-December-2019 G.Cosmo +- Re-established parameterisation mechanism for G4Tet and G4UTet which was + removed by mistake. Addressing problem report #2209. + 26-November-2019 G.Cosmo (geom-specific-V10-05-21) - - Fixed cases of implicit type conversions from size_t to G4int. +- Fixed cases of implicit type conversions from size_t to G4int. 05-November-2019 E.Tcherniaev (geom-specific-V10-05-20) - G4TesselatedSolid.cc: fixed minor Coverity defect (uninitialized array) diff --git a/source/geometry/solids/specific/include/G4Ellipsoid.hh b/source/geometry/solids/specific/include/G4Ellipsoid.hh index 6359f93849..b1d9f5ff39 100644 --- a/source/geometry/solids/specific/include/G4Ellipsoid.hh +++ b/source/geometry/solids/specific/include/G4Ellipsoid.hh @@ -27,18 +27,19 @@ // // Class description: // -// A G4Ellipsoid is an ellipsoidal solid, optionally cut at a given z. +// A G4Ellipsoid is an ellipsoidal solid, optionally cut at a given z // // Member Data: // -// xSemiAxis semi-axis, x -// ySemiAxis semi-axis, y -// zSemiAxis semi-axis, z -// zBottomCut lower cut plane level, z (solid lies above this plane) -// zTopCut upper cut plane level, z (solid lies below this plane) +// xSemiAxis semi-axis, X +// ySemiAxis semi-axis, Y +// zSemiAxis semi-axis, Z +// zBottomCut lower cut in Z (solid lies above this plane) +// zTopCut upper cut in Z (solid lies below this plane) // 10.11.1999 G.Horton-Smith (Caltech, USA) - First implementation // 10.02.2005 G.Guerrieri (INFN Genova, Italy) - Revision +// 15.12.2019 E.Tcherniaev - Complete revision // -------------------------------------------------------------------- #ifndef G4ELLIPSOID_HH #define G4ELLIPSOID_HH @@ -61,32 +62,32 @@ class G4Ellipsoid : public G4VSolid { - public: // with description + public: - G4Ellipsoid(const G4String& pName, - G4double pxSemiAxis, - G4double pySemiAxis, - G4double pzSemiAxis, - G4double pzBottomCut = 0, - G4double pzTopCut = 0); + // Constructor + G4Ellipsoid(const G4String& name, + G4double xSemiAxis, + G4double ySemiAxis, + G4double zSemiAxis, + G4double zBottomCut = 0., + G4double zTopCut = 0.); + // Destructor virtual ~G4Ellipsoid(); - // Access functions - + // Accessors inline G4double GetDx() const; inline G4double GetDy() const; inline G4double GetDz() const; inline G4double GetSemiAxisMax (G4int i) const; inline G4double GetZBottomCut() const; inline G4double GetZTopCut() const; + + // Modifiers inline void SetSemiAxis (G4double x, G4double y, G4double z); inline void SetZCuts (G4double newzBottomCut, G4double newzTopCut); - inline G4double GetCubicVolume(); - inline G4double GetSurfaceArea(); - // Solid standard methods - + // Standard methods void ComputeDimensions(G4VPVParameterisation* p, const G4int n, const G4VPhysicalVolume* pRep); @@ -96,6 +97,7 @@ class G4Ellipsoid : public G4VSolid const G4VoxelLimits& pVoxelLimit, const G4AffineTransform& pTransform, G4double& pmin, G4double& pmax) const; + EInside Inside(const G4ThreeVector& p) const; G4ThreeVector SurfaceNormal( const G4ThreeVector& p) const; G4double DistanceToIn(const G4ThreeVector& p, @@ -114,40 +116,69 @@ class G4Ellipsoid : public G4VSolid std::ostream& StreamInfo(std::ostream& os) const; + G4double GetCubicVolume(); + G4double GetSurfaceArea(); + G4ThreeVector GetPointOnSurface() const; - // Visualisation functions - - G4Polyhedron* GetPolyhedron () const; + // Visualisation methods void DescribeYourselfTo(G4VGraphicsScene& scene) const; - G4VisExtent GetExtent() const; + G4VisExtent GetExtent() const; G4Polyhedron* CreatePolyhedron() const; - - public: // without description + G4Polyhedron* GetPolyhedron () const; + public: + + // Fake default constructor for usage restricted to direct object + // persistency for clients requiring preallocation of memory for + // persistifiable objects G4Ellipsoid(__void__&); - // Fake default constructor for usage restricted to direct object - // persistency for clients requiring preallocation of memory for - // persistifiable objects. + // Copy constructorassignment operator G4Ellipsoid(const G4Ellipsoid& rhs); - G4Ellipsoid& operator=(const G4Ellipsoid& rhs); - // Copy constructor and assignment operator. - protected: // without description - - mutable G4bool fRebuildPolyhedron = false; - mutable G4Polyhedron* fpPolyhedron = nullptr; + // Assignment + G4Ellipsoid& operator=(const G4Ellipsoid& rhs); private: - G4double kRadTolerance; - G4double halfCarTolerance, halfRadTolerance; + // Check parameters and set cached values + void CheckParameters(); - G4double fCubicVolume = 0.0; - G4double fSurfaceArea = 0.0; - G4double xSemiAxis, ySemiAxis, zSemiAxis, - semiAxisMax, zBottomCut, zTopCut; + // Return normal to surface closest to p + G4ThreeVector ApproxSurfaceNormal(const G4ThreeVector& p) const; + + // Calculate area of lateral surface + G4double LateralSurfaceArea() const; + + private: + + // Ellipsoid parameters + G4double fDx; // X semi-axis + G4double fDy; // Y semi-axis + G4double fDz; // Z semi-axis + G4double fZBottomCut; // Bottom cut in Z + G4double fZTopCut; // Top cut in Z + + // Precalculated cached values + G4double halfTolerance; // Surface tolerance + G4double fXmax; // X extent + G4double fYmax; // Y extent + G4double fRsph; // Radius of bounding sphere + G4double fR; // Radius of sphere after scaling + G4double fSx; // X scale factor + G4double fSy; // Y scale factor + G4double fSz; // Z scale factor + G4double fZMidCut; // Middle position between cuts after scaling + G4double fZDimCut; // Half distance between cut after scaling + G4double fQ1; // 1st coefficient in approximation of dist = Q1*(x^2+y^2+z^2) - Q2 + G4double fQ2; // 2nd coefficient in approximation of dist = Q1*(x^2+y^2+z^2) - Q2 + + G4double fCubicVolume = 0.0; // Volume + G4double fSurfaceArea = 0.0; // Surface area + mutable G4double fLateralArea = 0.0; // Lateral surface area + mutable G4bool fRebuildPolyhedron = false; + mutable G4Polyhedron* fpPolyhedron = nullptr; }; #include "G4Ellipsoid.icc" diff --git a/source/geometry/solids/specific/include/G4Ellipsoid.icc b/source/geometry/solids/specific/include/G4Ellipsoid.icc index 981efa1942..7d7ffb4e1b 100644 --- a/source/geometry/solids/specific/include/G4Ellipsoid.icc +++ b/source/geometry/solids/specific/include/G4Ellipsoid.icc @@ -31,94 +31,58 @@ inline G4double G4Ellipsoid::GetDx() const { - return xSemiAxis; + return fDx; } inline G4double G4Ellipsoid::GetDy() const { - return ySemiAxis; + return fDy; } inline G4double G4Ellipsoid::GetDz() const { - return zSemiAxis; + return fDz; } inline G4double G4Ellipsoid::GetSemiAxisMax (G4int i) const { - return (i==0) ? xSemiAxis - : (i==1) ? ySemiAxis - : zSemiAxis; + return (i==0) ? fDx : ((i==1) ? fDy : fDz); } inline G4double G4Ellipsoid::GetZBottomCut() const { - return zBottomCut; + return fZBottomCut; } inline G4double G4Ellipsoid::GetZTopCut() const { - return zTopCut; + return fZTopCut; } inline -void G4Ellipsoid::SetSemiAxis (G4double newxSemiAxis, - G4double newySemiAxis, - G4double newzSemiAxis) +void G4Ellipsoid::SetSemiAxis(G4double newxSemiAxis, + G4double newySemiAxis, + G4double newzSemiAxis) { - xSemiAxis= newxSemiAxis; ySemiAxis= newySemiAxis; zSemiAxis= newzSemiAxis; - semiAxisMax = xSemiAxis > ySemiAxis ? xSemiAxis : ySemiAxis; - if (zSemiAxis > semiAxisMax) { semiAxisMax= zSemiAxis; } - if (zBottomCut < -zSemiAxis) { zBottomCut = -zSemiAxis; } - if (zTopCut > +zSemiAxis) { zTopCut = +zSemiAxis; } + fDx = newxSemiAxis; + fDy = newySemiAxis; + fDz = newzSemiAxis; + + CheckParameters(); fRebuildPolyhedron = true; } inline void G4Ellipsoid::SetZCuts (G4double newzBottomCut, G4double newzTopCut) { - if (newzBottomCut < -zSemiAxis) - { zBottomCut = -zSemiAxis; } - else - { zBottomCut = newzBottomCut; } + fZBottomCut = newzBottomCut; + fZTopCut = newzTopCut; - if (newzTopCut > +zSemiAxis) - { zTopCut = +zSemiAxis; } - else - { zTopCut = newzTopCut; } + CheckParameters(); fRebuildPolyhedron = true; } - -inline -G4double G4Ellipsoid::GetCubicVolume() -{ - if(fCubicVolume != 0 ) {;} - else - { - if ((zTopCut > +zSemiAxis && zBottomCut < -zSemiAxis) - || (zTopCut == 0 && zBottomCut == 0) ) - { - fCubicVolume = (4./3.)*CLHEP::pi*xSemiAxis*ySemiAxis*zSemiAxis; - } - else - { - fCubicVolume = CLHEP::pi*xSemiAxis*ySemiAxis - * ((zTopCut-std::pow(zTopCut,3.)/(3.*sqr(zSemiAxis))) - - (zBottomCut-std::pow(zBottomCut,3.)/(3.*sqr(zSemiAxis)))); - } - } - return fCubicVolume; -} - -inline -G4double G4Ellipsoid::GetSurfaceArea() -{ - if(fSurfaceArea != 0.) {;} - else { fSurfaceArea = G4VSolid::GetSurfaceArea(); } - return fSurfaceArea; -} diff --git a/source/geometry/solids/specific/include/G4Tet.hh b/source/geometry/solids/specific/include/G4Tet.hh index 0faf714d3b..c85a180419 100644 --- a/source/geometry/solids/specific/include/G4Tet.hh +++ b/source/geometry/solids/specific/include/G4Tet.hh @@ -34,6 +34,7 @@ // A G4Tet is a tetrahedra solid. // 03.09.2004 - M.H.Mendenhall & R.A.Weller (Vanderbilt University, USA) +// 08.01.2020 - E.Tcherniaev, complete revision, speed up // -------------------------------------------------------------------- #ifndef G4TET_HH #define G4TET_HH @@ -56,98 +57,116 @@ class G4Tet : public G4VSolid public: // with description + // Constructor G4Tet(const G4String& pName, - G4ThreeVector anchor, - G4ThreeVector p2, - G4ThreeVector p3, - G4ThreeVector p4, + const G4ThreeVector& anchor, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3, G4bool* degeneracyFlag = nullptr); + // Destructor virtual ~G4Tet(); - void ComputeDimensions(G4VPVParameterisation* p, - const G4int n, - const G4VPhysicalVolume* pRep); + // Modifier + void SetVertices(const G4ThreeVector& anchor, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3); + + // Accessors, return the four vertices of the shape + void GetVertices(G4ThreeVector& anchor, + G4ThreeVector& p1, + G4ThreeVector& p2, + G4ThreeVector& p3) const; + std::vector GetVertices() const; + + // Set warning flag - depricated (dummy) + void PrintWarnings(G4bool) {}; + + // Return true if the tetrahedron is degenerate + G4bool CheckDegeneracy(const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3) const; + + // Standard methods + void ComputeDimensions(G4VPVParameterisation* p, + const G4int n, + const G4VPhysicalVolume* pRep); void BoundingLimits(G4ThreeVector& pMin, G4ThreeVector& pMax) const; - G4bool CalculateExtent(const EAxis pAxis, const G4VoxelLimits& pVoxelLimit, const G4AffineTransform& pTransform, G4double& pmin, G4double& pmax) const; - // Methods for solid EInside Inside(const G4ThreeVector& p) const; - G4ThreeVector SurfaceNormal( const G4ThreeVector& p) const; - - G4double DistanceToIn(const G4ThreeVector& p, const G4ThreeVector& v) const; - + G4double DistanceToIn(const G4ThreeVector& p, + const G4ThreeVector& v) const; G4double DistanceToIn(const G4ThreeVector& p) const; - - G4double DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v, + G4double DistanceToOut(const G4ThreeVector& p, + const G4ThreeVector& v, const G4bool calcNorm = false, G4bool* validNorm = nullptr, G4ThreeVector* n = nullptr) const; - G4double DistanceToOut(const G4ThreeVector& p) const; - G4double GetCubicVolume(); - G4double GetSurfaceArea(); - G4GeometryType GetEntityType() const; G4VSolid* Clone() const; std::ostream& StreamInfo(std::ostream& os) const; + G4double GetCubicVolume(); + G4double GetSurfaceArea(); + G4ThreeVector GetPointOnSurface() const; - // Functions for visualization - - void DescribeYourselfTo (G4VGraphicsScene& scene) const; - G4VisExtent GetExtent () const; - G4Polyhedron* CreatePolyhedron () const; - G4Polyhedron* GetPolyhedron () const; + // Methods for visualization + void DescribeYourselfTo (G4VGraphicsScene& scene) const; + G4VisExtent GetExtent () const; + G4Polyhedron* CreatePolyhedron () const; + G4Polyhedron* GetPolyhedron () const; public: // without description + // Fake default constructor for usage restricted to direct object + // persistency for clients requiring preallocation of memory for + // persistifiable objects G4Tet(__void__&); - // Fake default constructor for usage restricted to direct object - // persistency for clients requiring preallocation of memory for - // persistifiable objects. + // Copy constructor G4Tet(const G4Tet& rhs); - G4Tet& operator=(const G4Tet& rhs); - // Copy constructor and assignment operator. - void PrintWarnings(G4bool flag) { warningFlag=flag; } - static G4bool CheckDegeneracy(G4ThreeVector anchor, - G4ThreeVector p2, - G4ThreeVector p3, - G4ThreeVector p4); - std::vector GetVertices() const; - // Return the four vertices of the shape. + // Assignment operator + G4Tet& operator=(const G4Tet& rhs); private: - G4double fCubicVolume = 0.0, fSurfaceArea = 0.0; + // Set data members + void Initialize(const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3); + // Return normal to surface closest to p + G4ThreeVector ApproxSurfaceNormal(const G4ThreeVector& p) const; + + private: + + G4double halfTolerance = 0; + G4double fCubicVolume = 0; // Volume + G4double fSurfaceArea = 0; // Surface area mutable G4bool fRebuildPolyhedron = false; mutable G4Polyhedron* fpPolyhedron = nullptr; - G4ThreeVector GetPointOnFace(G4ThreeVector p1, G4ThreeVector p2, - G4ThreeVector p3, G4double& area) const; - private: - - G4ThreeVector fAnchor, fP2, fP3, fP4, fMiddle; - G4ThreeVector fNormal123, fNormal142, fNormal134, fNormal234; - - G4bool warningFlag = false; - - G4double fCdotN123, fCdotN142, fCdotN134, fCdotN234; - G4double fXMin, fXMax, fYMin, fYMax, fZMin, fZMax; - G4double fDx, fDy, fDz, fTol, fMaxSize; + G4ThreeVector fVertex[4]; // thetrahedron vertices + G4ThreeVector fNormal[4]; // normals to faces + G4double fDist[4] = {0}; // distances from origin to faces + G4double fArea[4] = {0}; // face areas + G4ThreeVector fBmin, fBmax; // bounding box }; #endif diff --git a/source/geometry/solids/specific/include/G4UTet.hh b/source/geometry/solids/specific/include/G4UTet.hh index c09a08c6db..01ba533e16 100644 --- a/source/geometry/solids/specific/include/G4UTet.hh +++ b/source/geometry/solids/specific/include/G4UTet.hh @@ -59,6 +59,12 @@ class G4UTet : public G4UAdapter ~G4UTet(); + void ComputeDimensions( G4VPVParameterisation* p, + const G4int n, + const G4VPhysicalVolume* pRep); + + G4VSolid* Clone() const; + inline G4GeometryType GetEntityType() const; public: // without description diff --git a/source/geometry/solids/specific/include/G4VFacet.hh b/source/geometry/solids/specific/include/G4VFacet.hh index b3e44c11cc..bba19e524f 100644 --- a/source/geometry/solids/specific/include/G4VFacet.hh +++ b/source/geometry/solids/specific/include/G4VFacet.hh @@ -41,6 +41,7 @@ #include #include "globals.hh" +#include "windefs.hh" #include "G4ThreeVector.hh" #include "G4VSolid.hh" diff --git a/source/geometry/solids/specific/src/G4Ellipsoid.cc b/source/geometry/solids/specific/src/G4Ellipsoid.cc index 658c6a6b32..6e83b76c95 100644 --- a/source/geometry/solids/specific/src/G4Ellipsoid.cc +++ b/source/geometry/solids/specific/src/G4Ellipsoid.cc @@ -25,10 +25,11 @@ // // class G4Ellipsoid // -// Implementation for G4Ellipsoid class +// Implementation of G4Ellipsoid class // // 10.11.99 G.Horton-Smith: first writing, based on G4Sphere class // 25.02.05 G.Guerrieri: Revised +// 15.12.19 E.Tcherniaev: Complete revision // -------------------------------------------------------------------- #include "G4Ellipsoid.hh" @@ -41,9 +42,8 @@ #include "G4AffineTransform.hh" #include "G4GeometryTolerance.hh" #include "G4BoundingEnvelope.hh" - -#include "meshdefs.hh" -#include "Randomize.hh" +#include "G4RandomTools.hh" +#include "G4QuickRand.hh" #include "G4VPVParameterisation.hh" @@ -54,73 +54,39 @@ namespace { - G4Mutex polyhedronMutex = G4MUTEX_INITIALIZER; + G4Mutex polyhedronMutex = G4MUTEX_INITIALIZER; + G4Mutex lateralareaMutex = G4MUTEX_INITIALIZER; } using namespace CLHEP; -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// constructor - check parameters, convert angles so 02PI then reset to 2PI +// Constructor -G4Ellipsoid::G4Ellipsoid(const G4String& pName, - G4double pxSemiAxis, - G4double pySemiAxis, - G4double pzSemiAxis, - G4double pzBottomCut, - G4double pzTopCut) - : G4VSolid(pName), zBottomCut(0.), zTopCut(0.) +G4Ellipsoid::G4Ellipsoid(const G4String& name, + G4double xSemiAxis, + G4double ySemiAxis, + G4double zSemiAxis, + G4double zBottomCut, + G4double zTopCut) + : G4VSolid(name), fDx(xSemiAxis), fDy(ySemiAxis), fDz(zSemiAxis), + fZBottomCut(zBottomCut), fZTopCut(zTopCut) { - // note: for users that want to use the full ellipsoid it is useful - // to include a default for the cuts - - kRadTolerance = G4GeometryTolerance::GetInstance()->GetRadialTolerance(); - - halfCarTolerance = kCarTolerance*0.5; - halfRadTolerance = kRadTolerance*0.5; - - // Check Semi-Axis - if ( (pxSemiAxis<=0.) || (pySemiAxis<=0.) || (pzSemiAxis<=0.) ) - { - std::ostringstream message; - message << "Invalid semi-axis - " << GetName(); - G4Exception("G4Ellipsoid::G4Ellipsoid()", "GeomSolids0002", - FatalErrorInArgument, message); - } - SetSemiAxis(pxSemiAxis, pySemiAxis, pzSemiAxis); - - if ( pzBottomCut == 0 && pzTopCut == 0 ) - { - SetZCuts(-pzSemiAxis, pzSemiAxis); - } - else if ( (pzBottomCut < pzSemiAxis) && (pzTopCut > -pzSemiAxis) - && (pzBottomCut < pzTopCut) ) - { - SetZCuts(pzBottomCut, pzTopCut); - } - else - { - std::ostringstream message; - message << "Invalid z-coordinate for cutting plane - " << GetName(); - G4Exception("G4Ellipsoid::G4Ellipsoid()", "GeomSolids0002", - FatalErrorInArgument, message); - } + CheckParameters(); } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Fake default constructor - sets only member data and allocates memory -// for usage restricted to object persistency. -// +// for usage restricted to object persistency + G4Ellipsoid::G4Ellipsoid( __void__& a ) - : G4VSolid(a), kRadTolerance(0.), halfCarTolerance(0.), halfRadTolerance(0.), - xSemiAxis(0.), ySemiAxis(0.), zSemiAxis(0.), - semiAxisMax(0.), zBottomCut(0.), zTopCut(0.) + : G4VSolid(a), fDx(0.), fDy(0.), fDz(0.), fZBottomCut(0.), fZTopCut(0.) { } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Destructor @@ -129,27 +95,31 @@ G4Ellipsoid::~G4Ellipsoid() delete fpPolyhedron; fpPolyhedron = nullptr; } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Copy constructor G4Ellipsoid::G4Ellipsoid(const G4Ellipsoid& rhs) : G4VSolid(rhs), - kRadTolerance(rhs.kRadTolerance), - halfCarTolerance(rhs.halfCarTolerance), - halfRadTolerance(rhs.halfRadTolerance), - fCubicVolume(rhs.fCubicVolume), fSurfaceArea(rhs.fSurfaceArea), - xSemiAxis(rhs.xSemiAxis), ySemiAxis(rhs.ySemiAxis), - zSemiAxis(rhs.zSemiAxis), semiAxisMax(rhs.semiAxisMax), - zBottomCut(rhs.zBottomCut), zTopCut(rhs.zTopCut) + fDx(rhs.fDx), fDy(rhs.fDy), fDz(rhs.fDz), + fZBottomCut(rhs.fZBottomCut), fZTopCut(rhs.fZTopCut), + halfTolerance(rhs.halfTolerance), + fXmax(rhs.fXmax), fYmax(rhs.fYmax), + fRsph(rhs.fRsph), fR(rhs.fR), + fSx(rhs.fSx), fSy(rhs.fSy), fSz(rhs.fSz), + fZMidCut(rhs.fZMidCut), fZDimCut(rhs.fZDimCut), + fQ1(rhs.fQ1), fQ2(rhs.fQ2), + fCubicVolume(rhs.fCubicVolume), + fSurfaceArea(rhs.fSurfaceArea), + fLateralArea(rhs.fLateralArea) { } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Assignment operator -G4Ellipsoid& G4Ellipsoid::operator = (const G4Ellipsoid& rhs) +G4Ellipsoid& G4Ellipsoid::operator = (const G4Ellipsoid& rhs) { // Check assignment to self // @@ -161,23 +131,124 @@ G4Ellipsoid& G4Ellipsoid::operator = (const G4Ellipsoid& rhs) // Copy data // - kRadTolerance = rhs.kRadTolerance; - halfCarTolerance = rhs.halfCarTolerance; - halfRadTolerance = rhs.halfRadTolerance; - fCubicVolume = rhs.fCubicVolume; fSurfaceArea = rhs.fSurfaceArea; - xSemiAxis = rhs.xSemiAxis; ySemiAxis = rhs.ySemiAxis; - zSemiAxis = rhs.zSemiAxis; semiAxisMax = rhs.semiAxisMax; - zBottomCut = rhs.zBottomCut; zTopCut = rhs.zTopCut; + fDx = rhs.fDx; + fDy = rhs.fDy; + fDz = rhs.fDz; + fZBottomCut = rhs.fZBottomCut; + fZTopCut = rhs.fZTopCut; + + halfTolerance = rhs.halfTolerance; + fXmax = rhs.fXmax; + fYmax = rhs.fYmax; + fRsph = rhs.fRsph; + fR = rhs.fR; + fSx = rhs.fSx; + fSy = rhs.fSy; + fSz = rhs.fSz; + fZMidCut = rhs.fZMidCut; + fZDimCut = rhs.fZDimCut; + fQ1 = rhs.fQ1; + fQ2 = rhs.fQ2; + + fCubicVolume = rhs.fCubicVolume; + fSurfaceArea = rhs.fSurfaceArea; + fLateralArea = rhs.fLateralArea; + fRebuildPolyhedron = false; delete fpPolyhedron; fpPolyhedron = nullptr; return *this; } -//////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// +// +// Check parameters and make precalculation + +void G4Ellipsoid::CheckParameters() +{ + halfTolerance = 0.5 * kCarTolerance; // half tolerance + G4double dmin = 2. * kCarTolerance; + + // Check dimensions + // + if (fDx < dmin || fDy < dmin || fDz < dmin) + { + std::ostringstream message; + message << "Invalid (too small or negative) dimensions for Solid: " + << GetName() << "\n" + << " semi-axis x: " << fDx << "\n" + << " semi-axis y: " << fDy << "\n" + << " semi-axis z: " << fDz; + G4Exception("G4Ellipsoid::CheckParameters()", "GeomSolids0002", + FatalException, message); + } + G4double A = fDx; + G4double B = fDy; + G4double C = fDz; + + // Check cuts + // + if (fZBottomCut == 0. && fZTopCut == 0.) + { + fZBottomCut = -C; + fZTopCut = C; + } + if (fZBottomCut >= C || fZTopCut <= -C || fZBottomCut >= fZTopCut) + { + std::ostringstream message; + message << "Invalid Z cuts for Solid: " + << GetName() << "\n" + << " bottom cut: " << fZBottomCut << "\n" + << " top cut: " << fZTopCut; + G4Exception("G4Ellipsoid::CheckParameters()", "GeomSolids0002", + FatalException, message); + + } + fZBottomCut = std::max(fZBottomCut, -C); + fZTopCut = std::min(fZTopCut, C); + + // Set extent in x and y + fXmax = A; + fYmax = B; + if (fZBottomCut > 0.) + { + G4double ratio = fZBottomCut / C; + G4double scale = std::sqrt((1. - ratio) * (1 + ratio)); + fXmax *= scale; + fYmax *= scale; + } + if (fZTopCut < 0.) + { + G4double ratio = fZTopCut / C; + G4double scale = std::sqrt((1. - ratio) * (1 + ratio)); + fXmax *= scale; + fYmax *= scale; + } + + // Set scale factors + fRsph = std::max(std::max(A, B), C); // bounding sphere + fR = std::min(std::min(A, B), C); // radius of sphere after scaling + fSx = fR / A; // X scale factor + fSy = fR / B; // Y scale factor + fSz = fR / C; // Z scale factor + + // Scaled cuts + fZMidCut = 0.5 * (fZTopCut + fZBottomCut) * fSz; // middle position + fZDimCut = 0.5 * (fZTopCut - fZBottomCut) * fSz; // half distance + + // Coefficients for approximation of distance: Q1 * (x^2 + y^2 + z^2) - Q2 + fQ1 = 0.5 / fR; + fQ2 = 0.5 * fR + halfTolerance * halfTolerance * fQ1; + + fCubicVolume = 0.; // volume + fSurfaceArea = 0.; // surface area + fLateralArea = 0.; // lateral surface area +} + +////////////////////////////////////////////////////////////////////////// // // Dispatch to parameterisation for replication mechanism dimension -// computation & modification. +// computation & modification void G4Ellipsoid::ComputeDimensions(G4VPVParameterisation* p, const G4int n, @@ -186,38 +257,20 @@ void G4Ellipsoid::ComputeDimensions(G4VPVParameterisation* p, p->ComputeDimensions(*this,n,pRep); } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Get bounding box -void G4Ellipsoid::BoundingLimits(G4ThreeVector& pMin, G4ThreeVector& pMax) const +void G4Ellipsoid::BoundingLimits(G4ThreeVector& pMin, + G4ThreeVector& pMax) const { - G4double dx = GetDx(); - G4double dy = GetDy(); - G4double dz = GetDz(); - G4double zmin = std::max(-dz,GetZBottomCut()); - G4double zmax = std::min( dz,GetZTopCut()); - pMin.set(-dx,-dy,zmin); - pMax.set( dx, dy,zmax); - - // Check correctness of the bounding box - // - if (pMin.x() >= pMax.x() || pMin.y() >= pMax.y() || pMin.z() >= pMax.z()) - { - std::ostringstream message; - message << "Bad bounding box (min >= max) for solid: " - << GetName() << " !" - << "\npMin = " << pMin - << "\npMax = " << pMax; - G4Exception("G4Ellipsoid::BoundingLimits()", "GeomMgt0001", - JustWarning, message); - DumpInfo(); - } + pMin.set(-fXmax,-fYmax, fZBottomCut); + pMax.set( fXmax, fYmax, fZTopCut); } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// Calculate extent under transform and specified limit +// Calculate extent under transform and specified limits G4bool G4Ellipsoid::CalculateExtent(const EAxis pAxis, @@ -235,223 +288,211 @@ G4Ellipsoid::CalculateExtent(const EAxis pAxis, return bbox.CalculateExtent(pAxis,pVoxelLimit,pTransform,pMin,pMax); } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// Return whether point inside/outside/on surface -// Split into radius, phi, theta checks -// Each check modifies `in', or returns as approprate +// Return position of point: inside/outside/on surface EInside G4Ellipsoid::Inside(const G4ThreeVector& p) const { - G4double rad2oo, // outside surface outer tolerance - rad2oi; // outside surface inner tolerance - EInside in; - - // check this side of z cut first, because that's fast - // - if (p.z() < zBottomCut-halfRadTolerance) { return in=kOutside; } - if (p.z() > zTopCut+halfRadTolerance) { return in=kOutside; } - - rad2oo= sqr(p.x()/(xSemiAxis+halfRadTolerance)) - + sqr(p.y()/(ySemiAxis+halfRadTolerance)) - + sqr(p.z()/(zSemiAxis+halfRadTolerance)); - - if (rad2oo > 1.0) { return in=kOutside; } - - rad2oi= sqr(p.x()*(1.0+halfRadTolerance/xSemiAxis)/xSemiAxis) - + sqr(p.y()*(1.0+halfRadTolerance/ySemiAxis)/ySemiAxis) - + sqr(p.z()*(1.0+halfRadTolerance/zSemiAxis)/zSemiAxis); - - // Check radial surfaces - // sets `in' (already checked for rad2oo > 1.0) - // - if (rad2oi < 1.0) - { - in = ( (p.z() < zBottomCut+halfRadTolerance) - || (p.z() > zTopCut-halfRadTolerance) ) ? kSurface : kInside; - if ( rad2oi > 1.0-halfRadTolerance ) { in=kSurface; } - } - else - { - in = kSurface; - } - return in; + G4double x = p.x() * fSx; + G4double y = p.y() * fSy; + G4double z = p.z() * fSz; + G4double rr = x * x + y * y + z * z; + G4double distZ = std::abs(z - fZMidCut) - fZDimCut; + G4double distR = fQ1 * rr - fQ2; + G4double dist = std::max(distZ, distR); + if (dist > halfTolerance) return kOutside; + return (dist > -halfTolerance) ? kSurface : kInside; } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// Return unit normal of surface closest to p not protected against p=0 +// Return unit normal to surface at p G4ThreeVector G4Ellipsoid::SurfaceNormal( const G4ThreeVector& p) const { - G4double distR, distZBottom, distZTop; + G4ThreeVector norm(0., 0., 0.); + G4int nsurf = 0; - // normal vector with special magnitude: parallel to normal, units 1/length - // norm*p == 1.0 if on surface, >1.0 if outside, <1.0 if inside - // - G4ThreeVector norm(p.x()/(xSemiAxis*xSemiAxis), - p.y()/(ySemiAxis*ySemiAxis), - p.z()/(zSemiAxis*zSemiAxis)); - G4double radius = 1.0/norm.mag(); - - // approximate distance to curved surface - // - distR = std::fabs( (p*norm - 1.0) * radius ) / 2.0; - - // Distance to z-cut plane - // - distZBottom = std::fabs( p.z() - zBottomCut ); - distZTop = std::fabs( p.z() - zTopCut ); - - if ( (distZBottom < distR) || (distZTop < distR) ) + // Check cuts + G4double x = p.x() * fSx; + G4double y = p.y() * fSy; + G4double z = p.z() * fSz; + G4double distZ = std::abs(z - fZMidCut) - fZDimCut; + if (std::abs(distZ) <= halfTolerance) { - return G4ThreeVector(0.,0.,(distZBottom < distZTop) ? -1.0 : 1.0); + norm.setZ(std::copysign(1., z - fZMidCut)); + ++nsurf; + } + + // Check lateral surface + G4double distR = fQ1*(x*x + y*y + z*z) - fQ2; + if (std::abs(distR) <= halfTolerance) + { + // normal = (p.x/a^2, p.y/b^2, p.z/c^2) + norm += G4ThreeVector(x*fSx, y*fSy, z*fSz).unit(); + ++nsurf; + } + + // Return normal + if (nsurf == 1) return norm; + else if (nsurf > 1) return norm.unit(); // edge + else + { +#ifdef G4SPECSDEBUG + std::ostringstream message; + G4int oldprc = message.precision(16); + message << "Point p is not on surface (!?) of solid: " + << GetName() << "\n"; + message << "Position:\n"; + message << " p.x() = " << p.x()/mm << " mm\n"; + message << " p.y() = " << p.y()/mm << " mm\n"; + message << " p.z() = " << p.z()/mm << " mm"; + G4cout.precision(oldprc); + G4Exception("G4Ellipsoid::SurfaceNormal(p)", "GeomSolids1002", + JustWarning, message ); + DumpInfo(); +#endif + return ApproxSurfaceNormal(p); } - return ( norm *= radius ); } -/////////////////////////////////////////////////////////////////////////////// -// -// Calculate distance to shape from outside, along normalised vector -// - return kInfinity if no intersection, or intersection distance <= tolerance +////////////////////////////////////////////////////////////////////////// // +// Find surface nearest to point and return corresponding normal. +// This method normally should not be called. -G4double G4Ellipsoid::DistanceToIn( const G4ThreeVector& p, - const G4ThreeVector& v ) const +G4ThreeVector G4Ellipsoid::ApproxSurfaceNormal(const G4ThreeVector& p) const { - G4double distMin = std::min(xSemiAxis,ySemiAxis); - const G4double dRmax = 100.*std::min(distMin,zSemiAxis); - distMin= kInfinity; + G4double x = p.x() * fSx; + G4double y = p.y() * fSy; + G4double z = p.z() * fSz; + G4double rr = x * x + y * y + z * z; + G4double distZ = std::abs(z - fZMidCut) - fZDimCut; + G4double distR = std::sqrt(rr) - fR; + if (distR > distZ && rr > 0.) // distR > distZ is correct! + return G4ThreeVector(x*fSx, y*fSy, z*fSz).unit(); + else + return G4ThreeVector(0., 0., std::copysign(1., z - fZMidCut)); +} - // check to see if Z plane is relevant - if (p.z() <= zBottomCut+halfCarTolerance) - { - if (v.z() <= 0.0) { return distMin; } - G4double distZ = (zBottomCut - p.z()) / v.z(); - - if ( (distZ > -halfRadTolerance) && (Inside(p+distZ*v) != kOutside) ) - { - // early exit since can't intercept curved surface if we reach here - if ( std::fabs(distZ) < halfRadTolerance ) { distZ=0.; } - return distMin= distZ; - } - } - if (p.z() >= zTopCut-halfCarTolerance) - { - if (v.z() >= 0.0) { return distMin;} - G4double distZ = (zTopCut - p.z()) / v.z(); - if ( (distZ > -halfRadTolerance) && (Inside(p+distZ*v) != kOutside) ) - { - // early exit since can't intercept curved surface if we reach here - if ( std::fabs(distZ) < halfRadTolerance ) { distZ=0.; } - return distMin= distZ; - } - } - // if fZCut1 <= p.z() <= fZCut2, then must hit curved surface - - // now check curved surface intercept - G4double A,B,C; - - A= sqr(v.x()/xSemiAxis) + sqr(v.y()/ySemiAxis) + sqr(v.z()/zSemiAxis); - C= sqr(p.x()/xSemiAxis) + sqr(p.y()/ySemiAxis) + sqr(p.z()/zSemiAxis) - 1.0; - B= 2.0 * ( p.x()*v.x()/(xSemiAxis*xSemiAxis) - + p.y()*v.y()/(ySemiAxis*ySemiAxis) - + p.z()*v.z()/(zSemiAxis*zSemiAxis) ); - - C= B*B - 4.0*A*C; - if (C > 0.0) - { - G4double distR= (-B - std::sqrt(C)) / (2.0*A); - G4double intZ = p.z()+distR*v.z(); - if ( (distR > halfRadTolerance) - && (intZ >= zBottomCut-halfRadTolerance) - && (intZ <= zTopCut+halfRadTolerance) ) - { - distMin = distR; - } - else if( (distR >- halfRadTolerance) - && (intZ >= zBottomCut-halfRadTolerance) - && (intZ <= zTopCut+halfRadTolerance) ) - { - // p is on the curved surface, DistanceToIn returns 0 or kInfinity: - // DistanceToIn returns 0, if second root is positive (means going inside) - // If second root is negative, DistanceToIn returns kInfinity (outside) - // - distR = (-B + std::sqrt(C) ) / (2.0*A); - if(distR>0.) { distMin=0.; } - } - else - { - distR= (-B + std::sqrt(C)) / (2.0*A); - intZ = p.z()+distR*v.z(); - if ( (distR > halfRadTolerance) - && (intZ >= zBottomCut-halfRadTolerance) - && (intZ <= zTopCut+halfRadTolerance) ) - { - G4ThreeVector norm=SurfaceNormal(p); - if (norm.dot(v)<0.) { distMin = distR; } - } - } - if ( (distMin!=kInfinity) && (distMin>dRmax) ) - { // Avoid rounding errors due to precision issues on - // 64 bits systems. Split long distances and recompute - G4double fTerm = distMin-std::fmod(distMin,dRmax); - distMin = fTerm + DistanceToIn(p+fTerm*v,v); - } - } - - if (std::fabs(distMin)= -halfTolerance && p.x() * v.x() >= 0.) return kInfinity; + if (safey >= -halfTolerance && p.y() * v.y() >= 0.) return kInfinity; + if (safet >= -halfTolerance && v.z() >= 0.) return kInfinity; + if (safeb >= -halfTolerance && v.z() <= 0.) return kInfinity; + + // Relocate point, if required + // + G4double safe = std::max(std::max(std::max(safex, safey), safet), safeb); + if (safe > 32. * fRsph) + { + offset = (1. - 1.e-08) * safe - 2. * fRsph; + pcur += offset * v; + G4double dist = DistanceToIn(pcur, v); + return (dist == kInfinity) ? kInfinity : dist + offset; + } + + // Scale ellipsoid to sphere + // + G4double px = pcur.x() * fSx; + G4double py = pcur.y() * fSy; + G4double pz = pcur.z() * fSz; + G4double vx = v.x() * fSx; + G4double vy = v.y() * fSy; + G4double vz = v.z() * fSz; + + // Check if point is leaving the solid + // + G4double dzcut = fZDimCut; + G4double pzcut = pz - fZMidCut; + G4double distZ = std::abs(pzcut) - dzcut; + if (distZ >= -halfTolerance && pzcut * vz >= 0.) return kInfinity; + + G4double rr = px * px + py * py + pz * pz; + G4double pv = px * vx + py * vy + pz * vz; + G4double distR = fQ1 * rr - fQ2; + if (distR >= -halfTolerance && pv >= 0.) return kInfinity; + + G4double A = vx * vx + vy * vy + vz * vz; + G4double B = pv; + G4double C = rr - fR * fR; + G4double D = B * B - A * C; + // scratch^2 = R^2 - (R - halfTolerance)^2 = 2 * R * halfTolerance + G4double EPS = A * A * fR * kCarTolerance; // discriminant at scratching + if (D <= EPS) return kInfinity; // no intersection or scratching + + // Find intersection with Z planes + // + G4double invz = (vz == 0) ? DBL_MAX : -1./vz; + G4double dz = std::copysign(dzcut, invz); + G4double tzmin = (pzcut - dz) * invz; + G4double tzmax = (pzcut + dz) * invz; + + // Find intersection with lateral surface + // + G4double tmp = -B - std::copysign(std::sqrt(D), B); + G4double t1 = tmp / A; + G4double t2 = C / tmp; + G4double trmin = std::min(t1, t2); + G4double trmax = std::max(t1, t2); + + // Return distance + // + G4double tmin = std::max(tzmin, trmin); + G4double tmax = std::min(tzmax, trmax); + + if (tmax - tmin <= halfTolerance) return kInfinity; // touch or no hit + return (tmin < halfTolerance) ? offset : tmin + offset; +} + +////////////////////////////////////////////////////////////////////////// +// +// Estimate distance to surface from outside G4double G4Ellipsoid::DistanceToIn(const G4ThreeVector& p) const { - G4double distR, distZ; + G4double px = p.x(); + G4double py = p.y(); + G4double pz = p.z(); - // normal vector: parallel to normal, magnitude 1/(characteristic radius) - // - G4ThreeVector norm(p.x()/(xSemiAxis*xSemiAxis), - p.y()/(ySemiAxis*ySemiAxis), - p.z()/(zSemiAxis*zSemiAxis)); - G4double radius= 1.0/norm.mag(); + // Safety distance to bounding box + G4double distX = std::abs(px) - fXmax; + G4double distY = std::abs(py) - fYmax; + G4double distZ = std::max(pz - fZTopCut, fZBottomCut - pz); + G4double distB = std::max(std::max(distX, distY), distZ); - // approximate distance to curved surface ( <= actual distance ) - // - distR= (p*norm - 1.0) * radius / 2.0; + // Safety distance to lateral surface + G4double x = px * fSx; + G4double y = py * fSy; + G4double z = pz * fSz; + G4double distR = std::sqrt(x*x + y*y + z*z) - fR; - // Distance to z-cut plane - // - distZ= zBottomCut - p.z(); - if (distZ < 0.0) - { - distZ = p.z() - zTopCut; - } - - // Distance to closest surface from outside - // - if (distZ < 0.0) - { - return (distR < 0.0) ? 0.0 : distR; - } - else if (distR < 0.0) - { - return distZ; - } - else - { - return (distZ < distR) ? distZ : distR; - } + // Return safety to in + G4double dist = std::max(distB, distR); + return (dist < 0.) ? 0. : dist; } -/////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// Calculate distance to surface of shape from `inside', allowing for tolerance +// Calculate distance to surface from inside along normalised vector G4double G4Ellipsoid::DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v, @@ -459,180 +500,144 @@ G4double G4Ellipsoid::DistanceToOut(const G4ThreeVector& p, G4bool* validNorm, G4ThreeVector* n ) const { - G4double distMin; - enum surface_e {kPlaneSurf, kCurvedSurf, kNoSurf} surface; - - distMin= kInfinity; - surface= kNoSurf; - - // check to see if Z plane is relevant + // Check if point flying away relative to Z planes // - if (v.z() < 0.0) + G4double pz = p.z() * fSz; + G4double vz = v.z() * fSz; + G4double dzcut = fZDimCut; + G4double pzcut = pz - fZMidCut; + G4double distZ = std::abs(pzcut) - dzcut; + if (distZ >= -halfTolerance && pzcut * vz > 0.) { - G4double distZ = (zBottomCut - p.z()) / v.z(); - if (distZ < 0.0) + if (calcNorm) { - distZ= 0.0; - if (!calcNorm) {return 0.0;} + *validNorm = true; + n->set(0., 0., std::copysign(1., pzcut)); } - distMin= distZ; - surface= kPlaneSurf; - } - if (v.z() > 0.0) - { - G4double distZ = (zTopCut - p.z()) / v.z(); - if (distZ < 0.0) - { - distZ= 0.0; - if (!calcNorm) {return 0.0;} - } - distMin= distZ; - surface= kPlaneSurf; + return 0.; } - // normal vector: parallel to normal, magnitude 1/(characteristic radius) + // Check if point is flying away relative to lateral surface // - G4ThreeVector nearnorm(p.x()/(xSemiAxis*xSemiAxis), - p.y()/(ySemiAxis*ySemiAxis), - p.z()/(zSemiAxis*zSemiAxis)); - - // now check curved surface intercept - // - G4double A,B,C; - - A= sqr(v.x()/xSemiAxis) + sqr(v.y()/ySemiAxis) + sqr(v.z()/zSemiAxis); - C= (p * nearnorm) - 1.0; - B= 2.0 * (v * nearnorm); - - C= B*B - 4.0*A*C; - if (C > 0.0) + G4double px = p.x() * fSx; + G4double py = p.y() * fSy; + G4double vx = v.x() * fSx; + G4double vy = v.y() * fSy; + G4double rr = px * px + py * py + pz * pz; + G4double pv = px * vx + py * vy + pz * vz; + G4double distR = fQ1 * rr - fQ2; + if (distR >= -halfTolerance && pv > 0.) { - G4double distR= (-B + std::sqrt(C) ) / (2.0*A); - if (distR < 0.0) + if (calcNorm) { - distR= 0.0; - if (!calcNorm) {return 0.0;} - } - if (distR < distMin) - { - distMin= distR; - surface= kCurvedSurf; + *validNorm = true; + *n = G4ThreeVector(px*fSx, py*fSy, pz*fSz).unit(); } + return 0.; } - // set normal if requested + // Just in case check if point is outside (normally it should never be) // + if (std::max(distZ, distR) > halfTolerance) + { +#ifdef G4SPECSDEBUG + std::ostringstream message; + G4int oldprc = message.precision(16); + message << "Point p is outside (!?) of solid: " + << GetName() << G4endl; + message << "Position: " << p << G4endl;; + message << "Direction: " << v; + G4cout.precision(oldprc); + G4Exception("G4Ellipsoid::DistanceToOut(p,v)", "GeomSolids1002", + JustWarning, message ); + DumpInfo(); +#endif + if (calcNorm) + { + *validNorm = true; + *n = ApproxSurfaceNormal(p); + } + return 0.; + } + + // Set coefficients of quadratic equation: A t^2 + 2B t + C = 0 + // + G4double A = vx * vx + vy * vy + vz * vz; + G4double B = pv; + G4double C = rr - fR * fR; + G4double D = B * B - A * C; + // It is expected that the point is located inside the sphere, so + // max term in the expression for discriminant is A * R^2 and + // max calculation error can be derived as follows: + // A * (1 + 2e) * R^2 * (1 + 2e) = A * R^2 + (4 * A * R^2 * e) + G4double EPS = 4. * A * fR * fR * DBL_EPSILON; // calculation error + + if (D <= EPS) // no intersection + { + if (calcNorm) + { + *validNorm = true; + *n = G4ThreeVector(px*fSx, py*fSy, pz*fSz).unit(); + } + return 0.; + } + + // Find intersection with Z cuts + // + G4double tzmax = (vz == 0.) ? DBL_MAX : (std::copysign(dzcut, vz) - pzcut) / vz; + + // Find intersection with lateral surface + // + G4double tmp = -B - std::copysign(std::sqrt(D), B); + G4double trmax = (tmp < 0.) ? C/tmp : tmp/A; + + // Find distance and set normal, if required + // + G4double tmax = std::min(tzmax, trmax); + //if (tmax < halfTolerance) tmax = 0.; + if (calcNorm) { - if (surface == kNoSurf) + *validNorm = true; + if (tmax == tzmax) { - *validNorm = false; + G4double pznew = pz + tmax * vz; + n->set(0., 0., (pznew > fZMidCut) ? 1. : -1.); } else { - *validNorm = true; - switch (surface) - { - case kPlaneSurf: - *n= G4ThreeVector(0.,0.,(v.z() > 0.0 ? 1. : -1.)); - break; - case kCurvedSurf: - { - G4ThreeVector pexit= p + distMin*v; - G4ThreeVector truenorm(pexit.x()/(xSemiAxis*xSemiAxis), - pexit.y()/(ySemiAxis*ySemiAxis), - pexit.z()/(zSemiAxis*zSemiAxis)); - truenorm *= 1.0/truenorm.mag(); - *n= truenorm; - } break; - default: // Should never reach this case ... - DumpInfo(); - std::ostringstream message; - G4int oldprc = message.precision(16); - message << "Undefined side for valid surface normal to solid." - << G4endl - << "Position:" << G4endl - << " p.x() = " << p.x()/mm << " mm" << G4endl - << " p.y() = " << p.y()/mm << " mm" << G4endl - << " p.z() = " << p.z()/mm << " mm" << G4endl - << "Direction:" << G4endl << G4endl - << " v.x() = " << v.x() << G4endl - << " v.y() = " << v.y() << G4endl - << " v.z() = " << v.z() << G4endl - << "Proposed distance :" << G4endl - << " distMin = " << distMin/mm << " mm"; - message.precision(oldprc); - G4Exception("G4Ellipsoid::DistanceToOut(p,v,..)", - "GeomSolids1002", JustWarning, message); - break; - } + G4double nx = (px + tmax * vx) * fSx; + G4double ny = (py + tmax * vy) * fSy; + G4double nz = (pz + tmax * vz) * fSz; + *n = G4ThreeVector(nx, ny, nz).unit(); } } - - return distMin; -} - -/////////////////////////////////////////////////////////////////////////////// -// -// Calculate distance (<=actual) to closest surface of shape from inside - -G4double G4Ellipsoid::DistanceToOut(const G4ThreeVector& p) const -{ - G4double distR, distZ; - -#ifdef G4SPECSDEBUG - if( Inside(p) == kOutside ) - { - DumpInfo(); - std::ostringstream message; - G4int oldprc = message.precision(16); - message << "Point p is outside !?" << G4endl - << "Position:" << G4endl - << " p.x() = " << p.x()/mm << " mm" << G4endl - << " p.y() = " << p.y()/mm << " mm" << G4endl - << " p.z() = " << p.z()/mm << " mm"; - message.precision(oldprc) ; - G4Exception("G4Ellipsoid::DistanceToOut(p)", "GeomSolids1002", - JustWarning, message); - } -#endif - - // Normal vector: parallel to normal, magnitude 1/(characteristic radius) - // - G4ThreeVector norm(p.x()/(xSemiAxis*xSemiAxis), - p.y()/(ySemiAxis*ySemiAxis), - p.z()/(zSemiAxis*zSemiAxis)); - - // the following is a safe inlined "radius= min(1.0/norm.mag(),p.mag()) - // - G4double radius= p.mag(); - G4double tmp= norm.mag(); - if ( (tmp > 0.0) && (1.0 < radius*tmp) ) {radius = 1.0/tmp;} - - // Approximate distance to curved surface ( <= actual distance ) - // - distR = (1.0 - p*norm) * radius / 2.0; - - // Distance to z-cut plane - // - distZ = p.z() - zBottomCut; - if (distZ < 0.0) {distZ= zTopCut - p.z();} - - // Distance to closest surface from inside - // - if ( (distZ < 0.0) || (distR < 0.0) ) - { - return 0.0; - } - else - { - return (distZ < distR) ? distZ : distR; - } + return tmax; } ////////////////////////////////////////////////////////////////////////// // -// G4EntityType +// Estimate distance to surface from inside + +G4double G4Ellipsoid::DistanceToOut(const G4ThreeVector& p) const +{ + // Safety distance in z direction + G4double distZ = std::min(fZTopCut - p.z(), p.z() - fZBottomCut); + + // Safety distance to lateral surface + G4double x = p.x() * fSx; + G4double y = p.y() * fSy; + G4double z = p.z() * fSz; + G4double distR = fR - std::sqrt(x*x + y*y + z*z); + + // Return safety to out + G4double dist = std::min(distZ, distR); + return (dist < 0.) ? 0. : dist; +} + +////////////////////////////////////////////////////////////////////////// +// +// Return entity type G4GeometryType G4Ellipsoid::GetEntityType() const { @@ -650,7 +655,7 @@ G4VSolid* G4Ellipsoid::Clone() const ////////////////////////////////////////////////////////////////////////// // -// Stream object contents to an output stream +// Stream object contents to output stream std::ostream& G4Ellipsoid::StreamInfo( std::ostream& os ) const { @@ -658,90 +663,196 @@ std::ostream& G4Ellipsoid::StreamInfo( std::ostream& os ) const os << "-----------------------------------------------------------\n" << " *** Dump for solid - " << GetName() << " ***\n" << " ===================================================\n" - << " Solid type: G4Ellipsoid\n" + << " Solid type: " << GetEntityType() << "\n" << " Parameters: \n" - - << " semi-axis x: " << xSemiAxis/mm << " mm \n" - << " semi-axis y: " << ySemiAxis/mm << " mm \n" - << " semi-axis z: " << zSemiAxis/mm << " mm \n" - << " max semi-axis: " << semiAxisMax/mm << " mm \n" - << " lower cut plane level z: " << zBottomCut/mm << " mm \n" - << " upper cut plane level z: " << zTopCut/mm << " mm \n" + << " semi-axis x: " << GetDx()/mm << " mm \n" + << " semi-axis y: " << GetDy()/mm << " mm \n" + << " semi-axis z: " << GetDz()/mm << " mm \n" + << " lower cut in z: " << GetZBottomCut()/mm << " mm \n" + << " upper cut in z: " << GetZTopCut()/mm << " mm \n" << "-----------------------------------------------------------\n"; os.precision(oldprc); - return os; } -//////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // -// GetPointOnSurface +// Return volume + +G4double G4Ellipsoid::GetCubicVolume() +{ + if (fCubicVolume == 0.) + { + G4double piAB_3 = CLHEP::pi * fDx * fDy / 3.; + fCubicVolume = 4. * piAB_3 * fDz; + if (fZBottomCut > -fDz) + { + G4double hbot = 1. + fZBottomCut / fDz; + fCubicVolume -= piAB_3 * hbot * hbot * (2. * fDz - fZBottomCut); + } + if (fZTopCut < fDz) + { + G4double htop = 1. - fZTopCut / fDz; + fCubicVolume -= piAB_3 * htop * htop * (2. * fDz + fZTopCut); + } + } + return fCubicVolume; +} + +////////////////////////////////////////////////////////////////////////// +// +// Calculate area of lateral surface + +G4double G4Ellipsoid::LateralSurfaceArea() const +{ + const G4int Nphi = 100; + const G4int Nz = 200; + G4double rho[Nz + 1]; + + // Set array of rho + G4double zbot = fZBottomCut / fDz; + G4double ztop = fZTopCut / fDz; + G4double dz = (ztop - zbot) / Nz; + for (G4int iz = 0; iz < Nz; ++iz) + { + G4double z = zbot + iz * dz; + rho[iz] = std::sqrt((1. + z) * (1. - z)); + } + rho[Nz] = std::sqrt((1. + ztop) * (1. - ztop)); + + // Compute area + zbot = fZBottomCut; + ztop = fZTopCut; + dz = (ztop - zbot) / Nz; + G4double area = 0.; + G4double dphi = CLHEP::halfpi / Nphi; + for (G4int iphi = 0; iphi < Nphi; ++iphi) + { + G4double phi1 = iphi * dphi; + G4double phi2 = (iphi == Nphi - 1) ? CLHEP::halfpi : phi1 + dphi; + G4double cos1 = std::cos(phi1) * fDx; + G4double cos2 = std::cos(phi2) * fDx; + G4double sin1 = std::sin(phi1) * fDy; + G4double sin2 = std::sin(phi2) * fDy; + for (G4int iz = 0; iz < Nz; ++iz) + { + G4double z1 = zbot + iz * dz; + G4double z2 = (iz == Nz - 1) ? ztop : z1 + dz; + G4double rho1 = rho[iz]; + G4double rho2 = rho[iz + 1]; + G4ThreeVector p1(rho1 * cos1, rho1 * sin1, z1); + G4ThreeVector p2(rho1 * cos2, rho1 * sin2, z1); + G4ThreeVector p3(rho2 * cos1, rho2 * sin1, z2); + G4ThreeVector p4(rho2 * cos2, rho2 * sin2, z2); + area += ((p4 - p1).cross(p3 - p2)).mag(); + } + } + return 2. * area; +} + +////////////////////////////////////////////////////////////////////////// +// +// Return surface area + +G4double G4Ellipsoid::GetSurfaceArea() +{ + if (fSurfaceArea == 0.) + { + G4double piAB = CLHEP::pi * fDx * fDy; + fSurfaceArea = LateralSurfaceArea(); + if (fZBottomCut > -fDz) + { + G4double hbot = 1. + fZBottomCut / fDz; + fSurfaceArea += piAB * hbot * (2. - hbot); + } + if (fZTopCut < fDz) + { + G4double htop = 1. - fZTopCut / fDz; + fSurfaceArea += piAB * htop * (2. - htop); + } + } + return fSurfaceArea; +} + +////////////////////////////////////////////////////////////////////////// +// +// Return random point on surface G4ThreeVector G4Ellipsoid::GetPointOnSurface() const { - G4double aTop, aBottom, aCurved, chose, xRand, yRand, zRand, phi; - G4double cosphi, sinphi, costheta, sintheta, alpha, beta, max1, max2, max3; + G4double A = GetDx(); + G4double B = GetDy(); + G4double C = GetDz(); + G4double Zbot = GetZBottomCut(); + G4double Ztop = GetZTopCut(); - max1 = xSemiAxis > ySemiAxis ? xSemiAxis : ySemiAxis; - max1 = max1 > zSemiAxis ? max1 : zSemiAxis; - if (max1 == xSemiAxis) { max2 = ySemiAxis; max3 = zSemiAxis; } - else if (max1 == ySemiAxis) { max2 = xSemiAxis; max3 = zSemiAxis; } - else { max2 = xSemiAxis; max3 = ySemiAxis; } + // Calculate cut areas + G4double Hbot = 1. + Zbot / C; + G4double Htop = 1. - Ztop / C; + G4double piAB = CLHEP::pi * A * B; + G4double Sbot = piAB * Hbot * (2. - Hbot); + G4double Stop = piAB * Htop * (2. - Htop); - phi = G4RandFlat::shoot(0.,twopi); - - cosphi = std::cos(phi); sinphi = std::sin(phi); - costheta = G4RandFlat::shoot(zBottomCut,zTopCut)/zSemiAxis; - sintheta = std::sqrt(1.-sqr(costheta)); - - alpha = 1.-sqr(max2/max1); beta = 1.-sqr(max3/max1); - - aTop = pi*xSemiAxis*ySemiAxis*(1 - sqr(zTopCut/zSemiAxis)); - aBottom = pi*xSemiAxis*ySemiAxis*(1 - sqr(zBottomCut/zSemiAxis)); - - // approximation - // from:" http://www.citr.auckland.ac.nz/techreports/2004/CITR-TR-139.pdf" - aCurved = 4.*pi*max1*max2*(1.-1./6.*(alpha+beta)- - 1./120.*(3.*sqr(alpha)+2.*alpha*beta+3.*sqr(beta))); + // Get area of lateral surface + if (fLateralArea == 0.) + { + G4AutoLock l(&lateralareaMutex); + fLateralArea = LateralSurfaceArea(); + l.unlock(); + } + G4double Slat = fLateralArea; - aCurved *= 0.5*(1.2*zTopCut/zSemiAxis - 1.2*zBottomCut/zSemiAxis); - - if( ( zTopCut >= zSemiAxis && zBottomCut <= -1.*zSemiAxis ) - || ( zTopCut == 0 && zBottomCut ==0 ) ) + // Select surface (0 - bottom cut, 1 - lateral surface, 2 - top cut) + G4double select = (Sbot + Slat + Stop) * G4QuickRand(); + G4int k = 0; + if (select > Sbot) k = 1; + if (select > Sbot + Slat) k = 2; + + // Pick random point on selected surface (rejection sampling) + G4ThreeVector p; + switch (k) { - aTop = 0; aBottom = 0; - } - - chose = G4RandFlat::shoot(0.,aTop + aBottom + aCurved); - - if(chose < aCurved) - { - xRand = xSemiAxis*sintheta*cosphi; - yRand = ySemiAxis*sintheta*sinphi; - zRand = zSemiAxis*costheta; - return G4ThreeVector (xRand,yRand,zRand); - } - else if(chose >= aCurved && chose < aCurved + aTop) - { - xRand = G4RandFlat::shoot(-1.,1.)*xSemiAxis - * std::sqrt(1-sqr(zTopCut/zSemiAxis)); - yRand = G4RandFlat::shoot(-1.,1.)*ySemiAxis - * std::sqrt(1.-sqr(zTopCut/zSemiAxis)-sqr(xRand/xSemiAxis)); - zRand = zTopCut; - return G4ThreeVector (xRand,yRand,zRand); - } - else - { - xRand = G4RandFlat::shoot(-1.,1.)*xSemiAxis - * std::sqrt(1-sqr(zBottomCut/zSemiAxis)); - yRand = G4RandFlat::shoot(-1.,1.)*ySemiAxis - * std::sqrt(1.-sqr(zBottomCut/zSemiAxis)-sqr(xRand/xSemiAxis)); - zRand = zBottomCut; - return G4ThreeVector (xRand,yRand,zRand); + case 0: // bootom z-cut + { + G4double scale = std::sqrt(Hbot * (2. - Hbot)); + G4TwoVector rho = G4RandomPointInEllipse(A * scale, B * scale); + p.set(rho.x(), rho.y(), Zbot); + break; + } + case 1: // lateral surface + { + G4double x, y, z; + G4double mu_max = std::max(std::max(A * B, A * C), B * C); + for (G4int i = 0; i < 1000; ++i) + { + // generate random point on unit sphere + z = (Zbot + (Ztop - Zbot) * G4QuickRand()) / C; + G4double rho = std::sqrt((1. + z) * (1. - z)); + G4double phi = CLHEP::twopi * G4QuickRand(); + x = rho * std::cos(phi); + y = rho * std::sin(phi); + // check acceptance + G4double xbc = x * B * C; + G4double yac = y * A * C; + G4double zab = z * A * B; + G4double mu = std::sqrt(xbc * xbc + yac * yac + zab * zab); + if (mu_max * G4QuickRand() <= mu) break; + } + p.set(A * x, B * y, C * z); + break; + } + case 2: // top z-cut + { + G4double scale = std::sqrt(Htop * (2. - Htop)); + G4TwoVector rho = G4RandomPointInEllipse(A * scale, B * scale); + p.set(rho.x(), rho.y(), Ztop); + break; + } } + return p; } -///////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////// // // Methods for visualisation @@ -750,21 +861,28 @@ void G4Ellipsoid::DescribeYourselfTo (G4VGraphicsScene& scene) const scene.AddSolid(*this); } +////////////////////////////////////////////////////////////////////////// +// +// Return vis extent + G4VisExtent G4Ellipsoid::GetExtent() const { - // Define the sides of the box into which the G4Ellipsoid instance would fit. - // - return G4VisExtent (-semiAxisMax, semiAxisMax, - -semiAxisMax, semiAxisMax, - -semiAxisMax, semiAxisMax); + return G4VisExtent(-fXmax, fXmax, -fYmax, fYmax, fZBottomCut, fZTopCut); } +////////////////////////////////////////////////////////////////////////// +// +// Create polyhedron + G4Polyhedron* G4Ellipsoid::CreatePolyhedron () const { - return new G4PolyhedronEllipsoid(xSemiAxis, ySemiAxis, zSemiAxis, - zBottomCut, zTopCut); + return new G4PolyhedronEllipsoid(fDx, fDy, fDz, fZBottomCut, fZTopCut); } +////////////////////////////////////////////////////////////////////////// +// +// Return pointer to polyhedron + G4Polyhedron* G4Ellipsoid::GetPolyhedron () const { if (fpPolyhedron == nullptr || diff --git a/source/geometry/solids/specific/src/G4Tet.cc b/source/geometry/solids/specific/src/G4Tet.cc index 0c58bc84be..46c1404f51 100644 --- a/source/geometry/solids/specific/src/G4Tet.cc +++ b/source/geometry/solids/specific/src/G4Tet.cc @@ -30,6 +30,7 @@ // Implementation for G4Tet class // // 03.09.2004 - Marcus Mendenhall, created +// 08.01.2020 - Evgueni Tcherniaev, complete revision, speed up // -------------------------------------------------------------------- #include "G4Tet.hh" @@ -42,16 +43,12 @@ #include "G4VPVParameterisation.hh" -#include "Randomize.hh" +#include "G4QuickRand.hh" #include "G4VGraphicsScene.hh" #include "G4Polyhedron.hh" #include "G4VisExtent.hh" -#include "G4ThreeVector.hh" - -#include - #include "G4AutoLock.hh" namespace @@ -64,158 +61,83 @@ using namespace CLHEP; //////////////////////////////////////////////////////////////////////// // // Constructor - create a tetrahedron -// This class is implemented separately from general polyhedra, -// because the simplex geometry can be computed very quickly, -// which may become important in situations imported from mesh generators, -// in which a very large number of G4Tets are created. // A Tet has all of its geometrical information precomputed // G4Tet::G4Tet(const G4String& pName, - G4ThreeVector anchor, - G4ThreeVector p2, - G4ThreeVector p3, - G4ThreeVector p4, G4bool* degeneracyFlag) + const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3, G4bool* degeneracyFlag) : G4VSolid(pName) { - // fV is vector from vertex to vertex - // - G4ThreeVector fV21=p2-anchor; - G4ThreeVector fV31=p3-anchor; - G4ThreeVector fV41=p4-anchor; - - // make sure this is a correctly oriented set of points for the tetrahedron - // - G4double signed_vol=fV21.cross(fV31).dot(fV41); - if(signed_vol<0.0) + // Check for degeneracy + G4bool degenerate = CheckDegeneracy(p0, p1, p2, p3); + if (degeneracyFlag) { - G4ThreeVector temp(p4); - p4=p3; - p3=temp; - temp=fV41; - fV41=fV31; - fV31=temp; + *degeneracyFlag = degenerate; } - fCubicVolume = std::fabs(signed_vol) / 6.; - - G4ThreeVector fV24=p2-p4; - G4ThreeVector fV43=p4-p3; - G4ThreeVector 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()); - - fDx=(fXMax-fXMin)*0.5; fDy=(fYMax-fYMin)*0.5; fDz=(fZMax-fZMin)*0.5; - - fMiddle=G4ThreeVector(fXMax+fXMin, fYMax+fYMin, fZMax+fZMin)*0.5; - fMaxSize=std::max(std::max(std::max((anchor-fMiddle).mag(), - (p2-fMiddle).mag()), - (p3-fMiddle).mag()), - (p4-fMiddle).mag()); - - G4bool degenerate=std::fabs(signed_vol) < 1e-9*fMaxSize*fMaxSize*fMaxSize; - - if(degeneracyFlag) *degeneracyFlag=degenerate; else if (degenerate) { - G4Exception("G4Tet::G4Tet()", "GeomSolids0002", FatalException, - "Degenerate tetrahedron not allowed."); + std::ostringstream message; + message << "Degenerate tetrahedron: " << GetName() << " !\n" + << " anchor: " << p0 << "\n" + << " p1 : " << p1 << "\n" + << " p2 : " << p2 << "\n" + << " p3 : " << p3 << "\n" + << " volume: " + << std::abs((p1 - p0).cross(p2 - p0).dot(p3 - p0))/6.; + G4Exception("G4Tet::G4Tet()", "GeomSolids0002", FatalException, message); } - fTol=1e-9*(std::fabs(fXMin)+std::fabs(fXMax)+std::fabs(fYMin) - +std::fabs(fYMax)+std::fabs(fZMin)+std::fabs(fZMax)); - // fTol=kCarTolerance; + // Define surface thickness + halfTolerance = 0.5 * kCarTolerance; - fAnchor=anchor; - fP2=p2; - fP3=p3; - fP4=p4; - - G4ThreeVector fCenter123=(anchor+p2+p3)*(1.0/3.0); // face center - G4ThreeVector fCenter134=(anchor+p4+p3)*(1.0/3.0); - G4ThreeVector fCenter142=(anchor+p4+p2)*(1.0/3.0); - G4ThreeVector fCenter234=(p2+p3+p4)*(1.0/3.0); - - // compute area of each triangular face by cross product - // and sum for total surface area - - G4ThreeVector normal123=fV31.cross(fV21); - G4ThreeVector normal134=fV41.cross(fV31); - G4ThreeVector normal142=fV21.cross(fV41); - G4ThreeVector normal234=fV32.cross(fV43); - - fSurfaceArea=( - normal123.mag()+ - normal134.mag()+ - normal142.mag()+ - normal234.mag() - )/2.0; - - fNormal123=normal123.unit(); - fNormal134=normal134.unit(); - fNormal142=normal142.unit(); - fNormal234=normal234.unit(); - - fCdotN123=fCenter123.dot(fNormal123); - fCdotN134=fCenter134.dot(fNormal134); - fCdotN142=fCenter142.dot(fNormal142); - fCdotN234=fCenter234.dot(fNormal234); + // Set data members + Initialize(p0, p1, p2, p3); } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Fake default constructor - sets only member data and allocates memory // for usage restricted to object persistency. // G4Tet::G4Tet( __void__& a ) - : G4VSolid(a), - fAnchor(0,0,0), fP2(0,0,0), fP3(0,0,0), fP4(0,0,0), fMiddle(0,0,0), - fNormal123(0,0,0), fNormal142(0,0,0), fNormal134(0,0,0), - fNormal234(0,0,0), - fCdotN123(0.), fCdotN142(0.), fCdotN134(0.), fCdotN234(0.), - fXMin(0.), fXMax(0.), fYMin(0.), fYMax(0.), fZMin(0.), fZMax(0.), - fDx(0.), fDy(0.), fDz(0.), fTol(0.), fMaxSize(0.) + : G4VSolid(a) { } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Destructor // G4Tet::~G4Tet() { - delete fpPolyhedron; fpPolyhedron = nullptr; + delete fpPolyhedron; fpPolyhedron = nullptr; } -/////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Copy constructor // G4Tet::G4Tet(const G4Tet& rhs) - : G4VSolid(rhs), - fCubicVolume(rhs.fCubicVolume), fSurfaceArea(rhs.fSurfaceArea), - fAnchor(rhs.fAnchor), - fP2(rhs.fP2), fP3(rhs.fP3), fP4(rhs.fP4), fMiddle(rhs.fMiddle), - fNormal123(rhs.fNormal123), fNormal142(rhs.fNormal142), - fNormal134(rhs.fNormal134), fNormal234(rhs.fNormal234), - warningFlag(rhs.warningFlag), fCdotN123(rhs.fCdotN123), - fCdotN142(rhs.fCdotN142), fCdotN134(rhs.fCdotN134), - fCdotN234(rhs.fCdotN234), fXMin(rhs.fXMin), fXMax(rhs.fXMax), - fYMin(rhs.fYMin), fYMax(rhs.fYMax), fZMin(rhs.fZMin), fZMax(rhs.fZMax), - fDx(rhs.fDx), fDy(rhs.fDy), fDz(rhs.fDz), fTol(rhs.fTol), - fMaxSize(rhs.fMaxSize) + : G4VSolid(rhs) { + halfTolerance = rhs.halfTolerance; + fCubicVolume = rhs.fCubicVolume; + fSurfaceArea = rhs.fSurfaceArea; + for (G4int i = 0; i < 4; ++i) { fVertex[i] = rhs.fVertex[i]; } + for (G4int i = 0; i < 4; ++i) { fNormal[i] = rhs.fNormal[i]; } + for (G4int i = 0; i < 4; ++i) { fDist[i] = rhs.fDist[i]; } + for (G4int i = 0; i < 4; ++i) { fArea[i] = rhs.fArea[i]; } + fBmin = rhs.fBmin; + fBmax = rhs.fBmax; } - -/////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Assignment operator // -G4Tet& G4Tet::operator = (const G4Tet& rhs) +G4Tet& G4Tet::operator = (const G4Tet& rhs) { // Check assignment to self // @@ -227,39 +149,159 @@ G4Tet& G4Tet::operator = (const G4Tet& rhs) // Copy data // - fCubicVolume = rhs.fCubicVolume; fSurfaceArea = rhs.fSurfaceArea; - fAnchor = rhs.fAnchor; - fP2 = rhs.fP2; fP3 = rhs.fP3; fP4 = rhs.fP4; fMiddle = rhs.fMiddle; - fNormal123 = rhs.fNormal123; fNormal142 = rhs.fNormal142; - fNormal134 = rhs.fNormal134; fNormal234 = rhs.fNormal234; - warningFlag = rhs.warningFlag; fCdotN123 = rhs.fCdotN123; - fCdotN142 = rhs.fCdotN142; fCdotN134 = rhs.fCdotN134; - fCdotN234 = rhs.fCdotN234; fXMin = rhs.fXMin; fXMax = rhs.fXMax; - fYMin = rhs.fYMin; fYMax = rhs.fYMax; fZMin = rhs.fZMin; fZMax = rhs.fZMax; - fDx = rhs.fDx; fDy = rhs.fDy; fDz = rhs.fDz; fTol = rhs.fTol; - fMaxSize = rhs.fMaxSize; + halfTolerance = rhs.halfTolerance; + fCubicVolume = rhs.fCubicVolume; + fSurfaceArea = rhs.fSurfaceArea; + for (G4int i = 0; i < 4; ++i) { fVertex[i] = rhs.fVertex[i]; } + for (G4int i = 0; i < 4; ++i) { fNormal[i] = rhs.fNormal[i]; } + for (G4int i = 0; i < 4; ++i) { fDist[i] = rhs.fDist[i]; } + for (G4int i = 0; i < 4; ++i) { fArea[i] = rhs.fArea[i]; } + fBmin = rhs.fBmin; + fBmax = rhs.fBmax; fRebuildPolyhedron = false; delete fpPolyhedron; fpPolyhedron = nullptr; return *this; } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// CheckDegeneracy +// Return true if tetrahedron is degenerate +// Tetrahedron is concidered as degenerate in case if its minimal +// height is less than degeneracy tolerance // -G4bool G4Tet::CheckDegeneracy( G4ThreeVector anchor, - G4ThreeVector p2, - G4ThreeVector p3, - G4ThreeVector p4 ) +G4bool G4Tet::CheckDegeneracy(const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3) const { - G4bool result; - G4Tet* object=new G4Tet("temp",anchor,p2,p3,p4,&result); - delete object; - return result; + G4double hmin = 4. * kCarTolerance; // degeneracy tolerance + + // Calculate volume + G4double vol = std::abs((p1 - p0).cross(p2 - p0).dot(p3 - p0)); + + // Calculate face areas squared + G4double ss[4]; + ss[0] = ((p1 - p0).cross(p2 - p0)).mag2(); + ss[1] = ((p2 - p0).cross(p3 - p0)).mag2(); + ss[2] = ((p3 - p0).cross(p1 - p0)).mag2(); + ss[3] = ((p2 - p1).cross(p3 - p1)).mag2(); + + // Find face with max area + G4int k = 0; + for (G4int i = 1; i < 4; ++i) { if (ss[i] > ss[k]) k = i; } + + // Check: vol^2 / s^2 <= hmin^2 + return (vol*vol <= ss[k]*hmin*hmin); } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// +// +// Set data members +// +void G4Tet::Initialize(const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3) +{ + // Set vertices + fVertex[0] = p0; + fVertex[1] = p1; + fVertex[2] = p2; + fVertex[3] = p3; + + G4ThreeVector norm[4]; + norm[0] = (p2 - p0).cross(p1 - p0); + norm[1] = (p3 - p0).cross(p2 - p0); + norm[2] = (p1 - p0).cross(p3 - p0); + norm[3] = (p2 - p1).cross(p3 - p1); + G4double volume = norm[0].dot(p3 - p0); + if (volume > 0.) + { + for (G4int i = 0; i < 4; ++i) { norm[i] = -norm[i]; } + } + + // Set normals to face planes + for (G4int i = 0; i < 4; ++i) { fNormal[i] = norm[i].unit(); } + + // Set distances to planes + for (G4int i = 0; i < 3; ++i) { fDist[i] = fNormal[i].dot(p0); } + fDist[3] = fNormal[3].dot(p1); + + // Set face areas + for (G4int i = 0; i < 4; ++i) { fArea[i] = 0.5*norm[i].mag(); } + + // Set bounding box + for (G4int i = 0; i < 3; ++i) + { + fBmin[i] = std::min(std::min(std::min(p0[i], p1[i]), p2[i]), p3[i]); + fBmax[i] = std::max(std::max(std::max(p0[i], p1[i]), p2[i]), p3[i]); + } + + // Set volume and surface area + fCubicVolume = std::abs(volume)/6.; + fSurfaceArea = fArea[0] + fArea[1] + fArea[2] + fArea[3]; +} + +//////////////////////////////////////////////////////////////////////// +// +// Set vertices +// +void G4Tet::SetVertices(const G4ThreeVector& p0, + const G4ThreeVector& p1, + const G4ThreeVector& p2, + const G4ThreeVector& p3) +{ + // Check for degeneracy + G4bool degenerate = CheckDegeneracy(p0, p1, p2, p3); + if (degenerate) + { + std::ostringstream message; + message << "Degenerate tetrahedron is not permitted: " << GetName() << " !\n" + << " anchor: " << p0 << "\n" + << " p1 : " << p1 << "\n" + << " p2 : " << p2 << "\n" + << " p3 : " << p3 << "\n" + << " volume: " + << std::abs((p1 - p0).cross(p2 - p0).dot(p3 - p0))/6.; + G4Exception("G4Tet::G4SetVertices()", "GeomSolids0002", + FatalException, message); + } + + // Set data members + Initialize(p0, p1, p2, p3); + + // Set flag to rebuild polyhedron + fRebuildPolyhedron = true; +} + +//////////////////////////////////////////////////////////////////////// +// +// Return four vertices +// +void G4Tet::GetVertices(G4ThreeVector& p0, + G4ThreeVector& p1, + G4ThreeVector& p2, + G4ThreeVector& p3) const +{ + p0 = fVertex[0]; + p1 = fVertex[1]; + p2 = fVertex[2]; + p3 = fVertex[3]; +} + +//////////////////////////////////////////////////////////////////////// +// +// Return std::vector of vertices +// +std::vector G4Tet::GetVertices() const +{ + std::vector vertices(4); + for (G4int i = 0; i < 4; ++i) { vertices[i] = fVertex[i]; } + return vertices; +} + +//////////////////////////////////////////////////////////////////////// // // Dispatch to parameterisation for replication mechanism dimension // computation & modification. @@ -268,35 +310,19 @@ void G4Tet::ComputeDimensions(G4VPVParameterisation* , const G4int , const G4VPhysicalVolume* ) { - G4Exception("G4Tet::ComputeDimensions()", - "GeomSolids0001", FatalException, - "G4Tet does not support Parameterisation."); } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// Get bounding box +// Return bounding box // void G4Tet::BoundingLimits(G4ThreeVector& pMin, G4ThreeVector& pMax) const { - pMin.set(fXMin,fYMin,fZMin); - pMax.set(fXMax,fYMax,fZMax); - - // Check correctness of the bounding box - // - if (pMin.x() >= pMax.x() || pMin.y() >= pMax.y() || pMin.z() >= pMax.z()) - { - std::ostringstream message; - message << "Bad bounding box (min >= max) for solid: " - << GetName() << " !" - << "\npMin = " << pMin - << "\npMax = " << pMax; - G4Exception("G4Tet::BoundingLimits()", "GeomMgt0001", JustWarning, message); - DumpInfo(); - } + pMin = fBmin; + pMax = fBmax; } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Calculate extent under transform and specified limit // @@ -346,279 +372,172 @@ G4bool G4Tet::CalculateExtent(const EAxis pAxis, #endif } -///////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// Return whether point inside/outside/on surface, using tolerance +// Return whether point inside/outside/on surface // EInside G4Tet::Inside(const G4ThreeVector& p) const { - G4double r123, r134, r142, r234; + G4double dd[4]; + for (G4int i = 0; i < 4; ++i) { dd[i] = fNormal[i].dot(p) - fDist[i]; } - // this is written to allow if-statement truncation so the outside test - // (where most of the world is) can fail very quickly and efficiently - - if ( (r123=p.dot(fNormal123)-fCdotN123) > fTol || - (r134=p.dot(fNormal134)-fCdotN134) > fTol || - (r142=p.dot(fNormal142)-fCdotN142) > fTol || - (r234=p.dot(fNormal234)-fCdotN234) > fTol ) - { - return kOutside; // at least one is out! - } - else if( (r123 < -fTol)&&(r134 < -fTol)&&(r142 < -fTol)&&(r234 < -fTol) ) - { - return kInside; // all are definitively inside - } - else - { - return kSurface; // too close to tell - } + G4double dist = std::max(std::max(std::max(dd[0], dd[1]), dd[2]), dd[3]); + return (dist <= -halfTolerance) ? + kInside : ((dist <= halfTolerance) ? kSurface : kOutside); } -/////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// Calculate side nearest to p, and return normal -// If two sides are equidistant, normal of first side (x/y/z) -// encountered returned. -// This assumes that we are looking from the inside! +// Return unit normal to surface at p // G4ThreeVector G4Tet::SurfaceNormal( const G4ThreeVector& p) const { - G4double r123=std::fabs(p.dot(fNormal123)-fCdotN123); - G4double r134=std::fabs(p.dot(fNormal134)-fCdotN134); - G4double r142=std::fabs(p.dot(fNormal142)-fCdotN142); - G4double r234=std::fabs(p.dot(fNormal234)-fCdotN234); + G4double k[4]; + for (G4int i = 0; i < 4; ++i) + { + k[i] = std::abs(fNormal[i].dot(p) - fDist[i]) <= halfTolerance; + } + G4double nsurf = k[0] + k[1] + k[2] + k[3]; + G4ThreeVector norm = + k[0]*fNormal[0] + k[1]*fNormal[1] + k[2]*fNormal[2] + k[3]*fNormal[3]; - const G4double delta = 0.5*kCarTolerance; - G4ThreeVector sumnorm(0., 0., 0.); - G4int noSurfaces=0; - - if (r123 <= delta) + if (nsurf == 1.) return norm; + else if (nsurf > 1.) return norm.unit(); // edge or vertex { - ++noSurfaces; - sumnorm= fNormal123; - } - - if (r134 <= delta) - { - ++noSurfaces; - sumnorm += fNormal134; - } - - if (r142 <= delta) - { - ++noSurfaces; - sumnorm += fNormal142; - } - if (r234 <= delta) - { - ++noSurfaces; - sumnorm += fNormal234; - } - - if( noSurfaces > 0 ) - { - if( noSurfaces == 1 ) - { - return sumnorm; - } - else - { - return sumnorm.unit(); - } - } - else // Approximative Surface Normal - { - - if( (r123<=r134) && (r123<=r142) && (r123<=r234) ) { return fNormal123; } - else if ( (r134<=r142) && (r134<=r234) ) { return fNormal134; } - else if (r142 <= r234) { return fNormal142; } - return fNormal234; +#ifdef G4SPECSDEBUG + std::ostringstream message; + G4int oldprc = message.precision(16); + message << "Point p is not on surface (!?) of solid: " + << GetName() << "\n"; + message << "Position:\n"; + message << " p.x() = " << p.x()/mm << " mm\n"; + message << " p.y() = " << p.y()/mm << " mm\n"; + message << " p.z() = " << p.z()/mm << " mm"; + G4cout.precision(oldprc); + G4Exception("G4Tet::SurfaceNormal(p)", "GeomSolids1002", + JustWarning, message ); + DumpInfo(); +#endif + return ApproxSurfaceNormal(p); } } -/////////////////////////////////////////////////////////////////////////// + +//////////////////////////////////////////////////////////////////////// // -// Calculate distance to box from an outside point -// - return kInfinity if no intersection. -// All this is very unrolled, for speed. +// Find surface nearest to point and return corresponding normal +// This method normally should not be called +// +G4ThreeVector G4Tet::ApproxSurfaceNormal(const G4ThreeVector& p) const +{ + G4double dist = -DBL_MAX; + G4int iside = 0; + for (G4int i = 0; i < 4; ++i) + { + G4double d = fNormal[i].dot(p) - fDist[i]; + if (d > dist) { dist = d; iside = i; } + } + return fNormal[iside]; +} + +//////////////////////////////////////////////////////////////////////// +// +// Calculate distance to surface from outside, +// return kInfinity if no intersection // G4double G4Tet::DistanceToIn(const G4ThreeVector& p, const G4ThreeVector& v) const { - G4ThreeVector vu(v.unit()), hp; - G4double vdotn, t, tmin=kInfinity; - - G4double extraDistance=10.0*fTol; // a little ways into the solid - - vdotn=-vu.dot(fNormal123); - if(vdotn > 1e-12) - { // this is a candidate face, since it is pointing at us - t=(p.dot(fNormal123)-fCdotN123)/vdotn; // # distance to intersection - if( (t>=-fTol) && (t= -halfTolerance) + { + if (cosa >= 0.) { return kInfinity; } + tin = std::max(tin, -dist/cosa); } - - vdotn=-vu.dot(fNormal134); - if(vdotn > 1e-12) - { // # this is a candidate face, since it is pointing at us - t=(p.dot(fNormal134)-fCdotN134)/vdotn; // # distance to intersection - if( (t>=-fTol) && (t 0.) + { + tout = std::min(tout, -dist/cosa); } + } - vdotn=-vu.dot(fNormal142); - if(vdotn > 1e-12) - { // # this is a candidate face, since it is pointing at us - t=(p.dot(fNormal142)-fCdotN142)/vdotn; // # distance to intersection - if( (t>=-fTol) && (t 1e-12) - { // # this is a candidate face, since it is pointing at us - t=(p.dot(fNormal234)-fCdotN234)/vdotn; // # distance to intersection - if( (t>=-fTol) && (t 0.) ? dist : 0.; } -///////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// Calcluate distance to surface of box from inside -// by calculating distances to box's x/y/z planes. -// Smallest distance is exact distance to exiting. +// Calcluate distance to surface from inside // -G4double G4Tet::DistanceToOut( const G4ThreeVector& p,const G4ThreeVector& v, - const G4bool calcNorm, - G4bool* validNorm, G4ThreeVector* n) const +G4double G4Tet::DistanceToOut(const G4ThreeVector& p, + const G4ThreeVector& v, + const G4bool calcNorm, + G4bool* validNorm, + G4ThreeVector* n) const { - G4ThreeVector vu(v.unit()); - G4double t1=kInfinity,t2=kInfinity,t3=kInfinity,t4=kInfinity, vdotn, tt; + // Calculate distances and cosines + G4double cosa[4], dist[4]; + G4int ind[4] = {0}, nside = 0; + for (G4int i = 0; i < 4; ++i) + { + G4double tmp = fNormal[i].dot(v); + cosa[i] = tmp; + ind[nside] = (tmp > 0) * i; + nside += (tmp > 0); + dist[i] = fNormal[i].dot(p) - fDist[i]; + } - vdotn=vu.dot(fNormal123); - if(vdotn > 1e-12) // #we're heading towards this face, so it is a candidate - { - t1=(fCdotN123-p.dot(fNormal123))/vdotn; // # distance to intersection - } + // Find intersection (in most of cases nside == 1) + G4double tout = DBL_MAX; + G4int iside = 0; + for (G4int i = 0; i < nside; ++i) + { + G4int k = ind[i]; + // Check: leaving the surface + if (dist[k] >= -halfTolerance) { tout = 0.; iside = k; break; } + // Compute distance to intersection + G4double tmp = -dist[k]/cosa[k]; + if (tmp < tout) { tout = tmp; iside = k; } + } - vdotn=vu.dot(fNormal134); - if(vdotn > 1e-12) // #we're heading towards this face, so it is a candidate - { - t2=(fCdotN134-p.dot(fNormal134))/vdotn; // # distance to intersection - } - - vdotn=vu.dot(fNormal142); - if(vdotn > 1e-12) // #we're heading towards this face, so it is a candidate - { - t3=(fCdotN142-p.dot(fNormal142))/vdotn; // # distance to intersection - } - - vdotn=vu.dot(fNormal234); - if(vdotn > 1e-12) // #we're heading towards this face, so it is a candidate - { - t4=(fCdotN234-p.dot(fNormal234))/vdotn; // # distance to intersection - } - - tt=std::min(std::min(std::min(t1,t2),t3),t4); - - if (warningFlag && (tt == kInfinity || tt < -fTol)) - { - DumpInfo(); - std::ostringstream message; - message << "No good intersection found or already outside!?" << G4endl - << "p = " << p / mm << "mm" << G4endl - << "v = " << v << G4endl - << "t1, t2, t3, t4 (mm) " - << t1/mm << ", " << t2/mm << ", " << t3/mm << ", " << t4/mm; - G4Exception("G4Tet::DistanceToOut(p,v,...)", "GeomSolids1002", - JustWarning, message); - if(validNorm) - { - *validNorm=false; // flag normal as meaningless - } - } - else if(calcNorm && n != nullptr) - { - G4ThreeVector normal; - if(tt==t1) { normal=fNormal123; } - else if (tt==t2) { normal=fNormal134; } - else if (tt==t3) { normal=fNormal142; } - else if (tt==t4) { normal=fNormal234; } - *n=normal; - if(validNorm) { *validNorm=true; } - } - - return std::max(tt,0.0); // avoid tt<0.0 by a tiny bit - // if we are right on a face + // Set normal, if required, and return distance to out + if (calcNorm) + { + *validNorm = true; + *n = fNormal[iside]; + } + return tout; } -//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // -// Calculate exact shortest distance to any boundary from inside -// - If outside return zero +// Calculate safety distance to surface from inside // G4double G4Tet::DistanceToOut(const G4ThreeVector& p) const { - G4double t1,t2,t3,t4; - t1=fCdotN123-p.dot(fNormal123); // distance to plane, positive if inside - t2=fCdotN134-p.dot(fNormal134); // distance to plane - t3=fCdotN142-p.dot(fNormal142); // distance to plane - t4=fCdotN234-p.dot(fNormal234); // distance to plane + G4double dd[4]; + for (G4int i = 0; i < 4; ++i) { dd[i] = fDist[i] - fNormal[i].dot(p); } - // if any one of these is negative, we are outside, - // so return zero in that case - - G4double tmin=std::min(std::min(std::min(t1,t2),t3),t4); - return (tmin < fTol)? 0:tmin; + G4double dist = std::min(std::min(std::min(dd[0], dd[1]), dd[2]), dd[3]); + return (dist > 0.) ? dist : 0.; } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // GetEntityType // @@ -627,7 +546,7 @@ G4GeometryType G4Tet::GetEntityType() const return G4String("G4Tet"); } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Make a clone of the object // @@ -636,7 +555,7 @@ G4VSolid* G4Tet::Clone() const return new G4Tet(*this); } -////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// // // Stream object contents to an output stream // @@ -644,86 +563,47 @@ std::ostream& G4Tet::StreamInfo(std::ostream& os) const { G4int oldprc = os.precision(16); os << "-----------------------------------------------------------\n" - << " *** Dump for solid - " << GetName() << " ***\n" - << " ===================================================\n" - << " Solid type: G4Tet\n" - << " Parameters: \n" - << " anchor: " << fAnchor/mm << " mm \n" - << " p2: " << fP2/mm << " mm \n" - << " p3: " << fP3/mm << " mm \n" - << " p4: " << fP4/mm << " mm \n" - << " normal123: " << fNormal123 << " \n" - << " normal134: " << fNormal134 << " \n" - << " normal142: " << fNormal142 << " \n" - << " normal234: " << fNormal234 << " \n" - << "-----------------------------------------------------------\n"; + << " *** Dump for solid - " << GetName() << " ***\n" + << " ===================================================\n" + << " Solid type: " << GetEntityType() << "\n" + << " Parameters: \n" + << " anchor: " << fVertex[0]/mm << " mm\n" + << " p1 : " << fVertex[1]/mm << " mm\n" + << " p2 : " << fVertex[2]/mm << " mm\n" + << " p3 : " << fVertex[3]/mm << " mm\n" + << "-----------------------------------------------------------\n"; os.precision(oldprc); - return os; } //////////////////////////////////////////////////////////////////////// // -// GetPointOnFace -// -// Auxiliary method for get point on surface -// -G4ThreeVector G4Tet::GetPointOnFace(G4ThreeVector p1, G4ThreeVector p2, - G4ThreeVector p3, G4double& area) const -{ - G4double lambda1,lambda2; - G4ThreeVector v, w; - - v = p3 - p1; - w = p1 - p2; - - lambda1 = G4RandFlat::shoot(0.,1.); - lambda2 = G4RandFlat::shoot(0.,lambda1); - - area = 0.5*(v.cross(w)).mag(); - - return (p2 + lambda1*w + lambda2*v); -} - -//////////////////////////////////////////////////////////////////////////// -// -// GetPointOnSurface +// Return random point on the surface // G4ThreeVector G4Tet::GetPointOnSurface() const { - G4double chose,aOne,aTwo,aThree,aFour; - G4ThreeVector p1, p2, p3, p4; - - p1 = GetPointOnFace(fAnchor,fP2,fP3,aOne); - p2 = GetPointOnFace(fAnchor,fP4,fP3,aTwo); - p3 = GetPointOnFace(fAnchor,fP4,fP2,aThree); - p4 = GetPointOnFace(fP4,fP3,fP2,aFour); - - chose = G4RandFlat::shoot(0.,aOne+aTwo+aThree+aFour); - if( (chose>=0.) && (chose =aOne) && (chose < aOne+aTwo) ) {return p2;} - else if( (chose>=aOne+aTwo) && (chose 1.) ? + p0 + e1*(1. - r1) + e2*(1. - r2) : p0 + e1*r1 + e2*r2; } //////////////////////////////////////////////////////////////////////// // -// GetVertices -// -std::vector G4Tet::GetVertices() const -{ - std::vector vertices(4); - vertices[0] = fAnchor; - vertices[1] = fP2; - vertices[2] = fP3; - vertices[3] = fP4; - - return vertices; -} - -//////////////////////////////////////////////////////////////////////// -// -// GetCubicVolume +// Return volume of the tetrahedron // G4double G4Tet::GetCubicVolume() { @@ -732,47 +612,60 @@ G4double G4Tet::GetCubicVolume() //////////////////////////////////////////////////////////////////////// // -// GetSurfaceArea +// Return surface area of the tetrahedron // G4double G4Tet::GetSurfaceArea() { return fSurfaceArea; } -// Methods for visualisation - //////////////////////////////////////////////////////////////////////// // -// DescribeYourselfTo +// Methods for visualisation // -void G4Tet::DescribeYourselfTo (G4VGraphicsScene& scene) const +void G4Tet::DescribeYourselfTo (G4VGraphicsScene& scene) const { scene.AddSolid (*this); } //////////////////////////////////////////////////////////////////////// // -// GetExtent +// Return VisExtent // -G4VisExtent G4Tet::GetExtent() const +G4VisExtent G4Tet::GetExtent() const { - return G4VisExtent (fXMin, fXMax, fYMin, fYMax, fZMin, fZMax); + return G4VisExtent(fBmin.x(), fBmax.x(), + fBmin.y(), fBmax.y(), + fBmin.z(), fBmax.z()); } //////////////////////////////////////////////////////////////////////// // // CreatePolyhedron // -G4Polyhedron* G4Tet::CreatePolyhedron() const +G4Polyhedron* G4Tet::CreatePolyhedron() const { - G4Polyhedron* ph = new G4Polyhedron; - G4double xyz[4][3]; - const G4int faces[4][4]={{1,3,2,0},{1,4,3,0},{1,2,4,0},{2,3,4,0}}; - xyz[0][0]=fAnchor.x(); xyz[0][1]=fAnchor.y(); xyz[0][2]=fAnchor.z(); - xyz[1][0]=fP2.x(); xyz[1][1]=fP2.y(); xyz[1][2]=fP2.z(); - xyz[2][0]=fP3.x(); xyz[2][1]=fP3.y(); xyz[2][2]=fP3.z(); - xyz[3][0]=fP4.x(); xyz[3][1]=fP4.y(); xyz[3][2]=fP4.z(); + // Check orientation of vertices + G4ThreeVector v1 = fVertex[1] - fVertex[0]; + G4ThreeVector v2 = fVertex[2] - fVertex[0]; + G4ThreeVector v3 = fVertex[3] - fVertex[0]; + G4bool invert = v1.cross(v2).dot(v3) < 0.; + G4int k2 = (invert) ? 3 : 2; + G4int k3 = (invert) ? 2 : 3; + // Set coordinates of vertices + G4double xyz[4][3]; + for (G4int i = 0; i < 3; ++i) + { + xyz[0][i] = fVertex[0][i]; + xyz[1][i] = fVertex[1][i]; + xyz[2][i] = fVertex[k2][i]; + xyz[3][i] = fVertex[k3][i]; + } + + // Create polyhedron + G4int faces[4][4] = { {1,3,2,0}, {1,4,3,0}, {1,2,4,0}, {2,3,4,0} }; + G4Polyhedron* ph = new G4Polyhedron; ph->createPolyhedron(4,4,xyz,faces); return ph; @@ -788,13 +681,13 @@ G4Polyhedron* G4Tet::GetPolyhedron() const fRebuildPolyhedron || fpPolyhedron->GetNumberOfRotationStepsAtTimeOfCreation() != fpPolyhedron->GetNumberOfRotationSteps()) - { - G4AutoLock l(&polyhedronMutex); - delete fpPolyhedron; - fpPolyhedron = CreatePolyhedron(); - fRebuildPolyhedron = false; - l.unlock(); - } + { + G4AutoLock l(&polyhedronMutex); + delete fpPolyhedron; + fpPolyhedron = CreatePolyhedron(); + fRebuildPolyhedron = false; + l.unlock(); + } return fpPolyhedron; } diff --git a/source/geometry/solids/specific/src/G4UTet.cc b/source/geometry/solids/specific/src/G4UTet.cc index 5e5f71e7ed..a8dcd3d151 100644 --- a/source/geometry/solids/specific/src/G4UTet.cc +++ b/source/geometry/solids/specific/src/G4UTet.cc @@ -134,6 +134,26 @@ G4UTet& G4UTet::operator = (const G4UTet& rhs) return *this; } +//////////////////////////////////////////////////////////////////////// +// +// Dispatch to parameterisation for replication mechanism dimension +// computation & modification. +// +void G4UTet::ComputeDimensions(G4VPVParameterisation*, + const G4int, + const G4VPhysicalVolume*) +{ +} + +////////////////////////////////////////////////////////////////////////// +// +// Make a clone of the object +// +G4VSolid* G4UTet::Clone() const +{ + return new G4UTet(*this); +} + /////////////////////////////////////////////////////////////////////////////// // // Accessors diff --git a/source/global/History b/source/global/History index 2b15698142..28de54d601 100644 --- a/source/global/History +++ b/source/global/History @@ -16,6 +16,18 @@ commit in the repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +December 03, 2019 Gabriele Cosmo (global-V10-05-27) +- Updated tag IDs for release 10.6.p01. + +January 30, 2020 Gabriele Cosmo +- Fixed symbol exporting problem in G4coutDestination on Windows; define + 'masterG4coutDestination' static pointer as a normal pointer. + Addressing problem report #2217. + +January 14, 2020 Gabriele Cosmo +- Added windefs.hh header, including protections for double definition + of global symbols from Windows Kits code. + December 03, 2019 Gabriele Cosmo (global-V10-05-26) - Updated tag IDs for release 10.6. diff --git a/source/global/management/include/G4Version.hh b/source/global/management/include/G4Version.hh index 6458e6e125..99720a4ded 100644 --- a/source/global/management/include/G4Version.hh +++ b/source/global/management/include/G4Version.hh @@ -40,11 +40,11 @@ // |--> patch number #ifndef G4VERSION_NUMBER -#define G4VERSION_NUMBER 1060 +#define G4VERSION_NUMBER 1061 #endif #ifndef G4VERSION_TAG -#define G4VERSION_TAG "$Name: geant4-10-06 $" +#define G4VERSION_TAG "$Name: geant4-10-06-patch-01 $" #endif // as variables @@ -53,10 +53,10 @@ #include "G4String.hh" #ifdef G4MULTITHREADED -static const G4String G4Version = "$Name: geant4-10-06 [MT]$"; +static const G4String G4Version = "$Name: geant4-10-06-patch-01 [MT]$"; #else -static const G4String G4Version = "$Name: geant4-10-06 $"; +static const G4String G4Version = "$Name: geant4-10-06-patch-01 $"; #endif -static const G4String G4Date = "(6-December-2019)"; +static const G4String G4Date = "(14-February-2020)"; #endif diff --git a/source/global/management/include/G4coutDestination.hh b/source/global/management/include/G4coutDestination.hh index 7803301fdf..9fe26fb292 100644 --- a/source/global/management/include/G4coutDestination.hh +++ b/source/global/management/include/G4coutDestination.hh @@ -91,7 +91,7 @@ class G4coutDestination // derived class should set this pointer. // Needed for some G4UIsession like GUIs // - static G4coutDestination* masterG4coutDestination; + G4coutDestination* masterG4coutDestination = nullptr; std::vector transformersCout; std::vector transformersCerr; diff --git a/source/global/management/include/windefs.hh b/source/global/management/include/windefs.hh new file mode 100644 index 0000000000..2c882140d8 --- /dev/null +++ b/source/global/management/include/windefs.hh @@ -0,0 +1,44 @@ +// +// ******************************************************************** +// * License and Disclaimer * +// * * +// * The Geant4 software is copyright of the Copyright Holders of * +// * the Geant4 Collaboration. It is provided under the terms and * +// * conditions of the Geant4 Software License, included in the file * +// * LICENSE and available at http://cern.ch/geant4/license . These * +// * include a list of copyright holders. * +// * * +// * Neither the authors of this software system, nor their employing * +// * institutes,nor the agencies providing financial support for this * +// * work make any representation or warranty, express or implied, * +// * regarding this software system or assume any liability for its * +// * use. Please see the license in the file LICENSE and URL above * +// * for the full disclaimer and the limitation of liability. * +// * * +// * This code implementation is the result of the scientific and * +// * technical work of the GEANT4 collaboration. * +// * By using, copying, modifying or distributing the software (or * +// * any work based on the software) you agree to acknowledge its * +// * use in resulting scientific publications, and indicate your * +// * acceptance of all terms of the Geant4 Software license. * +// ******************************************************************** +// +// GEANT 4 class header file +// +// Class Description: +// +// This file includes protections from Windows declarations in the +// global scope that may cause trouble in compilation. + +// -------------------------------------------------------------------- +#ifndef windefs_hh +#define windefs_hh + +#if defined(_WIN32) + #if defined (ABSOLUTE) + #undef ABSOLUTE + #undef RELATIVE + #endif +#endif // _WIN32 + +#endif // windefs_hh diff --git a/source/global/management/sources.cmake b/source/global/management/sources.cmake index c57ca222b3..ad12d8e188 100644 --- a/source/global/management/sources.cmake +++ b/source/global/management/sources.cmake @@ -49,6 +49,7 @@ GEANT4_DEFINE_MODULE(NAME G4globman globals.hh templates.hh tls.hh + windefs.hh G4Allocator.hh G4AutoDelete.hh G4ios.hh diff --git a/source/global/management/src/G4coutDestination.cc b/source/global/management/src/G4coutDestination.cc index 884d7a76a9..22e7c278f8 100644 --- a/source/global/management/src/G4coutDestination.cc +++ b/source/global/management/src/G4coutDestination.cc @@ -33,8 +33,6 @@ #include -G4coutDestination* G4coutDestination::masterG4coutDestination = 0; - G4coutDestination::~G4coutDestination() { } diff --git a/source/interfaces/History b/source/interfaces/History index 029ce06d45..870f4e87ec 100644 --- a/source/interfaces/History +++ b/source/interfaces/History @@ -16,6 +16,9 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +16 Jan 2020 Gabriele Cosmo (interfaces-V10-05-08) +- Fixed obsolete URLs in UIQt splash screen. + 30 Nov 2019 Igor Semeniouk (interfaces-V10-05-07) -- G4UIQt.cc: o fix ui command not stored in callback for icon defined via /gui/addIcon command. diff --git a/source/interfaces/basic/src/G4UIQt.cc b/source/interfaces/basic/src/G4UIQt.cc index 4ae411b990..68fd99862d 100644 --- a/source/interfaces/basic/src/G4UIQt.cc +++ b/source/interfaces/basic/src/G4UIQt.cc @@ -1622,7 +1622,7 @@ void G4UIQt::CreateViewerWidget(){ SetStartPage(std::string("
Geant4: "+ QApplication::applicationName ().toStdString()+ - "
 
http://geant4.web.cern.ch/geant4/
"+ + " 
http://cern.ch/geant4/"+ "

 

"+ "
Tooltips :
    "+ "
  • Start a new viewer :
    "+ @@ -1633,15 +1633,13 @@ void G4UIQt::CreateViewerWidget(){ "
"+ "
Documentation :
"+ "
Getting Help :
    "+ - "
  • If problems arise, try browsing the user forum to see whether or not your problem has already been encountered.
    If it hasn't, you can post it and Geant4 developers will do their best to find a solution. This is also a good place to
    discuss Geant4 topics in general.
    http://geant4-hn.slac.stanford.edu:5090/Geant4-HyperNews/index"+ - "
  • Get a look at Geant4 User support pages: http://geant4.kek.jp/geant4/support/index.shtml
  • "+ + "
  • If problems arise, try browsing the user forum to see whether or not your problem has already been encountered.
    If it hasn't, you can post it and Geant4 developers will do their best to find a solution. This is also a good place to
    discuss Geant4 topics in general.
    https://cern.ch/geant4-forum"+ + "
  • Get a look at Geant4 User support pages: http://cern.ch/geant4/support
  • "+ "
" ); diff --git a/source/particles/History b/source/particles/History index f27e0dc1ce..847b97fea4 100644 --- a/source/particles/History +++ b/source/particles/History @@ -16,6 +16,10 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +- 06 February 2020 Makoto Asai (particles-V10-05-11) + Fix broken if-block in G4DecayTableMessenger.cc. + Addressing to Bug report #2193. + - 05 November 2019 Vladimir Ivanchenko (particles-V10-05-10) G4NucleiProperties - in some hadronic models a fragment may be produced consisting of only neutrons or only protons; diff --git a/source/particles/management/src/G4DecayTableMessenger.cc b/source/particles/management/src/G4DecayTableMessenger.cc index d040af53a5..c37c31a124 100644 --- a/source/particles/management/src/G4DecayTableMessenger.cc +++ b/source/particles/management/src/G4DecayTableMessenger.cc @@ -167,17 +167,18 @@ G4ParticleDefinition* G4DecayTableMessenger::SetCurrentParticle() currentParticle = theParticleTable->FindParticle(particleName); idxCurrentChannel = -1; currentDecayTable = nullptr; - if (currentParticle != nullptr ){ - currentDecayTable = currentParticle->GetDecayTable(); - if ((currentDecayTable != nullptr ) && (idxCurrentChannel >0) ) { - currentChannel = currentDecayTable->GetDecayChannel(idxCurrentChannel); - } else { - idxCurrentChannel = -1; - currentChannel = nullptr; - } - } - } + + if (currentParticle != nullptr ){ + currentDecayTable = currentParticle->GetDecayTable(); + if ((currentDecayTable != nullptr ) && (idxCurrentChannel >0) ) { + currentChannel = currentDecayTable->GetDecayChannel(idxCurrentChannel); + } else { + idxCurrentChannel = -1; + currentChannel = nullptr; + } + } + return currentParticle; } diff --git a/source/physics_lists/GNUmakefile b/source/physics_lists/GNUmakefile index 4669170dbc..81347cdecd 100644 --- a/source/physics_lists/GNUmakefile +++ b/source/physics_lists/GNUmakefile @@ -13,7 +13,9 @@ GLOBLIBS += libG4tracking.lib libG4processes.lib libG4digits_hits.lib GLOBLIBS += libG4track.lib libG4particles.lib libG4geometry.lib GLOBLIBS += libG4materials.lib libG4graphics_reps.lib GLOBLIBS += libG4intercoms.lib libG4global.lib -GLOBLIBS += libG4expat.lib +ifdef G4LIB_BUILD_EXPAT + GLOBLIBS += libG4expat.lib +endif include $(G4INSTALL)/config/architecture.gmk diff --git a/source/physics_lists/builders/GNUmakefile b/source/physics_lists/builders/GNUmakefile index bf3816330e..277c73af6f 100644 --- a/source/physics_lists/builders/GNUmakefile +++ b/source/physics_lists/builders/GNUmakefile @@ -12,14 +12,10 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif ifdef G4LIB_BUILD_EXPAT CPPFLAGS += -I$(G4BASE)/externals/expat/include endif - CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/global/HEPRandom/include \ -I$(G4BASE)/global/HEPNumerics/include \ @@ -66,7 +62,7 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/processes/hadronic/models/util/include \ -I$(G4BASE)/processes/hadronic/models/binary_cascade/include \ -I$(G4BASE)/processes/hadronic/models/cascade/cascade/include \ - -I$(G4BASE)/processes/hadronic/models/qmd/include \ + -I$(G4BASE)/processes/hadronic/models/qmd/include \ -I$(G4BASE)/processes/hadronic/models/coherent_elastic/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/evaporation/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/fermi_breakup/include \ diff --git a/source/physics_lists/constructors/electromagnetic/History b/source/physics_lists/constructors/electromagnetic/History index 0d8e854aa3..5dd47077fc 100644 --- a/source/physics_lists/constructors/electromagnetic/History +++ b/source/physics_lists/constructors/electromagnetic/History @@ -13,6 +13,10 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +21 December 2019, V.Ivanchenko (phys-ctor-em-V10-05-18) +- G4EmModelActivator - fixed configuration of the default EM multiple + scattering on top of any other physics configuration (problem #2106) + 19 October 2019, W.G.Shin, S.Incerti (phys-ctor-em-V10-05-17) - added new ELSEPA elastic model for Geant4-DNA in G4EmDNAPhysics_option2 diff --git a/source/physics_lists/constructors/electromagnetic/src/G4EmModelActivator.cc b/source/physics_lists/constructors/electromagnetic/src/G4EmModelActivator.cc index 68e2281090..8dd4d23979 100644 --- a/source/physics_lists/constructors/electromagnetic/src/G4EmModelActivator.cc +++ b/source/physics_lists/constructors/electromagnetic/src/G4EmModelActivator.cc @@ -185,9 +185,15 @@ void G4EmModelActivator::ActivateEmOptions() if("G4EmStandard" == typesPhys[i]) { G4UrbanMscModel* msc = new G4UrbanMscModel(); + msc->SetRangeFactor(0.04); + msc->SetSkin(1); + msc->SetStepLimitType(fUseSafety); AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy); msc = new G4UrbanMscModel(); + msc->SetRangeFactor(0.04); + msc->SetSkin(1); + msc->SetStepLimitType(fUseSafety); AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy); } else if("G4EmStandard_opt1" == typesPhys[i] || diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/History b/source/physics_lists/constructors/gamma_lepto_nuclear/History index 3d21a1db2f..be2a8f4efe 100644 --- a/source/physics_lists/constructors/gamma_lepto_nuclear/History +++ b/source/physics_lists/constructors/gamma_lepto_nuclear/History @@ -13,6 +13,10 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +13 January 2020, Dennis Wright (phys-ctor-glnuclear-V10-05-04) +- Remove double delete in destructor of G4LENDBertiniGammaElectroNuclearBuilder + (Coverity errors 101609 and 101727). + 29 November 2019, A.Ribon (phys-ctor-glnuclear-V10-05-03) - Update of the only README file. diff --git a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4LENDBertiniGammaElectroNuclearBuilder.cc b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4LENDBertiniGammaElectroNuclearBuilder.cc index 3e523675ba..b90a89d4dd 100644 --- a/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4LENDBertiniGammaElectroNuclearBuilder.cc +++ b/source/physics_lists/constructors/gamma_lepto_nuclear/src/G4LENDBertiniGammaElectroNuclearBuilder.cc @@ -56,10 +56,14 @@ G4BertiniElectroNuclearBuilder( eNucl ) G4LENDBertiniGammaElectroNuclearBuilder::~G4LENDBertiniGammaElectroNuclearBuilder() { +/* + DHW 13 Jan 2020 - fix double deletion error; these deletes are already done in the base class dtor + (Coverity bugs 101609 and 101727) if ( wasActivated ) { delete theFragmentation; delete theStringDecay; } +*/ } void G4LENDBertiniGammaElectroNuclearBuilder::Build() diff --git a/source/physics_lists/constructors/hadron_elastic/GNUmakefile b/source/physics_lists/constructors/hadron_elastic/GNUmakefile index b9909cc64c..f2e37208b5 100644 --- a/source/physics_lists/constructors/hadron_elastic/GNUmakefile +++ b/source/physics_lists/constructors/hadron_elastic/GNUmakefile @@ -13,9 +13,6 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif ifdef G4LIB_BUILD_EXPAT CPPFLAGS += -I$(G4BASE)/externals/expat/include endif @@ -37,10 +34,10 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/particles/hadrons/barions/include \ -I$(G4BASE)/particles/hadrons/ions/include \ -I$(G4BASE)/run/include \ - -I$(G4BASE)/physics_lists/builders/include \ - -I$(G4BASE)/physics_lists/util/include \ - -I$(G4BASE)/physics_lists/constructors/factory/include \ - -I$(G4BASE)/physics_lists/constructors/hadron_inelastic/include \ + -I$(G4BASE)/physics_lists/builders/include \ + -I$(G4BASE)/physics_lists/util/include \ + -I$(G4BASE)/physics_lists/constructors/factory/include \ + -I$(G4BASE)/physics_lists/constructors/hadron_inelastic/include \ -I$(G4BASE)/processes/management/include \ -I$(G4BASE)/processes/transportation/include \ -I$(G4BASE)/processes/cuts/include \ diff --git a/source/physics_lists/constructors/hadron_inelastic/GNUmakefile b/source/physics_lists/constructors/hadron_inelastic/GNUmakefile index f6ac92a410..93c84ee5cd 100644 --- a/source/physics_lists/constructors/hadron_inelastic/GNUmakefile +++ b/source/physics_lists/constructors/hadron_inelastic/GNUmakefile @@ -13,14 +13,10 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif ifdef G4LIB_BUILD_EXPAT CPPFLAGS += -I$(G4BASE)/externals/expat/include endif - CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/global/HEPRandom/include \ -I$(G4BASE)/global/HEPNumerics/include \ @@ -39,9 +35,9 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/particles/hadrons/barions/include \ -I$(G4BASE)/particles/hadrons/ions/include \ -I$(G4BASE)/run/include \ - -I$(G4BASE)/physics_lists/builders/include \ - -I$(G4BASE)/physics_lists/util/include \ - -I$(G4BASE)/physics_lists/constructors/factory/include \ + -I$(G4BASE)/physics_lists/builders/include \ + -I$(G4BASE)/physics_lists/util/include \ + -I$(G4BASE)/physics_lists/constructors/factory/include \ -I$(G4BASE)/processes/management/include \ -I$(G4BASE)/processes/transportation/include \ -I$(G4BASE)/processes/decay/include \ @@ -55,7 +51,7 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/processes/hadronic/models/util/include \ -I$(G4BASE)/processes/hadronic/models/binary_cascade/include \ -I$(G4BASE)/processes/hadronic/models/cascade/cascade/include \ - -I$(G4BASE)/processes/hadronic/models/qmd/include \ + -I$(G4BASE)/processes/hadronic/models/qmd/include \ -I$(G4BASE)/processes/hadronic/models/coherent_elastic/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/evaporation/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/fermi_breakup/include \ diff --git a/source/physics_lists/constructors/limiters/GNUmakefile b/source/physics_lists/constructors/limiters/GNUmakefile index 1e9f16bfab..3c825610de 100644 --- a/source/physics_lists/constructors/limiters/GNUmakefile +++ b/source/physics_lists/constructors/limiters/GNUmakefile @@ -13,11 +13,6 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif - - CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/global/HEPRandom/include \ -I$(G4BASE)/global/HEPNumerics/include \ @@ -37,14 +32,14 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/particles/hadrons/barions/include \ -I$(G4BASE)/particles/hadrons/ions/include \ -I$(G4BASE)/run/include \ - -I$(G4BASE)/physics_lists/builders/include \ - -I$(G4BASE)/physics_lists/util/include \ - -I$(G4BASE)/physics_lists/constructors/factory/include \ + -I$(G4BASE)/physics_lists/builders/include \ + -I$(G4BASE)/physics_lists/util/include \ + -I$(G4BASE)/physics_lists/constructors/factory/include \ -I$(G4BASE)/processes/management/include \ -I$(G4BASE)/processes/scoring/include \ -I$(G4BASE)/processes/transportation/include \ -I$(G4BASE)/processes/decay/include \ - -I$(G4BASE)/processes/electromagnetic/utils/include \ + -I$(G4BASE)/processes/electromagnetic/utils/include \ -I$(G4BASE)/processes/cuts/include \ -I$(G4BASE)/processes/biasing/generic/include \ -I$(G4BASE)/processes/biasing/importance/include \ @@ -58,7 +53,7 @@ CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/processes/hadronic/models/util/include \ -I$(G4BASE)/processes/hadronic/models/binary_cascade/include \ -I$(G4BASE)/processes/hadronic/models/cascade/cascade/include \ - -I$(G4BASE)/processes/hadronic/models/qmd/include \ + -I$(G4BASE)/processes/hadronic/models/qmd/include \ -I$(G4BASE)/processes/hadronic/models/coherent_elastic/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/evaporation/include \ -I$(G4BASE)/processes/hadronic/models/de_excitation/fermi_breakup/include \ diff --git a/source/physics_lists/lists/GNUmakefile b/source/physics_lists/lists/GNUmakefile index e58d701e6e..7f6b967d70 100644 --- a/source/physics_lists/lists/GNUmakefile +++ b/source/physics_lists/lists/GNUmakefile @@ -12,10 +12,6 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif - CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/global/HEPRandom/include \ -I$(G4BASE)/global/HEPGeometry/include \ diff --git a/source/physics_lists/lists/History b/source/physics_lists/lists/History index 1eb3ba61bf..dc7f85fb5a 100644 --- a/source/physics_lists/lists/History +++ b/source/physics_lists/lists/History @@ -13,6 +13,11 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +15-January-2020 Alberto Ribon (phys-lists-V10-05-05) + - LBE : updated cross sections to avoid crashes caused by the removal of + default Gheisha cross sections, and to have consistency between elastic + and inelastic cross sections. + 22-October-2019 Alberto Ribon (phys-lists-V10-05-04) - FTFP_BERT_HP, QGSP_BERT_HP, INCLXXPhysicsListHelper : added (consistently) RadioactiveDecay to all physics lists which use NeutronHP (the rationale diff --git a/source/physics_lists/lists/src/LBE.cc b/source/physics_lists/lists/src/LBE.cc index 87d9f5161e..edbd0ab7ff 100644 --- a/source/physics_lists/lists/src/LBE.cc +++ b/source/physics_lists/lists/src/LBE.cc @@ -48,6 +48,7 @@ // 16-08-10 Remove inclusion of obsolete class of G4ParticleWithCuts // 20-10-10 Migrate LowEnergy process to Livermore models, LP // 28-03-13 Replace LEP/HEP with FTFP+BERT (A.R.) +// 15-01-20 Updated cross sections (A.R.) // -------------------------------------------------------------- #include @@ -534,6 +535,10 @@ LBE::~LBE() #include "G4ChipsProtonElasticXS.hh" #include "G4ChipsNeutronElasticXS.hh" #include "G4ComponentAntiNuclNuclearXS.hh" +#include "G4ChipsKaonMinusElasticXS.hh" +#include "G4ChipsKaonPlusElasticXS.hh" +#include "G4ChipsKaonZeroElasticXS.hh" +#include "G4BGGNucleonElasticXS.hh" #include "G4CrossSectionElastic.hh" // Inelastic processes: @@ -561,8 +566,7 @@ LBE::~LBE() #include "G4ExcitedStringDecay.hh" #include "G4CascadeInterface.hh" #include "G4CrossSectionInelastic.hh" -#include "G4PiNuclearCrossSection.hh" -#include "G4CrossSectionPairGG.hh" +#include "G4BGGPionInelasticXS.hh" #include "G4ChipsKaonMinusInelasticXS.hh" #include "G4ChipsKaonPlusInelasticXS.hh" #include "G4ChipsKaonZeroInelasticXS.hh" @@ -592,16 +596,16 @@ LBE::~LBE() void LBE::ConstructHad() { // Elastic scattering - const G4double elastic_elimitPi = 1.0*CLHEP::GeV; - G4HadronElastic* elastic_lhep0 = new G4HadronElastic(); - G4HadronElastic* elastic_lhep1 = new G4HadronElastic(); - elastic_lhep1->SetMaxEnergy( elastic_elimitPi ); - G4ChipsElasticModel* elastic_chip = new G4ChipsElasticModel(); - G4ElasticHadrNucleusHE* elastic_he = new G4ElasticHadrNucleusHE(); - elastic_he->SetMinEnergy( elastic_elimitPi ); + + const G4double elastic_elimitAntiNuc = 100.0*CLHEP::MeV; + G4AntiNuclElastic* elastic_anuc = new G4AntiNuclElastic(); + elastic_anuc->SetMinEnergy( elastic_elimitAntiNuc ); + G4CrossSectionElastic* elastic_anucxs = new G4CrossSectionElastic( elastic_anuc->GetComponentCrossSection() ); + G4HadronElastic* elastic_lhep2 = new G4HadronElastic(); + elastic_lhep2->SetMaxEnergy( elastic_elimitAntiNuc ); // Inelastic scattering const G4double theFTFMin0 = 0.0*CLHEP::GeV; @@ -647,8 +651,6 @@ LBE::~LBE() theIonBC->SetMinEnergy( theIonBCMin ); theIonBC->SetMaxEnergy( theIonBCMax ); - G4VCrossSectionDataSet * thePiData = new G4CrossSectionPairGG( - (G4PiNuclearCrossSection*)G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4PiNuclearCrossSection::Default_Name()), 91*CLHEP::GeV ); G4VCrossSectionDataSet * theAntiNucleonData = new G4CrossSectionInelastic( new G4ComponentAntiNuclNuclearXS ); G4ComponentGGNuclNuclXsc * ggNuclNuclXsec = new G4ComponentGGNuclNuclXsc(); G4VCrossSectionDataSet * theGGNuclNuclData = new G4CrossSectionInelastic(ggNuclNuclXsec); @@ -666,12 +668,11 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->AddDataSet( new G4BGGPionElasticXS( particle ) ); - theElasticProcess->RegisterMe( elastic_lhep1 ); theElasticProcess->RegisterMe( elastic_he ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4PionPlusInelasticProcess* theInelasticProcess = new G4PionPlusInelasticProcess("inelastic"); - theInelasticProcess->AddDataSet( thePiData ); + theInelasticProcess->AddDataSet( new G4BGGPionInelasticXS( G4PionPlus::Definition() ) ); theInelasticProcess->RegisterMe( theFTFModel1 ); theInelasticProcess->RegisterMe( theBERTModel0 ); pmanager->AddDiscreteProcess( theInelasticProcess ); @@ -682,12 +683,11 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->AddDataSet( new G4BGGPionElasticXS( particle ) ); - theElasticProcess->RegisterMe( elastic_lhep1 ); theElasticProcess->RegisterMe( elastic_he ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4PionMinusInelasticProcess* theInelasticProcess = new G4PionMinusInelasticProcess("inelastic"); - theInelasticProcess->AddDataSet( thePiData ); + theInelasticProcess->AddDataSet( new G4BGGPionInelasticXS( G4PionMinus::Definition() ) ); theInelasticProcess->RegisterMe( theFTFModel1 ); theInelasticProcess->RegisterMe( theBERTModel0 ); pmanager->AddDiscreteProcess( theInelasticProcess ); @@ -698,6 +698,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonPlusElasticXS::Default_Name())); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4KaonPlusInelasticProcess* theInelasticProcess = new G4KaonPlusInelasticProcess("inelastic"); @@ -712,6 +713,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonZeroElasticXS::Default_Name())); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4KaonZeroSInelasticProcess* theInelasticProcess = new G4KaonZeroSInelasticProcess("inelastic"); @@ -726,6 +728,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonZeroElasticXS::Default_Name())); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4KaonZeroLInelasticProcess* theInelasticProcess = new G4KaonZeroLInelasticProcess("inelastic"); @@ -740,6 +743,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsKaonMinusElasticXS::Default_Name())); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4KaonMinusInelasticProcess* theInelasticProcess = new G4KaonMinusInelasticProcess("inelastic"); @@ -754,6 +758,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->AddDataSet(G4CrossSectionDataSetRegistry::Instance()->GetCrossSectionDataSet(G4ChipsProtonElasticXS::Default_Name())); + theElasticProcess->AddDataSet( new G4BGGNucleonElasticXS( G4Proton::Proton() ) ); theElasticProcess->RegisterMe( elastic_chip ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering @@ -767,12 +772,6 @@ LBE::~LBE() else if (particleName == "anti_proton") { // Elastic scattering - const G4double elastic_elimitAntiNuc = 100.0*CLHEP::MeV; - G4AntiNuclElastic* elastic_anuc = new G4AntiNuclElastic(); - elastic_anuc->SetMinEnergy( elastic_elimitAntiNuc ); - G4CrossSectionElastic* elastic_anucxs = new G4CrossSectionElastic( elastic_anuc->GetComponentCrossSection() ); - G4HadronElastic* elastic_lhep2 = new G4HadronElastic(); - elastic_lhep2->SetMaxEnergy( elastic_elimitAntiNuc ); G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->AddDataSet( elastic_anucxs ); theElasticProcess->RegisterMe( elastic_lhep2 ); @@ -826,7 +825,9 @@ LBE::~LBE() { // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; - theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( elastic_anucxs ); + theElasticProcess->RegisterMe( elastic_lhep2 ); + theElasticProcess->RegisterMe( elastic_anuc ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4AntiNeutronInelasticProcess* theInelasticProcess = new G4AntiNeutronInelasticProcess("inelastic"); @@ -840,6 +841,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( theGGNuclNuclData ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4DeuteronInelasticProcess* theInelasticProcess = new G4DeuteronInelasticProcess("inelastic"); @@ -854,6 +856,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( theGGNuclNuclData ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4TritonInelasticProcess* theInelasticProcess = new G4TritonInelasticProcess("inelastic"); @@ -868,6 +871,7 @@ LBE::~LBE() // Elastic scattering G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess; theElasticProcess->RegisterMe( elastic_lhep0 ); + theElasticProcess->AddDataSet( theGGNuclNuclData ); pmanager->AddDiscreteProcess( theElasticProcess ); // Inelastic scattering G4AlphaInelasticProcess* theInelasticProcess = new G4AlphaInelasticProcess("inelastic"); diff --git a/source/physics_lists/util/GNUmakefile b/source/physics_lists/util/GNUmakefile index bb0cd48efd..37af557938 100644 --- a/source/physics_lists/util/GNUmakefile +++ b/source/physics_lists/util/GNUmakefile @@ -12,10 +12,6 @@ include $(G4INSTALL)/config/architecture.gmk CPPFLAGS += -DG4PROCESSES_EXPORT -ifeq ($(G4SYSTEM), WIN32-VC) -CPPFLAGS += -I$(G4BASE)/externals/expat/include -endif - CPPFLAGS += -I$(G4BASE)/global/management/include \ -I$(G4BASE)/global/HEPRandom/include \ -I$(G4BASE)/global/HEPGeometry/include \ diff --git a/source/processes/electromagnetic/muons/History b/source/processes/electromagnetic/muons/History index b2bb17fb74..c0b1564462 100644 --- a/source/processes/electromagnetic/muons/History +++ b/source/processes/electromagnetic/muons/History @@ -16,12 +16,16 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +13 January 20: V.Ivanchenko (emmuons-V10-05-02) +- G4MuPairProductionModel - added Store/Retrieve data methods + by request of CMS + 14 August 19: V.Ivanchenko (emmuons-V10-05-01) - G4TablesForExtrapolator - created G4LossTableBuilder and destruct end of run 07 February 19: V.Ivanchenko (emmuons-V10-05-00) -- G4MuMultipleSacttering - reduced length of printout (fix problem #2105) +- G4MuMultipleScattering - reduced length of printout (fix problem #2105) 17 September 18: D.Sawkey (emmuons-V10-04-05) - G4MuMultipleScattering, G4MuPairProduction, G4eePairProduction, diff --git a/source/processes/electromagnetic/muons/include/G4MuPairProductionModel.hh b/source/processes/electromagnetic/muons/include/G4MuPairProductionModel.hh index b84233d3ba..a5e2d909ce 100644 --- a/source/processes/electromagnetic/muons/include/G4MuPairProductionModel.hh +++ b/source/processes/electromagnetic/muons/include/G4MuPairProductionModel.hh @@ -110,6 +110,11 @@ public: inline void SetParticle(const G4ParticleDefinition*); + // hide assignment operator and copy constructor + G4MuPairProductionModel & operator= + (const G4MuPairProductionModel &right) = delete; + G4MuPairProductionModel(const G4MuPairProductionModel&) = delete; + protected: G4double ComputMuPairLoss(G4double Z, G4double tkin, G4double cut, @@ -130,15 +135,15 @@ private: void MakeSamplingTables(); - void DataCorrupted(G4int Z, G4double logTkin); + void StoreTables() const; + + G4bool RetrieveTables(); + + void DataCorrupted(G4int Z, G4double logTkin) const; inline G4double FindScaledEnergy(G4int Z, G4double rand, G4double logTkin, G4double yymin, G4double yymax); - // hide assignment operator - G4MuPairProductionModel & operator=(const G4MuPairProductionModel &right) = delete; - G4MuPairProductionModel(const G4MuPairProductionModel&) = delete; - protected: const G4ParticleDefinition* particle; @@ -171,6 +176,8 @@ protected: G4double dy; G4double emin; G4double emax; + + G4bool fTableToFile; }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/source/processes/electromagnetic/muons/src/G4MuPairProductionModel.cc b/source/processes/electromagnetic/muons/src/G4MuPairProductionModel.cc index baa537483c..70341a3cbb 100644 --- a/source/processes/electromagnetic/muons/src/G4MuPairProductionModel.cc +++ b/source/processes/electromagnetic/muons/src/G4MuPairProductionModel.cc @@ -71,6 +71,7 @@ #include "G4MuPairProductionModel.hh" #include "G4PhysicalConstants.hh" #include "G4SystemOfUnits.hh" +#include "G4EmParameters.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4MuonMinus.hh" @@ -84,6 +85,8 @@ #include "G4ParticleChangeForGamma.hh" #include "G4Log.hh" #include "G4Exp.hh" +#include +#include //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... @@ -118,7 +121,8 @@ G4MuPairProductionModel::G4MuPairProductionModel(const G4ParticleDefinition* p, nbiny(1000), nbine(0), ymin(-5.), - dy(0.005) + dy(0.005), + fTableToFile(false) { nist = G4NistManager::Instance(); @@ -173,10 +177,12 @@ void G4MuPairProductionModel::Initialise(const G4ParticleDefinition* p, } if(IsMaster() && p == particle) { - if(!fElementData) { fElementData = new G4ElementData(); - MakeSamplingTables(); + G4bool dataFile = G4EmParameters::Instance()->RetrieveMuDataFromFile(); + if(dataFile) { dataFile = RetrieveTables(); } + if(!dataFile) { MakeSamplingTables(); } + if(fTableToFile) { StoreTables(); } } InitialiseElementSelectors(p, cuts); } @@ -244,10 +250,8 @@ G4double G4MuPairProductionModel::ComputMuPairLoss(G4double Z, G4double hhh = (bbb-aaa)/(G4double)kkk; G4double x = aaa; - for (G4int l=0 ; lGetParticleName() << Z << ".dat"; + std::ofstream outfile(ss.str()); + pv->Store(outfile); + } +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... + +G4bool G4MuPairProductionModel::RetrieveTables() +{ + char* path = std::getenv("G4LEDATA"); + G4String dir(""); + if (path) { + std::ostringstream ost; + ost << path << "/mupair/"; + dir = ost.str(); + } else { + dir = "./mupair/"; + } + + for (G4int iz=0; izGetParticleName() << Z << ".dat"; + std::ifstream infile(ss.str(), std::ios::in); + if(!pv->Retrieve(infile)) { return false; } + fElementData->InitialiseForElement(Z, pv); + } + return true; +} + +//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... + diff --git a/source/processes/electromagnetic/standard/History b/source/processes/electromagnetic/standard/History index a89a74b2f8..e47b95976f 100644 --- a/source/processes/electromagnetic/standard/History +++ b/source/processes/electromagnetic/standard/History @@ -17,6 +17,10 @@ committal in the CVS repository ! ---------------------------------------------------------- +07 December 19: V.Ivanchenko (emstand-V10-05-27) +- G4BetheHeitler5DModel - added protection against negative + argument of sqrt() due to precision lost + 06 November 19: V.Ivanchenko (emstand-V10-05-26) - G4ESTARStopping, G4GSMottCorrection, G4GSPWACorrections, G4GoudsmitSaundersonTable, G4SBBremTable, G4SeltzerBergerModel diff --git a/source/processes/electromagnetic/standard/src/G4BetheHeitler5DModel.cc b/source/processes/electromagnetic/standard/src/G4BetheHeitler5DModel.cc index acb4b66728..6c831e7ca6 100644 --- a/source/processes/electromagnetic/standard/src/G4BetheHeitler5DModel.cc +++ b/source/processes/electromagnetic/standard/src/G4BetheHeitler5DModel.cc @@ -481,12 +481,12 @@ G4BetheHeitler5DModel::SampleSecondaries(std::vector* fvect, const G4double LeptonEnergy2 = PairInvMass*0.5; // New way of calucaltion thePRecoil to avoid underflow - const G4double ap1 = 2.0*GammaEnergy*RecoilMass - - PairInvMass*PairInvMass + 2.0*PairInvMass*RecoilMass; - const G4double bp1 = 2.0*GammaEnergy*RecoilMass - - PairInvMass*PairInvMass - 2.0*PairInvMass*RecoilMass; + G4double abp = std::max((2.0*GammaEnergy*RecoilMass - + PairInvMass*PairInvMass + 2.0*PairInvMass*RecoilMass)* + (2.0*GammaEnergy*RecoilMass - + PairInvMass*PairInvMass - 2.0*PairInvMass*RecoilMass),0.0); - const G4double thePRecoil = std::sqrt(ap1 * bp1) * isqrts2; + G4double thePRecoil = std::sqrt(abp) * isqrts2; // back to the center-of-mass frame Recoil.set( thePRecoil*sinTheta*cosPhi, diff --git a/source/processes/electromagnetic/utils/History b/source/processes/electromagnetic/utils/History index 26fc582c76..16b3f05ef7 100644 --- a/source/processes/electromagnetic/utils/History +++ b/source/processes/electromagnetic/utils/History @@ -16,12 +16,16 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +13 January 19: V.Ivanchenko (emutils-V10-05-23) +- G4EmParameters, G4EmParametersMessenger - added new parameter + to enable read of e+e- production table from file (CMS request) + 16 October 19: D.Sawkey (emutils-V10-05-22) - G4EmBiasingManager - delete non-tracked particles 11 October 19: W.G.Shin, S.Incerti (emutils-V10-05-21) -- G4DNAModelSubType.hh : added Kreipl and Meesungnoen amorphous -ice models +- G4DNAModelSubType.hh : added Kreipl and Meesungnoen amorphous + ice models - G4EmLowEParametersMessenger.* : added corresponding commands 10 October 19: V.Ivanchenko (emutils-V10-05-20) diff --git a/source/processes/electromagnetic/utils/include/G4EmParameters.hh b/source/processes/electromagnetic/utils/include/G4EmParameters.hh index 999ad59072..572579f0a8 100644 --- a/source/processes/electromagnetic/utils/include/G4EmParameters.hh +++ b/source/processes/electromagnetic/utils/include/G4EmParameters.hh @@ -168,12 +168,15 @@ public: void SetEnablePolarisation(G4bool val); G4bool EnablePolarisation() const; - G4bool GetDirectionalSplitting(); + G4bool GetDirectionalSplitting() const; void SetDirectionalSplitting(G4bool v); - G4bool QuantumEntanglement(); + G4bool QuantumEntanglement() const; void SetQuantumEntanglement(G4bool v); + G4bool RetrieveMuDataFromFile() const; + void SetRetrieveMuDataFromFile(G4bool v); + // 5d void SetOnIsolated(G4bool val); G4bool OnIsolated() const; @@ -378,6 +381,7 @@ private: G4bool gener; G4bool fSamplingTable; G4bool fPolarisation; + G4bool fMuDataFromFile; G4bool onIsolated; // 5d model conversion on free ions G4bool fDNA; diff --git a/source/processes/electromagnetic/utils/include/G4EmParametersMessenger.hh b/source/processes/electromagnetic/utils/include/G4EmParametersMessenger.hh index 35d66c598a..346b9ddff8 100644 --- a/source/processes/electromagnetic/utils/include/G4EmParametersMessenger.hh +++ b/source/processes/electromagnetic/utils/include/G4EmParametersMessenger.hh @@ -99,6 +99,7 @@ private: G4UIcmdWithABool* onIsolatedCmd; G4UIcmdWithABool* sampleTCmd; G4UIcmdWithABool* icru90Cmd; + G4UIcmdWithABool* mudatCmd; G4UIcmdWithADouble* minSubSecCmd; G4UIcmdWithADoubleAndUnit* minEnCmd; diff --git a/source/processes/electromagnetic/utils/src/G4EmParameters.cc b/source/processes/electromagnetic/utils/src/G4EmParameters.cc index 08f40f996b..7029d50795 100644 --- a/source/processes/electromagnetic/utils/src/G4EmParameters.cc +++ b/source/processes/electromagnetic/utils/src/G4EmParameters.cc @@ -136,6 +136,7 @@ void G4EmParameters::Initialise() onIsolated = false; fSamplingTable = false; fPolarisation = false; + fMuDataFromFile = false; fDNA = false; minSubRange = 1.0; @@ -414,6 +415,7 @@ G4bool G4EmParameters::BirksActive() const void G4EmParameters::SetUseICRU90Data(G4bool val) { + if(IsLocked()) { return; } fICRU90 = val; } @@ -481,6 +483,16 @@ void G4EmParameters::SetEmSaturation(G4EmSaturation* ptr) } } +G4bool G4EmParameters::RetrieveMuDataFromFile() const +{ + return fMuDataFromFile; +} + +void G4EmParameters::SetRetrieveMuDataFromFile(G4bool v) +{ + fMuDataFromFile = v; +} + void G4EmParameters::SetOnIsolated(G4bool val) { if(IsLocked()) { return; } @@ -1156,7 +1168,7 @@ void G4EmParameters::DefineRegParamForEM(G4VEmProcess* ptr) const fBParameters->DefineRegParamForEM(ptr); } -G4bool G4EmParameters::QuantumEntanglement() +G4bool G4EmParameters::QuantumEntanglement() const { return fBParameters->QuantumEntanglement(); } @@ -1167,7 +1179,7 @@ void G4EmParameters::SetQuantumEntanglement(G4bool v) fBParameters->SetQuantumEntanglement(v); } -G4bool G4EmParameters::GetDirectionalSplitting() { +G4bool G4EmParameters::GetDirectionalSplitting() const { return fBParameters->GetDirectionalSplitting(); } @@ -1266,7 +1278,8 @@ void G4EmParameters::StreamInfo(std::ostream& os) const <SetDefaultValue(false); icru90Cmd->AvailableForStates(G4State_PreInit); + mudatCmd = new G4UIcmdWithABool("/process/em/MuDataFromFile",this); + mudatCmd->SetGuidance("Enable usage of muon data from file"); + mudatCmd->SetParameterName("mudat",true); + mudatCmd->SetDefaultValue(false); + mudatCmd->AvailableForStates(G4State_PreInit); + minSubSecCmd = new G4UIcmdWithADouble("/process/eLoss/minsubsec",this); minSubSecCmd->SetGuidance("Set the ratio subcut/cut "); minSubSecCmd->SetParameterName("rcmin",true); @@ -408,6 +414,7 @@ G4EmParametersMessenger::~G4EmParametersMessenger() delete onIsolatedCmd; delete sampleTCmd; delete icru90Cmd; + delete mudatCmd; delete minSubSecCmd; delete minEnCmd; @@ -496,6 +503,8 @@ void G4EmParametersMessenger::SetNewValue(G4UIcommand* command, theParameters->SetGeneralProcessActive(sharkCmd->GetNewBoolValue(newValue)); } else if (command == sampleTCmd) { theParameters->SetEnableSamplingTable(sampleTCmd->GetNewBoolValue(newValue)); + } else if (command == mudatCmd) { + theParameters->SetRetrieveMuDataFromFile(mudatCmd->GetNewBoolValue(newValue)); } else if (command == minSubSecCmd) { theParameters->SetMinSubRange(minSubSecCmd->GetNewDoubleValue(newValue)); diff --git a/source/processes/hadronic/cross_sections/History b/source/processes/hadronic/cross_sections/History index 940215a847..7dddc73e8e 100644 --- a/source/processes/hadronic/cross_sections/History +++ b/source/processes/hadronic/cross_sections/History @@ -14,6 +14,9 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +30 January 2020 - Vladimir Ivanchenko (hadr-cross-V10-05-32) +- G4HadronInelasticDataSet - fixed problem #2220 - wrong GHEISHA x-section + 19 November 2019 - G. Folger (hadr-cross-V10-05-31) - remove using namespace std and using namespace CLHEP from header file G4NeutronElectronElXsc.hh diff --git a/source/processes/hadronic/cross_sections/src/G4HadronInelasticDataSet.cc b/source/processes/hadronic/cross_sections/src/G4HadronInelasticDataSet.cc index 3ebe7dd0d9..f3cffe7d66 100644 --- a/source/processes/hadronic/cross_sections/src/G4HadronInelasticDataSet.cc +++ b/source/processes/hadronic/cross_sections/src/G4HadronInelasticDataSet.cc @@ -73,7 +73,7 @@ G4HadronInelasticDataSet::GetElementCrossSection( fKinEnergy = ekin; fParticle = pd; G4int A = G4lrint(fNIST->GetAtomicMassAmu(Z)); - fInelasticXS = fGheishaXS->GetElasticCrossSection(aParticle, Z, A); + fInelasticXS = fGheishaXS->GetInelasticCrossSection(aParticle, Z, A); } return fInelasticXS; } diff --git a/source/processes/hadronic/management/History b/source/processes/hadronic/management/History index ac85e2be28..95f7c61d72 100644 --- a/source/processes/hadronic/management/History +++ b/source/processes/hadronic/management/History @@ -14,6 +14,11 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +7 January 2020 V. Ivanchenko (hadr-man-V10-05-10) +--------------------------------------------------- +- G4HadronicProcess : for charge check assume, that all final electrons + come from internal conversion + 11 November 2019 A. Ribon (hadr-man-V10-05-07) --------------------------------------------------- - G4HadronicProcess : in the method CheckResult, a short-lived secondary diff --git a/source/processes/hadronic/management/src/G4HadronicProcess.cc b/source/processes/hadronic/management/src/G4HadronicProcess.cc index 126433e265..f3a065d609 100644 --- a/source/processes/hadronic/management/src/G4HadronicProcess.cc +++ b/source/processes/hadronic/management/src/G4HadronicProcess.cc @@ -270,7 +270,7 @@ G4HadronicProcess::PostStepDoIt(const G4Track& aTrack, const G4Step&) G4HadFinalState* result = nullptr; G4int reentryCount = 0; - /* + /* G4cout << "### " << aParticle->GetDefinition()->GetParticleName() << " Ekin(MeV)= " << aParticle->GetKineticEnergy() << " Z= " << targetNucleus.GetZ_asInt() @@ -356,7 +356,7 @@ G4HadronicProcess::PostStepDoIt(const G4Track& aTrack, const G4Step&) if (epReportLevel != 0) { CheckEnergyMomentumConservation(aTrack, targetNucleus); } - //G4cout << "PostStepDoIt done " << G4endl; + //G4cout << "PostStepDoIt done nICelectrons= " << nICelectrons << G4endl; return theTotalResult; } @@ -415,7 +415,7 @@ G4HadronicProcess::FillResult(G4HadFinalState * aR, const G4Track & aT) //G4cout << "FillResult: Efinal= " << efinal << " status= " // << theTotalResult->GetTrackStatus() // << " fKill= " << fStopAndKill << G4endl; - + // check secondaries nICelectrons = 0; if(idxIC == -1) { @@ -458,7 +458,8 @@ G4HadronicProcess::FillResult(G4HadFinalState * aR, const G4Track & aT) dynParticle->SetMass(mass); } G4int idxModel = aR->GetSecondary(i)->GetCreatorModelType(); - if(idxIC == idxModel) { ++nICelectrons; } + //if(idxIC == idxModel) { ++nICelectrons; } + if(part->GetPDGEncoding() == 11) { ++nICelectrons; } // time of interaction starts from zero + global time G4double time = std::max(aR->GetSecondary(i)->GetTime(), 0.0) + time0; @@ -482,6 +483,7 @@ G4HadronicProcess::FillResult(G4HadFinalState * aR, const G4Track & aT) } } aR->Clear(); + // G4cout << "FillResults done nICe= " << nICelectrons << G4endl; } void G4HadronicProcess::MultiplyCrossSectionBy(G4double factor) diff --git a/source/processes/hadronic/models/cascade/History b/source/processes/hadronic/models/cascade/History index c4ab071adc..db5dab303f 100644 --- a/source/processes/hadronic/models/cascade/History +++ b/source/processes/hadronic/models/cascade/History @@ -14,6 +14,26 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +06 February 2019 Vladimir Ivanchenko (hadr-casc-V10-05-03) +----------------------------------------------------------- +13 January 2020 Dennis Wright +---------------------------------------------------- +- G4CascadeInterface.cc: fix memory leak by deleting ltcollider in class + dtor + +10 January 2020 Michael Kelsey +----------------------------------------------------- +- G4CascadeParamMessenger.cc: Ensure that Bertini-specific commands get + added to /process/had/cascade/ directory, instead of /process/had. + Requires resetting cmdDir=0 between CreateDirectory() calls. + +16 December 2019 Vladimir Ivanchenko +----------------------------------------------------------- +- G4CascadeCheckBalance: fixed outstanding problem of the interface + with native pre-compound model, which happens since in the + default de-excitation internal electron conversion become + enabled + 7 November 2019 Dennis Wright (hadr-casc-V10-05-02) ----------------------------------------------------- - G4LightTargetCollider: fix crash when gamma energy below deuteron diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeCheckBalance.cc b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeCheckBalance.cc index fc4764dd80..bd559309d8 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeCheckBalance.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeCheckBalance.cc @@ -118,6 +118,21 @@ void G4CascadeCheckBalance::collide(G4InuclParticle* bullet, if (pbullet) initialStrange += pbullet->getStrangeness(); if (ptarget) initialStrange += ptarget->getStrangeness(); + G4int nelec = 0; + G4double elMass = 0.; + std::vector& outParts = + output.getOutgoingParticles(); + for (G4int i = 0; i < output.numberOfOutgoingParticles(); i++) { + if (outParts[i].getDefinition() == G4Electron::Electron() ) { + elMass += outParts[i].getDefinition()->GetPDGMass(); + ++nelec; + } + } + if(nelec > 0) { + initial += G4LorentzVector(0.,0.,0.,elMass/GeV); + initialCharge -= nelec; + } + // Final state totals are computed for us final = output.getTotalOutputMomentum(); finalBaryon = output.getTotalBaryonNumber(); @@ -155,13 +170,20 @@ void G4CascadeCheckBalance::collide(const G4Fragment& fragment, // Remove electron masses when internal conversion occurs G4double elMass = 0.; - std::vector outParts = output.getOutgoingParticles(); + std::vector& outParts = + output.getOutgoingParticles(); + G4int nelec = 0; for (G4int i = 0; i < output.numberOfOutgoingParticles(); i++) { - if (outParts[i].getDefinition() == G4Electron::Electron() ) - elMass += outParts[i].getDefinition()->GetPDGMass(); + if (outParts[i].getDefinition() == G4Electron::Electron() ) { + elMass += outParts[i].getDefinition()->GetPDGMass(); + ++nelec; + } + } + if(nelec > 0) { + initial += G4LorentzVector(0.,0.,0.,elMass/GeV); + initialCharge -= nelec; } - final.setE(final.e() - elMass/GeV); finalBaryon = output.getTotalBaryonNumber(); finalCharge = output.getTotalCharge(); finalStrange = output.getTotalStrangeness(); diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeInterface.cc b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeInterface.cc index 719a492823..734495478f 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeInterface.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeInterface.cc @@ -167,6 +167,7 @@ G4CascadeInterface::G4CascadeInterface(const G4String& name) G4CascadeInterface::~G4CascadeInterface() { clear(); delete collider; collider=0; + delete ltcollider; ltcollider = 0; delete balance; balance=0; delete output; output=0; } diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeParamMessenger.cc b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeParamMessenger.cc index 66f416ca81..9099e56b5e 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4CascadeParamMessenger.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4CascadeParamMessenger.cc @@ -31,6 +31,7 @@ // 20130703 M. Kelsey -- Add flag for USE_PHASESPACE // 20141030 M. Kelsey -- Add flag to enable direct pi-N absorption // 20141211 M. Kelsey -- Change PIN_ABSORPTION flag to double, for energy cut +// 20200110 M. Kelsey -- Reset cmdDir to 0 before .../cascade/ directory. #include "G4CascadeParamMessenger.hh" #include "G4CascadeParameters.hh" @@ -50,7 +51,7 @@ G4CascadeParamMessenger::G4CascadeParamMessenger(G4CascadeParameters* params) : G4UImessenger(), theParams(params), cmdDir(0), localCmdDir(false) { // NOTE: Put under same top-level tree as EM - CreateDirectory("/process/had/","Hadronic processes"); + CreateDirectory("/process/had/","Hadronic processes"); cmdDir=0; CreateDirectory("/process/had/cascade/","Bertini-esque cascade parameters"); verboseCmd = CreateCommand("verbose", diff --git a/source/processes/hadronic/models/cascade/cascade/src/G4CollisionOutput.cc b/source/processes/hadronic/models/cascade/cascade/src/G4CollisionOutput.cc index 8a96229ef6..512d5de90d 100644 --- a/source/processes/hadronic/models/cascade/cascade/src/G4CollisionOutput.cc +++ b/source/processes/hadronic/models/cascade/cascade/src/G4CollisionOutput.cc @@ -62,6 +62,7 @@ #include "G4CollisionOutput.hh" #include "G4SystemOfUnits.hh" +#include "G4PhysicalConstants.hh" #include "G4CascadParticle.hh" #include "G4CascadeParameters.hh" #include "G4Electron.hh" @@ -254,15 +255,8 @@ G4int G4CollisionOutput::getTotalCharge() const { G4int charge = 0; G4int i(0); - if (G4CascadeParameters::usePreCompound() ) { - // Possible to have internal conversion electron - for (i = 0; i < numberOfOutgoingParticles(); i++) - if (outgoingParticles[i].getDefinition() != G4Electron::Electron() ) - charge += G4int(outgoingParticles[i].getCharge()); - } else { - for (i = 0; i < numberOfOutgoingParticles(); i++) - charge += G4int(outgoingParticles[i].getCharge()); - } + for (i = 0; i < numberOfOutgoingParticles(); i++) + charge += G4int(outgoingParticles[i].getCharge()); for (i = 0; i < numberOfOutgoingNuclei(); i++) charge += G4int(outgoingNuclei[i].getCharge()); @@ -426,6 +420,12 @@ void G4CollisionOutput::setOnShell(G4InuclParticle* bullet, G4cout << " target momentum = " << momt.e()<<", "<< momt.x()<<", "<< momt.y()<<", "<< momt.z()<1 reuse data structure + computed for pi+ in order to reduce memory and CPU at + initialisation; fixed false positive Coverity report + +17 December 2019 - V.Ivanchenko (hadr-cohe-V10-05-11) +--------------------------------------------------------------- +- G4ElasticHadrNucleusHE - switch to parameterized model by + cut on kinetic energy and not momentum + 26 November 2019 - V.Ivanchenko (hadr-cohe-V10-05-10) --------------------------------------------------------------- - G4HadronElastic : Added limit on number of warning printouts diff --git a/source/processes/hadronic/models/coherent_elastic/include/G4ElasticHadrNucleusHE.hh b/source/processes/hadronic/models/coherent_elastic/include/G4ElasticHadrNucleusHE.hh index 3242e723fb..e95f675657 100644 --- a/source/processes/hadronic/models/coherent_elastic/include/G4ElasticHadrNucleusHE.hh +++ b/source/processes/hadronic/models/coherent_elastic/include/G4ElasticHadrNucleusHE.hh @@ -149,7 +149,7 @@ private: static const G4int fHadronType1[NHADRONS]; // momemtum limits - G4double plabLowLimit; + G4double ekinLowLimit; G4double dQ2; // projectile kinematics in GeV diff --git a/source/processes/hadronic/models/coherent_elastic/src/G4ElasticHadrNucleusHE.cc b/source/processes/hadronic/models/coherent_elastic/src/G4ElasticHadrNucleusHE.cc index db4715a91d..86c214b14c 100644 --- a/source/processes/hadronic/models/coherent_elastic/src/G4ElasticHadrNucleusHE.cc +++ b/source/processes/hadronic/models/coherent_elastic/src/G4ElasticHadrNucleusHE.cc @@ -248,7 +248,7 @@ G4ElasticHadrNucleusHE::G4ElasticHadrNucleusHE(const G4String& name) iHadrCode = iHadron = iHadron1 = 0; verboseLevel = 0; - plabLowLimit = 400.0*CLHEP::MeV; + ekinLowLimit = 400.0*CLHEP::MeV; BoundaryP[0]=9.0; BoundaryTG[0]=5.0;BoundaryTL[0]=0.; BoundaryP[1]=20.0;BoundaryTG[1]=1.5;BoundaryTL[1]=0.; @@ -314,8 +314,14 @@ G4ElasticHadrNucleusHE::~G4ElasticHadrNucleusHE() if(isMaster) { for(G4int j = 0; j < NHADRONS; ++j) { for(G4int k = 0; k < ZMAX; ++k) { - delete fElasticData[j][k]; - fElasticData[j][k]=nullptr; + G4ElasticData* ptr = fElasticData[j][k]; + if(ptr) { + delete ptr; + fElasticData[j][k] = nullptr; + for(G4int l = j+1; l < NHADRONS; ++l) { + if(ptr == fElasticData[l][k]) { fElasticData[l][k] = nullptr; } + } + } } } } @@ -344,7 +350,13 @@ void G4ElasticHadrNucleusHE::InitialiseModel() size_t numOfElem = mat->GetNumberOfElements(); for(size_t k=0; kGetZasInt(), ZMAX-1); - if(!fElasticData[i][Z]) { FillData(p, i, Z); } + if(!fElasticData[i][Z]) { + if(1 == i && Z > 1) { + fElasticData[1][Z] = fElasticData[0][Z]; + } else { + FillData(p, i, Z); + } + } } } } @@ -357,7 +369,9 @@ G4ElasticHadrNucleusHE::SampleInvariantT(const G4ParticleDefinition* p, G4double inLabMom, G4int iZ, G4int A) { - if(inLabMom <= plabLowLimit) { + G4double mass = p->GetPDGMass(); + G4double kine = sqrt(inLabMom*inLabMom + mass*mass) - mass; + if(kine <= ekinLowLimit) { return G4HadronElastic::SampleInvariantT(p,inLabMom,iZ,A); } G4int Z = std::min(iZ,ZMAX-1); @@ -365,7 +379,7 @@ G4ElasticHadrNucleusHE::SampleInvariantT(const G4ParticleDefinition* p, iHadrCode = p->GetPDGEncoding(); // below computations in GeV/c - hMass = p->GetPDGMass()*invGeV; + hMass = mass*invGeV; hMass2 = hMass*hMass; G4double plab = inLabMom*invGeV; G4double tmax = pLocalTmax*invGeV2; @@ -641,8 +655,9 @@ G4int G4ElasticHadrNucleusHE::FillFq2(G4int A) < 0) { + if (GetVerboseLevel() > 1) { G4cout << "The DecayRate Table for " << aParticleName << " is selected." << G4endl; } @@ -208,7 +208,7 @@ G4Radioactivation::ConvolveSourceTimeProfile(const G4double t, const G4double ta while (t > SBin[nbin]) { // Loop checking, 01.09.2015, D.Wright loop++; if (loop > 1000) { - G4Exception("G4RadioactiveDecay::ConvolveSourceTimeProfile()", + G4Exception("G4Radioactivation::ConvolveSourceTimeProfile()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } @@ -242,7 +242,7 @@ G4Radioactivation::ConvolveSourceTimeProfile(const G4double t, const G4double ta convolvedTime = 0.; } #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout << " Convolved time: " << convolvedTime << G4endl; #endif return convolvedTime; @@ -270,7 +270,7 @@ G4double G4Radioactivation::GetDecayTime() i++; loop++; if (loop > 100000) { - G4Exception("G4RadioactiveDecay::GetDecayTime()", "HAD_RDM_100", + G4Exception("G4Radioactivation::GetDecayTime()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } @@ -279,7 +279,7 @@ G4double G4Radioactivation::GetDecayTime() rand = G4UniformRand(); decaytime = DBin[i] + rand*(DBin[i+1]-DBin[i]); #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout <<" Decay time: " < 100000) { - G4Exception("G4RadioactiveDecay::GetDecayTimeBin()", "HAD_RDM_100", + G4Exception("G4Radioactivation::GetDecayTimeBin()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } @@ -422,7 +422,7 @@ CalculateChainsFromParent(const G4ParticleDefinition& theParentNucleus) while (!stable) { /* Loop checking, 01.09.2015, D.Wright */ loop++; if (loop > 10000) { - G4Exception("G4RadioactiveDecay::CalculateChainsFromParent()", "HAD_RDM_100", + G4Exception("G4Radioactivation::CalculateChainsFromParent()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } @@ -434,7 +434,7 @@ CalculateChainsFromParent(const G4ParticleDefinition& theParentNucleus) EP = theDecayRateVector[j].GetE(); RP = theDecayRateVector[j].GetDecayRateC(); TP = theDecayRateVector[j].GetTaos(); - if (GetVerboseLevel() > 0) { + if (GetVerboseLevel() > 1) { G4cout << "G4RadioactiveDecay::CalculateChainsFromParent: daughters of (" << ZP << ", " << AP << ", " << EP << ") are being calculated, generation = " << nGeneration @@ -680,7 +680,7 @@ void G4Radioactivation::SetSourceTimeProfile(G4String filename) if (!infile) { G4ExceptionDescription ed; ed << " Could not open file " << filename << G4endl; - G4Exception("G4RadioactiveDecay::SetSourceTimeProfile()", "HAD_RDM_001", + G4Exception("G4Radioactivation::SetSourceTimeProfile()", "HAD_RDM_001", FatalException, ed); } @@ -691,14 +691,14 @@ void G4Radioactivation::SetSourceTimeProfile(G4String filename) while (infile >> bin >> flux) { /* Loop checking, 01.09.2015, D.Wright */ loop++; if (loop > 10000) { - G4Exception("G4RadioactiveDecay::SetSourceTimeProfile()", "HAD_RDM_100", + G4Exception("G4Radioactivation::SetSourceTimeProfile()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } NSourceBin++; if (NSourceBin > 99) { - G4Exception("G4RadioactiveDecay::SetSourceTimeProfile()", "HAD_RDM_002", + G4Exception("G4Radioactivation::SetSourceTimeProfile()", "HAD_RDM_002", FatalException, "Input source time file too big (>100 rows)"); } else { @@ -711,7 +711,7 @@ void G4Radioactivation::SetSourceTimeProfile(G4String filename) infile.close(); #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout <<" Source Timeprofile Nbin = " << NSourceBin < 10000) { - G4Exception("G4RadioactiveDecay::SetDecayBias()", "HAD_RDM_100", + G4Exception("G4Radioactivation::SetDecayBias()", "HAD_RDM_100", JustWarning, "While loop count exceeded"); break; } if (NDecayBin > 99) { - G4Exception("G4RadioactiveDecay::SetDecayBias()", "HAD_RDM_004", + G4Exception("G4Radioactivation::SetDecayBias()", "HAD_RDM_002", FatalException, "Input bias file too big (>100 rows)" ); } else { DBin[NDecayBin] = bin * s; // Convert read-in time to ns @@ -770,7 +770,7 @@ void G4Radioactivation::SetDecayBias(G4String filename) infile.close(); #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout <<" Decay Bias Profile Nbin = " << NDecayBin < 0) { + if (GetVerboseLevel() > 1) { G4cout << "G4RadioactiveDecay::DecayIt : " << theParticleDef->GetParticleName() << " is not an ion or is outside (Z,A) limits set for the decay. " @@ -863,247 +863,227 @@ G4Radioactivation::DecayIt(const G4Track& theTrack, const G4Step&) } else { // Proceed with decay using variance reduction - G4double energyDeposit = 0.0; - G4double finalGlobalTime = theTrack.GetGlobalTime(); - G4double finalLocalTime = theTrack.GetLocalTime(); - G4int index; - G4ThreeVector currentPosition; - currentPosition = theTrack.GetPosition(); + G4double energyDeposit = 0.0; + G4double finalGlobalTime = theTrack.GetGlobalTime(); + G4double finalLocalTime = theTrack.GetLocalTime(); + G4int index; + G4ThreeVector currentPosition; + currentPosition = theTrack.GetPosition(); - G4IonTable* theIonTable; - G4ParticleDefinition* parentNucleus; + G4IonTable* theIonTable; + G4ParticleDefinition* parentNucleus; - // Get decay chains for the given nuclide - if (!IsRateTableReady(*theParticleDef)) CalculateChainsFromParent(*theParticleDef); - GetChainsFromParent(*theParticleDef); + // Get decay chains for the given nuclide + if (!IsRateTableReady(*theParticleDef)) CalculateChainsFromParent(*theParticleDef); + GetChainsFromParent(*theParticleDef); - // Declare some of the variables required in the implementation -// G4ParticleDefinition* parentNucleus; -// G4IonTable* theIonTable; - G4int PZ; - G4int PA; - G4double PE; - G4String keyName; - std::vector PT; - std::vector PR; - G4double taotime; - long double decayRate; + // Declare some of the variables required in the implementation + G4int PZ; + G4int PA; + G4double PE; + G4String keyName; + std::vector PT; + std::vector PR; + G4double taotime; + long double decayRate; - size_t i; -// size_t j; - G4int numberOfSecondaries; - G4int totalNumberOfSecondaries = 0; - G4double currentTime = 0.; - G4int ndecaych; - G4DynamicParticle* asecondaryparticle; - std::vector secondaryparticles; - std::vector pw; - std::vector ptime; - pw.clear(); - ptime.clear(); + size_t i; + G4int numberOfSecondaries; + G4int totalNumberOfSecondaries = 0; + G4double currentTime = 0.; + G4int ndecaych; + G4DynamicParticle* asecondaryparticle; + std::vector secondaryparticles; + std::vector pw; + std::vector ptime; + pw.clear(); + ptime.clear(); - // Now apply the nucleus splitting - for (G4int n = 0; n < NSplit; n++) { - // Get the decay time following the decay probability function - // supplied by user - G4double theDecayTime = GetDecayTime(); - G4int nbin = GetDecayTimeBin(theDecayTime); + // Now apply the nucleus splitting + for (G4int n = 0; n < NSplit; n++) { + // Get the decay time following the decay probability function + // supplied by user + G4double theDecayTime = GetDecayTime(); + G4int nbin = GetDecayTimeBin(theDecayTime); - // calculate the first part of the weight function - G4double weight1 = 1.; - if (nbin == 1) { - weight1 = 1./DProfile[nbin-1] - *(DBin[nbin]-DBin[nbin-1])/NSplit; // width of window in ns - } else if (nbin > 1) { - // Go from nbin to nbin-2 because flux entries in file alternate between 0 and 1 - weight1 = 1./(DProfile[nbin]-DProfile[nbin-2]) - *(DBin[nbin]-DBin[nbin-1])/NSplit; - // weight1 = (probability of choosing one of the bins)*(time width of bin)/NSplit - } - // it should be calculated in seconds - weight1 /= s ; + // calculate the first part of the weight function + G4double weight1 = 1.; + if (nbin == 1) { + weight1 = 1./DProfile[nbin-1] + *(DBin[nbin]-DBin[nbin-1])/NSplit; // width of window in ns + } else if (nbin > 1) { + // Go from nbin to nbin-2 because flux entries in file alternate between 0 and 1 + weight1 = 1./(DProfile[nbin]-DProfile[nbin-2]) + *(DBin[nbin]-DBin[nbin-1])/NSplit; + // weight1 = (probability of choosing one of the bins)*(time width of bin)/NSplit + } + // it should be calculated in seconds + weight1 /= s ; - // loop over all the possible secondaries of the nucleus - // the first one is itself. - for (i = 0; i < theDecayRateVector.size(); i++) { - PZ = theDecayRateVector[i].GetZ(); - PA = theDecayRateVector[i].GetA(); - PE = theDecayRateVector[i].GetE(); - PT = theDecayRateVector[i].GetTaos(); - PR = theDecayRateVector[i].GetDecayRateC(); + // loop over all the possible secondaries of the nucleus + // the first one is itself. + for (i = 0; i < theDecayRateVector.size(); i++) { + PZ = theDecayRateVector[i].GetZ(); + PA = theDecayRateVector[i].GetA(); + PE = theDecayRateVector[i].GetE(); + PT = theDecayRateVector[i].GetTaos(); + PR = theDecayRateVector[i].GetDecayRateC(); - // The array of arrays theDecayRateVector contains all possible decay - // chains of a given parent nucleus (ZP,AP,EP) to a given descendant - // nuclide (Z,A,E). - // - // theDecayRateVector[0] contains the decay parameters of the parent - // nucleus - // PZ = ZP - // PA = AP - // PE = EP - // PT[] = {TP} - // PR[] = {RP} - // - // theDecayRateVector[1] contains the decay of the parent to the first - // generation daughter (Z1,A1,E1). - // PZ = Z1 - // PA = A1 - // PE = E1 - // PT[] = {TP, T1} - // PR[] = {RP, R1} - // - // theDecayRateVector[2] contains the decay of the parent to the first - // generation daughter (Z1,A1,E1) and the decay of the first - // generation daughter to the second generation daughter (Z2,A2,E2). - // PZ = Z2 - // PA = A2 - // PE = E2 - // PT[] = {TP, T1, T2} - // PR[] = {RP, R1, R2} - // - // theDecayRateVector[3] may contain a branch chain - // PZ = Z2a - // PA = A2a - // PE = E2a - // PT[] = {TP, T1, T2a} - // PR[] = {RP, R1, R2a} - // - // and so on. + // The array of arrays theDecayRateVector contains all possible decay + // chains of a given parent nucleus (ZP,AP,EP) to a given descendant + // nuclide (Z,A,E). + // + // theDecayRateVector[0] contains the decay parameters of the parent + // nucleus + // PZ = ZP + // PA = AP + // PE = EP + // PT[] = {TP} + // PR[] = {RP} + // + // theDecayRateVector[1] contains the decay of the parent to the first + // generation daughter (Z1,A1,E1). + // PZ = Z1 + // PA = A1 + // PE = E1 + // PT[] = {TP, T1} + // PR[] = {RP, R1} + // + // theDecayRateVector[2] contains the decay of the parent to the first + // generation daughter (Z1,A1,E1) and the decay of the first + // generation daughter to the second generation daughter (Z2,A2,E2). + // PZ = Z2 + // PA = A2 + // PE = E2 + // PT[] = {TP, T1, T2} + // PR[] = {RP, R1, R2} + // + // theDecayRateVector[3] may contain a branch chain + // PZ = Z2a + // PA = A2a + // PE = E2a + // PT[] = {TP, T1, T2a} + // PR[] = {RP, R1, R2a} + // + // and so on. - // Calculate the decay rate of the isotope. decayRate is the - // radioactivity of isotope (PZ,PA,PE) at 'theDecayTime' - // it will be used to calculate the statistical weight of the - // decay products of this isotope + // Calculate the decay rate of the isotope. decayRate is the + // radioactivity of isotope (PZ,PA,PE) at 'theDecayTime' + // it will be used to calculate the statistical weight of the + // decay products of this isotope - // For each nuclide, calculate all the decay chains which can reach - // the parent nuclide - decayRate = 0.L; - for (G4int j = 0; j < G4int(PT.size() ); j++) { - // G4cout << " RDM::DecayIt: tau input to Convolve: " << PT[j] << G4endl; - taotime = ConvolveSourceTimeProfile(theDecayTime,PT[j]); - // taotime = GetTaoTime(theDecayTime,PT[j]); - decayRate -= PR[j] * (long double)taotime; // PRs are Acoeffs, taotime is inverse time - // Eq.4.23 of of the TN - // note the negative here is required as the rate in the - // equation is defined to be negative, - // i.e. decay away, but we need positive value here. + // For each nuclide, calculate all the decay chains which can reach + // the parent nuclide + decayRate = 0.L; + for (G4int j = 0; j < G4int(PT.size() ); j++) { + taotime = ConvolveSourceTimeProfile(theDecayTime,PT[j]); + decayRate -= PR[j] * (long double)taotime; // PRs are Acoeffs, taotime is inverse time + // Eq.4.23 of of the TN + // note the negative here is required as the rate in the + // equation is defined to be negative, + // i.e. decay away, but we need positive value here. - // G4cout << j << "\t"<< PT[j]/s << "\t" << PR[j] << "\t" << decayRate << G4endl; - } + // G4cout << j << "\t"<< PT[j]/s << "\t" << PR[j] << "\t" << decayRate << G4endl; + } - // At this point any negative decay rates are probably small enough - // (order 10**-30) that negative values are likely due to cancellation - // errors. Set them to zero. - if (decayRate < 0.0) decayRate = 0.0; + // At this point any negative decay rates are probably small enough + // (order 10**-30) that negative values are likely due to cancellation + // errors. Set them to zero. + if (decayRate < 0.0) decayRate = 0.0; - // // Test code - // if (decayRate < 0.0) { - // if (-decayRate > 1.0e-30) { - // G4ExceptionDescription ed; - // ed << " Negative decay probability (magnitude > 1e-30) \n" - // << " in variance reduction branch " << G4endl; - // G4Exception("G4RadioactiveDecay::DecayIt()", - // "HAD_RDM_200", JustWarning, ed); - // } else { - // // Decay probability is small enough that negative value is likely - // // due to cancellation errors. Set it to zero. - // decayRate = 0.0; - // } - // } - // G4cout << " VR in i loop after decayRate < 0 " << G4endl; - // if (decayRate < 0.0) G4cout << " NEGATIVE decay rate = " << decayRate << G4endl; + // G4cout <AddIsotope(PZ,PA,PE,weight1*decayRate,theTrack.GetWeight()); - theRadioactivityTables[decayWindows[nbin-1]] - ->AddIsotope(PZ,PA,PE,weight1*decayRate,theTrack.GetWeight()); + // Now calculate the statistical weight + // One needs to fold the source bias function with the decaytime + // also need to include the track weight! (F.Lei, 28/10/10) + G4double weight = weight1*decayRate*theTrack.GetWeight(); - // Now calculate the statistical weight - // One needs to fold the source bias function with the decaytime - // also need to include the track weight! (F.Lei, 28/10/10) - G4double weight = weight1*decayRate*theTrack.GetWeight(); + // decay the isotope + theIonTable = (G4IonTable *)(G4ParticleTable::GetParticleTable()->GetIonTable()); + parentNucleus = theIonTable->GetIon(PZ,PA,PE); - // decay the isotope - theIonTable = (G4IonTable *)(G4ParticleTable::GetParticleTable()->GetIonTable()); - parentNucleus = theIonTable->GetIon(PZ,PA,PE); + // Create a temprary products buffer. + // Its contents to be transfered to the products at the end of the loop + G4DecayProducts* tempprods = 0; - // Create a temprary products buffer. - // Its contents to be transfered to the products at the end of the loop - G4DecayProducts* tempprods = 0; + // Decide whether to apply branching ratio bias or not + if (BRBias) { + G4DecayTable* decayTable = GetDecayTable1(parentNucleus); + ndecaych = G4int(decayTable->entries()*G4UniformRand()); + G4VDecayChannel* theDecayChannel = decayTable->GetDecayChannel(ndecaych); - // Decide whether to apply branching ratio bias or not - if (BRBias) { - G4DecayTable* decayTable = GetDecayTable1(parentNucleus); - ndecaych = G4int(decayTable->entries()*G4UniformRand()); - G4VDecayChannel* theDecayChannel = decayTable->GetDecayChannel(ndecaych); + if (theDecayChannel == 0) { + // Decay channel not found. - if (theDecayChannel == 0) { - // Decay channel not found. + if (GetVerboseLevel() > 0) { + G4cout << " G4RadioactiveDecay::DoIt : cannot determine decay channel "; + G4cout << " for this nucleus; decay as if no biasing active. "; + G4cout << G4endl; + decayTable ->DumpInfo(); + } - if (GetVerboseLevel() > 0) { - G4cout << " G4RadioactiveDecay::DoIt : cannot determine decay channel "; - G4cout << " for this nucleus; decay as if no biasing active. "; - G4cout << G4endl; - decayTable ->DumpInfo(); - } - - tempprods = DoDecay(*parentNucleus); // DHW 6 Dec 2010 - do decay as if no biasing + tempprods = DoDecay(*parentNucleus); // DHW 6 Dec 2010 - do decay as if no biasing // to avoid deref of temppprods = 0 + } else { + // A decay channel has been identified, so execute the DecayIt. + G4double tempmass = parentNucleus->GetPDGMass(); + tempprods = theDecayChannel->DecayIt(tempmass); + weight *= (theDecayChannel->GetBR())*(decayTable->entries()); + } } else { - // A decay channel has been identified, so execute the DecayIt. - G4double tempmass = parentNucleus->GetPDGMass(); - tempprods = theDecayChannel->DecayIt(tempmass); - weight *= (theDecayChannel->GetBR())*(decayTable->entries()); + tempprods = DoDecay(*parentNucleus); } - } else { - tempprods = DoDecay(*parentNucleus); - } - // save the secondaries for buffers - numberOfSecondaries = tempprods->entries(); - currentTime = finalGlobalTime + theDecayTime; - for (index = 0; index < numberOfSecondaries; index++) { - asecondaryparticle = tempprods->PopProducts(); - if (asecondaryparticle->GetDefinition()->GetPDGStable() ) { - pw.push_back(weight); - ptime.push_back(currentTime); - secondaryparticles.push_back(asecondaryparticle); + // save the secondaries for buffers + numberOfSecondaries = tempprods->entries(); + currentTime = finalGlobalTime + theDecayTime; + for (index = 0; index < numberOfSecondaries; index++) { + asecondaryparticle = tempprods->PopProducts(); + if (asecondaryparticle->GetDefinition()->GetPDGStable() ) { + pw.push_back(weight); + ptime.push_back(currentTime); + secondaryparticles.push_back(asecondaryparticle); + } + // Generate gammas and Xrays from excited nucleus, added by L.Desorgher + else if (((const G4Ions*)(asecondaryparticle->GetDefinition())) + ->GetExcitationEnergy() > 0. && weight > 0.) { //Compute the gamma + G4ParticleDefinition* apartDef = asecondaryparticle->GetDefinition(); + AddDeexcitationSpectrumForBiasMode(apartDef,weight,currentTime,pw, + ptime,secondaryparticles); + } } - //Generate gammas and XRays from excited nucleus, added by L.Desorgher - else if (((const G4Ions*)(asecondaryparticle->GetDefinition()))->GetExcitationEnergy()>0. && weight>0.){//Compute the gamma - G4ParticleDefinition* apartDef =asecondaryparticle->GetDefinition(); - AddDeexcitationSpectrumForBiasMode(apartDef,weight,currentTime,pw,ptime,secondaryparticles); - } - } - delete tempprods; - } // end of i loop - } // end of n loop + delete tempprods; + } // end of i loop + } // end of n loop - // now deal with the secondaries in the two stl containers - // and submmit them back to the tracking manager - totalNumberOfSecondaries = pw.size(); - fParticleChangeForRadDecay.SetNumberOfSecondaries(totalNumberOfSecondaries); - for (index=0; index < totalNumberOfSecondaries; index++) { - G4Track* secondary = new G4Track(secondaryparticles[index], + // now deal with the secondaries in the two stl containers + // and submmit them back to the tracking manager + totalNumberOfSecondaries = pw.size(); + fParticleChangeForRadDecay.SetNumberOfSecondaries(totalNumberOfSecondaries); + for (index=0; index < totalNumberOfSecondaries; index++) { + G4Track* secondary = new G4Track(secondaryparticles[index], ptime[index], currentPosition); - secondary->SetGoodForTrackingFlag(); - secondary->SetTouchableHandle(theTrack.GetTouchableHandle()); - secondary->SetWeight(pw[index]); - fParticleChangeForRadDecay.AddSecondary(secondary); - } + secondary->SetGoodForTrackingFlag(); + secondary->SetTouchableHandle(theTrack.GetTouchableHandle()); + secondary->SetWeight(pw[index]); + fParticleChangeForRadDecay.AddSecondary(secondary); + } - // Kill the parent particle - fParticleChangeForRadDecay.ProposeTrackStatus(fStopAndKill) ; - fParticleChangeForRadDecay.ProposeLocalEnergyDeposit(energyDeposit); - fParticleChangeForRadDecay.ProposeLocalTime(finalLocalTime); - // Reset NumberOfInteractionLengthLeft. - ClearNumberOfInteractionLengthLeft(); + // Kill the parent particle + fParticleChangeForRadDecay.ProposeTrackStatus(fStopAndKill) ; + fParticleChangeForRadDecay.ProposeLocalEnergyDeposit(energyDeposit); + fParticleChangeForRadDecay.ProposeLocalTime(finalLocalTime); + // Reset NumberOfInteractionLengthLeft. + ClearNumberOfInteractionLengthLeft(); } // end VR decay return &fParticleChangeForRadDecay; @@ -1123,7 +1103,7 @@ G4Radioactivation::AddDeexcitationSpectrumForBiasMode(G4ParticleDefinition* apar G4double life_time=apartDef->GetPDGLifeTime(); G4ITDecay* anITChannel = 0; - while (life_time 0.) { + while (life_time < halflifethreshold && elevel > 0.) { anITChannel = new G4ITDecay(apartDef, 100., elevel, elevel, photonEvaporation); G4DecayProducts* pevap_products = anITChannel->DecayIt(0.); G4int nb_pevapSecondaries = pevap_products->entries(); @@ -1151,6 +1131,7 @@ G4Radioactivation::AddDeexcitationSpectrumForBiasMode(G4ParticleDefinition* apar } delete anITChannel; + delete pevap_products; } } diff --git a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc index 2ec386e18e..d5cb2f9197 100644 --- a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc +++ b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc @@ -168,7 +168,7 @@ G4int& G4RadioactiveDecay::NumberOfInstances() G4RadioactiveDecay::G4RadioactiveDecay(const G4String& processName) : G4VRestDiscreteProcess(processName, fDecay), isInitialised(false), forceDecayDirection(0.,0.,0.), forceDecayHalfAngle(0.*deg), dirPath(""), - verboseLevel(0) + verboseLevel(1) { #ifdef G4VERBOSE if (GetVerboseLevel() > 1) { @@ -177,6 +177,10 @@ G4RadioactiveDecay::G4RadioactiveDecay(const G4String& processName) } #endif + G4cout << " G4RadioactiveDecay is deprecated and will be removed in Geant4 version 11. " << G4endl; + G4cout << " Please replace it with G4RadioactiveDecayBase if you want the unbiased radioactive deacy process." << G4endl; + G4cout << " If you want the general process, with optional biasing, use G4Radioactivation. " << G4endl; + SetProcessSubType(fRadioactiveDecay); theRadioactiveDecaymessenger = new G4RadioactiveDecaymessenger(this); @@ -333,12 +337,15 @@ void G4RadioactiveDecay::SelectAVolume(const G4String aVolume) std::sort(ValidVolumes.begin(), ValidVolumes.end()); // sort need for performing binary_search #ifdef G4VERBOSE - if (GetVerboseLevel()>0) + if (GetVerboseLevel()>1) G4cout << " RDM Applies to : " << aVolume << G4endl; #endif } else if(i == theLogicalVolumes->size()) { - G4cerr << "SelectAVolume: "<< aVolume - << " is not a valid logical volume name" << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not a valid logical volume name. Decay not activated for it." + << G4endl; + G4Exception("G4RadioactiveDecayBase::SelectAVolume()", "HAD_RDM_300", + JustWarning, ed); } } } @@ -359,8 +366,10 @@ void G4RadioactiveDecay::DeselectAVolume(const G4String aVolume) std::sort(ValidVolumes.begin(), ValidVolumes.end()); isAllVolumesMode =false; } else { - G4cerr << " DeselectVolume:" << aVolume << " is not in the list " - << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not in the list " << G4endl; + G4Exception("G4RadioactiveDecayBase::DeselectAVolume()", "HAD_RDM_300", + JustWarning, ed); } #ifdef G4VERBOSE if (GetVerboseLevel() > 0) @@ -368,8 +377,10 @@ void G4RadioactiveDecay::DeselectAVolume(const G4String aVolume) << G4endl; #endif } else if (i == theLogicalVolumes->size()) { - G4cerr << " DeselectVolume:" << aVolume - << "is not a valid logical volume name" << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not a valid logical volume name " << G4endl; + G4Exception("G4RadioactiveDecayBase::SelectAVolume()", "HAD_RDM_300", + JustWarning, ed); } } } @@ -382,14 +393,14 @@ void G4RadioactiveDecay::SelectAllVolumes() theLogicalVolumes = G4LogicalVolumeStore::GetInstance(); ValidVolumes.clear(); #ifdef G4VERBOSE - if (GetVerboseLevel()>0) + if (GetVerboseLevel()>1) G4cout << " RDM Applies to all Volumes" << G4endl; #endif for (size_t i = 0; i < theLogicalVolumes->size(); i++){ volume = (*theLogicalVolumes)[i]; ValidVolumes.push_back(volume->GetName()); #ifdef G4VERBOSE - if (GetVerboseLevel()>0) + if (GetVerboseLevel()>1) G4cout << " RDM Applies to Volume " << volume->GetName() << G4endl; #endif } @@ -404,7 +415,7 @@ void G4RadioactiveDecay::DeselectAllVolumes() ValidVolumes.clear(); isAllVolumesMode=false; #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "RDM removed from all volumes" << G4endl; + if (GetVerboseLevel() > 1) G4cout << "RDM removed from all volumes" << G4endl; #endif } @@ -433,7 +444,7 @@ G4RadioactiveDecay::GetChainsFromParent(const G4ParticleDefinition& aParticle) } } #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) { + if (GetVerboseLevel() > 1) { G4cout << "The DecayRate Table for " << aParticleName << " is selected." << G4endl; } @@ -647,7 +658,7 @@ G4double G4RadioactiveDecay::GetMeanLifeTime(const G4Track& theTrack, meanlife == DBL_MAX) {meanlife = 0.;} } #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout << " mean life time: " << meanlife/s << " s " << G4endl; #endif @@ -1304,7 +1315,7 @@ CalculateChainsFromParent(const G4ParticleDefinition& theParentNucleus) EP = theDecayRateVector[j].GetE(); RP = theDecayRateVector[j].GetDecayRateC(); TP = theDecayRateVector[j].GetTaos(); - if (GetVerboseLevel() > 0) { + if (GetVerboseLevel() > 1) { G4cout << "G4RadioactiveDecay::CalculateChainsFromParent: daughters of (" << ZP << ", " << AP << ", " << EP << ") are being calculated, generation = " << nGeneration @@ -1662,7 +1673,7 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) if (!std::binary_search(ValidVolumes.begin(), ValidVolumes.end(), theTrack.GetVolume()->GetLogicalVolume()->GetName())) { #ifdef G4VERBOSE - if (GetVerboseLevel()>0) { + if (GetVerboseLevel()>1) { G4cout <<"G4RadioactiveDecay::DecayIt : " << theTrack.GetVolume()->GetLogicalVolume()->GetName() << " is not selected for the RDM"<< G4endl; @@ -1686,13 +1697,13 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) if (!(IsApplicable(*theParticleDef) ) ) { // Particle is not an ion or is outside the nucleuslimits for decay -#ifdef G4VERBOSE - if (GetVerboseLevel()>0) { - G4cerr << "G4RadioactiveDecay::DecayIt : " + if (GetVerboseLevel() > 1) { + G4cout << " G4RadioactiveDecay::DecayIt : " << theParticleDef->GetParticleName() - << " is not a valid nucleus for the RDM"<< G4endl; + << " is not a valid nucleus for the RDM. "<< G4endl; + G4cout << " Set particle change accordingly. " << G4endl; } -#endif + fParticleChangeForRadDecay.SetNumberOfSecondaries(0); // Kill the parent particle @@ -1706,12 +1717,11 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) if (theDecayTable == 0 || theDecayTable->entries() == 0) { // No data in the decay table. Set particle change parameters // to indicate this. -#ifdef G4VERBOSE - if (GetVerboseLevel() > 0) { - G4cerr <<"G4RadioactiveDecay::DecayIt : decay table not defined for "; - G4cerr <GetParticleName() < 1) { + G4cout <<" G4RadioactiveDecay::DecayIt : decay table not defined for "; + G4cout << theParticleDef->GetParticleName() << G4endl; + G4cout << " Set particle change to indicate this. " << G4endl; } -#endif fParticleChangeForRadDecay.SetNumberOfSecondaries(0); // Kill the parent particle. @@ -1732,7 +1742,7 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) // Check whether use Analogue or VR implementation if (AnalogueMC) { #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) + if (GetVerboseLevel() > 1) G4cout <<"DecayIt: Analogue MC version " << G4endl; # endif @@ -1987,10 +1997,10 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) if (theDecayChannel == 0) { // Decay channel not found. #ifdef G4VERBOSE - if (GetVerboseLevel()>0) { - G4cerr << " G4RadioactiveDecay::DoIt : cannot determine decay channel "; - G4cerr << " for this nucleus; decay as if no biasing active "; - G4cerr << G4endl; + if (GetVerboseLevel() > 0) { + G4cout << " G4RadioactiveDecay::DoIt : cannot determine decay "; + G4cout << " channel for this nucleus; decay as if no biasing active "; + G4cout << G4endl; decayTable ->DumpInfo(); } #endif @@ -2066,16 +2076,11 @@ G4RadioactiveDecay::DoDecay(const G4ParticleDefinition& theParticleDef) G4DecayTable* theDecayTable = GetDecayTable(&theParticleDef); // Choose a decay channel. -#ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "Select a channel..." << G4endl; -#endif - // G4DecayTable::SelectADecayChannel checks to see if sum of daughter masses // exceeds parent mass. Pass it the parent mass + maximum Q value to account // for difference in mass defect. G4double parentPlusQ = theParticleDef.GetPDGMass() + 30.*MeV; G4VDecayChannel* theDecayChannel = theDecayTable->SelectADecayChannel(parentPlusQ); - theRadDecayMode = (static_cast(theDecayChannel))->GetDecayMode(); if (theDecayChannel == 0) { // Decay channel not found. G4ExceptionDescription ed; @@ -2086,10 +2091,11 @@ G4RadioactiveDecay::DoDecay(const G4ParticleDefinition& theParticleDef) // A decay channel has been identified, so execute the DecayIt. #ifdef G4VERBOSE if (GetVerboseLevel() > 1) { - G4cerr << "G4RadioactiveDecay::DoIt : selected decay channel addr:"; - G4cerr << theDecayChannel << G4endl; + G4cout << "G4RadioactiveDecay::DoIt : selected decay channel address:"; + G4cout << theDecayChannel << G4endl; } #endif + theRadDecayMode = (static_cast(theDecayChannel))->GetDecayMode(); products = theDecayChannel->DecayIt(theParticleDef.GetPDGMass() ); // Apply directional bias if requested by user @@ -2108,7 +2114,7 @@ void G4RadioactiveDecay::CollimateDecay(G4DecayProducts* products) { if (0 == products || 0 == products->entries()) return; #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "Begin of CollimateDecay..." << G4endl; + if (GetVerboseLevel() > 1) G4cout << "Begin decay collimation " << G4endl; #endif // Particles suitable for directional biasing (for if-blocks below) diff --git a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecayBase.cc b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecayBase.cc index 3cb1a7195a..84e0dc7af9 100644 --- a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecayBase.cc +++ b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecayBase.cc @@ -108,7 +108,7 @@ G4int& G4RadioactiveDecayBase::NumberOfInstances() G4RadioactiveDecayBase::G4RadioactiveDecayBase(const G4String& processName) : G4VRestDiscreteProcess(processName, fDecay), isInitialised(false), forceDecayDirection(0.,0.,0.), forceDecayHalfAngle(0.*deg), dirPath(""), - verboseLevel(0) + verboseLevel(1) { #ifdef G4VERBOSE if (GetVerboseLevel() > 1) { @@ -255,9 +255,11 @@ void G4RadioactiveDecayBase::SelectAVolume(const G4String aVolume) G4cout << " Radioactive decay applied to " << aVolume << G4endl; } else if (i == theLogicalVolumes->size() ) { - G4cout << " G4RadioactiveDecay::SelectAVolume: " << aVolume - << " is not a valid logical volume name." - << " Decay not activated for it." << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not a valid logical volume name. Decay not activated for it." + << G4endl; + G4Exception("G4RadioactiveDecayBase::SelectAVolume()", "HAD_RDM_300", + JustWarning, ed); } } } @@ -281,13 +283,17 @@ void G4RadioactiveDecayBase::DeselectAVolume(const G4String aVolume) G4cout << " G4RadioactiveDecay::DeselectAVolume: " << aVolume << " is removed from list " << G4endl; } else { - G4cout << " G4RadioactiveDecay::DeselectAVolume: " << aVolume - << " is not in the list. No action taken. " << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not in the list. No action taken." << G4endl; + G4Exception("G4RadioactiveDecayBase::DeselectAVolume()", "HAD_RDM_300", + JustWarning, ed); } } else if (i == theLogicalVolumes->size()) { - G4cout << " G4RadioactiveDecay::DeselectVolume:" << aVolume - << " is not a valid logical volume name. No action taken." - << G4endl; + G4ExceptionDescription ed; + ed << aVolume << " is not a valid logical volume name. No action taken." + << G4endl; + G4Exception("G4RadioactiveDecayBase::DeselectAVolume()", "HAD_RDM_300", + JustWarning, ed); } } } @@ -300,14 +306,14 @@ void G4RadioactiveDecayBase::SelectAllVolumes() theLogicalVolumes = G4LogicalVolumeStore::GetInstance(); ValidVolumes.clear(); #ifdef G4VERBOSE - if (GetVerboseLevel()>0) + if (GetVerboseLevel()>1) G4cout << " RDM Applies to all Volumes" << G4endl; #endif for (size_t i = 0; i < theLogicalVolumes->size(); i++){ volume = (*theLogicalVolumes)[i]; ValidVolumes.push_back(volume->GetName()); #ifdef G4VERBOSE - if (GetVerboseLevel()>0) + if (GetVerboseLevel()>1) G4cout << " RDM Applies to Volume " << volume->GetName() << G4endl; #endif } @@ -322,7 +328,7 @@ void G4RadioactiveDecayBase::DeselectAllVolumes() ValidVolumes.clear(); isAllVolumesMode=false; #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "RDM removed from all volumes" << G4endl; + if (GetVerboseLevel() > 1) G4cout << "RDM removed from all volumes" << G4endl; #endif } @@ -356,7 +362,7 @@ G4double G4RadioactiveDecayBase::GetMeanLifeTime(const G4Track& theTrack, if (((const G4Ions*)(theParticleDef))->GetExcitationEnergy() > 0. && meanlife == DBL_MAX) {meanlife = 0.;} #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) + if (GetVerboseLevel() > 2) G4cout << " mean life time: " << meanlife/s << " s " << G4endl; #endif @@ -421,7 +427,7 @@ G4double G4RadioactiveDecayBase::GetMeanFreePath (const G4Track& aTrack, G4doubl } #ifdef G4VERBOSE - if (GetVerboseLevel() > 1) { + if (GetVerboseLevel() > 2) { G4cout << "mean free path: "<< pathlength/m << " m" << G4endl; } #endif @@ -896,7 +902,10 @@ G4RadioactiveDecayBase::AddUserDecayDataFile(G4int Z, G4int A, G4String filename G4int ID_ion = A*1000 + Z; theUserRadioactiveDataFiles[ID_ion] = filename; } else { - G4cout << "The file " << filename << " does not exist!" << G4endl; + G4ExceptionDescription ed; + ed << filename << " does not exist! " << G4endl; + G4Exception("G4RadioactiveDecayBase::AddUserDecayDataFile()", "HAD_RDM_001", + FatalException, ed); } } @@ -920,7 +929,7 @@ G4RadioactiveDecayBase::DecayIt(const G4Track& theTrack, const G4Step&) if (!std::binary_search(ValidVolumes.begin(), ValidVolumes.end(), theTrack.GetVolume()->GetLogicalVolume()->GetName())) { #ifdef G4VERBOSE - if (GetVerboseLevel()>0) { + if (GetVerboseLevel()>1) { G4cout <<"G4RadioactiveDecay::DecayIt : " << theTrack.GetVolume()->GetLogicalVolume()->GetName() << " is not selected for the RDM"<< G4endl; @@ -944,7 +953,7 @@ G4RadioactiveDecayBase::DecayIt(const G4Track& theTrack, const G4Step&) if (!(IsApplicable(*theParticleDef) ) ) { // Particle is not an ion or is outside the nucleuslimits for decay - if (GetVerboseLevel() > 0) { + if (GetVerboseLevel() > 1) { G4cout << "G4RadioactiveDecay::DecayIt : " << theParticleDef->GetParticleName() << " is not an ion or is outside (Z,A) limits set for the decay. " @@ -965,7 +974,7 @@ G4RadioactiveDecayBase::DecayIt(const G4Track& theTrack, const G4Step&) if (theDecayTable == 0 || theDecayTable->entries() == 0) { // No data in the decay table. Set particle change parameters // to indicate this. - if (GetVerboseLevel() > 0) { + if (GetVerboseLevel() > 1) { G4cout << "G4RadioactiveDecay::DecayIt : " << "decay table not defined for " << theParticleDef->GetParticleName() @@ -1169,17 +1178,13 @@ G4RadioactiveDecayBase::DoDecay(const G4ParticleDefinition& theParticleDef) { G4DecayProducts* products = 0; G4DecayTable* theDecayTable = GetDecayTable(&theParticleDef); - // Choose a decay channel. -#ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "Select a channel..." << G4endl; -#endif + // Choose a decay channel. // G4DecayTable::SelectADecayChannel checks to see if sum of daughter masses // exceeds parent mass. Pass it the parent mass + maximum Q value to account // for difference in mass defect. G4double parentPlusQ = theParticleDef.GetPDGMass() + 30.*MeV; G4VDecayChannel* theDecayChannel = theDecayTable->SelectADecayChannel(parentPlusQ); - theRadDecayMode = (static_cast(theDecayChannel))->GetDecayMode(); if (theDecayChannel == 0) { // Decay channel not found. @@ -1195,6 +1200,7 @@ G4RadioactiveDecayBase::DoDecay(const G4ParticleDefinition& theParticleDef) << theDecayChannel << G4endl; } #endif + theRadDecayMode = (static_cast(theDecayChannel))->GetDecayMode(); products = theDecayChannel->DecayIt(theParticleDef.GetPDGMass() ); // Apply directional bias if requested by user @@ -1213,7 +1219,7 @@ void G4RadioactiveDecayBase::CollimateDecay(G4DecayProducts* products) { if (0 == products || 0 == products->entries()) return; #ifdef G4VERBOSE - if (GetVerboseLevel() > 0) G4cout << "Begin of CollimateDecay..." << G4endl; + if (GetVerboseLevel() > 1) G4cout << "Begin of CollimateDecay..." << G4endl; #endif // Particles suitable for directional biasing (for if-blocks below) diff --git a/source/processes/hadronic/processes/History b/source/processes/hadronic/processes/History index dc0c6c7bbe..a361659451 100644 --- a/source/processes/hadronic/processes/History +++ b/source/processes/hadronic/processes/History @@ -15,6 +15,11 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +17 December 2019 Vladimir Ivanchenko (hadr-proc-V10-05-09) +---------------------------------------------------------- +- G4HadronElasticProcess : removed forgotten try/catch pattern for + target isotope selection, which should be a part of 10.6 + 11 July 2019 Alberto Ribon (hadr-proc-V10-05-06) ----------------------------------------------------- - Created new inelastic processes for heavy hadron - nucleus interactions: diff --git a/source/processes/hadronic/processes/src/G4HadronElasticProcess.cc b/source/processes/hadronic/processes/src/G4HadronElasticProcess.cc index 685ada1e58..dadae1b596 100644 --- a/source/processes/hadronic/processes/src/G4HadronElasticProcess.cc +++ b/source/processes/hadronic/processes/src/G4HadronElasticProcess.cc @@ -82,21 +82,8 @@ G4HadronElasticProcess::PostStepDoIt(const G4Track& track, G4Nucleus* targNucleus = GetTargetNucleusPointer(); // Select element - const G4Element* elm = nullptr; - try - { - elm = GetCrossSectionDataStore()->SampleZandA(dynParticle, material, - *targNucleus); - } - catch(G4HadronicException & aR) - { - G4ExceptionDescription ed; - aR.Report(ed); - DumpState(track,"SampleZandA",ed); - ed << " PostStepDoIt failed on element selection" << G4endl; - G4Exception("G4HadronElasticProcess::PostStepDoIt", "had003", - FatalException, ed); - } + const G4Element* elm = + GetCrossSectionDataStore()->SampleZandA(dynParticle, material, *targNucleus); // Initialize the hadronic projectile from the track G4HadProjectile theProj(track); diff --git a/source/processes/hadronic/stopping/History b/source/processes/hadronic/stopping/History index d5613c9827..a8f7ed797d 100644 --- a/source/processes/hadronic/stopping/History +++ b/source/processes/hadronic/stopping/History @@ -14,6 +14,12 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +05 February 2020 A. Ribon (hadr-stopping-V10-05-03) + -------------------------------------------------------------------- +- G4MuonicAtomDecay : (applied fix made by Vladimir Ivanchenko on + 27 January 2020 on the master) fixed Coverity warning by addition + of G4Exception. + 06 November 2019 V.Ivanchenko (hadr-stopping-V10-05-02) -------------------------------------------------------------------- - G4MuonMinusAtomicCapture - fixed trivial Coverity warning diff --git a/source/processes/hadronic/stopping/src/G4MuonicAtomDecay.cc b/source/processes/hadronic/stopping/src/G4MuonicAtomDecay.cc index 0104412be4..86f12bd068 100644 --- a/source/processes/hadronic/stopping/src/G4MuonicAtomDecay.cc +++ b/source/processes/hadronic/stopping/src/G4MuonicAtomDecay.cc @@ -256,6 +256,12 @@ G4VParticleChange* G4MuonicAtomDecay::DecayIt(const G4Track& aTrack, } #endif products = decaychannel->DecayIt(aParticle->GetMass()); + if(!products) { + G4ExceptionDescription ed; + ed << "No products are generated for " + << aParticleDef->GetParticleName(); + G4Exception("G4MuonicAtomDecay::DecayIt","DECAY003",FatalException,ed); + } #ifdef G4VERBOSE if (GetVerboseLevel()>1) { decaychannel->SetVerboseLevel(temp); diff --git a/source/visualization/OpenGL/GNUmakefile b/source/visualization/OpenGL/GNUmakefile index ee451b2efc..0793706f5c 100644 --- a/source/visualization/OpenGL/GNUmakefile +++ b/source/visualization/OpenGL/GNUmakefile @@ -14,7 +14,10 @@ endif # CPPFLAGS += -DG4DEBUG_VIS_OGL GLOBLIBS = libG4vis_management.lib libG4modeling.lib libG4gl2ps.lib -GLOBLIBS += libG4zlib.lib libG4interfaces.lib libG4run.lib libG4event.lib +ifdef G4LIB_BUILD_ZLIB + GLOBLIBS += libG4zlib.lib +endif +GLOBLIBS += libG4interfaces.lib libG4run.lib libG4event.lib GLOBLIBS += libG4tracking.lib libG4processes.lib libG4digits_hits.lib GLOBLIBS += libG4track.lib libG4particles.lib libG4geometry.lib GLOBLIBS += libG4materials.lib libG4graphics_reps.lib diff --git a/source/visualization/OpenInventor/CMakeLists.txt b/source/visualization/OpenInventor/CMakeLists.txt index bbc01b8cbb..042b64835c 100644 --- a/source/visualization/OpenInventor/CMakeLists.txt +++ b/source/visualization/OpenInventor/CMakeLists.txt @@ -17,3 +17,11 @@ else() GEANT4_GLOBAL_LIBRARY_TARGET(COMPONENTS sources.cmake) endif() +# Fix for Inventor not yet supporting usage requirements +if(TARGET G4OpenInventor) + target_include_directories(G4OpenInventor PUBLIC ${G4VIS_MODULE_OPENINVENTOR_INCLUDE_DIRS}) +endif() + +if(TARGET G4OpenInventor-static) + target_include_directories(G4OpenInventor-static PUBLIC ${G4VIS_MODULE_OPENINVENTOR_INCLUDE_DIRS}) +endif() diff --git a/source/visualization/OpenInventor/GNUmakefile b/source/visualization/OpenInventor/GNUmakefile index 57f819914a..0b3fd36220 100644 --- a/source/visualization/OpenInventor/GNUmakefile +++ b/source/visualization/OpenInventor/GNUmakefile @@ -6,7 +6,10 @@ ifndef G4INSTALL endif GLOBLIBS = libG4vis_management.lib libG4modeling.lib libG4gl2ps.lib -GLOBLIBS += libG4zlib.lib libG4interfaces.lib libG4run.lib libG4event.lib +ifdef G4LIB_BUILD_ZLIB + GLOBLIBS += libG4zlib.lib +endif +GLOBLIBS += libG4interfaces.lib libG4run.lib libG4event.lib GLOBLIBS += libG4tracking.lib libG4processes.lib libG4digits_hits.lib GLOBLIBS += libG4track.lib libG4particles.lib libG4geometry.lib GLOBLIBS += libG4materials.lib libG4graphics_reps.lib diff --git a/source/visualization/OpenInventor/History b/source/visualization/OpenInventor/History index 94174ee77d..fe3a68623d 100644 --- a/source/visualization/OpenInventor/History +++ b/source/visualization/OpenInventor/History @@ -18,6 +18,11 @@ committal in the CVS repository ! History file for visualization/OpenInventor ------------------------------------------- +22 January 2020 B.Morgan (openinventor-V10-05-08) +- Add include paths to Inventor et al to usage requirements on G4OpenInventor + Inventor does not yet support imported targets, and paths added by + include_directories are now explicitly removed. + Fixes Bugzilla 2215 23rd October 2019 Ben Morgan (openinventor-V10-05-07) - Remove inclusion of QT_USE_FILE from CMake scripts. diff --git a/source/visualization/OpenInventor/sources.cmake b/source/visualization/OpenInventor/sources.cmake index 836a141dbe..332a41f61c 100644 --- a/source/visualization/OpenInventor/sources.cmake +++ b/source/visualization/OpenInventor/sources.cmake @@ -40,9 +40,11 @@ include_directories(${CMAKE_SOURCE_DIR}/source/visualization/modeling/include) # Generic Inventor Headers, base library, OpenGL and Geant4 defines # include_directories(${INVENTOR_INCLUDE_DIR}) +set(G4VIS_MODULE_OPENINVENTOR_INCLUDE_DIRS ${INVENTOR_INCLUDE_DIR}) set(G4VIS_MODULE_OPENINVENTOR_LINK_LIBRARIES ${INVENTOR_LIBRARY}) include_directories(${OPENGL_INCLUDE_DIR}) +list(APPEND G4VIS_MODULE_OPENINVENTOR_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR}) list(APPEND G4VIS_MODULE_OPENINVENTOR_LINK_LIBRARIES ${OPENGL_LIBRARIES}) add_definitions(-DG4VIS_BUILD_OI_DRIVER) @@ -133,6 +135,10 @@ if(UNIX) # We also need Xm and X11 include_directories(${X11_INCLUDE_DIR}) include_directories(${MOTIF_INCLUDE_DIR}) + list(APPEND G4VIS_MODULE_OPENINVENTOR_INCLUDE_DIRS + ${OPENGL_INCLUDE_DIR} + ${MOTIF_INCLUDE_DIR} + ) list(APPEND G4VIS_MODULE_OPENINVENTOR_LINK_LIBRARIES ${MOTIF_LIBRARIES} ${X11_LIBRARIES} diff --git a/source/visualization/externals/gl2ps/GNUmakefile b/source/visualization/externals/gl2ps/GNUmakefile index c2e597b38b..2ca3032fbf 100644 --- a/source/visualization/externals/gl2ps/GNUmakefile +++ b/source/visualization/externals/gl2ps/GNUmakefile @@ -10,7 +10,9 @@ ifndef G4INSTALL G4INSTALL = ../../../.. endif -GLOBLIBS = libG4zlib.lib +ifdef G4LIB_BUILD_ZLIB + GLOBLIBS = libG4zlib.lib +endif include $(G4INSTALL)/config/architecture.gmk include $(G4INSTALL)/config/G4VIS_BUILD.gmk