diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a8bdafa89..e8ef621d7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ # # 21st September 2010 Ben Morgan # -# $Id: CMakeLists.txt 97443 2016-06-03 07:59:02Z gcosmo $ +# $Id: CMakeLists.txt 102581 2017-02-09 09:30:38Z gcosmo $ # #----------------------------------------------------------------------- @@ -35,10 +35,10 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX project(Geant4) # - Versioning. We do this here for now -set(${PROJECT_NAME}_VERSION "10.3.0") +set(${PROJECT_NAME}_VERSION "10.3.1") set(${PROJECT_NAME}_VERSION_MAJOR "10") set(${PROJECT_NAME}_VERSION_MINOR "3") -set(${PROJECT_NAME}_VERSION_PATCH "0") +set(${PROJECT_NAME}_VERSION_PATCH "1") # - Prepend our own CMake Modules to the search path diff --git a/ReleaseNotes/Patch4.10.2-3.txt b/ReleaseNotes/Patch4.10.2-3.txt new file mode 100644 index 0000000000..a4384c3f5e --- /dev/null +++ b/ReleaseNotes/Patch4.10.2-3.txt @@ -0,0 +1,231 @@ + + Geant4 10.2 - patch-03 Release Notes + ------------------------------------ + + 27 January 2017 + +List of fixes included in this public patch since the public release 10.2.p02: + + o Configuration: + ------------- + + CMake: + o Correctly export USolids/VecGeom settings to GNUmake configuration + scripts. + o Provided placeholder variable for adding setting of XercesC library + path. Addressing problem report #1877. + + o Analysis + -------- + + Fixed incompatibility with ROOT 5.x and 6.x formats. + + Fixed compilation warnings and MacOSX and Win64. + + o Error-Propagation + ----------------- + + G4ErrorPhysicsList: replaced direct use of 'aParticleIterator' with + GetParticleIterator(), to allow for porting on clang-3.9 and XCode-8 + on MacOS. + + o Event: + ----- + + Fixed way of deleting G4PrimaryVertex objects to avoid stack overflow + for very large number of primary vertices. + + Set polarization to pre-assigned decay products in G4PrimaryTransformer. + Addressing problem report #1914. + + o Geometry: + -------- + + magnetic-field: + o Fixed G4ClassicalRK4 header with protection against multiple inclusions. + + management: + o Moved initialisation of G4GeomSplitter thread-local data to be inline + along with generic template type; moved accessors/modifiers for splitter + data to non-inline in G4Region, G4LogicalVolume and G4VPhysicalVolume. + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + o Removed redundant check in G4GeomSplitter::UseWorkArea(). + Addressing problem report #1876. + + navigation: + o Fixed recursion test for overlaps in G4GeomTestVolume to iterate on + all daughters. + o G4ReplicaNavigation: use Cartesian tolerance in distance evaluation + in DistanceToOutPhi(). Addressing problem report #1902. + o G4Navigator: in ComputeStep() force abortion of event if track gets + really stuck, but avoid check for overlaps if push-verbosity is set to + false. Extended printout for stuck tracks, to show also local + coordinates. + o Fix in G4Navigator::GetGlobalExitNormal() to synchronise caching of + 'fExitNormalGlobalFrame' before returning. + Addressing problem report #1750. + Added more diagnostics in G4VERBOSE mode. + o G4PhantomParameterisation: revisited precision checks. + o G4PropagatorInField: fix to pass accuracy values to Intersection Locator + after re-evaluating epsilon. + o Added annotations for while-do loops. + + solids/Boolean: + o G4SubtractionSolid: directly return previously computed distance in + DistanceToIn(p,v) if no progress is made (zero step). + + solids/CSG: + o Disabled check for intersection of cut planes in G4CutTubs constructor, + as too strict and not necessary. Addressing problem report #1887. + o Use G4RandFlat instead of RandFlat. + + solids/specific: + o Moved accessors/modifiers for splitter data to non-inline in + G4PolyhedraSide and G4PolyconeSide. Moved initialisation of + G4GeomSplitter thread-local data to be inline along with generic + template type. + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + o Fixed minor typo in function Create() for G4Polycone, G4Polyhedra and + G4GenericPolycone. Fixed minor typos in G4GenericTrap::SurfaceNormal() + and G4VTwistSurface::CurrentStatus::ResetfDone(). + Addressing problem report #1876. + o Use G4RandFlat instead of RandFlat. + + volumes: + o Correction in G4NavigationHistory default constructor to use + GetLevels() instead of GetNewLevels() from G4NavigationHistoryPool, + to favor re-use of already allocated space. + Corrected printout in streaming operator. + o Moved initialisation of G4GeomSplitter thread-local data to be inline + along with generic template type. + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + + o Global: + ------ + + G4StatDouble: fixed computation of RMS and added new constructor. + + G4UnitsTable: use 'hep_pascal' instead of 'pascal' to avoid potential + symbol conflicts on Windows. + + Made initialisation of G4TWorkspacePool thread-local data to be inline + along with generic template type. Fixing compilation/linking errors on + clang-3.9 and XCode-8 on MacOS. + + Fixed compilation warning on MacOS Sierra in MT mode in function + G4Threading::G4GetPidId(). + + Updated date and version for 10.2.p03. + + o Graphics Representations: + ------------------------ + + G4VisAttributes::GetInvisible(): changed to use a static instance instead + of G4VisAttributes::Invisible; moved implementation to be not inline. + Deprecated G4VisAttributes::Invisible. + + o Materials: + --------- + + Fixed incorrectly calculated index for MicroRoughness lookup table + in G4UCNMaterialPropertiesTable. Fixed incorrectly calculated + MicroRoughness amplitude in G4UCNMicroRoughnessHelper. + + o Parameterisations: + ----------------- + + gflash: + o Fixed memory leak in GVFlashShowerParameterisation. + o Removed redundant condition in GFlashHitMaker::make(). + Addressing problem report #1876. + + o Particles: + --------- + + Fixed way of deleting G4PrimaryVertex and G4PrimaryParticle objects + to avoid stack overflow for very large number of primary vertices or + primary particles. + + Fixed calculation of neutrino mass in G4MuonRadiativeDecayWithSpin. + Addressing problem report #1928. + + Replaced use of obsolete G4PDefSplitter class by G4PDefManager, concrete + class with implementation. This addresses initialisation problems of + static data previously in template. + Moved accessors/modifiers for splitter data to non-inline in + G4ParticleDefinition and moved initialisation of Splitter thread-local + data to be inline along with generic template type. + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + + o Persistency: + ----------- + + GDML: + o Fixed check for correctness of the units for divisions and replicas + along angular axis. Addressing problem report #1912. + + mctruth: + o Fixed typo in G4PersistencyCenterMessenger::GetCurrentValue() in + selection of verbose mode. Addressing problem report #1876. + + o Physics Lists + ------------- + + Replaced direct use of aParticleIterator by GetParticleIterator(). + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + + o Processes - Electromagnetic: + --------------------------- + + dna: + o Removed check of c++ version for unique_ptr/auto_ptr selection in + G4MoleculeCounter. + + lowenergy: + o Removed verbosity in G4AtomicTransitionManager. + Addressing problem report #1874. + o Fixed typo in G4hParameterisedLossModel. + Addressing problem report #1876. + + utils: + o G4EmBiasingManager: fixed typo in condition. + Addressing problem report #1876. + + o Processes - Hadronic: + -------------------- + + models/im_r_matrix: + o G4VScatteringCollision: fixed memory leak in MT-mode. + Addressing problem report #1905. + + models/lend: + o Fixed to use G4Random. + o Improved memory consumption in multi-threaded runs. + o Fixed compilation warning in GCC with -O3 optimisation option. + + models/particle_hp: + o Reintroduced cache of cross-section in GetIsoCrossSection(). + Fixing CPU performance penalty introduced in release 10.2 on HP + processes. + o Fixed warning messages on clang-3.8, + + processes: + o UCN processes: fixed incorrectly calculated MicroRoughness correction + to absorption probability. Corrected calculation of refracted velocity + after transmission. + + util: + o Fix in G4Nucleus::GetThermalNucleus() in branch on total energy + calculation using relativistic energy at higher energies. + Addressing problem report #1911. + + o Processes - Optical: + ------------------- + + Fixed potential problem of photon stuck when traveling almost + perpendicular to the surface normal. Addressing problem report #1888. + + o Run: + --- + + Added method GetParticleIterator() in G4VPhysicsConstructor and in + G4VUserPhysicsList. Mved static GetInstance() method in G4RNGHelper to be + not inline. Moved initialisation of G4VUPLSplitter thread-local data to + be inline along with generic template type. + Removed explicit initialisation of thread-local data from workspaces, + as now happening inline in G4TWorkspacePool. + Fixing compilation/linking errors on clang-3.9 and XCode-8 on MacOS. + + Removed redundant check in G4VUPLSplitter::UseWorkArea(). + Addressing problem report #1876. + + G4WorkerRunManager: minor printout improvement. + + o Visualization: + ------------- + + management: + o G4Scene: replaced warning reference to obsolete + G4VisAttributes::Invisible to G4VisAttributes::GetInvisible(). + + OpenGL: + o Fixed compilation warning on Win64. + + o Examples: + -------- + + Updated reference outputs. + + Replaced direct use of 'a/theParticleIterator' with GetParticleIterator(). + + ---------------------------------------------------------------------------- + + Technical Notes + --------------- + + o This patch should be applied on top of release 10.2. + o Technical notes distributed for release 10.2 are also applicable and + valid for this patch. + +The code and rebuilt binary libraries for release 10.2.p03 are available +through our "Download" Web page. + +Please refer to the Geant4 User Documentation for further information about +using Geant4. diff --git a/ReleaseNotes/Patch4.10.3-1.txt b/ReleaseNotes/Patch4.10.3-1.txt new file mode 100644 index 0000000000..d28804a21d --- /dev/null +++ b/ReleaseNotes/Patch4.10.3-1.txt @@ -0,0 +1,236 @@ + + Geant4 10.3 - patch-01 Release Notes + ------------------------------------ + + 24 February 2017 + +List of fixes included in this public patch since the public release 10.3: + + o Configuration: + ------------- + + CMake: + o Updated data-sets to G4PhotonEvaporation-4.3.2 and + G4RadioactiveDecay-5.1.1. + + o Analysis + -------- + + Restored clean-up of Root empty files in MT mode. + + o Geometry: + -------- + + solids/Boolean: + o Return normal from solid being subtracted, in case point is located + outside in G4SubtractionSolid::SurfaceNormal(). + o Code formatting and minor cleanup in G4IntersectionSolid. + + solids/CSG: + o Use radius differences and hypot to improve precision in G4Torus. + Addressing problem report #1931. + o Fix in GetCubicVolume() and GetSurfaceArea() for G4CutTubs, to make + use of the cached values. Addressing problem report #1943. + o Removed redundant code/checks in G4Orb::SurfaceNormal(). + + solids/specific: + o Correction in G4UExtrudedSolid to signature for CalculateExtent(). + Fixes issue of undefined symbol if extruded-solid not included in the + list of VecGeom wrappers to activate. + + volumes: + o Correction in G4NavigationHistory default constructor to use + GetLevels() instead of GetNewLevels() from G4NavigationHistoryPool, + to favor re-use of already allocated space. + + o Global: + ------ + + Removed obsolete G4SubString code used internally in G4String, as no + longer necessary and also including unnecessary and buggy operators. + Addressing problem report #1864. + + Updated date and version for 10.3.p01. + + o Intercoms: + --------- + + Added "/control/useDoublePrecision" UI command to extend to 17 digits + precision printout for the current parameter values. + Addressing problem report #1921. + + o Interfaces: + ---------- + + G4UIQt: added missing check for pointer deletion. + Addressing problem report #1933. + + o Materials: + --------- + + Removed debug printout from G4MaterialPropertiesTable destructor. + Addressing problem report #1944. + + o Particles: + --------- + + Fixed calculation of neutrino mass in G4MuonRadiativeDecayWithSpin. + Addressing problem report #1928. + + Added class G4AdjointElectronFI. + + o Physics Lists + ------------- + + constructors/decay: + o G4RadioactiveDecayPhysics: simplified list of EM parameters. + Switch on storing of all internal conversion data vector for correct + gamma deexcitation modeling in radioactive decay. + + constructors/electromagnetic: + o Added 'setCerenkov/ScintillationStackPhotons' commands to + G4OpticalPhysicsMessenger and use them in G4OpticalPhysics. + + constructors/hadron_inelastic: + o Fixed printing of setup for transition energy region between FTFP + and BERT to happen only from master thread. + + constructors/limiters: + o Fixed printing of setup parameter for nureon tracking cuts to happen + only from master thread. + + lists: + o G4PhysListFactory: added single scattering EM option (need to add + "__SS" to the reference physics list name for activation). + + o Processes - Electromagnetic: + --------------------------- + + adjoint: + o Correction for cases of FPE in G4AdjointForcedInteractionForGamma. + + dna: + o Prevent a crash when calling G4ITTrackingManager::EndTracking() from + the UserTimeStepAction::PostTimeStepAction. + o Added missing call to tracking-manager. + o Code cleanup in G4KDNode and G4KDMap. + + utils: + o Fixed typo in G4EmParametersMessenger. Addressing problem report #1929. + + o Processes - Hadronic: + -------------------- + + models/de_excitation: + o G4LevelManager, G4NuclLevel, G4LevelReader: reduce memory for description + of a level: each two integer parameters are packed into one integer value; + use only one set of probabilities of transition independently on use-case + (HEP or radioactive decay). Fill internal conversion coefficients into the + data structure only if a flag SetStoreAllLevels() is set to true; in the + last case, more memory required per isotope (~8 times). + o G4LevelManager: fixed unpacking of spin. + o G4LevelReader: fixed Ra228 problem; read all levels from a data file. + Fixed U235[0.076] problem: if value of alpha (relative probability of the + internal conversion) is 10^10, then assume that internal conversion will + go via outer levels and gamma emission has zero probability; internal + conversion is forced independently on other flags. + o G4NucLevel: in TransitionType, use % operator to correctly strip off + leading digit. + o G4GammaTransition: sample e- with kinetic energy corresponding to + transition between nuclear levels, ignoring atomic effects, when internal + conversion data are not filled but sampling e- emission is selected. + In SampleDirection(), fix to avoid only zero polarization returned; + return back sampling when initial state has angular moment but its + polarisation is random; also fix in order to comply with instructions in + G4PolarizationTransition for the call order and to properly initialize + the nuclear polarization. + Use SetExcitationEnergy() method of G4Fragment for keeping excitation + energy exact as in the database and avoid rare cases of event + non-reproducibility; added SetVerbose() method. + Fixed multipolarity based on the updated data-set. + Added control on printout; fixed thread unsafe check. + o G4PhotonEvaporation, G4GammaTransition: improved sampling and kinematics + for internal conversion. Added internal conversion in G4PhotonEvaporation + even if the data are not stored. + o G4PolarizationTransition: fix for computation of polarisation and + multi-polarity. Fix in SetGammaTransitionData(). + Added SetVerbose() method; added protection from extra verbosity. + o G4ExcitationHandler: moved Dump() printout within Initialise() + method; print info if evaporation channels are changed. + Added local data member to control verbosity level. + o G4ExcitationHandler, G4PhotonEvaporation: use floating level number. + o G4DeexPrecoParameters: changed default time limit from 0.01 s to + 1 microsecond. By default use uniform angular distribution in CM + system of precompound decay. Extended Dump() printout; make new data + structure the default. By default, use uniform angular distribution + in CM sytem of precompound decay. + Changed minimum excitation energy now set to 10 eV (was 100 eV). + o G4VEvaporation: added extra const access method. + o G4Evaporation: added data member to control verbosity level. + o Fixed case of event non-reproducibility due precision lost in + Lorentz transformations. + o G4LevelReader: in the case of broken file structure or absence of + a data file a fatal exception is issued. + Addressing problem report #1942. + + models/im_r_matrix: + o G4VScatteringCollision: fixed memory leak in MT-mode. + Addressing problem report #1905. + + models/radioactive_decay: + o G4ITDecay: in constructor, make G4PhotonEvaporation a class member + and initialize only once to avoid memory churn. + Added check on Z, A, excitation energy in order to be sure that + correlated gamma may be sampled; reset 4-momentum at rest when previous + nucleaus is reused; use floating level index when a new ion is created. + o G4RadioactiveDecay: temporarily switched off correlated gamma emission, + to limit observed event non-reproducibility violations. + + models/util: + o G4Fragment: minor cleanup of check on excitation energy of a ground + state. Added method SetExcEnergyAndMomentum() allowing to preserve + excitation energy value without precision lost; 4-momentum is + recomputed. Added missing class member and accesors/modifiers for + floating levels number. + o Added control on printout in G4PolynomialPDF. + + o Run: + --- + + Modifications to fix bug with reverse track splitting. + Added function ResetDidOneAdjPartReachExtSourceDuringEvent() to + G4AdjointSimManager and use it in G4AdjointPrimaryGeneratorAction. + + Fixed printing of banner to happen only from master thread. + + o Tracking: + -------- + + Modification in G4AdjointSteppingAction for fixing bug with reverse + track splitting. + + o Visualization: + ------------- + + management: + o Fix in G4VisCommandsViewer to have '/vis/viewer/interpolate' to work + on Windows. + + OpenGL: + o Fixed bug in ScaledFlush. + + OpenInventor: + o G4OpenInventorXtExtendedViewer: added viewer button for Wireframe/Solid + switching. Added workaround to prevent empty second page in PS and PDF + output (due to superimposed scene). + + RayTracer: + o G4RTXScanner: changed XA_RGB_BEST_MAP to XA_RGB_DEFAULT_MAP. + + o Data sets: + --------- + + Patched data set for nuclides properties G4PhotonEvaporation-4.3.2: + o Corrected correlated_gamma files for the uncorrect setting of the + multipolarity E0 as -1. Now considering E0,E1,M1, as 1,2,3,..... + The value of = is for unkown. + o Corrected correlated_gamma files z64.a148,z64.a149,z64.a150,z81.a194 + for problem of order of level index. + + Patched data set for radioactive-decay, G4RadioactiveDecay-5.1.1: + o Correction of negative Q value for metastable 190+X level in z77.a194. + o Correction of z38.a85 (Sr-85) with input data from DDEP. + Addressing problem report #1922. + + o Examples: + -------- + + Updated reference outputs. + + advanced/hadrotherapy: + o Fixed field setup; corrected physics-list. + Addressing problem report #1879. + + extended/exoticphysics/ucn: + o Reduced verbosity. + + extended/medical/dna/pdb4dna: + + extended/medical/dna/wholeNuclearDNA: + o Fixed compilation problem when Qt is enabled. + + ---------------------------------------------------------------------------- + + Technical Notes + --------------- + + o This patch should be applied on top of release 10.3. + o Technical notes distributed for release 10.3 are also applicable and + valid for this patch. + +The code and rebuilt binary libraries for release 10.3.p01 are available +through our "Download" Web page. + +Please refer to the Geant4 User Documentation for further information about +using Geant4. diff --git a/ReleaseNotes/ReleaseNotes4.10.3.html b/ReleaseNotes/ReleaseNotes4.10.3.html index c4ced1db52..f697402aa0 100644 --- a/ReleaseNotes/ReleaseNotes4.10.3.html +++ b/ReleaseNotes/ReleaseNotes4.10.3.html @@ -63,7 +63,7 @@ User Documentation for further information about using Geant4. Platforms: +

+Senditive Detectors +

+ +

Electromagnetic and optical physics

diff --git a/cmake/History b/cmake/History index 6ac62dc1a4..1d68012809 100644 --- a/cmake/History +++ b/cmake/History @@ -31,6 +31,14 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER]. ---------------------------------------------------------- +21st February 2017 - Gunter Folger (cmake-V10-02-39) +- Switch to PhotonEvaporation 4.3.2 + +3rd February 2017 - Gunter Folger (cmake-V10-02-38) +- Switch to + - PhotonEvaporation 4.3.1 + - RadioactiveDecay 5.1.1 + 24th November 2016 - Gunter Folger (cmake-V10-02-37) - Switch to PhotonEvaporation 4.3 diff --git a/cmake/Modules/Geant4DatasetDefinitions.cmake b/cmake/Modules/Geant4DatasetDefinitions.cmake index 9e5edc688c..b1b32d5048 100644 --- a/cmake/Modules/Geant4DatasetDefinitions.cmake +++ b/cmake/Modules/Geant4DatasetDefinitions.cmake @@ -28,21 +28,21 @@ geant4_add_dataset( # - Photon evaporation geant4_add_dataset( NAME PhotonEvaporation - VERSION 4.3 + VERSION 4.3.2 FILENAME G4PhotonEvaporation EXTENSION tar.gz ENVVAR G4LEVELGAMMADATA - MD5SUM 012fcdeaa517efebba5770e6c1cbd882 + MD5SUM 027a07cc3259388fd5499aae930a7832 ) # - Radioisotopes geant4_add_dataset( NAME RadioactiveDecay - VERSION 5.1 + VERSION 5.1.1 FILENAME G4RadioactiveDecay EXTENSION tar.gz ENVVAR G4RADIOACTIVEDATA - MD5SUM 994853b153c6f805e60e2b83b9ac10e0 + MD5SUM d298454d2217359b7b3d1050c9ac34fc ) # - Neutron XS diff --git a/examples/.doxygen/images/.svn/entries b/examples/.doxygen/images/.svn/entries index 3f18e22938..d5d7cfd2ad 100644 --- a/examples/.doxygen/images/.svn/entries +++ b/examples/.doxygen/images/.svn/entries @@ -1,8 +1,8 @@ 10 dir -101938 -svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03_branch/examples/.doxygen/images +102874 +svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03-patch-01_branch/examples/.doxygen/images svn+ssh://svn.cern.ch/reps/geant4 @@ -32,7 +32,7 @@ file -2015-11-18T11:05:40.079893Z +2016-12-08T16:04:43.116565Z db957d4570aca952bbb68c61762c9c59 2013-11-09T16:10:36.814273Z 76400 diff --git a/examples/advanced/air_shower/air_shower.out b/examples/advanced/air_shower/air_shower.out index d43e203820..41156f25ec 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -240,8 +240,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics ooo Run 0 starts (global). --------- Ranlux engine status --------- - Initial seed = 1481193742 - float_seed_table[] = 0.217621 0.886555 0.608987 0.127666 0.459881 0.802864 0.986453 0.0878205 0.216322 0.911389 0.368897 0.0815611 0.709863 0.526734 0.795146 0.0742022 0.244144 0.298011 0.661845 0.121785 0.28113 0.243757 0.79545 0.316194 + Initial seed = 1488210955 + float_seed_table[] = 0.413425 0.964008 0.989274 0.875768 0.158226 0.456335 0.97817 0.649406 0.479017 0.515979 0.475296 0.618467 0.514229 0.511209 0.620325 0.679511 0.114656 0.907577 0.84133 0.024806 0.748973 0.526127 0.498029 0.301567 i_lag = 23, j_lag = 9 carry = 0, count24 = 0 luxury = 3 nskip = 199 @@ -252,7 +252,7 @@ mu- Mono Plane Run terminated. Run Summary Number of events processed : 100 - User=4.97s Real=5.02s Sys=0s + User=2.69s Real=2.69s Sys=0s ### Run 0 (global) ended. Graphics systems deleted. Visualization Manager deleting... @@ -266,22 +266,22 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -Total navigation history collections cleaned: 8 +Total navigation history collections cleaned: 9 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.00961 MB +Pool ID '20G4NavigationLevelRep', size : 0.0115 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.0413 MB -Pool ID '7G4Track', size : 0.0827 MB +Pool ID '17G4DynamicParticle', size : 0.0317 MB +Pool ID '7G4Track', size : 0.0625 MB Pool ID '18G4TouchableHistory', size : 0.000961 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB -Pool ID '15UltraOpticalHit', size : 0.0115 MB +Pool ID '15UltraOpticalHit', size : 0.00481 MB Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.15 MB +Dynamic pools deleted: 12 / Total memory freed: 0.12 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/amsEcal/run1.out b/examples/advanced/amsEcal/run1.out index 9bdbb6db9b..6a9e5eb636 100644 --- a/examples/advanced/amsEcal/run1.out +++ b/examples/advanced/amsEcal/run1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -143,19 +143,19 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 32 kByte - Total CPU time elapsed for geometry optimisation: 0 seconds + Total CPU time elapsed for geometry optimisation: 0.01 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 0.00 0.00 0.00 31k layer + 100.00 0.01 0.01 31k layer 0.00 0.00 0.00 1k module 0.00 0.00 0.00 1k calorimeter Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 94.74 30k 1 490 980 0.00 layer + 94.74 30k 1 490 980 0.01 layer 3.16 1k 1 17 20 0.00 module 2.10 0k 1 10 18 0.00 calorimeter ### Run 0 starts. @@ -177,7 +177,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=16.81s Real=16.83s Sys=0s + User=9.28s Real=9.31s Sys=0s ------------------------------------------------------------- ---> The calorimeter is 9 Modules diff --git a/examples/advanced/brachytherapy/brachytherapy.out b/examples/advanced/brachytherapy/brachytherapy.out index d9e26ad016..0bc78ce0f7 100644 --- a/examples/advanced/brachytherapy/brachytherapy.out +++ b/examples/advanced/brachytherapy/brachytherapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/advanced/gammaknife/gammaknife.out b/examples/advanced/gammaknife/gammaknife.out index 88b24f2fd3..87bf6cc494 100644 --- a/examples/advanced/gammaknife/gammaknife.out +++ b/examples/advanced/gammaknife/gammaknife.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -518,8 +518,8 @@ Run 0 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0 Real TOT = 0 + User=0s Real=0.01s Sys=0s + User TOT = 0 Real TOT = 0.01 Summary of Run 0 : /run/geometryModified @@ -588,7 +588,7 @@ Run 1 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s User TOT = 0 Real TOT = 0.01 Summary of Run 1 : /run/geometryModified @@ -658,8 +658,8 @@ Run 2 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.01 Real TOT = 0.01 + User=0s Real=0.01s Sys=0.01s + User TOT = 0 Real TOT = 0.02 Summary of Run 2 : /run/geometryModified @@ -728,8 +728,8 @@ Run 3 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.01 Real TOT = 0.01 + User=0.01s Real=0s Sys=0s + User TOT = 0.01 Real TOT = 0.02 Summary of Run 3 : /run/geometryModified @@ -798,8 +798,8 @@ Run 4 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.01 Real TOT = 0.01 + User=0s Real=0.01s Sys=0s + User TOT = 0.01 Real TOT = 0.03 Summary of Run 4 : /run/geometryModified @@ -868,8 +868,8 @@ Run 5 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.01 Real TOT = 0.02 + User=0s Real=0s Sys=0s + User TOT = 0.01 Real TOT = 0.03 Summary of Run 5 : /run/geometryModified @@ -939,7 +939,7 @@ Run 6 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User TOT = 0.02 Real TOT = 0.03 Summary of Run 6 : /run/geometryModified @@ -1009,7 +1009,7 @@ Run 7 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User TOT = 0.02 Real TOT = 0.03 Summary of Run 7 : /run/geometryModified @@ -1078,8 +1078,8 @@ Run 8 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.03 Real TOT = 0.04 Summary of Run 8 : /run/geometryModified @@ -1149,7 +1149,7 @@ Run 9 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User TOT = 0.03 Real TOT = 0.04 Summary of Run 9 : /run/geometryModified @@ -1218,8 +1218,8 @@ Run 10 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.04 Real TOT = 0.05 Summary of Run 10 : /run/geometryModified @@ -1289,7 +1289,7 @@ Run 11 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.02 + User TOT = 0.04 Real TOT = 0.05 Summary of Run 11 : /run/geometryModified @@ -1358,8 +1358,8 @@ Run 12 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.02 Real TOT = 0.03 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.05 Real TOT = 0.06 Summary of Run 12 : /run/geometryModified @@ -1429,7 +1429,7 @@ Run 13 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.03 + User TOT = 0.05 Real TOT = 0.06 Summary of Run 13 : /run/geometryModified @@ -1499,7 +1499,7 @@ Run 14 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.02 Real TOT = 0.03 + User TOT = 0.05 Real TOT = 0.06 Summary of Run 14 : /run/geometryModified @@ -1568,8 +1568,8 @@ Run 15 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.03 Real TOT = 0.03 + User=0s Real=0s Sys=0s + User TOT = 0.05 Real TOT = 0.06 Summary of Run 15 : /run/geometryModified @@ -1639,7 +1639,7 @@ Run 16 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.03 Real TOT = 0.03 + User TOT = 0.05 Real TOT = 0.06 Summary of Run 16 : /run/geometryModified @@ -1708,8 +1708,8 @@ Run 17 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.03 Real TOT = 0.03 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.06 Real TOT = 0.07 Summary of Run 17 : /run/geometryModified @@ -1778,8 +1778,8 @@ Run 18 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.04 Real TOT = 0.03 + User=0s Real=0s Sys=0s + User TOT = 0.06 Real TOT = 0.07 Summary of Run 18 : /run/geometryModified @@ -1848,8 +1848,8 @@ Run 19 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.04 Real TOT = 0.03 + User=0s Real=0.01s Sys=0s + User TOT = 0.07 Real TOT = 0.08 Summary of Run 19 : /run/geometryModified @@ -1919,7 +1919,7 @@ Run 20 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.04 Real TOT = 0.03 + User TOT = 0.07 Real TOT = 0.08 Summary of Run 20 : /run/geometryModified @@ -1988,8 +1988,8 @@ Run 21 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.05 Real TOT = 0.04 + User=0s Real=0.01s Sys=0s + User TOT = 0.07 Real TOT = 0.09 Summary of Run 21 : /run/geometryModified @@ -2059,7 +2059,7 @@ Run 22 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.05 Real TOT = 0.04 + User TOT = 0.07 Real TOT = 0.09 Summary of Run 22 : /run/geometryModified @@ -2129,7 +2129,7 @@ Run 23 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.05 Real TOT = 0.04 + User TOT = 0.07 Real TOT = 0.09 Summary of Run 23 : /run/geometryModified @@ -2199,7 +2199,7 @@ Run 24 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.05 Real TOT = 0.04 + User TOT = 0.07 Real TOT = 0.09 Summary of Run 24 : /run/geometryModified @@ -2268,8 +2268,8 @@ Run 25 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.06 Real TOT = 0.05 + User=0.01s Real=0s Sys=0.01s + User TOT = 0.08 Real TOT = 0.09 Summary of Run 25 : /run/geometryModified @@ -2338,8 +2338,8 @@ Run 26 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.06 Real TOT = 0.05 + User=0s Real=0.01s Sys=0s + User TOT = 0.08 Real TOT = 0.1 Summary of Run 26 : /run/geometryModified @@ -2408,8 +2408,8 @@ Run 27 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.06 Real TOT = 0.05 + User=0.01s Real=0s Sys=0s + User TOT = 0.09 Real TOT = 0.1 Summary of Run 27 : /run/geometryModified @@ -2478,8 +2478,8 @@ Run 28 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.07 Real TOT = 0.06 + User=0s Real=0.01s Sys=0s + User TOT = 0.09 Real TOT = 0.11 Summary of Run 28 : /run/geometryModified @@ -2548,8 +2548,8 @@ Run 29 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.07 Real TOT = 0.06 + User=0.01s Real=0s Sys=0s + User TOT = 0.1 Real TOT = 0.11 Summary of Run 29 : /run/geometryModified @@ -2618,8 +2618,8 @@ Run 30 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.07 Real TOT = 0.06 + User=0s Real=0.01s Sys=0s + User TOT = 0.1 Real TOT = 0.12 Summary of Run 30 : /run/geometryModified @@ -2688,8 +2688,8 @@ Run 31 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.07 Real TOT = 0.07 + User=0s Real=0s Sys=0s + User TOT = 0.1 Real TOT = 0.12 Summary of Run 31 : /run/geometryModified @@ -2758,8 +2758,8 @@ Run 32 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.08 Real TOT = 0.07 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.11 Real TOT = 0.13 Summary of Run 32 : /run/geometryModified @@ -2829,7 +2829,7 @@ Run 33 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.08 Real TOT = 0.07 + User TOT = 0.11 Real TOT = 0.13 Summary of Run 33 : /run/geometryModified @@ -2898,8 +2898,8 @@ Run 34 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.08 Real TOT = 0.07 + User=0s Real=0s Sys=0s + User TOT = 0.11 Real TOT = 0.13 Summary of Run 34 : /run/geometryModified @@ -2968,8 +2968,8 @@ Run 35 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.08 Real TOT = 0.08 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.12 Real TOT = 0.14 Summary of Run 35 : /run/geometryModified @@ -3038,8 +3038,8 @@ Run 36 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.09 Real TOT = 0.08 + User=0s Real=0s Sys=0s + User TOT = 0.12 Real TOT = 0.14 Summary of Run 36 : /run/geometryModified @@ -3108,8 +3108,8 @@ Run 37 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.09 Real TOT = 0.08 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.13 Real TOT = 0.15 Summary of Run 37 : /run/geometryModified @@ -3178,8 +3178,8 @@ Run 38 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.09 Real TOT = 0.09 + User=0s Real=0s Sys=0s + User TOT = 0.13 Real TOT = 0.15 Summary of Run 38 : /run/geometryModified @@ -3248,8 +3248,8 @@ Run 39 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.09 Real TOT = 0.09 + User=0s Real=0.01s Sys=0s + User TOT = 0.13 Real TOT = 0.16 Summary of Run 39 : /run/geometryModified @@ -3319,7 +3319,7 @@ Run 40 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0s Sys=0s - User TOT = 0.1 Real TOT = 0.09 + User TOT = 0.14 Real TOT = 0.16 Summary of Run 40 : /run/geometryModified @@ -3389,7 +3389,7 @@ Run 41 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.1 Real TOT = 0.09 + User TOT = 0.14 Real TOT = 0.16 Summary of Run 41 : /run/geometryModified @@ -3459,7 +3459,7 @@ Run 42 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.1 Real TOT = 0.1 + User TOT = 0.14 Real TOT = 0.17 Summary of Run 42 : /run/geometryModified @@ -3528,8 +3528,8 @@ Run 43 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.1 Real TOT = 0.1 + User=0.01s Real=0s Sys=0s + User TOT = 0.15 Real TOT = 0.17 Summary of Run 43 : /run/geometryModified @@ -3598,8 +3598,8 @@ Run 44 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.11 Real TOT = 0.1 + User=0s Real=0.01s Sys=0s + User TOT = 0.15 Real TOT = 0.18 Summary of Run 44 : /run/geometryModified @@ -3668,8 +3668,8 @@ Run 45 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.11 Real TOT = 0.11 + User=0s Real=0s Sys=0s + User TOT = 0.15 Real TOT = 0.18 Summary of Run 45 : /run/geometryModified @@ -3738,8 +3738,8 @@ Run 46 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.11 Real TOT = 0.11 + User=0s Real=0s Sys=0.01s + User TOT = 0.15 Real TOT = 0.18 Summary of Run 46 : /run/geometryModified @@ -3809,7 +3809,7 @@ Run 47 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.11 Real TOT = 0.11 + User TOT = 0.15 Real TOT = 0.18 Summary of Run 47 : /run/geometryModified @@ -3878,8 +3878,8 @@ Run 48 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.12 Real TOT = 0.11 + User=0s Real=0s Sys=0s + User TOT = 0.15 Real TOT = 0.18 Summary of Run 48 : /run/geometryModified @@ -3949,7 +3949,7 @@ Run 49 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.12 Real TOT = 0.12 + User TOT = 0.15 Real TOT = 0.19 Summary of Run 49 : /run/geometryModified @@ -4019,7 +4019,7 @@ Run 50 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.12 Real TOT = 0.12 + User TOT = 0.15 Real TOT = 0.19 Summary of Run 50 : /run/geometryModified @@ -4088,8 +4088,8 @@ Run 51 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.12 Real TOT = 0.12 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.16 Real TOT = 0.2 Summary of Run 51 : /run/geometryModified @@ -4158,8 +4158,8 @@ Run 52 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.13 Real TOT = 0.12 + User=0s Real=0s Sys=0s + User TOT = 0.16 Real TOT = 0.2 Summary of Run 52 : /run/geometryModified @@ -4228,8 +4228,8 @@ Run 53 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.13 Real TOT = 0.13 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.17 Real TOT = 0.21 Summary of Run 53 : /run/geometryModified @@ -4299,7 +4299,7 @@ Run 54 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.13 Real TOT = 0.13 + User TOT = 0.17 Real TOT = 0.21 Summary of Run 54 : /run/geometryModified @@ -4368,8 +4368,8 @@ Run 55 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.14 Real TOT = 0.13 + User=0s Real=0.01s Sys=0s + User TOT = 0.17 Real TOT = 0.22 Summary of Run 55 : /run/geometryModified @@ -4438,8 +4438,8 @@ Run 56 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.14 Real TOT = 0.14 + User=0.01s Real=0s Sys=0s + User TOT = 0.18 Real TOT = 0.22 Summary of Run 56 : /run/geometryModified @@ -4509,7 +4509,7 @@ Run 57 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.14 Real TOT = 0.14 + User TOT = 0.18 Real TOT = 0.22 Summary of Run 57 : /run/geometryModified @@ -4578,8 +4578,8 @@ Run 58 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.15 Real TOT = 0.15 + User=0.01s Real=0s Sys=0s + User TOT = 0.19 Real TOT = 0.22 Summary of Run 58 : /run/geometryModified @@ -4649,7 +4649,7 @@ Run 59 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.15 Real TOT = 0.15 + User TOT = 0.19 Real TOT = 0.22 Summary of Run 59 : /run/geometryModified @@ -4719,7 +4719,7 @@ Run 60 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.15 Real TOT = 0.15 + User TOT = 0.19 Real TOT = 0.22 Summary of Run 60 : /run/geometryModified @@ -4788,8 +4788,8 @@ Run 61 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.15 Real TOT = 0.16 + User=0s Real=0s Sys=0s + User TOT = 0.19 Real TOT = 0.22 Summary of Run 61 : /run/geometryModified @@ -4858,8 +4858,8 @@ Run 62 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.15 Real TOT = 0.16 + User=0s Real=0.01s Sys=0s + User TOT = 0.19 Real TOT = 0.23 Summary of Run 62 : /run/geometryModified @@ -4929,7 +4929,7 @@ Run 63 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.15 Real TOT = 0.16 + User TOT = 0.19 Real TOT = 0.23 Summary of Run 63 : /run/geometryModified @@ -4999,7 +4999,7 @@ Run 64 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.15 Real TOT = 0.16 + User TOT = 0.2 Real TOT = 0.23 Summary of Run 64 : /run/geometryModified @@ -5068,8 +5068,8 @@ Run 65 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.15 Real TOT = 0.17 + User=0s Real=0s Sys=0s + User TOT = 0.2 Real TOT = 0.23 Summary of Run 65 : /run/geometryModified @@ -5138,8 +5138,8 @@ Run 66 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.16 Real TOT = 0.17 + User=0s Real=0s Sys=0s + User TOT = 0.2 Real TOT = 0.23 Summary of Run 66 : /run/geometryModified @@ -5208,8 +5208,8 @@ Run 67 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.16 Real TOT = 0.17 + User=0.01s Real=0s Sys=0s + User TOT = 0.21 Real TOT = 0.23 Summary of Run 67 : /run/geometryModified @@ -5279,7 +5279,7 @@ Run 68 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.16 Real TOT = 0.17 + User TOT = 0.21 Real TOT = 0.23 Summary of Run 68 : /run/geometryModified @@ -5348,8 +5348,8 @@ Run 69 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.16 Real TOT = 0.17 + User=0.01s Real=0s Sys=0s + User TOT = 0.22 Real TOT = 0.23 Summary of Run 69 : /run/geometryModified @@ -5418,8 +5418,8 @@ Run 70 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.17 Real TOT = 0.17 + User=0s Real=0.01s Sys=0s + User TOT = 0.22 Real TOT = 0.24 Summary of Run 70 : /run/geometryModified @@ -5488,8 +5488,8 @@ Run 71 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.17 Real TOT = 0.17 + User=0.01s Real=0s Sys=0s + User TOT = 0.23 Real TOT = 0.24 Summary of Run 71 : /run/geometryModified @@ -5559,7 +5559,7 @@ Run 72 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.17 Real TOT = 0.18 + User TOT = 0.23 Real TOT = 0.25 Summary of Run 72 : /run/geometryModified @@ -5629,7 +5629,7 @@ Run 73 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.17 Real TOT = 0.18 + User TOT = 0.23 Real TOT = 0.25 Summary of Run 73 : /run/geometryModified @@ -5698,8 +5698,8 @@ Run 74 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.17 Real TOT = 0.18 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.24 Real TOT = 0.26 Summary of Run 74 : /run/geometryModified @@ -5769,7 +5769,7 @@ Run 75 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.17 Real TOT = 0.18 + User TOT = 0.24 Real TOT = 0.26 Summary of Run 75 : /run/geometryModified @@ -5839,7 +5839,7 @@ Run 76 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.17 Real TOT = 0.19 + User TOT = 0.24 Real TOT = 0.27 Summary of Run 76 : /run/geometryModified @@ -5908,8 +5908,8 @@ Run 77 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.17 Real TOT = 0.19 + User=0.01s Real=0s Sys=0s + User TOT = 0.25 Real TOT = 0.27 Summary of Run 77 : /run/geometryModified @@ -5978,8 +5978,8 @@ Run 78 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.18 Real TOT = 0.19 + User=0s Real=0.01s Sys=0s + User TOT = 0.25 Real TOT = 0.28 Summary of Run 78 : /run/geometryModified @@ -6048,8 +6048,8 @@ Run 79 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.18 Real TOT = 0.2 + User=0.01s Real=0s Sys=0s + User TOT = 0.26 Real TOT = 0.28 Summary of Run 79 : /run/geometryModified @@ -6118,8 +6118,8 @@ Run 80 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.18 Real TOT = 0.2 + User=0s Real=0.01s Sys=0s + User TOT = 0.26 Real TOT = 0.29 Summary of Run 80 : /run/geometryModified @@ -6189,7 +6189,7 @@ Run 81 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.18 Real TOT = 0.2 + User TOT = 0.27 Real TOT = 0.29 Summary of Run 81 : /run/geometryModified @@ -6259,7 +6259,7 @@ Run 82 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.18 Real TOT = 0.2 + User TOT = 0.27 Real TOT = 0.29 Summary of Run 82 : /run/geometryModified @@ -6328,8 +6328,8 @@ Run 83 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.19 Real TOT = 0.21 + User=0s Real=0s Sys=0s + User TOT = 0.28 Real TOT = 0.29 Summary of Run 83 : /run/geometryModified @@ -6398,8 +6398,8 @@ Run 84 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.19 Real TOT = 0.21 + User=0s Real=0.01s Sys=0s + User TOT = 0.28 Real TOT = 0.3 Summary of Run 84 : /run/geometryModified @@ -6469,7 +6469,7 @@ Run 85 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.19 Real TOT = 0.21 + User TOT = 0.28 Real TOT = 0.3 Summary of Run 85 : /run/geometryModified @@ -6539,7 +6539,7 @@ Run 86 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0s Sys=0s - User TOT = 0.2 Real TOT = 0.21 + User TOT = 0.29 Real TOT = 0.3 Summary of Run 86 : /run/geometryModified @@ -6609,7 +6609,7 @@ Run 87 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.2 Real TOT = 0.21 + User TOT = 0.29 Real TOT = 0.3 Summary of Run 87 : /run/geometryModified @@ -6678,8 +6678,8 @@ Run 88 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.2 Real TOT = 0.21 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.3 Real TOT = 0.31 Summary of Run 88 : /run/geometryModified @@ -6749,7 +6749,7 @@ Run 89 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.2 Real TOT = 0.21 + User TOT = 0.3 Real TOT = 0.31 Summary of Run 89 : /run/geometryModified @@ -6818,8 +6818,8 @@ Run 90 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.21 Real TOT = 0.22 + User=0.01s Real=0s Sys=0.01s + User TOT = 0.31 Real TOT = 0.31 Summary of Run 90 : /run/geometryModified @@ -6889,7 +6889,7 @@ Run 91 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.21 Real TOT = 0.22 + User TOT = 0.31 Real TOT = 0.31 Summary of Run 91 : /run/geometryModified @@ -6959,7 +6959,7 @@ Run 92 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.21 Real TOT = 0.22 + User TOT = 0.31 Real TOT = 0.31 Summary of Run 92 : /run/geometryModified @@ -7029,7 +7029,7 @@ Run 93 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.21 Real TOT = 0.22 + User TOT = 0.31 Real TOT = 0.31 Summary of Run 93 : /run/geometryModified @@ -7098,8 +7098,8 @@ Run 94 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.22 Real TOT = 0.23 + User=0s Real=0s Sys=0s + User TOT = 0.31 Real TOT = 0.31 Summary of Run 94 : /run/geometryModified @@ -7169,7 +7169,7 @@ Run 95 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.22 Real TOT = 0.23 + User TOT = 0.31 Real TOT = 0.31 Summary of Run 95 : /run/geometryModified @@ -7239,7 +7239,7 @@ Run 96 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.22 Real TOT = 0.23 + User TOT = 0.31 Real TOT = 0.31 Summary of Run 96 : /run/geometryModified @@ -7308,8 +7308,8 @@ Run 97 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.22 Real TOT = 0.24 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.32 Real TOT = 0.32 Summary of Run 97 : /run/geometryModified @@ -7379,7 +7379,7 @@ Run 98 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.22 Real TOT = 0.24 + User TOT = 0.32 Real TOT = 0.32 Summary of Run 98 : /run/geometryModified @@ -7448,8 +7448,8 @@ Run 99 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.22 Real TOT = 0.24 + User=0s Real=0.01s Sys=0s + User TOT = 0.32 Real TOT = 0.33 Summary of Run 99 : /run/geometryModified @@ -7518,8 +7518,8 @@ Run 100 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.22 Real TOT = 0.25 + User=0.01s Real=0s Sys=0s + User TOT = 0.33 Real TOT = 0.33 Summary of Run 100 : /run/geometryModified @@ -7588,8 +7588,8 @@ Run 101 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.23 Real TOT = 0.25 + User=0s Real=0s Sys=0s + User TOT = 0.33 Real TOT = 0.33 Summary of Run 101 : /run/geometryModified @@ -7658,8 +7658,8 @@ Run 102 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.23 Real TOT = 0.25 + User=0s Real=0.01s Sys=0s + User TOT = 0.34 Real TOT = 0.34 Summary of Run 102 : /run/geometryModified @@ -7729,7 +7729,7 @@ Run 103 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.23 Real TOT = 0.25 + User TOT = 0.34 Real TOT = 0.34 Summary of Run 103 : /run/geometryModified @@ -7799,7 +7799,7 @@ Run 104 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.23 Real TOT = 0.26 + User TOT = 0.34 Real TOT = 0.35 Summary of Run 104 : /run/geometryModified @@ -7868,8 +7868,8 @@ Run 105 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User=0s Real=0s Sys=0s + User TOT = 0.34 Real TOT = 0.35 Summary of Run 105 : /run/geometryModified @@ -7938,8 +7938,8 @@ Run 106 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User=0s Real=0.01s Sys=0s + User TOT = 0.34 Real TOT = 0.36 Summary of Run 106 : /run/geometryModified @@ -8009,7 +8009,7 @@ Run 107 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User TOT = 0.35 Real TOT = 0.36 Summary of Run 107 : /run/geometryModified @@ -8079,7 +8079,7 @@ Run 108 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User TOT = 0.35 Real TOT = 0.36 Summary of Run 108 : /run/geometryModified @@ -8149,7 +8149,7 @@ Run 109 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User TOT = 0.35 Real TOT = 0.36 Summary of Run 109 : /run/geometryModified @@ -8218,8 +8218,8 @@ Run 110 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User=0.01s Real=0s Sys=0s + User TOT = 0.36 Real TOT = 0.36 Summary of Run 110 : /run/geometryModified @@ -8288,8 +8288,8 @@ Run 111 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.26 + User=0s Real=0.01s Sys=0s + User TOT = 0.36 Real TOT = 0.37 Summary of Run 111 : /run/geometryModified @@ -8358,8 +8358,8 @@ Run 112 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.24 Real TOT = 0.27 + User=0.01s Real=0s Sys=0s + User TOT = 0.37 Real TOT = 0.37 Summary of Run 112 : /run/geometryModified @@ -8428,8 +8428,8 @@ Run 113 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.27 + User=0s Real=0.01s Sys=0s + User TOT = 0.37 Real TOT = 0.38 Summary of Run 113 : /run/geometryModified @@ -8498,8 +8498,8 @@ Run 114 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.24 Real TOT = 0.27 + User=0.01s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.38 Summary of Run 114 : /run/geometryModified @@ -8568,8 +8568,8 @@ Run 115 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.24 Real TOT = 0.28 + User=0s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.38 Summary of Run 115 : /run/geometryModified @@ -8638,8 +8638,8 @@ Run 116 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.24 Real TOT = 0.28 + User=0s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.38 Summary of Run 116 : /run/geometryModified @@ -8708,8 +8708,8 @@ Run 117 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.25 Real TOT = 0.28 + User=0s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.38 Summary of Run 117 : /run/geometryModified @@ -8778,8 +8778,8 @@ Run 118 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.25 Real TOT = 0.29 + User=0s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.38 Summary of Run 118 : /run/geometryModified @@ -8848,8 +8848,8 @@ Run 119 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.25 Real TOT = 0.29 + User=0s Real=0.01s Sys=0s + User TOT = 0.38 Real TOT = 0.39 Summary of Run 119 : /run/geometryModified @@ -8918,8 +8918,8 @@ Run 120 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.26 Real TOT = 0.3 + User=0s Real=0s Sys=0s + User TOT = 0.38 Real TOT = 0.39 Summary of Run 120 : /run/geometryModified @@ -8989,7 +8989,7 @@ Run 121 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.26 Real TOT = 0.3 + User TOT = 0.38 Real TOT = 0.39 Summary of Run 121 : /run/geometryModified @@ -9058,8 +9058,8 @@ Run 122 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.27 Real TOT = 0.3 + User=0.01s Real=0s Sys=0s + User TOT = 0.39 Real TOT = 0.39 Summary of Run 122 : /run/geometryModified @@ -9129,7 +9129,7 @@ Run 123 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.27 Real TOT = 0.3 + User TOT = 0.39 Real TOT = 0.39 Summary of Run 123 : /run/geometryModified @@ -9199,7 +9199,7 @@ Run 124 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.27 Real TOT = 0.3 + User TOT = 0.39 Real TOT = 0.39 Summary of Run 124 : /run/geometryModified @@ -9268,8 +9268,8 @@ Run 125 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.27 Real TOT = 0.31 + User=0s Real=0s Sys=0s + User TOT = 0.39 Real TOT = 0.39 Summary of Run 125 : /run/geometryModified @@ -9339,7 +9339,7 @@ Run 126 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.27 Real TOT = 0.31 + User TOT = 0.39 Real TOT = 0.39 Summary of Run 126 : /run/geometryModified @@ -9409,7 +9409,7 @@ Run 127 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.27 Real TOT = 0.31 + User TOT = 0.39 Real TOT = 0.39 Summary of Run 127 : /run/geometryModified @@ -9478,8 +9478,8 @@ Run 128 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.28 Real TOT = 0.31 + User=0s Real=0.01s Sys=0s + User TOT = 0.39 Real TOT = 0.4 Summary of Run 128 : /run/geometryModified @@ -9548,8 +9548,8 @@ Run 129 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.28 Real TOT = 0.31 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.4 Real TOT = 0.41 Summary of Run 129 : /run/geometryModified @@ -9618,8 +9618,8 @@ Run 130 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.29 Real TOT = 0.32 + User=0s Real=0s Sys=0s + User TOT = 0.4 Real TOT = 0.41 Summary of Run 130 : /run/geometryModified @@ -9689,7 +9689,7 @@ Run 131 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.29 Real TOT = 0.32 + User TOT = 0.4 Real TOT = 0.41 Summary of Run 131 : /run/geometryModified @@ -9758,8 +9758,8 @@ Run 132 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.29 Real TOT = 0.33 + User=0s Real=0s Sys=0s + User TOT = 0.4 Real TOT = 0.41 Summary of Run 132 : /run/geometryModified @@ -9828,8 +9828,8 @@ Run 133 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.3 Real TOT = 0.33 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.41 Real TOT = 0.42 Summary of Run 133 : /run/geometryModified @@ -9899,7 +9899,7 @@ Run 134 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.3 Real TOT = 0.33 + User TOT = 0.41 Real TOT = 0.42 Summary of Run 134 : /run/geometryModified @@ -9969,7 +9969,7 @@ Run 135 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.3 Real TOT = 0.33 + User TOT = 0.41 Real TOT = 0.42 Summary of Run 135 : /run/geometryModified @@ -10038,8 +10038,8 @@ Run 136 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.3 Real TOT = 0.33 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.42 Real TOT = 0.43 Summary of Run 136 : /run/geometryModified @@ -10108,8 +10108,8 @@ Run 137 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.31 Real TOT = 0.33 + User=0s Real=0s Sys=0.01s + User TOT = 0.42 Real TOT = 0.43 Summary of Run 137 : /run/geometryModified @@ -10178,8 +10178,8 @@ Run 138 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.32 Real TOT = 0.34 + User=0s Real=0.01s Sys=0s + User TOT = 0.42 Real TOT = 0.44 Summary of Run 138 : /run/geometryModified @@ -10248,8 +10248,8 @@ Run 139 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.32 Real TOT = 0.35 + User=0.01s Real=0s Sys=0s + User TOT = 0.43 Real TOT = 0.44 Summary of Run 139 : /run/geometryModified @@ -10318,8 +10318,8 @@ Run 140 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.33 Real TOT = 0.35 + User=0s Real=0s Sys=0s + User TOT = 0.43 Real TOT = 0.44 Summary of Run 140 : /run/geometryModified @@ -10388,8 +10388,8 @@ Run 141 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.33 Real TOT = 0.36 + User=0s Real=0s Sys=0s + User TOT = 0.43 Real TOT = 0.44 Summary of Run 141 : /run/geometryModified @@ -10458,8 +10458,8 @@ Run 142 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.33 Real TOT = 0.36 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.44 Real TOT = 0.45 Summary of Run 142 : /run/geometryModified @@ -10528,8 +10528,8 @@ Run 143 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.33 Real TOT = 0.37 + User=0s Real=0s Sys=0s + User TOT = 0.44 Real TOT = 0.45 Summary of Run 143 : /run/geometryModified @@ -10598,8 +10598,8 @@ Run 144 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.33 Real TOT = 0.37 + User=0.01s Real=0s Sys=0s + User TOT = 0.45 Real TOT = 0.45 Summary of Run 144 : /run/geometryModified @@ -10668,8 +10668,8 @@ Run 145 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.34 Real TOT = 0.37 + User=0s Real=0.01s Sys=0s + User TOT = 0.45 Real TOT = 0.46 Summary of Run 145 : /run/geometryModified @@ -10738,8 +10738,8 @@ Run 146 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.34 Real TOT = 0.38 + User=0s Real=0s Sys=0s + User TOT = 0.45 Real TOT = 0.46 Summary of Run 146 : /run/geometryModified @@ -10809,7 +10809,7 @@ Run 147 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0.01s Sys=0s - User TOT = 0.35 Real TOT = 0.39 + User TOT = 0.46 Real TOT = 0.47 Summary of Run 147 : /run/geometryModified @@ -10879,7 +10879,7 @@ Run 148 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.35 Real TOT = 0.39 + User TOT = 0.46 Real TOT = 0.47 Summary of Run 148 : /run/geometryModified @@ -10949,7 +10949,7 @@ Run 149 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.35 Real TOT = 0.39 + User TOT = 0.46 Real TOT = 0.47 Summary of Run 149 : /run/geometryModified @@ -11018,8 +11018,8 @@ Run 150 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.36 Real TOT = 0.4 + User=0s Real=0s Sys=0s + User TOT = 0.46 Real TOT = 0.48 Summary of Run 150 : /run/geometryModified @@ -11089,7 +11089,7 @@ Run 151 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.36 Real TOT = 0.4 + User TOT = 0.46 Real TOT = 0.48 Summary of Run 151 : /run/geometryModified @@ -11158,8 +11158,8 @@ Run 152 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.36 Real TOT = 0.41 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.47 Real TOT = 0.49 Summary of Run 152 : /run/geometryModified @@ -11228,8 +11228,8 @@ Run 153 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.37 Real TOT = 0.41 + User=0s Real=0s Sys=0s + User TOT = 0.47 Real TOT = 0.49 Summary of Run 153 : /run/geometryModified @@ -11298,8 +11298,8 @@ Run 154 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0.01s - User TOT = 0.37 Real TOT = 0.42 + User=0s Real=0.01s Sys=0s + User TOT = 0.47 Real TOT = 0.5 Summary of Run 154 : /run/geometryModified @@ -11368,8 +11368,8 @@ Run 155 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.37 Real TOT = 0.42 + User=0.01s Real=0s Sys=0s + User TOT = 0.48 Real TOT = 0.5 Summary of Run 155 : /run/geometryModified @@ -11438,8 +11438,8 @@ Run 156 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.37 Real TOT = 0.43 + User=0s Real=0s Sys=0s + User TOT = 0.48 Real TOT = 0.5 Summary of Run 156 : /run/geometryModified @@ -11508,8 +11508,8 @@ Run 157 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.37 Real TOT = 0.43 + User=0s Real=0.01s Sys=0s + User TOT = 0.48 Real TOT = 0.51 Summary of Run 157 : /run/geometryModified @@ -11578,8 +11578,8 @@ Run 158 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.38 Real TOT = 0.44 + User=0.01s Real=0s Sys=0s + User TOT = 0.49 Real TOT = 0.51 Summary of Run 158 : /run/geometryModified @@ -11648,8 +11648,8 @@ Run 159 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.38 Real TOT = 0.44 + User=0s Real=0.01s Sys=0s + User TOT = 0.49 Real TOT = 0.52 Summary of Run 159 : /run/geometryModified @@ -11718,8 +11718,8 @@ Run 160 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.39 Real TOT = 0.45 + User=0.01s Real=0s Sys=0s + User TOT = 0.5 Real TOT = 0.52 Summary of Run 160 : /run/geometryModified @@ -11788,8 +11788,8 @@ Run 161 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.39 Real TOT = 0.45 + User=0s Real=0.01s Sys=0s + User TOT = 0.5 Real TOT = 0.53 Summary of Run 161 : /run/geometryModified @@ -11858,8 +11858,8 @@ Run 162 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.39 Real TOT = 0.46 + User=0s Real=0s Sys=0s + User TOT = 0.5 Real TOT = 0.53 Summary of Run 162 : /run/geometryModified @@ -11928,8 +11928,8 @@ Run 163 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.4 Real TOT = 0.46 + User=0s Real=0.01s Sys=0s + User TOT = 0.5 Real TOT = 0.54 Summary of Run 163 : /run/geometryModified @@ -11999,7 +11999,7 @@ Run 164 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.4 Real TOT = 0.46 + User TOT = 0.5 Real TOT = 0.54 Summary of Run 164 : /run/geometryModified @@ -12069,7 +12069,7 @@ Run 165 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.4 Real TOT = 0.46 + User TOT = 0.5 Real TOT = 0.54 Summary of Run 165 : /run/geometryModified @@ -12139,7 +12139,7 @@ Run 166 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.4 Real TOT = 0.46 + User TOT = 0.5 Real TOT = 0.54 Summary of Run 166 : /run/geometryModified @@ -12208,8 +12208,8 @@ Run 167 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.4 Real TOT = 0.47 + User=0.01s Real=0s Sys=0s + User TOT = 0.51 Real TOT = 0.54 Summary of Run 167 : /run/geometryModified @@ -12279,7 +12279,7 @@ Run 168 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.4 Real TOT = 0.47 + User TOT = 0.51 Real TOT = 0.54 Summary of Run 168 : /run/geometryModified @@ -12348,8 +12348,8 @@ Run 169 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.4 Real TOT = 0.48 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.52 Real TOT = 0.55 Summary of Run 169 : /run/geometryModified @@ -12419,7 +12419,7 @@ Run 170 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.4 Real TOT = 0.48 + User TOT = 0.52 Real TOT = 0.55 Summary of Run 170 : /run/geometryModified @@ -12488,8 +12488,8 @@ Run 171 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.41 Real TOT = 0.49 + User=0s Real=0.01s Sys=0s + User TOT = 0.52 Real TOT = 0.56 Summary of Run 171 : /run/geometryModified @@ -12559,7 +12559,7 @@ Run 172 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.41 Real TOT = 0.49 + User TOT = 0.52 Real TOT = 0.56 Summary of Run 172 : /run/geometryModified @@ -12628,8 +12628,8 @@ Run 173 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.42 Real TOT = 0.5 + User=0s Real=0.01s Sys=0.01s + User TOT = 0.52 Real TOT = 0.57 Summary of Run 173 : /run/geometryModified @@ -12698,8 +12698,8 @@ Run 174 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.42 Real TOT = 0.5 + User=0.01s Real=0s Sys=0s + User TOT = 0.53 Real TOT = 0.57 Summary of Run 174 : /run/geometryModified @@ -12769,7 +12769,7 @@ Run 175 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.42 Real TOT = 0.51 + User TOT = 0.53 Real TOT = 0.58 Summary of Run 175 : /run/geometryModified @@ -12839,7 +12839,7 @@ Run 176 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0s Sys=0s - User TOT = 0.43 Real TOT = 0.51 + User TOT = 0.54 Real TOT = 0.58 Summary of Run 176 : /run/geometryModified @@ -12909,7 +12909,7 @@ Run 177 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.43 Real TOT = 0.52 + User TOT = 0.54 Real TOT = 0.59 Summary of Run 177 : /run/geometryModified @@ -12979,7 +12979,7 @@ Run 178 starts ... Run Summary Number of events processed : 10 User=0.01s Real=0s Sys=0s - User TOT = 0.44 Real TOT = 0.52 + User TOT = 0.55 Real TOT = 0.59 Summary of Run 178 : /run/geometryModified @@ -13048,8 +13048,8 @@ Run 179 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.44 Real TOT = 0.52 + User=0s Real=0.01s Sys=0s + User TOT = 0.55 Real TOT = 0.6 Summary of Run 179 : /run/geometryModified @@ -13118,8 +13118,8 @@ Run 180 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.45 Real TOT = 0.52 + User=0s Real=0s Sys=0s + User TOT = 0.55 Real TOT = 0.6 Summary of Run 180 : /run/geometryModified @@ -13188,8 +13188,8 @@ Run 181 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.45 Real TOT = 0.52 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.56 Real TOT = 0.61 Summary of Run 181 : /run/geometryModified @@ -13258,8 +13258,8 @@ Run 182 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.45 Real TOT = 0.53 + User=0s Real=0s Sys=0s + User TOT = 0.56 Real TOT = 0.61 Summary of Run 182 : /run/geometryModified @@ -13328,8 +13328,8 @@ Run 183 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s - User TOT = 0.46 Real TOT = 0.53 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.57 Real TOT = 0.62 Summary of Run 183 : /run/geometryModified @@ -13398,8 +13398,8 @@ Run 184 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.46 Real TOT = 0.54 + User=0s Real=0s Sys=0s + User TOT = 0.57 Real TOT = 0.62 Summary of Run 184 : /run/geometryModified @@ -13469,7 +13469,7 @@ Run 185 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.46 Real TOT = 0.54 + User TOT = 0.57 Real TOT = 0.62 Summary of Run 185 : /run/geometryModified @@ -13539,7 +13539,7 @@ Run 186 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.46 Real TOT = 0.54 + User TOT = 0.57 Real TOT = 0.62 Summary of Run 186 : /run/geometryModified @@ -13608,8 +13608,8 @@ Run 187 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.46 Real TOT = 0.55 + User=0s Real=0s Sys=0s + User TOT = 0.57 Real TOT = 0.62 Summary of Run 187 : /run/geometryModified @@ -13678,8 +13678,8 @@ Run 188 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0.01s - User TOT = 0.46 Real TOT = 0.55 + User=0.01s Real=0.01s Sys=0s + User TOT = 0.58 Real TOT = 0.63 Summary of Run 188 : /run/geometryModified @@ -13748,8 +13748,8 @@ Run 189 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.46 Real TOT = 0.56 + User=0s Real=0s Sys=0s + User TOT = 0.58 Real TOT = 0.63 Summary of Run 189 : /run/geometryModified @@ -13818,8 +13818,8 @@ Run 190 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.46 Real TOT = 0.56 + User=0s Real=0.01s Sys=0s + User TOT = 0.58 Real TOT = 0.64 Summary of Run 190 : /run/geometryModified @@ -13888,8 +13888,8 @@ Run 191 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.46 Real TOT = 0.57 + User=0s Real=0s Sys=0s + User TOT = 0.58 Real TOT = 0.64 Summary of Run 191 : /run/geometryModified @@ -13958,8 +13958,8 @@ Run 192 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.46 Real TOT = 0.57 + User=0s Real=0.01s Sys=0.01s + User TOT = 0.58 Real TOT = 0.65 Summary of Run 192 : /run/geometryModified @@ -14028,8 +14028,8 @@ Run 193 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.01s Sys=0s - User TOT = 0.47 Real TOT = 0.58 + User=0.01s Real=0s Sys=0s + User TOT = 0.59 Real TOT = 0.65 Summary of Run 193 : /run/geometryModified @@ -14098,8 +14098,8 @@ Run 194 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.47 Real TOT = 0.58 + User=0s Real=0.01s Sys=0s + User TOT = 0.59 Real TOT = 0.66 Summary of Run 194 : /run/geometryModified @@ -14168,8 +14168,8 @@ Run 195 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.47 Real TOT = 0.59 + User=0.01s Real=0s Sys=0s + User TOT = 0.6 Real TOT = 0.66 Summary of Run 195 : /run/geometryModified @@ -14239,7 +14239,7 @@ Run 196 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.47 Real TOT = 0.59 + User TOT = 0.6 Real TOT = 0.66 Summary of Run 196 : /run/geometryModified @@ -14308,8 +14308,8 @@ Run 197 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0s - User TOT = 0.47 Real TOT = 0.6 + User=0s Real=0s Sys=0s + User TOT = 0.6 Real TOT = 0.66 Summary of Run 197 : /run/geometryModified @@ -14379,7 +14379,7 @@ Run 198 starts ... Run Summary Number of events processed : 10 User=0s Real=0s Sys=0s - User TOT = 0.47 Real TOT = 0.6 + User TOT = 0.6 Real TOT = 0.66 Summary of Run 198 : /run/geometryModified @@ -14449,7 +14449,7 @@ Run 199 starts ... Run Summary Number of events processed : 10 User=0s Real=0.01s Sys=0s - User TOT = 0.47 Real TOT = 0.61 + User TOT = 0.6 Real TOT = 0.67 Summary of Run 199 : /run/geometryModified @@ -14518,8 +14518,8 @@ Run 200 starts ... Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s - User TOT = 0.47 Real TOT = 0.61 + User=0.01s Real=0s Sys=0s + User TOT = 0.61 Real TOT = 0.67 Summary of Run 200 : /score/dumpQuantityToFile boxMesh_1 eDep eDep_scorer.out Graphics systems deleted. @@ -14527,6 +14527,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.054 MB +Dynamic pools deleted: 11 / Total memory freed: 0.038 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/advanced/gammaray_telescope/gammaraytel.out b/examples/advanced/gammaray_telescope/gammaraytel.out index ddc65a3ccd..43d666c492 100644 --- a/examples/advanced/gammaray_telescope/gammaraytel.out +++ b/examples/advanced/gammaray_telescope/gammaraytel.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -200,31 +200,21 @@ THE FOLLOWING HADRONIC INELASTIC PHYSICS LIST HAS BEEN ACTIVATED: G4RadioactiveD 2 LAT 1 TOP ### G4EmConfigurator::AddModels n= 0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten -NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten -NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten +NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten +NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten PhysicsList::SetCuts:CutLength : 100 um /gun/sourceGen true /gun/particle proton @@ -535,27 +525,27 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 1 TeV -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten -NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten -NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten +NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten +NeutronHP: /Inelastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/74_182_Tungsten +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/74_182_Tungsten +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten msc: for pi+ SubType= 10 RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1 @@ -894,6 +884,19 @@ hPairProd: for pi- SubType= 4 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -996,7 +999,7 @@ Number of tracker hits in this event = 13 Number of digits in this event = 10 proton Event: 4 -Number of tracker hits in this event = 22 +Number of tracker hits in this event = 14 4 202.264 900 4 1 0.137215 0.155125 -84.45 4 248.532 900 4 0 0.146917 0.16323 -85.85 4 200.753 901 3 1 0.348706 0.330882 -114.45 @@ -1006,1840 +1009,1835 @@ Number of tracker hits in this event = 22 4 124.859 904 1 1 0.875859 0.488085 -174.45 4 156.339 902 1 0 0.890024 0.492185 -175.85 4 148.758 905 0 1 1.18053 0.598417 -204.45 - 4 324.452 902 0 0 1.1918 0.608103 -205.85 - 4 44.4883 903 0 0 1.22376 0.65 -206.139 - 4 191.861 899 5 0 0.651466 -0.180312 -55.8501 - 4 242.451 913 5 1 2.71185 -0.126249 -54.85 - 4 57.8765 901 5 0 2.74701 0.301405 -55.85 - 4 25.263 898 5 1 -0.40157 -0.383662 -54.85 - 4 75.3948 1157 6 0 171.713 51.5936 -26.25 - 4 111.113 1758 6 1 171.825 51.1273 -24.85 - 4 62.2835 1757 6 1 171.75 51.311 -24.7756 - 4 43.1395 1197 6 0 156.656 59.4598 -25.85 - 4 36.4619 1673 6 1 154.857 60.4579 -24.85 - 4 12.844 1204 6 0 155.046 61.0055 -25.85 - 4 148.309 1667 6 1 153.672 61.591 -24.85 -Number of digits in this event = 15 + 4 243.761 902 0 0 1.1918 0.608103 -205.85 + 4 125.179 903 0 0 1.23271 0.65 -206.181 + 4 229.061 902 5 0 0.413949 0.560235 -55.85 + 4 103.89 903 5 0 0.378927 0.65 -56.078 + 4 2.5758 1028 5 0 16.6415 25.65 -56.1025 +Number of digits in this event = 13 proton Event: 5 -### G4LevelReader: broken level 70 E(MeV)= 2.91124 < 2.91124 for isotope Z= 52 A= 122 level energy increased -Number of tracker hits in this event = 16 - 5 131.911 899 4 1 -0.130058 0.0767322 -84.45 - 5 160.382 900 4 0 -0.135523 0.0774932 -85.85 - 5 129.29 899 3 1 -0.244342 0.0863348 -114.45 - 5 118.516 900 3 0 -0.260452 0.0899973 -115.85 - 5 118.57 897 2 1 -0.572636 0.176049 -144.45 - 5 236.924 900 2 0 -0.586562 0.191459 -145.85 - 5 215.601 895 1 1 -0.886391 0.517404 -174.45 - 5 175.418 902 1 0 -0.911302 0.530547 -175.85 - 5 132.05 893 0 1 -1.41319 0.827105 -204.45 - 5 127.48 903 0 0 -1.43722 0.837284 -205.85 - 5 38.6528 901 1 0 -0.960499 0.449938 -176.239 - 5 47.5922 904 4 0 -59.3976 0.921034 -86.25 - 5 135.385 903 4 0 -59.4587 0.85 -86.1867 - 5 142.832 1014 4 0 -65.8796 22.969 -86.25 - 5 236.084 338 6 0 57.8591 -112.372 -26.25 - 5 262.544 339 6 0 57.721 -112.35 -25.9891 -Number of digits in this event = 14 +Number of tracker hits in this event = 13 + 5 111.76 899 5 1 -0.0625945 -0.115636 -54.45 + 5 266.26 899 5 0 -0.0626969 -0.119018 -55.85 + 5 132.256 899 4 1 -0.0598451 -0.204464 -84.45 + 5 144.239 899 4 0 -0.069496 -0.210186 -85.85 + 5 122.714 898 3 1 -0.278112 -0.313768 -114.45 + 5 172.901 898 3 0 -0.286781 -0.319916 -115.85 + 5 104.391 897 2 1 -0.471368 -0.443268 -144.45 + 5 112.704 898 2 0 -0.479656 -0.448655 -145.85 + 5 17.4672 897 2 0 -0.481709 -0.45 -146.2 + 5 102.754 897 1 1 -0.644051 -0.548379 -174.45 + 5 113.593 897 1 0 -0.649471 -0.555355 -175.85 + 5 123.925 896 0 1 -0.764228 -0.692423 -204.45 + 5 135.893 896 0 0 -0.767942 -0.699001 -205.85 +Number of digits in this event = 8 proton Event: 6 -Number of tracker hits in this event = 10 - 6 140.957 900 4 1 0.182251 -0.228595 -84.45 - 6 149.992 899 4 0 0.193595 -0.232691 -85.85 - 6 165.405 901 3 1 0.432411 -0.317378 -114.45 - 6 156.379 898 3 0 0.446393 -0.32503 -115.85 - 6 169.329 903 2 1 0.743159 -0.499001 -144.45 - 6 154.061 897 2 0 0.753449 -0.513006 -145.85 - 6 133.874 904 1 1 0.947902 -0.806669 -174.45 - 6 159.953 896 1 0 0.963937 -0.820471 -175.85 - 6 151.114 906 0 1 1.30247 -1.11606 -204.45 - 6 219.897 894 0 0 1.32401 -1.13077 -205.85 -Number of digits in this event = 11 +Number of tracker hits in this event = 33 + 6 125.944 899 4 1 -0.0580999 0.0523513 -84.45 + 6 134.32 900 4 0 -0.0606648 0.0569848 -85.85 + 6 209.701 899 3 1 -0.0974296 0.149894 -114.45 + 6 140.007 900 3 0 -0.102388 0.158851 -115.85 + 6 156.561 899 2 1 -0.190327 0.365166 -144.45 + 6 126.526 901 2 0 -0.195512 0.383139 -145.85 + 6 124.668 898 1 1 -0.336316 0.746056 -174.45 + 6 163.956 903 1 0 -0.340784 0.767438 -175.85 + 6 122.401 898 0 1 -0.416421 1.21017 -204.45 + 6 127.977 905 0 0 -0.418232 1.2348 -205.85 + 6 188.926 899 6 0 0.0500109 -0.139087 -26.1118 + 6 202.496 1002 0 0 -60.1357 20.5856 -206.25 + 6 57.8099 594 0 1 -61.1682 20.7818 -204.85 + 6 189.544 593 0 1 -61.25 20.7971 -204.739 + 6 11.4541 592 0 1 -61.45 20.8327 -204.469 + 6 120.217 1025 1 0 -84.6631 25.2199 -176.25 + 6 146.835 1026 1 0 -84.8225 25.25 -176.056 + 6 125.549 471 1 1 -85.7852 25.4229 -174.85 + 6 510.433 470 1 1 -85.85 25.4346 -174.769 + 6 555.881 469 1 1 -86.05 25.4569 -174.526 + 6 290.005 1030 2 0 -106.007 26.2361 -146.25 + 6 124.908 365 2 1 -107.008 26.2828 -144.85 + 6 138.095 364 2 1 -107.15 26.2899 -144.652 + 6 62.2583 1072 3 0 -130.729 34.6203 -116.25 + 6 254.588 1073 3 0 -130.812 34.65 -116.15 + 6 43.8529 241 3 1 -131.898 35.0275 -114.85 + 6 146.671 240 3 1 -131.95 35.0454 -114.788 + 6 59.0814 239 3 1 -132.15 35.1138 -114.548 + 6 312.218 1106 4 0 -158.968 41.255 -86.25 + 6 70.0837 99 4 1 -160.27 41.5425 -84.85 + 6 159.488 98 4 1 -160.35 41.5599 -84.7636 + 6 65.2702 97 4 1 -160.55 41.6031 -84.5463 + 6 3.15384 468 1 1 -86.2563 25.5168 -174.45 +Number of digits in this event = 29 proton Event: 7 -Number of tracker hits in this event = 7 - 7 111.945 900 2 1 0.0780314 0.436698 -144.45 - 7 123.947 901 2 0 0.0822867 0.442003 -145.85 - 7 288.618 900 1 1 0.147377 0.564093 -174.45 - 7 243.769 902 1 0 0.159003 0.56888 -175.85 - 7 136.551 901 0 1 0.411443 0.685209 -204.45 - 7 134.529 903 0 0 0.429244 0.69001 -205.85 - 7 397.813 902 0 0 0.399875 0.649926 -206.135 -Number of digits in this event = 7 +Number of tracker hits in this event = 15 + 7 131.824 898 4 1 -0.438694 0.306427 -84.45 + 7 190.229 901 4 0 -0.456183 0.321093 -85.85 + 7 112.293 896 3 1 -0.803446 0.642216 -114.45 + 7 135.537 903 3 0 -0.823157 0.657874 -115.85 + 7 149.429 894 2 1 -1.22465 1.00103 -144.45 + 7 239.411 904 2 0 -1.25032 1.01286 -145.85 + 7 119.437 891 1 1 -1.79318 1.2518 -174.45 + 7 243.458 906 1 0 -1.81746 1.26191 -175.85 + 7 209.051 888 0 1 -2.30562 1.45935 -204.45 + 7 120.829 907 0 0 -2.33521 1.47076 -205.85 + 7 46.9151 906 0 0 -2.29467 1.36151 -205.85 + 7 130.92 688 1 0 -177.848 -42.2757 -176.25 + 7 79.377 689 1 0 -178.095 -42.25 -176.023 + 7 187.993 903 2 0 -1.30923 0.849976 -146.092 + 7 107.367 902 3 0 -0.834076 0.65 -116.044 +Number of digits in this event = 12 proton Event: 8 -Number of tracker hits in this event = 7 - 8 164.095 899 3 1 -0.0664093 -0.127781 -114.45 - 8 132.116 899 3 0 -0.0694952 -0.127127 -115.85 - 8 116.751 899 2 1 -0.120062 -0.123998 -144.45 - 8 130.594 899 2 0 -0.120556 -0.123281 -145.85 - 8 154.698 899 1 1 -0.151216 -0.116417 -174.45 - 8 101.208 899 1 0 -0.144909 -0.118369 -175.85 - 8 80.2075 899 5 0 0.05 -0.161441 -56.2215 -Number of digits in this event = 6 +Number of tracker hits in this event = 68 + 8 135.169 900 4 1 0.0559829 -0.0577629 -84.45 + 8 114.011 899 4 0 0.0567176 -0.059858 -85.85 + 8 147.337 900 3 1 0.0584575 -0.122226 -114.45 + 8 112.647 899 3 0 0.0563955 -0.126375 -115.85 + 8 119.064 900 0 1 0.0744921 -0.192953 -204.45 + 8 189.378 899 0 0 0.078105 -0.19134 -205.85 + 8 374.233 856 0 0 -5.30425 -8.6661 -206.25 + 8 68.5985 870 0 1 -6.01154 -9.0804 -204.85 + 8 315.595 869 0 1 -6.05 -9.1042 -204.773 + 8 379.382 793 1 0 -24.1145 -21.3193 -176.25 + 8 224.815 792 1 0 -24.3078 -21.45 -175.946 + 8 168.671 775 1 1 -24.9626 -21.9087 -174.85 + 8 468.669 774 1 1 -25.05 -21.9697 -174.704 + 8 697.355 756 2 0 -41.7046 -28.7032 -146.25 + 8 439.127 687 2 1 -42.4875 -28.9657 -144.85 + 8 161.413 686 2 1 -42.65 -29.0158 -144.554 + 8 190.676 689 3 0 -49.7672 -42.1852 -116.25 + 8 453.31 688 3 0 -49.8014 -42.25 -116.112 + 8 566.423 649 3 1 -50.1144 -42.8747 -114.85 + 8 126.639 630 4 0 -52.2868 -54.0219 -86.25 + 8 636.659 629 4 0 -52.2919 -54.05 -86.1772 + 8 644.899 638 4 1 -52.4263 -54.6121 -84.85 + 8 381.086 637 4 1 -52.45 -54.7095 -84.6241 + 8 31.6095 898 0 0 0.0872799 -0.25 -206.213 + 8 34.1668 341 0 0 71.0742 -111.854 -206.25 + 8 82.8451 340 0 0 71.1189 -111.95 -206.191 + 8 366.715 339 0 0 71.1124 -112.15 -206.168 + 8 311.169 514 7 0 16.1752 -77.218 3.75003 + 8 207.243 609 5 0 -18.2104 -58.1083 -56.25 + 8 31.2795 818 5 1 -16.3632 -58.4379 -54.85 + 8 77.1181 819 5 1 -16.25 -58.4648 -54.7656 + 8 90.2155 820 5 1 -16.05 -58.5161 -54.6085 + 8 10.0024 821 5 1 -15.85 -58.578 -54.4666 + 8 55.8435 555 6 0 18.8834 -69.0039 -26.25 + 8 203.565 554 6 0 19.0385 -69.05 -26.1247 + 8 0.778832 1002 6 1 20.645 -69.5629 -24.85 + 8 70.4787 1003 6 1 20.65 -69.5645 -24.846 + 8 77.5196 1004 6 1 20.85 -69.631 -24.6911 + 8 35.4863 1005 6 1 21.05 -69.6988 -24.536 + 8 30.4839 522 7 0 53.5948 -75.6359 3.75 + 8 114.805 521 7 0 53.6808 -75.65 3.82586 + 8 90.666 1176 7 1 55.2634 -75.9303 5.15 + 8 84.3701 1177 7 1 55.45 -75.9686 5.3046 + 8 40.9844 1178 7 1 55.65 -76.0112 5.46973 + 8 252.715 449 8 0 115.05 -90.1574 33.75 + 8 29.7538 1484 8 1 117.032 -90.6737 35.15 + 8 120.034 1485 8 1 117.15 -90.7063 35.2383 + 8 76.3161 1486 8 1 117.35 -90.7695 35.3854 + 8 239.607 1487 8 1 117.55 -90.8336 35.5287 + 8 213.593 369 9 0 167.644 -106.175 63.75 + 8 116.126 368 9 0 168.123 -106.35 64.0579 + 8 69.0548 1747 9 1 169.59 -106.884 65.15 + 8 65.2038 1748 9 1 169.75 -106.945 65.2716 + 8 65.2025 1749 9 1 169.95 -107.013 65.4194 + 8 128.692 444 8 0 117.286 -91.2262 34.1499 + 8 17.717 602 8 0 79.2212 -59.5099 33.7501 + 8 167.974 603 8 0 79.1815 -59.4499 33.7972 + 8 107.333 604 8 0 78.8324 -59.2499 33.9252 + 8 15.2912 605 8 0 78.751 -59.05 34.1163 + 8 242.691 1296 8 1 79.3083 -58.806 35.1501 + 8 260.571 1295 8 1 79.25 -58.4363 35.5406 + 8 43.0882 608 8 0 79.5958 -58.306 34.15 + 8 89.243 1294 8 1 78.8845 -58.2127 35.15 + 8 117.824 411 9 0 142.285 -97.8626 63.7501 + 8 82.1474 410 9 0 142.619 -97.95 64.0313 + 8 100.592 409 9 0 142.876 -98.15 64.1072 + 8 112.513 408 9 0 143.052 -98.35 64.1229 + 8 66.8551 407 9 0 143.307 -98.55 63.9477 +Number of digits in this event = 34 proton Event: 9 -Number of tracker hits in this event = 6 - 9 147.127 900 2 0 0.402653 0.0512492 -145.85 - 9 153.557 902 1 1 0.502958 0.14562 -174.45 - 9 175.805 900 1 0 0.503023 0.152743 -175.85 - 9 137.398 902 0 1 0.486855 0.288789 -204.45 - 9 137.804 901 0 0 0.488569 0.292631 -205.85 - 9 179.061 901 2 1 0.396118 0.05 -144.595 -Number of digits in this event = 7 +Number of tracker hits in this event = 12 + 9 126.936 899 5 1 -0.128811 -0.0852277 -54.45 + 9 122.301 899 5 0 -0.13555 -0.0843426 -55.85 + 9 147.993 898 4 1 -0.280337 -0.0748394 -84.45 + 9 171.278 899 4 0 -0.290449 -0.0711853 -85.85 + 9 172.012 896 2 1 -0.754035 0.0894885 -144.45 + 9 160.252 900 2 0 -0.765755 0.0949173 -145.85 + 9 132.315 895 1 1 -1.01542 0.201063 -174.45 + 9 247.318 900 1 0 -1.02493 0.209016 -175.85 + 9 133.714 894 0 1 -1.24094 0.380918 -204.45 + 9 160.779 901 0 0 -1.2514 0.385067 -205.85 + 9 231.547 898 3 1 -0.377422 0.05 -114.465 + 9 14.0298 1730 6 0 -104.582 166.236 -26.25 +Number of digits in this event = 13 proton Event: 10 -Number of tracker hits in this event = 12 - 10 472.401 900 5 1 0.0635699 0.117621 -54.45 - 10 142.4 900 5 0 0.0881965 0.126974 -55.85 - 10 289.213 902 4 1 0.582928 0.322482 -84.45 - 10 121.852 901 4 0 0.603027 0.331248 -85.85 - 10 112.658 904 3 1 1.03669 0.500126 -114.45 - 10 155.614 902 3 0 1.05782 0.507414 -115.85 - 10 122.489 907 2 1 1.50741 0.650989 -144.45 - 10 142.295 903 2 0 1.52878 0.659832 -145.85 - 10 235.798 909 1 1 1.96673 0.842044 -174.45 - 10 156.954 903 1 0 1.98931 0.847483 -175.85 - 10 106.85 912 0 1 2.47337 0.966056 -204.45 - 10 137.438 904 0 0 2.49839 0.968766 -205.85 -Number of digits in this event = 11 +Number of tracker hits in this event = 11 + 10 101.38 900 4 1 0.05 0.257412 -84.5122 + 10 144.168 900 4 0 0.102385 0.230351 -85.85 + 10 113.56 905 3 1 1.22437 -0.371484 -114.45 + 10 160.981 898 3 0 1.27492 -0.393236 -115.85 + 10 125.923 911 2 1 2.32312 -0.838634 -144.45 + 10 125.004 895 2 0 2.37902 -0.862127 -145.85 + 10 121.663 917 1 1 3.53113 -1.36131 -174.45 + 10 112.155 893 1 0 3.58512 -1.38714 -175.85 + 10 139.003 923 0 1 4.69688 -1.91954 -204.45 + 10 172.411 890 0 0 4.74936 -1.95307 -205.85 + 10 252.518 904 6 0 -0.803927 0.872246 -25.85 +Number of digits in this event = 9 proton Event: 11 -Number of tracker hits in this event = 18 - 11 133.33 899 5 0 0.0544165 -0.068552 -55.85 - 11 124.777 900 4 1 0.211968 -0.243513 -84.45 - 11 133.099 898 4 0 0.226157 -0.251014 -85.85 - 11 206.614 902 3 1 0.519934 -0.388877 -114.45 - 11 116.011 898 3 0 0.541654 -0.392312 -115.85 - 11 125.861 904 2 1 1.00011 -0.466991 -144.45 - 11 138.701 897 2 0 1.02506 -0.470594 -145.85 - 11 115.916 907 1 1 1.51847 -0.567622 -174.45 - 11 163.811 897 1 0 1.53987 -0.575167 -175.85 - 11 180.006 909 0 1 1.98876 -0.750929 -204.45 - 11 138.26 896 0 0 2.01237 -0.756593 -205.85 - 11 208.673 296 4 0 81.6229 -120.872 -86.25 - 11 101.58 742 1 0 26.9463 -31.6363 -176.25 - 11 90.402 743 1 0 26.9941 -31.45 -176.032 - 11 285.595 744 1 0 27.0699 -31.25 -176.033 - 11 149.683 1406 3 1 101.35 124.126 -114.844 - 11 19.897 545 9 1 -71.0339 83.9638 65.5011 - 11 141.935 1407 3 1 101.55 124.079 -114.64 -Number of digits in this event = 16 -proton -Event: 12 -Number of tracker hits in this event = 10 - 12 132.056 900 4 1 0.106908 0.108107 -84.45 - 12 128.866 900 4 0 0.120796 0.112072 -85.85 - 12 119.538 901 3 1 0.38101 0.167311 -114.45 - 12 138.982 900 3 0 0.390415 0.171555 -115.85 - 12 128.021 902 2 1 0.570529 0.267794 -144.45 - 12 140.732 901 2 0 0.583276 0.272665 -145.85 - 12 182.147 903 1 1 0.843493 0.39088 -174.45 - 12 122.297 901 1 0 0.858779 0.39585 -175.85 - 12 138.22 905 0 1 1.17654 0.49952 -204.45 - 12 140.556 902 0 0 1.19686 0.502522 -205.85 -Number of digits in this event = 10 -proton -Event: 13 -Number of tracker hits in this event = 18 - 13 115.08 899 5 1 -0.19019 -0.0504205 -54.45 - 13 130.184 899 5 0 -0.200414 -0.0577578 -55.85 - 13 128.691 898 4 1 -0.444805 -0.227733 -84.45 - 13 0.979052 897 4 1 -0.45 -0.227034 -84.8442 - 13 220.014 899 4 0 -0.463117 -0.225091 -85.85 - 13 152.355 896 3 1 -0.81122 -0.153757 -114.45 - 13 173.132 899 3 0 -0.831638 -0.149971 -115.85 - 13 137.847 893 2 1 -1.25028 -0.0881806 -144.45 - 13 130.336 899 2 0 -1.26665 -0.0816658 -145.85 - 13 34.9286 892 1 1 -1.60406 0.05 -174.713 - 13 132.48 900 1 0 -1.61892 0.0566244 -175.85 - 13 150.044 890 0 1 -1.9972 0.220679 -204.45 - 13 214.975 900 0 0 -2.0116 0.228311 -205.85 - 13 34.7793 894 2 1 -1.25 -0.0891444 -144.801 - 13 282.612 903 2 0 0.226856 0.656631 -145.85 - 13 123.955 895 3 1 -0.850041 -0.159958 -114.635 - 13 9.76981 1086 2 0 -148.513 37.45 -145.893 - 13 10.8474 1087 2 0 -148.517 37.45 -145.894 -Number of digits in this event = 14 -proton -Event: 14 -Number of tracker hits in this event = 11 - 14 137.978 900 3 1 0.214296 -0.392479 -114.45 - 14 196.847 898 3 0 0.229371 -0.403362 -115.85 - 14 190.758 902 2 1 0.531237 -0.632929 -144.45 - 14 257.815 897 2 0 0.545133 -0.638743 -145.85 - 14 181.648 903 1 1 0.811193 -0.758981 -174.45 - 14 165.426 896 1 0 0.819685 -0.762109 -175.85 - 14 114.254 904 0 1 1.01884 -0.822094 -204.45 - 14 107.825 896 0 0 1.02999 -0.824974 -205.85 - 14 71.9505 896 2 0 0.678573 -0.650077 -145.947 - 14 20.6993 895 2 0 0.696364 -0.85 -145.907 - 14 301.811 901 2 1 0.308008 -1.31767 -144.85 -Number of digits in this event = 8 -proton -Event: 15 -Number of tracker hits in this event = 10 - 15 335.861 899 4 1 -0.243178 -0.120302 -84.45 - 15 170.752 899 4 0 -0.247055 -0.129355 -85.85 - 15 145.801 898 3 1 -0.326279 -0.303639 -114.45 - 15 122.798 898 3 0 -0.331193 -0.306622 -115.85 - 15 110.058 898 2 1 -0.427997 -0.363206 -144.45 - 15 125.848 898 2 0 -0.438485 -0.367837 -145.85 - 15 143.655 896 1 1 -0.650697 -0.475481 -174.45 - 15 136.232 897 1 0 -0.651047 -0.472749 -175.85 - 15 137.559 897 0 1 -0.621016 -0.359532 -204.45 - 15 175.171 898 0 0 -0.618525 -0.368191 -205.85 -Number of digits in this event = 10 -proton -Event: 16 -Number of tracker hits in this event = 12 - 16 127.947 899 5 1 -0.0579663 -0.0954809 -54.45 - 16 128.464 899 5 0 -0.0643377 -0.104936 -55.85 - 16 143.203 899 4 1 -0.173548 -0.284032 -84.45 - 16 146.448 898 4 0 -0.172211 -0.29819 -85.85 - 16 128.797 899 3 1 -0.174845 -0.593856 -114.45 - 16 120.035 897 3 0 -0.177883 -0.612052 -115.85 - 16 137.234 899 2 1 -0.194951 -1.04223 -144.45 - 16 96.8701 894 2 0 -0.201492 -1.06214 -145.85 - 16 104.405 898 1 1 -0.328663 -1.46425 -174.45 - 16 126.742 892 1 0 -0.333157 -1.48525 -175.85 - 16 124.344 898 0 1 -0.419732 -1.89589 -204.45 - 16 118.985 890 0 0 -0.432788 -1.92141 -205.85 -Number of digits in this event = 10 -proton -Event: 17 -Number of tracker hits in this event = 8 - 17 174.459 900 4 1 0.149846 -0.0801053 -84.45 - 17 115.337 899 4 0 0.1575 -0.076517 -85.85 - 17 138.945 901 2 1 0.389416 0.150126 -144.45 - 17 124.35 900 2 0 0.390992 0.158695 -145.85 - 17 179.423 901 1 1 0.416245 0.364504 -174.45 - 17 145.617 901 1 0 0.425591 0.377211 -175.85 - 17 119.598 902 0 1 0.584814 0.605802 -204.45 - 17 122.592 902 0 0 0.591001 0.616355 -205.85 -Number of digits in this event = 7 -proton -Event: 18 -Number of tracker hits in this event = 8 - 18 122.448 900 4 1 0.0526798 -0.0589802 -84.45 - 18 109.153 899 4 0 0.0621253 -0.0628514 -85.85 - 18 261.196 900 3 1 0.240401 -0.15432 -114.45 - 18 133.035 899 3 0 0.247383 -0.152107 -115.85 - 18 105.378 901 2 1 0.399704 -0.116852 -144.45 - 18 117.993 899 2 0 0.402918 -0.112001 -145.85 - 18 253.468 902 0 1 0.481739 0.134558 -204.45 - 18 150.404 900 0 0 0.480225 0.149029 -205.85 -Number of digits in this event = 6 -proton -Event: 19 -Number of tracker hits in this event = 8 - 19 180.515 899 3 1 -0.154994 0.0759096 -114.45 - 19 141.631 900 3 0 -0.13361 0.0980318 -115.85 - 19 103.925 901 2 1 0.310061 0.55137 -144.45 - 19 138.89 902 2 0 0.328696 0.572449 -145.85 - 19 131.754 903 1 1 0.695321 1.00888 -174.45 - 19 157.315 904 1 0 0.705211 1.02211 -175.85 - 19 130.383 904 0 1 0.908357 1.28331 -204.45 - 19 170.405 906 0 0 0.918457 1.29586 -205.85 -Number of digits in this event = 8 -proton -Event: 20 -Number of tracker hits in this event = 17 - 20 159.041 899 3 1 -0.0690244 -0.314048 -114.45 - 20 206.587 898 3 0 -0.0730294 -0.311759 -115.85 - 20 122.922 899 2 1 -0.14876 -0.246904 -144.45 - 20 12.7929 899 2 0 -0.15149 -0.249901 -145.85 - 20 123.244 898 2 0 -0.151577 -0.25 -145.896 - 20 148.51 899 1 1 -0.209672 -0.310467 -174.45 - 20 114.91 898 1 0 -0.214157 -0.307313 -175.85 - 20 136.247 898 0 1 -0.2985 -0.235598 -204.45 - 20 130.943 899 0 0 -0.303573 -0.23806 -205.85 - 20 80.3163 1063 3 0 -56.4446 32.7517 -116.25 - 20 100.012 1064 3 0 -56.5784 32.85 -116.14 - 20 0.594879 1065 3 0 -56.5877 33.05 -116.249 - 20 193.213 900 3 1 0.05 -0.209247 -114.645 - 20 96.1772 901 3 1 0.25 -0.231192 -114.666 - 20 55.3769 899 5 0 0.0501197 -0.19953 -56.1773 - 20 180.385 837 5 0 15.8371 -12.474 -56.25 - 20 211.245 836 5 0 15.6661 -12.6501 -56.0027 -Number of digits in this event = 11 -proton -Event: 21 -Number of tracker hits in this event = 6 - 21 131.22 898 2 1 -0.329407 -0.0561664 -144.45 - 21 116.028 899 2 0 -0.332615 -0.0581021 -145.85 - 21 316.682 898 1 1 -0.387951 -0.114121 -174.45 - 21 126.456 899 1 0 -0.39441 -0.114203 -175.85 - 21 192.154 897 0 1 -0.544103 -0.116381 -204.45 - 21 213.879 899 0 0 -0.551107 -0.113857 -205.85 -Number of digits in this event = 7 -proton -Event: 22 -Number of tracker hits in this event = 63 - 22 56.5631 900 5 0 -0.0772842 0.05 -56.1051 - 22 135.972 899 4 1 -0.188987 0.101032 -84.45 - 22 132.497 900 4 0 -0.196751 0.103987 -85.85 - 22 132.514 898 3 1 -0.360147 0.17193 -114.45 - 22 259.956 900 3 0 -0.365116 0.171376 -115.85 - 22 123.766 897 2 1 -0.462628 0.161047 -144.45 - 22 113.702 900 2 0 -0.462203 0.152938 -145.85 - 22 140.715 863 1 1 -7.25788 8.69956 -174.45 - 22 326.676 864 1 1 -7.25 8.73121 -174.456 - 22 1.88468 942 1 0 -6.87307 8.45282 -175.85 - 22 141.019 941 1 0 -6.86988 8.44996 -175.857 - 22 236.93 948 1 0 3.09903 9.74689 -176.25 - 22 218.988 921 1 1 4.34446 9.40732 -174.85 - 22 678.205 898 0 1 -0.41318 -0.26422 -204.45 - 22 5636.41 897 0 1 -0.45 -0.471486 -204.741 - 22 217.772 894 0 0 -0.508188 -1.18561 -205.85 - 22 670.15 893 0 0 -0.513392 -1.25 -205.95 - 22 1913.62 899 0 1 -0.240858 0.05 -204.51 - 22 708.185 906 0 0 0.558739 1.29375 -205.85 - 22 875.164 907 0 0 0.6584 1.45 -206.018 - 22 62.5025 908 0 0 0.788097 1.65 -206.233 - 22 324.895 900 0 1 0.05 1.16477 -204.575 - 22 391.603 901 0 1 0.25 1.71167 -204.644 - 22 401.333 902 0 1 0.45 2.30118 -204.704 - 22 344.992 903 0 1 0.65 2.89251 -204.76 - 22 287.475 904 0 1 0.85 3.46969 -204.82 - 22 484.817 969 0 0 4.47851 13.8608 -205.85 - 22 496.911 970 0 0 4.54458 14.05 -205.869 - 22 322.772 971 0 0 4.61526 14.25 -205.888 - 22 221.978 972 0 0 4.68664 14.45 -205.908 - 22 149.942 973 0 0 4.76025 14.65 -205.93 - 22 427.776 974 0 0 4.83525 14.85 -205.952 - 22 130.53 975 0 0 4.90977 15.05 -205.973 - 22 219.462 976 0 0 4.99274 15.25 -205.998 - 22 111.838 977 0 0 5.076 15.45 -206.022 - 22 120.321 978 0 0 5.1595 15.65 -206.046 - 22 126.984 979 0 0 5.24504 15.85 -206.07 - 22 126.099 980 0 0 5.33066 16.05 -206.094 - 22 206.62 981 0 0 5.41557 16.25 -206.118 - 22 119.446 982 0 0 5.50024 16.45 -206.142 - 22 128.256 983 0 0 5.58613 16.65 -206.168 - 22 135.454 984 0 0 5.6738 16.85 -206.192 - 22 105.753 985 0 0 5.76079 17.05 -206.216 - 22 51.6202 986 0 0 5.84753 17.25 -206.24 - 22 101.973 896 0 1 -0.815068 0.05 -204.633 - 22 436.447 895 0 1 -0.85 0.0670149 -204.66 - 22 218.815 894 0 1 -1.05 0.165252 -204.81 - 22 80.5706 903 0 0 -2.40567 0.835682 -205.85 - 22 1045.26 904 0 0 -2.43462 0.85 -205.872 - 22 217.102 905 0 0 -2.84097 1.05 -206.184 - 22 269.187 957 0 0 -0.71038 11.4709 -205.85 - 22 285.024 958 0 0 -0.713332 11.65 -205.874 - 22 353.937 959 0 0 -0.715219 11.85 -205.901 - 22 376.186 960 0 0 -0.717825 12.05 -205.929 - 22 352.512 961 0 0 -0.719956 12.25 -205.957 - 22 294.67 962 0 0 -0.721606 12.45 -205.985 - 22 326.684 963 0 0 -0.723619 12.65 -206.013 - 22 293.573 964 0 0 -0.724466 12.85 -206.04 - 22 327.667 965 0 0 -0.724917 13.05 -206.067 - 22 398.926 966 0 0 -0.727391 13.25 -206.096 - 22 284.023 967 0 0 -0.727743 13.45 -206.123 - 22 297.614 968 0 0 -0.72708 13.65 -206.151 - 22 204.558 897 0 0 0.364292 -0.45766 -205.85 -Number of digits in this event = 56 -proton -Event: 23 -Number of tracker hits in this event = 6 - 23 134.431 900 5 1 0.0972226 -0.0879316 -54.45 - 23 103.033 899 5 0 0.0984579 -0.0935493 -55.85 - 23 143.483 900 4 1 0.101436 -0.193481 -84.45 - 23 157.984 899 4 0 0.0978549 -0.198186 -85.85 - 23 127.968 899 1 1 -0.0551972 -0.367472 -174.45 - 23 151.944 898 1 0 -0.0536047 -0.362326 -175.85 -Number of digits in this event = 7 -proton -Event: 24 -Number of tracker hits in this event = 8 - 24 139.985 901 3 1 0.350244 0.103423 -114.45 - 24 137.895 900 3 0 0.3635 0.104945 -115.85 - 24 118.643 902 2 1 0.643365 0.146218 -144.45 - 24 147.676 900 2 0 0.661791 0.147183 -145.85 - 24 269.811 904 1 1 1.04129 0.160039 -174.45 - 24 186.443 900 1 0 1.06631 0.160951 -175.85 - 24 150.955 907 0 1 1.57639 0.166315 -204.45 - 24 138.3 900 0 0 1.60622 0.160751 -205.85 -Number of digits in this event = 8 -proton -Event: 25 -Number of tracker hits in this event = 8 - 25 131.671 899 3 1 -0.123062 0.907285 -114.45 - 25 127.364 904 3 0 -0.129431 0.91717 -115.85 - 25 194.36 899 2 1 -0.247647 1.12079 -144.45 - 25 135.722 905 2 0 -0.248845 1.1281 -145.85 - 25 157.644 898 1 1 -0.277265 1.27678 -174.45 - 25 134.55 906 1 0 -0.278211 1.28592 -175.85 - 25 114.856 898 0 1 -0.273351 1.47721 -204.45 - 25 137.676 907 0 0 -0.27407 1.48169 -205.85 -Number of digits in this event = 8 -proton -Event: 26 -Number of tracker hits in this event = 18 - 26 168.063 899 4 1 -0.136323 0.178701 -84.45 - 26 143.194 900 4 0 -0.139213 0.18065 -85.85 - 26 134.782 899 3 1 -0.211322 0.212345 -114.45 - 26 113.048 900 3 0 -0.218982 0.213091 -115.85 - 26 131.21 898 2 1 -0.38731 0.209992 -144.45 - 26 128.697 900 2 0 -0.395846 0.208656 -145.85 - 26 249.298 897 1 1 -0.558818 0.162492 -174.45 - 26 131.457 900 1 0 -0.561779 0.159465 -175.85 - 26 282.705 897 0 1 -0.614203 0.0835747 -204.45 - 26 158.227 900 0 0 -0.615835 0.0823459 -205.85 - 26 130.023 789 0 1 -22.1339 -6.20922 -204.85 - 26 71.468 896 0 1 -0.65 0.102779 -204.513 - 26 187.255 895 0 1 -0.850102 0.228661 -204.653 - 26 58.9471 902 0 0 -1.30736 0.612709 -205.85 - 26 280.387 903 0 0 -1.35862 0.65 -205.908 - 26 5.29819 904 0 0 -1.47563 0.85 -205.851 - 26 191.962 888 0 1 -2.27129 4.42047 -204.85 - 26 61.9095 889 0 1 -2.25 4.64466 -204.811 -Number of digits in this event = 14 -proton -Event: 27 -Number of tracker hits in this event = 38 - 27 140.479 901 4 1 0.428689 0.0839301 -84.45 - 27 181.944 900 4 0 0.446372 0.0905696 -85.85 - 27 156.139 903 3 1 0.843997 0.217557 -114.45 - 27 124.967 900 3 0 0.861906 0.224211 -115.85 - 27 143.325 905 2 1 1.22344 0.362693 -144.45 - 27 125.092 901 2 0 1.24203 0.370056 -145.85 - 27 135.42 907 1 1 1.61673 0.529459 -174.45 - 27 121.203 902 1 0 1.63279 0.528227 -175.85 - 27 251.061 909 0 1 1.95355 0.49881 -204.45 - 27 192.814 902 0 0 1.97279 0.501991 -205.85 - 27 223.642 908 0 1 1.85 0.437673 -204.776 - 27 25.7261 907 0 1 1.64998 0.536291 -204.805 - 27 18.4799 1055 1 1 31.073 36.5123 -174.85 - 27 24.2987 1056 1 1 31.2501 36.7315 -174.519 - 27 99.7771 305 3 0 101.663 -119.038 -116.25 - 27 185.08 304 3 0 101.858 -119.15 -116.035 - 27 53.3753 1417 3 1 103.604 -120.903 -114.85 - 27 175.273 1418 3 1 103.75 -121.01 -114.762 - 27 97.1308 1419 3 1 103.95 -121.135 -114.585 - 27 40.7399 1420 3 1 104.15 -121.243 -114.452 - 27 83.558 1421 3 1 104.35 -121.384 -114.48 - 27 77.9392 1422 3 1 104.55 -121.58 -114.572 - 27 64.3807 1423 3 1 104.75 -121.745 -114.651 - 27 55.5463 1424 3 1 104.95 -121.87 -114.668 - 27 63.1045 1425 3 1 105.15 -121.935 -114.649 - 27 68.9822 1426 3 1 105.35 -122.001 -114.578 - 27 30.2077 1427 3 1 105.55 -122.09 -114.473 - 27 88.0732 1428 3 1 105.75 -122.155 -114.49 - 27 117.291 1429 3 1 105.95 -122.427 -114.644 - 27 31.8541 1430 3 1 106.15 -122.457 -114.786 - 27 5.01464 294 3 0 107.692 -121.165 -115.85 - 27 118.371 295 3 0 107.709 -121.15 -115.866 - 27 177.643 905 0 0 -161.968 1.05 -205.969 - 27 11.1264 1660 4 0 -156.368 152.15 -86.018 - 27 16.2203 116 4 1 -156.805 152.441 -84.8499 - 27 72.2637 1657 4 0 -154.704 151.736 -85.85 - 27 91.1564 1658 4 0 -154.66 151.75 -85.8589 - 27 97.5678 131 4 1 -153.851 151.941 -84.85 -Number of digits in this event = 17 -proton -Event: 28 -### G4LevelReader: broken level 72 E(MeV)= 2.8417 < 2.8417 for isotope Z= 51 A= 119 level energy increased -Number of tracker hits in this event = 10 - 28 148.872 900 3 1 0.1377 0.448743 -114.45 - 28 145.212 902 3 0 0.14137 0.463928 -115.85 - 28 133.225 900 2 1 0.213386 0.738893 -144.45 - 28 113.847 903 2 0 0.221305 0.750635 -145.85 - 28 150.221 901 1 1 0.373072 0.998049 -174.45 - 28 136.281 904 1 0 0.374523 1.01131 -175.85 - 28 144.415 901 0 1 0.41901 1.27758 -204.45 - 28 317.396 906 0 0 0.428344 1.2891 -205.85 - 28 23.9536 1397 1 1 99.733 -102.475 -174.532 - 28 23.9699 945 1 0 155.254 9.18072 -175.965 -Number of digits in this event = 10 -proton -Event: 29 -Number of tracker hits in this event = 13 - 29 129.851 898 5 1 -0.2653 0.121683 -54.45 - 29 151.739 900 5 0 -0.275797 0.129113 -55.85 - 29 139.312 897 4 1 -0.525517 0.291438 -84.45 - 29 111.625 901 4 0 -0.536044 0.300476 -85.85 - 29 132.093 896 3 1 -0.765726 0.503507 -114.45 - 29 109.661 902 3 0 -0.78277 0.510686 -115.85 - 29 104.589 894 2 1 -1.13859 0.666954 -144.45 - 29 112.323 903 2 0 -1.1457 0.67446 -145.85 - 29 168.383 893 1 1 -1.28768 0.841371 -174.45 - 29 114.625 903 1 0 -1.28958 0.844224 -175.85 - 29 205.494 893 0 1 -1.33466 0.904526 -204.45 - 29 115.549 904 0 0 -1.34181 0.901253 -205.85 - 29 130.719 894 0 1 -1.24996 1.02179 -204.659 -Number of digits in this event = 8 -proton -Event: 30 -Number of tracker hits in this event = 12 - 30 112.812 900 4 1 0.178947 -0.239484 -84.45 - 30 183.29 899 4 0 0.185124 -0.246459 -85.85 - 30 144.189 901 3 1 0.291787 -0.379873 -114.45 - 30 171.12 898 3 0 0.293981 -0.386113 -115.85 - 30 225.102 901 2 1 0.341859 -0.512411 -144.45 - 30 121.506 897 2 0 0.340959 -0.513013 -145.85 - 30 120.881 901 1 1 0.326621 -0.516723 -174.45 - 30 133.066 897 1 0 0.328058 -0.5176 -175.85 - 30 156.01 901 0 1 0.360351 -0.543121 -204.45 - 30 128.238 897 0 0 0.359149 -0.543797 -205.85 - 30 30.6873 899 5 1 -0.217715 0.05 -54.6063 - 30 225.556 898 5 1 -0.250056 0.0562436 -54.6279 -Number of digits in this event = 11 -proton -Event: 31 -Number of tracker hits in this event = 104 - 31 132.013 900 1 1 0.0925042 0.552046 -174.45 - 31 237.101 902 1 0 0.0966505 0.554215 -175.85 - 31 126.822 900 0 1 0.160606 0.58996 -204.45 - 31 158.407 902 0 0 0.171755 0.597962 -205.85 - 31 32.7508 901 1 1 0.429739 0.635848 -174.85 - 31 82.7953 902 1 1 0.450033 0.63983 -174.816 - 31 127.739 899 4 1 -0.05 0.0968317 -84.5124 - 31 19.6745 898 4 1 -0.250082 -0.271338 -84.8242 - 31 35.3365 895 4 0 -1.29943 -0.990494 -85.85 - 31 146.165 894 4 0 -1.35371 -1.05008 -85.9071 - 31 325.904 893 4 0 -1.43108 -1.25006 -86.0792 - 31 139.312 623 0 0 27.9351 -55.3307 -206.25 - 31 7.37488 622 0 0 27.942 -55.45 -205.873 - 31 109.068 1039 0 1 27.9924 -55.8591 -204.85 - 31 152.586 556 1 0 -1.07701 -68.7041 -176.25 - 31 32.7962 555 1 0 -1.40693 -68.85 -175.944 - 31 2.31383 887 1 1 -2.63968 -69.3615 -174.85 - 31 181.119 886 1 1 -2.65 -69.3658 -174.841 - 31 65.3251 885 1 1 -2.85 -69.4487 -174.653 - 31 33.3385 409 2 0 -30.9914 -98.3238 -146.25 - 31 108.622 408 2 0 -31.0171 -98.35 -146.225 - 31 86.6092 407 2 0 -31.2171 -98.55 -146.027 - 31 36.6474 738 2 1 -32.3509 -99.7398 -144.85 - 31 97.8309 737 2 1 -32.45 -99.8418 -144.75 - 31 46.639 736 2 1 -32.65 -100.06 -144.547 - 31 289.746 731 2 1 -33.7334 -100.53 -144.45 - 31 111.294 730 2 1 -33.85 -99.9883 -144.665 - 31 184.635 410 2 0 -34.3283 -98.15 -145.889 - 31 53.485 411 2 0 -34.3925 -97.95 -146.025 - 31 167.726 412 2 0 -34.426 -97.75 -146.164 - 31 19.3284 413 2 0 -34.4356 -97.55 -146.23 - 31 163.903 424 3 0 -63.1465 -95.2558 -116.25 - 31 0.0817669 577 3 1 -64.6481 -95.1489 -114.85 - 31 66.6399 576 3 1 -64.65 -95.1488 -114.848 - 31 184.152 575 3 1 -64.85 -95.1488 -114.671 - 31 138.108 574 3 1 -65.05 -95.0948 -114.473 - 31 169.078 573 3 1 -65.25 -94.558 -114.616 - 31 251.463 1709 12 1 162.062 -141.976 155.55 - 31 24.4043 1710 12 1 162.15 -142.348 155.191 - 31 55.28 189 12 0 161.945 -142.165 154.15 - 31 116.724 190 12 0 161.909 -142.15 154.093 - 31 128.557 85 12 0 118.008 -163.006 153.75 - 31 200.114 1485 12 1 117.252 -163.304 155.15 - 31 50.8009 1484 12 1 117.15 -163.306 155.418 - 31 66.2593 89 12 0 117.936 -162.286 154.15 - 31 72.1786 90 12 0 118.017 -162.15 153.972 - 31 187.074 353 12 0 91.2635 -109.473 153.75 - 31 155.983 165 12 0 -52.8861 -146.976 153.75 - 31 345.487 1092 3 1 38.4868 -63.2078 -114.847 - 31 127.848 570 4 0 43.5568 -65.9977 -86.25 - 31 21.173 569 4 0 43.6196 -66.05 -85.908 - 31 290.741 1118 4 1 43.7861 -66.1653 -84.85 - 31 2.74719 1119 4 1 43.85 -66.1912 -84.4578 - 31 54.0428 484 5 0 54.4395 -83.1063 -56.2498 - 31 188.923 483 5 0 54.5125 -83.25 -56.0623 - 31 115.236 482 5 0 54.6227 -83.45 -55.8927 - 31 79.1927 1176 5 1 55.3414 -84.894 -54.85 - 31 78.6053 1177 5 1 55.45 -85.0772 -54.6602 - 31 52.5778 1178 5 1 55.65 -85.4134 -54.462 - 31 119.875 1179 5 1 55.85 -85.346 -54.502 - 31 56.3371 1180 5 1 56.05 -85.2869 -54.5353 - 31 51.6891 1181 5 1 56.2502 -85.2495 -54.61 - 31 56.9996 1182 5 1 56.45 -85.2138 -54.7454 - 31 110.045 474 5 0 56.7911 -85.1463 -55.85 - 31 16.4365 473 5 0 56.944 -85.25 -56.1924 - 31 46.7487 603 5 0 99.1414 -59.4025 -56.2499 - 31 61.1575 604 5 0 99.2322 -59.2499 -56.1767 - 31 106.922 605 5 0 99.3201 -59.05 -56.1484 - 31 152.085 775 5 0 91.721 -25.0079 -56.25 - 31 44.7853 774 5 0 91.3322 -25.05 -55.9129 - 31 40.0848 1336 5 1 87.3415 -27.3435 -54.85 - 31 32.5962 741 5 0 83.6699 -31.7737 -55.85 - 31 74.2895 740 5 0 83.6007 -31.8501 -55.8743 - 31 61.502 739 5 0 83.4747 -32.0501 -55.9181 - 31 17.0511 738 5 0 83.3827 -32.2501 -55.8823 - 31 69.2022 1313 5 1 82.8087 -32.8561 -54.85 - 31 78.5964 1312 5 1 82.6499 -32.9249 -54.7509 - 31 104.819 1311 5 1 82.4499 -32.9416 -54.7357 - 31 294.021 1310 5 1 82.25 -33.0413 -54.6885 - 31 30.7416 1091 3 1 38.2928 -63.4881 -114.45 - 31 85.2392 1090 3 1 38.2499 -63.4086 -114.502 - 31 230.853 1089 3 1 38.0499 -63.3643 -114.577 - 31 3.64992 647 1 0 46.3139 -50.5863 -176.25 - 31 130.591 1648 2 1 149.75 -65.5918 -144.821 - 31 93.7235 518 4 0 45.4819 -76.3065 -86.25 - 31 34.3635 517 4 0 45.5656 -76.45 -85.9375 - 31 121.217 1129 4 1 45.853 -76.9457 -84.85 - 31 23.5174 477 5 0 50.0544 -84.6219 -56.25 - 31 84.4519 476 5 0 50.0692 -84.65 -56.151 - 31 132.797 1151 5 1 50.3103 -84.999 -54.8497 - 31 144.902 565 6 0 56.2897 -67.0227 -26.25 - 31 29.1396 566 6 0 56.3447 -66.85 -25.9503 - 31 89.2303 1182 6 1 56.5747 -66.207 -24.85 - 31 89.9789 1183 6 1 56.65 -66.0517 -24.5645 - 31 142.873 569 7 0 58.5989 -66.181 3.75 - 31 223.251 1193 7 1 58.6947 -66.3163 5.15 - 31 30.7295 1036 8 0 35.1113 27.3693 33.75 - 31 57.22 1037 8 0 35.0934 27.45 33.7742 - 31 67.0384 1038 8 0 35.0513 27.65 33.8623 - 31 53.5523 1039 8 0 35.0074 27.85 33.9537 - 31 46.3591 1040 8 0 34.9564 28.05 34.0432 - 31 93.0541 1072 8 1 34.5345 29.4979 35.1502 - 31 98.436 1071 8 1 34.45 29.7432 35.3332 - 31 75.1457 1774 6 0 20.8666 174.95 -25.9913 -Number of digits in this event = 38 -proton -Event: 32 -Number of tracker hits in this event = 12 - 32 165.385 901 4 1 0.367915 -0.154284 -84.45 - 32 165.263 899 4 0 0.381007 -0.167454 -85.85 - 32 202.361 903 3 1 0.680482 -0.424346 -114.45 - 32 110.281 898 3 0 0.696986 -0.441387 -115.85 - 32 123.091 904 2 1 1.03806 -0.79655 -144.45 - 32 129.487 896 2 0 1.05699 -0.817228 -145.85 - 32 167.602 907 1 1 1.45706 -1.22134 -174.45 - 32 122.197 894 1 0 1.47563 -1.24239 -175.85 - 32 140.949 909 0 1 1.85878 -1.67664 -204.45 - 32 174.508 891 0 0 1.87786 -1.70194 -205.85 - 32 4.63643 906 1 1 1.44994 -1.22584 -174.844 - 32 161.262 891 1 0 -0.05 -1.75476 -175.881 -Number of digits in this event = 11 -proton -Event: 33 -Number of tracker hits in this event = 10 - 33 162.431 898 4 1 -0.410479 0.149735 -84.45 - 33 140.44 900 4 0 -0.422645 0.153421 -85.85 - 33 158.047 896 3 1 -0.685302 0.219033 -114.45 - 33 157.554 900 3 0 -0.693158 0.227721 -115.85 - 33 132.059 895 2 1 -0.872944 0.386067 -144.45 - 33 135.228 901 2 0 -0.884557 0.389393 -145.85 - 33 114.446 894 1 1 -1.14282 0.470799 -174.45 - 33 159.186 902 1 0 -1.14808 0.475271 -175.85 - 33 163.572 894 0 1 -1.22683 0.564312 -204.45 - 33 125.894 902 0 0 -1.23458 0.571287 -205.85 -Number of digits in this event = 13 -proton -Event: 34 -Number of tracker hits in this event = 7 - 34 136.425 900 3 1 0.113862 -0.0747983 -114.45 - 34 120.889 899 3 0 0.121732 -0.0690514 -115.85 - 34 117.641 900 2 0 0.310368 0.0537345 -145.85 - 34 148.815 902 1 1 0.595284 0.228945 -174.45 - 34 125.934 900 1 0 0.612414 0.235145 -175.85 - 34 115.581 904 0 1 0.938499 0.373157 -204.45 - 34 272.968 901 0 0 0.941817 0.373114 -205.85 -Number of digits in this event = 6 -proton -Event: 35 -Number of tracker hits in this event = 12 - 35 124.174 899 5 1 -0.156286 -0.076829 -54.45 - 35 123.885 899 5 0 -0.163353 -0.0781168 -55.85 - 35 188.059 898 4 1 -0.282928 -0.106538 -84.45 - 35 130.366 899 4 0 -0.288832 -0.110353 -85.85 - 35 120.411 898 3 1 -0.410007 -0.192419 -114.45 - 35 177.992 899 3 0 -0.415581 -0.197263 -115.85 - 35 117.549 897 2 1 -0.533011 -0.284714 -144.45 - 35 141.222 898 2 0 -0.537697 -0.286753 -145.85 - 35 155.176 897 1 1 -0.646245 -0.327284 -174.45 - 35 141.002 898 1 0 -0.657326 -0.322116 -175.85 - 35 224.348 895 0 1 -0.908901 -0.209832 -204.45 - 35 130.225 899 0 0 -0.919099 -0.206401 -205.85 -Number of digits in this event = 12 -proton -Event: 36 -Number of tracker hits in this event = 14 - 36 125.73 900 5 1 0.0934511 0.157008 -54.45 - 36 103.482 900 5 0 0.0964971 0.165534 -55.85 - 36 217.368 900 4 1 0.180138 0.347816 -84.45 - 36 125.425 901 4 0 0.174846 0.366973 -85.85 - 36 168.819 899 2 1 -0.212401 1.01217 -144.45 - 36 137.713 904 2 0 -0.222684 1.02235 -145.85 - 36 126.048 898 1 1 -0.434561 1.22466 -174.45 - 36 144.992 905 1 0 -0.463479 1.23143 -175.85 - 36 31.0827 895 0 1 -1.04813 1.38157 -204.45 - 36 80.6981 894 0 1 -1.05 1.38182 -204.566 - 36 129.15 906 0 0 -1.06999 1.38445 -205.85 - 36 120.958 903 3 0 0.0500522 0.760794 -115.955 - 36 107.091 898 3 1 -0.250624 1.20994 -114.85 - 36 16.5874 899 3 1 -0.249997 1.22055 -114.838 -Number of digits in this event = 10 -proton -Event: 37 -Number of tracker hits in this event = 14 - 37 111.477 900 5 1 0.240958 0.0924127 -54.45 - 37 141.125 900 5 0 0.255149 0.0965304 -55.85 - 37 108.685 902 4 1 0.539747 0.197762 -84.45 - 37 235.027 900 4 0 0.555127 0.208146 -85.85 - 37 238.07 904 3 1 0.864598 0.436258 -114.45 - 37 113.993 902 3 0 0.885236 0.456756 -115.85 - 37 136.547 906 2 1 1.29671 0.870505 -144.45 - 37 126.159 904 2 0 1.3161 0.892789 -145.85 - 37 152.357 908 1 1 1.71418 1.34479 -174.45 - 37 140.996 906 1 0 1.73417 1.36774 -175.85 - 37 114.793 910 0 1 2.1484 1.82522 -204.45 - 37 149.731 908 0 0 2.16808 1.84503 -205.85 - 37 12.5627 909 0 0 2.17296 1.85 -206.2 - 37 262.562 907 1 1 1.65 1.29326 -174.522 -Number of digits in this event = 10 -proton -Event: 38 -Number of tracker hits in this event = 20 - 38 82.7225 900 5 1 0.131364 -0.05 -54.554 - 38 154.711 899 5 0 0.136718 -0.0556392 -55.85 - 38 157.711 900 4 1 0.238883 -0.179603 -84.45 - 38 216.107 899 4 0 0.245358 -0.184073 -85.85 - 38 123.913 901 3 1 0.408977 -0.264543 -114.45 - 38 205.289 898 3 0 0.426273 -0.261309 -115.85 - 38 126.634 903 2 1 0.778804 -0.199773 -144.45 - 38 331.803 899 2 0 0.795446 -0.19449 -145.85 - 38 104.172 905 1 1 1.13582 -0.0778921 -174.45 - 38 136.398 899 1 0 1.15743 -0.0763095 -175.85 - 38 3.68302 901 4 1 0.25 -0.166856 -84.8429 - 38 34.3576 906 4 0 1.19145 1.2794 -85.85 - 38 77.0221 903 4 1 0.732116 4.06487 -84.85 - 38 200.793 904 4 1 0.850047 4.10236 -84.7593 - 38 237.469 899 7 0 -7.00652 -0.119067 3.75 - 38 87.2121 861 7 1 -7.68291 -0.136618 5.15 - 38 200.415 860 7 1 -7.85 -0.196074 5.3858 - 38 160.504 859 7 1 -8.05 -0.312546 5.43849 - 38 9.17728 858 7 1 -8.25 -0.402881 5.17607 - 38 68.7014 900 7 0 -9.02515 0.05 3.91973 -Number of digits in this event = 14 -proton -Event: 39 -Number of tracker hits in this event = 17 - 39 122.175 899 5 1 -0.211478 0.0937807 -54.45 - 39 170.499 900 5 0 -0.222263 0.100875 -55.85 - 39 175.406 897 4 1 -0.450413 0.260103 -84.45 - 39 131.807 901 4 0 -0.457916 0.268757 -85.85 - 39 131.406 897 3 1 -0.627028 0.444346 -114.45 - 39 136.879 902 3 0 -0.626178 0.452367 -115.85 - 39 200.556 897 2 1 -0.619974 0.637149 -144.45 - 39 127.398 902 2 0 -0.623658 0.643449 -145.85 - 39 321.78 896 1 1 -0.693977 0.774543 -174.45 - 39 125.85 903 1 0 -0.687079 0.780179 -175.85 - 39 161.202 897 0 1 -0.564525 0.904676 -204.45 - 39 147.957 904 0 0 -0.55835 0.914027 -205.85 - 39 86.7377 895 1 1 -0.85 0.7012 -174.645 - 39 227.388 902 1 0 -1.52682 0.632729 -175.85 - 39 74.3426 876 1 0 -13.9504 -4.74008 -176.25 - 39 172.593 875 1 0 -14.0795 -4.85006 -176.168 - 39 175.647 874 1 0 -14.322 -5.05 -176.216 -Number of digits in this event = 16 -proton -Event: 40 -Number of tracker hits in this event = 9 - 40 143.713 900 5 1 0.0767604 0.050686 -54.45 - 40 117.399 901 3 1 0.285815 0.0747848 -114.45 - 40 119.042 900 3 0 0.291207 0.0807428 -115.85 - 40 221.411 901 2 1 0.407391 0.192761 -144.45 - 40 151.643 900 2 0 0.413599 0.201829 -145.85 - 40 148.191 902 1 1 0.56685 0.369916 -174.45 - 40 161.035 901 1 0 0.572859 0.376204 -175.85 - 40 147.086 903 0 1 0.713704 0.525714 -204.45 - 40 129.281 902 0 0 0.720505 0.534085 -205.85 -Number of digits in this event = 8 -proton -Event: 41 -Number of tracker hits in this event = 4 - 41 190.107 900 1 1 0.0761275 -0.05 -174.458 - 41 111.466 899 1 0 0.0769592 -0.0586305 -175.85 - 41 196.95 900 0 1 0.0907531 -0.218514 -204.45 - 41 166.138 899 0 0 0.090489 -0.227408 -205.85 -Number of digits in this event = 4 -proton -Event: 42 -Number of tracker hits in this event = 8 - 42 122.279 899 3 1 -0.116121 -0.0581245 -114.45 - 42 168.652 899 3 0 -0.115537 -0.0650571 -115.85 - 42 131.373 899 2 1 -0.100549 -0.21317 -144.45 - 42 126.646 899 2 0 -0.0989627 -0.216223 -145.85 - 42 147.13 899 1 1 -0.0520925 -0.286844 -174.45 - 42 53.3977 898 1 0 -0.0501806 -0.284261 -175.85 - 42 85.1663 900 5 1 0.179861 0.05 -54.6026 - 42 85.3805 901 5 1 0.25 0.0676683 -54.6719 -Number of digits in this event = 6 -proton -Event: 43 -Number of tracker hits in this event = 43 - 43 7258.26 935 7 0 -21.8742 7.07383 3.75 - 43 6266.33 900 6 1 0.0955938 -0.0694873 -24.45 - 43 1886.16 901 6 1 0.25 -0.327592 -24.789 - 43 397.256 979 7 0 -53.3402 16.0355 3.75 - 43 6228.37 980 7 0 -53.3883 16.05 3.77535 - 43 541.568 981 7 0 -54.0399 16.25 4.12557 - 43 1308.8 620 7 1 -55.9348 16.89 5.15 - 43 2310.79 619 7 1 -56.05 16.9289 5.2123 - 43 2961.22 618 7 1 -56.25 17.0001 5.321 - 43 3625.86 617 7 1 -56.45 17.0752 5.43585 - 43 566.091 880 6 0 0.0987027 -3.91734 -25.85 - 43 984.524 879 6 0 0.102474 -4.05 -25.901 - 43 1112.73 878 6 0 0.114662 -4.25 -25.9739 - 43 1060.66 877 6 0 0.122773 -4.45 -26.0539 - 43 1223.38 876 6 0 0.129905 -4.65 -26.1309 - 43 866.313 875 6 0 0.133876 -4.85 -26.205 - 43 128.611 898 6 1 -0.3453 -0.386532 -24.45 - 43 166.088 897 6 1 -0.45 -0.502997 -24.4888 - 43 125.072 896 6 1 -0.65 -0.725486 -24.5624 - 43 148.161 895 6 1 -0.85 -0.947992 -24.6357 - 43 169.184 894 6 1 -1.05 -1.1702 -24.709 - 43 155.221 893 6 1 -1.25 -1.39273 -24.7823 - 43 141.255 874 6 0 -4.53862 -5.05 -25.9888 - 43 113.352 873 6 0 -4.71803 -5.25 -26.0547 - 43 137.361 872 6 0 -4.8975 -5.45 -26.1207 - 43 126.999 871 6 0 -5.0774 -5.65 -26.1869 - 43 141.07 489 5 1 -82.0571 -91.2987 -54.45 - 43 240.147 488 5 1 -82.25 -91.5186 -54.5258 - 43 194.062 487 5 1 -82.45 -91.7464 -54.6042 - 43 323.62 486 5 1 -82.65 -91.9743 -54.6826 - 43 146.708 485 5 1 -82.85 -92.2019 -54.7605 - 43 35.5925 484 5 1 -83.05 -92.4299 -54.8384 - 43 95.1053 423 5 0 -85.6463 -95.3822 -55.85 - 43 114.127 422 5 0 -85.7938 -95.55 -55.9075 - 43 136.07 421 5 0 -85.9694 -95.75 -55.9762 - 43 133.251 420 5 0 -86.1454 -95.95 -56.0447 - 43 137.412 419 5 0 -86.3216 -96.15 -56.1134 - 43 137.161 418 5 0 -86.4978 -96.35 -56.1819 - 43 110.016 105 4 1 -158.985 -178.304 -84.45 - 43 169.919 104 4 1 -159.15 -178.498 -84.5199 - 43 220.255 103 4 1 -159.35 -178.733 -84.6045 - 43 141.42 102 4 1 -159.55 -178.969 -84.6891 - 43 135.7 101 4 1 -159.75 -179.206 -84.7739 -Number of digits in this event = 41 -proton -Event: 44 -### G4LevelReader: broken level 110 E(MeV)= 2.7216 < 2.7216 for isotope Z= 51 A= 121 level energy increased -Number of tracker hits in this event = 13 - 44 127.587 899 5 1 -0.0751699 -0.0681997 -54.45 - 44 102.97 899 5 0 -0.0797412 -0.075228 -55.85 - 44 130.582 899 4 1 -0.177153 -0.208606 -84.45 - 44 144.021 899 4 0 -0.174907 -0.210223 -85.85 - 44 159.699 899 3 1 -0.126597 -0.217993 -114.45 - 44 122.553 899 3 0 -0.130796 -0.218499 -115.85 - 44 114.725 899 2 1 -0.219783 -0.228102 -144.45 - 44 144.134 899 2 0 -0.217734 -0.223199 -145.85 - 44 127.581 899 1 1 -0.169726 -0.109761 -174.45 - 44 120.403 899 1 0 -0.164827 -0.10785 -175.85 - 44 137.122 899 0 1 -0.0613476 -0.0633263 -204.45 - 44 124.447 899 0 0 -0.0584553 -0.0545367 -205.85 - 44 130.693 943 1 0 57.6076 8.70484 -176.25 -Number of digits in this event = 13 -proton -Event: 45 -Number of tracker hits in this event = 11 - 45 133.762 899 4 1 -0.246674 -0.376032 -84.45 - 45 118.828 898 4 0 -0.257137 -0.391653 -85.85 - 45 161.612 897 3 1 -0.4719 -0.690145 -114.45 - 45 135.467 896 3 0 -0.484893 -0.705182 -115.85 - 45 224.587 896 2 1 -0.748684 -0.99352 -144.45 - 45 163.511 895 2 0 -0.760878 -1.0046 -145.85 - 45 115.16 895 1 1 -0.986511 -1.2534 -174.45 - 45 133.085 893 1 0 -1.00303 -1.2681 -175.85 - 45 194.175 893 0 1 -1.32902 -1.57492 -204.45 - 45 200.499 892 0 0 -1.34622 -1.58861 -205.85 - 45 47.1933 1011 2 0 20.5901 22.3595 -146.011 -Number of digits in this event = 12 -proton -Event: 46 -Number of tracker hits in this event = 14 - 46 141.801 899 4 1 -0.183051 -0.341024 -84.45 - 46 134.29 898 4 0 -0.193921 -0.354327 -85.85 - 46 120.155 898 3 1 -0.417685 -0.608767 -114.45 - 46 202.119 897 3 0 -0.426095 -0.624617 -115.85 - 46 129.018 897 2 1 -0.601693 -0.942069 -144.45 - 46 133.117 895 2 0 -0.60867 -0.95282 -145.85 - 46 142.321 896 1 1 -0.759094 -1.15594 -174.45 - 46 135.974 894 1 0 -0.765753 -1.1697 -175.85 - 46 151.982 895 0 1 -0.893257 -1.4556 -204.45 - 46 124.729 892 0 0 -0.902815 -1.4704 -205.85 - 46 0.203921 1361 0 0 -85.5898 92.35 -205.998 - 46 0.210678 1101 0 0 39.4766 40.25 -206.111 - 46 122.059 1505 0 0 31.317 121.15 -206.109 - 46 16.5393 1036 0 1 27.45 118.691 -204.592 -Number of digits in this event = 15 -proton -Event: 47 -Number of tracker hits in this event = 12 - 47 126.856 899 5 1 -0.204416 0.0506421 -54.45 - 47 114.691 900 5 0 -0.211001 0.0582386 -55.85 - 47 121.294 898 4 1 -0.343141 0.206839 -84.45 - 47 143.809 900 4 0 -0.35579 0.215591 -85.85 - 47 167.059 897 3 1 -0.620191 0.390342 -114.45 - 47 127.059 901 3 0 -0.632036 0.40262 -115.85 - 47 129.708 895 2 1 -0.905609 0.684269 -144.45 - 47 123.172 903 2 0 -0.913171 0.694323 -145.85 - 47 167.421 894 1 1 -1.08384 0.884544 -174.45 - 47 294.284 904 1 0 -1.09478 0.895413 -175.85 - 47 141.707 893 0 1 -1.31025 1.0913 -204.45 - 47 163.952 905 0 0 -1.32307 1.10045 -205.85 -Number of digits in this event = 12 -proton -Event: 48 -Number of tracker hits in this event = 19 - 48 117.707 899 5 1 -0.0763935 -0.0898725 -54.45 - 48 230.405 899 5 0 -0.0808552 -0.0919113 -55.85 - 48 117.645 899 4 1 -0.18357 -0.128934 -84.45 - 48 152.826 899 4 0 -0.186008 -0.132262 -85.85 - 48 150.563 899 3 1 -0.236865 -0.198302 -114.45 - 48 119.631 899 3 0 -0.24151 -0.199732 -115.85 - 48 123.256 898 2 1 -0.351652 -0.233264 -144.45 - 48 131.219 899 2 0 -0.358802 -0.235933 -145.85 - 48 250.002 897 1 1 -0.485798 -0.307609 -174.45 - 48 170.853 898 1 0 -0.491396 -0.31534 -175.85 - 48 139.256 897 0 1 -0.604351 -0.46968 -204.45 - 48 124.588 897 0 0 -0.610162 -0.478141 -205.85 - 48 13.1819 898 1 1 -0.449965 -0.356334 -174.81 - 48 15.0337 901 1 0 -0.110056 0.433958 -175.85 - 48 104.695 902 1 0 -0.102254 0.45 -175.873 - 48 5.98361 903 1 0 -0.281232 0.65 -175.857 - 48 8.68545 893 1 1 -1.43512 1.67674 -174.85 - 48 178.661 892 1 1 -1.45 1.68349 -174.839 - 48 78.8826 891 1 1 -1.65 1.82024 -174.786 -Number of digits in this event = 11 -proton -Event: 49 -Number of tracker hits in this event = 13 - 49 137.995 900 5 1 0.118986 -0.171554 -54.45 - 49 157.597 899 5 0 0.11738 -0.178515 -55.85 - 49 131.94 900 4 1 0.0868139 -0.321485 -84.45 - 49 125.078 898 4 0 0.081025 -0.32512 -85.85 - 49 145.56 899 3 1 -0.0703055 -0.400182 -114.45 - 49 158.246 898 3 0 -0.074995 -0.406675 -115.85 - 49 274.222 899 2 1 -0.153182 -0.519007 -144.45 - 49 215.91 897 2 0 -0.15734 -0.524306 -145.85 - 49 139.754 900 1 1 0.186036 -1.85435 -174.45 - 49 151.94 890 1 0 0.202959 -1.91728 -175.85 - 49 206.1 902 0 1 0.538021 -3.19623 -204.45 - 49 130.074 883 0 0 0.555952 -3.25568 -205.85 - 49 151.779 897 3 0 -0.0586863 -0.45 -116.217 -Number of digits in this event = 14 -proton -Event: 50 Number of tracker hits in this event = 0 Number of digits in this event = 1 proton -Event: 51 -Number of tracker hits in this event = 13 - 51 112.851 899 3 1 -0.115828 0.194048 -114.45 - 51 197.867 900 3 0 -0.11663 0.194176 -115.85 - 51 140.631 899 2 1 -0.142953 0.1747 -144.45 - 51 180.37 900 2 0 -0.144251 0.165262 -145.85 - 51 49.3971 912 0 0 -7.55232 2.57547 -206.25 - 51 67.3603 913 0 0 -7.57833 2.65 -206.19 - 51 51.0214 860 0 0 -10.6893 -7.98141 -206.25 - 51 207.719 859 0 0 -10.6775 -8.05006 -206.189 - 51 76.3917 901 3 0 -0.120046 0.250097 -116.069 - 51 114.98 1048 3 0 -8.14005 29.7614 -116.25 - 51 18.3405 1671 2 0 -141.148 154.386 -146.25 - 51 22.2639 1670 2 0 -141.103 154.35 -146.229 - 51 149.304 1434 2 0 -120.264 107.067 -146.25 -Number of digits in this event = 7 +Event: 12 +Number of tracker hits in this event = 12 + 12 135.205 899 5 1 -0.098268 0.0615854 -54.45 + 12 172.674 900 5 0 -0.10306 0.0670316 -55.85 + 12 164.641 899 4 1 -0.164327 0.16693 -84.45 + 12 178.292 900 4 0 -0.169305 0.169471 -85.85 + 12 341.078 898 3 1 -0.272536 0.223477 -114.45 + 12 169.761 900 3 0 -0.281037 0.222639 -115.85 + 12 118.874 897 2 1 -0.455561 0.190001 -144.45 + 12 175.923 900 2 0 -0.463856 0.185848 -145.85 + 12 147.325 897 1 1 -0.645943 0.116077 -174.45 + 12 142.381 900 1 0 -0.655792 0.106987 -175.85 + 12 133.482 895 0 1 -0.85413 -0.0593537 -204.45 + 12 136.385 899 0 0 -0.869082 -0.0672678 -205.85 +Number of digits in this event = 13 proton -Event: 52 -Number of tracker hits in this event = 8 - 52 164.375 899 4 1 -0.207775 0.104587 -84.45 - 52 122.605 900 4 0 -0.211846 0.108822 -85.85 - 52 205.479 898 3 1 -0.279074 0.192249 -114.45 - 52 121.46 900 3 0 -0.285027 0.194345 -115.85 - 52 127.291 898 2 1 -0.408862 0.231682 -144.45 - 52 137.678 900 2 0 -0.400764 0.233145 -145.85 - 52 105.426 899 1 1 -0.236927 0.255215 -174.45 - 52 168.944 901 1 0 -0.224564 0.253218 -175.85 -Number of digits in this event = 8 +Event: 13 +Number of tracker hits in this event = 12 + 13 149.236 896 5 1 -0.69597 0.868963 -54.45 + 13 200.53 904 5 0 -0.728017 0.904004 -55.85 + 13 135.863 893 4 1 -1.38351 1.62794 -84.45 + 13 114.838 908 4 0 -1.41266 1.66283 -85.85 + 13 114.05 890 3 1 -1.99376 2.38756 -114.45 + 13 116.794 911 3 0 -2.02468 2.41933 -115.85 + 13 112.715 887 2 1 -2.6364 3.06379 -144.45 + 13 179.179 915 2 0 -2.66728 3.09377 -145.85 + 13 130.277 883 1 1 -3.29323 3.70212 -174.45 + 13 171.533 918 1 0 -3.3301 3.72181 -175.85 + 13 166.302 879 0 1 -4.11303 4.09944 -204.45 + 13 146.8 920 0 0 -4.15284 4.11377 -205.85 +Number of digits in this event = 9 proton -Event: 53 -Number of tracker hits in this event = 4 - 53 126.176 899 1 1 -0.14944 -0.369448 -174.45 - 53 155.716 898 1 0 -0.161163 -0.372525 -175.85 - 53 112.793 898 0 1 -0.41127 -0.429272 -204.45 - 53 126.144 898 0 0 -0.422905 -0.430359 -205.85 -Number of digits in this event = 4 +Event: 14 +Number of tracker hits in this event = 12 + 14 112.667 899 5 1 -0.192101 -0.112715 -54.45 + 14 252.806 899 5 0 -0.208114 -0.115987 -55.85 + 14 126.223 897 4 1 -0.521925 -0.202941 -84.45 + 14 109.879 899 4 0 -0.540641 -0.210988 -85.85 + 14 204.905 895 3 1 -0.946379 -0.369663 -114.45 + 14 132.853 898 3 0 -0.965881 -0.375343 -115.85 + 14 136.835 893 2 1 -1.34564 -0.487042 -144.45 + 14 159.853 897 2 0 -1.36399 -0.487186 -145.85 + 14 149.389 891 1 1 -1.77497 -0.481182 -174.45 + 14 110.147 897 1 0 -1.79672 -0.476906 -175.85 + 14 150.933 888 0 1 -2.25 -0.355158 -204.45 + 14 126.591 898 0 0 -2.27516 -0.348781 -205.85 +Number of digits in this event = 10 proton -Event: 54 -Number of tracker hits in this event = 8 - 54 148.802 898 3 1 -0.251302 0.0873965 -114.45 - 54 147.384 900 3 0 -0.253419 0.0905767 -115.85 - 54 148.569 898 2 1 -0.307157 0.173191 -144.45 - 54 145.936 900 2 0 -0.309244 0.176338 -145.85 - 54 133.381 898 1 1 -0.350603 0.240218 -174.45 - 54 112.32 900 1 0 -0.355722 0.243335 -175.85 - 54 101.475 897 0 1 -0.451108 0.314961 -204.45 - 54 125.276 901 0 0 -0.456348 0.321003 -205.85 -Number of digits in this event = 7 +Event: 15 +Number of tracker hits in this event = 12 + 15 131.221 900 5 1 0.122039 0.126891 -54.45 + 15 123.539 900 5 0 0.127043 0.138224 -55.85 + 15 146.089 900 4 1 0.242683 0.356558 -84.45 + 15 190.806 901 4 0 0.245764 0.365929 -85.85 + 15 113.098 901 3 1 0.338554 0.563857 -114.45 + 15 143.207 902 3 0 0.342762 0.574688 -115.85 + 15 124.243 901 2 1 0.439569 0.793899 -144.45 + 15 167.634 903 2 0 0.444977 0.804394 -145.85 + 15 125.744 902 1 1 0.550241 1.02349 -174.45 + 15 149.901 904 1 0 0.546103 1.02965 -175.85 + 15 112.084 902 0 1 0.464797 1.15846 -204.45 + 15 138.832 905 0 0 0.465178 1.16583 -205.85 +Number of digits in this event = 13 proton -Event: 55 +Event: 16 Number of tracker hits in this event = 14 - 55 124.376 900 5 1 0.112161 -0.0908554 -54.45 - 55 153.097 899 5 0 0.121962 -0.0980593 -55.85 - 55 164.058 901 4 1 0.322177 -0.248649 -84.45 - 55 120.917 898 4 0 0.327962 -0.250616 -85.85 - 55 110.925 901 3 1 0.430787 -0.288725 -114.45 - 55 131.069 898 3 0 0.440243 -0.290028 -115.85 - 55 265.943 902 2 1 0.615117 -0.311732 -144.45 - 55 223.374 898 2 0 0.621462 -0.316422 -145.85 - 55 134.372 903 1 1 0.750697 -0.422334 -174.45 - 55 165.025 898 1 0 0.758672 -0.426677 -175.85 - 55 150.687 904 0 1 0.9145 -0.500438 -204.45 - 55 116.518 897 0 0 0.928061 -0.506114 -205.85 - 55 86.6768 901 2 0 0.05 0.401229 -146.104 - 55 291.693 1057 2 0 0.426594 31.6331 -146.25 + 16 126.431 899 5 1 -0.0890028 0.061906 -54.45 + 16 128.847 900 5 0 -0.097261 0.0651807 -55.85 + 16 137.742 898 4 1 -0.283016 0.137247 -84.45 + 16 154.723 900 4 0 -0.297624 0.137016 -85.85 + 16 121.963 897 3 1 -0.611603 0.132323 -114.45 + 16 114.983 900 3 0 -0.628345 0.129984 -115.85 + 16 135.809 895 2 1 -0.959886 0.0599178 -144.45 + 16 117.434 900 2 0 -0.96835 0.0550747 -145.85 + 16 123.34 899 1 0 -1.14673 -0.0545148 -175.85 + 16 152.732 893 0 1 -1.35068 -0.239011 -204.45 + 16 157.385 899 0 0 -1.35448 -0.241085 -205.85 + 16 24.7206 899 4 1 -0.249972 0.154034 -84.7785 + 16 128.4 904 4 0 -0.21649 0.938176 -85.85 + 16 71.1051 905 4 0 -0.223285 1.05002 -85.9536 +Number of digits in this event = 11 +proton +Event: 17 +Number of tracker hits in this event = 43 + 17 107.591 899 2 1 -0.0627292 -0.0672286 -144.45 + 17 140.026 899 2 0 -0.0612304 -0.0725818 -145.85 + 17 197.569 906 0 0 -14.6522 1.29536 -206.25 + 17 108.524 823 0 1 -15.3672 1.38334 -204.85 + 17 170.356 822 0 1 -15.45 1.39335 -204.688 + 17 202.441 917 1 0 -29.9016 3.45693 -176.25 + 17 21.405 747 1 1 -30.613 3.56358 -174.85 + 17 123.941 746 1 1 -30.65 3.56923 -174.777 + 17 20.8324 971 2 0 -49.3257 14.4278 -146.25 + 17 203.585 972 2 0 -49.3637 14.45 -146.192 + 17 168.161 648 2 1 -50.2512 14.9628 -144.85 + 17 46.7763 647 2 1 -50.45 15.0769 -144.55 + 17 189.6 1030 3 0 -68.2805 26.0838 -116.25 + 17 67.3634 554 3 1 -69.1704 26.6343 -114.85 + 17 134.958 553 3 1 -69.25 26.6836 -114.725 + 17 106.037 1091 4 0 -84.6448 38.3553 -86.25 + 17 76.3209 1092 4 0 -84.7692 38.45 -86.0192 + 17 53.0199 473 4 1 -85.3944 38.9412 -84.85 + 17 146.116 472 4 1 -85.45 38.9849 -84.746 + 17 192.984 1153 5 0 -101.676 50.6636 -56.25 + 17 85.9448 388 5 1 -102.484 51.2427 -54.85 + 17 152.823 387 5 1 -102.55 51.2902 -54.7356 + 17 218.613 1206 6 0 -116.894 61.2983 -26.25 + 17 257.747 312 6 1 -117.598 61.7921 -24.85 + 17 301.831 311 6 1 -117.75 61.8965 -24.5456 + 17 196.348 1252 7 0 -133.35 70.5511 3.75 + 17 61.2657 1253 7 0 -133.529 70.65 4.0738 + 17 54.5155 230 7 1 -134.107 70.977 5.15 + 17 141.416 229 7 1 -134.15 71.0017 5.23112 + 17 514.843 1291 8 0 -150.526 78.322 33.75 + 17 83.5843 144 8 1 -151.323 78.6762 35.15 + 17 740.475 143 8 1 -151.35 78.6879 35.1969 + 17 0.986914 142 8 1 -151.55 78.7756 35.5443 + 17 217.633 1326 9 0 -164.237 85.2971 63.75 + 17 101.458 76 9 1 -164.869 85.613 65.15 + 17 272.932 75 9 1 -164.95 85.6531 65.3298 + 17 282.458 1373 10 0 -177.056 94.8812 93.75 + 17 100.887 1374 10 0 -177.144 94.95 93.9581 + 17 175.925 12 10 1 -177.643 95.3577 95.15 + 17 343.423 11 10 1 -177.75 95.4458 95.4071 + 17 176.296 1292 8 0 -150.514 78.6488 34.15 + 17 11.7936 1293 8 0 -150.506 78.65 34.1388 + 17 32.5399 1647 13 1 149.672 166.904 185.407 +Number of digits in this event = 28 +proton +Event: 18 +Number of tracker hits in this event = 16 + 18 186.141 899 3 1 -0.184101 -0.128908 -114.45 + 18 116.661 899 3 0 -0.191436 -0.134856 -115.85 + 18 152.802 898 2 1 -0.351342 -0.240968 -144.45 + 18 157.644 899 2 0 -0.363134 -0.241976 -145.85 + 18 112.512 897 1 1 -0.601156 -0.268424 -174.45 + 18 160.641 898 1 0 -0.613618 -0.271763 -175.85 + 18 131.504 895 0 1 -0.867098 -0.331816 -204.45 + 18 111.802 898 0 0 -0.881259 -0.336518 -205.85 + 18 0.838984 953 3 0 76.6521 10.8467 -116.25 + 18 255.293 954 3 0 76.6528 10.85 -116.248 + 18 79.1169 955 3 0 76.6221 11.05 -116.15 + 18 50.9168 468 4 0 -18.0605 -86.355 -86.2499 + 18 86.5555 467 4 0 -18.03 -86.4501 -86.0984 + 18 192.404 812 4 1 -17.6226 -87.7538 -84.85 + 18 10.8994 1707 10 1 161.717 94.4792 95.353 + 18 284.214 1762 6 1 172.723 131.031 -24.4544 +Number of digits in this event = 11 +proton +Event: 19 +Number of tracker hits in this event = 11 + 19 113.903 900 5 0 0.0540597 0.0767433 -55.85 + 19 242.359 900 4 1 0.190347 0.293247 -84.45 + 19 129.851 901 4 0 0.201544 0.302231 -85.85 + 19 271.186 901 3 1 0.423653 0.490281 -114.45 + 19 139.579 902 3 0 0.433882 0.504697 -115.85 + 19 122.455 903 2 1 0.657078 0.819542 -144.45 + 19 129.866 903 2 0 0.66654 0.831088 -145.85 + 19 324.229 904 1 1 0.879829 1.05184 -174.45 + 19 122.836 905 1 0 0.892213 1.06261 -175.85 + 19 142.831 905 0 1 1.14545 1.28688 -204.45 + 19 165.071 906 0 0 1.15661 1.29708 -205.85 +Number of digits in this event = 11 +proton +Event: 20 +Number of tracker hits in this event = 13 + 20 238.262 899 5 1 -0.141949 0.0630426 -54.45 + 20 243.626 900 5 0 -0.152543 0.0631691 -55.85 + 20 148.481 898 4 1 -0.363854 0.068139 -84.45 + 20 232.818 900 4 0 -0.373079 0.0743872 -85.85 + 20 152.454 897 3 1 -0.575608 0.194826 -114.45 + 20 121.853 900 3 0 -0.579707 0.199428 -115.85 + 20 116.893 897 2 1 -0.642219 0.304501 -144.45 + 20 126.965 901 2 0 -0.644774 0.307331 -145.85 + 20 145.775 896 1 1 -0.698874 0.364876 -174.45 + 20 140.667 901 1 0 -0.701843 0.370119 -175.85 + 20 130.776 896 0 1 -0.761739 0.480216 -204.45 + 20 142.607 902 0 0 -0.763522 0.483949 -205.85 + 20 14.0137 899 5 0 -0.156278 -0.0500037 -56.0866 Number of digits in this event = 12 proton -Event: 56 +Event: 21 Number of tracker hits in this event = 8 - 56 104.894 899 4 1 -0.0984132 -0.0921633 -84.45 - 56 128.459 899 4 0 -0.107621 -0.0899523 -85.85 - 56 162.889 897 2 1 -0.472034 0.0731652 -144.45 - 56 143.409 900 2 0 -0.487639 0.0788562 -145.85 - 56 121.944 896 1 1 -0.80435 0.195076 -174.45 - 56 179.139 900 1 0 -0.823426 0.203159 -175.85 - 56 153.31 894 0 1 -1.20526 0.356776 -204.45 - 56 324.008 901 0 0 -1.22365 0.363861 -205.85 + 21 116.817 900 3 1 0.124694 0.592541 -114.45 + 21 213.026 902 3 0 0.135386 0.596249 -115.85 + 21 123.653 901 2 1 0.361431 0.64636 -144.45 + 21 169.674 902 2 0 0.369799 0.639543 -145.85 + 21 131.784 902 1 1 0.570025 0.57113 -174.45 + 21 300.376 902 1 0 0.580628 0.566842 -175.85 + 21 183.713 903 0 1 0.826517 0.474455 -204.45 + 21 139.683 902 0 0 0.835009 0.468999 -205.85 Number of digits in this event = 8 proton +Event: 22 +Number of tracker hits in this event = 13 + 22 155.821 900 5 1 0.0654532 0.0757461 -54.45 + 22 134.627 900 5 0 0.0655706 0.080715 -55.85 + 22 135.114 900 4 1 0.0830608 0.188679 -84.45 + 22 133.44 900 4 0 0.0859342 0.199702 -85.85 + 22 140.745 900 3 1 0.129553 0.411324 -114.45 + 22 188.395 901 3 0 0.125698 0.423705 -115.85 + 22 121.664 900 2 1 0.0550358 0.667263 -144.45 + 22 122.448 903 2 0 0.05279 0.677022 -145.85 + 22 120.986 899 0 1 -0.130493 1.05452 -204.45 + 22 185.467 905 0 0 -0.132243 1.05977 -205.85 + 22 123.858 906 5 0 12.9421 1.32967 -56.25 + 22 92.3326 905 5 0 13.0632 1.25 -56.0505 + 22 290.631 965 5 1 13.1957 0.497122 -54.8499 +Number of digits in this event = 13 +proton +Event: 23 +Number of tracker hits in this event = 13 + 23 162.051 900 3 1 0.159765 0.192875 -114.45 + 23 121.786 900 3 0 0.159643 0.201437 -115.85 + 23 302.564 900 2 1 0.149508 0.360144 -144.45 + 23 129.626 901 2 0 0.152132 0.370231 -145.85 + 23 148.526 900 1 1 0.208844 0.578345 -174.45 + 23 138.02 902 1 0 0.21062 0.5903 -175.85 + 23 160.302 900 0 1 0.244041 0.832017 -204.45 + 23 23.8889 903 0 0 0.247692 0.849639 -205.85 + 23 298.678 904 0 0 0.247763 0.85 -205.879 + 23 89.8209 900 4 0 0.123127 0.05 -85.9447 + 23 39.9052 899 6 0 -0.05 -0.056955 -26.1321 + 23 29.5358 929 7 0 8.83564 6.0172 3.75 + 23 219.835 930 7 0 8.83618 6.05 3.80071 +Number of digits in this event = 10 +proton +Event: 24 +Number of tracker hits in this event = 10 + 24 108.426 900 4 1 0.13487 -0.17331 -84.45 + 24 181.216 899 4 0 0.13769 -0.174244 -85.85 + 24 187.198 900 3 1 0.22572 -0.195634 -114.45 + 24 143.905 899 3 0 0.230762 -0.190931 -115.85 + 24 134.997 901 2 1 0.338559 -0.112865 -144.45 + 24 126.165 899 2 0 0.348562 -0.109092 -145.85 + 24 123.954 904 0 1 0.927964 -0.0687167 -204.45 + 24 126.892 899 0 0 0.949396 -0.0784819 -205.85 + 24 90.3127 898 4 0 -0.05 -0.3104 -86.1851 + 24 84.7398 897 4 0 -0.139481 -0.450005 -86.217 +Number of digits in this event = 8 +proton +Event: 25 +Number of tracker hits in this event = 42 + 25 128.604 900 5 1 0.0820737 -0.066045 -54.45 + 25 120.616 899 5 0 0.0857455 -0.0718629 -55.85 + 25 253.311 900 4 1 0.156444 -0.214726 -84.45 + 25 128.758 899 4 0 0.15999 -0.221835 -85.85 + 25 45.5248 900 3 1 0.249325 -0.371996 -114.45 + 25 340.558 901 3 1 0.25 -0.371784 -114.598 + 25 136.418 898 3 0 0.255152 -0.370899 -115.85 + 25 588.476 901 2 1 0.37606 -0.359011 -144.45 + 25 117.42 898 2 0 0.377658 -0.36213 -145.85 + 25 119.625 901 1 1 0.425995 -0.427869 -174.45 + 25 140.449 898 1 0 0.428835 -0.42444 -175.85 + 25 115.004 902 0 1 0.509463 -0.335734 -204.45 + 25 125.204 898 0 0 0.515244 -0.326373 -205.85 + 25 60.7211 773 1 1 -25.25 -169.6 -174.776 + 25 82.6799 774 1 1 -25.25 -169.945 -174.725 + 25 77.904 775 1 1 -25.05 -170.154 -174.744 + 25 84.1882 53 1 0 -23.473 -169.546 -175.85 + 25 117.168 789 1 1 -22.2442 -169.223 -174.85 + 25 131.868 790 1 1 -22.05 -169.286 -174.729 + 25 156.225 62 1 0 -22.1341 -167.629 -175.85 + 25 154.073 1203 0 0 22.0403 60.7627 -206.25 + 25 471.26 1204 0 0 22.0813 60.85 -206.198 + 25 453.938 1205 0 0 22.1739 61.05 -206.078 + 25 399.553 1206 0 0 22.2674 61.25 -205.96 + 25 650.256 1015 0 1 23.12 63.1359 -204.85 + 25 865.298 1016 0 1 23.25 63.4208 -204.682 + 25 15.1999 1453 1 0 45.2793 110.939 -176.25 + 25 461.345 1454 1 0 45.2843 110.95 -176.244 + 25 470.327 1455 1 0 45.3766 111.15 -176.124 + 25 416.649 1456 1 0 45.4676 111.35 -176.005 + 25 123.294 1457 1 0 45.5608 111.55 -175.884 + 25 449.529 1131 1 1 46.3496 113.273 -174.85 + 25 1117.63 1132 1 1 46.45 113.492 -174.718 + 25 2.99397 1133 1 1 46.65 113.923 -174.452 + 25 111.974 1717 2 0 72.9698 163.703 -146.25 + 25 488.427 1718 2 0 72.9949 163.75 -146.223 + 25 501.5 1719 2 0 73.1007 163.95 -146.11 + 25 480.647 1720 2 0 73.2061 164.15 -145.998 + 25 136.799 1721 2 0 73.3115 164.35 -145.885 + 25 534.236 1271 2 1 74.3338 166.214 -144.85 + 25 1154.01 1272 2 1 74.45 166.426 -144.732 + 25 376.73 1273 2 1 74.65 166.793 -144.529 +Number of digits in this event = 33 +proton +Event: 26 +Number of tracker hits in this event = 13 + 26 168.621 900 5 1 0.0969323 -0.119981 -54.45 + 26 174.048 899 5 0 0.102221 -0.130429 -55.85 + 26 175.05 900 4 1 0.220736 -0.347704 -84.45 + 26 120.889 898 4 0 0.225955 -0.363928 -85.85 + 26 127.382 901 3 1 0.334857 -0.680821 -114.45 + 26 126.036 896 3 0 0.339025 -0.697013 -115.85 + 26 141.977 901 2 1 0.424431 -1.02637 -144.45 + 26 129.815 895 2 0 0.427445 -1.04283 -145.85 + 26 147.914 902 1 1 0.496866 -1.39386 -174.45 + 26 126.984 893 1 0 0.499423 -1.41138 -175.85 + 26 174.394 902 0 1 0.568577 -1.76978 -204.45 + 26 109.461 891 0 0 0.572335 -1.78413 -205.85 + 26 224.869 901 4 1 0.25 -0.376771 -84.68 +Number of digits in this event = 13 +proton +Event: 27 +Number of tracker hits in this event = 11 + 27 118.233 900 5 1 0.101844 -0.106586 -54.45 + 27 136.659 899 5 0 0.112273 -0.103684 -55.85 + 27 111.816 902 3 1 0.502611 0.139568 -114.45 + 27 165.382 900 3 0 0.511738 0.152455 -115.85 + 27 186.51 903 2 1 0.705072 0.411185 -144.45 + 27 127.836 901 2 0 0.717005 0.424575 -145.85 + 27 160.231 904 1 1 0.980064 0.660463 -174.45 + 27 134.266 903 1 0 0.990116 0.661151 -175.85 + 27 161.127 906 0 1 1.26647 0.621662 -204.45 + 27 118.775 902 0 0 1.27962 0.625478 -205.85 + 27 158.159 1241 8 0 -21.1917 68.4397 33.9031 +Number of digits in this event = 10 +proton +Event: 28 +Number of tracker hits in this event = 10 + 28 135.405 899 4 1 -0.0816656 -0.130527 -84.45 + 28 146.411 899 4 0 -0.0824636 -0.135916 -85.85 + 28 126.021 899 3 1 -0.0780269 -0.240619 -114.45 + 28 123.631 899 3 0 -0.0839905 -0.236865 -115.85 + 28 163.074 899 2 1 -0.19619 -0.149286 -144.45 + 28 140.393 899 2 0 -0.197895 -0.149376 -145.85 + 28 125.77 899 1 1 -0.229076 -0.16296 -174.45 + 28 157.787 899 1 0 -0.23261 -0.156246 -175.85 + 28 86.2883 487 4 1 -82.65 150.253 -84.7963 + 28 50.5358 1532 0 0 -88.5216 126.627 -206.084 +Number of digits in this event = 11 +proton +Event: 29 +Number of tracker hits in this event = 11 + 29 130.084 899 4 1 -0.228906 -0.214687 -84.45 + 29 172.136 899 4 0 -0.240018 -0.229868 -85.85 + 29 161.023 897 3 1 -0.459237 -0.529477 -114.45 + 29 153.689 897 3 0 -0.469469 -0.540034 -115.85 + 29 153.478 896 2 1 -0.68249 -0.760049 -144.45 + 29 128.22 896 2 0 -0.690264 -0.770886 -145.85 + 29 111.217 895 1 1 -0.863784 -1.00427 -174.45 + 29 132.604 895 1 0 -0.871079 -1.01538 -175.85 + 29 154.8 895 0 1 -1.03298 -1.22468 -204.45 + 29 125.483 894 0 0 -1.04684 -1.23398 -205.85 + 29 108.652 898 4 0 -0.139109 -0.250016 -86.0688 +Number of digits in this event = 10 +proton +Event: 30 +Number of tracker hits in this event = 3 + 30 122.485 900 3 1 0.132822 0.0508651 -114.45 + 30 240.157 1165 8 0 -92.154 53.1742 33.9323 + 30 71.3458 1366 4 1 93.5116 -30.617 -84.6446 +Number of digits in this event = 5 +proton +Event: 31 +Number of tracker hits in this event = 13 + 31 162.916 899 4 1 -0.203082 0.0812335 -84.45 + 31 123.585 900 4 0 -0.211598 0.0847456 -85.85 + 31 145.779 898 3 1 -0.391526 0.179677 -114.45 + 31 138.278 900 3 0 -0.402698 0.187195 -115.85 + 31 117.741 897 2 1 -0.616004 0.328217 -144.45 + 31 133.366 901 2 0 -0.628605 0.333061 -145.85 + 31 148.163 895 1 1 -0.895039 0.423512 -174.45 + 31 141.768 901 1 0 -0.915822 0.435837 -175.85 + 31 202.408 893 0 1 -1.3592 0.72947 -204.45 + 31 113.135 903 0 0 -1.37278 0.740183 -205.85 + 31 176.817 892 0 1 -1.45 0.694069 -204.601 + 31 8.78752 895 0 0 -1.30698 -1.01377 -205.85 + 31 193.11 891 0 1 -1.65002 -9.94955 -204.83 +Number of digits in this event = 11 +proton +Event: 32 +Number of tracker hits in this event = 8 + 32 134.72 899 3 1 -0.0572333 -0.0598094 -114.45 + 32 139.273 899 3 0 -0.0613131 -0.0628008 -115.85 + 32 113.442 899 2 1 -0.155157 -0.106284 -144.45 + 32 174.131 899 2 0 -0.162781 -0.106303 -145.85 + 32 171.368 898 1 1 -0.303268 -0.10518 -174.45 + 32 145.746 899 1 0 -0.306732 -0.105403 -175.85 + 32 153.229 898 0 1 -0.386625 -0.0943158 -204.45 + 32 113.6 899 0 0 -0.390343 -0.0961295 -205.85 +Number of digits in this event = 7 +proton +Event: 33 +Number of tracker hits in this event = 8 + 33 141.181 900 3 1 0.108736 -0.446155 -114.45 + 33 130.268 897 3 0 0.116132 -0.457494 -115.85 + 33 192.677 901 2 1 0.256701 -0.666731 -144.45 + 33 112.469 896 2 0 0.270841 -0.676912 -145.85 + 33 126.554 902 1 1 0.558821 -0.880972 -174.45 + 33 164.807 895 1 0 0.573113 -0.892679 -175.85 + 33 107.247 904 0 1 0.863523 -1.11969 -204.45 + 33 197.495 894 0 0 0.8771 -1.12205 -205.85 +Number of digits in this event = 7 +proton +Event: 34 +Number of tracker hits in this event = 21 + 34 142.635 900 4 1 0.12989 0.211023 -84.45 + 34 218.256 900 4 0 0.137448 0.223205 -85.85 + 34 112.677 900 3 1 0.247904 0.46411 -114.45 + 34 184.237 902 3 0 0.245851 0.476989 -115.85 + 34 206.018 900 2 1 0.204826 0.708711 -144.45 + 34 187.565 903 2 0 0.202351 0.716857 -145.85 + 34 103.265 900 1 1 0.152363 0.881895 -174.45 + 34 142.49 904 1 0 0.150707 0.890844 -175.85 + 34 127.08 900 0 1 0.129417 1.07784 -204.45 + 34 162.871 905 0 0 0.127897 1.08543 -205.85 + 34 117.211 901 2 1 0.25 0.495519 -144.686 + 34 24.6918 955 2 0 4.51558 11.1935 -145.85 + 34 67.2312 956 2 0 4.54367 11.25 -145.852 + 34 137.287 957 2 0 4.64014 11.45 -145.887 + 34 75.3871 958 2 0 4.87657 11.65 -146.013 + 34 80.9768 959 2 0 4.91196 11.85 -145.996 + 34 224.894 919 2 1 4.0397 12.0209 -144.85 + 34 111.843 920 2 1 4.05 11.6046 -144.818 + 34 280.23 921 2 1 4.25006 11.4942 -144.63 + 34 37.1416 922 2 1 4.45002 11.3222 -144.484 + 34 86.4722 690 0 1 -41.85 8.51058 -204.562 +Number of digits in this event = 12 +proton +Event: 35 +Number of tracker hits in this event = 10 + 35 213.075 900 3 1 0.105804 -0.377618 -114.45 + 35 134.775 898 3 0 0.114226 -0.386635 -115.85 + 35 182.373 901 2 1 0.28024 -0.557021 -144.45 + 35 123.378 897 2 0 0.293113 -0.565459 -145.85 + 35 127.837 902 1 1 0.558187 -0.745526 -174.45 + 35 131.271 896 1 0 0.568594 -0.75778 -175.85 + 35 92.1298 903 0 1 0.775122 -1.00836 -204.45 + 35 129.07 895 0 0 0.783898 -1.01818 -205.85 + 35 86.5289 900 5 1 0.05 -0.0968179 -54.4875 + 35 79.5122 901 5 1 0.283351 0.05 -54.6792 +Number of digits in this event = 9 +proton +Event: 36 +Number of tracker hits in this event = 9 + 36 122.768 900 2 1 0.150566 0.0880423 -144.45 + 36 119.667 900 2 0 0.157706 0.0924736 -145.85 + 36 130.829 901 1 1 0.278789 0.181129 -174.45 + 36 139.133 900 1 0 0.286934 0.188727 -175.85 + 36 119.452 902 0 1 0.473707 0.351316 -204.45 + 36 199.88 901 0 0 0.481455 0.35772 -205.85 + 36 84.4549 1025 0 0 12.9217 25.1334 -206.25 + 36 119.921 1026 0 0 13.0473 25.2501 -206.074 + 36 133.707 967 0 1 13.545 25.6744 -204.85 +Number of digits in this event = 6 +proton +Event: 37 +Number of tracker hits in this event = 14 + 37 141.926 899 4 1 -0.0517687 0.0544626 -84.45 + 37 163.888 900 4 0 -0.0513105 0.0532738 -85.85 + 37 113.758 901 1 1 0.257802 -0.067116 -174.45 + 37 211.672 899 1 0 0.258674 -0.0666755 -175.85 + 37 17.2421 1039 10 0 91.3061 27.9004 93.75 + 37 211.478 1038 10 0 91.3244 27.8499 93.7994 + 37 105.395 1037 10 0 91.6814 27.65 94.0317 + 37 220.046 1362 10 1 92.6926 27.5896 95.15 + 37 138.979 1363 10 1 92.75 27.6013 95.2125 + 37 46.2598 1034 10 0 92.1174 26.9122 94.15 + 37 105.499 1033 10 0 92.0931 26.85 94.0022 + 37 108.787 1032 10 0 92.0531 26.65 93.8358 + 37 133.113 758 10 0 117.66 -28.2992 93.7501 + 37 69.0368 757 10 0 117.988 -28.45 93.7917 +Number of digits in this event = 9 +proton +Event: 38 +Number of tracker hits in this event = 10 + 38 132.415 900 4 1 0.174948 0.360207 -84.45 + 38 196.521 901 4 0 0.181761 0.367843 -85.85 + 38 123.605 901 3 1 0.311777 0.526458 -114.45 + 38 203.464 902 3 0 0.321253 0.532777 -115.85 + 38 119.563 902 2 1 0.502352 0.667325 -144.45 + 38 131.352 903 2 0 0.513189 0.669769 -145.85 + 38 168.385 903 1 1 0.737563 0.708983 -174.45 + 38 142.525 903 1 0 0.746267 0.708085 -175.85 + 38 130.021 904 0 1 0.934955 0.686197 -204.45 + 38 139.546 903 0 0 0.94115 0.68609 -205.85 +Number of digits in this event = 10 +proton +Event: 39 +Number of tracker hits in this event = 11 + 39 385.577 899 4 1 -0.0924658 -0.0537649 -84.45 + 39 119.62 899 4 0 -0.0988947 -0.0552209 -85.85 + 39 131.383 899 3 1 -0.217208 -0.0814439 -114.45 + 39 156.845 899 3 0 -0.215121 -0.0901692 -115.85 + 39 128.099 899 2 1 -0.1982 -0.267728 -144.45 + 39 211.866 898 2 0 -0.203367 -0.279362 -145.85 + 39 189.409 898 1 1 -0.299189 -0.519134 -174.45 + 39 107.075 897 1 0 -0.303965 -0.527962 -175.85 + 39 119.552 898 0 1 -0.391527 -0.708258 -204.45 + 39 320.423 896 0 0 -0.392761 -0.717657 -205.85 + 39 134.004 895 0 0 -0.414358 -0.85 -206.201 +Number of digits in this event = 9 +proton +Event: 40 +Number of tracker hits in this event = 8 + 40 155.001 899 3 1 -0.168678 -0.166512 -114.45 + 40 289.46 899 3 0 -0.167664 -0.169164 -115.85 + 40 126.827 899 2 1 -0.133492 -0.200571 -144.45 + 40 109.655 899 2 0 -0.132584 -0.200116 -145.85 + 40 126.001 899 1 1 -0.120268 -0.190366 -174.45 + 40 139.997 899 1 0 -0.1161 -0.188706 -175.85 + 40 22.3669 898 3 0 -0.204322 -0.25 -116.134 + 40 227.231 900 6 1 0.05 -0.12688 -24.6421 +Number of digits in this event = 7 +proton +Event: 41 +Number of tracker hits in this event = 10 + 41 194.533 899 4 1 -0.0644914 0.181697 -84.45 + 41 120.601 900 4 0 -0.0657832 0.184107 -85.85 + 41 114.247 899 3 1 -0.0666862 0.226507 -114.45 + 41 134.034 900 3 0 -0.0699093 0.230467 -115.85 + 41 125.194 899 2 1 -0.134047 0.3086 -144.45 + 41 105.502 901 2 0 -0.134554 0.313043 -145.85 + 41 128.841 899 1 1 -0.138432 0.385641 -174.45 + 41 163.745 901 1 0 -0.139962 0.39276 -175.85 + 41 404.682 899 0 1 -0.177532 0.553625 -204.45 + 41 248.23 902 0 0 -0.180365 0.559446 -205.85 +Number of digits in this event = 9 +proton +Event: 42 +Number of tracker hits in this event = 12 + 42 111.678 900 4 1 0.0505272 -0.18232 -84.45 + 42 157.093 899 4 0 0.0568814 -0.187843 -85.85 + 42 161.591 900 3 1 0.203477 -0.287846 -114.45 + 42 130.114 898 3 0 0.209212 -0.292227 -115.85 + 42 155.889 901 2 1 0.323515 -0.375471 -144.45 + 42 111.31 898 2 0 0.329996 -0.379596 -145.85 + 42 98.2698 901 1 1 0.449105 -0.450402 -174.45 + 42 164.838 902 1 1 0.45 -0.450856 -174.625 + 42 157.839 897 1 0 0.455499 -0.453331 -175.85 + 42 124.538 902 0 1 0.596209 -0.520854 -204.45 + 42 120.972 897 0 0 0.60257 -0.527488 -205.85 + 42 118.784 900 5 1 0.05 -0.0922385 -54.6156 +Number of digits in this event = 9 +proton +Event: 43 +Number of tracker hits in this event = 4 + 43 114.837 900 5 1 0.0618572 0.0567675 -54.45 + 43 129.646 900 5 0 0.0604007 0.059285 -55.85 + 43 129.875 900 0 1 0.083426 -0.449119 -204.45 + 43 162.304 897 0 0 0.0828274 -0.451167 -205.85 +Number of digits in this event = 4 +proton +Event: 44 +Number of tracker hits in this event = 14 + 44 141.325 900 4 1 0.0949311 0.156037 -84.45 + 44 156.524 900 4 0 0.0947005 0.167432 -85.85 + 44 130.505 900 3 1 0.109285 0.392181 -114.45 + 44 323.318 901 3 0 0.113366 0.404196 -115.85 + 44 159.513 900 2 1 0.201806 0.667345 -144.45 + 44 159.84 903 2 0 0.200984 0.68611 -145.85 + 44 144.562 900 1 1 0.196952 1.05252 -174.45 + 44 169.554 905 1 0 0.190966 1.07214 -175.85 + 44 149.178 900 0 1 0.0896957 1.45491 -204.45 + 44 211.477 907 0 0 0.0899012 1.47248 -205.85 + 44 316.342 906 0 0 0.137511 1.44995 -205.923 + 44 74.3658 901 4 0 0.083796 0.250031 -85.9383 + 44 82.9879 894 4 1 -1.16883 0.0919218 -84.85 + 44 33.2135 902 4 0 -1.5828 0.522803 -85.85 +Number of digits in this event = 12 +proton +Event: 45 +Number of tracker hits in this event = 10 + 45 141.88 901 4 1 0.271058 -0.0917542 -84.45 + 45 145.45 899 4 0 0.276836 -0.0964318 -85.85 + 45 142.683 901 3 1 0.393939 -0.158921 -114.45 + 45 170.362 899 3 0 0.398179 -0.162464 -115.85 + 45 246.161 902 2 1 0.471513 -0.242703 -144.45 + 45 148.588 899 2 0 0.480806 -0.246031 -145.85 + 45 140.644 903 1 1 0.687295 -0.326187 -174.45 + 45 163.227 898 1 0 0.700817 -0.328537 -175.85 + 45 182.262 904 0 1 0.971478 -0.368896 -204.45 + 45 169.525 898 0 0 0.980167 -0.368357 -205.85 +Number of digits in this event = 11 +proton +Event: 46 +Number of tracker hits in this event = 6 + 46 157.437 900 3 1 0.0677656 -0.0661578 -114.45 + 46 145.749 899 3 0 0.0683033 -0.0677799 -115.85 + 46 147.929 900 2 1 0.0898632 -0.118991 -144.45 + 46 136.482 899 2 0 0.0897158 -0.121363 -145.85 + 46 139.038 900 1 1 0.0935706 -0.166842 -174.45 + 46 170.175 899 1 0 0.0886794 -0.17701 -175.85 +Number of digits in this event = 8 +proton +Event: 47 +Number of tracker hits in this event = 17 + 47 233.687 900 5 1 0.0934315 0.0608081 -54.45 + 47 164.52 900 5 0 0.0952801 0.0681841 -55.85 + 47 130.248 900 4 1 0.142602 0.224007 -84.45 + 47 129.467 900 4 0 0.142328 0.236269 -85.85 + 47 120.017 900 3 1 0.132912 0.473055 -114.45 + 47 121.483 902 3 0 0.14622 0.477377 -115.85 + 47 249.91 901 2 1 0.40734 0.583653 -144.45 + 47 123.2 902 2 0 0.420387 0.587179 -145.85 + 47 144.182 903 1 1 0.710479 0.660946 -174.45 + 47 138.444 903 1 0 0.720839 0.664305 -175.85 + 47 117.472 904 0 1 0.932174 0.733382 -204.45 + 47 171.446 903 0 0 0.939659 0.738241 -205.85 + 47 23.3134 896 0 0 25.451 -0.836347 -206.25 + 47 129.657 895 0 0 25.5112 -0.850035 -206.215 + 47 80.4381 894 0 0 25.7955 -1.05 -205.994 + 47 149.237 1026 0 1 25.3423 -1.09877 -204.85 + 47 465.641 1025 0 1 25.25 -1.1195 -204.742 +Number of digits in this event = 15 +proton +Event: 48 +Number of tracker hits in this event = 15 + 48 114.047 900 3 1 0.10868 0.597853 -114.45 + 48 131.841 902 3 0 0.111649 0.60893 -115.85 + 48 138.305 900 2 1 0.19276 0.806582 -144.45 + 48 234.444 903 2 0 0.20245 0.815025 -145.85 + 48 179.224 901 1 1 0.392273 0.973138 -174.45 + 48 142.903 904 1 0 0.394709 0.981563 -175.85 + 48 142.659 901 0 1 0.438799 1.13854 -204.45 + 48 132.963 905 0 0 0.440586 1.14706 -205.85 + 48 19.1968 907 1 0 3.46097 1.49425 -175.85 + 48 39.0091 927 1 1 5.60317 1.44622 -174.85 + 48 32.9835 928 1 1 5.65 1.40446 -174.844 + 48 8.0951 900 1 0 7.07226 0.155082 -175.85 + 48 32.537 945 1 1 9.0838 -2.0907 -174.85 + 48 53.587 891 1 0 11.8493 -1.83979 -175.85 + 48 108.962 902 1 1 0.45 1.01984 -174.775 +Number of digits in this event = 8 +proton +Event: 49 +Number of tracker hits in this event = 10 + 49 123.151 899 4 1 -0.0854122 0.0549316 -84.45 + 49 134.973 900 4 0 -0.0874065 0.0658758 -85.85 + 49 160.454 899 3 1 -0.132989 0.292458 -114.45 + 49 145.193 901 3 0 -0.138342 0.305918 -115.85 + 49 219.305 898 2 1 -0.257671 0.588281 -144.45 + 49 113.115 902 2 0 -0.260033 0.603437 -145.85 + 49 177.929 898 1 1 -0.304182 0.915122 -174.45 + 49 110.051 904 1 0 -0.308866 0.930889 -175.85 + 49 125.133 898 0 1 -0.401538 1.25914 -204.45 + 49 115.542 906 0 0 -0.407439 1.27198 -205.85 +Number of digits in this event = 8 +proton +Event: 50 +Number of tracker hits in this event = 11 + 50 118.297 899 3 1 -0.0661972 -0.186748 -114.45 + 50 282.213 899 3 0 -0.0677017 -0.192251 -115.85 + 50 123.278 899 2 1 -0.107397 -0.296221 -144.45 + 50 235.507 898 2 0 -0.110233 -0.301765 -145.85 + 50 220.713 899 1 1 -0.160843 -0.405616 -174.45 + 50 273.014 898 1 0 -0.159059 -0.407881 -175.85 + 50 134.403 899 0 1 -0.132953 -0.486636 -204.45 + 50 167.686 897 0 0 -0.130851 -0.484906 -205.85 + 50 187.965 898 0 0 -0.22184 -0.45 -205.908 + 50 34.5456 899 2 0 -0.124037 -0.25 -145.902 + 50 186.493 897 4 0 -0.188295 -0.459316 -85.85 +Number of digits in this event = 10 +proton +Event: 51 +Number of tracker hits in this event = 12 + 51 163.342 900 5 1 0.050429 0.142027 -54.45 + 51 125.249 900 5 0 0.0566186 0.152247 -55.85 + 51 158.538 900 4 1 0.208681 0.334709 -84.45 + 51 166.431 901 4 0 0.21389 0.339041 -85.85 + 51 127.955 901 3 1 0.330627 0.418072 -114.45 + 51 131.716 901 3 0 0.336612 0.418596 -115.85 + 51 115.71 902 2 1 0.453702 0.419652 -144.45 + 51 133.57 901 2 0 0.45847 0.423536 -145.85 + 51 118.321 902 1 1 0.559433 0.501692 -174.45 + 51 131.07 902 1 0 0.564346 0.50695 -175.85 + 51 135.83 902 0 1 0.64663 0.628016 -204.45 + 51 162.019 902 0 0 0.645326 0.635143 -205.85 +Number of digits in this event = 11 +proton +Event: 52 +Number of tracker hits in this event = 14 + 52 99.7313 899 5 1 -0.0681073 0.137349 -54.45 + 52 137.029 900 5 0 -0.0751775 0.146595 -55.85 + 52 158.948 899 4 1 -0.223525 0.332328 -84.45 + 52 122.776 901 4 0 -0.229677 0.341953 -85.85 + 52 176.25 898 3 1 -0.35215 0.52297 -114.45 + 52 170.096 902 3 0 -0.360217 0.538864 -115.85 + 52 248.693 897 2 1 -0.492874 0.868269 -144.45 + 52 150.627 904 2 0 -0.494823 0.888565 -145.85 + 52 149.982 897 1 1 -0.557328 1.31421 -174.45 + 52 209.167 906 1 0 -0.559938 1.33323 -175.85 + 52 123.379 897 0 1 -0.610949 1.74675 -204.45 + 52 115.878 908 0 0 -0.61003 1.7641 -205.85 + 52 245.726 1068 3 0 -2.63247 33.8124 -116.25 + 52 249.587 1069 3 0 -2.63404 33.85 -116.2 +Number of digits in this event = 15 +proton +Event: 53 +Number of tracker hits in this event = 23 + 53 290.963 900 5 0 -0.0517033 0.118618 -55.85 + 53 204.828 898 4 1 -0.25297 0.208134 -84.45 + 53 251.731 900 4 0 -0.262818 0.216082 -85.85 + 53 137.911 897 3 1 -0.475702 0.374368 -114.45 + 53 119.394 901 3 0 -0.488714 0.380152 -115.85 + 53 124.685 896 2 1 -0.768832 0.515291 -144.45 + 53 138.048 902 2 0 -0.778555 0.521671 -145.85 + 53 137.782 895 1 1 -0.979027 0.664971 -174.45 + 53 104.257 903 1 0 -0.995384 0.66595 -175.85 + 53 467.737 893 0 1 -1.33703 0.6757 -204.45 + 53 242.533 903 0 0 -1.3568 0.677287 -205.85 + 53 306.896 892 0 1 -1.45008 0.724567 -204.681 + 53 238.873 901 4 0 -0.124413 0.41671 -85.8501 + 53 205.571 889 4 1 -2.07997 -0.465297 -84.85 + 53 194.01 900 5 1 0.05 -0.410065 -54.7333 + 53 25.0313 469 5 0 22.922 -86.1465 -56.25 + 53 62.1887 468 5 0 22.9438 -86.25 -56.2181 + 53 75.551 467 5 0 22.9517 -86.45 -56.1358 + 53 80.2826 466 5 0 23.0205 -86.6501 -56.0351 + 53 106.245 1015 5 1 23.1233 -87.2345 -54.85 + 53 120.161 1016 5 1 23.25 -87.4677 -54.6669 + 53 172.161 1017 5 1 23.45 -87.7979 -54.5798 + 53 187.766 1018 5 1 23.65 -88.2146 -54.4728 +Number of digits in this event = 17 +proton +Event: 54 +Number of tracker hits in this event = 11 + 54 195.858 900 4 1 0.179252 0.265774 -84.45 + 54 134.344 901 4 0 0.189073 0.275757 -85.85 + 54 123.286 901 3 1 0.381399 0.49326 -114.45 + 54 104.119 902 3 0 0.391358 0.508887 -115.85 + 54 159.532 902 2 1 0.578536 0.811365 -144.45 + 54 136.303 903 2 0 0.58637 0.822545 -145.85 + 54 353.453 903 1 1 0.727028 1.07387 -174.45 + 54 113.928 905 1 0 0.740576 1.08399 -175.85 + 54 190.331 904 0 1 1.01911 1.28393 -204.45 + 54 150.714 906 0 0 1.0355 1.29608 -205.85 + 54 115.057 902 1 1 0.65 1.20892 -174.71 +Number of digits in this event = 9 +proton +Event: 55 +Number of tracker hits in this event = 13 + 55 164.819 899 5 1 -0.14154 0.0562139 -54.45 + 55 157.78 900 5 0 -0.144702 0.0617833 -55.85 + 55 115.506 899 4 1 -0.216884 0.175239 -84.45 + 55 137.721 900 4 0 -0.223874 0.177757 -85.85 + 55 148.882 898 3 1 -0.366138 0.231837 -114.45 + 55 117.583 900 3 0 -0.375493 0.233566 -115.85 + 55 184.606 897 2 1 -0.578862 0.258581 -144.45 + 55 117.062 901 2 0 -0.590785 0.262327 -145.85 + 55 65.2126 896 1 1 -0.84878 0.330808 -174.45 + 55 84.9606 895 1 1 -0.85 0.330809 -174.615 + 55 115.946 901 1 0 -0.858791 0.3304 -175.85 + 55 119.72 894 0 1 -1.06336 0.313222 -204.45 + 55 123.134 901 0 0 -1.07526 0.309568 -205.85 +Number of digits in this event = 7 +proton +Event: 56 +Number of tracker hits in this event = 17 + 56 139.557 899 5 1 -0.0652662 -0.147111 -54.45 + 56 129.933 899 5 0 -0.0689912 -0.161517 -55.85 + 56 177.868 899 4 1 -0.161978 -0.437112 -84.45 + 56 132.948 897 4 0 -0.169539 -0.451712 -85.85 + 56 219.266 898 3 1 -0.345012 -0.746804 -114.45 + 56 245.639 896 3 0 -0.349584 -0.757356 -115.85 + 56 268.315 898 2 1 -0.434892 -0.957837 -144.45 + 56 218.453 895 2 0 -0.443562 -0.961264 -145.85 + 56 126.718 897 1 1 -0.611326 -1.02239 -174.45 + 56 261.913 895 1 0 -0.619103 -1.02929 -175.85 + 56 156.526 896 0 1 -0.784169 -1.18792 -204.45 + 56 158.505 894 0 0 -0.794633 -1.1966 -205.85 + 56 4.93942 897 2 1 -0.45 -0.921657 -144.832 + 56 63.4913 894 2 0 -1.12199 -1.08101 -145.85 + 56 268.413 881 2 0 3.96986 -3.71717 -146.25 + 56 284.6 880 2 0 4.04829 -3.85006 -145.992 + 56 116.22 897 3 0 -0.26575 -0.609589 -115.85 +Number of digits in this event = 15 +proton Event: 57 Number of tracker hits in this event = 8 - 57 129.534 899 2 1 -0.101111 -0.148972 -144.45 - 57 359.679 899 2 0 -0.0987731 -0.156212 -145.85 - 57 171.964 900 0 1 0.0761819 -0.445809 -204.45 - 57 152.002 898 0 0 0.0827909 -0.448456 -205.85 - 57 11.1036 900 5 1 0.05 0.0516067 -54.4804 - 57 49.5453 901 5 1 0.296354 -0.0500623 -54.7271 - 57 89.4566 902 5 1 0.45 -0.0858074 -54.6732 - 57 63.8152 903 5 1 0.65 -0.0999259 -54.5365 -Number of digits in this event = 5 + 57 184.678 899 4 1 -0.13641 -0.0767023 -84.45 + 57 159.066 899 4 0 -0.138114 -0.0739732 -85.85 + 57 138.702 899 2 1 -0.101774 -0.0646177 -144.45 + 57 139.608 899 2 0 -0.0915775 -0.0662993 -145.85 + 57 161.572 900 1 1 0.131944 -0.105886 -174.45 + 57 137.355 899 1 0 0.14058 -0.110391 -175.85 + 57 125.172 901 0 1 0.326411 -0.203715 -204.45 + 57 212.275 899 0 0 0.338684 -0.216347 -205.85 +Number of digits in this event = 9 proton Event: 58 -Number of tracker hits in this event = 8 - 58 144.912 899 4 1 -0.23367 0.0716316 -84.45 - 58 152.947 900 4 0 -0.236576 0.070205 -85.85 - 58 116.658 898 3 1 -0.285775 0.0560796 -114.45 - 58 120.132 900 3 0 -0.293169 0.0540831 -115.85 - 58 157.891 897 1 1 -0.53061 0.31016 -174.45 - 58 143.476 901 1 0 -0.535195 0.338469 -175.85 - 58 205.904 897 0 1 -0.61662 0.907692 -204.45 - 58 132.412 904 0 0 -0.620032 0.936635 -205.85 -Number of digits in this event = 8 +Number of tracker hits in this event = 12 + 58 143.875 900 5 1 0.0982751 -0.101121 -54.45 + 58 133.942 899 5 0 0.104674 -0.105836 -55.85 + 58 268.275 900 4 1 0.238624 -0.206457 -84.45 + 58 115.039 899 4 0 0.243494 -0.214748 -85.85 + 58 125.78 901 3 1 0.336638 -0.392874 -114.45 + 58 146.434 898 3 0 0.340413 -0.396214 -115.85 + 58 109.618 901 2 1 0.4195 -0.456212 -144.45 + 58 127.18 897 2 0 0.419709 -0.461725 -145.85 + 58 150.578 901 1 1 0.430183 -0.565918 -174.45 + 58 223.953 897 1 0 0.434145 -0.570631 -175.85 + 58 135.661 902 0 1 0.521212 -0.67467 -204.45 + 58 236.625 896 0 0 0.534312 -0.681052 -205.85 +Number of digits in this event = 11 proton Event: 59 -Number of tracker hits in this event = 6 - 59 132.346 900 2 1 0.215241 0.362115 -144.45 - 59 124.111 901 2 0 0.227612 0.37268 -145.85 - 59 144.742 902 1 1 0.482644 0.582169 -174.45 - 59 122.544 902 1 0 0.498586 0.587788 -175.85 - 59 173.142 903 0 1 0.822958 0.701711 -204.45 - 59 136.118 903 0 0 0.833407 0.706933 -205.85 -Number of digits in this event = 7 +Number of tracker hits in this event = 14 + 59 162.361 900 5 1 0.175748 -0.0876672 -54.45 + 59 169.046 899 5 0 0.190889 -0.0953951 -55.85 + 59 136.644 902 4 1 0.503206 -0.226976 -84.45 + 59 143.05 899 4 0 0.516494 -0.23017 -85.85 + 59 135.649 903 3 1 0.79433 -0.304605 -114.45 + 59 121.516 898 3 0 0.805937 -0.312789 -115.85 + 59 140.376 904 2 1 1.04505 -0.48476 -144.45 + 59 117.108 897 2 0 1.05385 -0.495169 -145.85 + 59 153.682 905 1 1 1.2303 -0.716782 -174.45 + 59 133.185 896 1 0 1.24097 -0.722502 -175.85 + 59 118.225 907 0 1 1.47373 -0.831806 -204.45 + 59 172.398 896 0 0 1.48886 -0.835219 -205.85 + 59 91.4569 905 2 1 1.05005 -0.572893 -144.466 + 59 300.83 906 2 1 1.25007 -0.671896 -144.518 +Number of digits in this event = 12 proton Event: 60 Number of tracker hits in this event = 10 - 60 123.304 901 2 1 0.287479 0.171506 -144.45 - 60 148.681 900 2 0 0.29661 0.18238 -145.85 - 60 144.779 902 1 1 0.47986 0.386894 -174.45 - 60 132.682 901 1 0 0.490097 0.400682 -175.85 - 60 125.121 903 0 1 0.704536 0.695899 -204.45 - 60 140.025 903 0 0 0.714509 0.710471 -205.85 - 60 108.96 72 6 1 -165.55 74.7448 -24.7655 - 60 178.527 71 6 1 -165.75 74.9278 -24.7417 - 60 13.9368 668 1 0 2.99865 -46.2507 -176.25 - 60 343.625 669 1 0 3.01256 -46.25 -176.23 -Number of digits in this event = 12 + 60 133.897 900 4 1 0.248466 -0.0715352 -84.45 + 60 175.729 899 4 0 0.253019 -0.0781775 -85.85 + 60 108.822 901 3 1 0.351184 -0.216331 -114.45 + 60 120.635 899 3 0 0.355193 -0.217653 -115.85 + 60 174.609 901 2 1 0.442388 -0.228121 -144.45 + 60 153.814 899 2 0 0.448933 -0.23261 -145.85 + 60 223.382 902 1 1 0.580154 -0.265533 -174.45 + 60 118.133 898 1 0 0.581106 -0.265141 -175.85 + 60 129.221 902 0 1 0.619061 -0.277706 -204.45 + 60 214.253 898 0 0 0.617466 -0.281189 -205.85 +Number of digits in this event = 9 proton Event: 61 Number of tracker hits in this event = 10 - 61 155.199 899 4 1 -0.114901 0.087623 -84.45 - 61 121.224 900 4 0 -0.123577 0.0945417 -85.85 - 61 141.21 898 3 1 -0.32476 0.260195 -114.45 - 61 167.147 901 3 0 -0.335526 0.268273 -115.85 - 61 131.109 897 2 1 -0.555103 0.418283 -144.45 - 61 124.252 901 2 0 -0.565999 0.425596 -145.85 - 61 201.092 896 1 1 -0.786565 0.572795 -174.45 - 61 153.113 902 1 0 -0.799396 0.579741 -175.85 - 61 115.438 894 0 1 -1.06835 0.712288 -204.45 - 61 105.775 903 0 0 -1.08129 0.718468 -205.85 + 61 168.741 900 4 1 0.127022 0.213657 -84.45 + 61 122.54 900 4 0 0.130558 0.221763 -85.85 + 61 173.027 900 3 1 0.176229 0.390589 -114.45 + 61 157.715 901 3 0 0.180743 0.399865 -115.85 + 61 112.992 901 2 1 0.292498 0.589238 -144.45 + 61 133.824 902 2 0 0.297309 0.603412 -145.85 + 61 224.144 901 1 1 0.391755 0.894021 -174.45 + 61 144.262 904 1 0 0.39838 0.908042 -175.85 + 61 172.145 902 0 1 0.526921 1.2001 -204.45 + 61 120.011 905 0 0 0.533774 1.21416 -205.85 Number of digits in this event = 10 proton Event: 62 -Number of tracker hits in this event = 9 - 62 161.645 898 3 1 -0.303359 -0.115478 -114.45 - 62 111.934 899 3 0 -0.302809 -0.125966 -115.85 - 62 134.527 898 2 1 -0.277066 -0.341551 -144.45 - 62 107.804 898 2 0 -0.279272 -0.352738 -145.85 - 62 135.595 898 1 1 -0.319901 -0.580447 -174.45 - 62 145.372 897 1 0 -0.320286 -0.588026 -175.85 - 62 157.493 898 0 1 -0.311732 -0.723935 -204.45 - 62 137.043 896 0 0 -0.329259 -0.683762 -205.85 - 62 179.854 899 2 1 -0.25 -0.381437 -144.595 -Number of digits in this event = 8 +Number of tracker hits in this event = 4 + 62 123.166 899 1 1 -0.169577 -1.04808 -174.45 + 62 107.946 894 1 0 -0.180714 -1.05535 -175.85 + 62 121.231 898 0 1 -0.398647 -1.20795 -204.45 + 62 147.089 894 0 0 -0.407283 -1.21108 -205.85 +Number of digits in this event = 4 proton Event: 63 -Number of tracker hits in this event = 10 - 63 113.864 898 4 1 -0.370796 0.0865098 -84.45 - 63 130.01 900 4 0 -0.386374 0.0794798 -85.85 - 63 212.789 896 3 1 -0.697812 -0.0553938 -114.45 - 63 124.511 899 3 0 -0.712417 -0.0596028 -115.85 - 63 165.676 895 2 1 -1.01394 -0.150622 -144.45 - 63 132.156 899 2 0 -1.02076 -0.153586 -145.85 - 63 125.07 894 1 1 -1.15071 -0.202247 -174.45 - 63 132.745 899 1 0 -1.16077 -0.199941 -175.85 - 63 149.49 893 0 1 -1.37241 -0.126215 -204.45 - 63 134.605 899 0 0 -1.38307 -0.119495 -205.85 -Number of digits in this event = 10 +Number of tracker hits in this event = 11 + 63 100.807 900 4 1 0.17285 0.0833038 -84.45 + 63 175.059 900 4 0 0.175498 0.0868756 -85.85 + 63 127.332 900 3 1 0.237929 0.150574 -114.45 + 63 161.02 900 3 0 0.237646 0.152221 -115.85 + 63 47.5822 900 2 1 0.249198 0.156165 -144.45 + 63 82.1722 901 2 1 0.25 0.156537 -144.622 + 63 237.503 900 2 0 0.256091 0.159902 -145.85 + 63 125.332 901 1 1 0.390026 0.25726 -174.45 + 63 182.103 901 1 0 0.400763 0.264467 -175.85 + 63 134.483 902 0 1 0.634815 0.438098 -204.45 + 63 178.267 901 0 0 0.638112 0.443391 -205.85 +Number of digits in this event = 9 proton Event: 64 -Number of tracker hits in this event = 8 - 64 127.112 900 3 1 0.165246 0.107115 -114.45 - 64 123.82 900 3 0 0.171329 0.111714 -115.85 - 64 108.201 901 2 1 0.310638 0.209019 -144.45 - 64 134.157 900 2 0 0.323075 0.230769 -145.85 - 64 137.237 902 1 1 0.585198 0.661455 -174.45 - 64 161.843 903 1 0 0.604128 0.685964 -175.85 - 64 124.921 904 0 1 0.998306 1.17422 -204.45 - 64 283.25 905 0 0 1.0137 1.19857 -205.85 -Number of digits in this event = 8 +Number of tracker hits in this event = 20 + 64 161.082 899 5 0 -0.155663 -0.0510023 -55.85 + 64 140.466 899 4 1 -0.241358 -0.0832223 -84.45 + 64 161.588 899 4 0 -0.247964 -0.0813583 -85.85 + 64 136.741 898 3 1 -0.356494 -0.0744547 -114.45 + 64 109.046 899 3 0 -0.36173 -0.073885 -115.85 + 64 3.19563 898 2 1 -0.449964 -0.0731277 -144.45 + 64 121.628 897 2 1 -0.45 -0.0731729 -144.468 + 64 161.363 899 2 0 -0.452108 -0.0768992 -145.85 + 64 105.499 897 1 1 -0.484343 -0.152236 -174.45 + 64 122.624 899 1 0 -0.487428 -0.156905 -175.85 + 64 120.191 897 0 1 -0.524228 -0.277242 -204.45 + 64 185.302 898 0 0 -0.529871 -0.280166 -205.85 + 64 33.4167 900 6 1 0.05 -0.180658 -24.7965 + 64 10.9544 894 6 0 0.436243 -1.23699 -25.8501 + 64 112.207 893 6 0 0.44417 -1.25 -25.8691 + 64 90.2875 892 6 0 0.429634 -1.45 -26.0123 + 64 223.427 902 6 1 0.538448 -1.59614 -24.85 + 64 120.035 553 4 1 -69.25 95.4788 -84.667 + 64 109.26 552 4 1 -69.45 95.6092 -84.5732 + 64 232.118 551 4 1 -69.65 95.7556 -84.5434 +Number of digits in this event = 13 proton Event: 65 Number of tracker hits in this event = 10 - 65 124.806 899 5 1 -0.0707346 0.0881488 -54.45 - 65 140.016 900 5 0 -0.075903 0.0842993 -55.85 - 65 126.863 898 3 1 -0.252932 -0.0982405 -114.45 - 65 149.959 899 3 0 -0.250536 -0.10031 -115.85 - 65 172.559 899 2 1 -0.201349 -0.134686 -144.45 - 65 165.522 899 2 0 -0.201187 -0.136157 -145.85 - 65 131.709 899 1 1 -0.220606 -0.171685 -174.45 - 65 163.131 899 1 0 -0.219818 -0.175474 -175.85 - 65 166.002 899 0 1 -0.182796 -0.254238 -204.45 - 65 134.653 898 0 0 -0.18086 -0.257213 -205.85 -Number of digits in this event = 11 + 65 135.023 899 4 1 -0.0680183 0.11645 -84.45 + 65 129.13 900 4 0 -0.0717763 0.12056 -85.85 + 65 174.094 899 3 1 -0.19076 0.240823 -114.45 + 65 166.131 900 3 0 -0.193407 0.246285 -115.85 + 65 111.361 898 2 1 -0.253198 0.367707 -144.45 + 65 114.5 901 2 0 -0.252969 0.375958 -145.85 + 65 133.671 899 1 1 -0.241757 0.543479 -174.45 + 65 154.529 902 1 0 -0.23651 0.549123 -175.85 + 65 192.955 899 0 1 -0.137435 0.652545 -204.45 + 65 133.145 903 0 0 -0.137656 0.660168 -205.85 +Number of digits in this event = 9 proton Event: 66 Number of tracker hits in this event = 13 - 66 201.976 900 4 1 0.10541 -0.12303 -84.45 - 66 127.892 899 4 0 0.116714 -0.123175 -85.85 - 66 147.682 901 3 1 0.338175 -0.120595 -114.45 - 66 139.613 899 3 0 0.34873 -0.118276 -115.85 - 66 130.319 902 2 1 0.558115 -0.0659278 -144.45 - 66 124.006 899 2 0 0.558661 -0.0751542 -145.85 - 66 110.343 902 1 1 0.533754 -0.351688 -174.45 - 66 116.196 898 1 0 0.539591 -0.36656 -175.85 - 66 122.446 903 0 1 0.657507 -0.662697 -204.45 - 66 135.362 896 0 0 0.663035 -0.677931 -205.85 - 66 64.5239 901 4 1 0.250064 -0.0626175 -84.7448 - 66 50.8084 897 4 0 0.172288 -0.613957 -85.85 - 66 145.838 896 4 0 0.198097 -0.650043 -85.9244 -Number of digits in this event = 10 + 66 133.207 900 4 1 0.113325 0.103666 -84.45 + 66 154.015 900 4 0 0.104982 0.113719 -85.85 + 66 132.738 899 3 1 -0.0721391 0.306355 -114.45 + 66 142.832 901 3 0 -0.0751818 0.32023 -115.85 + 66 105.925 899 2 1 -0.135722 0.597155 -144.45 + 66 167.594 902 2 0 -0.139338 0.607919 -145.85 + 66 120.432 899 1 1 -0.227049 0.815147 -174.45 + 66 165.089 903 1 0 -0.234044 0.830281 -175.85 + 66 119.978 898 0 1 -0.369788 1.1371 -204.45 + 66 130.082 905 0 0 -0.379876 1.15341 -205.85 + 66 138.644 827 3 1 -14.45 74.914 -114.503 + 66 217.671 1269 3 0 -13.7026 74.036 -115.85 + 66 107.144 1487 4 0 -31.8445 117.627 -86.1215 +Number of digits in this event = 13 proton Event: 67 -Number of tracker hits in this event = 10 - 67 167.136 900 4 1 0.118701 0.16373 -84.45 - 67 157.125 900 4 0 0.125343 0.173025 -85.85 - 67 103.071 901 3 1 0.264484 0.372298 -114.45 - 67 186.917 901 3 0 0.27932 0.383248 -115.85 - 67 167.544 902 2 1 0.597998 0.610457 -144.45 - 67 135.904 902 2 0 0.621779 0.616153 -145.85 - 67 112.689 905 1 1 1.09959 0.708738 -174.45 - 67 199.51 903 1 0 1.12186 0.716003 -175.85 - 67 117.543 907 0 1 1.58464 0.865796 -204.45 - 67 154.558 904 0 0 1.6109 0.872681 -205.85 -Number of digits in this event = 8 +Number of tracker hits in this event = 24 + 67 202.21 899 5 1 -0.0657777 -0.18321 -54.45 + 67 124.17 899 5 0 -0.065271 -0.19156 -55.85 + 67 259.754 898 4 0 -0.0542696 -0.350433 -85.85 + 67 124.782 898 3 1 -0.277882 -0.551116 -114.45 + 67 144.09 897 3 0 -0.287707 -0.564838 -115.85 + 67 145.102 897 2 1 -0.482863 -0.862928 -144.45 + 67 122.814 895 2 0 -0.49176 -0.879772 -145.85 + 67 126.278 896 1 1 -0.676712 -1.24053 -174.45 + 67 123.343 893 1 0 -0.685223 -1.25859 -175.85 + 67 117.928 895 0 1 -0.881913 -1.62557 -204.45 + 67 172.816 892 0 0 -0.890109 -1.6423 -205.85 + 67 307.565 896 0 1 -0.820598 -1.62048 -204.45 + 67 34.6807 897 0 1 -0.649936 -1.50012 -204.742 + 67 71.5615 891 0 0 -0.183763 -1.70998 -205.85 + 67 51.775 890 0 0 -0.141912 -1.85008 -206.04 + 67 290.31 839 0 0 33.5493 -12.0696 -206.25 + 67 47.7265 840 0 0 33.6214 -12.05 -205.909 + 67 4.32554 1079 0 1 35.9055 -15.598 -204.85 + 67 3.50808 807 0 0 38.9816 -18.6457 -205.85 + 67 9.26402 806 0 0 38.9853 -18.65 -205.852 + 67 102.188 1102 0 1 40.5228 -20.8186 -204.85 + 67 97.0036 762 0 0 42.3856 -27.5318 -205.85 + 67 92.7768 897 4 0 -0.109735 -0.450029 -86.0779 + 67 230.663 900 6 1 0.0669315 -0.0500573 -24.6909 +Number of digits in this event = 14 proton Event: 68 -Number of tracker hits in this event = 13 - 68 129.404 900 4 1 0.0730225 0.113495 -84.45 - 68 127.184 900 4 0 0.0711218 0.120721 -85.85 - 68 113.474 899 2 1 -0.0852786 0.413867 -144.45 - 68 117.023 901 2 0 -0.0904252 0.42502 -145.85 - 68 163.737 899 1 1 -0.155668 0.680814 -174.45 - 68 112.694 903 1 0 -0.16274 0.696764 -175.85 - 68 151.078 898 0 1 -0.322115 1.02617 -204.45 - 68 50.3882 904 0 0 -0.328651 1.04664 -205.85 - 68 49.3017 905 0 0 -0.329708 1.05 -206.079 - 68 62.4848 899 5 0 0.0975823 -0.0500862 -56.1003 - 68 94.7002 898 5 0 0.127141 -0.250079 -56.0943 - 68 157.663 897 5 0 0.194983 -0.450069 -56.0487 - 68 160.342 896 5 0 0.203831 -0.65 -55.9947 +Number of tracker hits in this event = 8 + 68 127.588 900 3 1 0.0837111 -0.103143 -114.45 + 68 116.288 899 3 0 0.0825749 -0.112465 -115.85 + 68 133.521 900 2 1 0.0693279 -0.30913 -144.45 + 68 129.247 898 2 0 0.0699806 -0.315877 -145.85 + 68 111.9 900 1 1 0.0805434 -0.441337 -174.45 + 68 122.541 897 1 0 0.0811686 -0.450766 -175.85 + 68 127.663 900 0 1 0.0853741 -0.622699 -204.45 + 68 121.218 897 0 0 0.0885982 -0.633739 -205.85 Number of digits in this event = 7 proton Event: 69 -Number of tracker hits in this event = 12 - 69 171.65 899 5 1 -0.067773 -0.203775 -54.45 - 69 131.805 899 5 0 -0.070807 -0.209185 -55.85 - 69 171.209 899 4 1 -0.146862 -0.349071 -84.45 - 69 117.859 898 4 0 -0.150196 -0.357865 -85.85 - 69 147.207 899 3 1 -0.242706 -0.511927 -114.45 - 69 158.401 897 3 0 -0.246329 -0.516997 -115.85 - 69 145.693 898 2 1 -0.335322 -0.637053 -144.45 - 69 138.092 897 2 0 -0.341532 -0.640637 -145.85 - 69 190.934 897 1 1 -0.464345 -0.711493 -174.45 - 69 152.856 896 1 0 -0.472919 -0.718587 -175.85 - 69 173.04 896 0 1 -0.663857 -0.867198 -204.45 - 69 140.823 895 0 0 -0.671404 -0.874678 -205.85 -Number of digits in this event = 13 -proton -Event: 70 -Number of tracker hits in this event = 8 - 70 132.353 900 5 1 0.0659558 0.0671657 -54.45 - 70 173.651 900 5 0 0.0646754 0.0678065 -55.85 - 70 114.131 902 1 1 0.471226 0.0859891 -174.45 - 70 243.248 900 1 0 0.479392 0.08675 -175.85 - 70 131.852 902 0 1 0.627832 0.0899795 -204.45 - 70 319.632 900 0 0 0.630123 0.0856709 -205.85 - 70 132.254 900 3 0 0.203991 0.05 -115.975 - 70 14.6198 890 0 0 72.6974 -1.8768 -205.937 +Number of tracker hits in this event = 15 + 69 152.501 900 2 1 0.139613 -0.0797651 -144.45 + 69 149.372 899 2 0 0.140137 -0.0800662 -145.85 + 69 167.103 900 1 1 0.128611 -0.0977051 -174.45 + 69 149.534 899 1 0 0.129063 -0.0979295 -175.85 + 69 162.516 900 0 1 0.160997 -0.0919693 -204.45 + 69 120.514 899 0 0 0.159107 -0.0905438 -205.85 + 69 100.018 899 4 1 -0.0562965 0.05 -84.6781 + 69 59.4598 898 4 1 -0.25 0.0987611 -84.7955 + 69 125.565 897 4 1 -0.45 0.145848 -84.8081 + 69 248.7 904 4 0 -2.91014 0.92139 -85.85 + 69 23.8215 905 4 0 -3.17633 1.05 -85.9798 + 69 7.57256 903 4 0 -3.53721 0.85 -86.2158 + 69 51.3795 900 5 1 0.0998336 0.05 -54.7763 + 69 8.90072 916 5 0 -0.985274 3.2512 -55.85 + 69 122.02 886 5 1 -2.76708 5.49676 -54.85 Number of digits in this event = 10 proton +Event: 70 +Number of tracker hits in this event = 13 + 70 192.039 899 5 1 -0.10992 0.0646463 -54.45 + 70 135.421 900 5 0 -0.116821 0.0687889 -55.85 + 70 421.062 898 4 1 -0.271264 0.1534 -84.45 + 70 132.359 900 4 0 -0.285229 0.165734 -85.85 + 70 133.534 897 3 1 -0.583338 0.458822 -114.45 + 70 244.884 902 3 0 -0.598139 0.472844 -115.85 + 70 161.798 895 2 1 -0.913129 0.757608 -144.45 + 70 133.012 903 2 0 -0.930174 0.770949 -145.85 + 70 132.997 893 1 1 -1.26508 1.02383 -174.45 + 70 183.889 904 1 0 -1.27305 1.03828 -175.85 + 70 137.652 893 0 1 -1.42831 1.33105 -204.45 + 70 112.53 906 0 0 -1.42902 1.34407 -205.85 + 70 65.8108 899 4 1 -0.25 0.227521 -84.83 +Number of digits in this event = 12 +proton Event: 71 -Number of tracker hits in this event = 11 - 71 124.118 900 4 1 0.118241 0.11188 -84.45 - 71 139.277 900 4 0 0.119235 0.111113 -85.85 - 71 117.938 900 3 1 0.142299 0.102797 -114.45 - 71 134.601 900 3 0 0.140801 0.104306 -115.85 - 71 148.177 900 2 1 0.101086 0.135996 -144.45 - 71 137.073 900 2 0 0.0999677 0.134434 -145.85 - 71 114.633 900 1 1 0.0617891 0.11991 -174.45 - 71 154.608 900 1 0 0.0608347 0.118899 -175.85 - 71 146.565 900 0 0 -0.05 0.112911 -206.108 - 71 77.0406 951 0 0 2.03252 10.3617 -206.25 - 71 18.4833 961 0 0 -5.01989 12.2925 -206.25 -Number of digits in this event = 8 +Number of tracker hits in this event = 14 + 71 133.204 899 4 1 -0.0772141 -0.184507 -84.45 + 71 136.108 899 4 0 -0.0739345 -0.194682 -85.85 + 71 113.565 900 2 1 0.104078 -0.661842 -144.45 + 71 110.883 896 2 0 0.110855 -0.679929 -145.85 + 71 106.766 901 1 1 0.262372 -1.05738 -174.45 + 71 108.481 894 1 0 0.263549 -1.07544 -175.85 + 71 110.948 901 0 1 0.286149 -1.42788 -204.45 + 71 55.4371 893 0 0 0.286162 -1.44742 -205.85 + 71 77.089 892 0 0 0.286167 -1.45 -206.033 + 71 106.611 445 3 1 -91.0217 5.89294 -114.45 + 71 16.9445 446 3 1 -90.95 5.79252 -114.8 + 71 34.5644 922 3 0 -90.2319 4.54928 -115.85 + 71 93.8474 921 3 0 -90.05 4.33281 -115.916 + 71 124.583 1685 11 1 157.187 92.8091 125.255 +Number of digits in this event = 6 proton Event: 72 -Number of tracker hits in this event = 9 - 72 124.875 898 4 1 -0.401448 -0.132051 -84.45 - 72 147.287 899 4 0 -0.413789 -0.132526 -85.85 - 72 310.782 897 3 1 -0.644619 -0.128484 -114.45 - 72 125.989 899 3 0 -0.650825 -0.130711 -115.85 - 72 116.456 896 2 1 -0.771521 -0.197572 -144.45 - 72 155.349 899 2 0 -0.778129 -0.197675 -145.85 - 72 110.782 895 1 1 -0.878289 -0.192916 -174.45 - 72 105.583 899 1 0 -0.885808 -0.185932 -175.85 - 72 21.1938 896 3 1 -0.65 -0.137349 -114.768 -Number of digits in this event = 6 +Number of tracker hits in this event = 70 + 72 162.928 900 4 1 0.164667 -0.091486 -84.45 + 72 131.495 899 4 0 0.172183 -0.0831682 -85.85 + 72 138.253 901 3 1 0.318719 0.105725 -114.45 + 72 134.861 900 3 0 0.310476 0.127475 -115.85 + 72 130.881 900 2 1 0.140709 0.578734 -144.45 + 72 127.513 902 2 0 0.134987 0.602685 -145.85 + 72 149.76 898 0 1 -0.251287 1.94783 -204.45 + 72 155.381 909 0 0 -0.265581 1.98979 -205.85 + 72 270.786 738 0 0 58.9238 -32.3624 -206.25 + 72 227.754 1196 0 1 59.3038 -32.532 -204.85 + 72 6.80264 719 1 0 65.8656 -36.2484 -176.25 + 72 220.365 718 1 0 65.8685 -36.25 -176.237 + 72 274.029 1230 1 1 66.1869 -36.4197 -174.85 + 72 75.2177 1231 1 1 66.25 -36.4525 -174.574 + 72 406.902 703 2 0 75.3946 -39.3182 -146.25 + 72 56.2936 1278 2 1 75.8222 -39.4437 -144.85 + 72 207.744 1279 2 1 75.85 -39.4516 -144.756 + 72 264.467 701 3 0 82.7374 -39.6875 -116.25 + 72 377.123 1315 3 1 83.0697 -39.7302 -114.85 + 72 287.354 701 4 0 89.9104 -39.7107 -86.25 + 72 258.676 1350 4 1 90.2097 -39.7291 -84.85 + 72 446.184 705 5 0 92.2643 -38.9319 -56.25 + 72 464.706 1361 5 1 92.3809 -38.9635 -54.85 + 72 350.486 693 6 0 94.7488 -41.4145 -26.25 + 72 299.895 1373 6 1 94.8967 -41.4869 -24.85 + 72 281.79 672 7 0 99.1016 -45.5965 3.75 + 72 29.6784 671 7 0 99.1557 -45.65 4.11525 + 72 365.296 1395 7 1 99.3045 -45.8215 5.15 + 72 73.6148 1396 7 1 99.35 -45.8738 5.46675 + 72 506.883 651 8 0 101.25 -49.7666 33.75 + 72 407.068 1406 8 1 101.355 -49.9675 35.15 + 72 602.195 633 9 0 103.49 -53.2991 63.75 + 72 447.483 1417 9 1 103.613 -53.4934 65.15 + 72 101.192 701 10 0 105.018 -39.6875 93.75 + 72 564.266 702 10 0 105.021 -39.65 93.8255 + 72 737.652 1424 10 1 105.061 -38.9959 95.15 + 72 1596.6 742 11 0 113.87 -31.5426 123.75 + 72 809.575 1470 11 1 114.295 -31.4476 125.15 + 72 1491.81 1471 11 1 114.35 -31.4527 125.291 + 72 84.339 581 12 0 118.277 -63.6516 153.75 + 72 76.0952 580 12 0 118.304 -63.85 153.926 + 72 52.6991 579 12 0 118.343 -64.05 154.117 + 72 178.582 1492 12 1 118.565 -65.0746 155.15 + 72 7.46567 409 13 0 126.817 -98.3301 183.75 + 72 67.5518 408 13 0 126.821 -98.35 183.767 + 72 84.6007 407 13 0 126.869 -98.55 183.944 + 72 13.771 406 13 0 126.921 -98.75 184.12 + 72 169.626 1535 13 1 127.206 -99.8769 185.15 + 72 3.8126 225 14 0 157.517 -135.139 213.75 + 72 80.0004 224 14 0 157.527 -135.15 213.759 + 72 73.8001 223 14 0 157.693 -135.35 213.91 + 72 61.0792 222 14 0 157.84 -135.55 214.039 + 72 2.02665 1696 14 1 159.542 -137.584 215.15 + 72 113.339 1697 14 1 159.55 -137.593 215.155 + 72 100.316 1698 14 1 159.75 -137.8 215.286 + 72 63.63 1699 14 1 159.95 -137.992 215.432 + 72 40.1345 813 2 0 9.85566 -17.3111 -145.944 + 72 92.2714 658 0 0 23.3736 -48.3019 -206.181 + 72 149.047 1085 0 0 28.7248 37.1929 -206.25 + 72 69.7457 1084 0 0 28.6825 37.05 -206.038 + 72 139.578 1043 0 1 28.7176 36.1722 -204.85 + 72 93.955 1044 0 1 28.8609 35.7994 -204.45 + 72 115.51 1045 0 1 29.05 35.5466 -204.602 + 72 179.389 1046 0 1 29.2501 35.2223 -204.719 + 72 75.7502 1047 0 1 29.4501 35.0101 -204.763 + 72 8.54866 1048 0 1 29.6501 34.9379 -204.83 + 72 119.508 1069 0 0 31.7572 33.9012 -205.85 + 72 218.023 1068 0 0 31.9458 33.85 -205.956 + 72 102.674 1063 0 1 32.6956 33.5774 -204.85 + 72 410.992 1062 0 1 32.6499 33.5284 -204.786 +Number of digits in this event = 44 proton Event: 73 Number of tracker hits in this event = 10 - 73 135.461 900 4 1 0.222767 0.119054 -84.45 - 73 120.252 900 4 0 0.223767 0.128843 -85.85 - 73 149.323 900 3 1 0.215849 0.332824 -114.45 - 73 145.032 901 3 0 0.215819 0.340823 -115.85 - 73 114.316 900 2 1 0.212726 0.521055 -144.45 - 73 124.896 902 2 0 0.212826 0.530267 -145.85 - 73 104.41 900 1 1 0.18852 0.711845 -174.45 - 73 142.801 903 1 0 0.186923 0.724209 -175.85 - 73 124.153 900 0 1 0.139468 0.963535 -204.45 - 73 138.307 904 0 0 0.137403 0.97855 -205.85 -Number of digits in this event = 9 -proton -Event: 74 -Number of tracker hits in this event = 12 - 74 119.215 900 5 1 0.081849 -0.0848139 -54.45 - 74 124.523 899 5 0 0.0868884 -0.0877172 -55.85 - 74 143.634 900 4 1 0.18699 -0.122559 -84.45 - 74 132.272 899 4 0 0.188447 -0.129479 -85.85 - 74 139.699 900 3 1 0.200471 -0.256178 -114.45 - 74 175.189 898 3 0 0.203826 -0.262918 -115.85 - 74 130.448 901 2 1 0.269539 -0.400457 -144.45 - 74 133.122 898 2 0 0.273081 -0.402285 -145.85 - 74 128.625 901 1 1 0.339545 -0.436353 -174.45 - 74 252.973 898 1 0 0.342927 -0.438519 -175.85 - 74 206.635 901 0 1 0.403513 -0.508447 -204.45 - 74 115.297 897 0 0 0.404844 -0.512437 -205.85 -Number of digits in this event = 11 -proton -Event: 75 -Number of tracker hits in this event = 13 - 75 109.78 901 5 1 0.327203 0.104782 -54.45 - 75 164.561 900 5 0 0.344234 0.114041 -55.85 - 75 159.258 903 4 1 0.70012 0.293311 -84.45 - 75 186.555 901 4 0 0.714792 0.306039 -85.85 - 75 126.792 904 3 1 1.02019 0.579824 -114.45 - 75 142.263 902 3 0 1.04182 0.592262 -115.85 - 75 158.82 907 2 1 1.48498 0.843738 -144.45 - 75 253.73 904 2 0 1.50847 0.859461 -145.85 - 75 183.022 909 1 1 1.98398 1.17604 -174.45 - 75 130.275 905 1 0 2.00561 1.18692 -175.85 - 75 38.3476 911 0 1 2.44728 1.41818 -204.45 - 75 59.1922 912 0 1 2.45 1.41951 -204.623 - 75 130.489 906 0 0 2.46876 1.42878 -205.85 -Number of digits in this event = 11 -proton -Event: 76 -Number of tracker hits in this event = 8 - 76 236.024 900 3 1 0.182256 -0.316263 -114.45 - 76 126.185 898 3 0 0.191433 -0.321018 -115.85 - 76 116.592 901 2 1 0.382538 -0.433237 -144.45 - 76 139.048 898 2 0 0.385143 -0.437466 -145.85 - 76 183.095 902 1 1 0.463582 -0.515793 -174.45 - 76 130.829 897 1 0 0.498484 -0.509291 -175.85 - 76 98.9835 906 0 1 1.38715 -0.254098 -204.45 - 76 127.59 899 0 0 1.42964 -0.240993 -205.85 + 73 113.749 900 4 1 0.0953805 -0.15506 -84.45 + 73 147.021 899 4 0 0.0864527 -0.169824 -85.85 + 73 133.914 899 3 1 -0.0972742 -0.4949 -114.45 + 73 153.06 897 3 0 -0.113138 -0.51385 -115.85 + 73 113.734 898 2 1 -0.445089 -0.900336 -144.45 + 73 116.108 895 2 0 -0.457467 -0.913634 -145.85 + 73 120.168 896 1 1 -0.718045 -1.17458 -174.45 + 73 183.182 894 1 0 -0.728551 -1.18657 -175.85 + 73 108.361 895 0 1 -0.950317 -1.44167 -204.45 + 73 247.46 892 0 0 -0.959016 -1.45658 -205.85 Number of digits in this event = 7 proton -Event: 77 +Event: 74 +Number of tracker hits in this event = 13 + 74 144.335 900 5 1 0.0584705 0.0981378 -54.45 + 74 129.225 900 5 0 0.0647291 0.0976864 -55.85 + 74 136.797 900 4 1 0.188828 0.106884 -84.45 + 74 117.98 900 4 0 0.19468 0.109374 -85.85 + 74 131.03 901 3 1 0.31942 0.163976 -114.45 + 74 128.534 900 3 0 0.326456 0.171238 -115.85 + 74 157.65 902 2 1 0.468241 0.317293 -144.45 + 74 180.495 901 2 0 0.4815 0.33322 -145.85 + 74 111.575 904 1 1 0.852388 0.722606 -174.45 + 74 91.874 903 1 0 0.867487 0.746006 -175.85 + 74 121.575 905 0 1 1.176 1.22 -204.45 + 74 257.613 905 0 0 1.18967 1.24039 -205.85 + 74 147.729 899 6 1 -0.156135 0.05 -24.5672 +Number of digits in this event = 13 +proton +Event: 75 Number of tracker hits in this event = 8 - 77 140.881 900 3 1 0.163466 0.113434 -114.45 - 77 122.38 900 3 0 0.160229 0.117395 -115.85 - 77 132.461 900 2 1 0.0752927 0.205194 -144.45 - 77 145.056 900 2 0 0.0799345 0.206101 -145.85 - 77 138.833 900 1 1 0.17383 0.230299 -174.45 - 77 168.144 900 1 0 0.178985 0.234358 -175.85 - 77 159.012 901 0 1 0.283101 0.315564 -204.45 - 77 148.444 901 0 0 0.289806 0.322908 -205.85 -Number of digits in this event = 11 + 75 157.975 899 4 1 -0.0886719 -0.185005 -84.45 + 75 192.984 899 4 0 -0.0977363 -0.185604 -85.85 + 75 121.446 898 3 1 -0.27381 -0.197536 -114.45 + 75 135.553 899 3 0 -0.273939 -0.19911 -115.85 + 75 128.21 898 2 1 -0.296908 -0.132845 -144.45 + 75 145.007 899 2 0 -0.293156 -0.124618 -145.85 + 75 197.561 899 0 1 -0.11465 0.257053 -204.45 + 75 164.593 901 0 0 -0.108661 0.271176 -205.85 +Number of digits in this event = 9 +proton +Event: 76 +Number of tracker hits in this event = 11 + 76 114.389 899 4 1 -0.0897866 -0.109453 -84.45 + 76 176.334 899 4 0 -0.0944035 -0.108784 -85.85 + 76 149.836 899 3 1 -0.175411 -0.0740339 -114.45 + 76 140.689 899 3 0 -0.180698 -0.0689492 -115.85 + 76 142.138 898 1 1 -0.372129 0.164419 -174.45 + 76 131.905 900 1 0 -0.372427 0.172821 -175.85 + 76 131.593 898 0 1 -0.364923 0.347738 -204.45 + 76 153.012 901 0 0 -0.363623 0.353508 -205.85 + 76 20.22 809 0 0 26.498 -18.1635 -206.25 + 76 289.184 752 0 0 86.9636 -29.5902 -206.25 + 76 38.9917 751 0 0 86.9622 -29.65 -206.045 +Number of digits in this event = 9 +proton +Event: 77 +Number of tracker hits in this event = 27 + 77 212.282 900 3 1 0.0795242 0.245252 -114.45 + 77 185.241 901 3 0 0.0806192 0.254172 -115.85 + 77 41.761 1241 4 1 68.25 -88.8262 -84.6195 + 77 206.769 694 3 1 -41.05 113.76 -114.569 + 77 584.983 900 2 1 0.117114 0.526235 -144.45 + 77 412.153 904 2 0 0.35347 0.935988 -145.85 + 77 4.30037 905 2 0 0.419021 1.05 -146.238 + 77 208.889 925 1 1 5.14961 9.22702 -174.45 + 77 48.1194 947 1 0 5.33177 9.60358 -175.85 + 77 85.7611 948 1 0 5.35368 9.65 -176.023 + 77 171.132 945 0 1 9.05173 17.3759 -204.45 + 77 130.121 988 0 0 9.22815 17.6983 -205.85 + 77 229.434 898 1 1 -0.252927 8.89957 -174.45 + 77 192.369 946 1 0 -0.275515 9.30132 -175.85 + 77 212.906 896 0 1 -0.747144 17.5778 -204.45 + 77 296.672 989 0 0 -0.754685 17.9803 -205.85 + 77 92.3974 990 0 0 -0.756134 18.05 -206.092 + 77 320.14 901 2 1 0.25 0.223079 -144.627 + 77 125.094 898 2 0 0.657617 -0.393658 -145.85 + 77 324.593 897 2 0 0.694801 -0.45 -145.962 + 77 318.294 951 1 1 10.3149 -14.8451 -174.45 + 77 20.7879 952 1 1 10.45 -15.0404 -174.83 + 77 145.621 822 1 0 10.8115 -15.5655 -175.85 + 77 224.272 821 1 0 10.8696 -15.65 -176.014 + 77 381.202 1005 0 1 21.0528 -30.4303 -204.45 + 77 306.043 744 0 0 21.4869 -31.1164 -205.85 + 77 129.976 743 0 0 21.5715 -31.25 -206.122 +Number of digits in this event = 24 proton Event: 78 -Number of tracker hits in this event = 11 - 78 140.425 899 5 1 -0.0790519 -0.0784774 -54.45 - 78 121.725 899 5 0 -0.0787439 -0.0864041 -55.85 - 78 174.825 900 3 1 0.148977 -0.349496 -114.45 - 78 107.432 898 3 0 0.163088 -0.364061 -115.85 - 78 149.657 901 2 1 0.432176 -0.658513 -144.45 - 78 109.553 896 2 0 0.449365 -0.672361 -145.85 - 78 260.179 903 1 1 0.794789 -0.961237 -174.45 - 78 116.9 895 1 0 0.813754 -0.974992 -175.85 - 78 170.026 905 0 1 1.19539 -1.25399 -204.45 - 78 133.808 893 0 0 1.20854 -1.26333 -205.85 - 78 34.767 1706 8 0 -53.9104 161.426 33.75 -Number of digits in this event = 10 +Number of tracker hits in this event = 8 + 78 117.774 898 3 1 -0.339297 0.0879525 -114.45 + 78 134.798 900 3 0 -0.349922 0.0965745 -115.85 + 78 132.193 897 2 1 -0.575002 0.291573 -144.45 + 78 120.048 901 2 0 -0.585872 0.30104 -145.85 + 78 135.239 896 1 1 -0.794914 0.501355 -174.45 + 78 137.167 902 1 0 -0.801202 0.517837 -175.85 + 78 136.403 895 0 1 -0.925639 0.854274 -204.45 + 78 123.68 904 0 0 -0.926004 0.87024 -205.85 +Number of digits in this event = 8 proton Event: 79 -Number of tracker hits in this event = 13 - 79 124.308 899 5 1 -0.104035 0.108064 -54.45 - 79 136.912 900 5 0 -0.109686 0.116887 -55.85 - 79 124.892 899 4 1 -0.220521 0.3219 -84.45 - 79 132.914 901 4 0 -0.229444 0.338079 -85.85 - 79 127.51 898 3 1 -0.403996 0.663604 -114.45 - 79 140.236 903 3 0 -0.41061 0.678883 -115.85 - 79 113.553 897 2 1 -0.526243 0.979524 -144.45 - 79 128.962 904 2 0 -0.533434 1.00075 -145.85 - 79 156.227 896 1 1 -0.672703 1.41456 -174.45 - 79 132.468 906 1 0 -0.67902 1.44128 -175.85 - 79 111.387 896 0 1 -0.804254 1.99389 -204.45 - 79 172.354 909 0 0 -0.807091 2.0256 -205.85 - 79 2.2424 1161 6 0 -77.8717 52.25 -25.9323 -Number of digits in this event = 12 +Number of tracker hits in this event = 9 + 79 146.759 900 3 1 0.222482 -0.166989 -114.45 + 79 169.519 899 3 0 0.232478 -0.166181 -115.85 + 79 165.875 901 2 1 0.434519 -0.152493 -144.45 + 79 278.711 899 2 0 0.445677 -0.15168 -145.85 + 79 199.958 903 1 1 0.652477 -0.127751 -174.45 + 79 104.932 899 1 0 0.66261 -0.124927 -175.85 + 79 124.331 904 0 1 0.878673 -0.0649944 -204.45 + 79 140.231 899 0 0 0.890741 -0.0618484 -205.85 + 79 117.953 898 2 0 0.564729 -0.250029 -146.191 +Number of digits in this event = 11 proton Event: 80 -Number of tracker hits in this event = 94 - 80 286.817 900 6 0 -0.0535097 0.05 -26.0784 - 80 3.54748 901 6 0 -0.389485 0.25 -26.1577 - 80 4282.89 900 3 1 0.05 -0.224678 -114.587 - 80 2018.73 892 3 0 0.795053 -1.52523 -115.85 - 80 5549.65 891 3 0 0.855659 -1.65 -115.962 - 80 1143.75 898 3 1 -0.319069 -0.05 -114.515 - 80 1854.36 897 3 1 -0.45 -0.0821019 -114.601 - 80 2072.5 896 3 1 -0.65 -0.132409 -114.728 - 80 3528.08 897 3 0 -2.4411 -0.574699 -115.85 - 80 4818.18 896 3 0 -2.74846 -0.65 -116.042 - 80 1163 1006 4 0 13.2704 21.4066 -86.25 - 80 7375.47 1007 4 0 13.2976 21.45 -86.1931 - 80 1436.96 938 4 0 5.9485 7.72436 -86.25 - 80 1487.06 931 4 1 6.25281 8.12764 -84.85 - 80 1964.78 971 5 0 9.3872 14.2853 -56.25 - 80 2126.61 947 5 1 9.56054 14.5922 -54.85 - 80 5851.45 931 6 0 13.697 6.35008 -26.25 - 80 890.538 930 6 0 13.7507 6.25 -25.9201 - 80 44.6076 742 4 0 -17.662 -31.6013 -86.25 - 80 144.255 741 4 0 -17.689 -31.65 -86.2066 - 80 174.725 740 4 0 -17.8008 -31.85 -86.0288 - 80 2.4644 739 4 0 -17.9117 -32.05 -85.8535 - 80 109.816 807 4 1 -18.5569 -33.1956 -84.85 - 80 183.939 806 4 1 -18.65 -33.3611 -84.7051 - 80 20.5099 563 5 0 -35.6299 -67.428 -56.25 - 80 246.711 562 5 0 -35.6408 -67.45 -56.2317 - 80 308.984 561 5 0 -35.7403 -67.65 -56.062 - 80 37.9357 560 5 0 -35.8387 -67.85 -55.8936 - 80 264.428 717 5 1 -36.4648 -69.1175 -54.85 - 80 78.1791 716 5 1 -36.65 -69.4924 -54.5414 - 80 127.307 352 6 0 -51.8757 -109.554 -26.25 - 80 152.276 351 6 0 -51.95 -109.75 -26.1118 - 80 106.06 350 6 0 -52.0256 -109.95 -25.9726 - 80 346.405 636 6 1 -52.6599 -111.571 -24.85 - 80 301.52 635 6 1 -52.85 -112.056 -24.5136 - 80 156.022 67 7 0 -75.1231 -166.632 3.75 - 80 221.327 66 7 0 -75.1713 -166.75 3.81097 - 80 286.22 65 7 0 -75.2527 -166.95 3.91318 - 80 137.525 64 7 0 -75.3324 -167.15 4.01485 - 80 83.6761 63 7 0 -75.4144 -167.35 4.11669 - 80 333.984 518 7 1 -76.2509 -169.399 5.15 - 80 402.061 517 7 1 -76.45 -169.887 5.39594 - 80 138.498 523 7 1 -75.3279 -167.435 5.15 - 80 83.2736 899 3 1 -0.0576005 -0.208555 -114.45 - 80 33.5935 883 3 0 0.721087 -3.41341 -115.85 - 80 296.522 882 3 0 0.729977 -3.45 -115.866 - 80 295.487 881 3 0 0.778559 -3.65 -115.953 - 80 225.681 880 3 0 0.826834 -3.85 -116.04 - 80 258.571 879 3 0 0.875698 -4.05 -116.127 - 80 96.2067 878 3 0 0.924345 -4.25 -116.215 - 80 61.756 983 2 1 16.8434 -69.1546 -144.45 - 80 1970.53 984 2 1 16.85 -69.1469 -144.456 - 80 2169.58 985 2 1 17.05 -68.9096 -144.641 - 80 332.197 986 2 1 17.25 -68.6822 -144.825 - 80 55.318 562 2 0 18.3967 -67.4554 -145.85 - 80 2392.73 563 2 0 18.4018 -67.45 -145.855 - 80 3027.43 564 2 0 18.5906 -67.25 -146.031 - 80 1098.27 565 2 0 18.7878 -67.05 -146.202 - 80 436.97 964 4 0 3.37645 12.8898 -86.25 - 80 60.5194 965 4 0 3.41992 13.05 -85.8999 - 80 703.145 917 4 1 3.5507 13.5218 -84.85 - 80 626.458 1029 5 0 7.79409 25.8745 -56.25 - 80 468.748 939 5 1 8.00246 26.4779 -54.85 - 80 183.834 940 5 1 8.05 26.6156 -54.5305 - 80 133.436 1100 6 0 12.828 40.1988 -26.25 - 80 484.21 1101 6 0 12.846 40.25 -26.1435 - 80 701.08 965 6 1 13.0713 40.8658 -24.85 - 80 146.613 1178 7 0 18.812 55.8078 3.75 - 80 622.243 1179 7 0 18.8282 55.85 3.83063 - 80 700.86 995 7 1 19.0874 56.5478 5.15 - 80 623.858 1256 8 0 26.185 71.2787 33.75 - 80 153.414 1257 8 0 26.268 71.45 34.0829 - 80 640.538 1032 8 1 26.5308 71.9949 35.15 - 80 382.028 1335 9 0 32.3255 87.1338 63.75 - 80 307.101 1336 9 0 32.3697 87.25 63.9694 - 80 340.656 1062 9 1 32.6067 87.8849 65.15 - 80 336.197 1063 9 1 32.65 88.0009 65.3659 - 80 738.68 1413 10 0 38.1973 102.75 93.75 - 80 24.0676 1414 10 0 38.2725 102.95 94.1347 - 80 729.364 1092 10 1 38.4776 103.475 95.15 - 80 400.562 1491 11 0 42.8067 118.433 123.75 - 80 330.042 1492 11 0 42.8403 118.55 123.974 - 80 538.154 1114 11 1 43.0099 119.161 125.15 - 80 337.598 1115 11 1 43.05 119.307 125.43 - 80 363.559 1571 12 0 46.3146 134.479 153.75 - 80 600.25 1572 12 0 46.3299 134.55 153.883 - 80 928.073 1132 12 1 46.475 135.224 155.15 - 80 636.582 1649 13 0 49.2271 150.029 183.75 - 80 430.213 1650 13 0 49.2495 150.15 183.984 - 80 964.312 1146 13 1 49.3534 150.751 185.15 - 80 924.475 1738 14 0 51.9916 167.751 213.75 - 80 148.923 1739 14 0 52.0225 167.95 214.084 - 80 1296.68 1160 14 1 52.1261 168.593 215.15 - 80 67.9262 1773 1 0 145.145 174.906 -175.901 -Number of digits in this event = 81 +Number of tracker hits in this event = 3 + 80 1.3585 900 3 0 0.05 0.0677725 -116.245 + 80 254.532 899 0 1 -0.114339 0.377771 -204.45 + 80 126.402 901 0 0 -0.116977 0.385401 -205.85 +Number of digits in this event = 3 proton Event: 81 -Number of tracker hits in this event = 10 - 81 218.218 900 4 1 0.160315 -0.222669 -84.45 - 81 260.501 899 4 0 0.166026 -0.224169 -85.85 - 81 154.609 901 3 1 0.267648 -0.218537 -114.45 - 81 151.424 899 3 0 0.272866 -0.222041 -115.85 - 81 176.771 901 2 1 0.342945 -0.302767 -144.45 - 81 113.78 898 2 0 0.350634 -0.301988 -145.85 - 81 114.07 902 1 1 0.523524 -0.297568 -174.45 - 81 134.777 898 1 0 0.53845 -0.295001 -175.85 - 81 170.356 904 0 1 0.863152 -0.256915 -204.45 - 81 277.274 898 0 0 0.876192 -0.255564 -205.85 -Number of digits in this event = 9 +Number of tracker hits in this event = 15 + 81 186.998 900 5 1 0.100584 -0.108794 -54.45 + 81 145.22 899 5 0 0.109034 -0.117468 -55.85 + 81 170.174 901 4 1 0.28656 -0.309457 -84.45 + 81 149.834 898 4 0 0.290482 -0.321365 -85.85 + 81 125.205 901 3 1 0.36185 -0.563922 -114.45 + 81 148.373 897 3 0 0.363663 -0.579186 -115.85 + 81 127.232 901 2 1 0.409694 -0.884185 -144.45 + 81 126.182 895 2 0 0.413277 -0.900404 -145.85 + 81 125.521 902 1 1 0.476886 -1.20989 -174.45 + 81 139.025 894 1 0 0.481039 -1.22471 -175.85 + 81 134.344 902 0 1 0.60042 -1.53636 -204.45 + 81 181.028 892 0 0 0.609529 -1.55167 -205.85 + 81 238.878 889 1 0 12.9012 -2.22568 -176.25 + 81 42.7689 888 1 0 13.082 -2.25001 -176.122 + 81 227.171 1135 3 0 1.18784 47.067 -116.25 +Number of digits in this event = 16 proton Event: 82 Number of tracker hits in this event = 6 - 82 194.162 901 3 1 0.400783 -0.0586653 -114.45 - 82 151.137 899 3 0 0.396747 -0.0569024 -115.85 - 82 118.738 900 1 1 0.0989783 0.0609413 -174.45 - 82 120.239 900 1 0 0.0915994 0.0647856 -175.85 - 82 107.235 900 0 0 -0.053429 0.15309 -205.85 - 82 180.505 899 5 0 0.0893484 -0.0500679 -56.1329 -Number of digits in this event = 5 + 82 166.366 904 0 1 0.896294 -0.106473 -204.45 + 82 230.264 899 0 0 0.900046 -0.11021 -205.85 + 82 90.0517 903 0 1 0.85 -0.0795281 -204.599 + 82 35.5055 902 0 1 0.649912 0.0661104 -204.821 + 82 184.825 900 0 0 -1.22306 0.202867 -205.85 + 82 19.8708 901 0 0 -1.32878 0.25 -205.923 +Number of digits in this event = 4 proton Event: 83 -Number of tracker hits in this event = 10 - 83 241.08 900 4 1 0.117555 0.15725 -84.45 - 83 123.526 900 4 0 0.11973 0.160089 -85.85 - 83 114.634 900 3 1 0.158169 0.217024 -114.45 - 83 108.132 900 3 0 0.161548 0.220897 -115.85 - 83 124.803 900 2 1 0.227692 0.313736 -144.45 - 83 166.697 901 2 0 0.236947 0.322587 -145.85 - 83 128.935 901 1 1 0.414637 0.50338 -174.45 - 83 114.476 902 1 0 0.423895 0.51067 -175.85 - 83 124.221 902 0 1 0.601643 0.648076 -204.45 - 83 143.031 902 0 0 0.607706 0.647857 -205.85 +Number of tracker hits in this event = 9 + 83 117.104 900 5 1 0.139287 0.0506274 -54.45 + 83 120.31 902 3 1 0.515123 -0.179713 -114.45 + 83 106.1 899 3 0 0.524776 -0.185711 -115.85 + 83 153.568 903 2 1 0.72089 -0.32542 -144.45 + 83 149.943 898 2 0 0.732036 -0.334647 -145.85 + 83 120.447 904 1 1 0.976704 -0.528329 -174.45 + 83 173.893 897 1 0 0.985042 -0.535119 -175.85 + 83 137.764 905 0 1 1.1525 -0.673225 -204.45 + 83 187.459 896 0 0 1.1566 -0.680421 -205.85 Number of digits in this event = 8 proton Event: 84 -Number of tracker hits in this event = 17 - 84 223.984 899 4 1 -0.15852 0.0591981 -84.45 - 84 154.114 900 4 0 -0.158492 0.0593727 -85.85 - 84 102.241 899 3 1 -0.154408 0.0742537 -114.45 - 84 127.821 900 3 0 -0.152317 0.070694 -115.85 - 84 182.528 899 2 1 -0.0969816 -0.05 -144.52 - 84 71.4584 899 5 1 -0.0536814 -0.05 -54.7404 - 84 106.072 898 5 0 0.116157 -0.290035 -55.85 - 84 4.38826 1706 1 1 161.35 29.5906 -174.563 - 84 10.7686 1146 0 0 63.096 49.25 -206.165 - 84 63.0404 1147 0 0 63.0961 49.45 -206.133 - 84 49.4901 1148 0 0 63.1173 49.65 -206.18 - 84 177.315 1245 0 0 34.6496 69.2485 -206.25 - 84 81.9188 1246 0 0 34.273 69.25 -206.142 - 84 357.271 306 0 1 -118.822 -171.563 -204.85 - 84 3388.61 1138 6 0 153.844 47.7951 -26.218 - 84 273.948 1094 6 0 151.295 38.854 -26.2499 - 84 172.129 1093 6 0 151.289 38.85 -26.2104 -Number of digits in this event = 12 -proton -Event: 85 -Number of tracker hits in this event = 17 - 85 177.559 899 2 1 -0.19827 -0.270223 -144.45 - 85 163.747 898 2 0 -0.203541 -0.275289 -145.85 - 85 110.946 898 1 1 -0.291355 -0.380207 -174.45 - 85 213.97 898 1 0 -0.29306 -0.388269 -175.85 - 85 169.461 898 0 1 -0.341482 -0.546309 -204.45 - 85 106.268 897 0 0 -0.331506 -0.550463 -205.85 - 85 141.361 900 6 1 0.05 0.0779647 -24.5727 - 85 63.6674 908 6 0 -0.190557 1.69669 -25.8501 - 85 92.7308 909 6 0 -0.239485 1.85012 -25.9169 - 85 30.3761 910 6 0 -0.356466 2.05008 -25.884 - 85 32.3324 885 6 1 -3.01311 4.07333 -24.85 - 85 86.6551 884 6 1 -3.05008 4.10388 -24.8398 - 85 33.3212 883 6 1 -3.25005 4.09999 -24.8252 - 85 148.272 921 6 0 -4.45518 4.34573 -25.85 - 85 68.722 920 6 0 -4.60658 4.24997 -26.0628 - 85 148.676 478 4 0 156.918 -84.2502 -86.25 - 85 161.354 479 4 0 156.926 -84.25 -86.096 -Number of digits in this event = 9 -proton -Event: 86 -Number of tracker hits in this event = 42 - 86 112.727 902 2 1 0.576079 0.128474 -144.45 - 86 124.38 900 2 0 0.587894 0.139708 -145.85 - 86 161.466 903 1 1 0.82653 0.367723 -174.45 - 86 137.554 901 1 0 0.837568 0.38272 -175.85 - 86 158.124 905 0 1 1.07128 0.682457 -204.45 - 86 186.613 903 0 0 1.08361 0.701418 -205.85 - 86 16.35 453 0 0 86.7488 -89.4328 -206.25 - 86 152.337 452 0 0 86.7626 -89.45 -206.244 - 86 193.625 451 0 0 86.9224 -89.65 -206.178 - 86 144.707 450 0 0 87.0804 -89.85 -206.112 - 86 195.173 449 0 0 87.3149 -90.15 -206.013 - 86 139.868 448 0 0 87.4744 -90.35 -205.945 - 86 81.6402 447 0 0 87.6429 -90.55 -205.883 - 86 416.724 1351 0 1 90.3892 -93.7264 -204.85 - 86 157.052 1352 0 1 90.55 -93.9124 -204.788 - 86 177.741 1353 0 1 90.75 -94.1473 -204.711 - 86 189.219 1354 0 1 90.95 -94.3785 -204.635 - 86 169.509 1355 0 1 91.15 -94.6157 -204.556 - 86 68.0483 1356 0 1 91.35 -94.853 -204.477 - 86 92.2131 125 1 0 143.561 -155.036 -176.25 - 86 183.674 124 1 0 143.66 -155.15 -176.196 - 86 406.207 123 1 0 143.833 -155.35 -176.1 - 86 182.759 122 1 0 144.005 -155.55 -176.005 - 86 120.895 121 1 0 144.177 -155.75 -175.907 - 86 152.562 1630 1 1 146.209 -158.12 -174.85 - 86 232.908 1631 1 1 146.35 -158.284 -174.777 - 86 261.125 1632 1 1 146.55 -158.514 -174.675 - 86 317.826 1633 1 1 146.75 -158.743 -174.576 - 86 96.0478 1634 1 1 146.95 -158.968 -174.476 - 86 79.9015 1635 1 1 147.207 -159.303 -174.45 - 86 72.9884 1636 1 1 147.35 -159.285 -174.649 - 86 139.875 105 1 0 147.963 -159.109 -175.85 - 86 55.3946 762 0 1 -27.619 -53.0014 -204.85 - 86 33.7435 763 0 1 -27.3398 -53.2083 -204.45 - 86 130.594 764 0 1 -27.25 -53.2175 -204.509 - 86 253.559 765 0 1 -27.05 -53.0517 -204.487 - 86 58.116 1715 0 1 163.15 -65.6405 -204.525 - 86 76.1779 1424 1 0 -57.7849 105.089 -176.235 - 86 3565.93 1725 5 1 165.261 -127.935 -54.8251 - 86 853.353 1726 5 1 165.35 -127.913 -54.8267 - 86 1085.84 256 5 0 164.252 -128.902 -55.85 - 86 4776.1 255 5 0 164.202 -128.95 -55.9012 -Number of digits in this event = 34 -proton -Event: 87 -Number of tracker hits in this event = 3 - 87 86.6643 902 0 0 0.95848 0.573254 -205.85 - 87 143.546 901 0 0 1.1239 0.45 -206.095 - 87 166.983 900 0 0 1.32477 0.25 -206.159 -Number of digits in this event = 3 -proton -Event: 88 -Number of tracker hits in this event = 24 - 88 133.703 898 4 1 -0.409102 0.26798 -84.45 - 88 149.67 901 4 0 -0.422728 0.279413 -85.85 - 88 160.696 896 3 1 -0.694291 0.512503 -114.45 - 88 134.424 902 3 0 -0.710259 0.520556 -115.85 - 88 111.428 895 2 1 -1.02361 0.709147 -144.45 - 88 146.046 903 2 0 -1.03765 0.715928 -145.85 - 88 159.533 893 1 1 -1.33528 0.88453 -174.45 - 88 202.359 904 1 0 -1.3455 0.8933 -175.85 - 88 138.081 892 0 1 -1.5493 1.09778 -204.45 - 88 127.442 905 0 0 -1.56233 1.09905 -205.85 - 88 26.9384 899 5 1 -0.133967 0.05 -54.5487 - 88 223.818 900 5 1 0.0500219 0.182217 -54.4931 - 88 47.5569 900 6 1 0.142852 0.138786 -24.4501 - 88 69.0534 901 6 1 0.25 0.154195 -24.5578 - 88 49.1791 902 6 1 0.45 0.18777 -24.7159 - 88 274.153 899 6 0 1.49627 -0.0676048 -25.85 - 88 36.0931 962 6 0 -18.9379 12.5294 -26.25 - 88 72.4775 963 6 0 -19.0011 12.65 -26.206 - 88 48.6492 964 6 0 -19.0779 12.85 -26.1873 - 88 198.951 1097 6 0 -48.2267 39.6156 -26.2499 - 88 164.221 657 6 1 -48.5759 38.508 -24.85 - 88 178.987 656 6 1 -48.65 38.0559 -24.5488 - 88 261.91 655 6 1 -48.8501 38.0164 -24.521 - 88 146.876 654 6 1 -49.0501 38.2036 -24.6609 +Number of tracker hits in this event = 15 + 84 166.938 899 5 1 -0.068789 -0.0896156 -54.45 + 84 145.287 899 5 0 -0.0769879 -0.101679 -55.85 + 84 158.745 899 4 1 -0.244555 -0.318565 -84.45 + 84 120.216 898 4 0 -0.255884 -0.324825 -85.85 + 84 130.54 897 3 1 -0.501963 -0.445282 -114.45 + 84 235.318 897 3 0 -0.512973 -0.45781 -115.85 + 84 148.403 896 2 1 -0.750328 -0.709201 -144.45 + 84 151.875 896 2 0 -0.761964 -0.72324 -145.85 + 84 112.765 895 1 1 -0.980735 -1.06188 -174.45 + 84 389.042 894 1 0 -0.988272 -1.0832 -175.85 + 84 130.736 894 0 1 -1.15352 -1.51007 -204.45 + 84 142.876 892 0 0 -1.16447 -1.52852 -205.85 + 84 153.837 900 5 1 0.0500458 -0.0759589 -54.8182 + 84 64.3231 763 0 1 -27.2763 -1.08514 -204.45 + 84 266.852 291 5 0 -108.121 -121.928 -55.8832 Number of digits in this event = 17 proton -Event: 89 -Number of tracker hits in this event = 2 - 89 143.574 899 0 1 -0.111974 -0.332477 -204.45 - 89 153.499 898 0 0 -0.117696 -0.34556 -205.85 -Number of digits in this event = 3 -proton -Event: 90 -Number of tracker hits in this event = 6 - 90 26.2387 899 2 0 -0.0500612 -0.188267 -146.063 - 90 68.4733 898 2 0 -0.0987575 -0.25 -146.091 - 90 28.9892 635 2 0 -10.9123 -53.0069 -146.25 - 90 90.6159 634 2 0 -10.8901 -53.0501 -146.229 - 90 146.718 633 2 0 -10.8782 -53.25 -146.048 - 90 156.392 632 2 0 -10.7245 -53.45 -146.123 -Number of digits in this event = 3 -proton -Event: 91 -Number of tracker hits in this event = 12 - 91 121.067 900 5 1 0.0564914 0.0690357 -54.45 - 91 150.463 900 5 0 0.0616911 0.0600608 -55.85 - 91 104.579 900 4 1 0.169282 -0.113838 -84.45 - 91 125.192 899 4 0 0.174724 -0.123705 -85.85 - 91 155.336 901 3 1 0.296183 -0.30031 -114.45 - 91 126.903 898 3 0 0.303472 -0.30872 -115.85 - 91 128.948 901 2 1 0.444143 -0.471667 -144.45 - 91 150.813 897 2 0 0.452827 -0.485269 -145.85 - 91 175.108 902 1 1 0.624428 -0.747713 -174.45 - 91 165.095 896 1 0 0.639085 -0.758759 -175.85 - 91 135.79 904 0 1 0.937513 -0.999322 -204.45 - 91 137.138 895 0 0 0.956137 -1.0088 -205.85 -Number of digits in this event = 15 -proton -Event: 92 -Number of tracker hits in this event = 10 - 92 137.54 899 4 1 -0.168355 0.0886533 -84.45 - 92 176.861 900 4 0 -0.17093 0.0889305 -85.85 - 92 127.843 899 3 1 -0.224091 0.101733 -114.45 - 92 183.217 900 3 0 -0.22503 0.10157 -115.85 - 92 179.615 898 2 1 -0.26563 0.0927169 -144.45 - 92 117.753 900 2 0 -0.26784 0.0947571 -145.85 - 92 197.479 898 1 1 -0.31183 0.154565 -174.45 - 92 205.747 900 1 0 -0.314187 0.153172 -175.85 - 92 121.015 898 0 1 -0.364731 0.132867 -204.45 - 92 116.689 900 0 0 -0.374078 0.13314 -205.85 -Number of digits in this event = 9 -proton -Event: 93 -Number of tracker hits in this event = 70 - 93 12899.5 899 5 0 0.0519742 -0.119723 -55.85 - 93 624.895 900 5 0 -0.0938017 0.05 -56.0182 - 93 678.313 901 5 0 -0.266166 0.25 -56.0072 - 93 664.583 902 5 0 -0.435948 0.45 -55.9952 - 93 636.152 903 5 0 -0.605725 0.65 -55.9819 - 93 613.298 904 5 0 -0.775969 0.85 -55.9692 - 93 565.101 905 5 0 -0.94454 1.05 -55.9551 - 93 649.747 906 5 0 -1.1138 1.25 -55.9398 - 93 660.235 907 5 0 -1.28373 1.45 -55.9245 - 93 683.49 908 5 0 -1.45057 1.65 -55.9097 - 93 766.946 909 5 0 -1.61436 1.85 -55.8934 - 93 658.272 910 5 0 -1.77696 2.05 -55.8753 - 93 232.815 911 5 0 -1.93899 2.25 -55.8557 - 93 580.671 845 5 1 -10.8913 13.2042 -54.85 - 93 842.36 844 5 1 -11.05 13.3983 -54.8322 - 93 903.26 843 5 1 -11.25 13.6502 -54.8086 - 93 753.57 842 5 1 -11.45 13.9054 -54.7821 - 93 1014.12 841 5 1 -11.65 14.1628 -54.753 - 93 924.629 840 5 1 -11.85 14.4215 -54.7251 - 93 880.581 839 5 1 -12.05 14.6812 -54.6964 - 93 993.124 838 5 1 -12.25 14.9447 -54.668 - 93 1024.17 837 5 1 -12.45 15.2069 -54.642 - 93 978.637 836 5 1 -12.65 15.4782 -54.6143 - 93 986.459 835 5 1 -12.85 15.7482 -54.5847 - 93 1133.76 834 5 1 -13.05 16.0198 -54.5548 - 93 1181.4 833 5 1 -13.25 16.2915 -54.5258 - 93 1169.04 832 5 1 -13.45 16.565 -54.4983 - 93 429.46 831 5 1 -13.65 16.8539 -54.4613 - 93 22.0785 907 5 1 1.59927 0.469557 -54.85 - 93 72.8044 908 5 1 1.65 0.488933 -54.8114 - 93 94.1058 909 5 1 1.85 0.566025 -54.6597 - 93 32.7004 910 5 1 2.05 0.643087 -54.5082 - 93 286.965 969 6 0 38.1416 13.8523 -26.25 - 93 47.5477 1099 6 1 39.9323 14.5036 -24.85 - 93 98.3649 1100 6 1 40.05 14.5463 -24.7581 - 93 90.6735 1101 6 1 40.25 14.6194 -24.602 - 93 426.529 1039 7 0 75.8445 27.9208 3.75 - 93 61.4023 1040 7 0 76.1911 28.05 4.02719 - 93 40.6706 1287 7 1 77.5893 28.5756 5.15 - 93 72.0163 1288 7 1 77.65 28.5984 5.19867 - 93 78.6631 1289 7 1 77.85 28.6731 5.35914 - 93 12.8582 1290 7 1 78.05 28.7499 5.5189 - 93 107.508 1108 8 0 112.156 41.7597 33.75 - 93 131.13 1109 8 0 112.393 41.85 33.946 - 93 58.9805 1468 8 1 113.835 42.4068 35.15 - 93 90.1119 1469 8 1 113.95 42.4512 35.246 - 93 138.392 1470 8 1 114.15 42.5288 35.413 - 93 78.0725 1176 9 0 151.833 55.3842 63.75 - 93 144.079 1177 9 0 152.027 55.45 63.8951 - 93 22.6155 1667 9 1 153.694 56.002 65.15 - 93 152.739 1668 9 1 153.75 56.0204 65.1921 - 93 92.9428 1669 9 1 153.95 56.0863 65.3431 - 93 30.2585 1670 9 1 154.15 56.1511 65.4962 - 93 144.411 925 6 0 20.7099 5.19242 -26.25 - 93 386.927 742 6 0 52.5426 -31.5038 -26.25 - 93 60.4173 755 5 0 19.1899 -28.85 -56.0722 - 93 69.1487 754 5 0 19.2941 -29.0501 -56.1197 - 93 55.5893 753 5 0 19.3333 -29.2501 -56.124 - 93 47.2551 752 5 0 19.3176 -29.4501 -56.1871 - 93 79.9837 751 5 0 19.3732 -29.6501 -56.1786 - 93 122.689 750 5 0 19.2989 -29.85 -56.1508 - 93 100.977 749 5 0 18.979 -30.0501 -55.9931 - 93 105.072 748 5 0 18.8431 -30.2501 -55.9827 - 93 339.096 747 5 0 18.6027 -30.45 -55.9828 - 93 41.8571 940 5 0 -5.73144 8.05 -56.1209 - 93 136.664 941 5 0 -5.85126 8.25007 -56.2008 - 93 39.5768 819 5 0 11.9285 -16.2157 -56.25 - 93 43.3164 818 5 0 11.9585 -16.25 -56.2127 - 93 25.8625 571 5 0 41.6288 -65.8073 -56.25 - 93 119.055 305 0 1 -118.993 -75.075 -204.596 -Number of digits in this event = 41 -proton -Event: 94 -Number of tracker hits in this event = 12 - 94 125.121 899 4 1 -0.0690121 0.109187 -84.45 - 94 177.036 900 4 0 -0.0698661 0.109128 -85.85 - 94 180.897 899 3 1 -0.096934 0.106831 -114.45 - 94 144.201 900 3 0 -0.100539 0.102187 -115.85 - 94 170.031 898 1 1 -0.377805 -0.123883 -174.45 - 94 135.58 899 1 0 -0.383366 -0.12757 -175.85 - 94 117.962 897 0 1 -0.522786 -0.17796 -204.45 - 94 127.412 899 0 0 -0.531366 -0.17744 -205.85 - 94 16.8577 905 3 0 -1.39935 1.20598 -115.85 - 94 211.569 906 3 0 -1.4363 1.25005 -115.884 - 94 5.62418 1061 3 0 46.7257 32.2505 -116.25 - 94 189.404 1060 3 0 46.7371 32.25 -116.24 -Number of digits in this event = 10 -proton -Event: 95 -Number of tracker hits in this event = 12 - 95 126.828 899 5 1 -0.053257 0.0741958 -54.45 - 95 167.666 900 5 0 -0.0576819 0.0791999 -55.85 - 95 144.3 899 4 1 -0.12498 0.222766 -84.45 - 95 140.203 900 4 0 -0.131457 0.231257 -85.85 - 95 230.017 898 3 1 -0.254825 0.409309 -114.45 - 95 113.175 901 3 0 -0.262987 0.414161 -115.85 - 95 300.629 898 2 1 -0.426346 0.503254 -144.45 - 95 138.409 902 2 0 -0.432792 0.502196 -145.85 - 95 135.085 897 1 1 -0.57289 0.473478 -174.45 - 95 158.633 902 1 0 -0.580887 0.467958 -175.85 - 95 124.48 896 0 1 -0.747223 0.356963 -204.45 - 95 136.83 901 0 0 -0.750326 0.34796 -205.85 +Event: 85 +Number of tracker hits in this event = 11 + 85 181.65 900 5 0 0.0507002 0.0900549 -55.85 + 85 128.584 900 4 1 0.171616 0.211798 -84.45 + 85 145.3 900 4 0 0.180095 0.219235 -85.85 + 85 124.925 901 3 1 0.356239 0.382952 -114.45 + 85 121.135 901 3 0 0.361304 0.396897 -115.85 + 85 108.094 902 2 1 0.458341 0.668547 -144.45 + 85 135.388 903 2 0 0.466441 0.685356 -145.85 + 85 157.497 902 1 1 0.59466 1.00321 -174.45 + 85 201.584 904 1 0 0.600283 1.01717 -175.85 + 85 116.35 903 0 1 0.725247 1.29221 -204.45 + 85 146.915 906 0 0 0.733345 1.30234 -205.85 Number of digits in this event = 12 proton +Event: 86 +Number of tracker hits in this event = 13 + 86 141.935 899 3 1 -0.244128 0.185311 -114.45 + 86 117.775 900 3 0 -0.255297 0.19681 -115.85 + 86 179.178 897 2 1 -0.464636 0.447362 -144.45 + 86 123.943 902 2 0 -0.473365 0.458628 -145.85 + 86 248.481 897 1 1 -0.628701 0.69468 -174.45 + 86 170.104 903 1 0 -0.638115 0.703225 -175.85 + 86 320.946 896 0 1 -0.821236 0.822548 -204.45 + 86 149.251 903 0 0 -0.830165 0.825887 -205.85 + 86 89.0624 895 0 1 -0.85002 0.885741 -204.678 + 86 17.2276 1112 0 0 30.9824 42.4689 -206.25 + 86 74.7538 1111 0 0 31.0016 42.45 -206.229 + 86 57.3047 1097 0 0 35.007 39.4597 -206.25 + 86 20.4785 1049 0 0 29.6013 29.9233 -206.25 +Number of digits in this event = 10 +proton +Event: 87 +Number of tracker hits in this event = 121 + 87 139.637 900 4 1 0.191305 -0.0760263 -84.45 + 87 125.13 899 4 0 0.192193 -0.0841048 -85.85 + 87 31328.2 900 3 1 0.228236 -0.265107 -114.45 + 87 838.171 901 3 1 0.25 -0.258104 -114.465 + 87 170.6 860 3 0 -0.05 -7.91819 -115.867 + 87 318.95 859 3 0 -0.0545043 -8.05 -115.892 + 87 268.278 858 3 0 -0.0616234 -8.25 -115.929 + 87 284.849 857 3 0 -0.0697529 -8.45 -115.966 + 87 376.233 856 3 0 -0.0797043 -8.65 -116.004 + 87 274.683 855 3 0 -0.0893655 -8.85 -116.043 + 87 286.022 854 3 0 -0.0996904 -9.05 -116.075 + 87 266.959 853 3 0 -0.110556 -9.25 -116.106 + 87 263.986 852 3 0 -0.121167 -9.45 -116.137 + 87 285.377 851 3 0 -0.131767 -9.65 -116.169 + 87 332.263 850 3 0 -0.143244 -9.85 -116.2 + 87 170.283 849 3 0 -0.154328 -10.05 -116.232 + 87 196.982 899 5 0 0.176672 -0.05 -56.1682 + 87 93.8341 899 3 1 -0.0843285 0.05 -114.508 + 87 104.922 898 3 1 -0.25 0.216159 -114.528 + 87 130.181 897 3 1 -0.45 0.418417 -114.553 + 87 167.746 896 3 1 -0.65 0.616774 -114.579 + 87 127.457 895 3 1 -0.85 0.817494 -114.605 + 87 142.419 894 3 1 -1.05 1.0209 -114.633 + 87 267.506 893 3 1 -1.25 1.22535 -114.662 + 87 397.048 892 3 1 -1.45 1.43595 -114.692 + 87 148.545 891 3 1 -1.65 1.64743 -114.722 + 87 133.391 890 3 1 -1.85 1.85948 -114.749 + 87 274.056 889 3 1 -2.05 2.06685 -114.777 + 87 120.81 888 3 1 -2.25 2.27357 -114.804 + 87 122.831 887 3 1 -2.45 2.47856 -114.832 + 87 93.636 953 3 0 -10.0018 10.7272 -115.85 + 87 151.364 954 3 0 -10.1142 10.85 -115.865 + 87 138.126 955 3 0 -10.2978 11.05 -115.888 + 87 95.2806 956 3 0 -10.4801 11.25 -115.911 + 87 120.254 957 3 0 -10.6671 11.45 -115.934 + 87 181.488 958 3 0 -10.847 11.65 -115.958 + 87 170.924 959 3 0 -11.0248 11.85 -115.98 + 87 118.94 960 3 0 -11.1992 12.05 -116 + 87 102.733 961 3 0 -11.3729 12.25 -116.02 + 87 188.106 962 3 0 -11.5456 12.45 -116.039 + 87 164.32 963 3 0 -11.7188 12.65 -116.059 + 87 110.226 964 3 0 -11.892 12.85 -116.079 + 87 104.661 965 3 0 -12.0678 13.05 -116.098 + 87 119.725 966 3 0 -12.2451 13.25 -116.12 + 87 105.75 967 3 0 -12.4242 13.45 -116.142 + 87 203.149 968 3 0 -12.604 13.65 -116.163 + 87 139.847 969 3 0 -12.7839 13.85 -116.183 + 87 135.404 970 3 0 -12.9654 14.05 -116.204 + 87 121.653 971 3 0 -13.1497 14.25 -116.225 + 87 90.2711 93 2 1 -161.367 170.614 -144.45 + 87 116.032 92 2 1 -161.55 170.726 -144.458 + 87 159.041 91 2 1 -161.75 170.847 -144.466 + 87 122.423 90 2 1 -161.95 170.967 -144.475 + 87 149.565 89 2 1 -162.15 171.088 -144.486 + 87 115.153 88 2 1 -162.35 171.209 -144.498 + 87 177.516 87 2 1 -162.55 171.331 -144.509 + 87 172.627 86 2 1 -162.75 171.452 -144.521 + 87 156.487 85 2 1 -162.95 171.571 -144.535 + 87 147.778 84 2 1 -163.15 171.692 -144.545 + 87 116.291 83 2 1 -163.35 171.811 -144.556 + 87 134.584 82 2 1 -163.55 171.929 -144.567 + 87 198.432 81 2 1 -163.75 172.048 -144.579 + 87 106.21 80 2 1 -163.95 172.165 -144.589 + 87 146.501 79 2 1 -164.15 172.282 -144.598 + 87 118.102 78 2 1 -164.35 172.4 -144.606 + 87 163.455 77 2 1 -164.55 172.516 -144.613 + 87 202.152 76 2 1 -164.75 172.631 -144.619 + 87 204.45 75 2 1 -164.95 172.747 -144.622 + 87 129.706 74 2 1 -165.15 172.862 -144.625 + 87 115.801 73 2 1 -165.35 172.979 -144.629 + 87 120.749 72 2 1 -165.55 173.094 -144.634 + 87 102.521 71 2 1 -165.75 173.208 -144.639 + 87 117.861 70 2 1 -165.95 173.322 -144.643 + 87 110.756 69 2 1 -166.15 173.435 -144.646 + 87 114.136 68 2 1 -166.35 173.55 -144.652 + 87 154.076 67 2 1 -166.55 173.663 -144.659 + 87 134.289 66 2 1 -166.75 173.78 -144.664 + 87 115.858 65 2 1 -166.95 173.895 -144.669 + 87 183.962 64 2 1 -167.15 174.011 -144.675 + 87 129.918 63 2 1 -167.35 174.13 -144.684 + 87 101.365 62 2 1 -167.55 174.247 -144.693 + 87 131.912 61 2 1 -167.75 174.366 -144.702 + 87 133.461 60 2 1 -167.95 174.482 -144.712 + 87 134.789 59 2 1 -168.15 174.598 -144.72 + 87 105.081 58 2 1 -168.35 174.714 -144.732 + 87 139.755 57 2 1 -168.55 174.83 -144.744 + 87 158.94 56 2 1 -168.75 174.948 -144.759 + 87 110.348 55 2 1 -168.95 175.067 -144.773 + 87 109.446 54 2 1 -169.15 175.186 -144.787 + 87 197.974 53 2 1 -169.35 175.305 -144.8 + 87 141.768 52 2 1 -169.55 175.426 -144.814 + 87 141.864 51 2 1 -169.75 175.548 -144.827 + 87 239.452 50 2 1 -169.95 175.672 -144.84 + 87 66.756 49 2 1 -170.15 175.801 -144.846 + 87 139.515 909 3 0 -0.806977 2.01124 -115.85 + 87 478.179 896 3 0 -0.427489 -0.699541 -115.85 + 87 235.556 829 2 1 -14.1067 -9.82417 -144.45 + 87 95.9656 828 2 1 -14.25 -9.91432 -144.724 + 87 532.25 848 2 0 -14.8349 -10.2822 -145.85 + 87 189.745 752 1 1 -29.55 -19.5986 -174.45 + 87 340.287 751 1 1 -29.65 -19.6604 -174.648 + 87 28.2587 800 1 0 -30.2597 -20.0389 -175.85 + 87 271.863 799 1 0 -30.2775 -20.05 -175.885 + 87 159.375 676 0 1 -44.7614 -29.1128 -204.45 + 87 212.549 675 0 1 -44.85 -29.1635 -204.622 + 87 363.561 752 0 0 -45.4915 -29.5283 -205.85 + 87 111.415 903 3 0 1.14651 0.665308 -115.85 + 87 56.4974 904 3 0 1.32958 0.85 -116.124 + 87 125.485 1002 2 1 20.4637 19.9419 -144.45 + 87 49.7828 1003 2 1 20.65 20.1507 -144.735 + 87 70.6797 1004 2 0 21.3823 20.9502 -145.85 + 87 127.149 1005 2 0 21.4737 21.05 -145.989 + 87 109.243 1100 1 1 40.1059 41.3998 -174.45 + 87 75.7074 1101 1 1 40.25 41.578 -174.689 + 87 7.40992 1111 1 0 40.957 42.4378 -175.85 + 87 99.6794 1112 1 0 40.967 42.45 -175.866 + 87 54.1171 1113 1 0 41.1316 42.65 -176.136 + 87 43.693 1189 0 1 57.9769 63.3906 -204.45 + 87 150.395 1190 0 1 58.05 63.4721 -204.567 + 87 56.0761 1221 0 0 58.8367 64.3624 -205.85 + 87 165.962 1222 0 0 58.9139 64.45 -205.976 +Number of digits in this event = 84 +proton +Event: 88 +Number of tracker hits in this event = 15 + 88 145.513 900 3 1 0.139889 -0.319637 -114.45 + 88 131.677 898 3 0 0.142406 -0.337179 -115.85 + 88 145.485 900 2 1 0.203825 -0.700661 -144.45 + 88 252.195 896 2 0 0.209773 -0.706224 -145.85 + 88 142.979 901 1 1 0.332979 -0.837241 -174.45 + 88 85.4827 896 1 0 0.335773 -0.848758 -175.85 + 88 81.7058 895 1 0 0.336079 -0.85 -175.999 + 88 164.274 901 0 1 0.392553 -1.08526 -204.45 + 88 175.021 894 0 0 0.402203 -1.10195 -205.85 + 88 182.756 1414 1 1 102.95 -101.42 -174.689 + 88 73.1844 392 1 0 102.556 -101.621 -175.85 + 88 97.6687 393 1 0 102.581 -101.55 -176.051 + 88 2.70829 456 1 0 104.426 -88.659 -176.25 + 88 177.199 457 1 0 104.425 -88.65 -176.243 + 88 29.574 1234 1 1 66.8894 -96.8635 -174.824 +Number of digits in this event = 10 +proton +Event: 89 +Number of tracker hits in this event = 24 + 89 205.778 899 5 1 -0.2414 -0.0555111 -54.45 + 89 121.749 899 5 0 -0.253024 -0.0587549 -55.85 + 89 126.692 897 4 1 -0.491434 -0.130867 -84.45 + 89 169.88 899 4 0 -0.509622 -0.135448 -85.85 + 89 423.188 895 3 1 -0.888419 -0.237029 -114.45 + 89 115.17 899 3 0 -0.909112 -0.243205 -115.85 + 89 209.561 893 2 1 -1.35511 -0.448073 -144.45 + 89 125.718 897 2 0 -1.37323 -0.455678 -145.85 + 89 135.284 891 1 1 -1.74406 -0.630355 -174.45 + 89 201.269 897 1 0 -1.76296 -0.636982 -175.85 + 89 127.939 889 0 1 -2.13778 -0.793586 -204.45 + 89 126.047 896 0 0 -2.15502 -0.805963 -205.85 + 89 223.814 892 2 1 -1.45004 -0.100622 -144.481 + 89 123.147 891 2 1 -1.65 0.633128 -144.544 + 89 145.538 890 2 1 -1.8501 0.887713 -144.537 + 89 18.5565 889 2 1 -2.05 1.31937 -144.783 + 89 26.6939 912 2 0 -2.82506 2.591 -145.85 + 89 68.946 913 2 0 -2.85215 2.65013 -145.882 + 89 46.3014 914 2 0 -2.85735 2.85 -145.895 + 89 152.469 886 2 1 -2.81035 5.54239 -144.85 + 89 191.907 942 2 0 -3.94336 8.482 -145.85 + 89 101.626 943 2 0 -4.10382 8.65 -146.072 + 89 108.67 894 3 1 -1.05 -0.732017 -114.469 + 89 184.209 893 3 1 -1.25 -0.758237 -114.592 +Number of digits in this event = 18 +proton +Event: 90 +Number of tracker hits in this event = 13 + 90 217.029 899 3 1 -0.0594943 0.213087 -114.45 + 90 223.408 900 3 0 -0.0618911 0.219045 -115.85 + 90 121.794 899 2 1 -0.0940786 0.344535 -144.45 + 90 125.602 901 2 0 -0.0963304 0.351342 -145.85 + 90 120.267 899 1 1 -0.145424 0.492844 -174.45 + 90 133.447 902 1 0 -0.154283 0.497106 -175.85 + 90 137.81 898 0 1 -0.346909 0.577798 -204.45 + 90 126.121 902 0 0 -0.354713 0.576831 -205.85 + 90 98.6088 896 3 0 0.55304 -0.720456 -115.85 + 90 83.725 895 3 0 0.602132 -0.85 -116.048 + 90 43.2506 626 3 0 13.1191 -54.6917 -116.25 + 90 104.247 625 3 0 13.1274 -54.85 -116.188 + 90 12.8038 624 3 0 13.0314 -55.0501 -116.222 +Number of digits in this event = 9 +proton +Event: 91 +Number of tracker hits in this event = 7 + 91 181.762 899 1 1 -0.143018 -1.09413 -174.45 + 91 124.53 894 1 0 -0.146066 -1.10432 -175.85 + 91 110.852 899 0 1 -0.193495 -1.32302 -204.45 + 91 142.188 893 0 0 -0.19848 -1.33959 -205.85 + 91 1.386 896 2 0 -0.0500169 -0.847134 -146.05 + 91 33.3832 895 2 0 -0.0515767 -0.850028 -146.048 + 91 126.449 899 4 0 -0.05 -0.0613872 -85.927 +Number of digits in this event = 5 +proton +Event: 92 +Number of tracker hits in this event = 11 + 92 157.529 902 3 1 0.601134 -0.153611 -114.45 + 92 113.88 899 3 0 0.637345 -0.163017 -115.85 + 92 114.101 906 2 1 1.3917 -0.332182 -144.45 + 92 119.007 898 2 0 1.42592 -0.345998 -145.85 + 92 289.823 910 1 1 2.11634 -0.626996 -174.45 + 92 98.6087 897 1 0 2.15236 -0.645322 -175.85 + 92 15.6215 896 1 0 2.16165 -0.65 -176.209 + 92 203.706 914 0 1 2.91421 -1.00915 -204.45 + 92 158.11 895 0 0 2.95212 -1.02194 -205.85 + 92 185.26 909 1 1 2.04995 -0.723159 -174.748 + 92 197.538 900 4 0 -0.0842184 0.05 -86.2217 +Number of digits in this event = 7 +proton +Event: 93 +Number of tracker hits in this event = 7 + 93 142.674 899 3 1 -0.0636216 0.111025 -114.45 + 93 132.159 900 3 0 -0.0695014 0.111689 -115.85 + 93 200.525 899 2 1 -0.188097 0.135329 -144.45 + 93 157.54 900 2 0 -0.19521 0.129171 -145.85 + 93 155.164 897 0 1 -0.475294 -0.12898 -204.45 + 93 125.92 899 0 0 -0.477868 -0.136968 -205.85 + 93 79.2339 900 4 1 0.0500606 0.0830506 -84.539 +Number of digits in this event = 10 +proton +Event: 94 +Number of tracker hits in this event = 18 + 94 119.312 897 4 1 -0.580164 0.0597715 -84.45 + 94 140.451 900 4 0 -0.600765 0.056563 -85.85 + 94 124.594 892 2 1 -1.55341 -0.0534647 -144.45 + 94 127.126 899 2 0 -1.57268 -0.0625631 -145.85 + 94 226.066 890 1 1 -1.96071 -0.236527 -174.45 + 94 126.717 899 1 0 -1.97494 -0.240824 -175.85 + 94 142.79 888 0 1 -2.26058 -0.328789 -204.45 + 94 155.619 898 0 0 -2.27755 -0.329479 -205.85 + 94 68.6282 895 3 1 -1.01188 0.0515957 -114.45 + 94 106.445 896 3 1 -0.85 0.240016 -114.568 + 94 131.893 897 3 1 -0.65 0.50026 -114.718 + 94 84.3099 915 3 0 2.76499 3.07115 -115.85 + 94 64.478 916 3 0 2.89641 3.25 -115.907 + 94 53.2346 917 3 0 2.96378 3.45 -115.921 + 94 80.5004 918 3 0 3.03027 3.65 -115.925 + 94 49.0916 919 3 0 3.06099 3.85 -116.039 + 94 96.2837 920 3 0 3.12382 4.05 -116.147 + 94 2.61843 921 3 0 3.31294 4.25 -116.248 +Number of digits in this event = 9 +proton +Event: 95 +Number of tracker hits in this event = 14 + 95 140.248 900 5 1 0.0991306 0.0620389 -54.45 + 95 144.981 900 5 0 0.105339 0.0680282 -55.85 + 95 40.9949 900 4 1 0.248983 0.20981 -84.45 + 95 85.2573 901 4 1 0.25 0.210305 -84.5857 + 95 135.715 900 4 0 0.259066 0.216214 -85.85 + 95 114.478 902 3 1 0.451301 0.35047 -114.45 + 95 175.471 901 3 0 0.460458 0.353529 -115.85 + 95 175.782 902 2 1 0.626447 0.415307 -144.45 + 95 153.352 901 2 0 0.633488 0.41752 -145.85 + 95 144.835 903 1 1 0.794213 0.471443 -174.45 + 95 126.567 902 1 0 0.800654 0.476708 -175.85 + 95 144.292 904 0 1 0.923142 0.583399 -204.45 + 95 160.91 902 0 0 0.929945 0.590253 -205.85 + 95 80.2622 899 6 0 0.089409 -0.0500295 -25.9817 +Number of digits in this event = 11 +proton Event: 96 -Number of tracker hits in this event = 10 - 96 136.996 899 4 1 -0.100079 -0.0675733 -84.45 - 96 140.374 899 4 0 -0.0977481 -0.0719102 -85.85 - 96 247.236 899 3 1 -0.0636771 -0.14857 -114.45 - 96 27.7931 899 3 0 -0.0509813 -0.152739 -115.85 - 96 125.084 900 2 1 0.206105 -0.162981 -144.45 - 96 131.926 899 2 0 0.22112 -0.163286 -145.85 - 96 142.068 902 1 1 0.530178 -0.173777 -174.45 - 96 124.922 899 1 0 0.547542 -0.172356 -175.85 - 96 112.732 904 0 1 0.878337 -0.156819 -204.45 - 96 113.98 899 0 0 0.890118 -0.151714 -205.85 +Number of tracker hits in this event = 9 + 96 141.668 899 3 1 -0.155064 -0.169105 -114.45 + 96 132.844 899 3 0 -0.155773 -0.172534 -115.85 + 96 113.346 899 2 1 -0.204503 -0.223754 -144.45 + 96 172.246 899 2 0 -0.207455 -0.2235 -145.85 + 96 103.715 898 1 1 -0.263698 -0.206674 -174.45 + 96 132.264 899 1 0 -0.275591 -0.205206 -175.85 + 96 107.869 897 0 1 -0.54083 -0.16439 -204.45 + 96 127.533 899 0 0 -0.558035 -0.16084 -205.85 + 96 69.5807 1227 13 1 65.5216 -12.2613 185.305 Number of digits in this event = 8 proton Event: 97 -Number of tracker hits in this event = 13 - 97 184.277 898 4 1 -0.280654 0.0679006 -84.45 - 97 145.321 900 4 0 -0.288837 0.0738569 -85.85 - 97 123.188 897 3 1 -0.462306 0.199907 -114.45 - 97 364.52 900 3 0 -0.473791 0.205628 -115.85 - 97 285.264 896 2 1 -0.713245 0.341493 -144.45 - 97 144.861 901 2 0 -0.72943 0.346463 -145.85 - 97 122.171 894 1 1 -1.05795 0.452019 -174.45 - 97 91.3786 902 1 0 -1.07381 0.450912 -175.85 - 97 207.119 893 0 1 -1.38108 0.432057 -204.45 - 97 134.102 901 0 0 -1.39707 0.434418 -205.85 - 97 81.9017 895 2 1 -0.850082 0.795864 -144.796 - 97 309.413 894 2 1 -1.05 0.930301 -144.826 - 97 173.663 899 4 1 -0.25 0.0851151 -84.6615 -Number of digits in this event = 12 +Number of tracker hits in this event = 19 + 97 149.913 899 4 1 -0.113553 -0.171386 -84.45 + 97 129.427 899 4 0 -0.115958 -0.174758 -85.85 + 97 116.903 899 3 1 -0.157462 -0.234623 -114.45 + 97 147.331 899 3 0 -0.158635 -0.234491 -115.85 + 97 157.941 899 2 1 -0.158773 -0.244513 -144.45 + 97 109.798 899 2 0 -0.155421 -0.242963 -145.85 + 97 132.763 899 1 1 -0.0893446 -0.206811 -174.45 + 97 124.131 899 1 0 -0.0932928 -0.212564 -175.85 + 97 228.506 899 0 1 -0.165446 -0.352989 -204.45 + 97 126.545 898 0 0 -0.168384 -0.355834 -205.85 + 97 16.3345 899 6 1 -0.0581031 0.0500211 -24.8115 + 97 101.069 902 6 0 -0.874135 0.584242 -25.8501 + 97 55.7267 903 6 0 -0.968258 0.65006 -26.0977 + 97 152.25 827 4 1 -14.58 -32.3207 -84.85 + 97 255.151 867 8 0 -143.567 -6.51045 33.75 + 97 27.0275 1731 10 0 88.6621 166.35 93.8749 + 97 178.465 1730 10 0 88.7263 166.35 94.0243 + 97 112.8 1729 10 0 88.9972 166.15 93.9274 + 97 211.381 1728 10 0 89.0875 165.95 93.927 +Number of digits in this event = 15 proton Event: 98 -Number of tracker hits in this event = 52 - 98 136.443 899 5 1 -0.0645149 -0.0524855 -54.45 - 98 150.975 899 5 0 -0.0711833 -0.0541157 -55.85 - 98 136.398 899 4 1 -0.201939 -0.0951436 -84.45 - 98 126.494 899 4 0 -0.212828 -0.0896668 -85.85 - 98 156.035 896 2 1 -0.654075 0.180116 -144.45 - 98 113.471 900 2 0 -0.668706 0.186325 -145.85 - 98 158.959 896 1 1 -0.802033 0.52281 -174.45 - 98 142.741 902 1 0 -0.807569 0.542475 -175.85 - 98 129.853 895 0 1 -0.905825 0.987459 -204.45 - 98 153.139 904 0 0 -0.909717 1.00945 -205.85 - 98 150.235 1408 0 0 -106.732 101.756 -206.25 - 98 105.006 1409 0 0 -106.985 101.95 -206.04 - 98 76.8801 358 0 1 -108.388 103.022 -204.85 - 98 116.812 357 0 1 -108.55 103.147 -204.711 - 98 70.4436 356 0 1 -108.75 103.301 -204.541 - 98 82.1124 1580 1 0 -150.149 136.243 -176.25 - 98 104.141 1581 1 0 -150.284 136.35 -176.159 - 98 145.35 1582 1 0 -150.559 136.55 -175.997 - 98 20.9005 138 1 1 -152.521 138.034 -174.85 - 98 116.932 137 1 1 -152.55 138.056 -174.833 - 98 89.8617 136 1 1 -152.75 138.215 -174.71 - 98 81.0398 135 1 1 -152.95 138.385 -174.586 - 98 7.73836 134 1 1 -153.15 138.547 -174.463 - 98 47.8424 1356 0 0 -99.8333 91.5238 -206.25 - 98 94.8665 1357 0 0 -99.9189 91.55 -206.145 - 98 138.073 396 0 1 -100.808 91.8481 -204.85 - 98 115.498 395 0 1 -100.95 91.8876 -204.667 - 98 61.7182 1205 1 0 -115.932 61.2167 -176.25 - 98 66.6576 1204 1 0 -115.981 61.0497 -176.127 - 98 56.6811 1203 1 0 -116.011 60.8497 -176.015 - 98 47.2939 1202 1 0 -116.025 60.65 -175.914 - 98 79.3068 319 1 1 -116.321 58.3923 -174.85 - 98 529.075 318 1 1 -116.35 58.1399 -174.738 - 98 28.621 1230 2 0 -107.15 66.2124 -146.25 - 98 102.781 1231 2 0 -107.111 66.25 -146.146 - 98 31.7546 371 2 1 -105.835 66.3062 -144.85 - 98 203.994 372 2 1 -105.75 66.2843 -144.741 - 98 108.071 373 2 1 -105.55 66.1819 -144.622 - 98 78.8902 374 2 1 -105.35 66.2769 -144.788 - 98 84.022 375 2 1 -105.15 66.3479 -144.811 - 98 43.9436 376 2 1 -104.95 66.3392 -144.584 - 98 13.3842 317 1 1 -116.55 57.7182 -174.566 - 98 111.219 1227 0 1 65.45 28.6982 -204.793 - 98 165.074 1438 4 0 18.0768 107.946 -86.0761 - 98 28.7341 1228 0 1 65.65 28.953 -204.531 - 98 12.1343 1758 3 1 171.915 59.7234 -114.45 - 98 58.3873 1759 3 1 171.95 59.7094 -114.476 - 98 39.6162 1760 3 1 172.15 59.6606 -114.602 - 98 54.2598 1761 3 1 172.35 59.6437 -114.649 - 98 79.4197 1762 3 1 172.55 59.6539 -114.643 - 98 61.414 1763 3 1 172.75 59.7522 -114.615 - 98 85.7957 1197 3 0 177.933 59.6388 -115.85 -Number of digits in this event = 18 +Number of tracker hits in this event = 11 + 98 158.163 899 4 1 -0.183769 -0.129048 -84.45 + 98 184.747 899 4 0 -0.188192 -0.129088 -85.85 + 98 131.338 898 3 1 -0.293225 -0.133878 -114.45 + 98 193.53 899 3 0 -0.305998 -0.137041 -115.85 + 98 120.928 897 2 1 -0.588956 -0.188135 -144.45 + 98 125.646 899 2 0 -0.603939 -0.193201 -145.85 + 98 145.103 895 1 1 -0.905417 -0.285935 -174.45 + 98 162.517 898 1 0 -0.914007 -0.285663 -175.85 + 98 132.123 894 0 1 -1.08009 -0.277455 -204.45 + 98 169.812 898 0 0 -1.08798 -0.275872 -205.85 + 98 299.98 895 0 1 -1.05 -0.316701 -204.557 +Number of digits in this event = 15 proton Event: 99 -Number of tracker hits in this event = 10 - 99 139.504 900 5 1 0.0710887 0.0758984 -54.45 - 99 147.176 900 5 0 0.0712861 0.0760065 -55.85 - 99 151.737 900 4 1 0.0738761 0.0799239 -84.45 - 99 155.332 900 4 0 0.0748588 0.0860161 -85.85 - 99 224.659 900 3 1 0.103394 0.211096 -114.45 - 99 186.648 900 3 0 0.0998521 0.213947 -115.85 - 99 283.092 899 1 1 -0.0983019 0.369835 -174.45 - 99 177.994 901 1 0 -0.100948 0.370791 -175.85 - 99 204.852 899 0 1 -0.144464 0.394448 -204.45 - 99 102.475 901 0 0 -0.152325 0.396224 -205.85 -Number of digits in this event = 10 +Number of tracker hits in this event = 14 + 99 138.161 900 5 1 0.0658727 -0.0857044 -54.45 + 99 170.673 899 5 0 0.0700647 -0.0861296 -55.85 + 99 140.364 900 4 1 0.145145 -0.086789 -84.45 + 99 144.406 899 4 0 0.145754 -0.0854077 -85.85 + 99 118.532 900 3 1 0.16309 -0.0677524 -114.45 + 99 160.189 899 3 0 0.163884 -0.060149 -115.85 + 99 216.627 900 2 1 0.198727 0.108158 -144.45 + 99 116.036 900 2 0 0.203223 0.120186 -145.85 + 99 131.198 901 1 1 0.275511 0.379026 -174.45 + 99 122.073 901 1 0 0.268658 0.396106 -175.85 + 99 119.535 900 0 1 0.115098 0.720953 -204.45 + 99 124.327 903 0 0 0.110219 0.737632 -205.85 + 99 3.24637 23 14 1 -175.55 108.997 215.336 + 99 46.9667 827 0 1 -14.6042 -76.822 -204.84 +Number of digits in this event = 13 Run terminated. Run Summary Number of events processed : 100 - User=2.41s Real=3.66s Sys=0.03s + User=1.62s Real=1.7s Sys=0.05s End of Run 0 /gun/particle gamma /gun/energy 1 GeV @@ -2913,331 +2911,352 @@ Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 1 -Number of tracker hits in this event = 1 - 1 152.559 561 6 0 -44.1817 -67.7226 -26.25 -Number of digits in this event = 3 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 2 -Number of tracker hits in this event = 21 - 2 80.8365 736 5 0 -65.1841 -32.71 -56.25 - 2 129.581 735 5 0 -65.4569 -32.85 -56.1266 - 2 76.4151 567 5 1 -66.5819 -33.4681 -54.8499 - 2 68.1461 566 5 1 -66.65 -33.5172 -54.7827 - 2 347.756 565 5 1 -66.85 -33.6492 -54.7375 - 2 312.021 564 5 1 -67.05 -33.7555 -54.6488 - 2 20.6595 563 5 1 -67.25 -34.2367 -54.5815 - 2 13.9796 701 5 0 -65.2902 -39.8217 -55.85 - 2 16.1982 700 5 0 -65.2857 -39.85 -55.8542 - 2 0.325215 569 5 1 -66.2491 -41.2057 -54.85 - 2 347.398 568 5 1 -66.25 -41.2068 -54.8491 - 2 166.452 687 5 0 -66.1002 -42.4502 -55.85 - 2 27.4757 688 5 0 -66.0362 -42.45 -55.8955 - 2 99.7162 900 3 1 0.139696 -0.0779884 -114.45 - 2 198.469 899 3 0 0.153845 -0.0819936 -115.85 - 2 111.538 901 2 1 0.4266 -0.169504 -144.45 - 2 140.561 899 2 0 0.440114 -0.169182 -145.85 - 2 101.434 903 1 1 0.682296 -0.14285 -174.45 - 2 117.358 899 1 0 0.69749 -0.13838 -175.85 - 2 181.956 904 0 1 1.03001 -0.0682723 -204.45 - 2 111.094 899 0 0 1.04968 -0.0603031 -205.85 -Number of digits in this event = 9 -gamma -Event: 3 -Number of tracker hits in this event = 3 - 3 26.6983 413 8 0 -123.403 -97.4538 33.75 - 3 248.932 412 8 0 -123.465 -97.55 33.9648 - 3 25.1239 502 1 1 -79.6061 128.547 -174.85 +Number of tracker hits in this event = 0 Number of digits in this event = 2 gamma +Event: 3 +Number of tracker hits in this event = 2 + 3 112.881 996 2 0 -36.6339 19.2615 -146.25 + 3 67.1582 783 2 1 -23.45 23.6174 -144.699 +Number of digits in this event = 1 +gamma Event: 4 -Number of tracker hits in this event = 50 - 4 127.199 898 4 1 -0.278534 -0.393443 -84.45 - 4 209.234 898 4 0 -0.28682 -0.405303 -85.85 - 4 142.581 897 3 1 -0.465027 -0.683368 -114.45 - 4 195.612 896 3 0 -0.467994 -0.703506 -115.85 - 4 316.349 897 2 1 -0.537549 -1.08072 -144.45 - 4 75.9956 898 2 1 -0.45 -1.13635 -144.687 - 4 14.1847 893 2 0 0.05 -1.43946 -146.036 - 4 52.3787 892 2 0 0.0678467 -1.45 -146.087 - 4 130.778 949 1 1 9.89318 -7.33627 -174.45 - 4 78.7523 860 1 0 10.3361 -7.94114 -175.85 - 4 51.2876 859 1 0 10.4099 -8.05 -176.106 - 4 158.81 993 0 1 18.732 -22.3471 -204.45 - 4 308.929 784 0 0 19.0796 -23.0628 -205.85 - 4 17.0694 783 0 0 19.192 -23.25 -206.211 - 4 484.582 456 3 0 -78.7797 -88.6637 -116.25 - 4 63.4241 455 3 0 -79.069 -88.85 -115.967 - 4 109.011 899 2 0 -0.0534192 -0.127883 -145.85 - 4 309.52 895 1 0 0.0793914 -0.925829 -175.85 - 4 139.808 908 0 1 1.69051 -2.83913 -204.45 - 4 111.332 885 0 0 1.73184 -2.8627 -205.85 - 4 232.425 895 2 0 -0.563086 -1.0387 -145.85 - 4 132.235 896 1 1 -0.808981 -1.24834 -174.45 - 4 144.817 893 1 0 -0.838604 -1.25821 -175.85 - 4 255.885 892 0 1 -1.56228 -1.43739 -204.45 - 4 131.496 892 0 0 -1.6104 -1.47653 -205.85 - 4 195.208 900 1 1 0.121973 -0.287651 -174.45 - 4 16.0789 893 0 1 -1.44663 -1.37034 -204.45 - 4 138.319 894 0 0 -1.5569 -1.20248 -205.85 - 4 133.322 898 1 1 -0.36363 -1.01844 -174.45 - 4 130.992 896 0 1 -0.710451 -0.544555 -204.45 - 4 62.213 897 0 0 -0.731554 -0.461591 -205.85 - 4 62.2111 898 0 0 -0.734766 -0.45 -206.048 - 4 8.3898 695 0 1 -40.931 -22.7155 -204.45 - 4 76.6188 1481 0 0 -46.2476 116.436 -206.25 - 4 66.1489 117 7 1 -156.55 162.792 5.18699 - 4 57.405 116 7 1 -156.75 162.933 5.51111 - 4 63.4919 115 7 1 -156.95 162.891 5.5395 - 4 105.192 114 7 1 -157.15 162.892 5.50161 - 4 58.9666 113 7 1 -157.35 162.785 5.48699 - 4 64.4674 1161 4 0 43.2739 52.3457 -86.25 - 4 253.601 1162 4 0 43.3754 52.4501 -86.108 - 4 96.7085 901 4 1 0.348343 0.0985559 -84.45 - 4 103.122 900 4 0 0.328119 0.0933309 -85.85 - 4 2.78984 894 2 1 -1.2498 -0.252655 -144.45 - 4 127.698 893 2 1 -1.25 -0.252768 -144.458 - 4 119.977 898 2 0 -1.28587 -0.271672 -145.85 - 4 161.52 890 1 1 -1.95311 -0.535775 -174.45 - 4 126.75 897 1 0 -1.96567 -0.539254 -175.85 - 4 115.584 889 0 1 -2.16086 -0.738687 -204.45 - 4 100.937 896 0 0 -2.19102 -0.735973 -205.85 -Number of digits in this event = 27 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 5 -Number of tracker hits in this event = 6 - 5 127.021 900 0 1 0.05 0.25646 -204.642 - 5 125.565 902 0 0 0.238307 0.53584 -205.85 - 5 122.46 899 1 1 -0.112193 0.212395 -174.45 - 5 121.248 900 1 0 -0.107704 0.240439 -175.85 - 5 122.414 899 0 1 -0.0613684 0.767248 -204.45 - 5 115.653 903 0 0 -0.0601929 0.791674 -205.85 -Number of digits in this event = 6 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 6 -Number of tracker hits in this event = 16 - 6 137.757 900 4 1 0.0625927 0.603073 -84.45 - 6 167.028 897 3 1 -0.626402 0.457485 -114.45 - 6 199.219 901 3 0 -0.645047 0.443925 -115.85 - 6 114.511 894 2 1 -1.07008 0.143385 -144.45 - 6 134.002 900 2 0 -1.08853 0.145646 -145.85 - 6 406.052 892 1 1 -1.49223 0.192968 -174.45 - 6 382.075 900 1 0 -1.53146 0.213125 -175.85 - 6 183.383 888 0 1 -2.28053 0.690814 -204.45 - 6 112.617 903 0 0 -2.29837 0.816235 -205.85 - 6 19.9645 904 0 0 -2.30437 0.85 -206.205 - 6 104.653 899 4 1 -0.105876 -0.0587134 -84.45 - 6 97.1626 899 4 0 -0.102351 -0.0616258 -85.85 - 6 229.605 901 1 0 0.05 0.261701 -175.925 - 6 134.282 902 0 1 0.503583 0.604645 -204.45 - 6 113.716 902 0 0 0.525906 0.623642 -205.85 - 6 266.822 899 3 0 -0.264782 -0.0866298 -115.85 -Number of digits in this event = 12 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 7 -Number of tracker hits in this event = 14 - 7 135.825 899 1 1 -0.0950054 -0.0790719 -174.45 - 7 166.106 899 1 0 -0.0820241 -0.0889371 -175.85 - 7 117.276 900 0 1 0.245101 -0.192145 -204.45 - 7 152.095 899 0 0 0.248635 -0.183523 -205.85 - 7 258.266 893 0 1 -1.26857 0.702461 -204.45 - 7 98.5932 903 0 0 -1.35397 0.756728 -205.85 - 7 120.213 894 0 1 -1.25 0.777736 -204.541 - 7 111.331 892 0 1 -1.45007 1.19538 -204.481 - 7 116.95 891 0 1 -1.65 1.31881 -204.615 - 7 203.146 890 0 1 -1.85 1.33279 -204.7 - 7 8.52991 900 1 1 0.0500442 0.0575883 -174.829 - 7 97.2299 909 1 1 1.9387 -0.657911 -174.85 - 7 106.19 1027 1 0 -83.4613 25.6349 -176.25 - 7 350.816 1026 1 0 -83.4559 25.4499 -176.092 -Number of digits in this event = 9 +Number of tracker hits in this event = 10 + 7 110.593 899 1 1 -0.0877872 -0.151588 -174.45 + 7 108.085 899 1 0 -0.0854086 -0.14633 -175.85 + 7 67.906 743 2 0 -18.6252 -31.4209 -146.25 + 7 239.337 744 2 0 -18.6669 -31.2499 -146.177 + 7 174.734 1211 4 1 62.3684 -55.527 -84.85 + 7 65.6978 899 2 0 -0.05 -0.116753 -146.048 + 7 106.697 895 1 1 -0.969899 0.635994 -174.45 + 7 216.783 903 1 0 -0.965894 0.708841 -175.85 + 7 98.4909 895 0 1 -0.945889 2.03713 -204.45 + 7 147.684 909 0 0 -0.915656 2.03991 -205.85 +Number of digits in this event = 6 gamma Event: 8 -Number of tracker hits in this event = 6 - 8 33.9649 61 0 0 125.843 -167.869 -206.25 - 8 30.5906 60 0 0 125.859 -167.95 -206.222 - 8 19.0516 877 0 0 30.6338 -4.62391 -206.25 - 8 101.965 876 0 0 30.661 -4.65007 -206.189 - 8 236.294 875 0 0 30.6721 -4.85006 -206.139 - 8 151.274 899 0 0 -0.0926437 -0.138432 -205.85 -Number of digits in this event = 3 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 9 -Number of tracker hits in this event = 9 - 9 100.547 1046 2 0 -24.0408 29.3413 -146.25 - 9 22.5623 1293 1 0 -8.40321 78.65 -176.046 - 9 58.0298 1411 0 1 102.35 170.478 -204.661 - 9 50.4323 857 1 1 -8.60915 79.535 -174.85 - 9 243.114 856 1 1 -8.65 79.6198 -174.729 - 9 17.6014 1300 1 0 -9.90445 80.2413 -175.85 - 9 141.998 1301 1 0 -9.96296 80.25 -175.892 - 9 198.868 1206 1 0 -0.475568 61.43 -176.25 - 9 289.959 1205 1 0 -0.558428 61.2499 -176.02 -Number of digits in this event = 5 +Number of tracker hits in this event = 23 + 9 31.9707 898 2 1 -0.314522 -0.0601249 -144.45 + 9 129.366 900 2 0 -0.802694 0.180506 -145.85 + 9 445.383 901 2 0 -0.933408 0.25 -146.225 + 9 22.6205 846 1 1 -10.8235 5.45219 -174.45 + 9 110.908 845 1 1 -10.85 5.46873 -174.512 + 9 48.8735 928 1 0 -11.4538 5.80938 -175.85 + 9 74.7035 929 1 0 -11.5243 5.85 -176.006 + 9 16.6397 778 0 1 -24.4138 13.6005 -204.45 + 9 116.487 777 0 1 -24.45 13.613 -204.499 + 9 24.2779 776 0 1 -24.65 13.6833 -204.777 + 9 190.667 969 0 0 -25.4526 13.9468 -205.85 + 9 69.8462 897 2 1 -0.503378 -0.134494 -144.45 + 9 30.7762 896 2 1 -0.65 -0.0676323 -144.615 + 9 583.136 828 1 1 -14.3939 10.8847 -174.45 + 9 305.22 827 1 1 -14.45 9.94141 -174.706 + 9 226.582 829 1 1 -14.25 9.05481 -174.518 + 9 191.047 830 1 1 -14.05 8.72885 -174.491 + 9 141.313 826 1 1 -14.65 7.46344 -174.668 + 9 209.837 825 1 1 -14.85 7.23162 -174.666 + 9 29.374 902 2 0 -1.38343 0.450032 -146.171 + 9 188.807 900 0 1 0.13436 0.173155 -204.45 + 9 126.376 900 0 0 0.141985 0.157706 -205.85 + 9 208.01 1232 0 1 66.45 36.1795 -204.554 +Number of digits in this event = 13 gamma Event: 10 Number of tracker hits in this event = 0 -Number of digits in this event = 2 -gamma -Event: 11 -Number of tracker hits in this event = 2 - 11 120.449 898 0 1 -0.322944 0.152698 -204.45 - 11 146.298 900 0 0 -0.330468 0.17386 -205.85 -Number of digits in this event = 4 -gamma -Event: 12 -Number of tracker hits in this event = 1 - 12 117.44 899 0 1 -0.0654364 0.0748368 -204.45 Number of digits in this event = 1 gamma -Event: 13 +Event: 11 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma +Event: 12 +Number of tracker hits in this event = 65 + 12 144.251 902 5 1 0.547837 0.302963 -54.45 + 12 188.601 901 5 0 0.483529 0.417706 -55.85 + 12 141.754 897 4 1 -0.551239 2.67302 -84.45 + 12 133.357 913 4 0 -0.513101 2.75336 -85.85 + 12 94.2989 902 3 1 0.596228 4.42117 -114.45 + 12 238.812 921 3 0 0.568614 4.36444 -115.85 + 12 162.126 900 1 1 0.173032 3.97248 -174.45 + 12 6.31957 917 1 0 -0.276708 3.45678 -175.85 + 12 113.784 916 1 0 -0.284281 3.45 -175.867 + 12 121.298 818 1 0 20.6043 -16.4007 -176.25 + 12 70.276 817 1 0 20.8366 -16.45 -176.037 + 12 219.532 1010 1 1 22.1127 -16.7067 -174.85 + 12 67.704 1011 1 1 22.2502 -16.7514 -174.717 + 12 29.8481 1012 1 1 22.45 -16.8227 -174.518 + 12 99.8457 829 2 0 20.7613 -14.2101 -146.25 + 12 111.965 1004 2 1 20.8662 -14.1874 -144.85 + 12 159.018 655 3 0 54.1609 -48.8522 -116.25 + 12 63.3736 656 3 0 54.417 -48.85 -115.962 + 12 463.409 1174 3 1 54.8722 -48.5114 -114.85 + 12 48.9421 1175 3 1 55.05 -48.1131 -114.507 + 12 137.254 900 4 1 0.157823 0.267786 -84.45 + 12 153.811 901 4 0 0.155202 0.268901 -85.85 + 12 167.28 900 3 1 0.0800324 0.255787 -114.45 + 12 120.21 901 3 0 0.0665797 0.251747 -115.85 + 12 108.602 899 2 1 -0.174746 0.207817 -144.45 + 12 306.78 900 2 0 -0.165808 0.202102 -145.85 + 12 203.669 900 1 0 0.0623648 0.1235 -175.85 + 12 163.235 902 0 1 0.474246 0.0740876 -204.45 + 12 223.137 900 0 0 0.504136 0.0800604 -205.85 + 12 118.014 893 1 1 -1.27697 -0.578483 -174.45 + 12 225.016 896 1 0 -1.3033 -0.832618 -175.85 + 12 48.9057 887 1 1 -2.54108 -1.03146 -174.85 + 12 217.669 886 1 1 -2.65 -1.06231 -174.703 + 12 349.349 885 1 1 -2.85 -1.03207 -174.478 + 12 137.517 1668 6 1 153.85 16.3004 -24.85 + 12 4.43898 1669 6 1 153.95 16.2976 -24.763 + 12 252.1 900 2 1 0.232902 0.515519 -144.45 + 12 131.782 902 2 0 0.24693 0.547884 -145.85 + 12 274.012 902 1 1 0.540814 1.15253 -174.45 + 12 123.814 905 1 0 0.52338 1.15901 -175.85 + 12 212.733 901 0 1 0.290539 1.14262 -204.45 + 12 139.786 905 0 0 0.31739 1.13443 -205.85 + 12 144.583 862 1 0 0.620045 -7.47329 -175.85 + 12 148.746 922 0 1 4.52259 -3.99193 -204.45 + 12 13.9198 884 0 0 4.944 -3.08418 -205.85 + 12 167.519 885 0 0 4.95898 -3.05 -205.901 + 12 32.7378 886 0 0 5.04044 -2.85 -206.171 + 12 48.177 901 0 0 5.75134 0.354608 -206.25 + 12 160.166 928 0 1 5.7444 -0.691082 -204.85 + 12 86.0461 821 1 0 -7.84862 -15.7509 -176.25 + 12 126.545 820 1 0 -7.96135 -15.85 -176.078 + 12 120.806 854 1 1 -9.10409 -16.3975 -174.85 + 12 143.853 853 1 1 -9.25 -16.4501 -174.71 + 12 94.4533 849 1 1 -10.0839 -16.7374 -174.45 + 12 294.876 848 1 1 -10.25 -16.7467 -174.673 + 12 205.081 850 1 1 -10.0454 -16.7907 -174.45 + 12 39.1583 851 1 1 -9.85 -16.4433 -174.798 + 12 5.89583 826 1 0 -8.73747 -14.6642 -175.85 + 12 107.672 827 1 0 -8.72713 -14.65 -175.858 + 12 93.437 828 1 0 -8.58724 -14.4499 -176.046 + 12 249.489 396 1 1 -100.75 63.1853 -174.762 + 12 59.483 180 1 0 65.9084 -143.95 -176.248 + 12 65.3513 774 5 0 163.896 -25.214 -56.25 + 12 36.2878 292 3 0 64.9965 -121.65 -116.25 + 12 2.6339 589 3 0 -52.7758 -62.1285 -116.25 +Number of digits in this event = 40 +gamma +Event: 13 +Number of tracker hits in this event = 1 + 13 3.04492 1758 0 1 171.75 -1.18799 -204.804 +Number of digits in this event = 1 +gamma Event: 14 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 19 + 14 103.299 895 2 1 -0.888555 -0.166291 -144.45 + 14 103.633 899 2 0 -0.913171 -0.172152 -145.85 + 14 119.441 893 1 1 -1.37915 -0.422576 -174.45 + 14 108.695 898 1 0 -1.43788 -0.428327 -175.85 + 14 166.106 887 0 1 -2.59856 -0.501822 -204.45 + 14 102.529 897 0 0 -2.65449 -0.533552 -205.85 + 14 263.572 553 6 1 -69.25 -87.9281 -24.7016 + 14 117.122 905 4 1 1.1638 0.565093 -84.45 + 14 145.969 902 4 0 1.32261 0.540409 -85.85 + 14 100.229 921 3 1 4.3545 0.724103 -114.45 + 14 109.679 902 3 0 4.44088 0.642831 -115.85 + 14 148.568 933 2 1 6.76634 -1.16992 -144.45 + 14 137.665 894 2 0 6.95278 -1.21104 -145.85 + 14 30.8501 952 1 1 10.6058 -1.43185 -174.45 + 14 89.4663 953 1 1 10.65 -1.45298 -174.581 + 14 62.6937 892 1 0 11.1554 -1.62667 -175.85 + 14 63.7422 891 1 0 11.2353 -1.65 -176.058 + 14 203.773 1006 0 1 21.3152 -4.41387 -204.45 + 14 123.127 877 0 0 21.2967 -4.45716 -205.85 +Number of digits in this event = 8 gamma Event: 15 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 16 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 3 + 16 198.959 1190 2 0 62.1519 58.1922 -146.25 + 16 197.844 1172 1 0 89.1895 54.4796 -176.25 + 16 237.882 1165 6 0 -89.3282 53.2196 -26.25 +Number of digits in this event = 4 gamma Event: 17 Number of tracker hits in this event = 0 -Number of digits in this event = 1 -gamma -Event: 18 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 -gamma -Event: 19 -Number of tracker hits in this event = 1 - 19 100.911 1330 2 0 -72.0995 86.05 -146.201 -Number of digits in this event = 1 -gamma -Event: 20 -Number of tracker hits in this event = 11 - 20 183.889 899 1 1 -0.119966 0.0608649 -174.45 - 20 110.127 900 1 0 -0.135267 0.0718235 -175.85 - 20 273.198 898 0 1 -0.436749 0.285689 -204.45 - 20 169.161 901 0 0 -0.466089 0.297707 -205.85 - 20 135.506 840 9 0 -92.2373 -11.8521 63.75 - 20 71.2761 839 9 0 -92.3663 -12.05 63.874 - 20 294.218 838 9 0 -92.3412 -12.25 63.9042 - 20 337.292 900 1 1 0.226814 0.316378 -174.45 - 20 177.001 901 1 0 0.201368 0.296989 -175.85 - 20 127.188 900 0 0 -0.442615 0.08983 -205.85 - 20 343.769 900 2 0 0.231613 0.0500666 -146.05 -Number of digits in this event = 11 -gamma -Event: 21 -Number of tracker hits in this event = 35 - 21 142.65 900 3 1 0.159671 0.0521885 -114.45 - 21 210.485 900 3 0 0.170054 0.0608731 -115.85 - 21 120.676 901 2 1 0.376136 0.26093 -144.45 - 21 171.834 901 2 0 0.380692 0.271813 -145.85 - 21 111.112 901 1 1 0.444753 0.513178 -174.45 - 21 159.798 902 1 0 0.437659 0.510969 -175.85 - 21 166.019 900 0 1 0.239779 0.503928 -204.45 - 21 126.468 902 0 0 0.230844 0.510272 -205.85 - 21 56.2678 826 0 1 -14.6777 -42.1351 -204.85 - 21 65.9066 827 0 1 -14.65 -42.506 -204.453 - 21 118.715 828 0 1 -14.4499 -42.3351 -204.602 - 21 251.336 681 0 0 -14.5854 -43.6759 -205.85 - 21 194.621 680 0 0 -14.5935 -43.85 -205.918 - 21 109.638 902 1 1 0.525942 0.551746 -174.45 - 21 77.1638 905 1 0 0.689959 1.13401 -175.85 - 21 35.3811 906 1 0 0.732379 1.25 -176.112 - 21 58.6815 921 0 1 4.347 22.3214 -204.45 - 21 147.493 922 0 1 4.45008 22.4618 -204.631 - 21 25.2998 1018 0 0 4.90021 23.7618 -205.85 - 21 58.1536 1019 0 0 4.9224 23.85 -205.915 - 21 47.099 1020 0 0 4.9272 24.05 -206.039 - 21 47.6396 1021 0 0 4.9292 24.25 -206.156 - 21 136.863 892 3 1 -1.49132 1.06692 -114.45 - 21 103.691 905 3 0 -1.59495 1.17115 -115.85 - 21 22.6919 880 2 1 -4.04049 3.33989 -144.45 - 21 142.594 879 2 1 -4.05 3.34752 -144.527 - 21 116.944 917 2 0 -4.20865 3.48885 -145.85 - 21 125.972 861 1 1 -7.65025 6.29198 -174.45 - 21 109.461 931 1 0 -7.81274 6.40867 -175.85 - 21 122.795 845 0 1 -10.9393 8.53655 -204.45 - 21 93.4123 942 0 0 -11.0592 8.63062 -205.85 - 21 38.6526 943 0 0 -11.0801 8.65 -206.099 - 21 171.495 899 4 0 -0.188904 -0.05 -86.1514 - 21 124.815 847 0 1 -10.6123 10.2095 -204.45 - 21 87.5196 846 0 1 -10.65 10.1649 -204.582 -Number of digits in this event = 18 -gamma -Event: 22 -Number of tracker hits in this event = 23 - 22 132.583 900 2 1 0.151156 -0.315122 -144.45 - 22 516.054 898 2 0 0.161899 -0.328017 -145.85 - 22 109.86 901 1 1 0.436285 -0.590567 -174.45 - 22 101.578 897 1 0 0.460351 -0.589972 -175.85 - 22 129.313 904 0 1 0.988294 -0.593028 -204.45 - 22 201.792 897 0 0 1.00625 -0.570017 -205.85 - 22 69.2342 900 4 0 -0.05 0.0601128 -85.93 - 22 91.7002 903 4 1 0.837759 0.469167 -84.85 - 22 54.7686 904 4 1 0.850012 0.482542 -84.8323 - 22 88.2115 436 1 0 -82.724 -92.7841 -176.25 - 22 123.713 437 1 0 -82.8357 -92.75 -176.064 - 22 118.021 438 1 0 -82.9763 -92.55 -176.127 - 22 104.023 528 1 0 -106.084 -74.3803 -176.25 - 22 103.726 900 3 1 0.147063 -0.0765192 -114.45 - 22 263.342 899 3 0 0.18331 -0.088576 -115.85 - 22 131.729 905 2 1 1.175 -0.474263 -144.45 - 22 110.626 912 1 1 2.57712 0.195926 -174.45 - 22 119.584 900 1 0 2.68578 0.176579 -175.85 - 22 161.983 924 0 1 4.86671 0.106404 -204.45 - 22 204.174 900 0 0 4.89573 0.0702749 -205.85 - 22 2.5652 897 2 0 1.49813 -0.45 -146.247 - 22 213.768 896 2 0 53.6878 -0.820504 -146.25 - 22 80.4198 895 2 0 53.6919 -0.85004 -146.041 -Number of digits in this event = 11 -gamma -Event: 23 -Number of tracker hits in this event = 0 Number of digits in this event = 2 gamma -Event: 24 +Event: 18 +Number of tracker hits in this event = 5 + 18 60.0167 343 1 0 -33.7389 -111.35 -176.249 + 18 19.3899 342 1 0 -33.8081 -111.55 -176.219 + 18 17.2151 330 1 0 -7.57453 -114.099 -176.25 + 18 147.403 625 1 0 23.5051 -54.9814 -176.25 + 18 76.6534 626 1 0 23.6256 -54.85 -176.218 +Number of digits in this event = 3 +gamma +Event: 19 +Number of tracker hits in this event = 8 + 19 112.526 900 1 1 0.176052 0.0608746 -174.45 + 19 343.676 900 1 0 0.195551 0.0769675 -175.85 + 19 104.341 902 0 1 0.599786 0.396502 -204.45 + 19 115.12 901 0 0 0.631694 0.413273 -205.85 + 19 205.562 899 2 1 -0.050048 -0.255993 -144.634 + 19 104.046 899 1 1 -0.234 0.139773 -174.45 + 19 274.639 898 0 1 -0.427333 0.701791 -204.45 + 19 161.837 903 0 0 -0.452072 0.699593 -205.85 +Number of digits in this event = 5 +gamma +Event: 20 +Number of tracker hits in this event = 33 + 20 194.1 898 4 1 -0.282663 -0.114142 -84.45 + 20 117.699 899 4 0 -0.301222 -0.125923 -85.85 + 20 137.69 896 3 1 -0.684085 -0.317979 -114.45 + 20 135.045 898 3 0 -0.694416 -0.328829 -115.85 + 20 166.091 895 2 1 -0.901864 -0.523819 -144.45 + 20 132.943 897 2 0 -0.909429 -0.53102 -145.85 + 20 119.724 894 1 1 -1.12468 -0.684501 -174.45 + 20 129.821 896 1 0 -1.13042 -0.693042 -175.85 + 20 118.166 893 0 1 -1.26245 -0.848631 -204.45 + 20 112.811 895 0 0 -1.26548 -0.857559 -205.85 + 20 147.408 766 10 1 -26.8039 65.5015 95.15 + 20 101.846 765 10 1 -26.85 65.6674 95.5008 + 20 192.365 898 5 1 -0.27146 -1.20644 -54.45 + 20 103.837 893 5 0 -0.394392 -1.33641 -55.85 + 20 138.395 886 4 1 -2.77527 -3.82534 -84.45 + 20 122.759 880 4 0 -2.85509 -3.94947 -85.85 + 20 19.8499 876 3 1 -4.84508 -6.73283 -114.45 + 20 112.418 875 3 1 -4.85 -6.73868 -114.501 + 20 141.703 865 3 0 -4.99144 -6.88521 -115.85 + 20 122.277 860 2 1 -7.89804 -9.73992 -144.45 + 20 117.245 850 2 0 -8.10905 -9.85216 -145.85 + 20 250.008 838 1 1 -12.331 -12.3531 -174.45 + 20 179.784 838 1 0 -12.6205 -12.4036 -175.85 + 20 104.889 807 0 1 -18.4647 -13.7333 -204.45 + 20 106.486 831 0 0 -18.7806 -13.7482 -205.85 + 20 73.9551 792 4 0 -6.08128 -21.4711 -86.25 + 20 162.398 791 4 0 -6.00858 -21.65 -86.0436 + 20 70.1346 790 4 0 -5.82602 -21.85 -85.8864 + 20 13.8909 789 4 0 -5.67132 -22.05 -85.8512 + 20 128.803 899 4 1 -0.249928 -27.1503 -84.827 + 20 237.05 900 4 1 0.0501041 -27.4029 -84.8244 + 20 252.582 901 4 1 0.25 -27.4093 -84.7256 + 20 13.361 1136 7 1 47.3599 -65.2024 5.55 +Number of digits in this event = 20 +gamma +Event: 21 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma +Event: 22 +Number of tracker hits in this event = 1 + 22 174.53 325 2 0 -43.7024 -114.966 -146.25 +Number of digits in this event = 4 +gamma +Event: 23 +Number of tracker hits in this event = 62 + 23 105.816 897 4 0 0.0588649 -0.635052 -85.85 + 23 288.517 903 3 1 0.790473 -1.3619 -114.45 + 23 101.449 893 3 0 0.903946 -1.39955 -115.85 + 23 30.0341 915 2 1 3.24389 -2.19612 -144.45 + 23 69.7004 916 2 1 3.25 -2.2044 -144.555 + 23 126.989 888 2 0 3.31984 -2.30645 -145.85 + 23 206.908 925 1 1 5.11442 -4.69451 -174.45 + 23 269.087 876 1 0 5.14768 -4.67624 -175.85 + 23 135.95 924 0 1 4.98608 -5.38124 -204.45 + 23 552.841 872 0 0 4.93443 -5.45684 -205.85 + 23 51.2326 873 0 0 4.90242 -5.44999 -206.2 + 23 35.6621 902 3 1 0.65 -1.48228 -114.755 + 23 238.235 882 0 0 -23.4426 -3.5337 -206.25 + 23 54.9752 881 0 0 -23.5569 -3.65 -206.019 + 23 133.39 780 0 1 -23.8771 -4.09593 -204.85 + 23 2.96949 900 4 0 0.05 0.0987185 -86.2363 + 23 115.8 901 3 1 0.261062 0.185799 -114.45 + 23 125.151 900 3 0 0.286816 0.185301 -115.85 + 23 108.073 904 2 1 0.906346 0.193122 -144.45 + 23 251.255 900 2 0 0.955219 0.204924 -145.85 + 23 116.364 909 1 1 1.95893 0.392946 -174.45 + 23 172.167 901 1 0 2.01813 0.374931 -175.85 + 23 156.556 916 0 1 3.25507 0.186932 -204.45 + 23 308.954 900 0 0 3.30132 0.201818 -205.85 + 23 30.7021 899 2 1 -0.146695 -0.05 -144.57 + 23 100.029 898 2 1 -0.25 -0.0810383 -144.621 + 23 70.1564 897 2 1 -0.45 -0.159357 -144.739 + 23 91.2235 895 2 0 -2.26042 -0.912221 -145.85 + 23 85.6377 894 2 0 -2.50989 -1.05 -146.003 + 23 88.7224 893 2 0 -2.72176 -1.25 -146.122 + 23 97.0737 649 1 1 -50.0814 -44.1855 -174.45 + 23 71.4344 648 1 1 -50.25 -44.2251 -174.689 + 23 30.4622 678 1 0 -51.0182 -44.4325 -175.85 + 23 100.785 677 1 0 -51.0799 -44.45 -175.95 + 23 42.0182 551 0 1 -69.7988 -49.0886 -204.45 + 23 254.78 550 0 1 -69.85 -49.1637 -204.569 + 23 29.8437 647 0 0 -70.4538 -50.5751 -205.85 + 23 97.442 646 0 0 -70.4783 -50.65 -205.929 + 23 17.6801 645 0 0 -70.6084 -50.85 -206.183 + 23 173.837 549 0 1 -70.05 -49.3918 -204.757 + 23 107.976 893 3 1 -1.29539 0.930588 -114.45 + 23 83.5674 904 3 0 -1.5435 0.860317 -115.85 + 23 33.6591 903 3 0 -1.59347 0.85 -116.101 + 23 165.796 865 2 1 -6.85789 0.245663 -144.45 + 23 4.23464 864 2 1 -7.05 0.193004 -144.826 + 23 42.4661 796 1 1 -20.7637 -4.44528 -174.45 + 23 115.182 795 1 1 -20.85 -4.46661 -174.618 + 23 7.43369 877 1 0 -21.4865 -4.64483 -175.85 + 23 43.9396 729 0 1 -34.1987 -3.64846 -204.45 + 23 87.8993 728 0 1 -34.25 -3.65294 -204.575 + 23 377.016 1346 2 0 -111.793 89.348 -146.25 + 23 5.75349 926 0 1 5.34716 -0.0557203 -204.45 + 23 120.844 900 3 1 0.114458 0.460485 -114.45 + 23 113.711 902 3 0 0.0651081 0.508508 -115.85 + 23 106.628 895 2 1 -0.985433 1.19357 -144.45 + 23 119.518 905 2 0 -1.0309 1.22829 -145.85 + 23 46.1924 891 1 1 -1.84182 1.75324 -174.45 + 23 56.5092 890 1 1 -1.85 1.74893 -174.64 + 23 120.935 908 1 0 -1.88202 1.72266 -175.85 + 23 115.015 887 0 1 -2.55975 1.28513 -204.45 + 23 115.021 905 0 0 -2.57799 1.22213 -205.85 + 23 71.3946 1617 1 0 51.3351 143.55 -176.216 +Number of digits in this event = 21 +gamma +Event: 24 +Number of tracker hits in this event = 9 + 24 112.796 903 1 1 0.766571 -0.452686 -174.45 + 24 149.597 897 1 0 0.825386 -0.458737 -175.85 + 24 139.964 910 0 1 2.09779 -0.568151 -204.45 + 24 114.947 897 0 0 2.19113 -0.552301 -205.85 + 24 28.6095 1015 0 1 23.1957 -12.4224 -204.85 + 24 179.874 900 1 1 0.0663124 0.116347 -174.45 + 24 136.474 900 1 0 0.0798982 0.123327 -175.85 + 24 111.295 901 0 1 0.371753 0.257442 -204.45 + 24 113.219 901 0 0 0.389574 0.282941 -205.85 +Number of digits in this event = 5 +gamma Event: 25 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 3 + 25 294.149 795 4 0 -2.46023 -20.97 -86.25 + 25 140.918 1561 11 1 132.438 -140.388 125.15 + 25 2.19552 1562 11 1 132.55 -140.505 125.483 +Number of digits in this event = 3 gamma Event: 26 -Number of tracker hits in this event = 24 - 26 169.26 907 1 1 1.54248 1.27251 -174.45 - 26 149.745 906 1 0 1.64209 1.40863 -175.85 - 26 193.307 917 0 1 3.50452 4.12717 -204.45 - 26 34.3294 921 0 0 3.59203 4.42532 -205.85 - 26 97.6763 922 0 0 3.59889 4.45 -205.965 - 26 144.001 900 2 1 0.0917516 -0.160074 -144.45 - 26 122.309 899 2 0 0.0923594 -0.162963 -145.85 - 26 172.47 900 1 1 0.0945281 -0.241426 -174.45 - 26 112.805 899 1 0 0.0929883 -0.243305 -175.85 - 26 129.663 900 0 1 0.0756166 -0.300679 -204.45 - 26 120.22 898 0 0 0.0797002 -0.305019 -205.85 - 26 48.1068 900 3 1 0.114313 0.05 -114.521 - 26 76.8205 901 3 1 0.25 0.107856 -114.584 - 26 20.4996 902 3 1 0.450114 0.0732291 -114.696 - 26 13.1479 905 3 0 42.9986 1.09358 -115.85 - 26 12.9181 1149 3 1 49.9995 2.43919 -114.85 - 26 89.9687 1150 3 1 50.0501 2.43986 -114.839 - 26 265.337 1151 3 1 50.2501 2.46356 -114.663 - 26 212.444 1152 3 1 50.45 2.36397 -114.529 - 26 49.7707 1153 3 1 50.65 2.71225 -114.761 - 26 332.606 913 3 0 52.2872 2.75512 -115.85 - 26 38.4153 912 3 0 52.3987 2.64996 -115.982 - 26 32.6318 1130 1 1 46.0572 13.9202 -174.85 - 26 139.243 1591 9 0 120.997 138.472 63.75 -Number of digits in this event = 15 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 27 Number of tracker hits in this event = 0 @@ -3245,820 +3264,570 @@ Number of digits in this event = 1 gamma Event: 28 Number of tracker hits in this event = 0 -Number of digits in this event = 0 +Number of digits in this event = 1 gamma Event: 29 -Number of tracker hits in this event = 31 - 29 273.288 895 4 1 -0.924379 -0.114879 -84.45 - 29 146.149 899 4 0 -0.976948 -0.107251 -85.85 - 29 116.175 890 3 1 -2.02374 0.0730836 -114.45 - 29 34.2412 900 3 0 -2.03617 0.0517922 -115.85 - 29 170.331 889 2 1 -2.1665 -0.417625 -144.45 - 29 66.3623 898 2 0 -2.17148 -0.446343 -145.85 - 29 82.4285 897 2 0 -2.17224 -0.45 -146.043 - 29 113.769 888 1 1 -2.27978 -1.03732 -174.45 - 29 97.7618 894 1 0 -2.3018 -1.10205 -175.85 - 29 111.063 887 0 1 -2.53632 -2.66484 -204.45 - 29 119.343 886 0 0 -2.6003 -2.77634 -205.85 - 29 22.0825 899 5 1 -0.162583 -0.0500246 -54.7844 - 29 57.4925 898 5 0 -0.518037 -0.258964 -55.8501 - 29 171.939 894 5 1 -1.20132 -0.318917 -54.85 - 29 28.6095 668 0 1 -46.25 -10.5108 -204.635 - 29 119.901 900 4 0 0.179333 0.0513821 -85.85 - 29 115.186 898 2 1 -0.277333 0.421527 -144.45 - 29 118.237 901 2 0 -0.301606 0.426414 -145.85 - 29 130.886 896 1 1 -0.757082 0.520408 -174.45 - 29 129.412 902 1 0 -0.775315 0.526085 -175.85 - 29 178.801 894 0 1 -1.10228 0.659474 -204.45 - 29 110.198 903 0 0 -1.10977 0.66545 -205.85 - 29 132.464 887 1 1 -2.55225 -0.641264 -174.45 - 29 119.468 897 1 0 -2.44755 -0.602838 -175.85 - 29 116.164 897 0 1 -0.574008 -0.254409 -204.45 - 29 120.14 898 0 0 -0.420937 -0.301675 -205.85 - 29 17.9389 1033 0 1 26.6661 -21.0766 -204.85 - 29 123.282 653 5 1 -49.3095 -31.3277 -54.85 - 29 20.9863 942 0 0 -8.93218 8.65 -206.103 - 29 7.76179 941 0 0 -8.73694 8.45 -206.24 - 29 139.797 850 0 0 -4.02557 -9.97291 -206.25 -Number of digits in this event = 14 +Number of tracker hits in this event = 1 + 29 57.0799 810 5 1 -18.05 37.0578 -54.6516 +Number of digits in this event = 2 gamma Event: 30 -Number of tracker hits in this event = 14 - 30 99.459 900 3 1 0.211718 0.257776 -114.45 - 30 133.532 901 3 0 0.213604 0.272527 -115.85 - 30 123.298 901 2 1 0.252887 0.500795 -144.45 - 30 144.372 902 2 0 0.255843 0.51221 -145.85 - 30 290.182 901 1 1 0.27582 0.772194 -174.45 - 30 118.378 903 1 0 0.262157 0.788158 -175.85 - 30 101.597 905 0 0 -0.0629046 1.11953 -205.85 - 30 100.846 899 0 1 -0.0500615 1.10504 -204.528 - 30 124.505 898 0 1 -0.250113 1.15668 -204.71 - 30 73.7806 897 0 1 -0.450083 1.00832 -204.53 - 30 81.6846 896 0 1 -0.65 1.02719 -204.561 - 30 150.733 895 0 1 -0.850085 1.03373 -204.629 - 30 222.963 894 0 1 -1.05 0.964122 -204.632 - 30 3.38873 718 1 0 -13.7949 -36.25 -176.045 -Number of digits in this event = 10 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 31 -Number of tracker hits in this event = 14 - 31 159.703 891 3 1 -1.76328 0.538654 -114.45 - 31 131.807 902 3 0 -1.91673 0.613304 -115.85 - 31 129.987 875 2 1 -4.86618 2.15485 -144.45 - 31 153.741 910 2 0 -5.00729 2.22493 -145.85 - 31 106.552 860 1 1 -7.9326 3.75903 -174.45 - 31 135.147 918 1 0 -8.035 3.81612 -175.85 - 31 145.554 848 0 1 -10.37 5.07767 -204.45 - 31 176.135 925 0 0 -10.4709 5.16062 -205.85 - 31 121.714 899 2 1 -0.0934596 -0.276597 -144.45 - 31 196.523 898 2 0 -0.0968109 -0.282399 -145.85 - 31 157.328 899 1 1 -0.186638 -0.379267 -174.45 - 31 142.826 898 1 0 -0.192422 -0.375163 -175.85 - 31 103.838 898 0 1 -0.346892 -0.300765 -204.45 - 31 131.378 898 0 0 -0.353138 -0.328756 -205.85 -Number of digits in this event = 14 +Number of tracker hits in this event = 3 + 31 94.8472 918 3 0 -69.4989 3.85 -116.009 + 31 19.0678 559 3 1 -68.0821 2.27417 -114.85 + 31 206.358 560 3 1 -68.0499 2.26857 -114.834 +Number of digits in this event = 2 gamma Event: 32 -Number of tracker hits in this event = 28 - 32 110.643 903 5 1 0.678878 0.113817 -54.45 - 32 113.547 900 5 0 0.667319 0.116401 -55.85 - 32 110.377 902 4 1 0.458989 0.118549 -84.45 - 32 14.0102 901 4 1 0.45 0.113436 -84.7857 - 32 117.78 900 4 0 0.425814 0.0976755 -85.85 - 32 198.193 898 3 1 -0.323642 -0.296012 -114.45 - 32 159.219 898 3 0 -0.338638 -0.334541 -115.85 - 32 134.74 897 2 1 -0.647338 -1.13497 -144.45 - 32 124.075 894 2 0 -0.637422 -1.203 -145.85 - 32 121.761 898 1 1 -0.435795 -2.70812 -174.45 - 32 106.038 886 1 0 -0.407665 -2.77417 -175.85 - 32 127.352 900 0 1 0.0778051 -4.09279 -204.45 - 32 112.511 879 0 0 0.109995 -4.18426 -205.85 - 32 109.429 900 3 1 0.190829 0.416116 -114.45 - 32 129.939 901 3 0 0.198973 0.427385 -115.85 - 32 105.041 901 2 1 0.407546 0.680615 -144.45 - 32 151.033 903 2 0 0.415683 0.689345 -145.85 - 32 112.873 902 1 1 0.606802 0.890621 -174.45 - 32 209.48 904 1 0 0.608856 0.903546 -175.85 - 32 129.584 902 0 1 0.620873 1.17613 -204.45 - 32 123.416 905 0 0 0.619432 1.19556 -205.85 - 32 0.967438 893 3 0 0.429351 -1.44721 -115.85 - 32 18.3985 892 3 0 0.429604 -1.45007 -115.852 - 32 7.25228 924 3 1 4.99677 -4.46514 -114.85 - 32 73.8637 857 3 0 10.4868 -8.55036 -115.85 - 32 70.3788 856 3 0 10.5758 -8.65005 -115.895 - 32 173.422 954 3 1 10.9285 -8.90545 -114.85 - 32 116.99 899 5 0 0.106156 -0.05 -55.9679 -Number of digits in this event = 15 +Number of tracker hits in this event = 22 + 32 221.736 900 2 1 0.229345 -0.109536 -144.45 + 32 108.427 899 2 0 0.253163 -0.101625 -145.85 + 32 105.093 908 0 1 1.76421 0.0651012 -204.45 + 32 109.235 900 0 0 1.81251 0.0660533 -205.85 + 32 33.4931 723 0 0 -22.621 -35.3752 -206.25 + 32 130.018 722 0 0 -22.6671 -35.45 -206.225 + 32 45.5126 721 0 0 -22.7883 -35.6501 -206.189 + 32 62.2929 720 0 0 -22.8795 -35.85 -206.196 + 32 149.849 323 0 0 -96.938 -115.39 -206.25 + 32 41.6393 413 0 1 -97.4482 -115.693 -204.85 + 32 101.774 412 0 1 -97.55 -115.701 -204.702 + 32 85.9241 411 0 1 -97.7501 -115.697 -204.538 + 32 18.2628 410 0 1 -97.9501 -115.862 -204.465 + 32 116.33 905 3 1 1.10502 -0.133558 -114.45 + 32 120.483 899 3 0 1.10147 -0.153087 -115.85 + 32 137.728 903 2 1 0.834724 -0.692045 -144.45 + 32 116.194 896 2 0 0.871202 -0.696652 -145.85 + 32 139.094 907 1 1 1.51007 -0.881708 -174.45 + 32 214.25 895 1 0 1.48649 -0.880277 -175.85 + 32 163.687 906 0 1 1.40427 -0.74953 -204.45 + 32 122.941 896 0 0 1.39964 -0.720417 -205.85 + 32 242.504 899 4 1 -0.1051 0.05 -84.7184 +Number of digits in this event = 11 gamma Event: 33 -Number of tracker hits in this event = 68 - 33 125.845 900 4 1 0.0912349 -0.319956 -84.45 - 33 103.363 898 4 0 0.102411 -0.290443 -85.85 - 33 92.4476 902 3 1 0.463763 0.275447 -114.45 - 33 112.734 901 3 0 0.498133 0.270127 -115.85 - 33 115.462 905 2 1 1.08932 0.182313 -144.45 - 33 198.039 900 2 0 1.11096 0.138558 -145.85 - 33 130.965 907 1 1 1.48208 -0.764224 -174.45 - 33 166.304 896 1 0 1.47667 -0.812513 -175.85 - 33 118.444 906 0 1 1.40849 -1.72507 -204.45 - 33 174.365 891 0 0 1.38823 -1.7974 -205.85 - 33 47.8838 908 0 1 1.76378 2.17195 -204.45 - 33 311.618 900 2 1 0.183047 -0.788985 -144.45 - 33 148.52 901 2 0 0.213194 0.25 -146.051 - 33 59.0023 894 1 1 -1.14725 23.9075 -174.45 - 33 85.2803 895 1 1 -1.05 24.0554 -174.573 - 33 65.3891 896 1 1 -0.85 24.2642 -174.765 - 33 31.4077 897 1 1 -0.65 24.327 -174.822 - 33 2.75656 1028 1 0 3.87926 25.8439 -175.85 - 33 154.708 1029 1 0 3.89709 25.85 -175.854 - 33 169.628 1030 1 0 4.35461 26.05 -176.046 - 33 48.4567 1045 1 0 90.013 29.0521 -176.25 - 33 12.9772 1044 1 0 90.1807 29.05 -175.907 - 33 0.462555 1351 1 1 90.5487 28.9574 -174.85 - 33 178.789 1352 1 1 90.5501 28.957 -174.846 - 33 358.6 899 2 1 -0.0500898 0.234875 -144.45 - 33 127.478 900 1 1 0.179268 0.438169 -174.45 - 33 104.696 901 1 0 0.187782 0.435751 -175.85 - 33 132.095 901 0 1 0.376914 0.362452 -204.45 - 33 126.467 901 0 0 0.380429 0.355158 -205.85 - 33 306.942 898 2 1 -0.25 0.672894 -144.59 - 33 196.978 897 2 1 -0.45 1.30641 -144.568 - 33 184.95 899 5 0 -0.0887688 -0.192496 -55.85 - 33 3.15841 898 4 1 -0.442524 -3.29842 -84.4501 - 33 65.2076 897 4 1 -0.45 -3.29553 -84.4543 - 33 68.6253 896 4 1 -0.65 -3.20125 -84.565 - 33 88.2294 895 4 1 -0.85 -3.09764 -84.6866 - 33 20.7062 894 4 1 -1.05022 -2.99925 -84.8157 - 33 251.064 889 4 0 -2.70101 -2.18314 -85.85 - 33 94.2365 890 4 0 -2.94762 -2.05 -86.0305 - 33 17.3958 693 3 1 -41.2717 25.1672 -114.45 - 33 89.9185 694 3 1 -41.2498 25.1665 -114.486 - 33 40.6954 695 3 1 -41.05 25.2126 -114.749 - 33 34.9499 1027 3 0 -40.4011 25.613 -115.85 - 33 105.298 1028 3 0 -40.3337 25.65 -115.965 - 33 151.086 901 2 1 0.25 -0.588521 -144.481 - 33 82.6909 906 2 0 0.346602 1.25572 -145.85 - 33 70.923 907 2 0 0.356298 1.45 -145.974 - 33 59.8842 908 2 0 0.357605 1.65 -146.105 - 33 3.04677 909 2 0 0.368153 1.85 -146.245 - 33 52.908 1273 2 0 11.3312 74.7494 -146.25 - 33 72.1117 1274 2 0 11.3628 74.85 -146.164 - 33 103.968 1275 2 0 11.4107 75.05 -145.982 - 33 5.64804 1276 2 0 11.4584 75.25 -145.861 - 33 115.641 960 2 1 12.1141 76.7757 -144.85 - 33 135.257 961 2 1 12.25 77.0783 -144.691 - 33 63.8233 962 2 1 12.4501 77.4501 -144.532 - 33 53.0915 911 0 0 0.719435 2.37694 -205.85 - 33 185.891 912 0 0 0.586886 2.45007 -205.997 - 33 41.278 913 0 0 0.287265 2.65 -206.185 - 33 145.371 983 0 0 2.43265 16.7901 -206.25 - 33 90.9219 984 0 0 2.55743 16.8501 -206.223 - 33 80.5813 916 0 1 3.34623 17.2064 -204.85 - 33 103.078 917 0 1 3.45 17.3562 -204.768 - 33 98.4526 918 0 1 3.65004 17.2872 -204.797 - 33 54.243 985 0 0 4.01743 17.1937 -205.85 - 33 85.118 1604 1 0 -55.869 141.002 -176.25 - 33 9.5092 1508 1 0 -41.8142 121.85 -176.25 - 33 125.103 1216 1 1 63.25 -31.8896 -174.696 -Number of digits in this event = 24 +Number of tracker hits in this event = 23 + 33 104.403 904 3 1 0.931856 -0.116847 -114.45 + 33 117.219 899 3 0 0.99654 -0.140621 -115.85 + 33 104.03 911 2 1 2.25392 -0.556642 -144.45 + 33 125.034 897 2 0 2.30476 -0.578742 -145.85 + 33 134.315 916 1 1 3.30738 -1.02272 -174.45 + 33 143.578 895 1 0 3.38284 -1.01808 -175.85 + 33 117.013 924 0 1 5.01192 -0.831199 -204.45 + 33 149.175 895 0 0 5.12265 -0.865275 -205.85 + 33 127.43 901 4 0 0.0776925 0.341908 -85.85 + 33 135.932 910 2 1 2.24158 -0.577692 -144.45 + 33 82.6172 909 2 1 2.05 -0.811218 -144.557 + 33 223.75 908 2 1 1.85 -0.966165 -144.49 + 33 49.7258 907 2 1 1.61579 -1.05876 -144.45 + 33 218.628 899 2 0 2.5514 -0.138799 -145.85 + 33 84.1461 900 2 0 2.61294 0.0501007 -146.07 + 33 29.6406 901 2 0 2.65368 0.25 -146.219 + 33 148.422 900 2 1 0.0562745 -0.216187 -144.45 + 33 127.415 899 1 1 -0.0883642 0.945238 -174.45 + 33 121.008 906 0 1 1.36996 1.33134 -204.45 + 33 110.082 906 0 0 1.36665 1.41511 -205.85 + 33 38.9809 882 2 0 -43.1406 -3.45289 -146.25 + 33 94.6915 883 2 0 -43.2925 -3.45 -146.13 + 33 182.01 682 2 1 -43.624 -2.71264 -144.85 +Number of digits in this event = 14 gamma Event: 34 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 35 -Number of tracker hits in this event = 24 - 35 237.211 899 2 1 -0.109587 -0.230512 -144.45 - 35 166.106 898 2 0 -0.223101 -0.331185 -145.85 - 35 195.158 888 1 1 -2.3532 -2.33174 -174.45 - 35 117.862 890 1 0 -2.24439 -2.03115 -175.85 - 35 105.613 908 0 1 1.73809 5.90996 -204.45 - 35 1.25809 930 0 0 1.84086 6.24836 -205.85 - 35 110.366 931 0 0 1.8414 6.25 -205.857 - 35 7.14117 885 1 0 -2.57744 -3.03468 -175.85 - 35 100.823 884 1 0 -2.58383 -3.05 -175.875 - 35 37.6333 883 1 0 -2.59009 -3.25 -176.178 - 35 459.363 898 1 1 -0.283316 0.127698 -174.45 - 35 114.647 900 1 0 -0.30266 0.124339 -175.85 - 35 124.628 896 0 1 -0.704476 0.0534566 -204.45 - 35 13.6173 899 1 1 -0.249921 0.07484 -174.801 - 35 244.933 901 1 0 0.626504 0.277157 -175.85 - 35 200.632 902 1 0 0.800521 0.450073 -176.083 - 35 70.7121 935 1 0 11.2583 7.13713 -176.25 - 35 224.922 934 1 0 11.2607 7.05 -176.126 - 35 69.1303 1219 1 1 64.0376 -75.737 -174.45 - 35 305.416 1218 1 1 63.85 -75.6418 -174.472 - 35 57.41 1217 1 1 63.65 -75.6604 -174.761 - 35 124.695 903 0 1 0.740565 2.77877 -204.45 - 35 68.0527 913 0 0 1.05227 2.84052 -205.85 - 35 64.2693 914 0 0 1.09721 2.85 -206.052 -Number of digits in this event = 11 +Number of tracker hits in this event = 4 + 35 160.381 1235 5 0 101.073 67.0561 -56.25 + 35 66.5852 1234 5 0 100.938 67.05 -56.1041 + 35 49.8779 1403 5 1 100.791 66.6071 -54.85 + 35 169.321 1402 5 1 100.75 66.5402 -54.793 +Number of digits in this event = 4 gamma Event: 36 -Number of tracker hits in this event = 0 +Number of tracker hits in this event = 2 + 36 41.6498 1170 1 1 54.1422 -52.6057 -174.85 + 36 97.3321 1382 2 0 -4.89029 96.55 -146.225 Number of digits in this event = 1 gamma Event: 37 -Number of tracker hits in this event = 12 - 37 2.95688 1705 7 0 -37.5466 161.339 3.75 - 37 112.434 1139 7 0 113.479 47.9659 3.75 - 37 68.5433 1464 7 1 113.025 47.7445 5.15 - 37 86.3278 1463 7 1 112.95 47.7114 5.36163 - 37 102.662 1107 8 0 112.041 41.5045 33.75 - 37 8.62946 1106 8 0 112.044 41.45 34.1163 - 37 228.339 1459 8 1 112.034 41.2769 35.15 - 37 114.177 1458 8 1 111.95 41.4631 35.5208 - 37 71.5521 1112 8 0 111.588 42.5135 34.15 - 37 77.3553 1113 8 0 111.525 42.65 34.0041 - 37 118.722 1226 8 0 22.6447 65.3022 33.7501 - 37 3.27166 481 1 1 -83.7048 73.1802 -174.85 -Number of digits in this event = 4 +Number of tracker hits in this event = 0 +Number of digits in this event = 2 gamma Event: 38 -Number of tracker hits in this event = 2 - 38 137.111 961 6 0 -25.0167 12.3437 -26.25 - 38 11.542 962 6 0 -25.0433 12.45 -26.0476 +Number of tracker hits in this event = 1 + 38 11.9635 342 11 1 -111.75 -57.4651 125.519 Number of digits in this event = 2 gamma Event: 39 -Number of tracker hits in this event = 1 - 39 96.8505 897 5 1 -0.617775 -57.446 -54.85 -Number of digits in this event = 1 +Number of tracker hits in this event = 27 + 39 137.817 899 3 1 -0.0992776 -0.503565 -114.45 + 39 100.92 897 3 0 -0.0843893 -0.525367 -115.85 + 39 114.973 900 2 1 0.163038 -0.776299 -144.45 + 39 101.153 896 2 0 0.180698 -0.829075 -145.85 + 39 124.071 902 1 1 0.611022 -2.04948 -174.45 + 39 193.785 889 1 0 0.631052 -2.10749 -175.85 + 39 153.561 905 0 1 1.11876 -3.44092 -204.45 + 39 194.814 882 0 0 1.11796 -3.51863 -205.85 + 39 243.51 900 0 1 0.0500362 1.19886 -204.81 + 39 148.45 899 0 1 -0.0833011 0.99402 -204.45 + 39 65.7032 898 0 1 -0.25 0.753463 -204.709 + 39 16.4742 897 0 0 -1.60071 -0.600243 -205.85 + 39 138.748 896 0 0 -1.6528 -0.65 -205.892 + 39 115.454 895 0 0 -1.85367 -0.85 -206.064 + 39 100.116 848 0 0 5.42822 -10.3443 -206.25 + 39 90.5286 847 0 0 5.51325 -10.4501 -206.142 + 39 118.816 846 0 0 5.66388 -10.65 -205.995 + 39 15.0308 845 0 0 5.75404 -10.85 -205.88 + 39 89.1673 932 0 1 6.52955 -12.5891 -204.85 + 39 78.8971 933 0 1 6.65 -12.8911 -204.665 + 39 114.821 906 0 0 -0.0811415 1.33415 -205.85 + 39 154.354 901 0 1 0.25 1.0553 -204.804 + 39 89.4714 1038 0 1 27.6563 8.91345 -204.85 + 39 229.715 1039 0 1 27.8501 8.97573 -204.549 + 39 396.465 1040 0 1 28.05 9.13568 -204.461 + 39 25.1473 1041 0 1 28.25 8.54902 -204.786 + 39 251.569 956 0 0 18.2154 11.3681 -205.85 +Number of digits in this event = 15 gamma Event: 40 -Number of tracker hits in this event = 19 - 40 104.697 894 2 1 -1.218 0.425442 -144.45 - 40 358.801 902 2 0 -1.22521 0.562248 -145.85 - 40 101.153 894 1 1 -1.06169 3.64236 -174.45 - 40 114.063 919 1 0 -1.04868 3.90169 -175.85 - 40 96.2507 896 0 1 -0.787604 9.01667 -204.45 - 40 280.518 946 0 0 -0.730438 9.30894 -205.85 - 40 37.8805 900 3 1 0.11298 -0.0500511 -114.605 - 40 83.3132 1569 6 0 -28.7947 133.961 -26.25 - 40 5.03541 1570 6 0 -28.9023 134.15 -25.8756 - 40 171.691 752 6 1 -29.544 135.273 -24.85 - 40 48.8442 751 6 1 -29.6501 135.824 -24.7838 - 40 82.9095 1583 6 0 -30.6679 136.806 -25.85 - 40 67.2444 1584 6 0 -30.723 136.95 -25.9551 - 40 82.8101 1585 6 0 -30.7276 137.15 -26.0941 - 40 155.806 1586 6 0 -30.8268 137.35 -26.1535 - 40 57.0591 1587 6 0 -31.037 137.55 -26.0992 - 40 154.414 898 0 1 -0.441065 -0.0741355 -204.45 - 40 172.025 899 0 0 -0.450364 -0.0754216 -205.85 - 40 163.099 937 0 0 -7.13408 7.56835 -206.25 -Number of digits in this event = 8 +Number of tracker hits in this event = 31 + 40 112.137 900 4 1 0.070088 -0.565741 -84.45 + 40 110.646 897 4 0 0.0827059 -0.596618 -85.85 + 40 178.618 900 3 1 0.201217 -1.20612 -114.45 + 40 6.98856 894 3 0 0.208196 -1.24912 -115.85 + 40 113.293 893 3 0 0.20837 -1.25 -115.878 + 40 133.009 902 2 1 0.503118 -2.02233 -144.45 + 40 111.474 890 2 0 0.547783 -1.99568 -145.85 + 40 320.391 907 1 1 1.5378 -1.36554 -174.45 + 40 150.214 893 1 0 1.59985 -1.35306 -175.85 + 40 118.223 914 0 1 2.96573 -1.10005 -204.45 + 40 107.109 894 0 0 3.03701 -1.07451 -205.85 + 40 87.9664 908 1 1 1.65 -1.42864 -174.546 + 40 30.8882 906 1 1 1.45 -2.12831 -174.512 + 40 194.553 908 0 1 1.65606 -1.92114 -204.45 + 40 8.72488 890 0 0 1.65159 -2.04861 -205.85 + 40 138.797 889 0 0 1.65132 -2.05 -205.867 + 40 249.478 907 0 1 1.64994 -1.93441 -204.49 + 40 239.038 906 0 1 1.45 -1.98604 -204.522 + 40 178.146 888 0 0 0.875156 -2.30564 -205.85 + 40 19.8139 893 0 0 1.00468 -1.35926 -205.85 + 40 30.9789 891 0 0 5.24017 -1.71005 -206.25 + 40 314.542 898 3 1 -0.253543 0.0530639 -114.45 + 40 109.251 900 3 0 -0.276108 0.0629692 -115.85 + 40 121.613 896 2 1 -0.694483 0.281267 -144.45 + 40 124.77 901 2 0 -0.723814 0.288795 -145.85 + 40 166.765 893 1 1 -1.33011 0.399681 -174.45 + 40 122.861 901 1 0 -1.34947 0.394871 -175.85 + 40 202.177 891 0 1 -1.69253 0.267282 -204.45 + 40 117.553 900 0 0 -1.72616 0.239467 -205.85 + 40 107.951 897 3 1 -0.45 0.157196 -114.763 + 40 104.475 901 5 1 0.316433 -0.050024 -54.671 +Number of digits in this event = 17 gamma Event: 41 -Number of tracker hits in this event = 52 - 41 126.696 902 4 1 0.464389 0.101423 -84.45 - 41 261.453 895 3 1 -0.9787 -2.20271 -114.45 - 41 133.581 888 3 0 -1.00737 -2.26222 -115.85 - 41 104.479 891 2 1 -1.71276 -3.81337 -144.45 - 41 147.424 881 2 0 -1.69266 -3.8026 -145.85 - 41 118.979 893 1 1 -1.28597 -3.45391 -174.45 - 41 117.898 883 1 0 -1.32736 -3.43407 -175.85 - 41 200.401 889 0 1 -2.06482 -3.0294 -204.45 - 41 119.307 885 0 0 -2.20777 -3.03866 -205.85 - 41 133.458 908 1 0 -1.52718 1.65526 -176.25 - 41 210.224 892 1 1 -1.58516 2.03826 -174.85 - 41 62.3121 891 1 1 -1.65 2.19936 -174.548 - 41 75.9778 890 1 1 -1.85012 2.19645 -174.7 - 41 25.1228 889 1 1 -2.0501 2.19189 -174.795 - 41 233.935 903 1 0 -4.36147 0.820287 -175.85 - 41 49.9706 864 1 1 -7.16418 -0.144211 -174.85 - 41 69.141 863 1 1 -7.25 -0.153987 -174.824 - 41 110.091 894 1 0 -10.8072 -1.15454 -175.85 - 41 2.61871 805 1 1 -18.9127 -3.83618 -174.85 - 41 99.4511 875 1 0 -27.0618 -4.97962 -175.85 - 41 206.377 876 1 0 -27.15 -4.85 -175.992 - 41 105.82 896 3 1 -0.85 -2.26425 -114.7 - 41 169.891 897 3 1 -0.65 -2.29011 -114.725 - 41 176.578 887 1 1 -2.5381 -7.09368 -174.45 - 41 20.2066 886 1 1 -2.65002 -7.16619 -174.551 - 41 451.284 905 3 1 1.14049 -0.0641014 -114.45 - 41 211.499 929 2 1 5.85541 0.336639 -144.45 - 41 172.603 900 2 0 6.24388 0.15822 -145.85 - 41 50.3625 984 1 1 16.9265 -3.87268 -174.45 - 41 80.5702 985 1 1 17.05 -3.88024 -174.61 - 41 126.29 880 1 0 17.8472 -3.90165 -175.85 - 41 80.495 1078 0 1 35.7339 -5.16656 -204.45 - 41 28.1844 1079 0 1 35.85 -5.24558 -204.772 - 41 127.591 872 0 0 36.2794 -5.4581 -205.85 - 41 14.2165 1143 3 0 -14.7582 48.8121 -116.25 - 41 65.754 1144 3 0 -14.7753 48.85 -116.232 - 41 99.7573 1145 3 0 -14.8411 49.05 -116.12 - 41 36.6239 1146 3 0 -14.9551 49.25 -115.95 - 41 85.4774 821 3 1 -15.6599 49.5851 -114.85 - 41 125.946 912 2 1 2.56877 0.308359 -144.45 - 41 98.8313 901 2 0 2.61181 0.259053 -145.85 - 41 132.739 918 1 1 3.69969 -1.21231 -174.45 - 41 109.572 893 1 0 3.81606 -1.26134 -175.85 - 41 38.8659 929 0 1 5.85609 -1.87409 -204.45 - 41 76.7344 928 0 1 5.85 -1.87098 -204.59 - 41 113.014 891 0 0 5.80659 -1.84889 -205.85 - 41 274.367 903 2 1 0.717598 -0.0726679 -144.45 - 41 114.344 899 2 0 0.722007 -0.0737435 -145.85 - 41 105.313 903 1 1 0.802399 -0.12988 -174.45 - 41 118.294 899 1 0 0.804205 -0.130346 -175.85 - 41 135.553 903 0 1 0.82982 -0.141681 -204.45 - 41 118.412 899 0 0 0.832343 -0.150711 -205.85 -Number of digits in this event = 21 +Number of tracker hits in this event = 11 + 41 172.5 900 1 1 0.0970993 -0.300011 -174.45 + 41 99.7555 898 1 0 0.112954 -0.278235 -175.85 + 41 112.328 902 0 1 0.492068 0.158681 -204.45 + 41 135.898 900 0 0 0.524198 0.174592 -205.85 + 41 123.663 900 2 1 0.242484 0.12395 -144.45 + 41 102.636 900 2 0 0.261054 0.135103 -145.85 + 41 229.887 903 1 1 0.731416 0.187051 -174.45 + 41 127.739 900 1 0 0.756382 0.198749 -175.85 + 41 206.174 905 0 1 1.24474 0.42564 -204.45 + 41 122.989 901 0 0 1.26219 0.443043 -205.85 + 41 199.822 883 0 0 151.84 -3.29373 -206.25 +Number of digits in this event = 10 gamma Event: 42 -Number of tracker hits in this event = 2 - 42 99.6914 991 1 0 -23.2553 18.3086 -176.25 - 42 138.558 990 1 0 -23.2512 18.25 -176.11 -Number of digits in this event = 2 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 43 -Number of tracker hits in this event = 7 - 43 77.6912 899 1 0 0.05 -0.0507925 -176.075 - 43 153.029 904 0 1 0.887117 -0.964938 -204.45 - 43 145.576 895 0 0 0.935486 -1.01745 -205.85 - 43 74.0313 755 4 1 -28.88 170.669 -84.85 - 43 196.804 754 4 1 -29.05 170.921 -84.5649 - 43 115.474 900 0 1 0.0725721 0.189694 -204.45 - 43 103.818 900 0 0 0.0642011 0.200435 -205.85 -Number of digits in this event = 5 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 44 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 45 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 2 + 45 43.7407 698 0 1 -40.2733 27.843 -204.85 + 45 136.471 697 0 1 -40.45 27.9159 -204.656 +Number of digits in this event = 3 gamma Event: 46 -Number of tracker hits in this event = 2 - 46 188.944 899 0 0 0.05 -0.0608565 -206.043 - 46 258.672 900 0 0 0.342081 0.0500107 -206.128 -Number of digits in this event = 4 +Number of tracker hits in this event = 14 + 46 78.5805 900 2 1 0.05 0.067543 -144.669 + 46 51.0498 904 2 0 0.157503 0.933945 -145.85 + 46 183.444 905 2 0 0.15482 1.05 -145.987 + 46 42.3798 906 2 0 0.196268 1.25 -146.231 + 46 8.79882 1074 2 0 -5.96564 35.032 -146.25 + 46 109.163 1075 2 0 -5.97083 35.0501 -146.22 + 46 166.523 869 2 1 -6.1004 35.8752 -144.85 + 46 124.287 868 2 1 -6.2758 36.2695 -144.45 + 46 23.9636 867 2 1 -6.45008 36.3101 -144.826 + 46 41.6953 1078 2 0 -6.78346 35.7532 -145.85 + 46 85.463 1077 2 0 -6.81285 35.6499 -145.967 + 46 33.7196 1076 2 0 -6.77117 35.45 -146.144 + 46 135.674 898 0 1 -0.35958 0.0540704 -204.45 + 46 220.771 900 0 0 -0.37348 0.0543284 -205.85 +Number of digits in this event = 6 gamma Event: 47 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 66 + 47 118.097 899 4 1 -0.0854247 -0.0703282 -84.45 + 47 104.985 899 4 0 -0.0819886 -0.0592912 -85.85 + 47 117.293 898 2 1 -0.354718 0.756374 -144.45 + 47 131.715 903 2 0 -0.362881 0.79178 -145.85 + 47 118.374 897 1 1 -0.497802 1.44197 -174.45 + 47 112.445 906 1 0 -0.517234 1.44821 -175.85 + 47 163.326 907 1 0 -0.52068 1.45 -176.133 + 47 107.448 896 0 1 -0.765773 1.66121 -204.45 + 47 114.813 907 0 0 -0.768385 1.61035 -205.85 + 47 20.3909 902 1 0 -0.82564 0.489076 -175.85 + 47 82.702 901 1 0 -0.845216 0.45 -175.888 + 47 65.6459 900 1 0 -0.985314 0.25 -175.988 + 47 49.5113 899 1 0 -1.20533 -0.0501068 -175.96 + 47 113.127 898 1 0 -1.25274 -0.25 -175.983 + 47 93.7557 897 1 0 -1.14144 -0.45 -176.109 + 47 376.595 929 1 0 -0.275428 5.87868 -176.25 + 47 67.7566 930 1 0 -0.313347 6.05 -176.038 + 47 21.5605 928 1 0 -0.0832343 5.85 -175.946 + 47 87.6809 900 3 1 0.0500717 0.25692 -114.546 + 47 342.369 901 3 0 0.349951 0.288268 -115.85 + 47 61.0916 936 2 1 7.32695 -4.34184 -144.45 + 47 80.9851 937 2 1 7.45 -4.21768 -144.574 + 47 66.9253 938 2 1 7.65 -4.04316 -144.707 + 47 64.8238 939 2 1 7.85016 -3.90158 -144.795 + 47 51.9231 940 2 1 8.05 -3.91307 -144.764 + 47 51.4874 941 2 1 8.25016 -3.95021 -144.797 + 47 22.0606 884 2 0 10.7839 -3.07374 -145.85 + 47 95.2628 885 2 0 10.8483 -3.05 -145.876 + 47 55.9833 886 2 0 10.9768 -2.84992 -146.113 + 47 119.596 906 2 1 1.30337 2.55395 -144.45 + 47 111.293 913 2 0 1.23083 2.65325 -145.85 + 47 112.235 899 1 1 -0.0709665 5.05013 -174.45 + 47 102.59 910 0 1 2.05392 7.39974 -204.45 + 47 131.259 937 0 0 2.12439 7.51816 -205.85 + 47 6.65245 900 5 1 0.0667833 -0.05 -54.8217 + 47 222.864 899 5 0 0.268211 -0.20685 -55.85 + 47 24.9529 954 4 1 11.0183 -0.709184 -84.45 + 47 134.871 955 4 1 11.05 -0.713709 -84.4923 + 47 48.8103 956 4 1 11.25 -0.723384 -84.7567 + 47 194.322 896 4 0 12.0378 -0.761802 -85.85 + 47 50.9342 1054 3 1 30.9492 -6.19038 -114.45 + 47 91.5955 1055 3 1 31.05 -6.21257 -114.598 + 47 110.233 868 3 0 31.9033 -6.40593 -115.85 + 47 52.7292 867 3 0 32.0723 -6.45 -116.126 + 47 115.33 1120 2 1 44.0775 -17.171 -144.45 + 47 92.2873 816 2 0 44.4373 -16.7422 -145.85 + 47 24.9901 817 2 0 44.5189 -16.65 -146.158 + 47 139.156 1167 1 1 53.5294 -6.58844 -174.45 + 47 171.98 866 1 0 53.756 -6.75344 -175.85 + 47 17.8846 1189 0 1 58.0068 -10.8335 -204.45 + 47 138.085 1190 0 1 58.05 -10.8158 -204.478 + 47 83.9675 1191 0 1 58.25 -10.7443 -204.621 + 47 50.9677 1192 0 1 58.45 -10.6703 -204.759 + 47 219.243 850 0 0 59.7716 -10.0167 -205.85 + 47 66.9393 851 0 0 60.1141 -9.85 -206.097 + 47 122.892 918 0 0 77.4875 3.67849 -206.25 + 47 164.012 1285 0 1 77.2047 3.70645 -204.85 + 47 0.431354 908 1 0 83.9235 1.65 -175.851 + 47 2.6629 1320 1 1 84.2449 1.99763 -174.85 + 47 137.531 1321 1 1 84.25 2.00259 -174.835 + 47 1.74379 927 2 0 81.3225 5.64795 -146.25 + 47 94.3669 928 2 0 81.3215 5.65 -146.237 + 47 111.644 1306 2 1 81.395 5.79273 -144.85 + 47 44.1158 1226 0 0 84.0704 65.4375 -206.25 + 47 103.816 1227 0 0 84.0413 65.45 -206.206 + 47 30.9789 1151 0 1 50.3838 28.2549 -204.85 +Number of digits in this event = 16 gamma Event: 48 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 21 + 48 436.646 936 2 0 -161.479 7.36954 -146.25 + 48 94.2472 88 2 1 -162.437 6.95767 -144.85 + 48 31.9692 87 2 1 -162.55 6.8173 -144.558 + 48 0.46053 867 3 0 -154.564 -6.6493 -116.25 + 48 107.164 866 3 0 -154.564 -6.65 -116.249 + 48 29.6282 865 3 0 -154.493 -6.85 -115.932 + 48 241.752 129 3 1 -154.335 -7.65528 -114.85 + 48 87.6628 889 4 0 -146.867 -2.13636 -86.25 + 48 165.861 167 4 1 -146.669 -2.27215 -84.85 + 48 47.2729 61 2 1 -167.9 7.15925 -144.85 + 48 63.7587 60 2 1 -167.95 7.15131 -144.812 + 48 70.6818 59 2 1 -168.15 7.08698 -144.673 + 48 413.131 58 2 1 -168.35 7.05533 -144.556 + 48 717.678 57 2 1 -168.55 7.03987 -144.499 + 48 103.888 917 2 0 -167.795 3.51685 -145.85 + 48 289.037 916 2 0 -167.649 3.44995 -145.954 + 48 109.849 915 2 0 -167.015 3.25 -146.029 + 48 137.746 935 2 0 -166.023 7.24995 -146.114 + 48 94.1683 912 2 0 -127.949 2.51774 -146.25 + 48 107.098 913 2 0 -127.989 2.65 -146.023 + 48 266.074 259 2 1 -128.273 3.13097 -144.85 +Number of digits in this event = 9 gamma Event: 49 -Number of tracker hits in this event = 2 - 49 136.98 901 0 1 0.407266 0.19812 -204.45 - 49 220.052 900 0 0 0.415395 0.154518 -205.85 -Number of digits in this event = 5 +Number of tracker hits in this event = 19 + 49 96.7048 900 0 1 0.160847 0.653756 -204.45 + 49 126.569 903 0 0 0.200336 0.681883 -205.85 + 49 53.4706 896 2 0 0.421671 -0.755315 -145.85 + 49 63.538 895 2 0 0.477125 -0.850126 -146.005 + 49 54.8974 894 2 0 0.514924 -1.05 -146.155 + 49 1.39833 893 2 0 0.536735 -1.25016 -146.247 + 49 7.24942 831 2 0 17.776 -13.6764 -146.25 + 49 58.7057 832 2 0 17.7718 -13.65 -146.236 + 49 136.188 833 2 0 17.7048 -13.4499 -146.176 + 49 294.061 1025 2 0 -55.2375 25.2415 -146.25 + 49 24.5889 1026 2 0 -55.3531 25.25 -146.16 + 49 67.7536 898 0 1 -0.406616 -0.524551 -204.45 + 49 297.8 897 0 1 -0.450054 -0.481329 -204.648 + 49 139.47 901 1 1 0.288003 0.133242 -174.45 + 49 136.352 900 1 0 0.338034 0.126593 -175.85 + 49 118.741 907 0 1 1.46106 0.315429 -204.45 + 49 359.566 901 0 0 1.49905 0.393464 -205.85 + 49 269.567 902 0 1 0.527449 0.356398 -204.45 + 49 135.133 900 0 0 0.541642 0.190726 -205.85 +Number of digits in this event = 10 gamma Event: 50 -Number of tracker hits in this event = 59 - 50 123.833 897 3 1 -0.576424 0.161709 -114.45 - 50 156.107 900 3 0 -0.591651 0.188493 -115.85 - 50 118.559 895 2 1 -0.948676 0.704839 -144.45 - 50 122.797 903 2 0 -0.985455 0.7315 -145.85 - 50 179.337 891 1 1 -1.72054 1.24083 -174.45 - 50 116.141 906 1 0 -1.76841 1.25587 -175.85 - 50 129.029 886 0 1 -2.78163 1.5801 -204.45 - 50 104.882 907 0 0 -2.81766 1.58964 -205.85 - 50 151.552 901 3 0 -0.565004 0.250041 -116.026 - 50 147.693 899 3 0 -0.183519 -0.180041 -116.042 - 50 39.7967 905 2 1 1.16041 0.449842 -144.45 - 50 100.778 904 2 1 1.05 0.35833 -144.597 - 50 5.57122 896 2 0 0.12834 -0.831294 -145.85 - 50 68.2968 895 2 0 0.113349 -0.85 -145.87 - 50 54.8832 894 2 0 -0.0772833 -1.05 -146.124 - 50 53.7348 611 2 0 -69.6442 -57.8154 -146.25 - 50 154.85 610 2 0 -69.7145 -57.85 -146.22 - 50 145.054 609 2 0 -70.1611 -58.05 -146.074 - 50 15.5031 608 2 0 -70.6511 -58.2501 -145.899 - 50 37.8011 539 2 1 -72.142 -58.8307 -144.85 - 50 69.3858 538 2 1 -72.25 -58.8646 -144.781 - 50 69.1841 537 2 1 -72.45 -58.9018 -144.666 - 50 28.788 536 2 1 -72.65 -58.92 -144.511 - 50 52.6509 779 3 0 -137.387 -24.1333 -116.25 - 50 70.5479 780 3 0 -137.528 -24.05 -116.197 - 50 135.956 820 3 0 -143.139 -15.9639 -116.25 - 50 84.6738 186 3 1 -142.822 -15.5182 -114.85 - 50 52.3322 187 3 1 -142.75 -15.4223 -114.562 - 50 161.683 608 3 0 -92.8079 -58.3571 -116.25 - 50 78.269 607 3 0 -93.1887 -58.45 -115.934 - 50 84.0243 428 3 1 -94.4577 -57.6474 -114.85 - 50 106.057 427 3 1 -94.55 -57.4549 -114.654 - 50 62.0293 897 2 1 -0.577457 -0.05 -144.626 - 50 140.165 899 2 0 -0.467546 -0.178588 -145.85 - 50 127.704 912 1 1 2.49024 -3.669 -174.45 - 50 112.711 882 1 0 2.88629 -3.61426 -175.85 - 50 77.5223 959 0 1 11.8736 -2.25348 -204.45 - 50 62.3256 960 0 1 12.05 -2.27404 -204.71 - 50 135.421 888 0 0 12.7916 -2.41138 -205.85 - 50 70.316 132 1 0 -64.3712 -153.55 -176.109 - 50 84.2023 131 1 0 -64.4799 -153.75 -175.995 - 50 259.274 577 1 1 -64.6045 -153.592 -174.85 - 50 71.6938 576 1 1 -64.65 -153.576 -174.661 - 50 318.424 891 4 1 -1.65941 -20.048 -84.85 - 50 1.5383 894 4 1 -1.25 -20.1333 -84.6537 - 50 125.686 555 9 0 -162.721 -68.8604 63.75 - 50 101.762 900 5 0 0.0688653 0.0874269 -55.85 - 50 131.347 906 4 1 1.27132 1.61404 -84.45 - 50 100.11 908 4 0 1.31949 1.68245 -85.85 - 50 142.829 911 3 1 2.29077 3.12439 -114.45 - 50 139.797 915 3 0 2.34897 3.21127 -115.85 - 50 99.4994 917 2 1 3.46484 4.96065 -144.45 - 50 104.258 924 2 0 3.51322 5.03193 -145.85 - 50 11.9793 925 2 0 3.52569 5.05 -146.209 - 50 226.685 922 1 1 4.51462 6.4682 -174.45 - 50 114.506 932 1 0 4.57655 6.54705 -175.85 - 50 128.609 929 0 1 5.88219 8.16802 -204.45 - 50 124.973 941 0 0 5.95619 8.25431 -205.85 - 50 57.3741 910 4 0 -24.6296 2.09605 -86.25 -Number of digits in this event = 25 +Number of tracker hits in this event = 18 + 50 59.483 1056 5 1 31.25 -135.793 -54.5528 + 50 89.284 1275 2 0 133.547 75.0813 -146.25 + 50 70.31 1276 2 0 133.698 75.2501 -145.984 + 50 166.735 1570 2 1 134.185 76.0239 -144.85 + 50 22.6241 1571 2 1 134.509 76.3627 -144.45 + 50 105.534 1572 2 1 134.55 76.4303 -144.484 + 50 118.755 1573 2 1 134.75 76.7303 -144.665 + 50 70.8877 1291 2 0 135.415 78.3281 -145.85 + 50 185.748 1292 2 0 135.483 78.45 -145.963 + 50 54.0886 1293 2 0 135.615 78.65 -146.138 + 50 29.968 1583 2 1 136.79 79.6297 -144.85 + 50 25.8627 1297 2 0 137.606 79.6061 -145.85 + 50 99.0434 1298 2 0 137.611 79.65 -145.882 + 50 1.58152 1535 2 1 127.247 79.8942 -144.85 + 50 17.4838 1526 2 1 125.489 77.9086 -144.85 + 50 28.0428 1714 2 1 162.95 124.828 -144.763 + 50 96.3779 1713 2 1 162.95 124.848 -144.711 + 50 176.774 298 2 0 -0.476857 -120.35 -146.105 +Number of digits in this event = 4 gamma Event: 51 -Number of tracker hits in this event = 0 +Number of tracker hits in this event = 2 + 51 0.18901 910 1 1 2.19204 -38.133 -174.85 + 51 46.3956 455 8 0 -139.912 -88.85 33.8258 Number of digits in this event = 1 gamma Event: 52 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 gamma Event: 53 +Number of tracker hits in this event = 1 + 53 154.62 201 8 1 -139.768 -111.372 35.15 +Number of digits in this event = 2 +gamma +Event: 54 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma -Event: 54 -Number of tracker hits in this event = 24 - 54 162.839 902 0 1 0.513469 2.09069 -204.45 - 54 118.888 910 0 0 0.543332 2.17034 -205.85 - 54 286.882 900 1 1 0.05 0.589633 -174.646 - 54 151.303 902 1 0 0.511764 0.635058 -175.85 - 54 202.114 951 0 1 10.3463 1.43471 -204.45 - 54 2.28247 952 0 1 10.45 1.43266 -204.84 - 54 117.237 906 0 0 10.769 1.35038 -205.85 - 54 121.375 900 2 1 0.121487 0.146917 -144.45 - 54 404.175 900 2 0 0.131319 0.173338 -145.85 - 54 185.267 902 1 1 0.477589 0.720778 -174.45 - 54 242.237 903 1 0 0.491287 0.743696 -175.85 - 54 116.386 903 0 1 0.821382 1.20586 -204.45 - 54 97.0036 905 0 0 0.896575 1.19927 -205.85 - 54 87.3762 901 1 1 0.255021 -0.05 -174.82 - 54 88.035 903 1 1 0.65 -0.338416 -174.793 - 54 15.1351 904 1 1 0.850094 -0.448077 -174.832 - 54 155.388 894 1 0 2.35702 -1.18579 -175.85 - 54 128.778 893 1 0 2.55188 -1.25 -176.113 - 54 147.375 892 1 0 2.55329 -1.45005 -176.094 - 54 86.1996 899 1 1 -0.05 0.592073 -174.564 - 54 128.577 888 0 1 -2.41788 0.535282 -204.45 - 54 38.526 900 0 0 -2.41416 0.0654597 -205.85 - 54 6.31362 899 0 0 -2.40583 -0.05 -206.222 - 54 59.483 940 0 0 -0.762537 8.05 -205.885 -Number of digits in this event = 14 -gamma Event: 55 -Number of tracker hits in this event = 24 - 55 145.925 900 1 1 0.0818501 -0.144502 -174.45 - 55 116.594 899 1 0 0.0733966 -0.179257 -175.85 - 55 161.759 899 0 1 -0.205615 -1.11105 -204.45 - 55 108.207 894 0 0 -0.197598 -1.17798 -205.85 - 55 120.19 899 2 1 -0.143412 0.0914579 -144.45 - 55 131.421 900 2 0 -0.152855 0.0846648 -145.85 - 55 178.471 897 0 1 -0.504386 0.119166 -204.45 - 55 111.026 900 0 0 -0.509624 0.121841 -205.85 - 55 15.5903 883 4 0 -13.7585 -3.4336 -86.25 - 55 93.801 882 4 0 -13.7524 -3.45008 -86.2131 - 55 10.7369 881 4 0 -13.7668 -3.65 -85.889 - 55 144.773 829 4 1 -14.056 -4.50393 -84.85 - 55 181.615 828 4 1 -14.25 -4.72261 -84.5483 - 55 194.714 827 4 1 -14.45 -4.54032 -84.6178 - 55 257.086 871 4 0 -13.6079 -5.73194 -85.85 - 55 197.892 870 4 0 -13.5522 -5.85005 -85.9778 - 55 406.219 900 0 1 0.160458 -0.395861 -204.45 - 55 73.1726 891 0 0 -0.10245 -1.67549 -205.85 - 55 91.5541 890 0 0 -0.0984473 -1.85 -205.997 - 55 34.4725 889 0 0 -0.122935 -2.05013 -206.187 - 55 38.826 893 0 0 0.355225 -1.39612 -205.85 - 55 317.431 892 0 0 0.359591 -1.45005 -205.932 - 55 163.169 931 0 0 31.2752 6.41174 -206.25 - 55 122.672 898 0 0 0.174357 -0.371084 -205.85 -Number of digits in this event = 16 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 56 Number of tracker hits in this event = 7 - 56 129.635 1195 1 0 15.7432 59.1078 -176.25 - 56 69.0508 978 1 1 15.6846 59.4718 -174.85 - 56 189.697 977 1 1 15.6499 59.5172 -174.568 - 56 84.6591 976 1 1 15.45 59.4763 -174.653 - 56 143.932 1198 1 0 15.224 59.6683 -175.85 - 56 173.635 1199 1 0 15.1471 59.8501 -176.217 - 56 263.878 1200 1 0 14.9205 60.0501 -176.173 -Number of digits in this event = 7 + 56 117.436 899 0 1 -0.188812 -0.151374 -204.45 + 56 202.758 899 0 0 -0.208411 -0.16689 -205.85 + 56 9.02094 1150 1 0 -3.3189 50.2223 -176.25 + 56 105.499 1021 2 0 42.2427 24.3185 -146.25 + 56 62.6536 1729 7 0 -165.505 166.026 3.75 + 56 96.3857 1115 1 0 137.154 43.1493 -176.25 + 56 11.202 1560 9 1 132.35 129.095 65.4488 +Number of digits in this event = 3 gamma Event: 57 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 2 + 57 360.424 1241 0 1 68.2716 113.313 -204.85 + 57 309.779 1242 0 1 68.45 113.807 -204.785 +Number of digits in this event = 4 gamma Event: 58 -Number of tracker hits in this event = 7 - 58 223.693 803 0 0 55.5336 -19.2759 -206.25 - 58 87.5793 802 0 0 56.1266 -19.4501 -206.027 - 58 336.008 1183 0 1 56.7512 -20.218 -204.85 - 58 9.1529 1182 0 1 56.65 -20.1604 -204.548 - 58 23.3505 291 7 0 -64.8873 -121.75 4.01162 - 58 32.0312 572 7 1 -65.5039 -123.568 5.15 - 58 176.259 270 7 0 -65.5924 -125.966 4.15 -Number of digits in this event = 5 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 59 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 60 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 7 + 60 7.83823 824 0 0 -11.8293 -15.05 -206.201 + 60 165.411 825 0 0 -11.8569 -15.0499 -206.139 + 60 19.4265 826 0 0 -11.8374 -14.85 -205.959 + 60 202.432 839 0 1 -12.0673 -15.5791 -204.85 + 60 21.0918 838 0 1 -12.25 -15.8128 -204.833 + 60 281.991 807 0 0 -13.7975 -18.4645 -205.85 + 60 269.539 1208 1 0 76.9105 61.65 -176.03 +Number of digits in this event = 5 gamma Event: 61 -Number of tracker hits in this event = 53 - 61 155.233 899 3 1 -0.132817 0.062081 -114.45 - 61 153.088 900 3 0 -0.128299 0.0548002 -115.85 - 61 146.958 899 1 1 -0.192581 -0.275586 -174.45 - 61 113.174 898 1 0 -0.213611 -0.291963 -175.85 - 61 129.482 897 0 1 -0.623815 -0.613432 -204.45 - 61 126.416 897 0 0 -0.655049 -0.644365 -205.85 - 61 176.257 896 0 0 -0.661177 -0.65 -206.111 - 61 142.29 898 3 1 -0.268748 -0.124508 -114.45 - 61 117.815 899 3 0 -0.278729 -0.111411 -115.85 - 61 188.085 898 2 1 -0.434264 0.20939 -144.45 - 61 118.497 900 2 0 -0.431784 0.227765 -145.85 - 61 297.787 898 1 1 -0.268455 0.766893 -174.45 - 61 115.247 903 1 0 -0.235267 0.789149 -175.85 - 61 124.453 901 0 1 0.36874 1.25744 -204.45 - 61 133.232 906 0 0 0.427645 1.2843 -205.85 - 61 291.385 900 2 1 0.0547634 0.445944 -144.45 - 61 220.754 901 2 0 0.0833794 0.364707 -145.85 - 61 175.554 904 1 1 1.03988 -0.879452 -174.45 - 61 182.572 895 1 0 0.779135 -0.875535 -175.85 - 61 110.346 879 0 1 -4.08674 -0.894766 -204.45 - 61 18.0818 897 1 1 -0.45 4.18002 -174.829 - 61 87.8432 926 1 0 -1.18518 5.29869 -175.85 - 61 106.658 927 1 0 -1.28609 5.45 -175.978 - 61 57.7694 928 1 0 -1.40486 5.65 -176.128 - 61 91.6575 1094 1 0 -23.3764 38.8696 -176.25 - 61 45.0295 1093 1 0 -23.3956 38.85 -176.028 - 61 144.154 782 1 1 -23.4947 38.6644 -174.85 - 61 116.394 1094 2 0 -27.3473 38.8548 -146.25 - 61 157.391 762 2 1 -27.5741 38.9286 -144.85 - 61 146.753 1143 3 0 -40.5014 48.6676 -116.25 - 61 129.531 694 3 1 -41.0884 49.0841 -114.85 - 61 118.67 1154 4 0 -46.1116 50.9394 -86.25 - 61 38.9223 668 4 1 -46.4106 51.0775 -84.85 - 61 112.862 667 4 1 -46.45 51.1018 -84.6834 - 61 133.349 1208 5 0 -45.1599 61.6792 -56.25 - 61 1.47212 1209 5 0 -45.158 61.85 -55.8541 - 61 135.675 674 5 1 -45.1106 62.3932 -54.8497 - 61 86.6499 1193 6 0 -57.7077 58.674 -26.25 - 61 199.997 1192 6 0 -57.7956 58.65 -26.0586 - 61 143.366 609 6 1 -58.1499 58.4225 -24.85 - 61 24.1562 607 6 1 -58.604 58.2129 -24.45 - 61 383.475 606 6 1 -58.65 58.1942 -24.5145 - 61 81.3582 605 6 1 -58.85 58.2223 -24.6697 - 61 0.0680024 604 6 1 -59.05 58.3687 -24.8497 - 61 5.34124 1194 6 0 -60.2591 59.0455 -25.85 - 61 138.843 1195 6 0 -60.2665 59.05 -25.856 - 61 87.8488 1196 6 0 -60.6256 59.25 -26.0693 - 61 102.858 1197 6 0 -60.8402 59.45 -26.0965 - 61 75.0908 1198 6 0 -61.0335 59.6501 -26.1419 - 61 152.097 1370 6 0 -133.334 94.3108 -26.2498 - 61 68.2082 1369 6 0 -133.575 94.15 -25.9228 - 61 57.629 1368 6 0 -133.667 93.95 -25.9194 - 61 117.762 232 6 1 -133.591 93.6933 -24.8498 -Number of digits in this event = 27 +Number of tracker hits in this event = 1 + 61 188.523 843 4 0 79.5513 -11.3795 -85.85 +Number of digits in this event = 2 gamma Event: 62 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 6 + 62 276.872 1279 0 1 75.9552 -11.2707 -204.85 + 62 143.935 1280 0 1 76.05 -12.2327 -204.591 + 62 73.751 1281 0 1 76.25 -12.327 -204.593 + 62 227.959 1282 0 1 76.4501 -12.3024 -204.579 + 62 122.698 1283 0 1 76.65 -12.248 -204.521 + 62 294.669 843 0 0 76.468 -11.3653 -205.85 +Number of digits in this event = 6 gamma Event: 63 -Number of tracker hits in this event = 12 - 63 252.734 900 1 1 0.0746071 -0.349523 -174.45 - 63 114.49 898 1 0 0.102291 -0.398679 -175.85 - 63 100.493 903 0 1 0.70292 -1.52439 -204.45 - 63 130.286 892 0 0 0.780374 -1.57934 -205.85 - 63 128.671 899 1 0 0.203841 -0.0703763 -175.85 - 63 107.242 901 0 1 0.300349 0.0835098 -204.45 - 63 186.816 900 0 0 0.307237 0.0974443 -205.85 - 63 59.2767 929 2 0 -7.00978 5.8891 -146.25 - 63 105.594 930 2 0 -6.96449 6.0501 -146.168 - 63 318.255 1762 2 0 -50.0127 172.612 -146.25 - 63 78.167 900 2 1 0.100155 -0.05 -144.681 - 63 142.465 688 8 0 -58.9844 -42.3781 33.75 -Number of digits in this event = 8 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 64 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 gamma Event: 65 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 16 + 65 156.672 908 0 1 1.65876 -0.05 -204.597 + 65 182.01 899 0 0 1.72799 -0.102843 -205.85 + 65 93.7671 907 0 1 1.61136 0.05 -204.615 + 65 69.3042 902 0 0 1.53353 0.570538 -205.85 + 65 227.556 899 0 1 -0.05 -0.241713 -204.773 + 65 79.0828 898 0 1 -0.25 -0.379211 -204.722 + 65 110.992 897 0 1 -0.450072 -0.345175 -204.638 + 65 38.2983 896 0 1 -0.65 -0.368182 -204.531 + 65 17.6864 1069 2 1 34.05 39.0258 -144.663 + 65 113.617 901 2 1 0.39962 0.176389 -144.45 + 65 123.878 900 2 0 0.385691 0.191118 -145.85 + 65 233.111 900 1 1 0.144292 0.492227 -174.45 + 65 132.441 902 1 0 0.131409 0.505855 -175.85 + 65 153.242 903 0 0 -0.148016 0.823384 -205.85 + 65 14.263 696 0 0 35.2125 -40.65 -206.13 + 65 251.704 695 0 0 35.4659 -40.85 -205.935 +Number of digits in this event = 10 gamma Event: 66 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 15 + 66 110.885 899 2 1 -0.12584 -0.390519 -144.45 + 66 124.491 898 2 0 -0.127606 -0.40553 -145.85 + 66 105.465 899 1 1 -0.182482 -0.683456 -174.45 + 66 110.666 896 1 0 -0.178841 -0.696419 -175.85 + 66 321.087 899 0 1 -0.12766 -0.961196 -204.45 + 66 114.473 895 0 0 -0.118906 -0.983571 -205.85 + 66 101.342 900 3 1 0.091529 0.479592 -114.45 + 66 260.407 902 3 0 0.112696 0.481343 -115.85 + 66 141.129 902 2 1 0.589889 0.761209 -144.45 + 66 119.567 903 2 0 0.649228 0.79659 -145.85 + 66 102.853 908 1 1 1.78215 1.47842 -174.45 + 66 129.905 907 1 0 1.84222 1.51656 -175.85 + 66 113.024 915 0 1 3.08884 2.27263 -204.45 + 66 119.133 911 0 0 3.15284 2.29673 -205.85 + 66 318.069 694 1 1 -41.25 -6.3291 -174.658 +Number of digits in this event = 8 gamma Event: 67 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 68 -Number of tracker hits in this event = 35 - 68 113.811 904 5 1 0.881207 0.139222 -54.45 - 68 119.26 900 5 0 0.913281 0.159045 -55.85 - 68 267.887 906 4 1 1.3535 0.764873 -84.45 - 68 139.842 903 4 0 1.41641 0.789649 -85.85 - 68 110.245 914 3 1 2.92577 1.60487 -114.45 - 68 113.975 908 3 0 2.99257 1.67827 -115.85 - 68 134.484 918 2 1 3.80842 2.95084 -144.45 - 68 61.1155 914 2 0 3.85046 2.86754 -145.85 - 68 41.0782 913 2 0 3.86336 2.84997 -146.151 - 68 44.6751 927 1 1 5.64363 1.0876 -174.45 - 68 79.7277 928 1 1 5.65 1.08874 -174.569 - 68 104.166 905 1 0 5.7107 1.11148 -175.85 - 68 121.888 937 0 1 7.49887 0.875688 -204.45 - 68 122.291 903 0 0 7.57799 0.802949 -205.85 - 68 230.26 900 6 1 0.05 -0.0803705 -24.6717 - 68 149.084 899 6 0 -0.713238 -0.0986724 -25.85 - 68 62.3137 901 6 1 0.25 -0.129193 -24.7833 - 68 119.844 899 4 1 -0.120839 0.0923554 -84.45 - 68 110.524 900 4 0 -0.123809 0.0981481 -85.85 - 68 99.5905 899 3 1 -0.168923 0.15695 -114.45 - 68 122.205 900 3 0 -0.168738 0.17154 -115.85 - 68 112.069 899 2 1 -0.170822 0.429942 -144.45 - 68 223.113 901 2 0 -0.156851 0.442056 -145.85 - 68 274.479 900 1 1 0.127728 0.666928 -174.45 - 68 194.288 903 1 0 0.136187 0.682963 -175.85 - 68 207.666 900 0 1 0.242764 0.997785 -204.45 - 68 187.307 904 0 0 0.23537 0.991295 -205.85 - 68 68.5237 1088 1 0 -12.3739 37.6797 -176.25 - 68 67.5753 1089 1 0 -12.4182 37.85 -176.17 - 68 80.7834 1090 1 0 -12.4937 38.0501 -176.028 - 68 13.2154 1091 1 0 -12.5753 38.25 -175.901 - 68 155.51 835 1 1 -13.0041 39.0528 -174.85 - 68 24.7347 834 1 1 -13.05 39.2335 -174.542 - 68 184.338 662 0 1 -47.45 10.5866 -204.557 - 68 9.7702 379 4 0 -64.3396 -104.15 -85.9123 -Number of digits in this event = 16 -gamma -Event: 69 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma +Event: 69 +Number of tracker hits in this event = 2 + 69 121.711 1103 1 1 40.65 106.105 -174.639 + 69 187.538 573 0 1 -65.2591 -106.173 -204.45 +Number of digits in this event = 3 +gamma Event: 70 -Number of tracker hits in this event = 16 - 70 66.4262 1578 2 0 140.583 135.809 -146.25 - 70 74.5694 1577 2 0 140.536 135.75 -146.038 - 70 114.295 1600 2 1 140.337 134.132 -144.85 - 70 93.3545 1599 2 1 140.15 134.057 -144.694 - 70 84.034 1598 2 1 139.95 133.943 -144.607 - 70 261.162 1597 2 1 139.75 133.925 -144.642 - 70 2.63992 1596 2 1 139.55 133.922 -144.62 - 70 257.176 741 0 0 29.8435 -31.6758 -206.25 - 70 43.7179 277 6 0 -142.012 -124.628 -26.25 - 70 65.2223 276 6 0 -142.019 -124.75 -26.1516 - 70 45.9521 275 6 0 -142.024 -124.95 -25.9921 - 70 632.383 190 6 1 -142.049 -125.957 -24.8499 - 70 173.035 191 6 1 -141.95 -126.887 -24.614 - 70 155.685 192 6 1 -141.75 -127.077 -24.6318 - 70 65.9932 193 6 1 -141.55 -127.19 -24.764 - 70 69.2694 183 6 1 -143.35 -127.263 -24.7307 -Number of digits in this event = 6 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 71 -Number of tracker hits in this event = 29 - 71 28.1838 900 3 1 0.0528103 -0.05 -114.748 - 71 108.874 899 3 0 -0.172751 -0.0882059 -115.85 - 71 12.633 855 2 1 -8.99411 0.0642349 -144.45 - 71 68.1506 854 2 1 -9.05 0.0688036 -144.481 - 71 196.858 853 2 1 -9.25 0.0963436 -144.597 - 71 71.08 852 2 1 -9.45 0.140939 -144.724 - 71 30.0902 901 2 0 -11.1765 0.437468 -145.85 - 71 452.761 902 2 0 -11.2468 0.45 -145.898 - 71 157.063 654 1 1 -49.1673 3.48181 -174.45 - 71 66.184 919 1 0 -48.8013 3.98118 -175.85 - 71 57.3914 920 1 0 -48.7444 4.05 -176.032 - 71 19.5901 724 0 1 -35.2294 15.4517 -204.45 - 71 150.734 723 0 1 -35.25 15.5114 -204.496 - 71 29.4206 722 0 1 -35.45 15.9034 -204.806 - 71 65.7792 987 0 0 -36.4798 17.4737 -205.85 - 71 97.4914 988 0 0 -36.5791 17.65 -206.016 - 71 18.5439 918 2 0 -97.6055 3.6594 -146.25 - 71 136.909 917 2 0 -97.5845 3.64995 -146.221 - 71 263.672 900 2 1 0.141382 0.0565578 -144.45 - 71 100.703 900 2 0 0.139553 0.0543448 -145.85 - 71 142.927 900 0 1 0.21074 0.0736607 -204.45 - 71 401.089 900 0 0 0.216454 0.0896166 -205.85 - 71 44.9521 903 2 0 -0.134092 0.65 -146.082 - 71 104.764 883 1 1 -3.38253 10.0033 -174.45 - 71 160.782 950 1 0 -3.48033 10.1495 -175.85 - 71 72.7578 877 0 1 -4.57875 12.418 -204.45 - 71 89.5632 876 0 1 -4.65 12.4748 -204.694 - 71 34.1815 963 0 0 -5.02176 12.8176 -205.85 - 71 94.2029 964 0 0 -5.05361 12.85 -205.949 -Number of digits in this event = 10 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 72 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 gamma Event: 73 -Number of tracker hits in this event = 32 - 73 153.629 899 2 1 -0.155814 -0.0957073 -144.45 - 73 169.029 899 2 0 -0.165106 -0.101857 -145.85 - 73 153.405 898 1 1 -0.344128 -0.19774 -174.45 - 73 241.876 899 1 0 -0.357894 -0.206183 -175.85 - 73 146.399 897 0 1 -0.617181 -0.390428 -204.45 - 73 208.589 898 0 0 -0.614745 -0.443692 -205.85 - 73 91.7405 897 0 0 -0.614378 -0.45 -206.014 - 73 286.084 845 2 0 -41.6353 -10.8661 -146.25 - 73 106.796 900 4 1 0.0500531 0.0767463 -84.7175 - 73 126.565 911 4 1 2.28325 1.10092 -84.45 - 73 91.5808 912 4 1 2.45 0.999398 -84.6263 - 73 4.23796 913 4 1 2.65 0.871854 -84.8401 - 73 34.1472 901 4 0 3.53674 0.287022 -85.8502 - 73 175.256 900 4 0 3.59297 0.25 -85.9158 - 73 126.169 1066 3 1 33.2503 -11.131 -114.45 - 73 169.71 843 3 0 33.8556 -11.3294 -115.85 - 73 39.2706 1130 2 1 46.1654 -18.5598 -144.45 - 73 103.042 1131 2 1 46.25 -18.5476 -144.575 - 73 144.999 808 2 0 46.9912 -18.3857 -145.85 - 73 107.314 1197 1 1 59.513 -13.3484 -174.45 - 73 29.7783 1196 1 1 59.45 -13.4306 -174.754 - 73 184.572 832 1 0 59.0972 -13.5778 -175.85 - 73 110.167 1123 0 1 44.7011 -18.6764 -204.45 - 73 65.1277 1124 0 1 44.85 -18.5365 -204.675 - 73 28.1802 812 0 0 45.2668 -17.5278 -205.85 - 73 164.784 813 0 0 45.3071 -17.45 -205.939 - 73 44.2022 814 0 0 45.3985 -17.25 -206.142 - 73 14.8937 1223 2 1 64.65 -18.0058 -144.646 - 73 73.3059 1025 3 0 20.123 25.2275 -116.25 - 73 15.4304 900 3 0 33.9826 0.215626 -116.25 - 73 69.3954 777 1 1 -24.4992 -71.7023 -174.85 - 73 199.928 776 1 1 -24.65 -72.0127 -174.563 -Number of digits in this event = 17 +Number of tracker hits in this event = 45 + 73 99.7964 900 2 1 0.12823 -0.0775717 -144.45 + 73 176.372 899 2 0 0.122809 -0.0678419 -145.85 + 73 154.378 900 0 1 0.170942 0.221136 -204.45 + 73 254.238 900 0 0 0.130233 0.145129 -205.85 + 73 138.998 888 1 1 -2.31281 0.103053 -174.45 + 73 151.192 900 1 0 -2.36817 0.0938283 -175.85 + 73 372.741 882 0 1 -3.47465 -0.275376 -204.45 + 73 114.679 898 0 0 -3.51582 -0.354956 -205.85 + 73 56.5143 881 0 1 -3.65004 -0.337425 -204.644 + 73 205.889 900 3 0 -0.159189 0.05 -116.163 + 73 41.0215 900 3 1 0.05 0.191223 -114.729 + 73 49.0043 902 3 0 0.228654 0.589593 -115.85 + 73 73.8294 903 3 0 0.252257 0.65 -116.012 + 73 155.061 929 2 1 6.01665 12.1484 -144.45 + 73 46.9427 964 2 0 6.06802 12.9794 -145.85 + 73 88.6152 965 2 0 6.07314 13.05 -145.968 + 73 169.833 931 1 1 6.27769 28.2179 -174.45 + 73 15.5234 1046 1 0 6.62425 29.4111 -175.85 + 73 127.05 1047 1 0 6.63429 29.45 -175.896 + 73 36.3527 1048 1 0 6.68558 29.65 -176.144 + 73 85.5656 960 0 1 12.0975 51.3162 -204.45 + 73 24.8156 959 0 1 12.05 51.2221 -204.752 + 73 18.3528 1154 0 0 11.855 50.8756 -205.85 + 73 219.602 1153 0 0 11.8404 50.8499 -205.929 + 73 104.892 1136 1 0 15.6489 47.3756 -176.25 + 73 57.6517 1135 1 0 15.6625 47.25 -175.971 + 73 44.3569 981 1 1 16.411 47.4131 -174.85 + 73 149.099 982 1 1 16.45 47.4108 -174.756 + 73 72.8151 983 1 1 16.6501 47.3947 -174.567 + 73 86.92 984 1 1 16.8501 47.4011 -174.629 + 73 24.7409 985 1 1 17.05 47.4179 -174.771 + 73 15.3365 1137 1 0 17.221 47.6264 -175.85 + 73 80.4402 1138 1 0 17.2236 47.65 -175.902 + 73 290.501 1139 1 0 17.1426 47.85 -175.954 + 73 212.591 980 1 1 16.2015 48.054 -174.85 + 73 204.666 930 2 1 6.05 12.2472 -144.645 + 73 456.061 959 2 0 6.86114 11.9251 -145.85 + 73 275.991 929 2 0 47.588 5.95768 -146.25 + 73 6.82558 719 2 0 -2.68777 -36.0623 -146.25 + 73 107.434 958 2 0 6.8894 11.8499 -145.946 + 73 222.913 900 4 0 0.0674462 0.0500602 -86.1736 + 73 77.7541 1104 6 1 41.0254 75.6425 -24.85 + 73 126.194 358 10 1 -108.44 134.105 95.15 + 73 11.6799 1510 1 1 122.15 25.1767 -174.723 + 73 177.943 1511 1 1 122.35 25.2356 -174.64 +Number of digits in this event = 21 gamma Event: 74 -Number of tracker hits in this event = 0 +Number of tracker hits in this event = 1 + 74 72.3296 797 2 1 -20.65 -13.5266 -144.828 Number of digits in this event = 1 gamma Event: 75 -Number of tracker hits in this event = 49 - 75 120.563 899 5 0 -0.198757 -0.0563914 -55.85 - 75 116.339 894 4 1 -1.11989 -0.832931 -84.45 - 75 330.853 895 4 0 -1.17651 -0.861588 -85.85 - 75 126.99 888 3 1 -2.31183 -1.46135 -114.45 - 75 117.716 892 3 0 -2.37675 -1.47528 -115.85 - 75 309.678 881 2 1 -3.69537 -1.76774 -144.45 - 75 130.23 891 2 0 -3.75516 -1.77468 -145.85 - 75 131.359 875 1 1 -5.00489 -1.95789 -174.45 - 75 104.582 890 1 0 -5.07387 -1.975 -175.85 - 75 113.027 867 0 1 -6.4571 -2.32035 -204.45 - 75 137.88 888 0 0 -6.5279 -2.34203 -205.85 - 75 0.0857421 899 4 0 -1.02148 -0.0502646 -85.85 - 75 295.952 900 4 0 -1.02755 0.05 -85.9698 - 75 18.7136 869 0 1 -6.20595 -2.06268 -204.824 - 75 195.291 889 0 0 -6.2725 -2.06352 -205.85 - 75 205.813 455 6 1 -88.85 95.1098 -24.7437 - 75 109.354 900 5 1 0.205723 0.0569773 -54.45 - 75 144.334 900 5 0 0.194861 0.0745952 -55.85 - 75 160.207 900 4 1 0.060031 0.429111 -84.45 - 75 117.22 897 3 1 -0.498577 0.213009 -114.45 - 75 152.065 900 3 0 -0.52522 0.206218 -115.85 - 75 112.22 894 2 1 -1.08957 -0.0785081 -144.45 - 75 126.575 899 2 0 -1.10549 -0.0667425 -145.85 - 75 115.593 893 1 1 -1.30039 0.15996 -174.45 - 75 116.319 900 1 0 -1.31812 0.118615 -175.85 - 75 142.269 891 0 1 -1.72932 -0.683774 -204.45 - 75 130.958 896 0 0 -1.7315 -0.704713 -205.85 - 75 266.756 1089 1 1 37.9041 6.2047 -174.85 - 75 1.82321 235 1 0 -109.053 -132.95 -175.867 - 75 291.053 1035 0 1 27.2307 -19.4725 -204.45 - 75 71.5183 1034 0 1 27.05 -19.3927 -204.569 - 75 112.818 1033 0 1 26.85 -19.3945 -204.741 - 75 303.724 802 0 0 24.5487 -19.4721 -205.85 - 75 128.223 801 0 0 24.0585 -19.65 -205.946 - 75 195.601 800 0 0 23.7446 -19.85 -205.954 - 75 61.0091 799 0 0 23.2789 -20.05 -205.941 - 75 12.7351 1008 0 1 21.6821 -20.9544 -204.85 - 75 136.246 1007 0 1 21.65 -20.9708 -204.826 - 75 49.1383 1006 0 1 21.45 -21.1362 -204.605 - 75 35.0266 803 0 0 24.1529 -19.45 -205.953 - 75 240.665 908 0 1 1.76074 0.783196 -204.45 - 75 185.713 904 0 0 1.81391 0.853134 -205.85 - 75 227.197 903 0 0 1.57907 0.85 -206.109 - 75 18.677 773 0 0 -10.0679 -25.4276 -206.25 - 75 29.2488 772 0 0 -10.0685 -25.45 -206.238 - 75 6.46776 606 0 0 -18.6678 -58.7678 -206.25 - 75 24.5328 383 0 0 9.06677 -103.383 -206.25 - 75 48.8318 311 0 0 62.0201 -117.778 -206.25 - 75 300.086 902 0 0 1.69202 0.605042 -205.85 -Number of digits in this event = 29 +Number of tracker hits in this event = 5 + 75 42.0751 951 0 1 10.4454 -39.7171 -204.45 + 75 91.2781 952 0 1 10.45 -39.7124 -204.473 + 75 212.292 953 0 1 10.6501 -39.666 -204.586 + 75 146.765 487 1 1 -82.45 -9.2828 -174.846 + 75 59.4247 851 1 0 -84.1183 -9.66756 -175.85 +Number of digits in this event = 3 gamma Event: 76 Number of tracker hits in this event = 0 @@ -4069,7 +3838,9 @@ Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 78 -Number of tracker hits in this event = 0 +Number of tracker hits in this event = 2 + 78 124.786 1149 0 1 49.9459 -81.5181 -204.85 + 78 21.987 1150 0 1 50.05 -81.61 -204.741 Number of digits in this event = 2 gamma Event: 79 @@ -4077,45 +3848,56 @@ Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 80 -Number of tracker hits in this event = 23 - 80 98.4473 899 2 1 -0.215184 0.773359 -144.45 - 80 102.192 903 2 0 -0.195953 0.817173 -145.85 - 80 298.533 901 1 1 0.291519 1.58504 -174.45 - 80 147.513 907 1 0 0.318759 1.62962 -175.85 - 80 116.656 903 0 1 0.843304 2.54609 -204.45 - 80 103.746 912 0 0 0.860829 2.61833 -205.85 - 80 144.129 904 1 0 0.88657 1.03379 -175.85 - 80 134.345 903 1 0 1.04915 0.849916 -176.201 - 80 82.0743 902 1 1 0.45 1.71005 -174.616 - 80 88.4334 906 1 1 1.35922 -0.599239 -174.85 - 80 113.853 899 3 0 0.0620427 -0.207797 -115.85 - 80 17.3185 898 3 0 0.0738747 -0.25 -116.18 - 80 104.797 906 2 1 1.25437 -3.83322 -144.45 - 80 97.4787 880 2 0 1.48718 -3.91515 -145.85 - 80 116.127 929 1 1 5.86327 -6.36402 -174.45 - 80 128.59 867 1 0 6.16641 -6.48631 -175.85 - 80 13.8727 961 0 1 12.4413 -9.78166 -204.45 - 80 98.6896 962 0 1 12.45 -9.78878 -204.489 - 80 5.19662 850 0 0 12.7436 -10.0472 -205.85 - 80 123.186 849 0 0 12.7469 -10.0501 -205.865 - 80 41.0101 524 1 0 15.9047 -75.122 -176.25 - 80 38.3551 523 1 0 16.0589 -75.25 -175.881 - 80 88.9047 996 1 1 19.3899 -72.681 -174.85 -Number of digits in this event = 7 +Number of tracker hits in this event = 18 + 80 112.811 900 1 1 0.0662345 -0.204849 -174.45 + 80 131.848 899 1 0 0.08353 -0.178682 -175.85 + 80 200.606 902 0 1 0.459521 0.399919 -204.45 + 80 245.501 901 0 0 0.537003 0.410957 -205.85 + 80 101.834 900 0 0 0.756611 0.249967 -205.978 + 80 35.8237 899 1 1 -0.0500999 -0.11802 -174.675 + 80 121.791 900 1 0 -0.43954 0.05 -175.952 + 80 162.849 841 0 1 -11.759 2.6835 -204.45 + 80 49.3027 915 0 0 -11.9087 3.18224 -205.85 + 80 67.4456 916 0 0 -11.9309 3.25 -206.04 + 80 78.8663 824 0 0 -15.0701 -15.05 -206.229 + 80 345.562 898 2 1 -0.286299 -0.188788 -144.45 + 80 210.503 899 2 0 -0.291279 -0.219473 -145.85 + 80 124.243 898 1 1 -0.351172 -0.825346 -174.45 + 80 99.8132 895 1 0 -0.353919 -0.857724 -175.85 + 80 111.095 897 0 1 -0.476411 -1.50796 -204.45 + 80 391.061 892 0 0 -0.468237 -1.55974 -205.85 + 80 30.2602 891 0 0 -0.675846 -1.65001 -205.94 +Number of digits in this event = 10 gamma Event: 81 Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of digits in this event = 2 gamma Event: 82 -Number of tracker hits in this event = 6 - 82 15.503 1658 7 1 151.782 111.345 5.55 - 82 237.362 1657 7 1 151.75 111.36 5.52499 - 82 32.103 851 0 0 -16.8315 -9.77013 -206.25 - 82 67.2925 850 0 0 -16.9208 -9.85007 -206.095 - 82 50.6535 812 0 1 -17.6131 -9.48889 -204.85 - 82 373.352 811 0 1 -17.65 -9.45813 -204.724 -Number of digits in this event = 3 +Number of tracker hits in this event = 22 + 82 143.51 900 4 1 0.191708 -0.3056 -84.45 + 82 228.821 898 4 0 0.190559 -0.303722 -85.85 + 82 164.294 900 3 1 0.154351 -0.230826 -114.45 + 82 235.635 899 3 0 0.155323 -0.229351 -115.85 + 82 99.2517 900 2 1 0.215398 -0.170568 -144.45 + 82 128.955 899 2 0 0.219788 -0.163239 -145.85 + 82 110.799 899 6 1 -0.0543409 0.05 -24.4976 + 82 360.111 898 6 1 -0.25 0.307491 -24.7622 + 82 10.4827 897 6 1 -0.45 0.857778 -24.8389 + 82 49.9203 918 6 0 -1.88524 3.69398 -25.85 + 82 43.5374 919 6 0 -1.92657 3.85 -25.8686 + 82 15.4631 920 6 0 -1.92131 4.05 -25.8614 + 82 157.491 893 5 1 -1.3581 -0.220703 -54.45 + 82 122.549 899 5 0 -1.50207 -0.231627 -55.85 + 82 21.2049 878 4 1 -4.44214 -0.377212 -84.45 + 82 124.09 877 4 1 -4.45 -0.376072 -84.5175 + 82 105.519 838 2 1 -12.3691 0.22568 -144.45 + 82 113.718 901 2 0 -12.5703 0.2519 -145.85 + 82 118.526 813 1 1 -17.3407 1.38739 -174.45 + 82 165.932 907 1 0 -17.6442 1.45738 -175.85 + 82 125.172 779 0 1 -24.1065 2.76588 -204.45 + 82 111.546 914 0 0 -24.4012 2.86697 -205.85 +Number of digits in this event = 13 gamma Event: 83 Number of tracker hits in this event = 0 @@ -4126,198 +3908,135 @@ Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 85 -Number of tracker hits in this event = 32 - 85 141.725 899 3 1 -0.18598 0.371579 -114.45 - 85 105.412 901 3 0 -0.1552 0.376228 -115.85 - 85 137.425 901 2 1 0.369652 0.453175 -144.45 - 85 156.427 902 2 0 0.384839 0.495646 -145.85 - 85 143.202 902 1 1 0.61113 1.26508 -174.45 - 85 154.182 906 1 0 0.661121 1.33055 -175.85 - 85 198.064 907 0 1 1.60988 2.75367 -204.45 - 85 136.67 913 0 0 1.62723 2.80152 -205.85 - 85 126.766 820 0 0 -17.2735 -15.9102 -206.25 - 85 53.2859 819 0 0 -17.4631 -16.05 -206.01 - 85 61.5767 808 0 1 -18.4339 -16.5977 -204.85 - 85 179.484 807 0 1 -18.45 -16.6069 -204.831 - 85 115.664 806 0 1 -18.65 -16.7407 -204.568 - 85 60.9194 804 0 1 -19.1487 -16.5968 -204.45 - 85 77.0541 805 0 1 -19.0498 -16.4741 -204.548 - 85 59.391 809 0 1 -18.25 -15.786 -204.502 - 85 114.412 810 0 1 -18.0499 -15.6309 -204.471 - 85 237.76 811 0 1 -17.85 -15.4151 -204.453 - 85 111.317 812 0 1 -17.65 -14.9778 -204.51 - 85 104.393 903 3 1 0.758596 -0.810976 -114.45 - 85 155.03 895 3 0 0.798758 -0.866126 -115.85 - 85 113.888 907 2 1 1.51178 -2.01262 -144.45 - 85 212.128 889 2 0 1.56869 -2.05562 -145.85 - 85 104.801 913 1 1 2.82468 -2.89889 -174.45 - 85 368.348 885 1 0 2.90844 -2.95781 -175.85 - 85 160.401 923 0 1 4.68007 -4.16758 -204.45 - 85 148.907 879 0 0 4.76314 -4.22687 -205.85 - 85 36.895 702 1 0 -5.3323 -39.5537 -176.25 - 85 79.4291 701 1 0 -5.39802 -39.6501 -176.204 - 85 205.242 1028 3 0 -170.801 25.7673 -116.25 - 85 102.216 42 3 1 -171.641 25.5999 -114.85 - 85 22.847 41 3 1 -171.75 25.583 -114.557 -Number of digits in this event = 20 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 86 -Number of tracker hits in this event = 2 - 86 103.563 701 0 0 85.2948 -39.6636 -206.25 - 86 201.319 1318 0 1 83.8401 -40.2701 -204.85 -Number of digits in this event = 3 +Number of tracker hits in this event = 0 +Number of digits in this event = 2 gamma Event: 87 -Number of tracker hits in this event = 1 - 87 107.719 1234 0 0 121.214 66.85 -206.194 -Number of digits in this event = 2 +Number of tracker hits in this event = 16 + 87 111.113 900 3 1 0.146328 -0.410979 -114.45 + 87 124.365 898 3 0 0.152521 -0.42899 -115.85 + 87 240.389 901 2 1 0.289653 -0.770641 -144.45 + 87 147.649 896 2 0 0.288953 -0.795454 -145.85 + 87 94.1001 901 1 1 0.303108 -1.29262 -174.45 + 87 124.06 893 1 0 0.292593 -1.31242 -175.85 + 87 124.111 900 0 1 0.0644805 -1.75443 -204.45 + 87 104.931 891 0 0 0.0600696 -1.77361 -205.85 + 87 162.44 901 3 0 0.0565534 0.378415 -115.85 + 87 107.202 904 2 0 0.366228 0.902242 -145.85 + 87 124.113 903 1 1 0.7961 1.59688 -174.45 + 87 139.102 907 1 0 0.835223 1.62661 -175.85 + 87 159.892 907 0 1 1.60034 2.25474 -204.45 + 87 163.936 911 0 0 1.62213 2.28231 -205.85 + 87 31.0959 619 2 0 -17.6623 -56.1051 -146.25 + 87 120.739 618 2 0 -17.7128 -56.25 -146.105 +Number of digits in this event = 12 gamma Event: 88 -Number of tracker hits in this event = 2 - 88 92.0777 1018 2 1 23.7458 -121.147 -144.85 - 88 316.054 745 1 1 -30.9545 17.948 -174.85 -Number of digits in this event = 2 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 89 -Number of tracker hits in this event = 24 - 89 66.7318 902 2 1 0.6333 -0.533553 -144.45 - 89 46.1978 903 2 1 0.65 -0.538227 -144.718 - 89 128.101 897 2 0 0.723792 -0.549509 -145.85 - 89 194.918 913 1 1 2.80592 -0.878159 -174.45 - 89 121.664 895 1 0 2.92856 -0.872791 -175.85 - 89 112.944 926 0 1 5.29658 -0.719294 -204.45 - 89 270.233 897 0 0 5.55129 -0.508923 -205.85 - 89 107.362 899 4 0 0.0541513 -0.0579477 -85.85 - 89 157.748 905 3 1 1.21583 -1.2395 -114.45 - 89 103.927 893 3 0 1.28695 -1.31035 -115.85 - 89 148.856 913 2 1 2.73062 -2.72653 -144.45 - 89 144.117 886 2 0 2.78932 -2.81846 -145.85 - 89 286.666 920 1 1 4.06143 -4.62158 -174.45 - 89 170.099 876 1 0 4.11369 -4.73271 -175.85 - 89 111.079 925 0 1 5.19029 -6.97743 -204.45 - 89 95.6271 865 0 0 5.1916 -7.00793 -205.85 - 89 84.3588 875 1 0 4.18405 -4.8501 -176.004 - 89 107.495 877 1 0 4.30523 -4.52433 -175.85 - 89 194.17 938 0 1 7.66999 -3.93324 -204.45 - 89 133.371 878 0 0 7.95763 -4.33567 -205.85 - 89 191.649 885 2 0 2.71635 -2.85001 -146.191 - 89 168.033 895 3 0 1.26944 -0.900016 -115.85 - 89 9.97564 787 2 1 -22.4511 -46.1576 -144.45 - 89 10.8629 788 2 1 -22.45 -46.1636 -144.451 -Number of digits in this event = 15 +Number of tracker hits in this event = 0 +Number of digits in this event = 1 gamma Event: 90 Number of tracker hits in this event = 0 -Number of digits in this event = 0 +Number of digits in this event = 1 gamma Event: 91 -Number of tracker hits in this event = 0 -Number of digits in this event = 2 +Number of tracker hits in this event = 7 + 91 116.111 896 1 1 -0.737537 1.22049 -174.45 + 91 127.211 906 1 0 -0.756239 1.27397 -175.85 + 91 137.004 894 0 1 -1.08063 2.35578 -204.45 + 91 92.8828 911 0 0 -1.02507 2.40221 -205.85 + 91 150.061 900 1 0 -0.0547312 0.131662 -175.85 + 91 115.891 897 0 1 -0.485538 0.494485 -204.45 + 91 121.657 902 0 0 -0.525939 0.509689 -205.85 +Number of digits in this event = 5 gamma Event: 92 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 93 -Number of tracker hits in this event = 34 - 93 102.988 899 5 1 -0.0875388 0.221697 -54.45 - 93 354.683 900 5 0 -0.0931991 0.217957 -55.85 - 93 140.73 899 4 1 -0.218132 0.164353 -84.45 - 93 101.566 900 4 0 -0.221755 0.160086 -85.85 - 93 122.468 898 3 1 -0.33683 0.0616464 -114.45 - 93 126.813 900 3 0 -0.347069 0.0654742 -115.85 - 93 107.149 897 2 1 -0.576116 0.158958 -144.45 - 93 236.034 900 2 0 -0.585201 0.161642 -145.85 - 93 129.055 896 1 1 -0.829347 0.162715 -174.45 - 93 129.734 900 1 0 -0.846437 0.137048 -175.85 - 93 269.631 893 0 1 -1.28594 -0.353311 -204.45 - 93 211.263 898 0 0 -1.29972 -0.379519 -205.85 - 93 12.8926 542 5 0 -45.6581 -71.5977 -56.25 - 93 114.764 541 5 0 -45.6771 -71.6501 -56.2358 - 93 273.971 540 5 0 -45.8004 -71.8501 -56.2248 - 93 98.8662 539 5 0 -45.9492 -72.0501 -56.0913 - 93 0.403944 895 5 1 -0.850419 -0.109129 -54.45 - 93 86.5341 896 5 1 -0.85 -0.108485 -54.4531 - 93 24.9178 901 5 0 -0.61662 0.25 -56.1579 - 93 137.956 915 4 1 3.12223 6.26334 -84.45 - 93 130.373 932 4 0 3.41152 6.58301 -85.85 - 93 20.2457 933 4 0 3.47731 6.65 -86.163 - 93 102.237 947 3 1 9.45938 12.2902 -114.45 - 93 4.34763 961 3 0 9.86285 12.4487 -115.85 - 93 119.992 962 3 0 9.86622 12.45 -115.862 - 93 127.266 987 2 1 17.4652 16.1461 -144.45 - 93 119.383 981 2 0 17.7694 16.3179 -145.85 - 93 106.699 1021 1 1 24.3805 19.7001 -174.45 - 93 126.278 999 1 0 24.5943 19.8565 -175.85 - 93 101.37 1041 0 1 28.3096 23.5991 -204.45 - 93 144.217 1017 0 0 28.565 23.6246 -205.85 - 93 130.434 676 2 1 -44.65 65.4036 -144.548 - 93 57.1532 429 3 1 -94.1741 7.95217 -114.85 - 93 167.835 428 3 1 -94.35 7.95858 -114.676 -Number of digits in this event = 19 +Number of tracker hits in this event = 2 + 93 184.515 1503 12 0 26.0783 120.947 153.75 + 93 5.14281 1504 12 0 26.0727 120.95 153.761 +Number of digits in this event = 2 gamma Event: 94 Number of tracker hits in this event = 0 -Number of digits in this event = 2 +Number of digits in this event = 1 gamma Event: 95 -Number of tracker hits in this event = 5 - 95 118.798 899 0 1 -0.185721 -0.227029 -204.45 - 95 132.201 899 0 0 -0.187361 -0.240829 -205.85 - 95 0.338376 957 0 1 11.5052 0.05 -204.848 - 95 45.3921 900 0 0 11.589 0.214155 -205.85 - 95 89.0304 901 0 0 11.5956 0.250066 -206.005 +Number of tracker hits in this event = 0 Number of digits in this event = 2 gamma Event: 96 -Number of tracker hits in this event = 28 - 96 167.599 900 4 1 0.0708433 0.15932 -84.45 - 96 293.851 900 4 0 0.0704514 0.166297 -85.85 - 96 119.082 900 3 1 0.106417 0.311123 -114.45 - 96 305.599 901 3 0 0.110263 0.303816 -115.85 - 96 197.07 900 2 1 0.233943 0.132754 -144.45 - 96 126.14 900 2 0 0.229973 0.134886 -145.85 - 96 227.129 900 1 1 0.100742 0.207446 -174.45 - 96 177.816 900 1 0 0.101209 0.209369 -175.85 - 96 201.594 900 0 1 0.0915551 0.303596 -204.45 - 96 141.353 901 0 0 0.110292 0.30349 -205.85 - 96 178.697 899 0 0 -0.545617 -0.05 -205.95 - 96 55.8361 1005 0 0 0.688924 21.0749 -206.25 - 96 135.948 1006 0 0 0.782795 21.25 -206.078 - 96 68.6281 899 0 1 -0.0500817 22.7386 -204.626 - 96 146.015 898 0 1 -0.250113 22.8552 -204.604 - 96 663.233 897 0 1 -0.450119 22.9432 -204.591 - 96 132.97 896 0 1 -0.65 23.0358 -204.495 - 96 155.036 900 0 0 -0.579791 0.05 -205.929 - 96 188.25 902 3 1 0.594632 0.261828 -114.45 - 96 113.352 903 2 1 0.71623 0.570817 -144.45 - 96 99.95 902 2 0 0.691037 0.578453 -145.85 - 96 126.07 904 1 0 0.199603 0.887616 -175.85 - 96 178.959 904 0 0 -0.540123 0.906861 -205.85 - 96 17.9671 900 5 1 0.0761708 -0.05 -54.7928 - 96 106.982 897 5 0 0.223875 -0.48883 -55.8502 - 96 19.7544 896 5 0 0.247929 -0.65 -56.179 - 96 279.396 899 4 1 -0.180993 -13.5651 -84.4501 - 96 4.14989 898 4 1 -0.250024 -13.6948 -84.5652 -Number of digits in this event = 21 +Number of tracker hits in this event = 9 + 96 76.677 989 0 0 97.0639 17.85 -206.058 + 96 308.038 1447 0 1 109.558 27.3794 -204.45 + 96 155.017 947 1 0 77.1579 9.51608 -176.25 + 96 41.4056 1279 1 1 75.9313 9.54893 -174.85 + 96 89.9817 1278 1 1 75.85 9.54946 -174.777 + 96 54.201 1277 1 1 75.65 9.56583 -174.629 + 96 58.3352 1276 1 1 75.45 9.54653 -174.57 + 96 46.9874 1275 1 1 75.2498 9.52159 -174.499 + 96 28.5985 893 7 0 -159.224 -1.27637 3.75 +Number of digits in this event = 3 gamma Event: 97 -Number of tracker hits in this event = 0 -Number of digits in this event = 1 +Number of tracker hits in this event = 23 + 97 126.734 902 3 1 0.588354 -0.0641314 -114.45 + 97 103.738 899 3 0 0.576795 -0.117411 -115.85 + 97 134.708 900 2 1 0.212263 -1.29717 -144.45 + 97 370.79 893 2 0 0.187829 -1.35636 -145.85 + 97 171.942 898 1 1 -0.301613 -2.57577 -174.45 + 97 32.7486 887 1 0 -0.341946 -2.64432 -175.85 + 97 103.325 886 1 0 -0.345369 -2.65 -175.968 + 97 133.317 894 0 1 -1.14879 -3.9917 -204.45 + 97 112.452 879 0 0 -1.1995 -4.06835 -205.85 + 97 247.403 901 0 1 0.335561 0.146602 -204.45 + 97 234.199 900 0 0 0.345466 0.14733 -205.85 + 97 40.8191 1294 3 0 80.442 78.8606 -116.25 + 97 60.1476 578 9 1 -64.45 -44.0387 65.2616 + 97 3.20387 577 9 1 -64.45 -44.0221 65.2584 + 97 156.487 899 3 1 -0.164578 -0.762433 -114.45 + 97 129.906 896 3 0 -0.197546 -0.78105 -115.85 + 97 134.183 895 2 1 -0.979027 -1.24007 -144.45 + 97 167.613 889 1 1 -2.21181 -2.24791 -174.45 + 97 162.753 888 1 0 -2.28665 -2.26931 -175.85 + 97 121.639 880 0 1 -3.87982 -2.68133 -204.45 + 97 288.501 886 0 0 -3.96232 -2.68634 -205.85 + 97 355.109 885 0 0 -4.30147 -2.85 -206.181 + 97 37.1044 894 1 1 -1.22426 -1.84461 -174.45 +Number of digits in this event = 17 gamma Event: 98 Number of tracker hits in this event = 0 Number of digits in this event = 1 gamma Event: 99 -Number of tracker hits in this event = 2 - 99 116.972 479 0 1 -84.1266 -102.072 -204.85 - 99 152.778 480 0 1 -84.0465 -102.201 -204.45 -Number of digits in this event = 2 +Number of tracker hits in this event = 10 + 99 140.185 900 1 1 0.05 -0.456839 -174.515 + 99 369.201 897 1 0 0.30047 -0.551651 -175.85 + 99 1.16003 929 0 1 6.04629 -2.38877 -204.45 + 99 191.728 930 0 1 6.05 -2.38766 -204.459 + 99 103.851 889 0 0 6.6025 -2.21332 -205.85 + 99 110.256 900 0 1 0.127042 -0.0636038 -204.45 + 99 113.667 899 0 0 0.137496 -0.0633397 -205.85 + 99 7.80408 899 1 1 -0.05 -0.102199 -174.83 + 99 97.1259 899 1 0 -1.24027 -0.0880918 -175.85 + 99 73.8282 900 1 0 -1.47232 0.05 -176.12 +Number of digits in this event = 4 Run terminated. Run Summary Number of events processed : 100 - User=14.64s Real=14.79s Sys=0.01s + User=9.45s Real=9.51s Sys=0s End of Run 1 /gun/particle e- /gun/energy 1 GeV @@ -4387,2824 +4106,2580 @@ Cannot set FirstId as its value was already used. done e- Event: 0 -Number of tracker hits in this event = 11 - 0 171.345 901 4 1 0.262285 -0.75666 -84.45 - 0 142.4 896 4 0 0.279799 -0.780256 -85.85 - 0 162.413 902 3 1 0.637923 -1.2612 -114.45 - 0 3.60282 903 3 1 0.65 -1.26469 -114.84 - 0 130.787 893 3 0 0.681587 -1.27334 -115.85 - 0 118.992 907 2 1 1.57337 -1.53098 -144.45 - 0 102.224 892 2 0 1.60859 -1.54091 -145.85 - 0 117.464 911 1 1 2.31951 -1.73038 -174.45 - 0 149.797 891 1 0 2.35595 -1.74129 -175.85 - 0 119.987 915 0 1 3.11484 -1.96796 -204.45 - 0 114.095 890 0 0 3.1563 -1.98429 -205.85 -Number of digits in this event = 6 +Number of tracker hits in this event = 25 + 0 141.497 899 5 1 -0.11152 0.127755 -54.45 + 0 146.489 900 5 0 -0.121246 0.132825 -55.85 + 0 123.631 898 4 1 -0.30507 0.261588 -84.45 + 0 100.362 901 4 0 -0.315165 0.273196 -85.85 + 0 141.315 897 3 1 -0.506108 0.562296 -114.45 + 0 106.538 902 3 0 -0.505677 0.576786 -115.85 + 0 122.528 897 2 1 -0.508165 0.887557 -144.45 + 0 135.293 904 2 0 -0.513761 0.908221 -145.85 + 0 227.443 896 1 1 -0.661367 1.30742 -174.45 + 0 99.6501 906 1 0 -0.664467 1.32366 -175.85 + 0 108.314 896 0 1 -0.728718 1.6507 -204.45 + 0 125.786 908 0 0 -0.735138 1.67298 -205.85 + 0 79.0581 907 1 0 -0.911023 1.57001 -175.85 + 0 67.4296 908 1 0 -0.956276 1.65 -176.113 + 0 196.412 863 0 1 -7.40262 13.0598 -204.45 + 0 16.4393 971 0 0 -7.41287 14.3972 -205.85 + 0 145.344 972 0 0 -7.41235 14.45 -205.906 + 0 59.0597 973 0 0 -7.41604 14.65 -206.102 + 0 36.6808 1111 0 0 -2.40127 42.3891 -206.25 + 0 85.2434 1112 0 0 -2.36387 42.45 -206.135 + 0 163.546 888 0 1 -2.33128 42.946 -204.85 + 0 101.623 896 3 1 -0.650119 0.258222 -114.498 + 0 325.939 895 3 1 -0.85 0.256143 -114.619 + 0 307.909 894 3 1 -1.05006 0.49451 -114.603 + 0 45.0925 1459 1 0 -108.987 111.95 -175.957 +Number of digits in this event = 14 e- Event: 1 -Number of tracker hits in this event = 40 - 1 122.305 899 4 1 -0.0851229 -0.49092 -84.45 - 1 114.38 897 4 0 -0.0860619 -0.49767 -85.85 - 1 129.962 899 3 1 -0.0563172 -0.625894 -114.45 - 1 134.726 900 2 1 0.0900282 -0.655551 -144.45 - 1 102.338 896 2 0 0.10097 -0.656187 -145.85 - 1 115.437 901 1 1 0.336502 -0.622776 -174.45 - 1 125.423 897 1 0 0.351442 -0.601542 -175.85 - 1 194.043 902 0 1 0.592225 -0.132627 -204.45 - 1 131.707 899 0 0 0.606422 -0.117276 -205.85 - 1 64.723 899 2 1 -0.050104 -0.648471 -144.685 - 1 161.867 898 2 0 -0.600991 -0.415915 -145.85 - 1 239.487 905 1 1 1.21816 -0.622595 -174.45 - 1 249.445 896 1 0 1.29827 -0.702281 -175.85 - 1 153.964 917 0 1 3.52997 0.394388 -204.45 - 1 30.8246 903 0 0 3.61288 0.811276 -205.85 - 1 239.421 904 0 0 3.62138 0.85 -205.977 - 1 103.067 900 2 0 -0.395181 0.0548318 -145.85 - 1 57.499 875 1 1 -5.01541 1.63083 -174.45 - 1 69.9223 874 1 1 -5.05 1.64507 -174.573 - 1 68.6718 908 1 0 -5.42845 1.81947 -175.85 - 1 53.8385 909 1 0 -5.49701 1.85 -176.08 - 1 203.869 825 0 1 -14.9707 6.3356 -204.45 - 1 115.202 928 0 0 -15.1873 5.79591 -205.85 - 1 7.6959 927 0 0 -15.2398 5.65 -206.211 - 1 150.582 824 0 1 -15.05 6.40734 -204.644 - 1 47.7109 946 0 0 -15.6134 9.28784 -205.85 - 1 59.411 947 0 0 -15.6633 9.45 -205.915 - 1 149.927 948 0 0 -15.735 9.65 -206.008 - 1 41.0505 949 0 0 -15.7977 9.85 -206.181 - 1 148.269 883 0 0 -26.838 -3.39424 -206.25 - 1 274.852 882 0 0 -26.8679 -3.45006 -206.063 - 1 278.813 896 1 1 -0.710638 0.469451 -174.45 - 1 131.005 902 1 0 -0.731333 0.488094 -175.85 - 1 110.058 894 0 1 -1.20924 0.84399 -204.45 - 1 21.1709 1136 0 0 -4.44892 47.45 -205.992 - 1 22.0477 1011 0 1 22.25 40.846 -204.763 - 1 38.5276 1012 0 1 22.45 41.0493 -204.772 - 1 120.15 903 0 1 0.809923 -0.05 -204.461 - 1 100.316 898 0 0 0.318152 -0.385013 -205.85 - 1 46.8262 897 0 0 0.236495 -0.45 -206.102 -Number of digits in this event = 21 -e- -Event: 2 -Number of tracker hits in this event = 14 - 2 158.552 899 3 1 -0.134117 -0.261779 -114.45 - 2 114.368 898 3 0 -0.147878 -0.278268 -115.85 - 2 116.974 897 2 1 -0.454548 -0.630537 -144.45 - 2 12.1951 897 2 0 -0.470952 -0.649195 -145.85 - 2 98.0338 896 2 0 -0.471656 -0.65 -145.912 - 2 151.412 896 1 1 -0.761367 -1.03008 -174.45 - 2 128.923 893 1 0 -0.680195 -1.28367 -175.85 - 2 109.801 910 0 1 2.22333 -7.2876 -204.45 - 2 125.489 861 0 0 2.06299 -7.69319 -205.85 - 2 121.019 903 3 0 -1.02178 0.784852 -115.85 - 2 70.9744 904 3 0 -1.15773 0.850035 -116.021 - 2 116.633 995 3 0 -21.9336 19.1028 -116.25 - 2 180.135 996 3 0 -21.9348 19.2501 -116.142 - 2 131.704 1523 11 0 -48.7135 124.877 123.75 -Number of digits in this event = 8 -e- -Event: 3 -Number of tracker hits in this event = 32 - 3 170.269 900 2 1 0.0583737 0.195035 -144.45 - 3 114.072 898 1 1 -0.256308 0.202535 -174.45 - 3 119.526 900 1 0 -0.277827 0.202104 -175.85 - 3 316.078 896 0 1 -0.725641 0.168862 -204.45 - 3 94.2514 900 0 0 -0.740556 0.169205 -205.85 - 3 58.9632 895 0 1 -0.85 0.202588 -204.519 - 3 63.0748 816 3 1 -16.7423 -4.46071 -114.45 - 3 381.589 900 1 1 0.0861256 0.309773 -174.45 - 3 93.6002 913 0 0 -0.617338 2.77634 -205.85 - 3 11.7507 810 0 0 5.66723 -18.0107 -206.25 - 3 76.8527 809 0 0 5.67847 -18.05 -206.197 - 3 47.8662 808 0 0 5.70992 -18.25 -205.951 - 3 171.528 928 0 1 5.73585 -18.9801 -204.85 - 3 69.732 929 0 1 5.85 -19.2163 -204.515 - 3 128.064 930 0 1 6.05014 -19.3484 -204.55 - 3 208.251 931 0 1 6.25 -19.3948 -204.512 - 3 66.6879 806 0 0 5.70367 -18.8113 -205.85 - 3 85.3767 807 0 0 5.68479 -18.65 -206.052 - 3 152.719 982 0 0 3.95168 16.4965 -206.25 - 3 192.135 983 0 0 4 16.65 -206.097 - 3 59.161 898 1 0 0.298469 -0.335022 -175.85 - 3 86.733 897 1 0 0.31893 -0.45 -176.035 - 3 0.0558075 896 1 0 0.297755 -0.650129 -176.25 - 3 72.834 679 1 0 -45.1507 -44.1152 -176.25 - 3 101.806 678 1 0 -45.304 -44.2501 -176.121 - 3 73.8465 677 1 0 -45.4894 -44.45 -176.031 - 3 209.633 668 1 1 -46.2714 -45.4261 -174.85 - 3 173.075 667 1 1 -46.4501 -45.7276 -174.637 - 3 113.558 666 1 1 -46.65 -46.0035 -174.587 - 3 75.6017 669 1 1 -46.25 -46.2524 -174.798 - 3 83.628 671 1 0 -45.3657 -45.7839 -175.85 - 3 207.503 672 1 0 -45.3045 -45.65 -175.969 -Number of digits in this event = 12 -e- -Event: 4 -Number of tracker hits in this event = 40 - 4 266.892 900 4 1 0.195734 -0.0842904 -84.45 - 4 139.395 899 4 0 0.204535 -0.0854601 -85.85 - 4 411.05 901 3 1 0.383561 -0.120812 -114.45 - 4 375.57 899 3 0 0.393782 -0.129827 -115.85 - 4 100.488 902 2 1 0.613185 -0.32179 -144.45 - 4 143.293 898 2 0 0.634428 -0.331513 -145.85 - 4 125.539 905 1 1 1.07855 -0.529035 -174.45 - 4 102.328 897 1 0 1.09405 -0.546335 -175.85 - 4 101.362 906 0 1 1.39277 -0.905383 -204.45 - 4 113.954 895 0 0 1.42107 -0.920509 -205.85 - 4 117.341 901 0 1 0.336225 -0.481192 -204.45 - 4 203.659 901 0 0 0.249647 0.385995 -205.85 - 4 101.739 902 0 0 0.252764 0.450119 -205.95 - 4 54.4881 903 0 0 0.237299 0.65 -206.137 - 4 480.505 900 3 1 0.233921 -0.158837 -114.45 - 4 42.4065 885 2 1 -3.01177 -0.0762453 -144.45 - 4 113.064 900 2 0 -3.12187 0.172488 -145.85 - 4 95.9617 873 1 1 -5.29871 4.10315 -174.45 - 4 34.0008 874 1 1 -5.24994 4.13022 -174.765 - 4 111.624 920 1 0 -5.04439 4.1952 -175.85 - 4 115.844 902 0 1 0.519165 6.25185 -204.45 - 4 101.265 932 0 0 0.695128 6.59943 -205.85 - 4 103.86 933 0 0 0.72933 6.65 -206.046 - 4 81.6394 1015 0 0 2.5073 23.1763 -206.25 - 4 58.593 1016 0 0 2.45269 23.25 -206.083 - 4 117.041 910 0 1 2.16484 23.3988 -204.85 - 4 6.52812 909 0 1 2.05 23.5088 -204.469 - 4 155.775 915 0 1 3.10673 -36.852 -204.85 - 4 152.439 914 0 1 3.05 -37.4713 -204.662 - 4 270.574 913 0 1 2.85 -37.3678 -204.74 - 4 154.046 895 2 1 -1.00383 0.464568 -144.45 - 4 119.261 902 2 0 -1.05273 0.49032 -145.85 - 4 108.409 889 1 1 -2.22015 1.10304 -174.45 - 4 105.376 905 1 0 -2.28559 1.10441 -175.85 - 4 226.322 882 0 1 -3.60631 1.15904 -204.45 - 4 118.161 905 0 0 -3.67116 1.12281 -205.85 - 4 191.679 893 3 0 0.412082 -1.41033 -115.85 - 4 53.7916 892 3 0 0.414092 -1.45 -115.899 - 4 12.9499 324 5 1 -115.171 130.284 -54.45 - 4 254.272 325 5 1 -115.15 130.299 -54.4547 -Number of digits in this event = 16 -e- -Event: 5 -Number of tracker hits in this event = 17 - 5 98.0632 899 5 1 -0.180058 0.0792056 -54.45 - 5 187.574 900 5 0 -0.183678 0.0808011 -55.85 - 5 131.278 899 4 1 -0.244939 0.107093 -84.45 - 5 211.739 900 4 0 -0.249993 0.0973988 -85.85 - 5 264.444 898 3 1 -0.34786 -0.09117 -114.45 - 5 152.382 899 3 0 -0.357651 -0.106492 -115.85 - 5 131.072 897 2 1 -0.528846 -0.444694 -144.45 - 5 130.477 897 2 0 -0.526642 -0.468595 -145.85 - 5 131.762 898 1 1 -0.411014 -0.89568 -174.45 - 5 146.887 895 1 0 -0.412422 -0.891873 -175.85 - 5 141.779 897 0 1 -0.517519 -0.861163 -204.45 - 5 114.61 896 0 0 -0.537461 -0.849967 -205.85 - 5 103.714 898 4 1 -0.250045 0.112016 -84.6849 - 5 232.85 897 4 1 -0.45 0.215529 -84.7252 - 5 25.7347 896 4 1 -0.65 0.421038 -84.8097 - 5 9.04026 861 1 0 10.361 -7.76487 -176.25 - 5 336.101 719 0 1 -36.0974 -84.4688 -204.45 -Number of digits in this event = 14 -e- -Event: 6 -Number of tracker hits in this event = 12 - 6 138.172 900 4 1 0.0680024 0.480948 -84.45 - 6 117.718 902 4 0 0.0594534 0.489255 -85.85 - 6 115.558 899 3 1 -0.0730252 0.740611 -114.45 - 6 126.558 903 3 0 -0.0981389 0.754591 -115.85 - 6 112.952 897 2 1 -0.634633 1.05757 -144.45 - 6 132.597 905 2 0 -0.672194 1.06749 -145.85 - 6 108.169 893 1 1 -1.41955 1.26363 -174.45 - 6 127.445 906 1 0 -1.45811 1.28566 -175.85 - 6 128.61 888 0 1 -2.41815 1.6182 -204.45 - 6 126.128 907 0 0 -2.41555 1.58869 -205.85 - 6 10.2517 759 0 1 -28.05 -18.7961 -204.502 - 6 3.77555 341 5 1 -111.75 132.207 -54.561 -Number of digits in this event = 8 -e- -Event: 7 -Number of tracker hits in this event = 24 - 7 101.405 899 5 1 -0.146663 0.05 -54.4946 - 7 111.339 900 5 0 -0.14986 0.0524607 -55.85 - 7 118.882 899 4 1 -0.205944 0.0640087 -84.45 - 7 112.548 900 4 0 -0.219433 0.0654871 -85.85 - 7 135.4 900 3 0 -0.502448 0.05 -115.854 - 7 131.494 897 2 1 -0.538182 0.450454 -144.45 - 7 127.177 902 2 0 -0.563574 0.472706 -145.85 - 7 108.129 895 1 1 -0.979854 0.867989 -174.45 - 7 164.314 904 1 0 -1.00663 0.904554 -175.85 - 7 114.948 892 0 1 -1.61954 1.69155 -204.45 - 7 221.499 908 0 0 -1.6583 1.7334 -205.85 - 7 181.705 924 0 0 -43.6549 4.9005 -206.25 - 7 533.233 681 0 1 -43.6886 5.04782 -204.85 - 7 60.5037 682 0 1 -43.65 5.03606 -204.762 - 7 0.498931 969 3 0 2.02019 14.0487 -116.25 - 7 246.679 970 3 0 2.02088 14.05 -116.247 - 7 1.50476 1191 3 0 -39.8712 58.3971 -116.25 - 7 17.8936 900 6 1 0.08255 -0.0500221 -24.8018 - 7 100.312 898 6 0 -0.337907 -0.398261 -25.85 - 7 107.148 897 6 0 -0.31198 -0.450038 -25.9346 - 7 77.6474 896 0 1 -0.677151 1.04929 -204.45 - 7 259.841 897 0 1 -0.649964 0.940341 -204.489 - 7 12.1885 898 0 1 -0.45 1.05288 -204.841 - 7 94.4471 903 0 0 1.14119 0.773889 -205.85 -Number of digits in this event = 10 -e- -Event: 8 -Number of tracker hits in this event = 88 - 8 246.531 900 5 1 0.105365 -0.274108 -54.45 - 8 143.653 898 5 0 0.108956 -0.278459 -55.85 - 8 257.29 900 4 1 0.193019 -0.392972 -84.45 - 8 114.298 898 4 0 0.19532 -0.388284 -85.85 - 8 181.285 901 3 1 0.2563 -0.311609 -114.45 - 8 121.511 898 3 0 0.25402 -0.301134 -115.85 - 8 246.067 900 2 1 0.149773 -0.0968181 -144.45 - 8 147.604 899 2 0 0.137021 -0.0891329 -145.85 - 8 122.662 899 1 1 -0.108489 0.0673571 -174.45 - 8 377.709 897 0 1 -0.496553 -0.411005 -204.45 - 8 165.323 898 0 0 -0.512016 -0.432008 -205.85 - 8 238.235 901 2 1 0.367666 0.0500604 -144.76 - 8 20.5034 902 4 0 0.184288 0.579653 -85.8501 - 8 239.989 903 4 0 0.18426 0.65 -85.8995 - 8 57.0179 904 4 0 -0.208111 0.85 -86.0243 - 8 45.0507 902 4 1 0.549505 0.643762 -84.85 - 8 164.967 897 4 0 4.39337 -0.570938 -85.85 - 8 222.229 896 0 0 -0.539106 -0.664004 -205.85 - 8 453.217 901 1 1 0.331512 -1.11482 -174.45 - 8 22.3783 897 1 0 0.563335 -0.476646 -175.85 - 8 126.901 898 1 0 0.573512 -0.45 -175.909 - 8 75.1762 933 0 1 6.78327 13.2859 -204.45 - 8 71.6634 934 0 1 6.85 13.4329 -204.635 - 8 19.5528 971 0 0 7.32194 14.4029 -205.85 - 8 94.6669 972 0 0 7.34537 14.45 -205.909 - 8 52.4779 973 0 0 7.445 14.6502 -206.154 - 8 112.047 898 4 1 -0.283761 -0.111809 -84.45 - 8 244.27 900 4 0 -0.467117 0.113822 -85.85 - 8 119.745 876 3 1 -4.82915 4.44999 -114.45 - 8 23.454 875 3 1 -4.85 4.51617 -114.792 - 8 127.756 923 3 0 -4.91265 4.71094 -115.85 - 8 138.446 867 2 1 -6.51467 10.2899 -144.45 - 8 133.953 952 2 0 -6.58024 10.4729 -145.85 - 8 116.118 862 1 1 -7.56286 14.0271 -174.45 - 8 121.895 970 1 0 -7.60552 14.1861 -175.85 - 8 170.256 856 0 1 -8.80832 17.111 -204.45 - 8 117.614 984 0 0 -8.96866 16.9507 -205.85 - 8 20.2466 797 3 1 -20.593 1.30599 -114.45 - 8 86.9785 796 3 1 -20.6502 1.31349 -114.501 - 8 68.8494 795 3 1 -20.85 1.34411 -114.694 - 8 160.169 907 3 0 -21.9164 1.59242 -115.85 - 8 109.437 666 2 1 -46.6869 3.17959 -144.45 - 8 111.309 665 2 1 -46.85 3.122 -144.564 - 8 82.1156 664 2 1 -47.05 3.05306 -144.715 - 8 142.893 911 2 0 -48.5971 2.39807 -145.85 - 8 80.2001 910 2 0 -48.955 2.25 -146.1 - 8 1.3924 464 1 1 -87.2457 -12.5096 -174.45 - 8 82.1 463 1 1 -87.25 -12.5109 -174.454 - 8 67.5069 462 1 1 -87.45 -12.5707 -174.64 - 8 17.9105 461 1 1 -87.65 -12.6332 -174.832 - 8 135.484 835 1 0 -88.7032 -12.8916 -175.85 - 8 24.0458 1599 1 0 -78.0337 140.082 -176.25 - 8 48.9931 1600 1 0 -78.0191 140.15 -176.241 - 8 48.4385 1601 1 0 -77.9807 140.35 -176.208 - 8 81.5713 1602 1 0 -77.9339 140.55 -176.183 - 8 47.5085 1603 1 0 -77.8623 140.75 -176.181 - 8 75.4809 1604 1 0 -77.7919 140.95 -176.177 - 8 67.6753 1605 1 0 -77.7212 141.15 -176.16 - 8 87.0315 1606 1 0 -77.6704 141.35 -176.109 - 8 54.7129 1607 1 0 -77.6392 141.55 -176.066 - 8 60.3375 1608 1 0 -77.6119 141.75 -176.037 - 8 67.9775 1609 1 0 -77.5854 141.95 -175.981 - 8 73.477 1610 1 0 -77.5566 142.15 -175.9 - 8 39.4009 515 1 1 -76.9003 144.239 -174.85 - 8 127.308 516 1 1 -76.8499 144.382 -174.787 - 8 57.7594 517 1 1 -76.6498 144.681 -174.633 - 8 60.7525 518 1 1 -76.45 144.839 -174.57 - 8 31.7774 519 1 1 -76.25 144.984 -174.498 - 8 117.655 1642 2 0 -80.3472 148.691 -146.25 - 8 128.2 501 2 1 -79.8108 148.492 -144.85 - 8 130.367 893 1 0 0.295968 -1.27039 -175.85 - 8 96.8587 894 0 1 -1.08472 -4.4758 -204.45 - 8 151.215 877 0 0 -1.22911 -4.52295 -205.85 - 8 6.82854 1266 0 0 28.8225 73.422 -206.25 - 8 95.9556 1267 0 0 28.8332 73.45 -206.244 - 8 61.7653 1268 0 0 28.9088 73.65 -206.208 - 8 64.18 1269 0 0 28.9765 73.85 -206.178 - 8 59.9525 1270 0 0 29.0562 74.05 -206.124 - 8 61.9638 1271 0 0 29.1447 74.25 -206.063 - 8 192.869 1272 0 0 29.2399 74.45 -205.987 - 8 34.1592 1273 0 0 29.3392 74.65 -205.893 - 8 47.0439 1054 0 1 30.9639 77.1748 -204.85 - 8 155.755 1055 0 1 31.05 77.3145 -204.787 - 8 76.26 1056 0 1 31.25 77.7378 -204.566 - 8 90.7503 1058 0 1 31.699 78.6806 -204.45 - 8 50.7291 1059 0 1 31.85 78.8521 -204.741 - 8 53.389 1298 0 0 32.2543 79.7448 -205.85 - 8 84.1679 1299 0 0 32.3004 79.85 -206.011 -Number of digits in this event = 32 -e- -Event: 9 -Number of tracker hits in this event = 21 - 9 131.341 899 5 1 -0.0796333 0.293248 -54.45 - 9 120.699 901 5 0 -0.086985 0.303961 -55.85 - 9 111.947 899 4 1 -0.212116 0.512562 -84.45 - 9 150.157 902 4 0 -0.220456 0.521218 -85.85 - 9 153.822 898 3 1 -0.388399 0.717676 -114.45 - 9 102.19 903 3 0 -0.382259 0.725966 -115.85 - 9 150.159 898 2 1 -0.295047 0.89382 -144.45 - 9 173.039 904 2 0 -0.290417 0.915856 -145.85 - 9 114.488 899 1 1 -0.17531 1.40616 -174.45 - 9 135.83 906 1 0 -0.178069 1.41573 -175.85 - 9 153.04 899 0 1 -0.171914 1.52769 -204.45 - 9 118.954 907 0 0 -0.171259 1.50424 -205.85 - 9 42.2498 649 3 0 -6.06175 -50.1934 -116.25 - 9 77.8973 648 3 0 -6.07824 -50.25 -116.124 - 9 62.4809 647 3 0 -6.04239 -50.45 -115.95 - 9 48.046 646 3 0 -5.98314 -50.65 -115.881 - 9 4.64673 873 3 1 -5.26177 -52.6054 -114.85 - 9 59.776 874 3 1 -5.25 -52.6303 -114.839 - 9 146.667 629 3 0 -4.3122 -54.0957 -115.85 - 9 367.152 628 3 0 -4.03722 -54.2501 -115.942 - 9 5.43097 828 5 0 46.5456 -14.4415 -56.25 -Number of digits in this event = 12 -e- -Event: 10 -Number of tracker hits in this event = 59 - 10 111.071 900 5 1 0.1039 0.101685 -54.45 - 10 174.105 900 5 0 0.098902 0.105527 -55.85 - 10 99.0851 900 4 1 0.094279 0.250891 -84.45 - 10 202.348 901 4 0 0.0904012 0.251945 -85.85 - 10 188.878 900 3 1 0.0731273 0.202358 -114.45 - 10 118.006 900 3 0 0.0661427 0.199237 -115.85 - 10 132.41 899 2 1 -0.0655573 0.139214 -144.45 - 10 124.492 900 2 0 -0.0878723 0.132151 -145.85 - 10 122.986 897 1 1 -0.508004 0.0718134 -174.45 - 10 218.228 894 0 1 -1.22338 -0.893486 -204.45 - 10 126.298 895 0 0 -1.24879 -0.899262 -205.85 - 10 71.2852 902 3 0 0.0726721 0.467192 -116.129 - 10 174.718 900 2 1 0.150748 -0.829642 -144.45 - 10 66.5709 892 2 0 0.24872 -1.52943 -145.85 - 10 51.7043 891 2 0 0.267443 -1.65 -146.095 - 10 163.302 912 1 1 2.49684 -16.0005 -174.45 - 10 6.06284 913 1 1 2.65 -16.3428 -174.835 - 10 166.318 813 1 0 3.05484 -17.2571 -175.85 - 10 63.9413 812 1 0 3.14293 -17.45 -176.063 - 10 165.772 967 0 1 13.6165 -41.9632 -204.45 - 10 1.87522 966 0 1 13.4499 -42.2851 -204.845 - 10 40.2526 683 0 0 12.9443 -43.3439 -205.85 - 10 171.413 682 0 0 12.8985 -43.45 -205.946 - 10 71.4933 681 0 0 12.7948 -43.6502 -206.075 - 10 177.256 680 0 0 12.6884 -43.85 -206.181 - 10 24.7611 310 0 0 -18.5817 -118.092 -206.25 - 10 54.4605 309 0 0 -18.6045 -118.15 -206.224 - 10 77.7007 308 0 0 -18.6544 -118.35 -206.141 - 10 76.3669 307 0 0 -18.689 -118.55 -206.063 - 10 62.2811 306 0 0 -18.7276 -118.75 -205.986 - 10 41.3843 305 0 0 -18.7731 -118.95 -205.904 - 10 197.451 804 0 1 -19.0932 -120.852 -204.85 - 10 18.1345 686 0 0 0.517527 -42.6812 -206.25 - 10 89.817 687 0 0 0.475841 -42.65 -206.178 - 10 114.134 688 0 0 0.342468 -42.45 -205.946 - 10 34.5248 882 0 1 -3.55175 -41.1559 -204.85 - 10 194.372 881 0 1 -3.65 -41.1274 -204.841 - 10 131.366 685 0 0 -2.42358 -42.8851 -205.85 - 10 87.9909 684 0 0 -2.36444 -43.05 -205.926 - 10 54.1233 575 0 0 -18.2349 -64.8617 -206.25 - 10 166.868 484 0 0 -28.9531 -83.2404 -206.25 - 10 244.19 902 1 1 0.558672 0.858709 -174.45 - 10 250.297 904 1 0 0.580342 0.891899 -175.85 - 10 118.11 904 0 1 1.00629 1.76637 -204.45 - 10 111.781 908 0 0 1.1214 1.8207 -205.85 - 10 145.552 910 2 0 -0.19751 2.21602 -145.85 - 10 138.42 876 1 1 -4.74196 -1.02944 -174.45 - 10 30.2048 877 1 1 -4.64984 -0.885841 -174.739 - 10 24.3105 897 1 0 -3.992 -0.478223 -175.85 - 10 123.711 898 1 0 -3.94467 -0.45 -175.928 - 10 88.0161 953 0 1 10.6799 10.642 -204.45 - 10 86.868 954 0 1 10.85 10.7894 -204.659 - 10 11.1895 955 0 1 11.0502 10.9573 -204.824 - 10 94.0744 959 0 0 12.3778 11.8802 -205.85 - 10 107.104 960 0 0 12.6577 12.05 -206.054 - 10 163.343 902 0 1 0.498575 1.05107 -204.45 - 10 117.239 905 0 0 0.486828 1.05507 -205.85 - 10 110.174 946 8 1 9.31113 120.282 35.55 - 10 24.6671 679 0 1 -44.05 -18.4381 -204.642 -Number of digits in this event = 26 -e- -Event: 11 -Number of tracker hits in this event = 21 - 11 173.514 899 5 1 -0.221998 -0.072898 -54.45 - 11 231.252 899 5 0 -0.226484 -0.0808691 -55.85 - 11 120.388 898 4 1 -0.270048 -0.28122 -84.45 - 11 134.015 898 4 0 -0.276065 -0.28845 -85.85 - 11 237.347 898 3 1 -0.38737 -0.432749 -114.45 - 11 345.394 898 3 0 -0.399403 -0.436041 -115.85 - 11 121.757 897 2 1 -0.635148 -0.496668 -144.45 - 11 145.161 897 2 0 -0.643888 -0.497576 -145.85 - 11 132.665 896 1 1 -0.816984 -0.543634 -174.45 - 11 193.187 897 1 0 -0.823779 -0.546399 -175.85 - 11 144.177 895 0 1 -0.941552 -0.622471 -204.45 - 11 116.031 897 0 0 -0.953904 -0.61912 -205.85 - 11 82.5496 1014 2 0 -8.61099 23.0476 -146.25 - 11 299.214 1015 2 0 -8.61188 23.0501 -146.247 - 11 26.6967 866 2 1 -6.72379 22.5089 -144.85 - 11 299.382 867 2 1 -6.65 22.5116 -144.808 - 11 35.2948 899 3 1 -0.25 -0.692838 -114.771 - 11 178.751 897 3 0 0.245926 -0.450029 -115.999 - 11 243.227 892 2 1 -1.65 141.273 -144.505 - 11 18.6479 889 2 1 -2.07153 133.499 -144.45 - 11 100.54 890 2 1 -2.05 133.508 -144.461 -Number of digits in this event = 16 -e- -Event: 12 -Number of tracker hits in this event = 36 - 12 132.475 899 3 1 -0.111986 0.128508 -114.45 - 12 123.173 900 3 0 -0.114558 0.12872 -115.85 - 12 170.92 899 2 1 -0.15857 0.152096 -144.45 - 12 117.794 900 2 0 -0.160413 0.159957 -145.85 - 12 101.765 899 1 1 -0.167317 0.308296 -174.45 - 12 122.494 901 1 0 -0.164306 0.326272 -175.85 - 12 117.169 899 0 1 -0.0617667 0.667452 -204.45 - 12 128.1 901 0 0 -0.154699 0.35112 -205.85 - 12 104.99 900 5 1 0.0500074 0.0719434 -54.7602 - 12 154.395 899 6 0 -0.135882 -0.126261 -25.85 - 12 76.0671 893 5 1 -1.28731 0.338274 -54.45 - 12 151.181 892 5 1 -1.45 0.54 -54.6151 - 12 30.8696 891 5 1 -1.6502 0.726213 -54.7711 - 12 24.7242 906 5 0 -3.05888 1.40924 -55.85 - 12 154.87 907 5 0 -3.14305 1.45 -55.9149 - 12 58.3941 908 5 0 -3.45976 1.65 -56.1926 - 12 61.734 1140 5 0 -106.157 48.2158 -56.25 - 12 207.983 1141 5 0 -106.292 48.25 -56.1634 - 12 51.1309 357 5 1 -108.586 48.8319 -54.85 - 12 116.058 356 5 1 -108.75 48.8811 -54.7507 - 12 66.9122 355 5 1 -108.95 48.9592 -54.665 - 12 53.0656 354 5 1 -109.15 49.0542 -54.6051 - 12 75.7407 353 5 1 -109.35 49.1309 -54.5548 - 12 56.7404 352 5 1 -109.55 49.1869 -54.5015 - 12 30.2179 351 5 1 -109.75 49.2262 -54.4596 - 12 53.1273 350 5 1 -109.95 49.2074 -54.4672 - 12 93.1716 349 5 1 -110.15 49.0861 -54.5313 - 12 114.224 348 5 1 -110.35 48.9695 -54.6318 - 12 90.9582 347 5 1 -110.55 48.8102 -54.7813 - 12 184.833 1138 5 0 -112.987 47.839 -55.85 - 12 162.051 1137 5 0 -113.505 47.65 -55.9731 - 12 262.009 1136 5 0 -114.068 47.45 -56.0505 - 12 34.9255 919 0 0 -50.2909 4.05 -206.024 - 12 76.2891 401 2 1 -99.75 -78.6912 -144.79 - 12 8.81582 543 2 0 -81.4788 -71.2998 -146.25 - 12 87.9014 749 2 0 -113.761 -30.2164 -146.25 -Number of digits in this event = 14 -e- -Event: 13 -Number of tracker hits in this event = 7 - 13 123.446 901 4 1 0.306563 0.0635283 -84.45 - 13 150.04 901 3 1 0.352254 -0.279636 -114.45 - 13 138.064 898 3 0 0.371439 -0.283967 -115.85 - 13 157.552 903 2 1 0.786997 -0.302883 -144.45 - 13 115.116 898 2 0 0.806862 -0.299078 -145.85 - 13 124.121 905 1 1 1.23008 -0.196969 -174.45 - 13 178.076 899 1 0 1.25346 -0.186264 -175.85 -Number of digits in this event = 7 -e- -Event: 14 -Number of tracker hits in this event = 18 - 14 234.515 900 5 1 0.0735006 -0.137535 -54.45 - 14 123.322 899 5 0 0.0760175 -0.136176 -55.85 - 14 228.354 900 4 1 0.106155 -0.131286 -84.45 - 14 213.614 899 4 0 0.109993 -0.131833 -85.85 - 14 129.067 900 3 1 0.198846 -0.146589 -114.45 - 14 124.624 899 3 0 0.206376 -0.15334 -115.85 - 14 135.668 901 2 1 0.373592 -0.274398 -144.45 - 14 129.488 898 2 0 0.387958 -0.280114 -145.85 - 14 160.869 903 1 1 0.696104 -0.386414 -174.45 - 14 119.642 898 1 0 0.705293 -0.395901 -175.85 - 14 168.209 904 0 1 0.881613 -0.563661 -204.45 - 14 129.286 897 0 0 0.883836 -0.572801 -205.85 - 14 92.1811 902 1 1 0.65 -0.273695 -174.705 - 14 0.664205 901 1 1 0.45 -0.375911 -174.849 - 14 27.7794 883 1 0 -1.50015 -3.27257 -175.85 - 14 33.1791 883 1 1 -3.3704 -5.83778 -174.85 - 14 225.838 882 1 1 -3.45009 -5.87086 -174.824 - 14 203.311 881 1 1 -3.65003 -5.92019 -174.631 -Number of digits in this event = 14 -e- -Event: 15 -Number of tracker hits in this event = 9 - 15 102.014 901 4 1 0.322168 -0.0586488 -84.45 - 15 126.774 899 4 0 0.330195 -0.0674722 -85.85 - 15 127.528 901 3 1 0.410353 -0.259587 -114.45 - 15 105.774 898 3 0 0.400548 -0.260039 -115.85 - 15 112.993 900 2 1 0.223361 -0.273175 -144.45 - 15 235.162 898 2 0 0.215138 -0.293987 -145.85 - 15 120.938 898 0 1 -0.314606 -1.27636 -204.45 - 15 96.4388 893 0 0 -0.324928 -1.29765 -205.85 - 15 143.456 1172 2 0 -14.0635 54.5972 -146.25 -Number of digits in this event = 6 -e- -Event: 16 -Number of tracker hits in this event = 9 - 16 121.434 900 4 1 0.126336 0.354427 -84.45 - 16 125.552 901 4 0 0.130235 0.362213 -85.85 - 16 243.882 900 3 1 0.178151 0.53174 -114.45 - 16 107.22 902 3 0 0.175222 0.54289 -115.85 - 16 120.953 900 2 1 0.134273 0.769891 -144.45 - 16 184.194 903 2 0 0.12789 0.782577 -145.85 - 16 251.621 899 0 1 -0.0917114 1.32389 -204.45 - 16 118.735 906 0 0 -0.094239 1.3415 -205.85 - 16 140.952 1010 2 1 22.1959 -13.5329 -144.85 -Number of digits in this event = 9 -e- -Event: 17 -Number of tracker hits in this event = 23 - 17 225.259 902 4 1 0.488786 0.0958139 -84.45 - 17 122.593 900 4 0 0.503649 0.0895592 -85.85 - 17 127.576 903 3 1 0.766577 -0.105419 -114.45 - 17 110.008 899 3 0 0.80025 -0.108663 -115.85 - 17 132.763 906 2 1 1.41444 -0.104656 -144.45 - 17 116.581 899 2 0 1.46417 -0.132802 -145.85 - 17 89.0302 913 1 1 2.83172 -0.738466 -174.45 - 17 27.4627 914 1 1 2.85 -0.758004 -174.721 - 17 61.0309 896 1 0 2.93271 -0.84099 -175.85 - 17 95.5141 895 1 0 2.94156 -0.85 -175.969 - 17 114.845 925 0 1 5.09968 -2.96774 -204.45 - 17 175.569 884 0 0 5.1831 -3.06989 -205.85 - 17 92.0208 900 5 1 0.206757 -0.05 -54.5199 - 17 107.269 899 5 1 -0.0500938 -0.28111 -54.4756 - 17 61.7879 899 6 0 -0.215704 -0.05 -26.1594 - 17 253.65 906 0 1 1.39078 0.350946 -204.45 - 17 219.476 901 0 0 1.417 0.331532 -205.85 - 17 57.365 1444 4 0 -150.084 108.95 -85.9631 - 17 31.1302 143 4 1 -151.387 109.837 -84.85 - 17 36.3036 1446 4 0 -152.344 109.404 -85.8501 - 17 182.615 1445 4 0 -152.395 109.35 -85.8965 - 17 62.745 136 4 1 -152.938 109.454 -84.85 - 17 18.5192 477 5 0 89.7129 -84.4644 -56.25 -Number of digits in this event = 10 -e- -Event: 18 -Number of tracker hits in this event = 24 - 18 96.1875 899 3 1 -0.18566 -0.0975725 -114.45 - 18 118.124 899 3 0 -0.183052 -0.0844389 -115.85 - 18 167.482 899 2 1 -0.116085 0.162489 -144.45 - 18 288.484 900 2 0 -0.103249 0.193496 -145.85 - 18 116.377 900 1 1 0.110222 0.819363 -174.45 - 18 135.838 904 1 0 0.0695518 0.871559 -175.85 - 18 127.85 896 0 1 -0.727938 1.99236 -204.45 - 18 71.3081 909 0 0 -0.77929 2.03988 -205.85 - 18 24.3409 910 0 0 -0.790011 2.05 -206.139 - 18 186.285 1282 3 0 -101.794 76.45 -116.249 - 18 38.225 391 3 1 -101.751 76.2292 -114.85 - 18 115.779 392 3 1 -101.75 76.2279 -114.846 - 18 270.17 901 1 1 0.406904 0.154369 -174.45 - 18 116.511 900 1 0 0.412399 0.181938 -175.85 - 18 143.799 901 0 1 0.443209 0.479085 -204.45 - 18 225.609 902 0 0 0.419222 0.475492 -205.85 - 18 118.464 909 1 1 1.9795 1.70422 -174.45 - 18 121.035 908 1 0 1.98548 1.79097 -175.85 - 18 133.78 908 0 1 1.74537 3.9779 -204.45 - 18 115.383 920 0 0 1.73161 4.0688 -205.85 - 18 90.2456 119 2 0 -70.3983 -156.15 -146.162 - 18 152.465 899 5 0 -111.526 -0.234931 -56.25 - 18 166.31 20 5 1 -176.143 0.262944 -54.45 - 18 4.99666 898 5 0 -111.578 -0.250007 -56.0837 -Number of digits in this event = 13 -e- -Event: 19 -Number of tracker hits in this event = 36 - 19 137.18 900 5 1 0.0678799 -0.065532 -54.45 - 19 215.105 899 5 0 0.0756391 -0.065778 -55.85 - 19 153.481 900 4 1 0.215321 -0.0786484 -84.45 - 19 122.079 899 4 0 0.22254 -0.0855057 -85.85 - 19 197.017 901 3 1 0.377046 -0.200125 -114.45 - 19 33.822 899 3 0 -0.05 -0.186607 -116.109 - 19 154.833 897 3 0 0.290427 -0.606753 -116.25 - 19 114.513 902 3 1 0.507441 -0.835172 -114.85 - 19 164.813 988 5 0 -16.6933 17.7402 -56.25 - 19 588.915 989 5 0 -16.9039 17.85 -56.0846 - 19 180.342 809 5 1 -18.0584 18.7089 -54.85 - 19 319.641 879 2 1 -4.16589 3.19027 -144.45 - 19 122.567 921 2 0 -4.0675 4.27022 -145.85 - 19 191.545 922 2 0 -4.03108 4.45 -146.183 - 19 82.8578 985 2 0 36.4864 17.1376 -146.25 - 19 119.852 986 2 0 36.7833 17.25 -146.075 - 19 30.9691 987 2 0 36.9032 17.45 -145.901 - 19 285.283 1085 2 1 37.1348 18.5552 -144.85 - 19 82.6318 1084 2 1 37.05 19.373 -144.595 - 19 136.135 1083 2 1 36.85 19.4742 -144.672 - 19 198.424 1025 2 0 32.6949 25.0548 -145.85 - 19 3.23332 1053 2 1 30.6603 25.7166 -144.85 - 19 217.041 1052 2 1 30.65 25.7199 -144.844 - 19 218.941 1051 2 1 30.4499 25.7051 -144.743 - 19 162.867 1050 2 1 30.25 25.7939 -144.63 - 19 83.8204 900 1 0 0.708337 0.0619459 -176.127 - 19 109.723 902 0 1 0.517755 0.0812815 -204.45 - 19 121.808 904 0 1 0.910812 0.279435 -204.45 - 19 126.298 901 0 0 0.851813 0.278589 -205.85 - 19 35.3362 455 2 0 84.7713 -88.85 -145.958 - 19 13.6922 1275 2 1 75.25 -85.1234 -144.611 - 19 4.81658 1326 2 1 85.3474 -94.5058 -144.85 - 19 265.642 406 2 0 85.858 -98.8365 -145.85 - 19 93.1315 878 2 1 -4.25 3.45562 -144.66 - 19 116.187 1009 2 0 -0.450823 21.8827 -146.25 - 19 163.991 895 2 1 -0.906592 21.6067 -144.85 -Number of digits in this event = 24 -e- -Event: 20 -Number of tracker hits in this event = 16 - 20 137.588 900 5 1 0.181704 -0.126152 -54.45 - 20 122.548 899 5 0 0.189701 -0.143226 -55.85 - 20 290.916 901 4 1 0.405159 -0.478995 -84.45 - 20 107.289 897 4 0 0.418543 -0.499407 -85.85 - 20 102.565 903 3 1 0.683493 -0.933254 -114.45 - 20 149.213 895 3 0 0.695197 -0.987218 -115.85 - 20 169.917 903 2 1 0.785106 -2.04242 -144.45 - 20 117.667 889 2 0 0.784875 -2.1289 -145.85 - 20 125.088 904 1 1 0.888109 -3.92157 -174.45 - 20 116.898 879 1 0 0.858543 -4.07669 -175.85 - 20 144.731 901 0 1 0.325869 -7.2403 -204.45 - 20 4.22961 863 0 0 0.278685 -7.4477 -205.85 - 20 258.178 862 0 0 0.278156 -7.45 -205.866 - 20 208.546 898 0 1 -0.352165 -6.24331 -204.85 - 20 247.64 897 0 1 -0.450056 -6.34606 -204.647 - 20 186.155 1379 2 0 29.8609 96.0592 -146.25 -Number of digits in this event = 12 -e- -Event: 21 -Number of tracker hits in this event = 17 - 21 166.33 899 4 1 -0.063293 -0.0739615 -84.45 - 21 150.962 899 4 0 -0.054352 -0.0837531 -85.85 - 21 561.175 900 3 1 0.142657 -0.288292 -114.45 - 21 120.822 898 3 0 0.155514 -0.299562 -115.85 - 21 322.975 901 2 1 0.348066 -0.468864 -144.45 - 21 124.586 897 2 0 0.35806 -0.480641 -145.85 - 21 125.252 902 1 1 0.484232 -0.673872 -174.45 - 21 122.74 896 1 0 0.499688 -0.697517 -175.85 - 21 108.059 904 0 1 0.900862 -1.15461 -204.45 - 21 333.565 894 0 0 0.945619 -1.18341 -205.85 - 21 172.826 902 2 1 0.450039 -0.390151 -144.67 - 21 18.3842 903 2 1 0.65 -0.374859 -144.842 - 21 28.6241 895 2 0 1.37304 -0.980665 -145.85 - 21 98.9143 905 2 1 1.08535 -0.813367 -144.85 - 21 176.168 899 3 1 -0.0500736 -0.384607 -114.629 - 21 253.661 901 3 1 0.250063 -0.288433 -114.584 - 21 81.237 920 3 0 1.58606 4.05 -116.091 -Number of digits in this event = 13 -e- -Event: 22 -Number of tracker hits in this event = 16 - 22 150.182 898 4 1 -0.262144 0.0607584 -84.45 - 22 120.942 900 4 0 -0.274518 0.0544771 -85.85 - 22 106.179 897 3 1 -0.499183 -0.0564734 -114.45 - 22 141.939 899 3 0 -0.507864 -0.0590447 -115.85 - 22 100.379 896 2 1 -0.705868 -0.122259 -144.45 - 22 116.16 899 2 0 -0.713604 -0.12511 -145.85 - 22 94.0021 896 1 1 -0.844644 -0.162689 -174.45 - 22 221.761 899 1 0 -0.853565 -0.160006 -175.85 - 22 155.186 895 0 1 -1.00214 -0.0891256 -204.45 - 22 118.897 899 0 0 -1.01398 -0.0817597 -205.85 - 22 86.9516 931 5 0 -121.893 6.33386 -56.2499 - 22 264.095 932 5 0 -121.85 6.45 -56.0081 - 22 4.2107 250 5 1 -129.966 5.98896 -54.85 - 22 29.2455 918 5 0 -135.077 3.81407 -55.85 - 22 115.138 220 5 1 -136.009 0.191852 -54.85 - 22 7.29471 1357 3 0 107.556 91.55 -116.05 -Number of digits in this event = 7 -e- -Event: 23 -Number of tracker hits in this event = 42 - 23 129.821 900 5 1 0.0737357 0.100365 -54.45 - 23 123.252 900 5 0 0.0790401 0.103873 -55.85 - 23 122.14 900 4 1 0.183803 0.180561 -84.45 - 23 239.879 900 4 0 0.193618 0.18207 -85.85 - 23 125.697 901 3 1 0.374711 0.177715 -114.45 - 23 109.085 900 3 0 0.385373 0.175277 -115.85 - 23 180.505 902 2 1 0.59053 0.134192 -144.45 - 23 114.991 900 2 0 0.59494 0.121478 -145.85 - 23 157.579 902 1 1 0.578054 -0.163278 -174.45 - 23 128.208 899 1 0 0.567372 -0.203206 -175.85 - 23 171.207 902 0 1 0.454904 -1.00581 -204.45 - 23 129.004 894 0 0 0.465091 -1.05217 -205.85 - 23 29.089 937 1 0 -36.3401 7.63547 -176.25 - 23 288.231 938 1 0 -36.425 7.65 -176.184 - 23 47.0241 710 1 1 -37.9423 8.1644 -174.85 - 23 121.87 709 1 1 -38.05 8.20624 -174.751 - 23 60.216 708 1 1 -38.25 8.46296 -174.532 - 23 148.274 826 3 0 61.6427 -14.7219 -116.25 - 23 310.041 1209 3 1 61.9142 -15.0824 -114.85 - 23 16.7259 1208 3 1 61.85 -15.7769 -114.83 - 23 76.7704 805 3 0 61.1329 -18.8514 -115.85 - 23 69.5614 804 3 0 61.0953 -19.0502 -115.918 - 23 58.5814 803 3 0 61.0719 -19.25 -116.02 - 23 71.3718 802 3 0 61.0715 -19.45 -116.125 - 23 25.3063 378 3 0 78.7024 -104.45 -116.25 - 23 87.5575 377 3 0 78.7276 -104.55 -116.171 - 23 72.3218 376 3 0 78.7584 -104.75 -116.038 - 23 80.4565 375 3 0 78.7989 -104.95 -115.92 - 23 35.2808 374 3 0 78.9022 -105.15 -115.881 - 23 215.005 1296 3 1 79.4216 -107.527 -114.85 - 23 62.7692 1297 3 1 79.45 -107.627 -114.794 - 23 263.676 1295 3 1 79.25 -108.206 -114.575 - 23 406.857 1294 3 1 79.0499 -108.326 -114.622 - 23 53.6167 1293 3 1 78.85 -108.639 -114.682 - 23 242.866 344 3 0 78.1331 -111.291 -115.85 - 23 5.28715 1072 0 1 34.48 22.3938 -204.85 - 23 51.9702 762 0 0 10.4929 -27.5742 -206.25 - 23 91.7631 761 0 0 10.5116 -27.6501 -206.114 - 23 425.224 952 0 1 10.5134 -28.6669 -204.85 - 23 236.915 953 0 1 10.6501 -29.2677 -204.596 - 23 108.18 954 0 1 10.85 -29.3441 -204.505 - 23 139.338 346 3 1 -110.75 27.3319 -114.801 -Number of digits in this event = 23 -e- -Event: 24 -Number of tracker hits in this event = 31 - 24 235.74 900 5 1 0.16872 -0.0537518 -54.45 - 24 159.166 899 5 0 0.177381 -0.0600879 -55.85 - 24 141.176 901 4 1 0.371522 -0.203628 -84.45 - 24 236.416 899 4 0 0.374873 -0.209087 -85.85 - 24 262.948 901 3 1 0.399973 -0.337187 -114.45 - 24 143.302 898 3 0 0.41702 -0.349004 -115.85 - 24 118.845 903 2 1 0.775542 -0.570026 -144.45 - 24 154.064 897 2 0 0.79911 -0.580962 -145.85 - 24 104.105 905 1 1 1.2373 -0.814607 -174.45 - 24 91.8503 896 1 0 1.26295 -0.831358 -175.85 - 24 135.565 908 0 1 1.8098 -1.14263 -204.45 - 24 138.816 894 0 0 1.83108 -1.15879 -205.85 - 24 303.455 902 4 1 0.459815 -0.152025 -84.45 - 24 125.266 901 2 1 0.264714 -0.74346 -144.45 - 24 259.515 896 2 0 0.265492 -0.800245 -145.85 - 24 98.9891 900 1 1 0.20312 -2.33466 -174.45 - 24 185.049 887 1 0 0.173624 -2.46565 -175.85 - 24 108.707 896 0 1 -0.765732 -5.01298 -204.45 - 24 119.701 874 0 0 -0.863972 -5.16535 -205.85 - 24 134.944 897 4 0 0.574385 -0.468679 -85.85 - 24 97.0267 917 3 1 3.6022 -6.35469 -114.45 - 24 113.815 867 3 0 3.65092 -6.57759 -115.85 - 24 114.003 918 2 1 3.79257 -11.679 -144.45 - 24 106.267 841 2 0 3.98558 -11.8108 -145.85 - 24 6.71984 840 2 0 4.03591 -11.85 -146.224 - 24 101.049 937 1 1 7.49632 -14.8261 -174.45 - 24 215.616 824 1 0 7.51161 -15.0955 -175.85 - 24 135.445 937 0 1 7.48522 -21.4971 -204.45 - 24 48.757 792 0 0 7.62995 -21.6292 -205.85 - 24 87.874 791 0 0 7.65313 -21.65 -206.054 - 24 62.055 1069 5 0 -118.115 33.85 -56.0718 -Number of digits in this event = 18 -e- -Event: 25 -Number of tracker hits in this event = 10 - 25 127.699 900 4 1 0.191802 0.165899 -84.45 - 25 113.883 900 4 0 0.194903 0.15717 -85.85 - 25 134.069 900 2 1 0.147965 -0.172294 -144.45 - 25 109.482 899 2 0 0.126766 -0.190413 -145.85 - 25 177.342 898 1 1 -0.343613 -0.567246 -174.45 - 25 117.85 897 1 0 -0.352606 -0.578834 -175.85 - 25 144.661 897 0 1 -0.508433 -0.87255 -204.45 - 25 178.285 895 0 0 -0.523538 -0.902583 -205.85 - 25 5.79073 487 2 1 -82.65 -21.8977 -144.536 - 25 63.4787 510 2 1 -78.05 -26.1634 -144.67 -Number of digits in this event = 6 -e- -Event: 26 -Number of tracker hits in this event = 10 - 26 104.62 899 3 1 -0.0790004 -0.129873 -114.45 - 26 147.436 899 3 0 -0.0941983 -0.137054 -115.85 - 26 117.965 898 2 1 -0.407782 -0.266983 -144.45 - 26 124.559 898 2 0 -0.420744 -0.266624 -145.85 - 26 112.443 896 1 1 -0.719822 -0.255126 -174.45 - 26 74.02 898 1 0 -0.736406 -0.250841 -175.85 - 26 43.5955 899 1 0 -0.739627 -0.25 -176.133 - 26 102.984 894 0 1 -1.05992 -0.104095 -204.45 - 26 121.055 899 0 0 -1.09437 -0.0827389 -205.85 - 26 89.5241 1568 2 0 35.4546 133.75 -146.116 +Number of tracker hits in this event = 8 + 1 155.619 899 3 1 -0.142702 0.090421 -114.45 + 1 124.511 900 3 0 -0.155214 0.097355 -115.85 + 1 122.746 898 2 1 -0.427091 0.276586 -144.45 + 1 102.565 901 2 0 -0.436555 0.285495 -145.85 + 1 98.122 897 1 1 -0.637348 0.476674 -174.45 + 1 109.369 902 1 0 -0.645661 0.485606 -175.85 + 1 111.192 896 0 1 -0.811044 0.670725 -204.45 + 1 150.802 903 0 0 -0.81856 0.67895 -205.85 Number of digits in this event = 5 e- -Event: 27 -Number of tracker hits in this event = 12 - 27 129.677 900 5 1 0.235131 0.256192 -54.45 - 27 134.334 901 5 0 0.246856 0.265558 -55.85 - 27 150.163 902 4 1 0.480954 0.455114 -84.45 - 27 105.602 901 4 0 0.513337 0.437872 -85.85 - 27 63.6012 910 2 1 2.0508 -0.164667 -144.45 - 27 67.0002 909 2 1 2.05 -0.169153 -144.627 - 27 228.733 899 2 0 2.04902 -0.205358 -145.85 - 27 121.235 910 1 1 2.12706 -1.1078 -174.45 - 27 96.2823 894 1 0 2.12813 -1.15658 -175.85 - 27 146.961 910 0 1 2.18299 -2.12844 -204.45 - 27 172.868 889 0 0 2.19605 -2.20178 -205.85 - 27 40.8444 1173 0 1 54.7124 44.9053 -204.85 -Number of digits in this event = 8 -e- -Event: 28 -Number of tracker hits in this event = 41 - 28 143.31 901 3 1 0.362338 0.119803 -114.45 - 28 93.7613 900 3 0 0.37391 0.113787 -115.85 - 28 109.765 902 2 1 0.639513 -0.05 -144.57 - 28 10.2512 903 2 1 0.65 -0.0609482 -144.817 - 28 198.509 899 2 0 0.694198 -0.106947 -145.85 - 28 125.673 909 1 1 1.86959 -1.35748 -174.45 - 28 92.4785 893 1 0 1.92208 -1.43183 -175.85 - 28 19.7299 892 1 0 1.93577 -1.45 -176.2 - 28 113.907 915 0 1 3.09794 -2.89109 -204.45 - 28 156.112 885 0 0 3.16465 -2.97386 -205.85 - 28 114.646 876 4 1 -4.68932 -1.18551 -84.45 - 28 54.6011 877 4 1 -4.65 -1.2367 -84.69 - 28 28.4902 893 4 0 -4.45186 -1.43138 -85.85 - 28 88.4811 892 4 0 -4.43252 -1.45 -85.9501 - 28 122.449 889 3 1 -2.08204 -6.74488 -114.45 - 28 54.7971 863 3 0 -2.10605 -7.40198 -115.85 - 28 106.489 862 3 0 -2.10992 -7.45 -115.958 - 28 171.377 870 2 1 -5.95432 -20.1156 -144.45 - 28 112.191 797 2 0 -5.89172 -20.466 -145.85 - 28 36.4323 882 1 1 -3.58876 -28.2416 -174.45 - 28 106.305 881 1 1 -3.65015 -28.1927 -174.554 - 28 14.2028 762 1 0 -4.43128 -27.4799 -175.85 - 28 116.274 763 1 0 -4.46421 -27.45 -175.9 - 28 31.3284 764 1 0 -4.68306 -27.25 -176.17 - 28 75.0369 770 0 1 -25.9655 -6.0286 -204.45 - 28 85.9855 769 0 1 -26.05 -5.94123 -204.49 - 28 94.4849 768 0 1 -26.25 -5.74664 -204.597 - 28 34.3367 767 0 1 -26.45 -5.58137 -204.786 - 28 96.2212 877 0 0 -27.5128 -4.5776 -205.85 - 28 101.433 878 0 0 -27.6406 -4.45 -205.977 - 28 33.6305 879 0 0 -27.8248 -4.25 -206.163 - 28 121.805 992 0 0 -46.6587 18.5605 -206.25 - 28 391.703 666 0 1 -46.8134 18.9931 -204.85 - 28 185.339 665 0 1 -46.85 19.0441 -204.702 - 28 101.814 667 0 1 -46.6499 19.1209 -204.611 - 28 4.73115 1006 0 0 -50.8465 21.4386 -205.85 - 28 47.5275 1007 0 0 -50.8617 21.4501 -205.852 - 28 192.306 650 0 1 -50.0226 23.0647 -204.85 - 28 14.7925 871 2 1 -5.85 -20.1929 -144.846 - 28 136.531 800 2 0 -5.68093 -20.0067 -145.85 - 28 199.917 309 0 1 -118.15 44.7787 -204.77 -Number of digits in this event = 13 -e- -Event: 29 -Number of tracker hits in this event = 35 - 29 116.462 900 5 0 0.05 0.232706 -56.0727 - 29 122.971 900 4 1 0.188426 0.470261 -84.45 - 29 145.936 902 4 0 0.196293 0.483005 -85.85 - 29 134.092 901 3 1 0.364642 0.774968 -114.45 - 29 140.886 903 3 0 0.375135 0.78823 -115.85 - 29 114.49 902 2 1 0.540098 1.04697 -144.45 - 29 123.266 905 2 0 0.545545 1.06732 -145.85 - 29 151.244 902 1 1 0.633432 1.45355 -174.45 - 29 131.175 907 1 0 0.633607 1.46637 -175.85 - 29 164.016 903 0 1 0.661685 1.71347 -204.45 - 29 98.7022 908 0 0 0.670319 1.72178 -205.85 - 29 268.933 903 1 1 0.686436 1.31831 -174.45 - 29 127.678 906 1 0 0.655622 1.36694 -175.85 - 29 117.944 905 0 1 1.08654 3.31663 -204.45 - 29 130.923 918 0 0 1.14146 3.7216 -205.85 - 29 358.748 905 1 0 0.595073 1.11451 -175.85 - 29 40.1112 883 0 1 -3.42285 -0.714152 -204.45 - 29 58.4325 884 0 1 -3.25 -0.699922 -204.527 - 29 55.282 885 0 1 -3.05 -0.71334 -204.608 - 29 51.5547 886 0 1 -2.84974 -0.735854 -204.665 - 29 94.8606 887 0 1 -2.65 -0.774851 -204.709 - 29 52.0392 888 0 1 -2.45 -0.809793 -204.736 - 29 55.1521 889 0 1 -2.25 -0.841499 -204.75 - 29 64.9779 890 0 1 -2.05 -0.859038 -204.77 - 29 300.724 891 0 1 -1.85 -0.878583 -204.805 - 29 27.3622 892 0 1 -1.65 -0.906612 -204.831 - 29 92.1485 892 0 0 4.08926 -1.6127 -205.85 - 29 363.473 891 0 0 4.33993 -1.65 -205.894 - 29 169.077 890 0 0 5.60033 -1.85 -205.863 - 29 436.192 889 0 0 6.22707 -2.05 -205.958 - 29 95.5418 888 0 0 7.13922 -2.25 -206.121 - 29 30.4435 802 0 0 52.9731 -19.4889 -206.25 - 29 20.3914 803 0 0 52.9511 -19.45 -206.229 - 29 53.4175 798 0 0 -62.0088 -20.4491 -206.25 - 29 86.7452 797 0 0 -62.0353 -20.45 -206.187 -Number of digits in this event = 17 -e- -Event: 30 -Number of tracker hits in this event = 20 - 30 161.133 900 5 1 0.0644 0.13355 -54.45 - 30 127.614 900 5 0 0.0679446 0.139551 -55.85 - 30 118.356 900 4 1 0.142067 0.220633 -84.45 - 30 136.572 900 4 0 0.151135 0.222658 -85.85 - 30 124.046 901 3 1 0.350242 0.23443 -114.45 - 30 99.5385 900 3 0 0.371525 0.2424 -115.85 - 30 21.6683 904 2 1 1.04759 0.356161 -144.45 - 30 86.1327 905 2 1 1.05 0.356343 -144.535 - 30 121.237 901 2 0 1.08751 0.358163 -145.85 - 30 96.3014 909 1 1 1.92416 0.340762 -174.45 - 30 148.153 901 1 0 1.98784 0.338072 -175.85 - 30 102.148 916 0 1 3.28199 0.258831 -204.45 - 30 104.733 900 0 0 3.32799 0.248022 -205.85 - 30 126.92 901 5 1 0.297466 0.05 -54.6798 - 30 214.155 902 5 1 0.45 0.146566 -54.7128 - 30 105.679 902 0 1 0.608427 -0.0599324 -204.45 - 30 18.8221 892 0 0 0.377392 -1.60053 -205.85 - 30 42.753 891 0 0 0.3855 -1.65 -205.871 - 30 184.488 893 0 1 -1.32929 -2.83526 -204.85 - 30 88.151 1151 2 1 50.2587 55.0068 -144.85 -Number of digits in this event = 11 -e- -Event: 31 -Number of tracker hits in this event = 30 - 31 102.782 899 4 1 -0.123478 -0.277302 -84.45 - 31 116.797 898 4 0 -0.13065 -0.280012 -85.85 - 31 147.364 898 3 1 -0.267327 -0.296333 -114.45 - 31 226.004 898 3 0 -0.268001 -0.285845 -115.85 - 31 28.9337 900 5 1 0.05 -0.0813499 -54.4981 - 31 91.1654 901 5 1 0.263373 0.05 -54.6767 - 31 63.9621 902 5 1 0.45 0.0841623 -54.733 - 31 193.244 903 5 1 0.65014 0.100289 -54.7569 - 31 239.837 904 5 1 0.85 0.212352 -54.7719 - 31 85.4495 900 5 0 1.29136 0.215474 -55.8501 - 31 298.512 899 3 1 -0.109044 -0.319317 -114.45 - 31 163.11 898 2 1 -0.301804 -0.877203 -144.45 - 31 123.715 895 2 0 -0.345362 -0.892576 -145.85 - 31 112.743 892 1 1 -1.57679 -0.435866 -174.45 - 31 250.466 898 1 0 -1.69723 -0.409631 -175.85 - 31 132.386 879 0 1 -4.14855 0.366912 -204.45 - 31 109.323 901 0 0 -4.18789 0.347515 -205.85 - 31 19.0244 900 3 1 0.05 -0.683207 -114.804 - 31 63.205 887 3 0 1.25411 -2.50028 -115.85 - 31 144.645 886 3 0 1.32143 -2.65 -115.959 - 31 268.817 885 3 0 1.24591 -2.85 -115.949 - 31 112.343 900 3 0 0.226389 0.05 -116.031 - 31 122.56 932 2 1 6.53042 9.79592 -144.45 - 31 36.0871 951 2 0 6.93615 10.4018 -145.85 - 31 89.439 952 2 0 6.96763 10.45 -145.959 - 31 177.37 973 1 1 14.7058 22.8514 -174.45 - 31 66.1786 1015 1 0 14.8412 23.2035 -175.85 - 31 83.3974 1016 1 0 14.8652 23.25 -176.047 - 31 101.426 991 0 1 18.2829 29.4109 -204.45 - 31 177.442 1049 0 0 18.5206 29.8733 -205.85 -Number of digits in this event = 16 -e- -Event: 32 -Number of tracker hits in this event = 11 - 32 145.615 900 5 1 0.061958 -0.100202 -54.45 - 32 215.326 899 5 0 0.0741461 -0.104788 -55.85 - 32 142.129 901 4 1 0.317926 -0.205479 -84.45 - 32 198.621 899 4 0 0.328174 -0.198891 -85.85 - 32 181.367 902 3 1 0.529205 -0.0545307 -114.45 - 32 123.944 903 2 1 0.711198 0.2914 -144.45 - 32 151.134 901 2 0 0.694165 0.308483 -145.85 - 32 114.41 901 1 1 0.420586 0.634321 -174.45 - 32 130.257 902 1 0 0.413026 0.646109 -175.85 - 32 101.739 901 0 1 0.309903 0.878044 -204.45 - 32 137.49 904 0 0 0.306003 0.877467 -205.85 -Number of digits in this event = 11 -e- -Event: 33 -Number of tracker hits in this event = 16 - 33 118.089 899 5 1 -0.0510953 0.104737 -54.45 - 33 116.555 900 5 0 -0.0583252 0.107591 -55.85 - 33 121.225 899 4 1 -0.207163 0.167423 -84.45 - 33 134.892 900 4 0 -0.213339 0.171169 -85.85 - 33 236.378 898 3 1 -0.312416 0.277746 -114.45 - 33 114.704 901 3 0 -0.32158 0.286844 -115.85 - 33 118.881 897 2 1 -0.516897 0.472212 -144.45 - 33 125.926 902 2 0 -0.517337 0.48122 -145.85 - 33 129.219 897 1 1 -0.492654 0.662697 -174.45 - 33 169.51 903 1 0 -0.501649 0.677293 -175.85 - 33 98.0501 896 0 1 -0.689539 0.984348 -204.45 - 33 121.305 904 0 0 -0.697125 1.00205 -205.85 - 33 430.855 1219 3 0 83.5397 63.8534 -116.25 - 33 0.0488523 980 0 0 93.3035 16.0505 -206.25 - 33 130.525 979 0 0 93.3035 16.05 -206.249 - 33 168.377 1369 0 1 93.9695 15.5197 -204.85 -Number of digits in this event = 11 -e- -Event: 34 -Number of tracker hits in this event = 14 - 34 122.828 898 4 1 -0.253628 0.0836375 -84.45 - 34 114.419 900 4 0 -0.259469 0.0806643 -85.85 - 34 120.031 897 2 1 -0.570915 -0.109634 -144.45 - 34 125.841 899 2 0 -0.584137 -0.120398 -145.85 - 34 113.355 895 1 1 -0.867281 -0.321207 -174.45 - 34 200.883 898 1 0 -0.918766 -0.334417 -175.85 - 34 116.922 892 0 1 -1.45532 -0.849756 -204.45 - 34 173.109 896 0 0 -1.7216 -0.805804 -205.85 - 34 341.481 899 1 0 -0.947479 -0.25 -176.119 - 34 39.9649 847 0 0 -14.6304 -10.4568 -206.25 - 34 142.603 848 0 0 -14.6661 -10.45 -206.206 - 34 176.257 1485 2 0 -110.344 117.289 -146.25 - 34 89.6361 1486 2 0 -110.631 117.35 -146.077 - 34 196.887 1614 4 0 11.1117 143.056 -86.2499 -Number of digits in this event = 12 -e- -Event: 35 -Number of tracker hits in this event = 62 - 35 107.686 900 5 1 0.0887022 -0.109205 -54.45 - 35 197.592 899 5 0 0.0903691 -0.106971 -55.85 - 35 163.376 900 4 1 0.13179 -0.051362 -84.45 - 35 106.088 898 4 0 -0.05 -0.38173 -85.9462 - 35 25.6107 862 3 1 -7.5228 -0.0500334 -114.684 - 35 97.7367 863 3 1 -7.45 -0.0889914 -114.75 - 35 25.3004 864 3 1 -7.25 -0.204042 -114.845 - 35 45.453 827 3 0 15.3057 -14.5753 -115.85 - 35 85.2372 826 3 0 15.4216 -14.6501 -115.856 - 35 0.423967 825 3 0 15.568 -14.85 -115.851 - 35 101.271 981 3 1 16.3435 -16.6322 -114.85 - 35 166.846 982 3 1 16.4501 -16.7558 -114.518 - 35 162.859 983 3 1 16.65 -16.6302 -114.609 - 35 243.921 885 3 0 -7.41183 -2.96017 -115.85 - 35 236.181 861 3 1 -7.65392 -0.4715 -114.45 - 35 293.841 860 3 1 -7.85 -0.79196 -114.728 - 35 102.45 901 4 1 0.250037 -0.0775938 -84.5755 - 35 260.727 895 4 0 0.506653 -0.91215 -85.85 - 35 163.832 894 4 0 0.545275 -1.05 -86.0673 - 35 64.2557 919 3 1 3.86947 -17.8833 -114.45 - 35 169.262 920 3 1 4.05 -17.9169 -114.577 - 35 68.8886 921 3 1 4.25 -17.9778 -114.662 - 35 66.9885 922 3 1 4.45 -17.9944 -114.753 - 35 175.341 812 3 0 6.09975 -17.6341 -115.85 - 35 188.41 838 3 0 24.3396 -12.2628 -116.25 - 35 83.3984 837 3 0 23.8671 -12.4501 -116.204 - 35 171.989 836 3 0 23.7525 -12.6501 -116.182 - 35 161.227 835 3 0 23.7106 -12.8501 -116.08 - 35 56.0445 819 3 0 3.9641 -16.1704 -115.85 - 35 224.864 820 3 0 3.95497 -16.0499 -115.953 - 35 34.5662 896 4 0 0.680589 -0.85 -86.13 - 35 177.271 1005 4 0 33.3083 21.2243 -86.25 - 35 34.1902 996 3 1 19.45 -5.32932 -114.457 - 35 127.915 899 4 0 0.152144 -0.0518136 -85.85 - 35 117.471 900 3 1 0.191009 -0.189523 -114.45 - 35 102.555 899 3 0 0.200868 -0.20397 -115.85 - 35 16.8301 895 2 0 0.05 -0.887618 -146.173 - 35 150.378 907 1 1 1.57109 -1.83663 -174.45 - 35 183.427 890 1 0 1.4835 -1.96916 -175.85 - 35 30.376 897 0 1 -0.601448 -3.90682 -204.45 - 35 103.166 896 0 1 -0.65 -3.90614 -204.525 - 35 143.348 880 0 0 -1.34034 -3.91962 -205.85 - 35 141.766 903 4 1 0.733876 0.482034 -84.85 - 35 194.862 902 3 1 0.472119 0.138208 -114.45 - 35 180.167 900 3 0 0.472904 0.148034 -115.85 - 35 109.578 902 2 1 0.495573 0.337823 -144.45 - 35 189.181 901 2 0 0.49689 0.361568 -145.85 - 35 355.27 902 1 1 0.484523 0.828422 -174.45 - 35 137.035 903 1 0 0.459706 0.840938 -175.85 - 35 144.23 899 0 1 -0.126616 1.10612 -204.45 - 35 131.153 905 0 0 -0.196312 1.15716 -205.85 - 35 65.7067 925 2 0 58.3656 5.0999 -146.25 - 35 263.417 904 1 0 0.482237 0.853171 -175.887 - 35 114.077 925 0 1 5.24778 5.97305 -204.45 - 35 111.508 930 0 0 5.09424 6.11494 -205.85 - 35 12.8359 901 1 1 0.398154 0.839208 -174.45 - 35 232.213 903 1 1 0.650071 0.838022 -174.556 - 35 132.271 901 0 1 0.266607 1.25767 -204.45 - 35 220.08 906 0 0 0.29427 1.31246 -205.85 - 35 220.389 1350 0 0 -27.4082 90.15 -206.157 - 35 14.7648 1287 6 1 77.5722 -44.6716 -24.85 - 35 66.285 1288 6 1 77.65 -44.7135 -24.6631 -Number of digits in this event = 34 -e- -Event: 36 -Number of tracker hits in this event = 28 - 36 106.91 899 4 1 -0.164221 -0.181581 -84.45 - 36 111.222 899 4 0 -0.170476 -0.187177 -85.85 - 36 118.6 898 3 1 -0.295939 -0.294262 -114.45 - 36 103.547 898 3 0 -0.303587 -0.297833 -115.85 - 36 208.309 897 2 1 -0.462944 -0.350471 -144.45 - 36 161.031 898 2 0 -0.483384 -0.329053 -145.85 - 36 130.73 895 1 1 -0.899167 0.0933723 -174.45 - 36 107.123 900 1 0 -0.919424 0.122799 -175.85 - 36 132.348 893 0 1 -1.34738 0.745255 -204.45 - 36 106.713 903 0 0 -1.3908 0.771573 -205.85 - 36 127.497 896 2 1 -0.65 -0.619969 -144.57 - 36 85.8692 893 2 0 -1.24111 -1.31059 -145.85 - 36 115.868 892 2 0 -1.29316 -1.45 -146.115 - 36 48.9973 899 6 1 -0.129419 -0.0500688 -24.7263 - 36 114.102 898 6 0 -0.670816 -0.320797 -25.85 - 36 320.086 968 6 0 29.9014 13.6522 -26.25 - 36 10.1633 969 6 0 30.2616 13.85 -26.1026 - 36 98.5643 967 6 0 30.5391 13.65 -26.1678 - 36 5.31226 966 6 0 30.586 13.45 -25.8623 - 36 208.784 1053 6 1 30.6608 12.6553 -24.85 - 36 364.984 1052 6 1 30.6499 12.7438 -24.5339 - 36 128.737 1051 6 1 30.45 12.7294 -24.572 - 36 25.7137 299 8 0 -67.7307 -120.154 33.75 - 36 55.4621 298 8 0 -67.8483 -120.35 34.1374 - 36 38.4594 549 8 1 -70.2193 -122.012 35.15 - 36 211.148 548 8 1 -70.25 -122.036 35.166 - 36 14.4151 711 1 0 82.0673 -37.65 -175.861 - 36 62.0374 712 1 0 82.079 -37.65 -175.86 -Number of digits in this event = 11 -e- -Event: 37 -Number of tracker hits in this event = 19 - 37 128.338 900 4 1 0.0577374 -0.243554 -84.45 - 37 20.344 899 4 0 0.0504367 -0.240371 -85.85 - 37 110.375 899 3 1 -0.0849331 -0.158378 -114.45 - 37 107.375 899 3 0 -0.0907977 -0.147739 -115.85 - 37 213.322 900 2 0 -0.226654 0.0515786 -145.85 - 37 121.303 898 1 1 -0.390174 0.572814 -174.45 - 37 94.826 902 1 0 -0.396401 0.601097 -175.85 - 37 147.029 897 0 1 -0.590979 1.19974 -204.45 - 37 82.8564 905 0 0 -0.606962 1.24266 -205.85 - 37 41.0866 906 0 0 -0.609513 1.25 -206.085 - 37 198.535 901 1 1 0.258808 0.969446 -174.45 - 37 143.9 904 1 0 0.372099 0.920259 -175.85 - 37 112.681 899 1 1 -0.211421 2.88401 -174.45 - 37 89.0762 915 1 0 0.05 3.16181 -176.01 - 37 94.4069 929 0 1 5.88758 10.1124 -204.45 - 37 69.6768 928 0 1 5.85 10.2065 -204.642 - 37 33.2141 953 0 0 5.61597 10.7974 -205.85 - 37 88.26 954 0 0 5.5928 10.85 -205.958 - 37 8.86323 13 6 0 -33.7295 -177.35 -25.9361 -Number of digits in this event = 9 -e- -Event: 38 -Number of tracker hits in this event = 16 - 38 106.76 900 5 1 0.0677842 -0.194792 -54.45 - 38 113.965 899 5 0 0.0595708 -0.197448 -55.85 - 38 292.974 899 4 1 -0.0838863 -0.251135 -84.45 - 38 127.568 898 4 0 -0.0950566 -0.256512 -85.85 - 38 116.572 898 3 1 -0.337244 -0.394324 -114.45 - 38 116.138 898 3 0 -0.346802 -0.403467 -115.85 - 38 172.105 897 2 1 -0.551721 -0.589321 -144.45 - 38 152.497 897 2 0 -0.562494 -0.591091 -145.85 - 38 118.566 896 1 1 -0.810206 -0.616177 -174.45 - 38 249.33 897 1 0 -0.820638 -0.615563 -175.85 - 38 253.62 895 0 1 -1.04304 -0.590575 -204.45 - 38 212.453 897 0 0 -1.05383 -0.594971 -205.85 - 38 9.25249 896 1 0 -0.799102 -0.65 -175.96 - 38 56.531 898 1 0 -0.635217 -0.45 -175.89 - 38 262.886 902 1 1 0.607384 2.05415 -174.85 - 38 205.102 903 1 1 0.65 2.16885 -174.831 +Event: 2 +Number of tracker hits in this event = 23 + 2 175.888 900 5 1 0.204343 0.396689 -54.45 + 2 129.648 901 5 0 0.21132 0.409657 -55.85 + 2 117.438 901 4 1 0.348793 0.717699 -84.45 + 2 284.888 903 4 0 0.350306 0.740524 -85.85 + 2 105.341 901 3 1 0.425294 1.20808 -114.45 + 2 110.726 905 3 0 0.435267 1.22776 -115.85 + 2 133.972 903 2 1 0.655202 1.62847 -144.45 + 2 141.534 907 2 0 0.656133 1.64531 -145.85 + 2 5.1711 908 2 0 0.656433 1.65 -146.225 + 2 126.529 903 1 1 0.69105 1.95489 -174.45 + 2 186.785 909 1 0 0.695358 1.96911 -175.85 + 2 117.94 903 0 1 0.776712 2.32972 -204.45 + 2 134.418 911 0 0 0.781584 2.34077 -205.85 + 2 447.916 905 0 1 1.14456 1.06346 -204.45 + 2 110.722 906 0 1 1.25 1.00242 -204.667 + 2 49.2768 902 0 0 1.94696 0.520936 -205.85 + 2 77.8317 901 0 0 2.03846 0.45 -206.02 + 2 114.608 905 0 0 1.14526 1.05925 -205.85 + 2 9.7079 904 0 0 1.15066 1.05 -206.217 + 2 70.6799 731 0 1 -33.65 -75.2216 -204.614 + 2 51.808 695 0 1 -40.85 -81.5493 -204.793 + 2 36.3768 1020 0 0 -121.841 24.05 -206.157 + 2 67.3837 765 4 1 -26.9465 -36.3813 -84.85 Number of digits in this event = 10 e- -Event: 39 -Number of tracker hits in this event = 26 - 39 134.975 900 4 1 0.105051 0.162325 -84.45 - 39 112.572 900 4 0 0.106619 0.164791 -85.85 - 39 126.824 900 3 1 0.114123 0.236049 -114.45 - 39 105.201 900 3 0 0.127462 0.246673 -115.85 - 39 107.026 901 2 1 0.380174 0.477277 -144.45 - 39 104.718 902 2 0 0.403839 0.473324 -145.85 - 39 109.575 904 1 1 0.900453 0.338575 -174.45 - 39 103.903 901 1 0 0.928243 0.331781 -175.85 - 39 244.731 907 0 1 1.50606 0.160381 -204.45 - 39 133.342 900 0 0 1.53508 0.143542 -205.85 - 39 207.885 900 2 1 0.0789915 0.364394 -144.45 - 39 132.649 901 2 0 -0.115639 0.361637 -145.85 - 39 98.3303 885 1 1 -3.03484 0.52176 -174.45 - 39 42.2739 884 1 1 -3.05 0.5864 -174.679 - 39 104.004 904 1 0 -3.12641 0.888483 -175.85 - 39 144.739 877 0 1 -4.58521 8.30118 -204.45 - 39 28.7954 941 0 0 -4.42336 8.43745 -205.85 - 39 102.795 942 0 0 -4.40903 8.45 -205.974 - 39 107.648 1147 4 0 29.7453 49.6101 -86.25 - 39 75.9413 899 2 0 0.225633 -0.05 -145.998 - 39 130.763 901 1 1 0.272771 -6.87813 -174.45 - 39 110.7 863 1 0 0.36515 -7.28183 -175.85 - 39 305.991 908 0 1 1.65 -15.4453 -204.674 - 39 84.5414 822 0 0 2.30321 -15.6102 -205.85 - 39 58.2907 821 0 0 2.43717 -15.65 -206.09 - 39 216.305 281 1 1 -123.773 74.5534 -174.45 +Event: 3 +Number of tracker hits in this event = 60 + 3 241.808 900 3 1 0.051842 0.116156 -114.45 + 3 105.414 900 3 0 0.0588111 0.114559 -115.85 + 3 19.617 900 2 1 0.236863 0.083262 -144.45 + 3 94.82 901 2 1 0.25 0.0871094 -144.52 + 3 199.165 901 2 0 0.561402 0.337618 -145.85 + 3 175.973 927 1 1 5.56615 6.16469 -174.45 + 3 22.0059 928 1 1 5.65 6.37385 -174.763 + 3 149.327 935 1 0 5.86909 7.05317 -175.85 + 3 54.8383 936 1 0 5.90748 7.25 -176.138 + 3 28.7572 945 0 1 9.2089 30.0114 -204.45 + 3 137.327 946 0 1 9.25 30.0671 -204.505 + 3 1.35811 947 0 1 9.45011 30.3999 -204.846 + 3 26.354 1056 0 0 9.97483 31.3645 -205.85 + 3 98.9035 1057 0 0 10.018 31.45 -205.924 + 3 77.072 1058 0 0 10.0971 31.65 -206.067 + 3 11.5791 1059 0 0 10.1774 31.85 -206.224 + 3 60.1419 1204 0 0 24.0561 61.0121 -206.25 + 3 74.6375 1205 0 0 24.0726 61.05 -206.18 + 3 65.1313 1206 0 0 24.1388 61.25 -205.979 + 3 0.141682 1024 0 1 25.0497 62.9718 -204.85 + 3 175.159 1025 0 1 25.05 62.9723 -204.85 + 3 146.198 1026 0 1 25.25 63.3922 -204.624 + 3 29.6168 1027 0 1 25.45 63.7952 -204.498 + 3 19.2443 1047 0 1 29.45 66.3746 -204.476 + 3 66.2775 1048 0 1 29.6501 66.5096 -204.488 + 3 207.186 1049 0 1 29.8501 66.5834 -204.516 + 3 5.45559 1050 0 1 30.0501 66.8004 -204.833 + 3 151.354 1235 0 0 30.7703 67.2219 -205.85 + 3 21.8057 1236 0 0 30.8275 67.25 -205.921 + 3 303.01 1234 0 0 31.0428 67.0499 -206.039 + 3 14.0916 899 1 1 -0.201224 -0.414823 -174.45 + 3 68.3686 898 1 0 0.366376 -0.345061 -175.85 + 3 53.2512 899 1 0 0.448921 -0.25 -176.071 + 3 514.666 964 1 0 -48.2314 12.9717 -176.25 + 3 114.022 965 1 0 -48.4985 13.05 -176.17 + 3 91.1788 899 3 1 -0.164669 0.271735 -114.45 + 3 35.1212 898 3 1 -0.25 0.147644 -114.754 + 3 113.75 897 3 0 -0.636522 -0.504683 -115.85 + 3 173.721 715 3 0 -4.56689 -36.8731 -116.25 + 3 297.916 716 3 0 -4.24301 -36.85 -116.104 + 3 45.1485 1605 8 1 141.282 153.69 35.15 + 3 28.8782 939 3 0 -5.26826 7.85 -116.052 + 3 121.042 772 9 0 -71.6807 -25.5204 63.75 + 3 96.0684 905 3 0 0.671031 1.08569 -115.85 + 3 57.6237 906 3 0 0.818455 1.25 -116.102 + 3 2.11981 1003 2 1 20.6564 16.9963 -144.45 + 3 193.271 1002 2 1 20.65 16.9914 -144.459 + 3 93.7539 1001 2 1 20.45 16.8832 -144.755 + 3 42.8378 984 2 0 20.0155 17.0299 -145.85 + 3 125.599 985 2 0 19.9555 17.05 -145.952 + 3 29.8444 879 2 0 -61.7681 -4.23772 -146.25 + 3 200.393 878 2 0 -61.8432 -4.25 -146.18 + 3 6.67235 877 2 0 -62.1687 -4.45 -145.853 + 3 19.2813 550 2 1 -69.9971 -6.65233 -144.85 + 3 41.5823 549 2 1 -70.0502 -6.66905 -144.848 + 3 57.4815 752 2 0 -105.255 -29.5664 -145.85 + 3 234.918 751 2 0 -105.425 -29.6501 -145.9 + 3 146.263 750 2 0 -106.058 -29.85 -146.144 + 3 146.96 749 2 0 -106.49 -30.0501 -146.179 + 3 8.36284 165 2 0 -87.8303 -147.002 -146.25 +Number of digits in this event = 22 +e- +Event: 4 +Number of tracker hits in this event = 19 + 4 114.418 904 2 1 0.865155 1.08946 -144.45 + 4 121.121 905 2 0 0.909296 1.12255 -145.85 + 4 125.642 908 1 1 1.78794 1.76724 -174.45 + 4 124.142 908 1 0 1.8153 1.79884 -175.85 + 4 140.127 911 0 1 2.36959 2.40305 -204.45 + 4 375.202 911 0 0 2.3976 2.43613 -205.85 + 4 223.049 913 0 1 2.73361 2.38439 -204.45 + 4 208.075 900 1 1 0.220396 0.266531 -174.45 + 4 252.529 901 1 0 0.221373 0.256203 -175.85 + 4 175.443 900 0 0 0.309368 0.0630555 -205.85 + 4 114.406 898 0 1 -0.260018 0.452364 -204.45 + 4 84.7805 899 0 1 -0.25 0.452718 -204.543 + 4 86.4137 901 0 0 -0.0919013 0.43501 -205.85 + 4 74.4114 845 0 0 -113.576 -11.0211 -206.25 + 4 350.922 959 0 0 -130.011 12.0071 -206.25 + 4 122.708 616 12 0 -56.9095 -56.7395 153.75 + 4 62.0267 617 12 0 -56.8292 -56.65 153.914 + 4 91.4919 621 12 1 -55.6946 -56.251 155.15 + 4 79.4611 622 12 1 -55.65 -56.2445 155.232 +Number of digits in this event = 12 +e- +Event: 5 +Number of tracker hits in this event = 16 + 5 134.736 899 5 1 -0.120468 -0.0739843 -54.45 + 5 119.306 899 5 0 -0.128966 -0.0772631 -55.85 + 5 158.556 898 4 1 -0.297034 -0.153323 -84.45 + 5 196.025 899 4 0 -0.303839 -0.141277 -85.85 + 5 121.646 897 3 1 -0.471413 0.132121 -114.45 + 5 127.286 900 3 0 -0.483704 0.135488 -115.85 + 5 121.875 896 2 1 -0.794465 0.216258 -144.45 + 5 125.788 900 2 0 -0.81808 0.241317 -145.85 + 5 124.83 893 1 1 -1.26613 0.749299 -174.45 + 5 208.491 904 1 0 -1.38813 0.92563 -175.85 + 5 169.56 879 0 1 -4.06978 4.69055 -204.45 + 5 108.631 924 0 0 -4.03125 4.95994 -205.85 + 5 110.705 900 4 0 -0.336892 0.05 -86.0124 + 5 223.474 899 4 1 -0.247347 -0.25553 -84.45 + 5 71.8122 1196 0 1 59.2693 20.9259 -204.85 + 5 20.1199 1202 0 1 60.45 30.1507 -204.814 +Number of digits in this event = 12 +e- +Event: 6 +Number of tracker hits in this event = 10 + 6 96.8675 900 5 1 0.0787207 0.137649 -54.45 + 6 235.451 900 5 0 0.0874752 0.14133 -55.85 + 6 114.445 901 4 1 0.270081 0.209602 -84.45 + 6 162.347 900 4 0 0.271502 0.216137 -85.85 + 6 159.006 901 3 1 0.286296 0.345486 -114.45 + 6 114.898 901 3 0 0.281781 0.345406 -115.85 + 6 121.206 900 2 1 0.189695 0.337352 -144.45 + 6 142.198 901 2 0 0.182566 0.337339 -145.85 + 6 144.484 898 0 1 -0.25056 0.450626 -204.45 + 6 272.828 902 0 0 -0.260619 0.451541 -205.85 +Number of digits in this event = 10 +e- +Event: 7 +Number of tracker hits in this event = 7 + 7 176.335 902 2 1 0.485471 0.0651318 -144.45 + 7 112.072 900 2 0 0.492794 0.0650255 -145.85 + 7 126.988 903 1 1 0.675557 0.076183 -174.45 + 7 141.176 900 1 0 0.68548 0.0678348 -175.85 + 7 117.455 904 0 1 0.931155 -0.102959 -204.45 + 7 135.189 899 0 0 0.94967 -0.108828 -205.85 + 7 42.7775 928 1 1 5.69879 9.19869 -174.85 +Number of digits in this event = 5 +e- +Event: 8 +Number of tracker hits in this event = 14 + 8 128.577 900 5 1 0.0823041 -0.118521 -54.45 + 8 127.621 899 5 0 0.0877293 -0.117708 -55.85 + 8 111.034 900 4 1 0.237244 -0.0934837 -84.45 + 8 291.084 899 4 0 0.247261 -0.106427 -85.85 + 8 125.155 902 3 1 0.460397 -0.380349 -114.45 + 8 103.628 898 3 0 0.467735 -0.39313 -115.85 + 8 105.572 902 2 1 0.588424 -0.62996 -144.45 + 8 116.558 897 2 0 0.580616 -0.643381 -145.85 + 8 224.87 901 1 1 0.398875 -0.911609 -174.45 + 8 192.475 895 1 0 0.38149 -0.940373 -175.85 + 8 241.706 963 4 0 9.38084 12.7144 -86.25 + 8 98.7981 962 4 0 9.6448 12.65 -86.0302 + 8 31.2294 887 0 1 -2.5408 -24.8059 -204.85 + 8 131.363 474 0 1 -85.05 18.4141 -204.713 +Number of digits in this event = 10 +e- +Event: 9 +Number of tracker hits in this event = 49 + 9 191.62 900 4 1 0.122709 -0.0622355 -84.45 + 9 125.9 899 4 0 0.136847 -0.0621663 -85.85 + 9 368.46 901 3 1 0.415523 -0.0828827 -114.45 + 9 304.555 899 3 0 0.434984 -0.126146 -115.85 + 9 114.987 903 2 1 0.812079 -1.28704 -144.45 + 9 121.132 893 2 0 0.869237 -1.31494 -145.85 + 9 11.4059 909 1 1 2.0479 -1.6387 -174.45 + 9 112.204 910 1 1 2.05 -1.6409 -174.491 + 9 95.2723 891 1 0 2.12344 -1.72074 -175.85 + 9 130.974 915 0 1 3.20097 -3.34561 -204.45 + 9 123.319 883 0 0 3.28088 -3.42326 -205.85 + 9 128.212 890 4 0 -0.393368 -1.98889 -85.85 + 9 101.688 889 4 0 -0.395 -2.05 -86.0447 + 9 67.4178 885 5 0 -161.921 -2.85 -56.0774 + 9 210.621 904 2 1 0.957788 -0.233037 -144.45 + 9 354.217 899 2 0 0.962705 -0.239461 -145.85 + 9 126.18 905 1 1 1.21676 -0.48902 -174.45 + 9 129.435 897 1 0 1.23462 -0.472377 -175.85 + 9 139.891 907 0 1 1.61756 -0.0849578 -204.45 + 9 126.598 899 0 0 1.6075 -0.083713 -205.85 + 9 114.324 906 2 1 1.33499 0.875213 -144.45 + 9 228.669 904 2 0 1.33103 0.964783 -145.85 + 9 107.568 904 1 1 0.947042 2.7817 -174.45 + 9 94.2118 914 1 0 0.824103 2.99355 -175.85 + 9 28.7968 915 1 0 0.791994 3.05 -176.207 + 9 160.155 891 0 1 -1.74244 7.46736 -204.45 + 9 103.173 937 0 0 -1.84918 7.58438 -205.85 + 9 98.0311 901 2 0 0.999743 0.388457 -145.85 + 9 59.3957 949 2 0 -31.7904 9.98838 -146.25 + 9 93.5129 950 2 0 -31.9035 10.05 -146.104 + 9 64.3852 736 2 1 -32.7138 10.9091 -144.85 + 9 287.444 735 2 1 -32.85 11.0649 -144.69 + 9 11.5783 734 2 1 -33.0501 11.2391 -144.485 + 9 96.7068 796 2 0 -14.1577 -20.7471 -146.25 + 9 254.104 905 2 1 1.05064 -0.344133 -144.45 + 9 242.748 898 2 0 1.06531 -0.375815 -145.85 + 9 110.361 906 1 1 1.4032 -0.942473 -174.45 + 9 212.671 895 1 0 1.39253 -0.975997 -175.85 + 9 105.982 905 0 1 1.19744 -1.44747 -204.45 + 9 116.831 891 0 0 1.12045 -1.67906 -205.85 + 9 147.915 907 1 1 1.47193 -0.991984 -174.45 + 9 117.653 910 0 1 2.08141 -1.59967 -204.45 + 9 176.612 892 0 0 2.10974 -1.62716 -205.85 + 9 17.1256 1204 5 0 -17.9286 60.9099 -55.85 + 9 79.9999 983 1 1 16.6953 -27.9511 -174.85 + 9 55.1385 205 11 0 -31.4109 -138.95 123.75 + 9 8.63016 630 13 1 -53.85 -93.3141 185.347 + 9 95.6704 204 11 0 -31.3875 -139.15 124.087 + 9 62.4941 742 11 1 -31.4553 -139.461 125.15 +Number of digits in this event = 23 +e- +Event: 10 +Number of tracker hits in this event = 16 + 10 123.004 902 4 1 0.491037 -0.125783 -84.45 + 10 157.981 899 4 0 0.506718 -0.139041 -85.85 + 10 122.45 904 3 1 0.85399 -0.474018 -114.45 + 10 112.262 897 3 0 0.86069 -0.487187 -115.85 + 10 114.36 904 2 1 0.975836 -0.794636 -144.45 + 10 108.176 895 2 0 0.924109 -0.875861 -145.85 + 10 69.0896 875 1 1 -4.94502 -5.27731 -174.45 + 10 83.8716 874 1 1 -5.05 -5.23875 -174.653 + 10 121.798 875 1 0 -5.79346 -5.0261 -175.85 + 10 3.86612 806 0 1 -18.8431 2.79737 -204.45 + 10 174.58 805 0 1 -18.85 2.8066 -204.461 + 10 29.4273 804 0 1 -19.05 3.10053 -204.781 + 10 33.7734 920 0 0 -19.6588 4.17647 -205.85 + 10 125.837 921 0 0 -19.7007 4.25 -205.922 + 10 59.7663 922 0 0 -19.8209 4.45 -206.091 + 10 221.126 902 6 0 0.628352 0.495649 -25.8501 +Number of digits in this event = 8 +e- +Event: 11 +Number of tracker hits in this event = 22 + 11 124.217 899 5 1 -0.0529576 0.0517905 -54.45 + 11 132.293 900 5 0 -0.0624304 0.0511023 -55.85 + 11 150.744 899 4 1 -0.232928 0.0833332 -84.45 + 11 159.714 900 4 0 -0.234917 0.082668 -85.85 + 11 189.735 898 3 1 -0.282017 0.080169 -114.45 + 11 153.177 900 3 0 -0.278574 0.0743594 -115.85 + 11 136.984 899 2 1 -0.205532 -0.132533 -144.45 + 11 140.519 899 2 0 -0.216555 -0.142894 -145.85 + 11 141.747 897 1 1 -0.459331 -0.347942 -174.45 + 11 112.939 898 1 0 -0.475361 -0.35999 -175.85 + 11 115.289 895 0 1 -0.868191 -0.563318 -204.45 + 11 129.643 897 0 0 -0.896245 -0.576715 -205.85 + 11 19.1312 898 4 1 -0.250054 0.0855256 -84.4552 + 11 52.5844 1009 0 0 -74.5651 21.897 -206.25 + 11 134.635 1010 0 0 -74.7238 22.05 -206.128 + 11 178.949 1011 0 0 -74.5758 22.25 -206.088 + 11 8.74515 571 0 1 -65.6833 32.8193 -204.85 + 11 11.5911 1068 0 0 -63.2646 33.7896 -205.85 + 11 10.0454 592 0 1 -61.4895 35.2518 -204.85 + 11 4.41171 1084 0 0 -62.7684 36.979 -205.85 + 11 3.22963 578 0 1 -64.3373 38.9463 -204.85 + 11 76.3869 1108 0 0 -66.879 41.7283 -205.85 +Number of digits in this event = 13 +e- +Event: 12 +Number of tracker hits in this event = 11 + 12 110.909 900 5 1 0.0526177 0.192459 -54.45 + 12 127.558 900 5 0 0.0519098 0.200308 -55.85 + 12 115.661 899 3 1 -0.189992 0.786331 -114.45 + 12 116.577 903 3 0 -0.202423 0.812404 -115.85 + 12 121.246 897 2 1 -0.479029 1.35316 -144.45 + 12 146.041 906 2 0 -0.491491 1.37459 -145.85 + 12 114.134 896 1 1 -0.785102 1.82782 -174.45 + 12 125.464 908 1 0 -0.798285 1.83977 -175.85 + 12 142.152 895 0 1 -1.03553 2.10825 -204.45 + 12 118.127 910 0 0 -1.04652 2.11506 -205.85 + 12 40.8914 1190 1 1 58.1066 -31.6048 -174.85 +Number of digits in this event = 6 +e- +Event: 13 +Number of tracker hits in this event = 12 + 13 117.903 900 5 1 0.159313 -0.310483 -54.45 + 13 107.874 898 5 0 0.165683 -0.330701 -55.85 + 13 106.935 901 4 1 0.320308 -0.754057 -84.45 + 13 102.981 896 4 0 0.325036 -0.772381 -85.85 + 13 131.279 901 3 1 0.387875 -1.13781 -114.45 + 13 126.257 894 3 0 0.38952 -1.15559 -115.85 + 13 94.7911 901 2 1 0.429193 -1.55574 -144.45 + 13 101.646 892 2 0 0.419077 -1.56934 -145.85 + 13 115.758 900 1 1 0.223806 -1.82472 -174.45 + 13 122.155 891 1 0 0.209839 -1.83057 -175.85 + 13 127.65 899 0 1 -0.134137 -1.90162 -204.45 + 13 118.46 890 0 0 -0.155736 -1.91152 -205.85 +Number of digits in this event = 5 +e- +Event: 14 +Number of tracker hits in this event = 14 + 14 150.352 900 5 1 0.183621 0.111163 -54.45 + 14 102.942 900 5 0 0.176826 0.102161 -55.85 + 14 145.115 899 4 0 0.101554 -0.0536873 -85.85 + 14 241.992 901 3 1 0.345705 -0.171666 -114.45 + 14 100.197 899 3 0 0.360501 -0.170672 -115.85 + 14 138.411 903 2 1 0.693356 -0.161089 -144.45 + 14 103.385 899 2 0 0.709948 -0.154538 -145.85 + 14 121.68 900 1 0 1.0498 0.0620008 -175.85 + 14 118.339 905 0 1 1.19276 0.484656 -204.45 + 14 125.379 902 0 0 1.20153 0.518503 -205.85 + 14 173.83 975 0 0 33.3334 15.1106 -206.25 + 14 33.5203 1127 2 1 45.4651 -115.768 -144.85 + 14 189.893 1105 1 0 31.5648 41.1427 -176.25 + 14 234.702 1104 1 0 31.6215 41.05 -175.893 Number of digits in this event = 11 e- +Event: 15 +Number of tracker hits in this event = 19 + 15 213.911 900 4 1 0.179641 0.283805 -84.45 + 15 99.9748 901 4 0 0.186859 0.301501 -85.85 + 15 123.714 901 3 1 0.358062 0.663694 -114.45 + 15 123.385 903 3 0 0.375563 0.681125 -115.85 + 15 103.436 903 2 1 0.713216 1.05361 -144.45 + 15 116.766 905 2 0 0.735482 1.08022 -145.85 + 15 189.613 905 1 1 1.15602 1.63535 -174.45 + 15 145.25 908 1 0 1.17404 1.65965 -175.85 + 15 114.282 907 0 1 1.54504 2.1672 -204.45 + 15 98.9129 910 0 0 1.56373 2.17927 -205.85 + 15 16.6118 906 1 0 -0.305671 1.28899 -175.85 + 15 107.925 894 1 1 -1.11131 0.212372 -174.85 + 15 4.86258 1131 6 0 -45.3127 46.4443 -26.25 + 15 122.861 1132 6 0 -45.3248 46.45 -26.2396 + 15 141.266 1133 6 0 -45.5579 46.6501 -26.0201 + 15 14.3305 668 6 1 -46.4106 46.333 -24.85 + 15 70.1642 667 6 1 -46.45 46.3217 -24.813 + 15 228.61 666 6 1 -46.65 46.2578 -24.7773 + 15 128.349 665 6 1 -46.85 46.1839 -24.742 +Number of digits in this event = 10 +e- +Event: 16 +Number of tracker hits in this event = 11 + 16 145.423 899 3 1 -0.209488 0.085052 -114.45 + 16 176.542 900 3 0 -0.205616 0.0859933 -115.85 + 16 98.6996 899 2 1 -0.128045 0.125775 -144.45 + 16 106.118 900 2 0 -0.122707 0.124405 -145.85 + 16 99.9702 900 1 1 0.0523591 0.118182 -174.45 + 16 88.1469 900 1 0 0.0616932 0.118989 -175.85 + 16 264.519 901 0 1 0.266617 0.138524 -204.45 + 16 141.004 900 0 0 0.274562 0.130937 -205.85 + 16 190.039 900 0 1 0.25 0.136359 -204.468 + 16 134.68 899 0 0 0.0518191 -0.080752 -205.85 + 16 104.108 1732 8 0 5.16295 166.616 33.75 +Number of digits in this event = 8 +e- +Event: 17 +Number of tracker hits in this event = 13 + 17 114.738 900 1 1 0.143618 -0.809712 -174.45 + 17 98.586 896 1 0 0.153047 -0.815269 -175.85 + 17 116.618 901 0 1 0.324954 -0.962933 -204.45 + 17 182.281 895 0 0 0.338446 -0.974793 -205.85 + 17 38.1312 899 2 1 -0.05 -0.710212 -144.736 + 17 97.6803 899 4 1 -0.05 0.0774608 -84.5635 + 17 253.101 898 4 1 -0.25 0.197361 -84.7025 + 17 183.796 902 4 0 -1.03443 0.520758 -85.85 + 17 57.7367 901 4 0 -0.615719 0.364712 -85.85 + 17 18.2212 896 4 1 -0.662939 0.271863 -84.85 + 17 34.6354 899 5 0 -0.151264 -0.0875762 -55.85 + 17 206.814 918 0 1 3.85 7.24417 -204.782 + 17 197.676 917 0 1 3.64996 7.24012 -204.481 +Number of digits in this event = 6 +e- +Event: 18 +Number of tracker hits in this event = 13 + 18 138.496 900 3 1 0.143336 -0.391253 -114.45 + 18 140.161 898 3 0 0.153948 -0.401174 -115.85 + 18 98.4778 901 2 1 0.425652 -0.666534 -144.45 + 18 114.928 896 2 0 0.44201 -0.665051 -145.85 + 18 169.139 903 1 1 0.764943 -0.693923 -174.45 + 18 111.924 896 1 0 0.781606 -0.696268 -175.85 + 18 109.531 905 0 1 1.12599 -0.743817 -204.45 + 18 156.06 896 0 0 1.14489 -0.761706 -205.85 + 18 186.589 650 2 1 -49.9239 145.743 -144.85 + 18 5.06502 179 2 0 41.2366 -144.15 -145.885 + 18 59.1354 1109 2 1 41.9569 -146.965 -144.85 + 18 136.45 1110 2 1 42.0501 -147.034 -144.818 + 18 118.216 1111 2 1 42.25 -147.008 -144.744 +Number of digits in this event = 8 +e- +Event: 19 +Number of tracker hits in this event = 16 + 19 120.051 899 5 1 -0.121599 0.226564 -54.45 + 19 166.8 900 5 0 -0.127647 0.240057 -55.85 + 19 123.817 899 4 1 -0.225531 0.592474 -84.45 + 19 133.378 902 4 0 -0.243272 0.612656 -85.85 + 19 127.244 897 3 1 -0.627836 0.971042 -114.45 + 19 134.269 904 3 0 -0.64096 0.974277 -115.85 + 19 111.639 895 2 1 -0.91175 1.03041 -144.45 + 19 105.173 904 2 0 -0.922495 1.03243 -145.85 + 19 164.325 894 1 1 -1.15614 1.05558 -174.45 + 19 246.61 905 1 0 -1.16636 1.05157 -175.85 + 19 114.896 893 0 1 -1.3388 0.923641 -204.45 + 19 242.338 904 0 0 -1.34709 0.908408 -205.85 + 19 124.153 896 0 1 -0.835768 1.73609 -204.45 + 19 204.745 908 0 0 -0.835701 1.76783 -205.85 + 19 160.137 895 0 1 -0.85 1.7533 -204.453 + 19 121.679 909 0 0 -1.20766 1.92143 -205.85 +Number of digits in this event = 14 +e- +Event: 20 +Number of tracker hits in this event = 42 + 20 290.218 899 5 1 -0.0604157 -0.0658751 -54.45 + 20 102.427 899 5 0 -0.0694795 -0.056832 -55.85 + 20 99.7907 899 4 1 -0.213567 0.0596299 -84.45 + 20 145.5 900 4 0 -0.235558 0.0732188 -85.85 + 20 111.309 896 3 1 -0.659731 0.336788 -114.45 + 20 123.573 901 3 0 -0.710381 0.387197 -115.85 + 20 4.10243 892 2 1 -1.64977 1.55237 -144.45 + 20 155.302 891 2 1 -1.65 1.55298 -144.462 + 20 107.965 907 2 0 -1.67617 1.62265 -145.85 + 20 101.884 889 1 1 -2.18674 3.01482 -174.45 + 20 131.778 915 1 0 -2.24437 3.06334 -175.85 + 20 129.96 883 0 1 -3.43542 4.08443 -204.45 + 20 95.9605 920 0 0 -3.44141 4.15483 -205.85 + 20 90.7699 882 0 1 -3.48642 4.06033 -204.45 + 20 103.507 881 0 1 -3.65 4.00807 -204.639 + 20 111.417 919 0 0 -4.33898 3.97523 -205.85 + 20 63.4208 912 0 0 16.3939 2.63207 -206.25 + 20 93.3864 913 0 0 16.6334 2.65 -206.106 + 20 58.2087 914 0 0 16.904 2.85 -206.046 + 20 75.5263 915 0 0 17.0074 3.0501 -206.097 + 20 148.543 1006 0 0 30.2655 21.3523 -206.25 + 20 47.2049 1005 0 0 30.2744 21.25 -206.087 + 20 218.555 1055 0 1 31.1499 21.3381 -204.85 + 20 211.565 1054 0 1 31.05 21.4877 -204.525 + 20 213.777 900 2 0 -1.7435 0.245528 -145.85 + 20 160.149 896 2 1 -0.838569 -2.06451 -144.85 + 20 253.463 898 2 1 -0.356775 0.167913 -144.45 + 20 137.71 910 1 1 2.16061 0.629459 -174.45 + 20 144.981 905 1 0 1.9954 1.11132 -175.85 + 20 4.29982 906 1 0 1.95458 1.25 -176.234 + 20 130.494 893 0 1 -1.27268 11.7814 -204.45 + 20 119.616 964 0 0 -1.51753 12.931 -205.85 + 20 87.8869 965 0 0 -1.54095 13.05 -205.993 + 20 212.596 901 2 0 -0.377364 0.387999 -145.85 + 20 6.53989 902 2 0 -0.379441 0.45 -146.228 + 20 156.77 898 1 1 -0.419665 5.20295 -174.45 + 20 122.331 926 1 0 -0.400672 5.26154 -175.85 + 20 114.016 900 0 1 0.05 6.17214 -204.476 + 20 217.477 930 0 0 0.174955 6.20222 -205.85 + 20 123.537 358 9 0 37.4008 -108.356 63.75 + 20 143.869 1135 9 1 47.2214 -80.415 65.55 + 20 157.413 357 9 0 37.2806 -108.55 63.9134 +Number of digits in this event = 24 +e- +Event: 21 +Number of tracker hits in this event = 27 + 21 108.823 900 5 1 0.134237 -0.147431 -54.45 + 21 156.667 899 5 0 0.145619 -0.152407 -55.85 + 21 256.509 901 4 1 0.409925 -0.279262 -84.45 + 21 164.5 898 4 0 0.426919 -0.284858 -85.85 + 21 122.603 903 3 1 0.799586 -0.403931 -114.45 + 21 115.409 898 3 0 0.815132 -0.4144 -115.85 + 21 118.191 905 2 1 1.10724 -0.650861 -144.45 + 21 636.202 896 2 0 1.12771 -0.668597 -145.85 + 21 124.029 907 1 1 1.50679 -1.07046 -174.45 + 21 187.152 894 1 0 1.51441 -1.09142 -175.85 + 21 100.196 908 0 1 1.67811 -1.51178 -204.45 + 21 114.038 892 0 0 1.68206 -1.54105 -205.85 + 21 250.737 904 2 1 0.982443 -0.720662 -144.45 + 21 117.372 919 1 1 3.93443 -1.43128 -174.45 + 21 4.39348 920 1 1 4.05 -1.38768 -174.829 + 21 28.7938 893 1 0 4.33422 -1.25828 -175.85 + 21 69.8117 958 0 1 11.7195 2.36336 -204.45 + 21 71.8126 959 0 1 11.85 2.44616 -204.663 + 21 172.445 914 0 0 12.6246 2.91111 -205.85 + 21 10.2927 915 0 0 12.8788 3.05 -206.224 + 21 108.721 909 1 1 1.94283 -0.979879 -174.45 + 21 130.957 895 1 0 1.99079 -0.951507 -175.85 + 21 16.9786 914 0 1 3.0428 -0.349921 -204.45 + 21 75.5394 915 0 1 3.05 -0.346998 -204.538 + 21 132.473 898 0 0 3.16853 -0.287931 -205.85 + 21 81.8577 1221 0 0 -8.3246 64.2583 -206.25 + 21 104.233 1640 11 1 148.15 41.3012 125.388 +Number of digits in this event = 12 +e- +Event: 22 +Number of tracker hits in this event = 26 + 22 124.545 899 3 1 -0.0527227 -0.209202 -114.45 + 22 105.576 899 3 0 -0.0619874 -0.214518 -115.85 + 22 117.905 898 2 1 -0.297416 -0.357788 -144.45 + 22 102.007 898 2 0 -0.29801 -0.362936 -145.85 + 22 105.829 898 1 1 -0.327359 -0.450952 -174.45 + 22 128.645 897 1 0 -0.349451 -0.454078 -175.85 + 22 147.649 896 0 1 -0.76013 -0.521249 -204.45 + 22 109.119 897 0 0 -0.787302 -0.508304 -205.85 + 22 27.9112 895 2 0 0.467184 -1.00645 -145.85 + 22 135.486 894 2 0 0.511284 -1.05007 -145.92 + 22 36.7589 893 2 0 0.767828 -1.25006 -146.162 + 22 125.346 823 2 0 24.3852 -15.3347 -146.25 + 22 25.5952 1020 2 1 24.077 -15.3441 -144.85 + 22 16.9554 1019 2 1 24.05 -15.3856 -144.828 + 22 2.98664 814 2 0 23.0095 -17.2388 -145.85 + 22 40.6616 813 2 0 23.0039 -17.2501 -145.856 + 22 80.0568 812 2 0 22.9935 -17.45 -145.901 + 22 152.865 811 2 0 22.9347 -17.65 -146.051 + 22 34.7758 720 2 0 -15.8994 -36.0278 -146.25 + 22 153.205 719 2 0 -15.8709 -36.05 -146.199 + 22 225.684 905 3 0 0.559508 1.09309 -115.85 + 22 119.519 906 3 0 0.899904 1.25008 -116.079 + 22 255.972 907 3 0 0.962832 1.45 -115.898 + 22 19.9843 1307 0 1 81.45 10.8391 -204.65 + 22 78.2841 952 1 0 156.239 10.4814 -176.25 + 22 120.65 646 0 0 -42.9453 -50.65 -206.06 +Number of digits in this event = 11 +e- +Event: 23 +Number of tracker hits in this event = 16 + 23 160.325 900 4 1 0.0704425 0.311006 -84.45 + 23 122.708 901 4 0 0.0815054 0.322861 -85.85 + 23 244.882 901 3 1 0.309301 0.541731 -114.45 + 23 106.981 902 3 0 0.286687 0.535554 -115.85 + 23 111.509 899 2 1 -0.142531 0.402506 -144.45 + 23 135.258 901 2 0 -0.189661 0.364225 -145.85 + 23 93.5703 893 1 1 -1.29048 -0.350297 -174.45 + 23 21.8806 898 1 0 -1.35725 -0.443452 -175.85 + 23 90.056 897 1 0 -1.36194 -0.45 -175.947 + 23 131.358 886 0 1 -2.69707 -2.45994 -204.45 + 23 257.901 887 0 0 -2.80505 -2.49601 -205.85 + 23 117.865 888 0 0 -2.80178 -2.44996 -206.204 + 23 121.904 1530 5 0 35.2285 126.188 -56.25 + 23 41.3201 1081 5 1 36.3101 126.257 -54.85 + 23 24.7167 1528 5 0 37.4743 125.832 -55.85 + 23 93.0105 1085 5 1 37.1317 125.761 -54.85 +Number of digits in this event = 8 +e- +Event: 24 +Number of tracker hits in this event = 26 + 24 136.136 899 3 1 -0.0836583 0.114745 -114.45 + 24 113.736 900 3 0 -0.0895364 0.116392 -115.85 + 24 126.872 899 2 1 -0.214527 0.134962 -144.45 + 24 135.011 900 2 0 -0.225456 0.140823 -145.85 + 24 185.165 898 1 1 -0.437235 0.237985 -174.45 + 24 241.505 900 1 0 -0.42724 0.23337 -175.85 + 24 115.263 899 0 0 -0.601654 -0.106667 -205.85 + 24 16.2871 900 4 1 0.05 0.225483 -84.8066 + 24 25.9672 901 4 0 0.435108 0.437849 -85.85 + 24 95.0706 902 4 0 0.464564 0.45 -85.9218 + 24 53.5403 903 4 0 0.483147 0.65 -86.0442 + 24 66.6319 904 4 0 0.462802 0.85 -86.0247 + 24 52.7526 905 4 0 0.443342 1.05 -86.0224 + 24 60.1813 906 4 0 0.419886 1.25 -86.0658 + 24 99.7271 907 4 0 0.355642 1.45 -86.1425 + 24 69.0491 908 4 0 0.215452 1.65015 -86.2284 + 24 54.4799 909 4 0 0.134536 1.85 -86.2051 + 24 18.8209 910 4 0 -0.0500877 2.18588 -86.126 + 24 181.632 911 4 0 -0.0777887 2.25 -86.1287 + 24 37.8977 912 4 0 -0.0882776 2.45 -86.1921 + 24 675.787 983 4 0 -6.60565 16.8374 -86.2499 + 24 105.773 1029 4 0 -19.7914 25.9729 -86.25 + 24 117.255 851 4 0 17.2949 -9.72964 -86.25 + 24 259.041 897 0 1 -0.516771 0.243974 -204.45 + 24 314.064 901 0 0 -0.536846 0.269246 -205.85 + 24 52.5143 902 0 0 -0.598732 0.45 -206.098 +Number of digits in this event = 10 +e- +Event: 25 +Number of tracker hits in this event = 52 + 25 151.376 900 5 1 0.167439 -0.166272 -54.45 + 25 172.853 899 5 0 0.177191 -0.187057 -55.85 + 25 122.529 901 4 1 0.346791 -0.616091 -84.45 + 25 126.885 897 4 0 0.345621 -0.634988 -85.85 + 25 133.858 901 3 1 0.334993 -1.02996 -114.45 + 25 111.586 894 3 0 0.329609 -1.05142 -115.85 + 25 115.392 900 2 1 0.201809 -1.47184 -144.45 + 25 103.942 892 2 0 0.189957 -1.48787 -145.85 + 25 113.903 899 0 1 -0.145227 -2.16486 -204.45 + 25 411.808 889 0 0 -0.122588 -2.13587 -205.85 + 25 291.106 900 1 1 0.0725657 -1.83415 -174.45 + 25 289.883 891 1 0 0.0756057 -1.84594 -175.85 + 25 147.668 900 0 1 0.111548 -2.32948 -204.45 + 25 287.211 888 0 0 0.0644373 -2.31326 -205.85 + 25 136.599 875 0 0 -2.74585 -4.92615 -206.25 + 25 12.0657 886 0 1 -2.65238 -5.20251 -204.85 + 25 108.732 887 0 1 -2.65 -5.21029 -204.811 + 25 59.9482 923 1 0 -8.33887 4.78375 -176.25 + 25 77.1481 924 1 0 -8.37848 4.85 -176.087 + 25 149.014 856 1 1 -8.7463 5.52884 -174.85 + 25 18.6587 855 1 1 -8.85007 5.7166 -174.518 + 25 126.513 946 2 0 1.70115 9.25841 -146.25 + 25 127.238 910 2 1 2.13075 9.46765 -144.85 + 25 70.312 911 2 1 2.25 9.50851 -144.543 + 25 155.402 912 2 1 2.45 9.63844 -144.55 + 25 5.97409 954 2 0 3.13402 11.0303 -145.85 + 25 80.7673 955 2 0 3.14374 11.05 -145.868 + 25 78.5452 956 2 0 3.22353 11.2502 -146.089 + 25 170.999 1062 2 0 20.5379 32.5756 -146.25 + 25 51.7726 1003 2 1 20.8441 32.7137 -144.85 + 25 134.665 1004 2 1 20.85 32.723 -144.805 + 25 386.003 898 0 1 -0.332069 -2.16398 -204.45 + 25 104.235 900 4 1 0.118948 -0.145489 -84.45 + 25 282.2 898 4 0 0.233091 -0.358109 -85.85 + 25 154.861 936 3 1 7.37199 -2.36948 -114.45 + 25 18.0807 881 3 0 7.54691 -3.78322 -115.85 + 25 129.457 880 3 0 7.55472 -3.85022 -115.912 + 25 79.1754 879 3 0 7.57541 -4.05 -116.077 + 25 122.409 935 2 1 7.21256 -34.7181 -144.45 + 25 106.489 727 2 0 7.13597 -34.6131 -145.85 + 25 49.7717 938 1 1 7.81903 -31.866 -174.45 + 25 97.7199 939 1 1 7.85 -31.7501 -174.568 + 25 161.265 747 1 0 8.12368 -30.6117 -175.85 + 25 71.9755 748 1 0 8.16901 -30.4498 -176.021 + 25 21.8283 749 1 0 8.21242 -30.2498 -176.195 + 25 38.134 987 0 1 17.5963 1.85367 -204.45 + 25 139.14 988 0 1 17.6501 1.87669 -204.545 + 25 60.576 908 0 0 18.4041 1.84818 -205.85 + 25 60.4006 909 0 0 18.5164 1.85 -206.036 + 25 10.9248 384 5 1 -103.157 70.3816 -54.45 + 25 127.832 385 5 1 -103.15 70.3728 -54.4577 + 25 32.6351 455 12 1 -89.0224 128.616 155.15 +Number of digits in this event = 28 +e- +Event: 26 +Number of tracker hits in this event = 23 + 26 121.208 896 3 1 -0.730663 0.111053 -114.45 + 26 136.648 900 3 0 -0.751722 0.14571 -115.85 + 26 87.7493 894 2 1 -1.14543 0.815921 -144.45 + 26 116.974 903 2 0 -1.13823 0.827112 -145.85 + 26 100.043 894 1 1 -1.06657 1.09292 -174.45 + 26 100.002 905 1 0 -1.07745 1.1326 -175.85 + 26 226.609 893 0 1 -1.33292 2.00691 -204.45 + 26 141.03 909 0 0 -1.34777 2.03862 -205.85 + 26 20.9333 735 5 0 -65.928 -33.0147 -56.25 + 26 95.9657 734 5 0 -65.9676 -33.0501 -56.2202 + 26 16.4104 733 5 0 -66.0774 -33.25 -56.2323 + 26 1.49946 1729 1 1 166.037 88.6467 -174.85 + 26 41.2285 354 1 1 -109.204 -82.5994 -174.45 + 26 108.116 353 1 1 -109.35 -82.6248 -174.519 + 26 114.584 486 1 0 -109.634 -82.7784 -175.85 + 26 27.5812 485 1 0 -109.658 -82.8501 -176.144 + 26 84.9176 903 0 0 22.8908 0.805813 -206.25 + 26 141.797 904 0 0 22.869 0.850013 -206.123 + 26 26.4533 986 1 0 -32.2196 17.25 -175.918 + 26 261.176 736 1 1 -32.6753 17.874 -174.85 + 26 84.2632 737 1 1 -32.65 17.8329 -174.529 + 26 46.4606 313 4 0 128.609 -117.35 -85.9751 + 26 198.05 314 4 0 128.693 -117.35 -85.9017 +Number of digits in this event = 9 +e- +Event: 27 +Number of tracker hits in this event = 14 + 27 163.089 897 4 1 -0.567476 0.108622 -84.45 + 27 116.559 900 4 0 -0.579905 0.111388 -85.85 + 27 302.969 895 3 1 -0.87438 0.182603 -114.45 + 27 142.631 900 3 0 -0.893967 0.189292 -115.85 + 27 128.287 893 2 1 -1.30418 0.316941 -144.45 + 27 134.286 901 2 0 -1.33039 0.338898 -145.85 + 27 94.998 890 1 1 -1.85769 0.787561 -174.45 + 27 93.8397 903 1 0 -1.88637 0.818776 -175.85 + 27 120.674 887 0 1 -2.46097 1.45837 -204.45 + 27 112.376 907 0 0 -2.48636 1.47778 -205.85 + 27 33.6338 899 5 1 -0.171785 -0.0500246 -54.6814 + 27 17.6863 900 5 1 0.0501011 -0.0535613 -54.801 + 27 108.016 899 5 0 0.649674 -0.190582 -55.85 + 27 78.3343 898 5 0 0.873081 -0.25 -56.1457 +Number of digits in this event = 7 +e- +Event: 28 +Number of tracker hits in this event = 13 + 28 150.406 900 4 1 0.221711 -0.306996 -84.45 + 28 164.938 898 4 0 0.234468 -0.31625 -85.85 + 28 109.412 902 3 1 0.465908 -0.559604 -114.45 + 28 119.526 897 3 0 0.477048 -0.562511 -115.85 + 28 144.239 903 2 1 0.695966 -0.635967 -144.45 + 28 102.102 897 2 0 0.713051 -0.64692 -145.85 + 28 5.72021 896 2 0 0.717504 -0.65 -146.226 + 28 147.535 904 1 1 1.02633 -0.890096 -174.45 + 28 229.044 895 1 0 1.04751 -0.91349 -175.85 + 28 102.615 907 0 1 1.52146 -1.37322 -204.45 + 28 180.5 893 0 0 1.54061 -1.39883 -205.85 + 28 13.5676 575 2 1 -64.9679 12.2975 -144.85 + 28 133.38 1708 6 1 161.835 -87.4536 -24.45 +Number of digits in this event = 8 +e- +Event: 29 +Number of tracker hits in this event = 4 + 29 375.028 900 4 1 0.118854 0.143304 -84.45 + 29 144.348 900 4 0 0.113829 0.136225 -85.85 + 29 106.29 887 0 1 -2.56769 1.03684 -204.45 + 29 142.127 905 0 0 -2.62262 1.06828 -205.85 +Number of digits in this event = 4 +e- +Event: 30 +Number of tracker hits in this event = 40 + 30 123.463 900 5 1 0.112399 -0.0778881 -54.45 + 30 158.667 899 5 0 0.127905 -0.0738761 -55.85 + 30 100.332 901 4 1 0.424026 0.0538092 -84.45 + 30 110.884 900 4 0 0.431659 0.0533083 -85.85 + 30 133.992 902 3 1 0.60205 0.0694243 -114.45 + 30 86.2771 900 3 0 0.588958 0.053189 -115.85 + 30 203.925 900 2 1 0.217801 -0.225199 -144.45 + 30 109.543 898 2 0 0.190506 -0.257498 -145.85 + 30 146.48 898 1 1 -0.371365 -0.995435 -174.45 + 30 140.012 895 1 0 -0.418498 -1.0263 -175.85 + 30 129.571 893 0 1 -1.33914 -1.78861 -204.45 + 30 175.082 891 0 0 -1.37745 -1.81334 -205.85 + 30 52.3716 896 2 0 0.521702 -0.763188 -145.85 + 30 96.5456 895 2 0 0.582098 -0.85 -145.991 + 30 4.33273 894 2 0 0.727689 -1.05 -146.237 + 30 52.6581 880 2 0 -7.25013 -3.95926 -146.25 + 30 75.9711 881 2 0 -7.37713 -3.85 -146.169 + 30 73.0071 882 2 0 -7.59854 -3.65 -146.086 + 30 74.22 883 2 0 -7.77701 -3.44983 -146.034 + 30 107.199 884 2 0 -7.95618 -3.25 -145.997 + 30 85.9748 885 2 0 -8.21503 -3.05 -145.991 + 30 311.06 886 2 0 -8.46945 -2.85 -145.951 + 30 33.1331 846 2 1 -10.7419 -2.10498 -144.85 + 30 104.354 845 2 1 -10.85 -2.06804 -144.793 + 30 51.8053 844 2 1 -11.05 -2.0068 -144.72 + 30 59.8542 843 2 1 -11.25 -1.956 -144.661 + 30 55.6866 842 2 1 -11.45 -1.8922 -144.65 + 30 60.5135 841 2 1 -11.65 -1.81291 -144.614 + 30 68.2173 840 2 1 -11.85 -1.82469 -144.537 + 30 169.834 887 2 0 -8.48896 -2.65 -145.888 + 30 226.221 905 2 1 1.18188 0.233166 -144.45 + 30 318.954 900 2 0 1.18538 0.240042 -145.85 + 30 169.893 905 1 1 1.13719 0.396736 -174.45 + 30 365.35 901 1 0 1.20221 0.30229 -175.85 + 30 106.074 912 0 1 2.59254 -2.22152 -204.45 + 30 170.445 888 0 0 2.71697 -2.37414 -205.85 + 30 119.747 908 1 1 1.72404 0.329142 -174.45 + 30 167.439 913 0 1 2.77607 0.243337 -204.45 + 30 107.013 901 0 0 2.81499 0.250711 -205.85 + 30 77.1542 344 0 0 50.4939 -111.15 -205.952 +Number of digits in this event = 19 +e- +Event: 31 +Number of tracker hits in this event = 36 + 31 104.232 900 5 0 -0.0538509 0.222615 -55.85 + 31 117.825 897 4 1 -0.469839 0.420615 -84.45 + 31 111.906 902 4 0 -0.498024 0.457028 -85.85 + 31 154.448 895 3 1 -1.01541 1.27943 -114.45 + 31 285.402 906 3 0 -1.06937 1.30248 -115.85 + 31 145.833 889 2 1 -2.19074 1.81563 -144.45 + 31 175.861 908 2 0 -2.23915 1.83176 -145.85 + 31 98.6192 884 1 1 -3.09685 2.13908 -174.45 + 31 118.584 909 1 0 -3.20845 2.03967 -175.85 + 31 134.14 900 0 0 -5.59338 0.0868023 -205.85 + 31 375.577 896 2 1 -0.765318 0.910049 -144.45 + 31 244.351 903 2 0 -0.90434 0.841752 -145.85 + 31 139.801 955 0 1 11.081 1.58551 -204.45 + 31 5.06961 903 0 0 11.3561 0.657382 -205.85 + 31 106.564 902 0 0 11.3587 0.65 -205.861 + 31 53.795 901 0 0 11.4058 0.45 -206.122 + 31 259.542 904 2 0 -0.785697 0.912846 -145.85 + 31 123.929 894 1 1 -1.15522 0.88944 -174.45 + 31 191.73 903 1 0 -1.18905 0.84286 -175.85 + 31 132.939 889 0 1 -2.14502 -0.153841 -204.45 + 31 4.86645 899 0 0 -2.14875 -0.248705 -205.85 + 31 143.323 898 0 0 -2.14881 -0.25 -205.868 + 31 284.13 899 4 1 -0.234552 0.423111 -84.45 + 31 226.306 901 4 0 -0.247535 0.432717 -85.85 + 31 220.884 897 3 1 -0.548074 0.597525 -114.45 + 31 257.361 902 3 0 -0.528431 0.598294 -115.85 + 31 132.436 899 2 1 -0.197348 0.784727 -144.45 + 31 109.836 901 1 1 0.342005 0.377541 -174.45 + 31 109.453 901 1 0 0.250389 0.301753 -175.85 + 31 124.107 891 0 1 -1.76567 -1.29092 -204.45 + 31 107.466 893 0 0 -1.82845 -1.33745 -205.85 + 31 105.661 900 2 0 -0.792937 0.205696 -145.85 + 31 124.774 897 1 1 -0.558054 0.194 -174.45 + 31 128.349 900 1 0 -0.581387 0.166825 -175.85 + 31 120.503 894 0 1 -1.09291 -0.424442 -204.45 + 31 128.491 897 0 0 -1.12847 -0.513725 -205.85 +Number of digits in this event = 24 +e- +Event: 32 +Number of tracker hits in this event = 16 + 32 304.921 900 4 1 0.0630227 0.144421 -84.45 + 32 131.592 900 4 0 0.0689827 0.152029 -85.85 + 32 173.539 900 3 1 0.216933 0.287835 -114.45 + 32 131.33 901 3 0 0.224342 0.295942 -115.85 + 32 118.686 901 2 1 0.388564 0.458939 -144.45 + 32 125.867 902 2 0 0.39805 0.471169 -145.85 + 32 134.637 902 1 1 0.636334 0.741942 -174.45 + 32 177.15 903 1 0 0.650435 0.759782 -175.85 + 32 113.002 904 0 1 0.945331 1.09105 -204.45 + 32 116.875 905 0 0 0.953328 1.11665 -205.85 + 32 87.8861 899 4 1 -0.0500956 0.129885 -84.708 + 32 7.45609 903 4 0 -0.171055 0.836759 -85.85 + 32 87.4303 904 4 0 -0.173946 0.85 -85.8699 + 32 408.616 905 4 0 -0.195155 1.05008 -85.9488 + 32 26.7035 1344 5 1 89.0087 -11.1565 -54.85 + 32 129.281 1345 5 1 89.05 -11.1568 -54.8177 +Number of digits in this event = 10 +e- +Event: 33 +Number of tracker hits in this event = 12 + 33 158.886 900 3 1 0.117511 -0.199939 -114.45 + 33 137.002 899 3 0 0.121793 -0.206618 -115.85 + 33 108.967 900 2 1 0.178151 -0.313273 -144.45 + 33 101.658 898 2 0 0.150272 -0.322419 -145.85 + 33 125.449 898 1 1 -0.422909 -0.506923 -174.45 + 33 115.302 897 1 0 -0.460567 -0.515027 -175.85 + 33 112.366 894 0 1 -1.22721 -0.675336 -204.45 + 33 125.795 896 0 0 -1.26579 -0.687792 -205.85 + 33 10.7918 900 4 1 0.0500232 0.075335 -84.722 + 33 36.7539 898 4 0 -0.648705 -0.284339 -85.85 + 33 86.7355 899 4 0 -0.653079 -0.249976 -85.8728 + 33 52.0535 900 6 1 0.104957 0.05 -24.8288 +Number of digits in this event = 5 +e- +Event: 34 +Number of tracker hits in this event = 8 + 34 212.756 900 3 1 0.108522 -0.0522279 -114.45 + 34 154.015 899 3 0 0.108013 -0.0533519 -115.85 + 34 166.527 900 2 1 0.147911 -0.113733 -144.45 + 34 165.12 899 2 0 0.140512 -0.133375 -145.85 + 34 99.4825 898 0 1 -0.397318 -0.798321 -204.45 + 34 106.989 896 0 0 -0.412651 -0.821462 -205.85 + 34 205.154 880 3 0 63.9713 -3.86477 -116.25 + 34 15.4427 881 3 0 64.1784 -3.85 -116.047 +Number of digits in this event = 6 +e- +Event: 35 +Number of tracker hits in this event = 15 + 35 108.411 900 5 1 0.172928 -0.086308 -54.45 + 35 100.365 899 5 0 0.182643 -0.0842415 -55.85 + 35 115.173 901 4 1 0.359154 -0.0638689 -84.45 + 35 109.183 899 4 0 0.369666 -0.0580177 -85.85 + 35 148.435 902 3 1 0.60889 0.0617438 -114.45 + 35 164.269 900 3 0 0.618568 0.0653897 -115.85 + 35 212.164 903 2 1 0.826963 0.166441 -144.45 + 35 266.635 900 2 0 0.849102 0.164244 -145.85 + 35 286.467 906 1 1 1.29692 0.100225 -174.45 + 35 126.652 900 1 0 1.31484 0.0907899 -175.85 + 35 140.082 908 0 1 1.67328 -0.0989404 -204.45 + 35 125.516 899 0 0 1.6995 -0.101315 -205.85 + 35 285.774 898 3 0 0.128598 -0.413231 -115.85 + 35 28.4746 904 2 1 0.894321 -0.17771 -144.45 + 35 131.476 899 2 0 0.213349 -0.122213 -145.85 +Number of digits in this event = 12 +e- +Event: 36 +Number of tracker hits in this event = 11 + 36 108.751 899 5 1 -0.101005 0.17868 -54.45 + 36 117.287 900 5 0 -0.0996453 0.193043 -55.85 + 36 109.173 899 4 1 -0.0892694 0.466671 -84.45 + 36 107.324 902 4 0 -0.09357 0.479107 -85.85 + 36 120.713 899 3 1 -0.158274 0.731984 -114.45 + 36 117.43 903 3 0 -0.16037 0.750177 -115.85 + 36 123.458 899 2 1 -0.200866 1.12351 -144.45 + 36 104.182 905 2 0 -0.200458 1.1562 -145.85 + 36 127.183 899 1 1 -0.0607834 1.73812 -174.45 + 36 151.14 901 0 1 0.405191 2.91329 -204.45 + 36 121.051 914 0 0 0.46985 2.95965 -205.85 +Number of digits in this event = 6 +e- +Event: 37 +Number of tracker hits in this event = 21 + 37 114.8 900 5 1 0.193574 0.238174 -54.45 + 37 31.9313 900 5 0 0.20837 0.249142 -55.85 + 37 70.0739 901 5 0 0.209536 0.25 -55.9585 + 37 106.978 902 4 1 0.528602 0.453167 -84.45 + 37 106.797 902 4 0 0.562589 0.464978 -85.85 + 37 135.189 906 3 1 1.34707 0.78149 -114.45 + 37 156.941 903 3 0 1.39192 0.792209 -115.85 + 37 124.468 911 2 1 2.34003 1.08148 -144.45 + 37 102.541 905 2 0 2.40517 1.08272 -145.85 + 37 232.307 918 1 1 3.81411 1.09132 -174.45 + 37 135.787 905 1 0 3.90112 1.11604 -175.85 + 37 120.926 928 0 1 5.69845 1.64163 -204.45 + 37 175.364 908 0 0 5.79417 1.65763 -205.85 + 37 104.97 901 1 0 3.57962 0.370064 -175.85 + 37 59.5415 900 1 0 3.55494 0.25 -176.095 + 37 154.264 947 0 1 9.47916 -15.8441 -204.45 + 37 29.8122 948 0 1 9.65 -15.9299 -204.776 + 37 91.1065 818 0 0 10.2162 -16.3418 -205.85 + 37 59.6733 817 0 0 10.2881 -16.45 -206.083 + 37 0.404106 906 0 0 4.66786 1.3881 -205.85 + 37 81.7101 816 6 1 -16.65 -159.797 -24.7544 +Number of digits in this event = 10 +e- +Event: 38 +Number of tracker hits in this event = 7 + 38 112.907 899 4 0 0.0548188 -0.225121 -85.85 + 38 137.18 901 3 1 0.29101 -0.552857 -114.45 + 38 126.271 897 3 0 0.285393 -0.551754 -115.85 + 38 117.841 900 2 1 0.20074 -0.42665 -144.45 + 38 157.675 898 2 0 0.181847 -0.407817 -145.85 + 38 121.11 898 0 1 -0.301158 0.856607 -204.45 + 38 144.322 904 0 0 -0.335296 0.883276 -205.85 +Number of digits in this event = 6 +e- +Event: 39 +Number of tracker hits in this event = 19 + 39 109.569 900 5 1 0.198643 0.165921 -54.45 + 39 125.038 900 5 0 0.209962 0.180838 -55.85 + 39 197.221 902 4 1 0.477019 0.492821 -84.45 + 39 130.572 902 4 0 0.486802 0.504271 -85.85 + 39 148.399 903 3 1 0.726312 0.738757 -114.45 + 39 162.331 903 3 0 0.740568 0.744517 -115.85 + 39 118.859 904 2 1 1.02494 0.846703 -144.45 + 39 182.109 904 2 0 1.04803 0.857575 -145.85 + 39 191.84 907 1 1 1.49143 1.06128 -174.45 + 39 119.303 905 1 0 1.51124 1.07703 -175.85 + 39 159.924 909 0 1 1.97991 1.36279 -204.45 + 39 100.143 906 0 0 1.99909 1.37819 -205.85 + 39 452.824 903 4 1 0.65 0.521439 -84.5789 + 39 224.729 903 2 1 0.65824 0.660711 -144.45 + 39 118.176 903 0 1 0.728972 -0.207992 -204.45 + 39 124.694 899 0 0 0.776376 -0.0927041 -205.85 + 39 105.183 901 0 1 0.28672 -0.494594 -204.45 + 39 113.393 897 0 0 0.27652 -0.551967 -205.85 + 39 21.5066 1035 2 1 27.2048 58.1947 -144.45 +Number of digits in this event = 13 +e- Event: 40 Number of tracker hits in this event = 17 - 40 134.066 900 5 1 0.0982699 -0.134781 -54.45 - 40 112.086 899 5 0 0.0994775 -0.135563 -55.85 - 40 156.273 900 4 1 0.12471 -0.194593 -84.45 - 40 138.99 899 4 0 0.122687 -0.196067 -85.85 - 40 128.886 900 3 1 0.094079 -0.211817 -114.45 - 40 95.8543 899 3 0 0.0981047 -0.20953 -115.85 - 40 336.568 900 2 1 0.206614 -0.177609 -144.45 - 40 104.437 899 2 0 0.211981 -0.167314 -145.85 - 40 131.05 901 1 1 0.325139 0.0669175 -174.45 - 40 130.08 900 1 0 0.333903 0.0790119 -175.85 - 40 92.44 902 0 1 0.480969 0.305339 -204.45 - 40 107.243 901 0 0 0.483974 0.319513 -205.85 - 40 438.858 914 2 0 -0.498139 3.02209 -145.85 - 40 7.81953 915 2 0 -0.50175 3.05 -145.855 - 40 263.27 903 0 1 0.736222 -0.326548 -204.45 - 40 227.308 897 0 0 0.691997 -0.451796 -205.85 - 40 11.9054 1532 4 1 126.623 -105.291 -84.85 -Number of digits in this event = 11 -e- -Event: 41 -Number of tracker hits in this event = 31 - 41 126.164 899 4 1 -0.200351 -0.188733 -84.45 - 41 199.298 899 4 0 -0.207545 -0.203667 -85.85 - 41 192.403 898 3 1 -0.344838 -0.545873 -114.45 - 41 114.115 897 3 0 -0.354053 -0.571407 -115.85 - 41 366.016 897 2 1 -0.587032 -1.09649 -144.45 - 41 158.935 894 2 0 -0.596231 -1.12037 -145.85 - 41 147.497 896 1 1 -0.782964 -1.58678 -174.45 - 41 173.832 892 1 0 -0.778528 -1.61049 -175.85 - 41 143.517 896 0 1 -0.673412 -2.1063 -204.45 - 41 158.547 889 0 0 -0.665775 -2.13093 -205.85 - 41 111.434 895 2 0 -0.592255 -1.01245 -145.85 - 41 108.479 897 1 1 -0.587753 -2.37449 -174.45 - 41 162.436 888 1 0 -0.724923 -2.27897 -175.85 - 41 17.9613 889 1 0 -0.767336 -2.25 -176.235 - 41 117.377 880 0 1 -3.85953 -0.0644533 -204.45 - 41 173.207 896 2 0 -0.502656 -0.691034 -145.85 - 41 48.6956 897 2 0 -0.492408 -0.65 -146.109 - 41 125.278 905 1 1 1.16386 3.70021 -174.45 - 41 170.017 919 1 0 1.21487 3.86742 -175.85 - 41 110.694 911 0 1 2.25958 6.23995 -204.45 - 41 76.127 932 0 0 2.38461 6.59097 -205.85 - 41 58.2138 933 0 0 2.40235 6.65 -206.079 - 41 163.809 908 3 0 72.817 1.74922 -116.25 - 41 0.915074 1254 3 1 70.8536 4.3762 -114.85 - 41 54.8949 1253 3 1 70.85 4.38177 -114.848 - 41 66.6116 932 3 0 69.9748 6.50399 -115.85 - 41 164.69 1227 3 1 65.5974 10.9316 -114.85 - 41 126.932 959 3 0 66.1701 12.0241 -115.85 - 41 70.0294 960 3 0 66.1757 12.0501 -115.878 - 41 222.599 1233 3 1 66.8169 12.4582 -114.85 - 41 20.8461 1234 3 1 66.85 12.4772 -114.822 -Number of digits in this event = 18 -e- -Event: 42 -Number of tracker hits in this event = 15 - 42 338.35 899 5 1 -0.0571115 0.05 -54.4834 - 42 139.249 901 4 1 0.315333 2.67832 -84.45 - 42 101.538 913 4 0 0.331758 2.7388 -85.85 - 42 152.394 900 3 1 0.0871294 3.31831 -114.45 - 42 46.1983 916 3 0 -0.0638847 3.2568 -115.85 - 42 63.8711 915 3 0 -0.0839646 3.25 -116.02 - 42 217.997 878 2 1 -4.27881 3.23907 -144.45 - 42 269.76 915 2 0 -4.60707 3.23008 -145.85 - 42 10.2166 843 1 1 -11.4358 2.77174 -174.45 - 42 136.94 842 1 1 -11.45 2.76863 -174.501 - 42 150.399 913 1 0 -11.8558 2.71293 -175.85 - 42 85.6955 797 0 1 -20.586 2.14064 -204.45 - 42 45.5805 796 0 1 -20.6501 2.09428 -204.702 - 42 44.1505 909 0 0 -20.9366 1.87711 -205.85 - 42 182.481 908 0 0 -20.9769 1.85 -206.007 -Number of digits in this event = 9 -e- -Event: 43 -Number of tracker hits in this event = 22 - 43 310.501 900 5 1 0.0622538 0.0721649 -54.45 - 43 121.768 900 5 0 0.0702584 0.0744807 -55.85 - 43 110.447 900 4 1 0.240198 0.133138 -84.45 - 43 142.126 900 4 0 0.24809 0.131138 -85.85 - 43 134.877 901 3 1 0.386962 0.0645349 -114.45 - 43 198.989 900 3 0 0.396326 0.104876 -115.85 - 43 104.25 903 2 1 0.668793 0.937349 -144.45 - 43 156.756 904 2 0 0.699852 0.975927 -145.85 - 43 236.159 906 1 1 1.27404 1.82974 -174.45 - 43 170.001 909 1 0 1.31397 1.88343 -175.85 - 43 128.036 910 0 1 2.09829 3.02699 -204.45 - 43 148.655 915 0 0 2.14833 3.07174 -205.85 - 43 22.1965 902 2 1 0.558651 -0.094631 -144.833 - 43 256.31 899 2 0 0.563726 -0.102735 -145.85 - 43 265.962 903 1 1 0.698253 -0.330604 -174.45 - 43 194.624 898 1 0 0.693114 -0.371614 -175.85 - 43 128.893 901 0 1 0.271644 -0.889311 -204.45 - 43 119.181 895 0 0 0.270589 -0.863371 -205.85 - 43 39.1805 899 3 0 0.609013 -0.05 -116.204 - 43 29.062 1315 3 0 46.5285 83.19 -116.25 - 43 37.94 1316 3 0 46.5283 83.25 -116.227 - 43 201.974 899 1 0 0.842822 -0.0659712 -175.85 -Number of digits in this event = 16 -e- -Event: 44 -Number of tracker hits in this event = 11 - 44 106.528 901 4 1 0.272126 0.238928 -84.45 - 44 94.7406 901 4 0 0.297881 0.254596 -85.85 - 44 247.242 903 3 1 0.81322 0.583548 -114.45 - 44 144.704 902 3 0 0.851179 0.602702 -115.85 - 44 146.435 908 2 1 1.66016 0.978697 -144.45 - 44 133.136 904 2 0 1.69257 0.995537 -145.85 - 44 148.959 911 1 1 2.25587 1.48195 -174.45 - 44 107.855 907 1 0 2.30582 1.4981 -175.85 - 44 116.394 916 0 1 3.26978 1.81309 -204.45 - 44 170.779 908 0 0 3.33728 1.80199 -205.85 - 44 120.596 904 3 1 0.850035 0.547405 -114.453 -Number of digits in this event = 8 -e- -Event: 45 -Number of tracker hits in this event = 7 - 45 107.132 900 5 1 0.0887617 -0.106668 -54.45 - 45 105.816 899 5 0 0.0866213 -0.104633 -55.85 - 45 135.74 899 2 1 -0.148352 0.157624 -144.45 - 45 172.564 900 2 0 -0.148496 0.157794 -145.85 - 45 157.514 899 1 1 -0.149522 0.163304 -174.45 - 45 125.028 900 1 0 -0.14526 0.155009 -175.85 - 45 239.449 547 11 0 116.713 -70.5218 123.75 -Number of digits in this event = 6 -e- -Event: 46 -Number of tracker hits in this event = 94 - 46 268.88 900 4 0 -0.440492 0.0521173 -85.85 - 46 293.712 896 3 1 -0.84786 0.258762 -114.45 - 46 129.183 901 3 0 -0.854558 0.269035 -115.85 - 46 117.209 895 2 1 -1.00191 0.435429 -144.45 - 46 145.046 902 2 0 -1.01343 0.450684 -145.85 - 46 124.087 894 1 1 -1.23072 0.787155 -174.45 - 46 145.474 903 1 0 -1.24594 0.802459 -175.85 - 46 126.733 892 0 1 -1.58793 1.12962 -204.45 - 46 100.444 905 0 0 -1.60156 1.14445 -205.85 - 46 119.094 899 5 0 -0.149737 -0.0500291 -55.9587 - 46 114.5 1062 6 1 32.4926 -165.382 -24.85 - 46 10.1242 893 1 1 -1.30713 0.29653 -174.45 - 46 51.6954 900 3 1 0.05 0.12279 -114.467 - 46 133.414 901 3 1 0.337323 -0.05 -114.619 - 46 42.4527 884 3 0 0.173968 -3.10858 -115.85 - 46 19.7923 883 3 0 0.158955 -3.25 -115.867 - 46 185.824 906 3 1 1.26982 -5.94335 -114.85 - 46 67.0537 907 3 1 1.45 -6.09427 -114.793 - 46 130.049 908 3 1 1.65 -6.09053 -114.758 - 46 522.942 909 3 1 1.85 -6.42844 -114.738 - 46 16.3739 910 3 1 2.05 -6.90889 -114.71 - 46 733.127 898 4 1 -0.362043 0.370809 -84.45 - 46 113.169 901 4 0 -0.237931 0.287615 -85.85 - 46 109.163 912 3 1 2.61309 -2.20782 -114.45 - 46 111.059 888 3 0 2.74872 -2.3316 -115.85 - 46 120.011 927 2 1 5.48164 -4.55767 -144.45 - 46 141.803 877 2 0 5.57789 -4.62358 -145.85 - 46 94.9766 939 1 1 7.88228 -6.59145 -174.45 - 46 125.589 865 1 0 7.86383 -6.88336 -175.85 - 46 140.729 937 0 1 7.4818 -13.0875 -204.45 - 46 111.157 833 0 0 7.59426 -13.2507 -205.85 - 46 338.572 897 4 1 -0.470044 -0.421567 -84.45 - 46 210.702 898 4 0 -0.499609 -0.376802 -85.85 - 46 219.05 894 3 1 -1.17144 0.812247 -114.45 - 46 153.717 903 3 0 -1.18871 0.816542 -115.85 - 46 216.878 893 2 1 -1.42272 0.832123 -144.45 - 46 108.928 903 2 0 -1.37741 0.72732 -145.85 - 46 181.184 903 1 1 0.818402 0.251063 -174.45 - 46 14.5589 902 1 1 0.65 0.204304 -174.806 - 46 1.82701 900 1 0 0.0882697 0.0509866 -175.85 - 46 30.3713 899 1 0 -0.0924212 -0.05 -176.168 - 46 231.237 904 0 1 1.01683 -6.13103 -204.45 - 46 371.284 903 0 1 0.8499 -6.43447 -204.703 - 46 35.0302 902 0 1 0.65 -7.03601 -204.778 - 46 55.8673 865 0 0 0.600549 -7.00916 -205.85 - 46 182.206 905 0 1 1.05001 -6.69825 -204.841 - 46 19.306 900 5 1 0.05 0.128285 -54.7759 - 46 89.8666 904 5 0 0.180691 0.852679 -55.85 - 46 57.3339 905 5 0 0.204792 1.05 -56.0919 - 46 117.055 896 4 1 -0.654461 23.7669 -84.45 - 46 98.4674 1022 4 0 -0.979985 24.491 -85.8502 - 46 67.6266 1023 4 0 -1.03836 24.6501 -86.1561 - 46 311.555 847 3 1 -10.6472 38.1405 -114.45 - 46 66.9135 848 3 1 -10.4499 38.4348 -114.704 - 46 25.3332 1098 3 0 -9.36723 39.7796 -115.85 - 46 72.0679 1099 3 0 -9.31649 39.85 -115.9 - 46 92.6545 1100 3 0 -9.11755 40.05 -116.021 - 46 17.2603 1101 3 0 -8.87958 40.25 -116.2 - 46 112.64 1442 3 0 44.6908 108.647 -116.25 - 46 75.4134 1443 3 0 44.7605 108.75 -116.198 - 46 78.2173 1444 3 0 44.909 108.95 -116.131 - 46 70.0695 1445 3 0 45.0386 109.15 -116.06 - 46 71.8262 1446 3 0 45.2023 109.35 -115.993 - 46 208.708 1447 3 0 45.4008 109.55 -115.918 - 46 123.15 1448 3 0 45.6036 109.75 -115.912 - 46 71.9641 1449 3 0 45.8794 109.95 -115.916 - 46 77.5581 1450 3 0 46.0005 110.15 -116.056 - 46 148.136 846 3 1 -10.65 38.5322 -114.63 - 46 6.90548 885 2 0 37.0487 -2.90555 -146.25 - 46 14.3495 897 2 0 23.6878 -0.546842 -146.25 - 46 68.9625 906 4 0 0.370166 1.31962 -85.85 - 46 91.0024 907 4 0 0.499908 1.45 -86.0106 - 46 224.22 1163 4 0 111.356 52.751 -86.25 - 46 90.5196 1162 4 0 112.006 52.65 -85.9728 - 46 71.2155 1161 4 0 112.206 52.45 -85.9056 - 46 46.7386 1160 4 0 112.295 52.25 -86.0966 - 46 45.0774 913 3 1 2.65 -12.0136 -114.687 - 46 120.415 875 3 1 -4.88341 -1.65596 -114.45 - 46 99.0501 895 3 0 -5.02454 -1.0085 -115.85 - 46 5.99775 896 3 0 -5.05142 -0.85 -116.236 - 46 39.7932 856 2 1 -8.80495 10.0136 -144.45 - 46 77.7038 855 2 1 -8.85 10.044 -144.567 - 46 126.632 951 2 0 -9.40118 10.2928 -145.85 - 46 37.3301 798 1 1 -20.3693 15.2643 -174.45 - 46 81.2481 797 1 1 -20.45 15.3158 -174.547 - 46 28.3808 796 1 1 -20.65 15.4485 -174.779 - 46 87.1178 980 1 0 -21.4474 16.1051 -175.85 - 46 200.305 981 1 0 -21.6274 16.25 -176.06 - 46 67.5329 615 0 1 -56.8877 37.3298 -204.45 - 46 74.8908 614 0 1 -57.05 37.3023 -204.598 - 46 13.6007 613 0 1 -57.25 37.27 -204.814 - 46 151.845 1084 0 0 -58.1786 37.0265 -205.85 - 46 263.402 645 4 1 -50.9555 -12.7384 -84.45 - 46 108.822 1071 1 1 34.368 80.9753 -174.85 -Number of digits in this event = 36 -e- -Event: 47 -Number of tracker hits in this event = 9 - 47 140.336 900 2 1 0.186068 -0.963454 -144.45 - 47 150.991 895 2 0 0.205287 -0.980436 -145.85 - 47 204.783 902 1 1 0.608181 -1.37267 -174.45 - 47 128.446 893 1 0 0.634559 -1.3819 -175.85 - 47 123.961 905 0 1 1.18851 -1.56558 -204.45 - 47 266.264 892 0 0 1.20613 -1.56972 -205.85 - 47 262.933 898 0 0 0.787553 -0.271569 -205.85 - 47 26.3377 897 0 0 0.754889 -0.45 -206.136 - 47 52.4554 1323 1 1 84.65 -7.71414 -174.47 -Number of digits in this event = 8 -e- -Event: 48 -Number of tracker hits in this event = 23 - 48 105.132 900 5 1 0.180521 -0.05 -54.4886 - 48 125.452 899 5 0 0.18908 -0.0560123 -55.85 - 48 116.399 901 4 1 0.350059 -0.165851 -84.45 - 48 197.932 899 4 0 0.366369 -0.176534 -85.85 - 48 285.43 902 3 1 0.634439 -0.398131 -114.45 - 48 162.376 898 3 0 0.643203 -0.408095 -115.85 - 48 146.592 903 2 1 0.814455 -0.648403 -144.45 - 48 115.518 896 2 0 0.816423 -0.664816 -145.85 - 48 134.979 904 1 1 0.878367 -0.976024 -174.45 - 48 101.143 895 1 0 0.869719 -0.996731 -175.85 - 48 112.906 903 0 1 0.653578 -1.41129 -204.45 - 48 8.84634 902 0 1 0.65 -1.41514 -204.823 - 48 130.313 893 0 0 0.6396 -1.42616 -205.85 - 48 69.6239 904 2 1 0.85 -0.646901 -144.527 - 48 56.2561 905 2 1 1.0501 -0.758055 -144.714 - 48 3.03163 906 2 1 1.25011 -0.780622 -144.844 - 48 67.0384 894 2 0 2.59064 -1.14109 -145.85 - 48 140.859 893 2 0 2.76427 -1.25 -145.964 - 48 115.563 947 2 0 74.4859 9.5973 -146.25 - 48 132.689 948 2 0 74.6467 9.65 -146.136 - 48 88.751 1277 2 1 75.5601 8.93829 -144.85 - 48 10.2905 1278 2 1 75.65 8.83887 -144.831 - 48 267.646 941 2 0 76.1362 8.36895 -145.85 -Number of digits in this event = 11 -e- -Event: 49 -Number of tracker hits in this event = 14 - 49 121.073 900 5 1 0.107401 -0.133361 -54.45 - 49 106.133 899 5 0 0.111693 -0.147325 -55.85 - 49 115.015 900 4 1 0.222011 -0.467386 -84.45 - 49 140.648 897 4 0 0.234922 -0.471033 -85.85 - 49 148.559 902 3 1 0.524462 -0.547475 -114.45 - 49 134.285 897 3 0 0.54152 -0.542623 -115.85 - 49 129.043 904 2 1 0.874376 -0.484734 -144.45 - 49 98.6027 897 2 0 0.888226 -0.482358 -145.85 - 49 151.962 905 1 1 1.16116 -0.493431 -174.45 - 49 121.069 897 1 0 1.17667 -0.486357 -175.85 - 49 121.154 907 0 1 1.49687 -0.307635 -204.45 - 49 108.11 898 0 0 1.52164 -0.293992 -205.85 - 49 123.214 563 5 1 -67.3709 16.0997 -54.85 - 49 123.899 562 5 1 -67.45 16.1206 -54.6154 -Number of digits in this event = 11 -e- -Event: 50 -Number of tracker hits in this event = 14 - 50 111.771 899 3 1 -0.103586 0.124962 -114.45 - 50 149.707 900 3 0 -0.120371 0.142416 -115.85 - 50 138.793 898 2 1 -0.434292 0.508953 -144.45 - 50 147.252 902 2 0 -0.457268 0.497304 -145.85 - 50 124.366 895 1 1 -0.915968 0.384319 -174.45 - 50 66.1235 901 1 0 -0.954943 0.440827 -175.85 - 50 59.8742 902 1 0 -0.961354 0.45 -176.057 - 50 1.1521 891 0 1 -1.84937 1.72168 -204.45 - 50 122.166 890 0 1 -1.85 1.72192 -204.455 - 50 139.698 908 0 0 -2.03132 1.77048 -205.85 - 50 45.0767 900 4 1 0.05 0.0688516 -84.4758 - 50 8.3898 937 0 1 7.51317 -30.598 -204.45 - 50 198.696 994 2 1 18.9115 62.553 -144.85 - 50 122.409 931 1 1 6.31481 -38.971 -174.85 + 40 220.692 900 5 1 0.102383 0.0975764 -54.45 + 40 139.892 900 5 0 0.10946 0.0993024 -55.85 + 40 113.954 900 4 1 0.222661 0.105706 -84.45 + 40 129.626 900 4 0 0.228438 0.118429 -85.85 + 40 129.122 901 3 1 0.353542 0.375418 -114.45 + 40 106.653 901 3 0 0.345699 0.397219 -115.85 + 40 141.414 900 2 1 0.140976 0.843525 -144.45 + 40 111.446 904 2 0 0.121325 0.873766 -145.85 + 40 139.897 898 1 1 -0.280853 1.46922 -174.45 + 40 92.7062 907 1 0 -0.286933 1.46912 -175.85 + 40 191.195 899 0 1 -0.19659 1.59685 -204.45 + 40 119.442 908 0 0 -0.246557 1.65072 -205.85 + 40 44.3975 725 5 0 -8.44846 -34.9329 -56.2499 + 40 232.704 724 5 0 -8.45998 -35.05 -56.181 + 40 83.3083 1304 5 0 49.4993 81.0002 -56.25 + 40 154.302 901 5 0 0.725592 0.296563 -55.85 + 40 47.8207 233 7 1 -133.477 121.948 5.15 Number of digits in this event = 10 e- +Event: 41 +Number of tracker hits in this event = 13 + 41 153.437 900 4 1 0.0760167 0.363427 -84.45 + 41 108.152 901 4 0 0.0644186 0.37252 -85.85 + 41 272.558 899 3 1 -0.124621 0.6383 -114.45 + 41 139.629 903 3 0 -0.16429 0.651721 -115.85 + 41 145.282 895 2 1 -0.995374 0.878676 -144.45 + 41 184.646 904 2 0 -1.02188 0.882007 -145.85 + 41 154.452 892 1 1 -1.5161 0.926365 -174.45 + 41 134.747 904 1 0 -1.56152 0.936814 -175.85 + 41 120.424 887 0 1 -2.50297 1.08152 -204.45 + 41 99.8929 905 0 0 -2.55629 1.08243 -205.85 + 41 220.344 896 0 1 -0.741315 1.32464 -204.45 + 41 18.0777 895 0 1 -0.850017 1.16812 -204.818 + 41 39.3607 904 0 0 -1.36653 0.871663 -205.85 +Number of digits in this event = 11 +e- +Event: 42 +Number of tracker hits in this event = 66 + 42 481.412 898 4 1 -0.258489 -0.10406 -84.45 + 42 239.853 899 4 0 -0.258291 -0.099879 -85.85 + 42 110.245 900 3 0 -0.311694 0.133251 -115.85 + 42 267.928 895 2 1 -1.02985 3.50323 -144.45 + 42 105.698 917 2 0 -1.02446 3.53515 -145.85 + 42 126.798 898 1 1 -0.398264 4.46248 -174.45 + 42 208.943 922 1 0 -0.419601 4.49387 -175.85 + 42 29.3185 894 0 1 -1.23802 5.43611 -204.45 + 42 81.8517 893 0 1 -1.25 5.41964 -204.575 + 42 4.60451 926 0 0 -1.41189 5.25213 -205.85 + 42 127.536 925 0 0 -1.41399 5.25 -205.866 + 42 11.7195 878 5 1 -4.41571 -3.46482 -54.45 + 42 100.825 877 5 1 -4.45 -3.49458 -54.4837 + 42 51.2873 876 5 1 -4.65 -3.62213 -54.6962 + 42 21.609 879 5 0 -5.75281 -4.22158 -55.85 + 42 123.309 878 5 0 -5.81036 -4.25 -55.9099 + 42 4.75318 768 4 1 -26.4432 -11.3928 -84.45 + 42 310.676 767 4 1 -26.45 -11.4054 -84.46 + 42 346.351 766 4 1 -26.65 -11.7105 -84.7709 + 42 78.5664 837 4 0 -27.3927 -12.4962 -85.85 + 42 75.8173 836 4 0 -27.5049 -12.65 -86.0664 + 42 95.4949 762 4 0 -41.1225 -27.5445 -86.25 + 42 100.205 694 4 1 -41.0892 -27.5677 -84.85 + 42 53.8511 902 3 0 -0.0539695 0.644407 -115.85 + 42 92.7971 903 3 0 -0.0577349 0.65 -116.051 + 42 120.978 904 2 0 -0.877487 1.03629 -145.85 + 42 221.91 897 1 1 -0.608766 2.15899 -174.45 + 42 115.222 910 1 0 -0.473364 2.08611 -175.85 + 42 126.864 912 0 1 2.53369 0.687558 -204.45 + 42 539.135 902 0 0 2.65835 0.576466 -205.85 + 42 131.602 899 4 1 -0.249928 -0.264936 -84.5087 + 42 111.961 899 5 1 -0.187319 -1.68191 -54.45 + 42 125.476 891 5 0 -0.0995304 -1.80931 -55.85 + 42 113.657 908 4 1 1.69312 -3.81867 -84.45 + 42 55.2883 881 4 0 1.82035 -3.66444 -85.8504 + 42 58.5701 882 4 0 1.83349 -3.65 -85.9882 + 42 72.5442 924 3 1 5.0172 -0.442485 -114.45 + 42 48.5294 925 3 1 5.05 -0.418716 -114.695 + 42 342.812 898 3 0 5.18774 -0.315136 -115.85 + 42 56.0228 945 2 1 9.21613 1.82351 -144.45 + 42 47.4663 946 2 1 9.25 1.8028 -144.693 + 42 139.245 908 2 0 9.43275 1.74011 -145.85 + 42 127.592 970 1 1 14.1146 -0.05 -174.565 + 42 75.9167 898 1 0 14.327 -0.443086 -175.85 + 42 137.179 897 1 0 14.3308 -0.45 -175.873 + 42 122.728 998 0 1 19.7489 -7.95561 -204.45 + 42 124.408 858 0 0 19.9439 -8.3565 -205.85 + 42 23.7741 857 0 0 19.994 -8.45 -206.175 + 42 107.526 898 4 0 -0.2634 -0.263372 -85.85 + 42 218.069 899 3 1 -0.158517 -0.272123 -114.45 + 42 184.639 897 2 0 -0.05 -0.59106 -145.955 + 42 55.6553 899 1 0 -0.592717 -0.25 -176.06 + 42 166.84 897 0 1 -0.558989 0.907811 -204.45 + 42 124.558 904 0 0 -0.572113 0.929337 -205.85 + 42 0.247023 903 0 0 -1.23018 0.650292 -205.85 + 42 236.497 899 3 0 -0.145338 -0.25 -116.034 + 42 18.8865 733 3 0 41.5862 -33.405 -116.25 + 42 11.0687 732 3 0 41.6417 -33.4501 -116.238 + 42 194.503 231 3 0 0.563432 -133.932 -116.25 + 42 287.333 230 3 0 0.533119 -133.95 -116.239 + 42 120.929 1027 3 0 41.8828 25.5309 -116.25 + 42 145.525 1028 3 0 42.1836 25.65 -116.174 + 42 26.9314 1720 4 1 164.328 114.346 -84.45 + 42 161.551 1721 4 1 164.35 114.312 -84.4841 + 42 316.175 1301 1 1 80.3855 82.1302 -174.45 + 42 9.59474 782 5 0 -106.659 -23.5134 -55.85 +Number of digits in this event = 34 +e- +Event: 43 +Number of tracker hits in this event = 8 + 43 103.557 901 3 1 0.258471 -1.00869 -114.45 + 43 117.327 895 3 0 0.269191 -1.03814 -115.85 + 43 162.674 901 2 1 0.427584 -1.66904 -144.45 + 43 116.035 891 2 0 0.442974 -1.69119 -145.85 + 43 126.635 903 1 1 0.75336 -2.1361 -174.45 + 43 141.12 889 1 0 0.766863 -2.16293 -175.85 + 43 122.408 904 0 1 1.0274 -2.75129 -204.45 + 43 138.309 886 0 0 1.03753 -2.77508 -205.85 +Number of digits in this event = 7 +e- +Event: 44 +Number of tracker hits in this event = 45 + 44 595.993 900 4 1 0.224461 0.350075 -84.45 + 44 253.411 901 4 0 0.239051 0.357066 -85.85 + 44 131.317 902 3 1 0.527151 0.483143 -114.45 + 44 97.956 902 3 0 0.554348 0.489134 -115.85 + 44 138.858 905 2 1 1.13383 0.577507 -144.45 + 44 140.643 902 2 0 1.1626 0.569619 -145.85 + 44 126.823 908 1 1 1.72618 0.363616 -174.45 + 44 182.154 901 1 0 1.72153 0.345226 -175.85 + 44 126.848 909 0 1 1.92809 -0.139644 -204.45 + 44 109.595 899 0 0 1.94307 -0.174104 -205.85 + 44 205.112 899 4 1 -0.05 0.354367 -84.5391 + 44 77.1882 825 6 0 -12.7473 -14.9333 -26.2499 + 44 80.6428 824 6 0 -12.8357 -15.05 -26.0387 + 44 84.8754 834 6 1 -13.1226 -15.6164 -24.85 + 44 111.396 833 6 1 -13.25 -15.755 -24.5976 + 44 2.82001 832 6 1 -13.45 -16.0109 -24.4539 + 44 119.91 902 1 0 1.30142 0.609251 -175.85 + 44 28.2738 901 4 1 0.25 0.312416 -84.753 + 44 166.809 900 4 0 0.420334 0.15399 -85.85 + 44 162.389 923 3 1 4.6726 -3.86689 -114.45 + 44 41.9168 878 3 0 4.88682 -4.38449 -115.85 + 44 68.9542 877 3 0 4.91157 -4.45 -116.023 + 44 97.4165 952 2 1 10.5987 -16.5999 -144.45 + 44 75.4081 951 2 1 10.45 -16.729 -144.654 + 44 74.6541 813 2 0 9.63439 -17.3618 -145.85 + 44 109.289 812 2 0 9.53953 -17.45 -146.04 + 44 143.472 866 3 0 4.98066 -6.67946 -115.85 + 44 22.16 926 3 1 5.3596 -7.18514 -114.85 + 44 1.05718 900 3 0 10.3389 0.0718612 -115.85 + 44 93.8588 992 3 1 18.5148 13.3842 -114.85 + 44 28.9189 1099 1 1 39.85 -75.2614 -174.587 + 44 23.231 1100 1 1 40.05 -75.6579 -174.789 + 44 105.372 899 3 1 -0.186981 1.34385 -114.45 + 44 140.357 906 3 0 -0.322124 1.36922 -115.85 + 44 134.02 881 2 1 -3.68775 2.01072 -144.45 + 44 121.88 909 2 0 -3.77967 1.92975 -145.85 + 44 143.633 870 1 1 -5.90719 0.148354 -174.45 + 44 461.626 899 1 0 -6.18487 -0.071838 -175.85 + 44 120.121 842 0 1 -11.595 -3.69919 -204.45 + 44 133.932 880 0 0 -11.6642 -3.92508 -205.85 + 44 90.5532 898 1 0 -5.81574 -0.250073 -176.059 + 44 246.81 853 0 0 -0.582878 -9.4175 -206.25 + 44 81.1249 844 0 0 2.97361 -11.05 -206.174 + 44 55.9574 631 8 0 -83.5261 -53.8191 33.75 + 44 39.7146 630 8 0 -83.577 -53.85 33.8948 +Number of digits in this event = 22 +e- +Event: 45 +Number of tracker hits in this event = 17 + 45 117.214 900 5 1 0.0645568 -0.11302 -54.45 + 45 139.891 899 5 0 0.0673726 -0.11784 -55.85 + 45 161.861 900 4 1 0.111399 -0.230054 -84.45 + 45 128.402 899 4 0 0.112997 -0.243725 -85.85 + 45 102.994 900 3 1 0.157659 -0.518472 -114.45 + 45 130.753 897 3 0 0.152826 -0.528148 -115.85 + 45 348.026 899 0 1 -0.0788284 -1.27391 -204.45 + 45 355.019 893 0 0 -0.10431 -1.2966 -205.85 + 45 167.576 900 5 0 0.130617 0.0500379 -56.1872 + 45 1.20097 818 0 1 -16.2544 2.96944 -204.45 + 45 12.4204 918 0 0 -17.7592 3.65 -206.055 + 45 110.74 1036 0 1 27.3883 37.7512 -204.45 + 45 75.1809 1035 0 1 27.2499 37.9515 -204.656 + 45 34.4056 1034 0 1 27.05 38.0007 -204.755 + 45 268.244 1091 0 0 25.393 38.3216 -205.85 + 45 164.47 1170 0 0 20.017 54.116 -206.25 + 45 261.233 1171 0 0 20.1505 54.25 -205.917 +Number of digits in this event = 11 +e- +Event: 46 +Number of tracker hits in this event = 12 + 46 136.331 898 4 1 -0.376801 0.123652 -84.45 + 46 159.48 900 4 0 -0.388955 0.127199 -85.85 + 46 125.19 897 3 1 -0.58872 0.207477 -114.45 + 46 220.384 900 3 0 -0.608648 0.208811 -115.85 + 46 105.819 895 2 1 -1.00936 0.254666 -144.45 + 46 129.205 901 2 0 -1.02981 0.255469 -145.85 + 46 174.743 892 1 1 -1.46024 0.256847 -174.45 + 46 110.875 901 1 0 -1.47453 0.254623 -175.85 + 46 217.439 891 0 1 -1.76203 0.213607 -204.45 + 46 103.043 900 0 0 -1.78611 0.230157 -205.85 + 46 270.02 845 1 0 -21.6139 -10.9722 -176.25 + 46 2.9084 846 1 0 -21.5497 -10.85 -176.178 +Number of digits in this event = 9 +e- +Event: 47 +Number of tracker hits in this event = 13 + 47 104.765 898 5 1 -0.322827 -0.0695403 -54.45 + 47 192.604 899 5 0 -0.339993 -0.0798979 -55.85 + 47 101.537 896 4 1 -0.697269 -0.309951 -84.45 + 47 312.481 898 4 0 -0.720909 -0.313979 -85.85 + 47 90.9899 894 3 1 -1.19744 -0.381757 -114.45 + 47 167.351 898 3 0 -1.21642 -0.397499 -115.85 + 47 105.563 892 2 1 -1.6356 -0.684242 -144.45 + 47 117.968 896 2 0 -1.66501 -0.693699 -145.85 + 47 93.7259 888 1 1 -2.27169 -0.934969 -174.45 + 47 96.6671 895 1 0 -2.30627 -0.945766 -175.85 + 47 210.026 885 0 1 -2.99533 -1.19597 -204.45 + 47 288.944 894 0 0 -3.01623 -1.20638 -205.85 + 47 12.6671 884 0 1 -3.05015 -1.19082 -204.819 +Number of digits in this event = 7 +e- +Event: 48 +Number of tracker hits in this event = 14 + 48 112.313 900 5 1 0.233117 -0.0805682 -54.45 + 48 120.563 899 5 0 0.257112 -0.0765608 -55.85 + 48 100.804 906 3 1 1.38143 0.139772 -114.45 + 48 116.731 900 3 0 1.39981 0.145441 -115.85 + 48 136.098 908 2 1 1.7844 0.191274 -144.45 + 48 125.592 900 2 0 1.79197 0.193213 -145.85 + 48 170.668 909 1 1 1.93943 0.242645 -174.45 + 48 141.319 901 1 0 1.94574 0.253505 -175.85 + 48 117.986 910 0 1 2.10847 0.526099 -204.45 + 48 109.498 902 0 0 2.12767 0.511035 -205.85 + 48 196.269 903 0 0 2.97667 0.755082 -205.916 + 48 13.4748 781 1 0 81.6164 -23.65 -176.077 + 48 121.237 782 1 0 81.8014 -23.65 -176.184 + 48 115.887 708 3 0 -60.2744 -38.3289 -116.25 +Number of digits in this event = 8 +e- +Event: 49 +Number of tracker hits in this event = 21 + 49 105.747 899 5 1 -0.164453 -0.176937 -54.45 + 49 115.139 899 5 0 -0.164529 -0.182578 -55.85 + 49 145.492 899 4 1 -0.166985 -0.301846 -84.45 + 49 133.742 898 4 0 -0.17122 -0.298439 -85.85 + 49 304.568 898 3 1 -0.28599 -0.245759 -114.45 + 49 99.9467 899 3 0 -0.294534 -0.244197 -115.85 + 49 91.7193 898 2 1 -0.448491 -0.209562 -144.45 + 49 46.4921 897 2 1 -0.45 -0.210066 -144.704 + 49 183.13 899 2 0 -0.457821 -0.211899 -145.85 + 49 115.934 896 1 1 -0.660429 -0.326135 -174.45 + 49 135.45 898 1 0 -0.672673 -0.335361 -175.85 + 49 121.493 895 0 1 -0.92431 -0.542582 -204.45 + 49 114.939 897 0 0 -0.965315 -0.551959 -205.85 + 49 21.2926 836 0 0 -3.47078 -12.8058 -206.25 + 49 46.7687 835 0 0 -3.49011 -12.85 -206.186 + 49 208.432 834 0 0 -3.50625 -13.05 -206.023 + 49 146.345 833 0 0 -3.47516 -13.2502 -205.957 + 49 121.742 832 0 0 -3.48436 -13.45 -205.925 + 49 165.264 831 0 0 -3.50535 -13.65 -205.886 + 49 162.6 830 0 0 -3.45796 -13.8501 -205.851 + 49 178.051 829 0 0 -3.36507 -14.05 -205.908 +Number of digits in this event = 13 +e- +Event: 50 +Number of tracker hits in this event = 65 + 50 166.603 898 5 1 -0.314023 -0.382937 -54.45 + 50 97.2189 898 5 0 -0.317488 -0.439741 -55.85 + 50 34.9738 897 5 0 -0.318573 -0.45 -56.1129 + 50 111.741 898 4 1 -0.434239 -1.59025 -84.45 + 50 86.722 892 4 0 -0.430316 -1.63604 -85.85 + 50 116.409 898 3 1 -0.33503 -2.59938 -114.45 + 50 116.391 886 3 0 -0.322154 -2.66813 -115.85 + 50 104.743 900 1 1 0.0810783 -5.77122 -174.45 + 50 54.5434 871 1 0 0.0813849 -5.8391 -175.85 + 50 48.0944 870 1 0 0.0817858 -5.85 -176.075 + 50 150.443 901 0 1 0.369739 -7.07047 -204.45 + 50 127.702 864 0 0 0.392255 -7.12494 -205.85 + 50 2.84914 879 2 0 -0.05 -4.12897 -145.974 + 50 533.499 896 3 1 -0.743107 -1.0584 -114.45 + 50 216.654 894 3 0 -1.01104 -1.17519 -115.85 + 50 34.8915 871 2 1 -5.81177 -4.68597 -144.45 + 50 162.152 870 2 1 -5.85 -4.67573 -144.541 + 50 212.905 878 2 0 -6.46575 -4.44953 -145.85 + 50 140.65 797 1 1 -20.529 1.88509 -174.45 + 50 133.625 908 1 0 -20.2503 1.72033 -175.85 + 50 50.6944 849 0 1 -10.1009 -1.04426 -204.45 + 50 89.7324 850 0 1 -10.05 -1.03133 -204.568 + 50 116.99 895 0 0 -9.45508 -0.910361 -205.85 + 50 155.762 885 0 0 -23.3931 -2.90954 -206.25 + 50 156.191 884 0 0 -23.8003 -3.05 -206.086 + 50 138.92 883 0 0 -24.3339 -3.25 -206.04 + 50 259.153 882 0 0 -24.7932 -3.45009 -206.14 + 50 56.466 881 0 0 -25.1618 -3.65 -206.216 + 50 110.028 894 2 1 -1.17172 -1.82836 -144.45 + 50 155.517 890 2 0 -1.18642 -1.86512 -145.85 + 50 95.13 893 1 1 -1.32239 -2.72684 -174.45 + 50 140.663 886 1 0 -1.35453 -2.75913 -175.85 + 50 156.977 889 0 1 -2.11731 -3.4884 -204.45 + 50 172.096 926 2 0 36.785 5.27387 -146.25 + 50 107.761 897 3 1 -0.65 -0.994281 -114.754 + 50 123.578 895 3 0 -0.444246 -0.9819 -115.85 + 50 145.735 934 2 1 6.8843 -0.393542 -144.45 + 50 42.8655 899 2 0 7.12405 -0.0842957 -145.85 + 50 206.697 812 2 0 60.307 -17.5392 -146.25 + 50 128.134 811 2 0 60.5701 -17.65 -146.071 + 50 215.246 1211 2 1 62.2592 -18.563 -144.85 + 50 113.011 1212 2 1 62.4501 -18.6804 -144.685 + 50 290.342 1213 2 1 62.6501 -18.663 -144.477 + 50 98.2202 1214 2 1 62.8501 -18.9312 -144.667 + 50 279.321 806 2 0 63.2335 -18.7209 -145.85 + 50 46.1984 945 2 0 6.85305 9.19995 -146.25 + 50 55.3793 946 2 0 6.82534 9.25 -146.071 + 50 386.379 936 2 1 7.29783 9.8322 -144.85 + 50 189.792 937 2 1 7.45 10.1188 -144.501 + 50 165.134 938 2 1 7.65015 10.2177 -144.501 + 50 129.662 939 2 1 7.85 10.1668 -144.534 + 50 61.4336 940 2 1 8.05014 10.1964 -144.508 + 50 59.7615 941 2 1 8.25 10.2902 -144.546 + 50 99.4513 942 2 1 8.45 10.3982 -144.54 + 50 69.8079 943 2 1 8.65 10.6253 -144.628 + 50 136.073 953 2 0 9.43755 10.6909 -145.85 + 50 81.0384 952 2 0 9.57741 10.65 -146.022 + 50 44.4331 951 2 0 9.62823 10.45 -145.932 + 50 30.2197 892 3 0 -1.57233 -1.58489 -115.85 + 50 109.926 891 3 0 -1.6326 -1.65 -115.885 + 50 24.583 890 3 0 -1.57795 -1.85 -115.876 + 50 130.309 891 3 1 -1.67897 -2.54103 -114.85 + 50 141.208 888 3 0 -0.765958 -2.33708 -115.85 + 50 169.033 779 6 1 -24.0925 177.74 -24.85 + 50 28.3535 780 6 1 -24.05 178.04 -24.5304 +Number of digits in this event = 33 +e- Event: 51 -Number of tracker hits in this event = 27 - 51 109.969 896 5 1 -0.744126 -0.343861 -54.45 - 51 114.364 898 5 0 -0.759586 -0.358648 -55.85 - 51 144.764 894 4 1 -1.05156 -0.559745 -84.45 - 51 101.011 897 4 0 -1.05135 -0.560644 -85.85 - 51 358.987 894 3 1 -1.05108 -0.698465 -114.45 - 51 126.907 896 3 0 -1.06919 -0.67135 -115.85 - 51 103.627 893 2 1 -1.42909 -0.0811726 -144.45 - 51 105.44 888 1 1 -2.29263 1.07867 -174.45 - 51 167.941 905 1 0 -2.32057 1.15195 -175.85 - 51 107.378 885 0 1 -2.90599 2.7083 -204.45 - 51 111.335 913 0 0 -2.91965 2.761 -205.85 - 51 131.451 895 3 0 -1.32917 -0.952435 -115.85 - 51 15.3158 894 3 0 -1.36636 -1.05 -116.199 - 51 107.381 868 2 1 -6.41455 -11.487 -144.45 - 51 37.4596 869 2 1 -6.25 -11.2996 -144.754 - 51 91.4034 842 2 0 -6.08885 -11.55 -145.85 - 51 50.3018 841 2 0 -6.00124 -11.65 -146.122 - 51 114.092 714 2 0 3.27315 -37.0564 -146.25 - 51 6.978 713 2 0 3.36439 -37.25 -145.873 - 51 9.21935 919 2 1 4.03765 -37.9717 -144.85 - 51 148.676 920 2 1 4.05 -37.9853 -144.832 - 51 241.413 899 0 1 -0.236331 0.375735 -204.45 - 51 243.453 901 0 0 -0.189024 0.383896 -205.85 - 51 124.078 899 3 0 -1.32851 -0.223052 -115.85 - 51 41.3399 412 3 1 -97.6124 21.0971 -114.85 - 51 189.595 413 3 1 -97.55 21.1471 -114.779 - 51 11.3948 510 1 1 -77.9218 -0.341068 -174.45 -Number of digits in this event = 12 +Number of tracker hits in this event = 41 + 51 111.983 898 5 1 -0.256772 -0.133173 -54.45 + 51 137.165 899 5 0 -0.272488 -0.132865 -55.85 + 51 106.654 897 4 1 -0.620254 -0.105027 -84.45 + 51 127.342 899 4 0 -0.629248 -0.0992322 -85.85 + 51 131.258 896 2 1 -0.848527 0.108419 -144.45 + 51 355.199 900 2 0 -0.852012 0.107171 -145.85 + 51 101.754 895 1 1 -0.886258 0.0789233 -174.45 + 51 192.592 900 1 0 -0.822758 0.0755899 -175.85 + 51 116.905 900 0 1 0.228993 0.246557 -204.45 + 51 98.8109 901 0 0 0.276914 0.284139 -205.85 + 51 390.642 899 3 0 -0.445063 -0.214061 -115.85 + 51 69.732 898 3 0 -0.448231 -0.250027 -115.986 + 51 240.104 895 2 1 -0.915343 0.146676 -144.45 + 51 57.4583 899 2 0 -0.796874 -0.05 -146.048 + 51 16.0642 904 1 1 1.04366 -3.05994 -174.45 + 51 110.378 905 1 1 1.05004 -3.06369 -174.507 + 51 125.655 884 1 0 1.18955 -3.16727 -175.85 + 51 227.887 919 0 1 4.02749 -5.02193 -204.45 + 51 192.119 875 0 0 3.98072 -4.89368 -205.85 + 51 126.228 871 1 1 -5.77021 -0.331789 -174.45 + 51 98.8972 886 0 1 -2.82528 5.39729 -204.45 + 51 112.832 887 0 1 -2.65 5.66199 -204.713 + 51 91.1116 934 0 0 -1.72472 6.86883 -205.85 + 51 213.962 935 0 0 -1.56121 7.05 -206.036 + 51 274.448 1021 0 0 -4.66494 24.449 -206.25 + 51 10.381 856 0 1 -8.79543 24.4684 -204.85 + 51 54.4103 855 0 1 -8.85025 24.4691 -204.834 + 51 68.1274 854 0 1 -9.05 24.4473 -204.796 + 51 54.6989 853 0 1 -9.25 24.4224 -204.76 + 51 71.0242 852 0 1 -9.45 24.391 -204.707 + 51 63.7801 851 0 1 -9.65 24.3472 -204.664 + 51 58.0912 850 0 1 -9.85 24.3102 -204.598 + 51 74.9539 849 0 1 -10.05 24.3371 -204.518 + 51 8.93493 848 0 1 -10.25 24.3867 -204.457 + 51 24.0975 1096 1 0 13.4991 39.4429 -176.25 + 51 175.887 1097 1 0 13.5152 39.45 -176.234 + 51 37.3572 982 1 1 16.5157 38.6925 -174.85 + 51 76.416 983 1 1 16.6502 38.6507 -174.802 + 51 52.1184 984 1 1 16.85 38.5993 -174.769 + 51 62.204 985 1 1 17.0501 38.5654 -174.703 + 51 36.7406 986 1 1 17.25 38.4941 -174.571 +Number of digits in this event = 16 e- Event: 52 -Number of tracker hits in this event = 23 - 52 140.817 900 4 1 0.11888 -0.151317 -84.45 - 52 113.693 899 4 0 0.116586 -0.16291 -85.85 - 52 121.308 900 3 1 0.0817124 -0.393884 -114.45 - 52 203.944 898 3 0 0.0863392 -0.40216 -115.85 - 52 94.2556 900 2 1 0.194381 -0.577117 -144.45 - 52 145.22 897 2 0 0.196274 -0.582356 -145.85 - 52 152.198 900 1 1 0.233623 -0.685049 -174.45 - 52 115.261 896 1 0 0.224126 -0.690334 -175.85 - 52 63.2949 971 1 0 25.3523 14.392 -176.25 - 52 234.293 972 1 0 25.4471 14.45 -176.164 - 52 27.8037 1029 1 1 26.0066 14.2586 -174.85 - 52 103.556 1030 1 1 26.05 14.2407 -174.74 - 52 13.9528 1031 1 1 26.2501 14.3162 -174.487 - 52 13.6208 1161 1 0 -14.6255 52.4391 -176.25 - 52 38.2719 1162 1 0 -14.6453 52.45 -176.236 - 52 82.9391 1071 4 1 34.3554 -12.8129 -84.85 - 52 269.085 285 0 0 139.266 -122.95 -206.045 - 52 60.2962 284 0 0 139.565 -123.15 -205.941 - 52 191.34 286 0 0 139.978 -122.95 -205.914 - 52 89.0065 1599 0 1 139.986 -122.471 -204.85 - 52 219.008 1600 0 1 140.15 -122.375 -204.643 - 52 148.719 1601 0 1 140.35 -122.032 -204.582 - 52 99.3698 1602 0 1 140.55 -121.899 -204.642 -Number of digits in this event = 12 +Number of tracker hits in this event = 21 + 52 157.519 900 2 1 0.193583 1.43422 -144.45 + 52 142.021 907 2 0 0.177198 1.50589 -145.85 + 52 224.746 899 1 1 -0.0862415 2.89952 -174.45 + 52 151.684 914 1 0 -0.0943451 2.9389 -175.85 + 52 129.743 900 0 1 0.05 3.28895 -204.484 + 52 26.7734 901 0 1 0.25 3.06036 -204.784 + 52 118.373 910 0 0 0.337591 2.22981 -205.85 + 52 120.402 909 0 0 0.348378 2.04991 -206.094 + 52 88.5808 901 2 1 0.25 1.42727 -144.606 + 52 31.4332 905 2 0 1.51259 1.07462 -145.85 + 52 128.265 904 2 0 1.56501 1.04996 -145.903 + 52 101.307 916 1 0 0.291683 3.2828 -175.85 + 52 127.923 917 1 0 0.305259 3.45008 -175.959 + 52 197.423 918 1 0 0.369688 3.65 -175.948 + 52 16.2821 905 1 1 1.23944 3.00895 -174.85 + 52 65.1012 906 1 1 1.25003 3.00592 -174.846 + 52 75.2774 1134 1 0 130.14 46.97 -176.25 + 52 97.7658 1135 1 0 130.047 47.05 -176.032 + 52 171.098 1544 1 1 129.129 47.974 -174.85 + 52 110.035 1543 1 1 128.95 48.188 -174.707 + 52 121.155 936 1 0 33.0459 7.29541 -176.25 +Number of digits in this event = 13 e- Event: 53 Number of tracker hits in this event = 12 - 53 116.136 899 4 1 -0.0638515 0.294467 -84.45 - 53 137.527 901 4 0 -0.0716186 0.303922 -85.85 - 53 126.05 899 3 1 -0.229789 0.501271 -114.45 - 53 118.447 902 3 0 -0.226415 0.522506 -115.85 - 53 117.02 899 2 1 -0.153373 0.981289 -144.45 - 53 151.705 904 2 0 -0.157587 1.00306 -145.85 - 53 115.093 898 1 1 -0.273166 1.47101 -174.45 - 53 119.94 907 1 0 -0.27661 1.49191 -175.85 - 53 135.631 898 0 1 -0.349402 1.91149 -204.45 - 53 97.3964 909 0 0 -0.360309 1.93271 -205.85 - 53 124.778 900 6 0 0.124952 0.05 -26.0952 - 53 126.612 901 6 0 0.210824 0.250034 -26.1486 -Number of digits in this event = 7 -e- -Event: 54 -Number of tracker hits in this event = 20 - 54 288.264 900 4 1 0.129812 0.128194 -84.45 - 54 136.551 900 4 0 0.133573 0.125764 -85.85 - 54 96.7434 900 3 1 0.15585 0.0847843 -114.45 - 54 117.992 900 3 0 0.151554 0.0794464 -115.85 - 54 123.407 899 0 1 -0.125527 -0.772362 -204.45 - 54 108.367 896 0 0 -0.13235 -0.794942 -205.85 - 54 120.408 889 3 0 3.56837 -2.13076 -116.25 - 54 370.289 888 3 0 3.57685 -2.25008 -116.007 - 54 76.7959 899 4 0 0.189424 -0.05 -85.9525 - 54 6.03235 905 3 1 1.24721 -3.0525 -114.45 - 54 110.672 906 3 1 1.25 -3.05373 -114.475 - 54 92.2112 884 3 0 1.4277 -3.13054 -115.85 - 54 136.377 926 2 1 5.34598 -4.95533 -144.45 - 54 100.456 875 2 0 5.38828 -4.88117 -145.85 - 54 82.004 933 1 1 6.82495 -3.58222 -174.45 - 54 80.4777 934 1 1 6.85 -3.56624 -174.555 - 54 104.482 883 1 0 7.15816 -3.34882 -175.85 - 54 114.718 973 0 1 14.6862 1.74556 -204.45 - 54 125.329 910 0 0 15.2272 2.13509 -205.85 - 54 67.4178 1159 2 1 51.9792 18.9902 -144.85 + 53 103.812 901 4 1 0.288795 0.0798384 -84.45 + 53 102.648 900 4 0 0.30459 0.0792093 -85.85 + 53 129.869 902 3 1 0.61896 0.0826146 -114.45 + 53 128.758 900 3 0 0.625789 0.0853651 -115.85 + 53 108.924 903 2 1 0.786502 0.169155 -144.45 + 53 162.04 900 2 0 0.79501 0.170145 -145.85 + 53 105.014 904 1 1 0.947917 0.189544 -174.45 + 53 179.188 900 1 0 0.960713 0.188577 -175.85 + 53 132.763 905 0 1 1.22827 0.174261 -204.45 + 53 162.852 900 0 0 1.24348 0.172408 -205.85 + 53 144.776 899 0 1 -0.175402 -0.835542 -204.85 + 53 28.6095 1051 0 1 30.3843 -36.4432 -204.85 Number of digits in this event = 8 e- +Event: 54 +Number of tracker hits in this event = 17 + 54 104.801 904 3 1 0.97418 0.121547 -114.45 + 54 130.47 900 3 0 1.00175 0.129437 -115.85 + 54 122.966 907 2 1 1.57414 0.315093 -144.45 + 54 107.621 901 2 0 1.60507 0.321513 -145.85 + 54 101.767 911 1 1 2.26576 0.442409 -174.45 + 54 111.216 902 1 0 2.3039 0.450268 -175.85 + 54 164.032 915 0 1 3.08836 0.574792 -204.45 + 54 139.305 902 0 0 3.12574 0.581743 -205.85 + 54 138.565 667 1 1 -46.45 38.4351 -174.716 + 54 2.08849 1652 1 0 12.7816 150.735 -176.25 + 54 139.558 1653 1 0 12.7749 150.75 -176.242 + 54 11.0236 1654 1 0 12.7304 150.95 -175.886 + 54 5.21844 960 1 1 12.06 150.937 -174.85 + 54 192.728 959 1 1 12.05 150.937 -174.832 + 54 275.811 958 1 1 11.85 150.94 -174.617 + 54 31.9409 1647 1 0 11.8224 149.568 -175.85 + 54 191.337 1646 1 0 11.8199 149.55 -175.892 +Number of digits in this event = 10 +e- Event: 55 -Number of tracker hits in this event = 10 - 55 118.835 900 5 1 0.0503979 0.19771 -54.45 - 55 136.087 900 5 0 0.0564334 0.208425 -55.85 - 55 104.588 900 4 1 0.161737 0.427981 -84.45 - 55 154.056 901 4 0 0.159383 0.440269 -85.85 - 55 121.617 900 3 1 0.11337 0.665755 -114.45 - 55 96.3563 903 3 0 0.111338 0.677137 -115.85 - 55 110.596 899 1 1 -0.0751615 1.28697 -174.45 - 55 140.939 906 1 0 -0.0749043 1.30822 -175.85 - 55 117.42 899 0 1 -0.0585954 1.76549 -204.45 - 55 119.619 908 0 0 -0.0620677 1.79562 -205.85 -Number of digits in this event = 6 +Number of tracker hits in this event = 6 + 55 110.44 899 1 1 -0.141923 0.153635 -174.45 + 55 129.614 900 1 0 -0.128499 0.162067 -175.85 + 55 138.488 900 0 1 0.162713 0.298163 -204.45 + 55 151.916 901 0 0 0.103665 0.258406 -205.85 + 55 28.8999 900 0 0 0.0906909 0.25 -206.154 + 55 4.02381 899 4 1 -0.214815 -0.0520204 -84.45 +Number of digits in this event = 4 e- Event: 56 -Number of tracker hits in this event = 44 - 56 114.883 899 5 0 0.05 -0.069525 -55.9924 - 56 222.217 902 4 1 0.496783 0.313175 -84.45 - 56 97.6144 901 4 0 0.512489 0.326808 -85.85 - 56 97.7616 903 3 1 0.831506 0.602182 -114.45 - 56 142.704 902 3 0 0.861445 0.614345 -115.85 - 56 107.18 907 2 1 1.55083 0.862569 -144.45 - 56 128.614 904 2 0 1.57695 0.868231 -145.85 - 56 123.654 910 1 1 2.12811 0.991542 -174.45 - 56 132.608 904 1 0 2.15373 0.993057 -175.85 - 56 109.568 913 0 1 2.66804 1.01845 -204.45 - 56 119.676 904 0 0 2.68963 1.02717 -205.85 - 56 40.0473 901 4 1 0.45 0.114662 -84.6834 - 56 230.807 897 4 0 0.324535 -0.469157 -85.85 - 56 58.3139 896 4 0 0.265637 -0.65 -86.2496 - 56 52.9545 867 3 1 -6.52544 -9.3801 -114.45 - 56 70.9331 866 3 1 -6.65021 -9.35021 -114.565 - 56 104.424 865 3 1 -6.85 -9.30432 -114.728 - 56 48.1061 854 3 0 -8.07229 -9.07556 -115.85 - 56 111.107 855 3 0 -8.19905 -9.05 -115.985 - 56 193.458 805 3 0 -106.591 -18.9082 -116.25 - 56 287.854 804 3 0 -107.037 -19.05 -116.103 - 56 47.6458 803 3 0 -107.331 -19.25 -115.927 - 56 44.6739 339 3 1 -112.241 -24.0773 -114.85 - 56 72.9125 338 3 1 -112.35 -24.177 -114.835 - 56 114.639 337 3 1 -112.55 -24.3606 -114.754 - 56 63.1199 336 3 1 -112.75 -24.6434 -114.583 - 56 17.2429 705 4 0 -84.6271 -39.0367 -86.2499 - 56 92.3235 704 4 0 -84.6098 -39.0501 -86.2316 - 56 75.0783 703 4 0 -84.4245 -39.2501 -86.0793 - 56 62.647 702 4 0 -84.474 -39.45 -85.9957 - 56 248.696 478 4 1 -84.3826 -40.8166 -84.8499 - 56 225.074 479 4 1 -84.25 -40.8823 -84.451 - 56 157.708 948 4 0 43.8483 9.83041 -86.25 - 56 38.6716 949 4 0 43.8811 9.85 -86.2246 - 56 184.787 1122 4 1 44.4637 10.5239 -84.85 - 56 136.817 1123 4 1 44.6501 10.5731 -84.488 - 56 15.1228 940 4 0 44.2258 8.07859 -85.85 - 56 13.8489 939 4 0 44.216 8.05 -85.8598 - 56 123.29 1117 4 1 43.4601 5.39868 -84.85 - 56 164.73 931 4 0 45.0326 6.30242 -85.85 - 56 6.12448 935 4 0 43.2369 7.08778 -85.85 - 56 12.2462 1128 4 1 45.7478 6.55701 -84.85 - 56 13.1557 932 4 0 44.7486 6.45044 -85.85 - 56 65.442 992 1 1 18.6095 51.4226 -174.85 -Number of digits in this event = 17 +Number of tracker hits in this event = 8 + 56 118.194 900 5 1 0.12431 -0.0663613 -54.45 + 56 165.349 899 5 0 0.132635 -0.0640772 -55.85 + 56 146.629 902 3 1 0.624737 0.0832473 -114.45 + 56 117.714 900 3 0 0.644365 0.0842456 -115.85 + 56 124.513 904 2 1 0.975343 0.136198 -144.45 + 56 131.626 900 2 0 1.00137 0.133443 -145.85 + 56 126.997 907 1 1 1.56667 0.0528855 -174.45 + 56 3.79471 1033 2 0 89.3969 26.65 -146.201 +Number of digits in this event = 6 e- Event: 57 -Number of tracker hits in this event = 9 - 57 231.99 900 5 1 0.181933 -0.103987 -54.45 - 57 117.391 899 5 0 0.179087 -0.103008 -55.85 - 57 98.2545 900 4 1 0.143748 -0.0749193 -84.45 - 57 132.48 899 4 0 0.141259 -0.0706725 -85.85 - 57 121.265 900 1 1 0.059354 -0.340088 -174.45 - 57 121.044 898 1 0 0.0614912 -0.35281 -175.85 - 57 440.605 900 0 1 0.128528 -0.569645 -204.45 - 57 114.182 897 0 0 0.1209 -0.582467 -205.85 - 57 117.283 896 0 0 0.127345 -0.727753 -205.85 -Number of digits in this event = 7 -e- -Event: 58 -Number of tracker hits in this event = 24 - 58 110.559 899 4 1 -0.0839139 -0.183351 -84.45 - 58 124.699 899 4 0 -0.0954304 -0.183576 -85.85 - 58 115.757 898 3 1 -0.341163 -0.201506 -114.45 - 58 114.529 899 3 0 -0.344941 -0.195834 -115.85 - 58 197.57 898 2 1 -0.417139 -0.0927713 -144.45 - 58 127.796 899 2 0 -0.421741 -0.0806709 -145.85 - 58 114.668 897 1 1 -0.499781 0.182476 -174.45 - 58 118.501 900 1 0 -0.502045 0.190053 -175.85 - 58 98.9336 897 0 1 -0.55541 0.349657 -204.45 - 58 117.446 901 0 0 -0.557892 0.354955 -205.85 - 58 236.55 899 3 1 -0.198012 -0.218298 -114.45 - 58 276.852 898 3 0 0.242211 -0.305634 -115.85 - 58 212.924 971 2 1 14.418 -6.7985 -144.45 - 58 47.7423 862 2 0 13.5958 -7.57376 -145.85 - 58 212.343 861 2 0 13.4889 -7.65 -145.994 - 58 15.6255 860 2 0 13.303 -7.85006 -146.197 - 58 200.724 896 2 1 -0.697932 -1.02656 -144.45 - 58 121.595 894 2 0 -0.750755 -1.12672 -145.85 - 58 210.848 890 1 1 -1.93771 -3.00079 -174.45 - 58 135.672 885 1 0 -2.12355 -2.93078 -175.85 - 58 119.967 876 0 1 -4.82164 -2.59917 -204.45 - 58 114.204 887 0 0 -4.86843 -2.59575 -205.85 - 58 49.4215 124 2 0 -121.001 -155.15 -145.882 - 58 219.605 123 2 0 -121.139 -155.35 -145.892 +Number of tracker hits in this event = 19 + 57 193.839 899 4 1 -0.0768187 -0.108901 -84.45 + 57 133.062 899 4 0 -0.0857877 -0.116194 -85.85 + 57 352.395 898 3 1 -0.265202 -0.294388 -114.45 + 57 130.101 898 3 0 -0.272713 -0.310363 -115.85 + 57 182.584 898 2 1 -0.352639 -0.602437 -144.45 + 57 109.648 897 2 0 -0.357309 -0.612936 -145.85 + 57 96.0686 898 1 1 -0.44928 -0.824492 -174.45 + 57 46.8908 897 1 1 -0.45 -0.824982 -174.638 + 57 128.533 896 1 0 -0.456286 -0.830889 -175.85 + 57 120.54 897 0 1 -0.636413 -1.09262 -204.45 + 57 114.852 894 0 0 -0.630204 -1.11202 -205.85 + 57 186.546 899 3 1 -0.25 -0.250016 -114.667 + 57 85.7199 1260 0 0 22.566 72.05 -205.997 + 57 197.1 1481 2 0 -42.4866 116.457 -146.25 + 57 11.0875 976 11 0 109.01 15.2619 123.75 + 57 80.6431 975 11 0 109.024 15.25 123.769 + 57 38.0275 974 11 0 109.057 15.05 123.831 + 57 81.7508 797 11 0 129.428 -20.5202 123.75 + 57 228.589 796 11 0 129.482 -20.65 123.875 Number of digits in this event = 13 e- +Event: 58 +Number of tracker hits in this event = 7 + 58 212.688 898 5 1 -0.270391 -0.0574328 -54.45 + 58 135.944 899 5 0 -0.285302 -0.0605053 -55.85 + 58 99.5704 897 4 1 -0.602114 -0.156839 -84.45 + 58 113.776 899 4 0 -0.619315 -0.149462 -85.85 + 58 135.962 888 0 1 -2.41383 -0.194403 -204.45 + 58 160.89 899 0 0 -2.43069 -0.205557 -205.85 + 58 217.537 897 5 1 -0.450041 -0.25184 -54.6572 +Number of digits in this event = 6 +e- Event: 59 -Number of tracker hits in this event = 96 - 59 114.922 899 4 1 -0.236575 -0.0737456 -84.45 - 59 135.928 899 4 0 -0.246664 -0.0771735 -85.85 - 59 112.501 897 3 1 -0.47627 -0.126262 -114.45 - 59 149.275 899 3 0 -0.499436 -0.121357 -115.85 - 59 171.3 899 2 0 -0.908987 -0.05 -146.005 - 59 55.3068 784 0 0 -1.40357 -23.1062 -206.25 - 59 331.088 783 0 0 -1.40285 -23.25 -206.113 - 59 20.4475 782 0 0 -1.38941 -23.45 -205.913 - 59 304.277 893 0 1 -1.25914 -24.5292 -204.85 - 59 343.364 894 0 1 -1.25 -24.6048 -204.775 - 59 21.8528 641 1 0 -1.60802 -51.8204 -176.25 - 59 85.6724 640 1 0 -1.6082 -51.85 -176.219 - 59 60.8699 639 1 0 -1.61429 -52.05 -176.013 - 59 391.16 891 1 1 -1.77513 -53.2748 -174.85 - 59 3.52687 525 2 0 -14.6899 -75.0407 -146.25 - 59 113.572 524 2 0 -14.6956 -75.0502 -146.238 - 59 59.1019 523 2 0 -14.8094 -75.25 -145.967 - 59 44.2599 824 2 1 -15.1995 -76.1003 -144.85 - 59 88.0265 823 2 1 -15.2501 -76.2103 -144.706 - 59 42.5131 383 3 0 -12.1354 -103.455 -116.25 - 59 85.3184 382 3 0 -12.1237 -103.55 -116.146 - 59 37.9567 381 3 0 -12.0855 -103.75 -115.912 - 59 197.56 840 3 1 -11.9389 -104.741 -114.85 - 59 5.95801 437 4 0 -11.1925 -92.5582 -86.25 - 59 116.162 438 4 0 -11.1923 -92.55 -86.2335 - 59 120.987 844 4 1 -11.2324 -91.9411 -84.85 - 59 187.352 847 4 1 -10.5343 -91.7297 -84.45 - 59 167.99 848 4 1 -10.45 -91.3274 -84.728 - 59 37.6996 466 4 0 -8.78332 -86.7664 -85.85 - 59 59.2062 467 4 0 -8.73243 -86.65 -85.8731 - 59 2.1502 468 4 0 -8.69319 -86.45 -85.8518 - 59 307.44 855 4 1 -8.99186 -80.9818 -84.85 - 59 91.3771 854 4 1 -9.05 -80.3387 -84.5773 - 59 115.955 853 4 1 -9.25008 -80.1665 -84.5257 - 59 165.887 842 1 1 -11.4526 -74.5348 -174.85 - 59 44.0115 796 0 1 -20.7821 -20.201 -204.85 - 59 10.3547 856 4 1 -8.85 -80.6995 -84.7476 - 59 23.7281 464 2 0 -2.18914 -87.1837 -146.25 - 59 78.8009 463 2 0 -2.19004 -87.25 -146.192 - 59 78.9888 462 2 0 -2.18348 -87.45 -146.029 - 59 96.6814 461 2 0 -2.18118 -87.65 -145.895 - 59 89.7342 890 2 1 -1.92 -88.9248 -144.85 - 59 148.765 891 2 1 -1.85 -89.1398 -144.691 - 59 26.601 892 2 1 -1.54321 -89.7975 -144.45 - 59 65.5095 893 2 1 -1.45 -89.8049 -144.476 - 59 60.8137 894 2 1 -1.24984 -89.8262 -144.563 - 59 47.1275 895 2 1 -1.05 -89.8732 -144.656 - 59 78.8177 896 2 1 -0.849811 -89.9157 -144.719 - 59 23.9506 897 2 1 -0.649827 -89.9455 -144.808 - 59 189.513 449 2 0 0.988391 -90.15 -145.967 - 59 111.581 448 2 0 1.58123 -90.35 -146.122 - 59 45.4159 892 0 1 -1.52527 -24.313 -204.85 - 59 57.1175 774 0 0 -0.841171 -25.1058 -206.25 - 59 79.8985 773 0 0 -0.858874 -25.2502 -206.132 - 59 52.853 772 0 0 -0.877763 -25.45 -205.997 - 59 33.8106 771 0 0 -0.875618 -25.65 -205.919 - 59 110.139 896 0 1 -0.834058 -28.4974 -204.85 - 59 320.299 895 0 1 -0.85 -28.9065 -204.757 - 59 25.665 704 1 0 -9.08585 -39.2204 -176.25 - 59 158.21 703 1 0 -9.10368 -39.2501 -176.16 - 59 10.428 851 1 1 -9.83188 -39.8396 -174.85 - 59 104.156 850 1 1 -9.85 -39.8531 -174.82 - 59 87.3538 460 2 0 -0.483681 -87.85 -146.084 - 59 28.1363 459 2 0 -0.459849 -88.05 -145.909 - 59 206.478 898 2 1 -0.368631 -89.3779 -144.85 - 59 15.1584 327 3 0 26.4314 -114.711 -116.25 - 59 170.164 326 3 0 26.4743 -114.75 -116.206 - 59 29.3955 1032 3 1 26.6411 -115.117 -114.85 - 59 150.15 1033 3 1 26.65 -115.139 -114.758 - 59 69.7156 394 4 0 34.5929 -101.249 -86.25 - 59 79.4637 395 4 0 34.6432 -101.15 -86.0944 - 59 0.990697 396 4 0 34.6604 -100.95 -85.8581 - 59 181.88 1072 4 1 34.6477 -100.114 -84.85 - 59 94.4388 1071 4 1 34.3975 -99.5713 -84.45 - 59 59.9271 1070 4 1 34.25 -99.4367 -84.6641 - 59 68.6587 409 4 0 33.6128 -98.3063 -85.8502 - 59 102.785 410 4 0 33.5324 -98.15 -85.9851 - 59 21.8186 411 4 0 33.3981 -97.95 -86.1871 - 59 122.547 514 4 0 22.3411 -77.1334 -86.25 - 59 194.47 1009 4 1 22.0016 -77.909 -84.85 - 59 69.1968 1008 4 1 21.85 -78.1434 -84.6379 - 59 30.9854 1007 4 1 21.6499 -78.1715 -84.546 - 59 14.5636 1138 3 1 47.8355 46.1702 -114.45 - 59 109.901 393 5 0 20.3381 -101.477 -56.25 - 59 65.0622 999 5 1 19.9814 -101.202 -54.8498 - 59 83.3018 998 5 1 19.85 -101.14 -54.5705 - 59 90.3913 997 5 1 19.65 -101.236 -54.5003 - 59 121.247 996 5 1 19.4499 -101.432 -54.6262 - 59 189.226 995 5 1 19.2499 -101.621 -54.6908 - 59 64.9414 994 5 1 19.05 -101.908 -54.6686 - 59 69.002 993 5 1 18.8499 -102.042 -54.694 - 59 76.7352 992 5 1 18.6499 -102.15 -54.6529 - 59 110.109 991 5 1 18.4499 -102.243 -54.5761 - 59 255.071 990 5 1 18.25 -102.492 -54.4866 - 59 57.5731 1040 3 0 -46.813 28.2429 -116.25 - 59 335.718 1041 3 0 -46.8044 28.25 -116.236 -Number of digits in this event = 28 +Number of tracker hits in this event = 18 + 59 134.337 900 5 1 0.108869 0.171627 -54.45 + 59 112.843 900 5 0 0.107182 0.183762 -55.85 + 59 123.378 900 4 1 0.0662162 0.434104 -84.45 + 59 77.1782 901 4 0 0.0710875 0.447952 -85.85 + 59 73.9064 902 4 0 0.0717634 0.45 -86.047 + 59 124.074 900 3 1 0.149366 0.764449 -114.45 + 59 162.241 903 3 0 0.138361 0.784509 -115.85 + 59 111.742 899 2 1 -0.0767547 1.20275 -144.45 + 59 133.127 905 2 0 -0.0865145 1.21817 -145.85 + 59 191.653 898 1 1 -0.251268 1.52564 -174.45 + 59 105.374 907 1 0 -0.248344 1.53845 -175.85 + 59 184.123 899 0 1 -0.145607 1.81726 -204.45 + 59 123.552 908 0 0 -0.141124 1.83245 -205.85 + 59 19.3141 1463 2 1 112.75 -148.419 -144.824 + 59 3.86207 851 3 0 -58.0011 -9.67944 -116.25 + 59 69.5279 850 3 0 -58.0049 -9.85 -115.995 + 59 19.711 869 2 0 -72.1363 -6.22221 -146.25 + 59 17.9736 1000 0 0 15.4738 20.0827 -206.25 +Number of digits in this event = 9 e- Event: 60 -Number of tracker hits in this event = 10 - 60 119.676 899 3 1 -0.148599 0.751758 -114.45 - 60 149.213 903 3 0 -0.169273 0.773609 -115.85 - 60 123.36 897 2 1 -0.585688 1.22279 -144.45 - 60 31.5427 905 2 0 -0.608287 1.24774 -145.85 - 60 90.8166 906 2 0 -0.610304 1.25 -145.977 - 60 117.279 894 1 1 -1.06008 1.75356 -174.45 - 60 107.198 908 1 0 -1.0865 1.77482 -175.85 - 60 203.996 892 0 1 -1.62353 2.21189 -204.45 - 60 98.2995 910 0 0 -1.65733 2.24389 -205.85 - 60 44.3379 911 0 0 -1.66383 2.25 -206.118 -Number of digits in this event = 4 +Number of tracker hits in this event = 8 + 60 162.314 900 4 1 0.0752332 0.0900016 -84.45 + 60 112.844 900 4 0 0.0765722 0.108749 -85.85 + 60 108.434 900 3 1 0.0962644 0.490622 -114.45 + 60 104.05 902 3 0 0.0899454 0.491786 -115.85 + 60 102.585 903 1 0 0.0544182 0.669533 -175.85 + 60 111.893 900 0 1 0.220895 0.765558 -204.45 + 60 135.78 903 0 0 0.232721 0.789129 -205.85 + 60 4.01126 1036 0 1 27.3499 -49.1667 -204.85 +Number of digits in this event = 3 e- Event: 61 Number of tracker hits in this event = 12 - 61 177.767 900 4 1 0.0889521 0.633088 -84.45 - 61 108.362 902 4 0 0.0899523 0.645707 -85.85 - 61 141.251 900 3 1 0.169152 0.901469 -114.45 - 61 124.001 904 3 0 0.180025 0.907237 -115.85 - 61 199.699 901 2 1 0.376563 1.04778 -144.45 - 61 126.004 905 2 0 0.410995 1.08594 -145.85 - 61 144.937 905 1 1 1.07027 1.83316 -174.45 - 61 99.0076 909 1 0 1.10254 1.871 -175.85 - 61 109.41 908 0 1 1.70745 2.62363 -204.45 - 61 120.657 913 0 0 1.74824 2.65687 -205.85 - 61 227.776 457 4 1 -88.4845 -29.7433 -84.85 - 61 56.0038 456 4 1 -88.65 -29.5319 -84.5166 -Number of digits in this event = 10 -e- -Event: 62 -Number of tracker hits in this event = 13 - 62 213.952 900 5 1 0.119516 0.141276 -54.45 - 62 122.114 900 5 0 0.121795 0.149462 -55.85 - 62 96.09 900 4 1 0.164551 0.302748 -84.45 - 62 93.7137 901 4 0 0.167963 0.308424 -85.85 - 62 126.411 901 3 1 0.252087 0.392377 -114.45 - 62 179.747 901 3 0 0.258949 0.395891 -115.85 - 62 261.61 901 2 1 0.38958 0.482725 -144.45 - 62 271.275 902 2 0 0.404097 0.48529 -145.85 - 62 133.375 903 1 1 0.660993 0.555384 -174.45 - 62 115.431 902 1 0 0.679688 0.55132 -175.85 - 62 119.98 905 0 1 1.0608 0.458891 -204.45 - 62 81.4407 902 0 0 1.08077 0.451391 -205.85 - 62 47.5574 901 0 0 1.08438 0.45 -206.102 -Number of digits in this event = 8 -e- -Event: 63 -Number of tracker hits in this event = 13 - 63 429.752 900 5 1 0.176318 0.107324 -54.45 - 63 119.175 900 5 0 0.176939 0.107604 -55.85 - 63 110.537 899 3 1 -0.148549 -0.189039 -114.45 - 63 97.9973 899 3 0 -0.15555 -0.199755 -115.85 - 63 131.408 898 2 1 -0.255705 -0.439344 -144.45 - 63 95.9085 897 2 0 -0.25498 -0.457072 -145.85 - 63 231.774 898 1 1 -0.260797 -0.820244 -174.45 - 63 139.609 896 1 0 -0.268695 -0.842145 -175.85 - 63 115.812 898 0 1 -0.418548 -1.32579 -204.45 - 63 130.978 893 0 0 -0.428363 -1.35794 -205.85 - 63 85.058 636 2 1 -52.65 129.159 -144.711 - 63 104.588 635 2 1 -52.85 129.511 -144.55 - 63 258.293 1006 4 0 -51.9226 21.3753 -86.25 + 61 150.373 897 4 1 -0.585727 -0.169689 -84.45 + 61 146.951 899 4 0 -0.600262 -0.180715 -85.85 + 61 111.775 895 3 1 -0.868453 -0.413096 -114.45 + 61 119.349 898 3 0 -0.883859 -0.423002 -115.85 + 61 184.732 894 2 1 -1.22289 -0.590376 -144.45 + 61 98.0332 897 2 0 -1.23222 -0.601521 -145.85 + 61 104.421 893 1 1 -1.4074 -0.844805 -174.45 + 61 114.662 895 1 0 -1.41175 -0.857676 -175.85 + 61 144.984 892 0 1 -1.52804 -1.12715 -204.45 + 61 112.881 894 0 0 -1.53454 -1.14748 -205.85 + 61 154.047 893 2 1 -1.25006 -0.421452 -144.693 + 61 202.752 892 2 1 -1.45 -0.45026 -144.57 Number of digits in this event = 7 e- +Event: 62 +Number of tracker hits in this event = 91 + 62 166.558 900 5 1 0.174029 -0.0957587 -54.45 + 62 116.109 899 5 0 0.185404 -0.0986641 -55.85 + 62 117.581 901 4 1 0.397451 -0.199056 -84.45 + 62 161.91 899 4 0 0.409827 -0.203146 -85.85 + 62 313.584 903 3 1 0.683289 -0.292406 -114.45 + 62 128.45 898 3 0 0.701846 -0.280605 -115.85 + 62 121.101 908 1 1 1.6599 0.159544 -174.45 + 62 137.366 900 1 0 1.71561 0.183617 -175.85 + 62 158.475 912 0 1 2.56033 0.431123 -204.45 + 62 154.965 902 0 0 2.60389 0.484377 -205.85 + 62 74.0745 754 12 0 127.447 -29.1725 153.75 + 62 125.975 755 12 0 127.549 -29.05 153.927 + 62 34.1116 756 12 0 127.522 -28.8499 153.808 + 62 133.1 883 12 0 112.077 -3.27319 153.75 + 62 275.363 884 12 0 111.872 -3.25 153.918 + 62 255.469 1147 1 0 -33.766 49.4724 -176.25 + 62 83.98 1146 1 0 -34.1337 49.45 -176.008 + 62 15.2622 723 1 1 -35.4133 48.448 -174.85 + 62 89.1494 722 1 1 -35.45 48.419 -174.818 + 62 63.6674 721 1 1 -35.6501 48.3658 -174.619 + 62 58.3739 902 3 1 0.65 -0.278046 -114.457 + 62 85.306 901 3 1 0.449856 -0.271044 -114.541 + 62 101.327 900 3 1 0.249861 -0.294743 -114.655 + 62 14.5077 892 3 0 -1.19395 -1.61562 -115.85 + 62 75.3828 891 3 0 -1.23192 -1.65 -115.879 + 62 49.0042 890 3 0 -1.37996 -1.85 -115.912 + 62 62.638 889 3 0 -1.46432 -2.05 -115.923 + 62 128.32 888 3 0 -1.48038 -2.25 -115.906 + 62 64.308 887 3 0 -1.48088 -2.45 -115.902 + 62 73.005 886 3 0 -1.52119 -2.65 -115.886 + 62 37.8424 885 3 0 -1.58467 -2.85009 -115.889 + 62 27.6335 858 3 1 -8.34275 -5.89823 -114.85 + 62 94.1653 857 3 1 -8.45 -5.90472 -114.806 + 62 122.816 856 3 1 -8.65 -6.00991 -114.612 + 62 176.014 855 3 1 -8.85 -5.73868 -114.575 + 62 90.1455 854 3 1 -9.05 -5.55868 -114.671 + 62 51.8028 853 3 1 -9.25 -5.45947 -114.718 + 62 241.315 869 3 0 -10.0394 -6.08451 -115.85 + 62 126.037 899 3 0 0.702202 -0.191681 -115.85 + 62 170.112 901 2 1 0.405632 2.19672 -144.45 + 62 142.151 914 2 0 0.500933 2.85375 -145.85 + 62 83.4353 872 1 1 -5.52202 13.9613 -174.45 + 62 81.6063 871 1 1 -5.65024 13.968 -174.546 + 62 76.0712 870 1 1 -5.85 13.9884 -174.684 + 62 1.64887 869 1 1 -6.05 14.0342 -174.843 + 62 97.51 971 1 0 -7.12321 14.3984 -175.85 + 62 112.995 972 1 0 -7.28142 14.45 -175.997 + 62 224.156 1015 1 0 -86.6852 23.1828 -176.25 + 62 16.555 432 1 1 -93.676 23.1815 -174.85 + 62 59.3848 431 1 1 -93.75 23.1814 -174.841 + 62 70.1161 430 1 1 -93.95 23.17 -174.808 + 62 55.6557 429 1 1 -94.15 23.1702 -174.737 + 62 51.7777 428 1 1 -94.35 23.2056 -174.65 + 62 72.2833 427 1 1 -94.55 23.2605 -174.581 + 62 48.3335 426 1 1 -94.75 23.2972 -174.522 + 62 69.2635 425 1 1 -94.95 23.3431 -174.505 + 62 55.5284 424 1 1 -95.15 23.388 -174.496 + 62 52.3675 423 1 1 -95.35 23.4013 -174.502 + 62 60.2697 422 1 1 -95.55 23.4057 -174.505 + 62 50.0863 421 1 1 -95.75 23.3963 -174.538 + 62 54.9591 420 1 1 -95.95 23.3898 -174.58 + 62 59.6197 419 1 1 -96.15 23.3925 -174.616 + 62 52.4111 418 1 1 -96.35 23.345 -174.662 + 62 114.328 417 1 1 -96.55 23.2595 -174.746 + 62 26.0747 416 1 1 -96.75 23.1985 -174.834 + 62 236.88 1007 1 0 -102.31 21.6365 -175.85 + 62 144.108 1006 1 0 -102.972 21.45 -176.089 + 62 19.2664 988 1 0 -137.462 17.8214 -176.25 + 62 123.371 989 1 0 -137.447 17.8501 -176.202 + 62 57.5372 990 1 0 -137.339 18.05 -175.942 + 62 247.469 215 1 1 -137.149 19.3362 -174.85 + 62 65.2539 214 1 1 -137.15 19.7162 -174.603 + 62 118.714 213 1 1 -137.35 19.5937 -174.757 + 62 9.19068 997 1 0 -139.229 19.6452 -175.85 + 62 215.909 998 1 0 -139.27 19.65 -175.875 + 62 79.4515 999 1 0 -139.378 19.85 -175.952 + 62 104.604 1000 1 0 -139.502 20.05 -175.945 + 62 143.528 1001 1 0 -139.592 20.25 -175.902 + 62 92.3471 205 1 1 -139.075 21.3293 -174.85 + 62 261.05 1008 1 0 -139.3 21.7401 -175.85 + 62 3.426 946 1 0 -49.248 9.25902 -176.25 + 62 65.5289 945 1 0 -49.2489 9.25 -176.237 + 62 110.422 1010 1 0 -27.8741 22.08 -176.25 + 62 455.42 1011 1 0 -27.7202 22.2501 -176.085 + 62 11.6677 617 0 1 -56.45 -67.1482 -204.739 + 62 13.6603 574 0 0 -57.9276 -65.183 -205.85 + 62 77.2056 650 0 0 -50.0637 -50.0162 -206.25 + 62 73.1929 651 0 0 -50.0679 -49.85 -206.079 + 62 42.2012 652 0 0 -49.9562 -49.65 -205.889 + 62 142.205 650 0 1 -50.0315 -48.2336 -204.85 + 62 9.48785 649 0 1 -50.05 -47.9018 -204.475 +Number of digits in this event = 31 +e- +Event: 63 +Number of tracker hits in this event = 14 + 63 106.644 899 5 1 -0.174901 -0.069246 -54.45 + 63 148.546 899 5 0 -0.189068 -0.0676429 -55.85 + 63 123.149 897 4 1 -0.453076 -0.0950877 -84.45 + 63 103.969 899 4 0 -0.473746 -0.094578 -85.85 + 63 127.124 895 3 1 -0.916325 -0.0884449 -114.45 + 63 99.1538 899 3 0 -0.943794 -0.0776459 -115.85 + 63 211.823 892 2 1 -1.48474 0.1132 -144.45 + 63 112.714 900 2 0 -1.50796 0.13113 -145.85 + 63 148.044 890 1 1 -1.92009 0.501336 -174.45 + 63 144.398 902 1 0 -1.93958 0.519206 -175.85 + 63 126.749 888 0 1 -2.30165 0.915964 -204.45 + 63 125.569 904 0 0 -2.31453 0.932943 -205.85 + 63 112.033 891 2 1 -1.67543 -0.0500372 -144.572 + 63 101.579 291 3 0 -59.6586 -121.75 -116.129 +Number of digits in this event = 9 +e- Event: 64 -Number of tracker hits in this event = 63 - 64 136.161 900 5 1 0.230641 -0.0629283 -54.45 - 64 151.352 899 5 0 0.247642 -0.0612957 -55.85 - 64 116.313 902 4 1 0.627379 -0.149551 -84.45 - 64 106.535 899 4 0 0.676038 -0.169539 -85.85 - 64 117.362 908 3 1 1.68097 -0.650341 -114.45 - 64 105.363 896 3 0 1.76871 -0.668762 -115.85 - 64 142.906 918 2 1 3.68347 -1.09767 -144.45 - 64 130.415 894 2 0 3.76772 -1.11335 -145.85 - 64 105.105 927 1 1 5.50965 -1.47838 -174.45 - 64 139.514 892 1 0 5.61522 -1.48639 -175.85 - 64 103.851 938 0 1 7.80542 -1.5166 -204.45 - 64 404.639 892 0 0 7.90195 -1.52198 -205.85 - 64 143.144 907 3 1 1.60327 -0.695115 -114.45 - 64 7.14642 893 3 0 1.1337 -1.43645 -115.85 - 64 151.657 892 3 0 1.12505 -1.45 -115.877 - 64 101.994 850 2 1 -9.9069 -15.4463 -144.45 - 64 253.722 849 2 1 -10.05 -15.1736 -144.602 - 64 23.7689 848 2 1 -10.25 -14.78 -144.819 - 64 23.1431 835 2 0 -11.4103 -12.9019 -145.85 - 64 63.3277 836 2 0 -11.4436 -12.85 -145.879 - 64 67.4868 837 2 0 -11.5598 -12.65 -145.998 - 64 56.5786 838 2 0 -11.718 -12.45 -146.137 - 64 202.391 1005 2 0 -53.8291 21.1936 -146.25 - 64 71.2026 628 2 1 -54.3602 20.9334 -144.85 - 64 47.4822 627 2 1 -54.45 20.8916 -144.618 - 64 100.628 1006 3 0 -59.9981 21.3001 -116.25 - 64 101.759 599 3 1 -60.17 21.3995 -114.85 - 64 129.631 598 3 1 -60.25 21.396 -114.451 - 64 32.4556 999 3 0 -60.6649 19.9357 -115.85 - 64 245.125 998 3 0 -60.695 19.8499 -115.963 - 64 61.2725 997 3 0 -60.7924 19.65 -116.154 - 64 76.869 996 3 0 -60.8778 19.4498 -116.175 - 64 52.6192 995 3 0 -60.9182 19.25 -116.154 - 64 57.9027 994 3 0 -60.9619 19.05 -116.162 - 64 87.3135 993 3 0 -60.9961 18.85 -116.174 - 64 87.9048 245 3 0 136.378 -131.005 -116.25 - 64 230.722 244 3 0 136.471 -131.15 -116.21 - 64 81.1404 243 3 0 136.615 -131.35 -116.177 - 64 51.2275 242 3 0 136.804 -131.55 -116.167 - 64 80.6789 241 3 0 136.941 -131.75 -116.166 - 64 56.4616 240 3 0 137.1 -131.95 -116.087 - 64 70.0452 239 3 0 137.233 -132.15 -115.969 - 64 5.84002 238 3 0 137.318 -132.35 -115.861 - 64 235.104 1587 3 1 137.557 -134.559 -114.85 - 64 4.0174 1586 3 1 137.55 -135.489 -114.846 - 64 69.8896 204 3 0 135.58 -139.205 -115.85 - 64 57.2314 203 3 0 135.497 -139.35 -115.887 - 64 71.0824 202 3 0 135.384 -139.55 -115.969 - 64 63.4174 201 3 0 135.373 -139.75 -116.097 - 64 38.6415 200 3 0 135.356 -139.95 -116.206 - 64 59.483 926 1 1 5.45 -2.05042 -174.722 - 64 263.894 906 2 1 1.43621 -0.0629329 -144.45 - 64 195.721 899 2 0 1.4552 -0.0794866 -145.85 - 64 137.835 908 1 1 1.69811 -0.427326 -174.45 - 64 169.113 897 1 0 1.68859 -0.477169 -175.85 - 64 96.0861 907 0 1 1.50158 -1.49873 -204.45 - 64 15.757 891 0 0 1.57128 -1.65005 -206.225 - 64 225.624 830 0 0 10.0247 -13.9754 -206.25 - 64 132.235 909 1 1 1.95146 -0.0584738 -174.45 - 64 125.893 899 1 0 1.98218 -0.0533578 -175.85 - 64 104.635 1339 3 0 39.4133 87.85 -116.115 - 64 28.3594 1099 3 1 40.0239 87.5315 -114.85 - 64 107.323 1100 3 1 40.05 87.5234 -114.817 -Number of digits in this event = 23 +Number of tracker hits in this event = 19 + 64 114.665 900 4 1 0.164672 -0.36116 -84.45 + 64 229.329 898 4 0 0.171389 -0.373144 -85.85 + 64 134.187 901 3 1 0.321689 -0.65415 -114.45 + 64 117.689 896 3 0 0.328092 -0.670055 -115.85 + 64 155.312 902 2 1 0.462859 -1.02047 -144.45 + 64 69.5576 895 2 0 0.462194 -1.04591 -145.85 + 64 40.7768 894 2 0 0.461801 -1.05 -146.086 + 64 113.098 901 1 1 0.419222 -1.53131 -174.45 + 64 115.929 892 1 0 0.414601 -1.54476 -175.85 + 64 178.84 901 0 1 0.325431 -1.78015 -204.45 + 64 194.913 891 0 0 0.322655 -1.79521 -205.85 + 64 10.4516 894 0 1 -1.11638 -2.26891 -204.85 + 64 69.4767 889 0 0 -0.183988 -2.20632 -205.85 + 64 220.612 901 2 1 0.44995 -1.10954 -144.736 + 64 124.9 900 2 1 0.25 -1.24963 -144.733 + 64 232.906 101 2 0 84.2742 -159.75 -146.018 + 64 2.86732 1308 2 1 81.6851 -160.845 -144.85 + 64 1.75858 95 2 0 79.3933 -161.024 -145.85 + 64 20.5548 1288 2 1 77.6751 -162.944 -144.85 +Number of digits in this event = 9 e- Event: 65 -Number of tracker hits in this event = 10 - 65 124.337 899 5 1 -0.0660077 -0.0659775 -54.45 - 65 112.166 899 5 0 -0.0634207 -0.0721591 -55.85 - 65 30.609 900 3 1 0.0503926 -0.505362 -114.45 - 65 114.969 899 2 1 -0.0584884 -1.03311 -144.45 - 65 106.128 894 2 0 -0.0544271 -1.05972 -145.85 - 65 106.252 892 1 0 0.05 -1.62217 -175.98 - 65 153.783 900 0 1 0.171991 -2.06396 -204.45 - 65 105.906 889 0 0 0.174753 -2.09088 -205.85 - 65 180.256 1408 3 1 101.854 11.6035 -114.45 - 65 221.916 1409 3 1 101.95 11.4694 -114.645 -Number of digits in this event = 5 +Number of tracker hits in this event = 35 + 65 130.73 900 5 1 0.119965 -0.0869302 -54.45 + 65 137.986 899 5 0 0.123777 -0.0894269 -55.85 + 65 145.079 900 4 1 0.204805 -0.170552 -84.45 + 65 112.96 899 4 0 0.189613 -0.197553 -85.85 + 65 272.828 899 3 1 -0.065795 -0.730769 -114.45 + 65 100.02 896 3 0 -0.085364 -0.756023 -115.85 + 65 135.546 897 2 1 -0.462782 -1.28834 -144.45 + 65 132.648 893 2 0 -0.47214 -1.31184 -145.85 + 65 133.029 896 1 1 -0.70491 -1.81517 -174.45 + 65 27.8008 891 1 0 -0.708714 -1.8475 -175.85 + 65 84.4595 890 1 0 -0.709072 -1.85 -175.958 + 65 155.001 895 0 1 -0.857382 -2.54153 -204.45 + 65 148.392 887 0 0 -0.872617 -2.58504 -205.85 + 65 129.287 895 3 0 -0.135231 -0.964385 -115.85 + 65 179.048 891 2 1 -1.83987 -2.87931 -144.45 + 65 119.518 885 2 0 -1.26583 -2.96157 -145.85 + 65 62.5527 946 1 1 9.35839 -4.3851 -174.45 + 65 85.1082 947 1 1 9.45 -4.38607 -174.627 + 65 164.215 878 1 0 10.0955 -4.37437 -175.85 + 65 116.22 1018 0 1 23.7452 -0.871354 -204.45 + 65 150.436 897 0 0 23.9077 -0.546528 -205.85 + 65 5.60273 898 0 0 23.9793 -0.45 -206.227 + 65 60.0872 798 1 0 30.1133 -20.2848 -176.25 + 65 98.5573 799 1 0 30.1284 -20.25 -176.095 + 65 86.6076 1053 1 1 30.81 -20.3547 -174.85 + 65 341.088 1054 1 1 30.85 -20.37 -174.791 + 65 299.556 1055 1 1 31.0501 -20.6167 -174.533 + 65 95.3242 1052 1 1 30.6499 -22.0284 -174.491 + 65 280.049 1051 1 1 30.45 -21.9024 -174.67 + 65 0.846824 1050 1 1 30.25 -21.7938 -174.702 + 65 30.2605 1341 1 1 88.25 89.6903 -174.729 + 65 390.48 900 3 1 0.116943 -0.692632 -114.45 + 65 250.182 901 3 1 0.250092 -0.783813 -114.556 + 65 32.3779 853 2 0 13.6904 -9.25 -145.98 + 65 101.731 711 1 1 -37.65 3.20589 -174.578 +Number of digits in this event = 20 e- Event: 66 -Number of tracker hits in this event = 16 - 66 122.197 899 5 0 -0.0536867 -0.0880291 -55.85 - 66 124.766 899 4 1 -0.203356 -0.0645184 -84.45 - 66 114.569 899 4 0 -0.202356 -0.0578447 -85.85 - 66 84.69 899 3 1 -0.131668 0.0958846 -114.45 - 66 156.042 900 3 0 -0.125152 0.108765 -115.85 - 66 107.971 900 1 1 0.209771 0.935768 -174.45 - 66 277.763 904 1 0 0.222848 0.952072 -175.85 - 66 99.5777 902 0 1 0.604062 1.33853 -204.45 - 66 130.097 906 0 0 0.617882 1.37113 -205.85 - 66 95.3792 898 4 1 -0.25 -0.0768386 -84.5128 - 66 29.1842 897 4 1 -0.45 -0.0755606 -84.7932 - 66 226.833 900 4 0 -2.20045 0.132884 -85.8501 - 66 92.7198 901 4 0 -2.98494 0.25 -85.9897 - 66 56.0689 902 4 0 -3.22977 0.45 -86.1578 - 66 110.832 899 5 1 -0.05 -0.185534 -54.7304 - 66 210.154 900 5 1 0.05 -0.114624 -54.5848 -Number of digits in this event = 9 +Number of tracker hits in this event = 28 + 66 287.947 900 5 1 0.12999 -0.255881 -54.45 + 66 108.561 898 5 0 0.141167 -0.278873 -55.85 + 66 110.74 901 4 1 0.349701 -0.754131 -84.45 + 66 136.306 896 4 0 0.35773 -0.76499 -85.85 + 66 295.445 902 3 1 0.525726 -0.972585 -114.45 + 66 229.843 895 3 0 0.536085 -0.981933 -115.85 + 66 173.23 903 2 1 0.814697 -1.174 -144.45 + 66 151.686 894 2 0 0.830592 -1.18289 -145.85 + 66 114.309 905 1 1 1.11348 -1.35589 -174.45 + 66 117.473 893 1 0 1.12592 -1.3622 -175.85 + 66 233.749 906 0 1 1.3864 -1.47284 -204.45 + 66 134.721 892 0 0 1.39471 -1.46859 -205.85 + 66 25.8845 904 2 1 0.85 -1.15039 -144.763 + 66 162.714 895 2 0 1.13654 -0.994012 -145.85 + 66 92.9531 952 1 1 10.5712 -2.52886 -174.45 + 66 38.3089 953 1 1 10.65 -2.20183 -174.735 + 66 47.5966 895 1 0 10.8081 -1.00141 -175.85 + 66 125.169 896 1 0 10.8444 -0.85 -175.992 + 66 23.703 897 1 0 10.8907 -0.65 -176.179 + 66 78.8856 944 0 1 8.99194 24.4797 -204.45 + 66 57.0137 943 0 1 8.85 24.5622 -204.527 + 66 58.4305 942 0 1 8.65 24.6426 -204.624 + 66 73.4017 941 0 1 8.45 24.6982 -204.724 + 66 10.1999 940 0 1 8.25 24.728 -204.842 + 66 134.492 1024 0 0 6.77502 25.0061 -205.85 + 66 141.245 899 5 0 0.394519 -0.13303 -55.85 + 66 277.557 1056 5 0 -25.8487 31.3866 -56.2499 + 66 57.5876 1057 5 0 -25.8675 31.4501 -56.1486 +Number of digits in this event = 14 e- Event: 67 Number of tracker hits in this event = 16 - 67 106.495 898 3 1 -0.29701 -0.0970888 -114.45 - 67 129.199 899 3 0 -0.306754 -0.113048 -115.85 - 67 145.344 897 2 1 -0.492446 -0.442238 -144.45 - 67 2.44178 898 2 0 -0.500119 -0.449936 -145.85 - 67 122.57 897 2 0 -0.500185 -0.45 -145.862 - 67 187.658 896 1 1 -0.691852 -0.621779 -174.45 - 67 124.401 897 1 0 -0.708613 -0.628756 -175.85 - 67 119.732 895 0 1 -1.02562 -0.803959 -204.45 - 67 116.804 896 0 0 -1.04197 -0.814291 -205.85 - 67 205.917 900 4 0 -0.268573 0.05 -86.0193 - 67 7.33443 654 4 0 98.934 -49.2416 -86.25 - 67 117.867 653 4 0 98.9402 -49.25 -86.2439 - 67 19.2112 1134 1 0 -70.1941 46.85 -176.05 - 67 318.23 548 1 1 -70.2573 47.675 -174.85 - 67 8.65812 549 1 1 -70.25 47.7052 -174.823 - 67 200.776 1106 7 1 41.3451 -124.253 5.15 -Number of digits in this event = 11 -e- -Event: 68 -Number of tracker hits in this event = 10 - 68 115.212 895 2 1 -1.02106 0.603499 -144.45 - 68 166.882 903 2 0 -1.01974 0.67048 -145.85 - 68 18.5128 894 1 1 -1.18543 2.09543 -174.45 - 68 76.7919 893 1 1 -1.25 2.10505 -174.479 - 68 60.6873 892 1 1 -1.45 2.13723 -174.593 - 68 65.8087 891 1 1 -1.65 2.15439 -174.67 - 68 61.1231 890 1 1 -1.85 2.19305 -174.744 - 68 50.4648 889 1 1 -2.05 2.21503 -174.802 - 68 11.3801 888 1 1 -2.25 2.21919 -174.844 - 68 522.706 910 1 0 -8.84219 2.17359 -175.85 -Number of digits in this event = 3 -e- -Event: 69 -Number of tracker hits in this event = 16 - 69 269.895 899 5 1 -0.0547309 -0.26439 -54.45 - 69 145.927 898 5 0 -0.0583312 -0.286189 -55.85 - 69 202.033 899 4 1 -0.154784 -0.760862 -84.45 - 69 108.84 896 4 0 -0.162201 -0.794024 -85.85 - 69 129.509 898 3 1 -0.29507 -1.46424 -114.45 - 69 105.521 892 3 0 -0.298993 -1.50765 -115.85 - 69 130.869 898 2 1 -0.374397 -2.39384 -144.45 - 69 92.644 888 2 0 -0.364805 -2.43385 -145.85 - 69 118.104 899 1 1 -0.213482 -3.22738 -174.45 - 69 193.851 883 1 0 -0.201729 -3.26767 -175.85 - 69 142.921 900 0 1 0.0907335 -4.13474 -204.45 - 69 121.295 879 0 0 0.113921 -4.17059 -205.85 - 69 21.425 900 4 1 0.05 -0.955733 -84.7914 - 69 86.6643 890 4 0 0.716845 -1.8589 -85.85 - 69 69.3189 889 4 0 0.802582 -2.05 -86.0565 - 69 223.053 841 4 0 55.8617 -11.65 -86.1551 + 67 72.4464 900 3 1 0.247183 0.367005 -114.45 + 67 46.6272 901 3 1 0.25 0.366799 -114.706 + 67 123.381 901 3 0 0.26361 0.366082 -115.85 + 67 112.753 902 2 1 0.607059 0.350708 -144.45 + 67 166.64 901 2 0 0.619542 0.354488 -145.85 + 67 131.065 904 1 1 0.878424 0.438066 -174.45 + 67 130.174 901 1 0 0.890176 0.444562 -175.85 + 67 124.894 905 0 1 1.10725 0.564106 -204.45 + 67 122.738 902 0 0 1.10661 0.564229 -205.85 + 67 92.2163 1032 0 0 23.3037 26.4829 -206.25 + 67 69.5923 1033 0 0 23.4482 26.65 -206.133 + 67 137.352 1034 0 0 23.6154 26.85 -205.985 + 67 59.6968 1023 0 1 24.7909 28.561 -204.85 + 67 150.471 1024 0 1 24.8502 28.654 -204.793 + 67 116.106 1025 0 1 25.05 28.9499 -204.623 + 67 61.6993 1026 0 1 25.25 29.2513 -204.498 Number of digits in this event = 10 e- -Event: 70 -Number of tracker hits in this event = 44 - 70 189.831 900 5 1 0.0558749 -0.0544322 -54.45 - 70 126.979 899 5 0 0.0591553 -0.0585503 -55.85 - 70 130.332 900 4 1 0.134511 -0.142301 -84.45 - 70 107.094 899 4 0 0.132426 -0.144364 -85.85 - 70 175.084 900 3 1 0.0984193 -0.177514 -114.45 - 70 170.74 899 3 0 0.0812102 -0.184143 -115.85 - 70 110.331 898 2 1 -0.25686 -0.327291 -144.45 - 70 253.56 898 2 0 -0.276284 -0.335114 -145.85 - 70 110.904 896 1 1 -0.676853 -0.478693 -174.45 - 70 195.667 897 1 0 -0.693441 -0.490093 -175.85 - 70 184.293 895 0 1 -1.01966 -0.757881 -204.45 - 70 123.039 896 0 0 -1.04806 -0.766014 -205.85 - 70 411.584 899 2 1 -0.244988 -0.328429 -144.45 - 70 10.4046 896 2 0 0.05 -0.836784 -146.176 - 70 9.65894 895 2 0 0.0582938 -0.850086 -146.218 - 70 37.0561 922 1 1 4.56846 -11.2049 -174.45 - 70 51.0649 923 1 1 4.65016 -11.1649 -174.483 - 70 87.2769 924 1 1 4.85 -11.0397 -174.517 - 70 159.897 925 1 1 5.05 -10.973 -174.528 - 70 43.8291 926 1 1 5.25 -10.8985 -174.527 - 70 61.3207 927 1 1 5.45 -10.8681 -174.554 - 70 109.797 928 1 1 5.65017 -10.7934 -174.561 - 70 60.3228 929 1 1 5.85 -10.6837 -174.787 - 70 23.3264 851 1 0 6.77471 -9.70591 -175.85 - 70 127.431 852 1 0 6.83035 -9.64989 -175.905 - 70 67.1621 853 1 0 6.98754 -9.45 -176.063 - 70 158.842 688 0 1 -42.25 -61.3191 -204.608 - 70 8.31068 687 0 1 -42.45 -61.4687 -204.529 - 70 111.702 831 6 0 18.0719 -13.8186 -26.25 - 70 51.6693 903 1 1 0.719852 0.433199 -174.45 - 70 120.229 904 1 1 0.85 0.524501 -174.551 - 70 89.676 905 1 1 1.05017 0.599947 -174.692 - 70 6.11321 906 1 1 1.25 0.551005 -174.834 - 70 13.7025 900 1 0 2.49152 0.0614353 -175.85 - 70 65.4454 899 1 0 2.71553 -0.0500691 -176.113 - 70 0.959322 1233 0 0 -26.2372 66.65 -206.083 - 70 10.466 899 2 0 0.0500325 -0.0604902 -145.954 - 70 121.055 925 1 0 5.35411 5.18342 -175.85 - 70 78.6976 949 0 1 9.92518 -0.470883 -204.45 - 70 86.6027 948 0 1 9.85 -0.655966 -204.629 - 70 46.5302 890 0 0 9.26567 -1.93554 -205.85 - 70 97.761 889 0 0 9.2077 -2.05 -205.956 - 70 30.8924 888 0 0 9.09287 -2.25 -206.158 - 70 128.632 1485 2 1 117.15 169.983 -144.775 -Number of digits in this event = 18 +Event: 68 +Number of tracker hits in this event = 20 + 68 115.772 900 5 1 0.11731 0.0965706 -54.45 + 68 148.59 900 5 0 0.120507 0.101186 -55.85 + 68 145.475 900 4 1 0.160465 0.173709 -84.45 + 68 109.467 900 4 0 0.158686 0.169117 -85.85 + 68 177.089 900 3 1 0.146703 0.0841979 -114.45 + 68 236.721 900 3 0 0.145101 0.0838363 -115.85 + 68 254.124 900 2 1 0.134066 0.083572 -144.45 + 68 181.518 900 2 0 0.129821 0.07628 -145.85 + 68 119.737 900 1 1 0.0660783 -0.0599478 -174.45 + 68 204.427 899 1 0 0.0669801 -0.0633447 -175.85 + 68 160.468 900 0 1 0.0903834 -0.13267 -204.45 + 68 219.659 899 0 0 0.0921622 -0.136097 -205.85 + 68 117.373 899 4 1 -0.05 0.103649 -84.6418 + 68 15.3225 898 4 1 -0.250169 0.0792529 -84.8145 + 68 529.951 899 4 0 -1.5324 -0.0632686 -85.85 + 68 62.2653 890 1 0 -8.43085 -2.05 -176.083 + 68 157.397 1154 1 1 50.9895 -78.4074 -174.45 + 68 119.166 507 1 0 50.9144 -78.5649 -175.85 + 68 126.462 1025 8 0 -110.64 25.0667 33.75 + 68 147.477 879 0 0 -78.1837 -4.05 -206.211 +Number of digits in this event = 16 e- -Event: 71 -Number of tracker hits in this event = 12 - 71 156.018 900 5 1 0.0763839 0.139577 -54.45 - 71 100.59 900 5 0 0.0772208 0.148494 -55.85 - 71 306.75 900 4 1 0.10288 0.311782 -84.45 - 71 269.96 901 4 0 0.0987311 0.311666 -85.85 - 71 129.331 899 2 1 -0.0876873 0.252384 -144.45 - 71 107.514 900 2 0 -0.0966618 0.246209 -145.85 - 71 145.782 898 1 1 -0.27039 0.14106 -174.45 - 71 107.826 900 1 0 -0.277125 0.110989 -175.85 - 71 125.099 898 0 1 -0.395831 -0.494751 -204.45 - 71 108.506 897 0 0 -0.405917 -0.524275 -205.85 - 71 85.4186 904 4 0 -0.205866 0.918793 -85.8501 - 71 221.665 895 4 1 -0.880457 2.23689 -84.85 -Number of digits in this event = 8 -e- -Event: 72 -Number of tracker hits in this event = 32 - 72 155.271 899 5 1 -0.109667 -0.0848652 -54.45 - 72 185.28 899 5 0 -0.110844 -0.0898499 -55.85 - 72 151.922 899 4 1 -0.147606 -0.175968 -84.45 - 72 140.989 899 4 0 -0.152814 -0.166842 -85.85 - 72 148.695 898 3 1 -0.287543 0.0542421 -114.45 - 72 111.751 900 3 0 -0.285545 0.0574205 -115.85 - 72 398.326 899 2 1 -0.225541 0.111411 -144.45 - 72 129.553 900 2 0 -0.213936 0.11028 -145.85 - 72 105.537 900 1 0 0.0533293 0.100421 -175.85 - 72 122.367 901 0 1 0.333936 0.193596 -204.45 - 72 149.046 900 0 0 0.350207 0.187372 -205.85 - 72 119.259 898 2 0 -0.172263 -0.393246 -145.85 - 72 116.305 895 1 1 -1.02838 -0.690709 -174.45 - 72 24.9475 894 1 1 -1.05 -0.717386 -174.761 - 72 106.405 896 1 0 -1.12777 -0.808439 -175.85 - 72 119.014 875 0 1 -4.85803 -2.44069 -204.45 - 72 134.726 887 0 0 -5.02783 -2.49471 -205.85 - 72 86.5799 894 2 0 0.267442 -1.12931 -145.85 - 72 34.194 893 2 0 0.298587 -1.25 -146.127 - 72 505.68 582 2 0 53.9368 -63.5374 -146.25 - 72 145.927 583 2 0 54.545 -63.4499 -146.063 - 72 55.0231 581 2 0 54.966 -63.65 -146.004 - 72 433.938 1083 2 0 -86.6812 36.6642 -146.25 - 72 83.5808 1084 2 0 -87.0349 36.85 -145.97 - 72 212.788 1432 0 0 -47.4621 106.736 -206.25 - 72 70.8308 1324 0 0 -42.6918 85.0382 -206.25 - 72 10.4636 128 0 0 -84.1856 -154.369 -206.25 - 72 83.5542 127 0 0 -84.2135 -154.55 -206.176 - 72 229.285 126 0 0 -84.1156 -154.75 -206.031 - 72 236.898 486 0 1 -82.7813 -154.149 -204.85 - 72 11.5029 130 0 0 -83.972 -154.008 -205.85 - 72 127.522 476 0 1 -84.8163 -155.228 -204.85 -Number of digits in this event = 18 -e- -Event: 73 +Event: 69 Number of tracker hits in this event = 11 - 73 152.369 900 5 1 0.23624 0.127569 -54.45 - 73 101.35 900 5 0 0.225842 0.134679 -55.85 - 73 114.465 899 3 1 -0.173331 0.476068 -114.45 - 73 117.257 902 3 0 -0.186431 0.491486 -115.85 - 73 138.712 898 2 1 -0.424063 0.784418 -144.45 - 73 161.65 903 2 0 -0.439466 0.788792 -145.85 - 73 147.202 896 1 1 -0.753914 0.874638 -174.45 - 73 131.794 904 1 0 -0.756522 0.866181 -175.85 - 73 131.352 896 0 1 -0.809741 0.659162 -204.45 - 73 116.454 903 0 0 -0.803736 0.654531 -205.85 - 73 205.735 682 4 1 -43.4626 -144.913 -84.85 -Number of digits in this event = 8 -e- -Event: 74 -Number of tracker hits in this event = 23 - 74 149.653 899 5 1 -0.158424 0.0685764 -54.45 - 74 118.583 900 5 0 -0.179576 0.081921 -55.85 - 74 109.628 897 4 1 -0.589136 0.445337 -84.45 - 74 122.412 902 4 0 -0.591585 0.463649 -85.85 - 74 160.092 896 3 1 -0.685804 0.868999 -114.45 - 74 258.67 904 3 0 -0.683945 0.897883 -115.85 - 74 104.972 896 2 1 -0.655885 1.51073 -144.45 - 74 100.141 907 2 0 -0.647033 1.54872 -145.85 - 74 120.424 898 1 1 -0.361785 2.34365 -174.45 - 74 104.284 911 1 0 -0.335883 2.36041 -175.85 - 74 164.484 901 0 1 0.255983 2.66464 -204.45 - 74 100.799 913 0 0 0.289716 2.69709 -205.85 - 74 38.2428 1022 5 1 24.65 -50.1214 -54.8165 - 74 28.2409 558 6 0 24.674 -68.3932 -26.25 - 74 106.989 557 6 0 24.6869 -68.45 -26.1596 - 74 64.5379 689 2 0 -64.7946 -42.05 -146.088 - 74 35.4956 578 2 1 -64.4152 -25.7612 -144.85 - 74 1.78504 584 2 1 -63.25 -22.8218 -144.715 - 74 19.6123 570 2 1 -66.0233 -42.2511 -144.85 - 74 37.554 569 2 1 -66.0501 -42.2609 -144.833 - 74 155.834 692 2 0 -66.1727 -41.5383 -145.85 - 74 62.3842 400 8 0 103.565 -99.9787 33.75 - 74 0.821871 1230 0 1 66.05 96.2331 -204.62 -Number of digits in this event = 8 -e- -Event: 75 -Number of tracker hits in this event = 52 - 75 127.043 903 5 1 0.689198 0.166352 -54.45 - 75 231.643 900 5 0 0.744938 0.150774 -55.85 - 75 25.378 908 4 1 1.84442 -0.123548 -84.45 - 75 110.691 909 4 1 1.85 -0.125531 -84.5475 - 75 153.268 899 4 0 1.92517 -0.15142 -85.85 - 75 199.367 917 3 1 3.46912 -0.628539 -114.45 - 75 91.1292 896 3 0 3.55594 -0.701639 -115.85 - 75 110.748 926 2 1 5.39068 -2.01795 -144.45 - 75 118.89 889 2 0 5.54829 -2.05465 -145.85 - 75 23.4804 943 1 1 8.83353 -2.52417 -174.45 - 75 95.3484 944 1 1 8.85 -2.51971 -174.528 - 75 49.593 887 1 0 9.1416 -2.45719 -175.85 - 75 77.87 888 1 0 9.17424 -2.45 -175.997 - 75 403.836 978 0 1 15.6963 -1.05409 -204.45 - 75 139.618 895 0 0 16.0078 -0.911221 -205.85 - 75 74.4645 979 0 1 15.8501 -0.947844 -204.526 - 75 221.784 980 0 1 16.0501 -0.829087 -204.533 - 75 171.497 981 0 1 16.2501 -0.648993 -204.56 - 75 182.854 891 0 0 25.8786 -1.74221 -205.85 - 75 3.5353 977 0 1 15.648 -1.03902 -204.45 - 75 40.0156 897 0 0 16.1136 -0.498148 -205.85 - 75 84.0439 898 0 0 16.1594 -0.45 -205.978 - 75 133.136 952 0 0 29.1434 10.5036 -206.25 - 75 2.41768 953 0 0 29.3178 10.65 -205.859 - 75 416.348 1049 0 1 29.8653 11.2278 -204.85 - 75 194.736 1050 0 1 30.1484 11.6098 -204.45 - 75 35.8545 1051 0 1 30.2501 11.6066 -204.763 - 75 265.857 958 0 0 30.7282 11.74 -205.85 - 75 193.784 887 0 0 38.2893 -2.6083 -206.25 - 75 36.6814 916 3 1 3.45 -0.875228 -114.797 - 75 44.4271 888 3 0 1.42988 -2.39171 -115.85 - 75 69.1302 887 3 0 1.32628 -2.45004 -115.889 - 75 30.9126 900 3 1 0.151109 -2.45094 -114.85 - 75 59.3792 899 3 1 -0.05 -2.39409 -114.743 - 75 63.3215 898 3 1 -0.25 -2.40302 -114.714 - 75 66.4491 897 3 1 -0.45 -2.47592 -114.68 - 75 47.1601 896 3 1 -0.65 -2.5118 -114.642 - 75 60.7074 895 3 1 -0.850127 -2.52603 -114.607 - 75 61.7492 894 3 1 -1.05 -2.53617 -114.569 - 75 118.202 893 3 1 -1.25 -2.50851 -114.491 - 75 72.8732 892 3 1 -1.45 -2.54735 -114.719 - 75 227.506 901 3 0 -6.47732 0.347222 -115.85 - 75 110.17 902 3 0 -6.662 0.45 -115.876 - 75 174.471 900 3 0 -6.89873 0.249973 -116.063 - 75 14.4467 20 10 1 -175.967 11.2193 95.15 - 75 165.906 974 11 0 -170.393 14.934 123.75 - 75 24.6033 973 11 0 -170.207 14.85 124.061 - 75 234.812 50 11 1 -170.109 15.6159 125.15 - 75 91.9618 21 10 1 -175.95 11.2479 95.2069 - 75 68.0628 946 10 0 -175.003 9.41598 94.15 - 75 59.031 30 10 1 -174.06 9.10734 95.15 - 75 163.6 31 10 1 -173.95 9.0913 95.2079 -Number of digits in this event = 21 -e- -Event: 76 -Number of tracker hits in this event = 36 - 76 367.114 901 4 1 0.406323 0.0552399 -84.45 - 76 168.174 900 4 0 0.437669 0.103771 -85.85 - 76 56.7427 905 3 1 1.24021 1.1746 -114.45 - 76 49.7932 906 3 1 1.25 1.18909 -114.649 - 76 118.546 906 3 0 1.32014 1.26906 -115.85 - 76 118.587 915 2 1 3.06169 3.22235 -144.45 - 76 152.755 915 2 0 3.2117 3.19955 -145.85 - 76 130.125 930 1 1 6.13022 2.59189 -174.45 - 76 134.003 912 1 0 6.20521 2.52382 -175.85 - 76 164.527 938 0 1 7.78123 1.13659 -204.45 - 76 15.7285 905 0 0 7.85665 1.05104 -205.85 - 76 117.471 904 0 0 7.85753 1.05 -205.867 - 76 152.818 916 2 0 3.28057 3.25 -145.968 - 76 87.1199 945 4 0 -1.6924 9.16616 -86.25 - 76 148.363 946 4 0 -1.73679 9.25004 -86.1008 - 76 89.8711 947 4 0 -1.81128 9.45 -86.0691 - 76 115.029 911 1 1 2.29988 4.80131 -174.45 - 76 57.3097 918 1 0 2.03674 3.7633 -175.85 - 76 102.422 917 1 0 2.00429 3.65 -175.966 - 76 45.5033 916 1 0 1.85527 3.45 -176.163 - 76 96.0812 779 0 1 -24.1612 -27.1288 -204.45 - 76 118.447 780 0 1 -24.05 -26.8334 -204.577 - 76 60.8117 781 0 1 -23.85 -26.5382 -204.798 - 76 206.198 782 0 1 -23.65 -26.4652 -204.812 - 76 152.633 783 0 1 -23.45 -26.4493 -204.828 - 76 18.292 784 0 1 -23.2498 -26.4467 -204.846 - 76 123.156 771 0 0 -8.37368 -25.6997 -205.85 - 76 71.9455 770 0 0 -8.13851 -25.85 -206.067 - 76 168.458 904 1 1 0.905851 0.499076 -174.647 - 76 359.634 902 1 0 0.908472 0.508583 -175.85 - 76 144.705 904 0 1 1.02385 0.722767 -204.45 - 76 231.042 903 0 0 1.0056 0.775049 -205.85 - 76 133.082 905 0 1 1.15553 0.689221 -204.45 - 76 51.1748 901 1 0 0.852068 0.45 -176.134 - 76 35.7521 203 0 0 105.692 -139.35 -206.092 - 76 13.1355 934 8 0 91.9412 6.99127 33.75 -Number of digits in this event = 17 -e- -Event: 77 -Number of tracker hits in this event = 17 - 77 101.492 897 5 1 -0.533949 -0.389611 -54.45 - 77 27.0466 898 5 0 -0.561815 -0.446006 -55.85 - 77 112.132 897 5 0 -0.563194 -0.45 -55.9575 - 77 128.539 894 4 1 -1.05853 -1.61003 -84.45 - 77 82.7091 892 4 0 -1.13069 -1.64336 -85.85 - 77 142.136 891 4 0 -1.14746 -1.65 -86.153 - 77 152.295 885 3 1 -2.92327 -2.20866 -114.45 - 77 117.164 888 3 0 -2.9103 -2.29333 -115.85 - 77 320.866 887 2 1 -2.62847 -4.20481 -144.45 - 77 210.733 878 2 0 -2.58193 -4.30261 -145.85 - 77 174.322 892 1 1 -1.5386 -6.23012 -174.45 - 77 104.383 868 1 0 -1.54123 -6.30607 -175.85 - 77 203.147 893 0 1 -1.42037 -8.12027 -204.45 - 77 102.835 859 0 0 -1.49314 -8.20884 -205.85 - 77 120.963 888 2 1 -2.45 -4.23571 -144.716 - 77 65.9655 874 0 1 -5.1807 -95.1959 -204.85 - 77 15.0959 873 0 1 -5.25002 -95.493 -204.548 -Number of digits in this event = 9 -e- -Event: 78 -Number of tracker hits in this event = 13 - 78 138.64 899 5 1 -0.144071 -0.143449 -54.45 - 78 263.324 899 5 0 -0.142968 -0.15407 -55.85 - 78 90.0718 899 4 1 -0.106218 -0.389889 -84.45 - 78 162.544 898 4 0 -0.102868 -0.40928 -85.85 - 78 100.317 900 1 1 0.171365 -2.18629 -174.45 - 78 116.479 889 1 0 0.184899 -2.21801 -175.85 - 78 108.152 902 0 1 0.458336 -2.85376 -204.45 - 78 99.5158 885 0 0 0.462749 -2.87999 -205.85 - 78 101.409 898 5 1 -0.25 -0.160726 -54.6603 - 78 209.086 900 5 0 -0.769488 0.163817 -55.85 - 78 44.1475 801 2 1 -19.7234 -58.2128 -144.85 - 78 88.2405 528 3 1 -74.25 -101.249 -114.78 - 78 58.3151 450 3 0 -90.15 -89.8949 -115.925 + 69 117.999 895 1 1 -0.899069 -0.417648 -174.45 + 69 133.449 898 1 0 -0.864825 -0.431686 -175.85 + 69 149.489 899 0 1 -0.156236 -0.727368 -204.45 + 69 475.256 896 0 0 -0.13484 -0.737274 -205.85 + 69 56.2359 888 0 1 -2.25398 -0.377412 -204.85 + 69 41.7784 900 5 0 -0.371011 0.05 -56.0992 + 69 82.6273 1022 5 0 -10.1812 24.6082 -56.2499 + 69 140.333 1023 5 0 -10.0628 24.65 -56.0514 + 69 72.9053 1024 5 0 -10.2336 24.85 -55.9009 + 69 124.033 846 5 1 -10.7173 24.8273 -54.85 + 69 30.9789 505 0 0 -3.20608 -78.85 -206.186 Number of digits in this event = 6 e- +Event: 70 +Number of tracker hits in this event = 14 + 70 163.495 900 5 1 0.191753 0.0834729 -54.45 + 70 106.209 900 5 0 0.19947 0.0828931 -55.85 + 70 208.399 901 4 1 0.346524 0.0800019 -84.45 + 70 136.388 900 4 0 0.35758 0.083719 -85.85 + 70 177.38 902 3 1 0.554906 0.143896 -114.45 + 70 125.317 900 3 0 0.563029 0.138919 -115.85 + 70 123.373 903 2 1 0.747556 0.0560098 -144.45 + 70 184.856 902 1 1 0.595948 -0.290688 -174.45 + 70 151.499 898 1 0 0.594019 -0.303109 -175.85 + 70 106.23 902 0 1 0.565793 -0.591902 -204.45 + 70 97.6452 897 0 0 0.567287 -0.601391 -205.85 + 70 55.3288 902 4 1 0.450021 0.0648597 -84.5052 + 70 109.481 904 1 1 0.918367 0.302796 -174.45 + 70 51.118 965 5 1 13.1911 171.366 -54.85 +Number of digits in this event = 9 +e- +Event: 71 +Number of tracker hits in this event = 23 + 71 174.282 899 5 1 -0.120608 0.0606651 -54.45 + 71 238.899 900 5 0 -0.120963 0.0654147 -55.85 + 71 143.64 899 4 1 -0.128218 0.140727 -84.45 + 71 114.65 900 4 0 -0.13324 0.148189 -85.85 + 71 140.515 898 3 1 -0.291136 0.327021 -114.45 + 71 194.884 901 3 0 -0.297729 0.336225 -115.85 + 71 109.337 898 2 1 -0.40979 0.504747 -144.45 + 71 120.929 902 2 0 -0.415057 0.520078 -145.85 + 71 114.011 897 1 1 -0.505671 0.821042 -174.45 + 71 202.384 903 1 0 -0.5066 0.828562 -175.85 + 71 114.894 897 0 1 -0.547736 0.968514 -204.45 + 71 114.468 904 0 0 -0.549187 0.984126 -205.85 + 71 130.595 899 6 1 -0.0500501 0.0571594 -24.5427 + 71 65.1785 900 6 0 0.324009 0.202213 -25.85 + 71 64.4124 901 6 0 0.383346 0.250081 -26.1129 + 71 302.125 1245 6 0 35.4853 69.2418 -26.25 + 71 304.011 1246 6 0 35.4899 69.2501 -26.244 + 71 206.509 1072 6 1 34.6393 69.6377 -24.85 + 71 37.8793 19 8 1 -176.213 -126.251 35.55 + 71 70.3997 20 8 1 -176.15 -126.29 35.4919 + 71 179.962 21 8 1 -175.95 -126.332 35.4147 + 71 131.947 274 8 0 -176.524 -125.287 34.15 + 71 111.883 29 8 1 -174.346 -123.95 35.15 +Number of digits in this event = 15 +e- +Event: 72 +Number of tracker hits in this event = 15 + 72 116.167 899 4 1 -0.226955 -0.166539 -84.45 + 72 123.215 899 4 0 -0.246795 -0.119298 -85.85 + 72 124.119 896 3 1 -0.713536 0.881235 -114.45 + 72 95.2829 904 3 0 -0.780032 0.854167 -115.85 + 72 225.584 903 3 0 -0.790106 0.85 -116.071 + 72 215.373 890 2 1 -1.85381 0.246673 -144.45 + 72 138.323 900 2 0 -1.88815 0.196174 -145.85 + 72 131.611 887 1 1 -2.57837 -0.819645 -174.45 + 72 151.699 895 1 0 -2.59695 -0.888091 -175.85 + 72 244.755 885 0 1 -2.86741 -2.28092 -204.45 + 72 187.965 888 0 0 -2.86267 -2.36518 -205.85 + 72 170.729 902 3 0 -0.959538 0.65 -115.986 + 72 33.2714 623 6 1 -55.3531 44.0461 -24.85 + 72 49.8407 1247 8 0 -42.1483 69.546 33.75 + 72 15.408 660 11 1 -47.9267 52.046 125.15 +Number of digits in this event = 11 +e- +Event: 73 +Number of tracker hits in this event = 22 + 73 492.071 900 5 1 0.0996577 -0.199469 -54.45 + 73 108.169 899 5 0 0.0976119 -0.206981 -55.85 + 73 147.362 900 3 1 0.211201 -0.341079 -114.45 + 73 107.142 898 3 0 0.212772 -0.34105 -115.85 + 73 101.466 900 2 1 0.246878 -0.367645 -144.45 + 73 124.462 898 2 0 0.246908 -0.37127 -145.85 + 73 116.411 901 1 1 0.291637 -0.442551 -174.45 + 73 45.772 898 1 0 0.286703 -0.449506 -175.85 + 73 72.2741 897 1 0 0.286335 -0.45 -175.957 + 73 103.529 900 0 1 0.108127 -0.708302 -204.45 + 73 148.06 896 0 0 0.102807 -0.723849 -205.85 + 73 1.46345 892 5 0 0.16688 -1.64663 -55.85 + 73 58.8707 891 5 0 0.166551 -1.65 -55.8536 + 73 62.7749 890 5 0 0.128986 -1.85 -56.0493 + 73 29.1616 889 5 0 0.0977738 -2.05 -56.2166 + 73 475.472 522 5 0 -90.6389 -75.5578 -56.25 + 73 23.3275 523 5 0 -91.3084 -75.45 -55.8813 + 73 143.619 438 5 1 -92.4452 -73.0491 -54.85 + 73 275.038 439 5 1 -92.35 -72.8161 -54.554 + 73 192.253 539 5 0 -92.0144 -72.1639 -55.85 + 73 36.0877 540 5 0 -92.0095 -72.05 -55.9591 + 73 61.8778 1261 4 0 -2.68738 72.3623 -86.25 +Number of digits in this event = 10 +e- +Event: 74 +Number of tracker hits in this event = 15 + 74 241.051 899 5 1 -0.0688363 -0.126555 -54.45 + 74 166.484 899 5 0 -0.0781142 -0.127412 -55.85 + 74 115.58 898 4 1 -0.261826 -0.13601 -84.45 + 74 290.719 899 4 0 -0.265651 -0.140723 -85.85 + 74 198.572 898 3 1 -0.366134 -0.261656 -114.45 + 74 122.78 898 3 0 -0.371692 -0.272229 -115.85 + 74 117.404 897 2 1 -0.504163 -0.471514 -144.45 + 74 129.683 897 2 0 -0.515285 -0.488239 -145.85 + 74 272.223 896 1 1 -0.770533 -0.842607 -174.45 + 74 103.547 895 1 0 -0.787652 -0.869992 -175.85 + 74 111.815 894 0 1 -1.12547 -1.4436 -204.45 + 74 107.332 892 0 0 -1.14879 -1.45554 -205.85 + 74 242.954 848 1 1 -10.3537 -18.2293 -174.85 + 74 71.9881 847 1 1 -10.45 -18.0624 -174.649 + 74 40.3164 849 1 1 -10.25 -18.4302 -174.466 +Number of digits in this event = 10 +e- +Event: 75 +Number of tracker hits in this event = 27 + 75 125.589 897 4 1 -0.454576 -0.538496 -84.45 + 75 127.813 897 4 0 -0.450106 -0.596022 -85.85 + 75 121.424 897 3 1 -0.595778 -2.30607 -114.45 + 75 120.706 887 3 0 -0.663599 -2.47824 -115.85 + 75 77.0985 892 2 1 -1.45407 -5.85621 -144.45 + 75 60.3463 893 2 1 -1.45 -5.87273 -144.67 + 75 105.814 870 2 0 -1.42747 -5.95185 -145.85 + 75 411.303 896 1 1 -0.673762 -7.48776 -174.45 + 75 30.8687 897 1 1 -0.65 -7.55334 -174.726 + 75 100.581 861 1 0 -0.57239 -7.77602 -175.85 + 75 14.33 860 1 0 -0.546193 -7.85 -176.202 + 75 99.8972 905 0 1 1.19441 -14.0285 -204.45 + 75 16.0818 828 0 0 1.06397 -14.4348 -205.85 + 75 93.5037 827 0 0 1.05935 -14.45 -205.902 + 75 114.951 895 1 1 -0.85 -7.15395 -174.712 + 75 129.368 903 0 1 0.67509 -0.292863 -204.45 + 75 137.025 899 0 0 0.639324 -0.145576 -205.85 + 75 228.759 907 0 1 1.46839 0.660364 -204.45 + 75 160.603 902 0 0 1.52576 0.625785 -205.85 + 75 19.2058 899 1 0 0.779277 -0.05 -176.169 + 75 120.2 862 1 0 -34.9395 -7.59593 -176.25 + 75 78.6163 863 1 0 -35.2986 -7.45 -176.144 + 75 69.0564 864 1 0 -35.4441 -7.24989 -176.193 + 75 4.50095 865 1 0 -35.6063 -7.05 -176.236 + 75 290.086 912 1 0 -49.5806 2.54154 -176.25 + 75 227.495 913 1 0 -49.5186 2.65005 -176.141 + 75 166.933 914 1 0 -49.3736 2.85005 -176.139 +Number of digits in this event = 15 +e- +Event: 76 +Number of tracker hits in this event = 26 + 76 123.145 899 4 1 -0.120492 0.212331 -84.45 + 76 183.88 900 4 0 -0.127579 0.227056 -85.85 + 76 131.419 898 3 1 -0.279151 0.551653 -114.45 + 76 117.662 902 3 0 -0.235268 0.559335 -115.85 + 76 273.059 902 2 1 0.617872 0.646672 -144.45 + 76 125.129 902 2 0 0.627255 0.630009 -145.85 + 76 111.507 903 1 1 0.732781 0.203192 -174.45 + 76 228.881 900 1 0 0.706309 0.181547 -175.85 + 76 109.346 901 0 1 0.292479 -0.29908 -204.45 + 76 113.12 898 0 0 0.216692 -0.319886 -205.85 + 76 66.7413 901 2 1 0.425774 -1.34595 -144.45 + 76 132.414 891 2 0 0.651783 -1.71117 -145.85 + 76 6.91969 935 1 1 7.24317 -11.9773 -174.45 + 76 136.667 936 1 1 7.25 -11.9755 -174.48 + 76 97.2572 840 1 0 7.60788 -11.9674 -175.85 + 76 7.99768 970 0 1 14.2442 -12.4108 -204.45 + 76 111.598 971 0 1 14.25 -12.4342 -204.49 + 76 84.629 833 0 0 14.6897 -13.2969 -205.85 + 76 51.4235 832 0 0 14.7515 -13.45 -206.087 + 76 120.024 900 3 0 0.0517122 0.0832524 -115.85 + 76 135.14 900 2 1 0.0871343 0.196658 -144.45 + 76 187.295 900 2 0 0.0923477 0.165816 -145.85 + 76 118.784 900 1 1 0.0708132 -0.446241 -174.45 + 76 137.513 897 1 0 0.0687849 -0.48162 -175.85 + 76 116.903 900 0 1 0.05 -1.11318 -204.502 + 76 2.63542 483 5 1 -83.25 -16.9986 -54.5154 +Number of digits in this event = 14 +e- +Event: 77 +Number of tracker hits in this event = 42 + 77 102.484 899 5 1 -0.0678664 0.108137 -54.45 + 77 104.87 900 5 0 -0.0664597 0.114899 -55.85 + 77 136.642 900 3 1 0.239066 0.410129 -114.45 + 77 490.409 901 3 0 0.242111 0.424824 -115.85 + 77 254.04 901 2 1 0.332445 0.688223 -144.45 + 77 116.485 903 2 0 0.335724 0.687255 -145.85 + 77 393.801 901 1 1 0.410887 0.634898 -174.45 + 77 204.761 902 1 0 0.392144 0.638177 -175.85 + 77 278.628 899 0 1 -0.0671247 0.60958 -204.45 + 77 128.63 902 0 0 -0.080641 0.610026 -205.85 + 77 62.8607 902 1 1 0.45 1.05792 -174.691 + 77 71.5094 904 1 0 0.398429 0.969543 -175.85 + 77 105.942 903 1 0 0.371712 0.85 -176.001 + 77 472.382 901 1 0 0.404078 0.449932 -176.021 + 77 323.101 898 3 1 -0.30477 0.29297 -114.45 + 77 124.783 898 2 1 -0.281 0.376359 -144.45 + 77 122.116 901 2 0 -0.280375 0.375708 -145.85 + 77 96.3385 898 1 1 -0.255575 0.375511 -174.45 + 77 113.798 898 0 1 -0.257847 0.318186 -204.45 + 77 119.898 901 0 0 -0.241044 0.322491 -205.85 + 77 71.7353 910 1 0 0.252339 2.13644 -175.85 + 77 95.0674 911 1 0 0.236023 2.25 -176.025 + 77 104.666 893 0 1 -1.30942 23.5862 -204.45 + 77 70.9264 1019 0 0 -1.43779 23.9908 -205.85 + 77 50.6343 1020 0 0 -1.45997 24.05 -206.081 + 77 50.2566 1018 0 0 25.2373 23.6579 -206.25 + 77 204.087 1017 0 0 25.384 23.65 -206.124 + 77 60.2805 1016 0 0 25.6201 23.45 -205.942 + 77 108.495 1027 0 1 25.594 22.5671 -204.85 + 77 88.3735 1026 0 1 25.45 22.4858 -204.618 + 77 198.485 1025 0 1 25.2499 22.5364 -204.597 + 77 171.045 1024 0 1 25.0499 22.479 -204.546 + 77 57.9162 902 2 1 0.634174 -0.0890988 -144.45 + 77 4.57084 903 2 1 0.65 -0.0529419 -144.703 + 77 94.6899 900 2 0 0.720609 0.110445 -145.85 + 77 140.313 908 1 1 1.67208 3.28983 -174.45 + 77 135.22 917 1 0 1.90327 3.46965 -175.85 + 77 120.285 923 0 1 4.68924 8.88683 -204.45 + 77 163.393 945 0 0 4.96318 9.19915 -205.85 + 77 49.6768 946 0 0 5.00584 9.25 -206.082 + 77 91.2198 980 6 0 104.351 16.1288 -26.25 + 77 161.101 979 6 0 104.533 16.05 -26.1261 +Number of digits in this event = 22 +e- +Event: 78 +Number of tracker hits in this event = 29 + 78 163.097 900 5 1 0.0710717 -0.111412 -54.45 + 78 160.766 899 5 0 0.0756737 -0.109853 -55.85 + 78 119.672 900 4 1 0.171989 -0.0947519 -84.45 + 78 116.273 899 4 0 0.186122 -0.091149 -85.85 + 78 162.061 904 2 1 0.879524 0.174118 -144.45 + 78 152.719 900 2 0 0.895622 0.183931 -145.85 + 78 110.119 905 1 1 1.20952 0.380394 -174.45 + 78 116.865 901 1 0 1.22307 0.385186 -175.85 + 78 149.304 907 0 1 1.49517 0.468 -204.45 + 78 109.414 902 0 0 1.50584 0.482567 -205.85 + 78 114.457 903 2 1 0.85 0.106616 -144.52 + 78 126.63 902 2 1 0.65 -0.274916 -144.703 + 78 22.9692 886 2 0 -0.196789 -2.77968 -145.85 + 78 52.1966 885 2 0 -0.223768 -2.85017 -145.886 + 78 67.1288 884 2 0 -0.257478 -3.05017 -145.948 + 78 71.2689 883 2 0 -0.188711 -3.25016 -146.083 + 78 0.146277 882 2 0 -0.189148 -3.45 -146.249 + 78 203.982 751 2 0 -22.3682 -29.8106 -146.25 + 78 66.2916 773 2 1 -25.3322 -30.2273 -144.85 + 78 144.688 772 2 1 -25.45 -30.2335 -144.783 + 78 78.6248 771 2 1 -25.65 -30.194 -144.571 + 78 11.7044 770 2 1 -25.85 -30.1181 -144.471 + 78 178.562 1419 5 1 104.035 -115.323 -54.85 + 78 179.862 1420 5 1 104.15 -115.457 -54.6144 + 78 66.7375 1418 5 1 103.95 -116.096 -54.5821 + 78 131.776 1417 5 1 103.75 -116.254 -54.6118 + 78 161.996 1416 5 1 103.55 -116.313 -54.7589 + 78 57.0983 1415 5 1 103.35 -116.247 -54.7791 + 78 321.408 321 5 0 102.167 -115.874 -55.85 +Number of digits in this event = 14 +e- Event: 79 -Number of tracker hits in this event = 13 - 79 110.801 899 5 1 -0.138842 0.0789732 -54.45 - 79 110.5 900 5 0 -0.141253 0.0816787 -55.85 - 79 133.802 899 4 1 -0.170956 0.142247 -84.45 - 79 183.681 900 4 0 -0.182345 0.143677 -85.85 - 79 227.975 898 3 1 -0.402871 0.188252 -114.45 - 79 284.108 900 3 0 -0.406568 0.194629 -115.85 - 79 158.173 897 2 1 -0.546773 0.296176 -144.45 - 79 209.045 901 2 0 -0.540345 0.293255 -145.85 - 79 148.326 898 1 1 -0.439285 0.293394 -174.45 - 79 127.326 901 1 0 -0.422739 0.311358 -175.85 - 79 153.646 897 3 1 -0.45 0.182923 -114.584 - 79 83.6695 951 0 1 10.25 -6.81436 -204.771 - 79 92.4768 685 0 1 -42.85 33.7887 -204.678 +Number of tracker hits in this event = 12 + 79 178.606 900 4 1 0.15291 -0.211303 -84.45 + 79 135.916 899 4 0 0.163486 -0.218922 -85.85 + 79 150.86 901 3 1 0.332836 -0.368674 -114.45 + 79 106.915 898 3 0 0.334127 -0.365741 -115.85 + 79 122.39 901 2 1 0.364787 -0.315369 -144.45 + 79 118.709 898 2 0 0.365384 -0.304211 -145.85 + 79 121.366 901 1 1 0.364548 -0.0622072 -174.45 + 79 195.343 899 1 0 0.372827 -0.0544414 -175.85 + 79 192.748 902 0 1 0.57577 0.146825 -204.45 + 79 107.068 900 0 0 0.577411 0.154891 -205.85 + 79 161.71 885 4 0 52.9426 -2.89016 -86.25 + 79 61.4738 539 8 0 -121.393 -72.05 33.9023 Number of digits in this event = 10 e- Event: 80 -Number of tracker hits in this event = 14 - 80 115.966 900 4 1 0.167392 0.533623 -84.45 - 80 111.756 902 4 0 0.173937 0.54028 -85.85 - 80 143.629 901 3 1 0.344496 0.648212 -114.45 - 80 102.458 903 3 0 0.364854 0.662008 -115.85 - 80 141.727 903 2 1 0.763328 0.935135 -144.45 - 80 131.387 904 2 0 0.789843 0.950781 -145.85 - 80 153.539 906 1 1 1.35357 1.25472 -174.45 - 80 255.859 906 1 0 1.38573 1.26998 -175.85 - 80 309.874 909 0 1 2.0357 1.59937 -204.45 - 80 39.7974 908 0 0 1.9962 1.83578 -205.85 - 80 132.935 909 0 0 1.99483 1.85 -205.93 - 80 263.945 910 0 1 2.10098 1.59093 -204.45 - 80 88.7762 908 0 1 1.85 1.79903 -204.568 - 80 58.116 892 4 0 6.86859 -1.45 -86.0371 -Number of digits in this event = 9 +Number of tracker hits in this event = 13 + 80 143.591 899 5 1 -0.117426 0.101725 -54.45 + 80 124.564 900 5 0 -0.119782 0.0876201 -55.85 + 80 125.326 899 4 1 -0.188325 -0.177158 -84.45 + 80 136.226 899 4 0 -0.188914 -0.185056 -85.85 + 80 114.687 898 3 1 -0.280975 -0.403505 -114.45 + 80 112.386 898 3 0 -0.285745 -0.411909 -115.85 + 80 102.292 898 2 1 -0.395883 -0.575608 -144.45 + 80 144.67 897 2 0 -0.400187 -0.59169 -145.85 + 80 111.609 897 1 1 -0.482175 -0.931232 -174.45 + 80 111.01 895 1 0 -0.483282 -0.945839 -175.85 + 80 244.958 897 0 1 -0.512396 -1.24149 -204.45 + 80 132.702 893 0 0 -0.514637 -1.26286 -205.85 + 80 64.9008 898 0 1 -0.45 -1.32299 -204.492 +Number of digits in this event = 8 e- Event: 81 -Number of tracker hits in this event = 15 - 81 139.106 900 3 1 0.167582 0.0709291 -114.45 - 81 121.408 900 3 0 0.157621 0.0787049 -115.85 - 81 131.16 900 2 0 -0.0528746 0.217733 -145.85 - 81 155.448 898 1 1 -0.303724 0.232516 -174.45 - 81 108.331 900 1 0 -0.311957 0.225771 -175.85 - 81 113.159 897 0 1 -0.490009 0.0899745 -204.45 - 81 116.819 900 0 0 -0.507771 0.0833472 -205.85 - 81 95.1421 899 2 1 -0.0500791 0.207341 -144.464 - 81 32.2727 898 2 1 -0.370192 -0.0500651 -144.785 - 81 19.5124 897 2 1 -0.450073 -0.112596 -144.818 - 81 46.4755 895 2 0 -1.42667 -0.947593 -145.85 - 81 105.868 894 2 0 -1.51152 -1.05 -145.928 - 81 64.843 893 2 0 -1.61378 -1.25 -146.059 - 81 35.1709 892 2 0 -1.75342 -1.45 -146.183 - 81 28.5109 11 1 1 -177.75 -26.7063 -174.567 -Number of digits in this event = 6 +Number of tracker hits in this event = 11 + 81 145.143 899 5 1 -0.172295 -0.119874 -54.45 + 81 113.272 899 5 0 -0.161004 -0.133105 -55.85 + 81 114.049 899 4 1 -0.205846 -0.185586 -84.45 + 81 105.425 899 4 0 -0.206451 -0.182341 -85.85 + 81 118.812 899 3 1 -0.214773 -0.129214 -114.45 + 81 120.545 899 3 0 -0.214239 -0.124872 -115.85 + 81 162.878 898 1 1 -0.279223 0.0637384 -174.45 + 81 129.927 900 1 0 -0.291563 0.069405 -175.85 + 81 121.842 897 0 1 -0.591834 0.146675 -204.45 + 81 144.019 900 0 0 -0.590253 0.15702 -205.85 + 81 74.6383 901 0 0 -0.0626976 0.25 -206.127 +Number of digits in this event = 8 e- Event: 82 -Number of tracker hits in this event = 16 - 82 115.15 901 4 1 0.315487 -0.410009 -84.45 - 82 132.684 898 4 0 0.332335 -0.420322 -85.85 - 82 127.81 903 3 1 0.71776 -0.632583 -114.45 - 82 130.147 897 3 0 0.735619 -0.641149 -115.85 - 82 143.02 905 2 1 1.11955 -0.821824 -144.45 - 82 146.619 896 2 0 1.14036 -0.824767 -145.85 - 82 188.029 907 1 1 1.52581 -0.886402 -174.45 - 82 179.881 895 1 0 1.54391 -0.892548 -175.85 - 82 150.466 909 0 1 1.89881 -0.985777 -204.45 - 82 264.375 895 0 0 1.90488 -1.00588 -205.85 - 82 277.396 894 0 0 1.85049 -1.05004 -206.093 - 82 80.5693 899 5 1 -0.0640308 0.0500602 -54.7651 - 82 43.4685 896 5 0 -0.527452 -0.76512 -55.85 - 82 208.304 895 5 0 -0.549581 -0.850043 -55.8964 - 82 2.72445 895 6 1 -0.85 0.101308 -24.5325 - 82 126.35 894 6 1 -1.05004 0.121248 -24.5867 -Number of digits in this event = 14 +Number of tracker hits in this event = 63 + 82 108.324 898 3 1 -0.349593 -0.270697 -114.45 + 82 120.934 898 3 0 -0.381499 -0.271289 -115.85 + 82 115.06 895 2 1 -1.03833 -0.269233 -144.45 + 82 312.504 898 2 0 -1.06559 -0.289695 -145.85 + 82 127.572 891 1 1 -1.73304 -0.704721 -174.45 + 82 344.179 896 1 0 -1.76421 -0.730099 -175.85 + 82 183.05 888 0 1 -2.3799 -1.19314 -204.45 + 82 103.176 894 0 0 -2.41494 -1.21152 -205.85 + 82 10.0256 954 1 1 11.0414 -8.49348 -174.45 + 82 119.942 955 1 1 11.05 -8.46029 -174.474 + 82 25.9729 956 1 1 11.25 -8.21588 -174.79 + 82 106.892 862 1 0 11.9506 -7.6098 -175.85 + 82 114.321 863 1 0 12.1499 -7.45 -176.041 + 82 28.8395 1083 1 0 56.7091 36.7871 -176.25 + 82 151.682 1084 1 0 56.7583 36.85 -176.165 + 82 145.466 1185 1 1 57.1425 37.3185 -174.85 + 82 202.834 1184 1 1 57.0499 37.3933 -174.549 + 82 74.7848 1085 1 0 56.661 37.1216 -175.85 + 82 76.5436 1023 1 0 74.3356 24.6585 -176.25 + 82 2.72994 1022 1 0 74.4485 24.65 -176.246 + 82 29.7232 1024 1 0 84.3658 24.9936 -176.25 + 82 205.664 862 3 0 3.46175 -7.55291 -116.25 + 82 116.79 895 1 1 -1.00638 -0.527957 -174.45 + 82 351.33 917 0 1 3.54919 -6.29018 -204.45 + 82 365.407 862 0 0 3.7326 -7.50305 -205.85 + 82 175.071 861 0 0 3.75479 -7.65 -206.005 + 82 147.837 860 0 0 3.80753 -7.85 -206.162 + 82 152.296 810 0 0 -5.97057 -18.0351 -206.25 + 82 23.1478 811 0 0 -6.20961 -17.85 -205.932 + 82 52.4522 864 0 1 -7.13674 -17.1284 -204.85 + 82 84.8664 863 0 1 -7.25014 -17.0407 -204.737 + 82 60.5501 862 0 1 -7.45 -16.9321 -204.554 + 82 18.5596 861 0 1 -7.79643 -16.8816 -204.45 + 82 55.3088 860 0 1 -7.85 -16.9047 -204.474 + 82 73.7831 859 0 1 -8.05 -17.0091 -204.552 + 82 212.201 858 0 1 -8.25 -17.1311 -204.598 + 82 188.647 857 0 1 -8.45 -17.2829 -204.65 + 82 71.644 856 0 1 -8.65016 -17.4191 -204.706 + 82 72.9999 855 0 1 -8.85 -17.5259 -204.768 + 82 53.1103 854 0 1 -9.05 -17.6303 -204.78 + 82 48.3203 853 0 1 -9.25 -17.6751 -204.736 + 82 53.9333 852 0 1 -9.45 -17.7005 -204.69 + 82 50.9891 851 0 1 -9.65017 -17.6455 -204.626 + 82 53.4892 850 0 1 -9.85015 -17.6348 -204.533 + 82 162.687 849 0 1 -10.0611 -17.5806 -204.45 + 82 147.958 848 0 1 -10.25 -17.3677 -204.563 + 82 173.968 847 0 1 -10.45 -17.1309 -204.667 + 82 40.9898 820 0 0 -9.97666 -15.9747 -205.85 + 82 192.783 821 0 0 -9.92114 -15.85 -205.98 + 82 3.61968 822 0 0 -9.85139 -15.65 -206.236 + 82 353.595 858 0 0 -16.4764 -8.43737 -206.25 + 82 153.482 859 0 0 -16.8575 -8.24991 -205.999 + 82 329.799 816 0 1 -16.7297 -7.77168 -204.85 + 82 19.4524 817 0 1 -16.65 -7.61936 -204.689 + 82 6.12734 918 0 1 3.65008 -6.67388 -204.836 + 82 101.756 894 1 1 -1.07122 -0.511552 -174.45 + 82 44.5805 898 1 0 -1.29815 -0.279038 -175.85 + 82 58.688 899 1 0 -1.32464 -0.25 -176.031 + 82 1.95395 875 0 1 -4.85069 3.85866 -204.45 + 82 116.995 876 0 1 -4.85 3.86139 -204.459 + 82 166.428 921 0 0 -4.73675 4.32648 -205.85 + 82 108.957 676 7 0 -50.1756 -44.6779 3.75 + 82 19.9393 677 7 0 -50.2102 -44.65 3.91297 +Number of digits in this event = 26 e- Event: 83 -Number of tracker hits in this event = 24 - 83 118.703 899 3 1 -0.227677 0.225385 -114.45 - 83 175.229 900 3 0 -0.229157 0.225299 -115.85 - 83 131.002 898 2 1 -0.268456 0.245052 -144.45 - 83 119.16 900 2 0 -0.275911 0.246956 -145.85 - 83 105.619 898 1 1 -0.44815 0.252693 -174.45 - 83 95.8112 901 1 0 -0.443394 0.252631 -175.85 - 83 151.547 898 0 1 -0.266244 0.304027 -204.45 - 83 110.022 901 0 0 -0.257191 0.290949 -205.85 - 83 145.345 434 1 0 24.6802 -93.2994 -176.25 - 83 59.483 809 1 1 -18.05 -105.381 -174.772 - 83 18.4673 375 10 0 49.1188 -105.147 93.75 - 83 173.085 374 10 0 49.0808 -105.15 93.7772 - 83 28.4636 1139 10 1 47.9234 -105.161 95.15 - 83 93.11 1138 10 1 47.85 -105.156 95.2453 - 83 3.10962 1137 10 1 47.65 -105.27 95.5403 - 83 72.3711 202 11 0 49.8137 -139.554 123.75 - 83 133.693 201 11 0 49.789 -139.75 123.863 - 83 76.0126 200 11 0 49.8075 -139.95 123.928 - 83 74.569 199 11 0 49.8889 -140.15 124.002 - 83 35.1193 198 11 0 49.8606 -140.35 124.096 - 83 78.3739 1148 11 1 49.7296 -141.1 125.15 - 83 114.949 1147 11 1 49.6499 -141.2 125.328 - 83 102.733 1146 11 1 49.45 -141.418 125.309 - 83 227.057 1145 11 1 49.25 -141.587 125.31 -Number of digits in this event = 11 +Number of tracker hits in this event = 13 + 83 208.703 900 5 1 0.05777 -0.149384 -54.45 + 83 135.227 899 5 0 0.0588414 -0.161182 -55.85 + 83 99.0863 900 4 1 0.0672367 -0.414812 -84.45 + 83 129.841 898 4 0 0.0731648 -0.436098 -85.85 + 83 154.167 901 3 1 0.269179 -0.905135 -114.45 + 83 221.56 895 3 0 0.283588 -0.927045 -115.85 + 83 117.663 902 2 1 0.546192 -1.41483 -144.45 + 83 154.07 893 2 0 0.561438 -1.43308 -145.85 + 83 114.312 904 1 1 0.862484 -1.795 -174.45 + 83 128.704 891 1 0 0.877618 -1.81758 -175.85 + 83 186.167 905 0 1 1.16048 -2.25497 -204.45 + 83 106.907 888 0 0 1.1722 -2.26987 -205.85 + 83 146.716 906 0 1 1.25 -2.34651 -204.535 +Number of digits in this event = 10 e- Event: 84 -Number of tracker hits in this event = 33 - 84 106.46 898 3 1 -0.265245 -0.571146 -114.45 - 84 141.286 897 3 0 -0.270048 -0.591163 -115.85 - 84 224.585 898 2 1 -0.362718 -1.02653 -144.45 - 84 86.488 894 2 0 -0.376079 -1.06358 -145.85 - 84 144.966 896 1 1 -0.660167 -1.83348 -174.45 - 84 113.029 890 1 0 -0.675187 -1.86507 -175.85 - 84 107.882 895 0 1 -0.990201 -2.51874 -204.45 - 84 111.004 887 0 0 -1.00316 -2.49982 -205.85 - 84 235.643 901 0 1 0.328933 -0.616975 -204.45 - 84 8.19484 900 0 1 0.25 -0.714702 -204.813 - 84 115.326 894 0 0 0.0831439 -1.11765 -205.85 - 84 9.5902 902 0 1 0.450072 -0.571065 -204.816 - 84 112.577 898 0 0 0.673797 -0.417921 -205.85 - 84 166.003 860 0 0 15.1388 -7.97724 -206.25 - 84 91.2107 859 0 0 15.2449 -8.05 -206.106 - 84 93.25 980 0 1 16.0881 -8.65609 -204.85 - 84 58.6361 981 0 1 16.25 -8.75075 -204.602 - 84 105.128 891 1 0 18.0555 -1.84679 -176.25 - 84 26.0147 989 1 1 17.8698 -1.49445 -174.85 - 84 100.018 988 1 1 17.85 -1.46259 -174.744 - 84 77.26 785 2 0 49.6972 -22.9381 -146.25 - 84 123.556 784 2 0 49.8875 -23.05 -146.085 - 84 47.9139 1175 2 1 55.1064 -24.3569 -144.85 - 84 43.8413 1176 2 1 55.25 -24.3945 -144.81 - 84 50.787 1177 2 1 55.45 -24.4328 -144.755 - 84 41.9864 1178 2 1 55.6502 -24.4691 -144.679 - 84 53.2095 1179 2 1 55.85 -24.466 -144.629 - 84 81.1653 1180 2 1 56.0502 -24.464 -144.621 - 84 222.257 1181 2 1 56.25 -24.4951 -144.64 - 84 62.5496 1182 2 1 56.45 -24.4801 -144.731 - 84 40.8621 775 2 0 57.6089 -24.9162 -145.85 - 84 130.696 1184 2 1 57.0445 -25.0649 -144.85 - 84 7.00235 1183 2 1 56.85 -24.9418 -144.493 +Number of tracker hits in this event = 13 + 84 101.725 899 5 1 -0.133345 -0.139676 -54.45 + 84 178.233 899 5 0 -0.14073 -0.141289 -55.85 + 84 245.132 898 4 1 -0.289286 -0.196752 -84.45 + 84 104.241 899 4 0 -0.298655 -0.194604 -85.85 + 84 183.65 897 3 1 -0.485934 -0.163777 -114.45 + 84 118.486 899 3 0 -0.471133 -0.145063 -115.85 + 84 105.663 899 2 1 -0.176254 0.228973 -144.45 + 84 149.14 900 2 0 -0.155202 0.24301 -145.85 + 84 302.378 901 1 1 0.284287 0.528969 -174.45 + 84 120.779 902 1 0 0.29884 0.550543 -175.85 + 84 101.924 902 0 1 0.602771 1.00831 -204.45 + 84 266.76 904 0 0 0.60694 1.03998 -205.85 + 84 9.12511 905 0 0 0.590161 1.05003 -206.235 Number of digits in this event = 9 e- Event: 85 -Number of tracker hits in this event = 15 - 85 102.71 900 5 1 0.173296 0.108725 -54.45 - 85 174.465 900 5 0 0.171087 0.107184 -55.85 - 85 176.849 900 4 1 0.129456 0.0802124 -84.45 - 85 160.544 900 4 0 0.130267 0.0847912 -85.85 - 85 116.185 900 3 1 0.143336 0.170363 -114.45 - 85 119.231 900 3 0 0.147497 0.173243 -115.85 - 85 121.162 900 2 1 0.238835 0.22832 -144.45 - 85 104.088 900 2 0 0.248496 0.224245 -145.85 - 85 116.04 901 1 1 0.443931 0.134462 -174.45 - 85 162.47 900 1 0 0.453512 0.126568 -175.85 - 85 32.3052 903 0 1 0.658556 -0.05 -204.698 - 85 115.385 899 0 0 0.668582 -0.0628691 -205.85 - 85 4.15071 93 8 1 -161.35 -10.6795 35.1551 - 85 110.14 329 13 0 -88.9878 -114.15 183.754 - 85 126.716 330 13 0 -89.0398 -114.15 183.969 -Number of digits in this event = 8 +Number of tracker hits in this event = 22 + 85 112.675 899 5 1 -0.120241 0.0939482 -54.45 + 85 95.8336 900 5 0 -0.123807 0.0977461 -55.85 + 85 143.993 899 4 1 -0.194806 0.152281 -84.45 + 85 251.307 900 4 0 -0.185445 0.155786 -85.85 + 85 107.461 900 2 1 0.0955126 0.0798781 -144.45 + 85 122.963 900 2 0 0.10126 0.0672533 -145.85 + 85 142.331 900 1 1 0.21274 -0.188107 -174.45 + 85 98.8113 899 1 0 0.21626 -0.199137 -175.85 + 85 179.352 901 0 1 0.296862 -0.37041 -204.45 + 85 115.213 898 0 0 0.295026 -0.366578 -205.85 + 85 54.0961 900 3 1 0.05 0.244787 -114.667 + 85 169.744 901 3 0 0.158894 0.332689 -115.85 + 85 127.612 912 2 1 2.5112 2.59676 -144.45 + 85 151.4 914 2 0 2.6027 2.98456 -145.85 + 85 97.5319 915 2 0 2.616 3.05 -146.088 + 85 128.037 919 1 1 3.88485 11.2461 -174.45 + 85 101.607 961 1 0 4.33726 12.2541 -175.85 + 85 45.2551 962 1 0 4.4244 12.45 -176.126 + 85 166.268 967 0 1 13.5117 33.0139 -204.45 + 85 18.5728 968 0 1 13.65 33.1779 -204.79 + 85 78.7518 1068 0 0 14.0109 33.7262 -205.85 + 85 56.0327 1069 0 0 14.0894 33.85 -206.085 +Number of digits in this event = 11 e- Event: 86 -Number of tracker hits in this event = 18 - 86 240.247 900 4 1 0.114598 -0.556181 -84.45 - 86 133.619 897 4 0 0.116956 -0.569623 -85.85 - 86 99.3989 900 3 1 0.153561 -0.854197 -114.45 - 86 130.65 895 3 0 0.158473 -0.865308 -115.85 - 86 202.605 901 2 1 0.270563 -1.06998 -144.45 - 86 103.929 894 2 0 0.269714 -1.07484 -145.85 - 86 220.308 900 1 1 0.224502 -1.16967 -174.45 - 86 159.801 894 1 0 0.223083 -1.18273 -175.85 - 86 163.967 900 0 1 0.164768 -1.44893 -204.45 - 86 107.891 892 0 0 0.141514 -1.45128 -205.85 - 86 95.9796 895 4 0 0.327529 -0.872753 -85.85 - 86 146.784 870 4 0 -4.04058 -6.03051 -86.25 - 86 158.532 879 4 1 -4.07553 -5.8203 -84.8498 - 86 1.44593 795 11 1 -21.046 -69.3978 125.55 - 86 195.311 794 11 1 -21.05 -69.3963 125.548 - 86 41.6585 737 8 1 -32.6096 4.58069 35.55 - 86 58.442 761 0 1 -27.65 95.8832 -204.697 - 86 137.104 762 0 1 -27.65 96.1177 -204.525 -Number of digits in this event = 14 +Number of tracker hits in this event = 21 + 86 110.594 899 4 1 -0.0657852 -0.526593 -84.45 + 86 278.559 902 3 1 0.605479 -1.92683 -114.45 + 86 131.647 890 3 0 0.636843 -1.99213 -115.85 + 86 206.198 906 2 1 1.2523 -3.34561 -144.45 + 86 128.522 883 2 0 1.28957 -3.42435 -145.85 + 86 314.086 910 1 1 2.09757 -5.01118 -174.45 + 86 119.769 874 1 0 2.14206 -5.09229 -175.85 + 86 115 915 0 1 3.05085 -6.73857 -204.45 + 86 127.166 866 0 0 3.08449 -6.80855 -205.85 + 86 1.93014 911 1 1 2.25004 -4.86245 -174.843 + 86 29.8498 875 1 0 2.79425 -4.86393 -175.85 + 86 109.059 876 1 0 2.83591 -4.84995 -175.913 + 86 168.854 877 1 0 2.98574 -4.64995 -176.04 + 86 112.725 878 1 0 3.13887 -4.45 -176.081 + 86 81.6466 884 2 0 1.43855 -3.08999 -145.85 + 86 23.8632 885 2 0 1.47861 -3.05 -146.161 + 86 113.566 929 1 1 5.98276 -0.75426 -174.45 + 86 108.37 897 1 0 5.84715 -0.637712 -175.85 + 86 131.312 920 0 1 4.06859 0.540818 -204.45 + 86 149.352 900 0 0 4.51991 0.175671 -205.85 + 86 8.48545 47 6 0 79.6983 -170.625 -26.25 +Number of digits in this event = 11 e- Event: 87 -Number of tracker hits in this event = 17 - 87 125.179 900 5 1 0.0836352 -0.17509 -54.45 - 87 121.962 899 5 0 0.0874049 -0.185707 -55.85 - 87 119.949 900 4 1 0.170884 -0.400271 -84.45 - 87 119.347 898 4 0 0.182374 -0.414434 -85.85 - 87 134.11 901 3 1 0.413243 -0.689584 -114.45 - 87 605.85 896 3 0 0.43617 -0.712145 -115.85 - 87 135.43 904 2 1 0.934331 -1.17197 -144.45 - 87 110.056 894 2 0 0.953136 -1.19641 -145.85 - 87 111.225 906 1 1 1.31331 -1.68382 -174.45 - 87 104.537 891 1 0 1.33343 -1.70338 -175.85 - 87 103.6 908 0 1 1.72171 -2.10821 -204.45 - 87 139.257 889 0 0 1.74037 -2.11978 -205.85 - 87 45.1078 527 2 1 -74.45 -57.5219 -144.72 - 87 23.2902 398 6 0 -151.286 -100.443 -26.25 - 87 10.1085 671 8 0 -137.648 -45.8456 33.75 - 87 101.199 656 0 0 -168.87 -48.65 -206.062 - 87 69.6579 50 0 1 -170.093 -48.3644 -204.85 -Number of digits in this event = 8 +Number of tracker hits in this event = 21 + 87 109.508 900 5 1 0.0903631 0.103807 -54.45 + 87 111.491 900 5 0 0.0884638 0.101483 -55.85 + 87 150.967 900 1 1 0.1157 0.178776 -174.45 + 87 127.376 900 1 0 0.122619 0.171241 -175.85 + 87 67.9085 900 2 0 -0.05 0.21988 -146.091 + 87 10.5965 901 2 0 -0.148051 0.250017 -146.211 + 87 63.6592 1177 2 0 60.9293 55.5685 -146.25 + 87 180.071 1178 2 0 61.0621 55.65 -146.205 + 87 0.0298623 1014 2 0 65.4346 22.8502 -146.25 + 87 150.327 1013 2 0 65.4346 22.85 -146.25 + 87 3.25742 672 0 1 -45.6427 10.0663 -204.45 + 87 86.3011 671 0 1 -45.65 10.0663 -204.463 + 87 62.6956 670 0 1 -45.85 10.1039 -204.629 + 87 78.2398 669 0 1 -46.05 10.1139 -204.702 + 87 32.6131 668 0 1 -46.2501 10.1731 -204.811 + 87 180.592 952 0 0 -47.76 10.5967 -205.85 + 87 187.907 953 0 0 -48.1681 10.65 -206.066 + 87 131.124 954 0 0 -48.7551 10.8501 -206.076 + 87 314.502 652 0 1 -49.4633 11.1261 -204.85 + 87 131.94 653 0 1 -49.4499 11.1229 -204.746 + 87 135.624 771 0 0 -33.0191 -25.7365 -206.25 +Number of digits in this event = 11 e- Event: 88 -Number of tracker hits in this event = 27 - 88 125.393 899 4 1 -0.205098 0.253746 -84.45 - 88 254.53 901 4 0 -0.209808 0.255492 -85.85 - 88 200.77 898 3 1 -0.286829 0.295946 -114.45 - 88 112.924 901 3 0 -0.291818 0.298146 -115.85 - 88 147.865 898 2 1 -0.408877 0.336222 -144.45 - 88 152.034 901 2 0 -0.415251 0.336608 -145.85 - 88 232.833 897 1 1 -0.552472 0.338192 -174.45 - 88 140.606 901 1 0 -0.556764 0.335611 -175.85 - 88 240.768 897 0 1 -0.636527 0.305845 -204.45 - 88 209.796 901 0 0 -0.637019 0.307808 -205.85 - 88 17.8438 806 4 0 -9.7664 -18.8109 -86.25 - 88 115.246 805 4 0 -9.74865 -18.8501 -86.2123 - 88 79.6928 804 4 0 -9.65721 -19.0501 -86.1294 - 88 95.7138 803 4 0 -9.59599 -19.2501 -86.1791 - 88 75.5098 802 4 0 -9.36096 -19.45 -86.1393 - 88 93.4371 801 4 0 -9.36829 -19.65 -86.0991 - 88 21.8681 800 4 0 -9.50555 -19.85 -86.2361 - 88 28.7319 1065 4 0 -4.82919 33.1906 -86.25 - 88 111.576 1066 4 0 -4.80338 33.2501 -86.23 - 88 80.3772 1067 4 0 -4.76267 33.4501 -86.1667 - 88 68.8219 1068 4 0 -4.7444 33.6501 -86.1701 - 88 24.6637 799 4 0 -7.94616 -20.05 -85.9234 - 88 115.152 898 0 1 -0.45 0.373296 -204.453 - 88 75.0511 899 0 0 -0.882697 -0.144187 -205.85 - 88 39.4834 898 0 0 -0.964256 -0.25 -206.132 - 88 5.49497 1225 1 0 -123.332 65.2449 -176.25 - 88 257.18 1226 1 0 -123.339 65.25 -176.247 -Number of digits in this event = 12 +Number of tracker hits in this event = 20 + 88 132.749 899 4 1 -0.155764 0.220546 -84.45 + 88 129.69 900 4 0 -0.16916 0.232838 -85.85 + 88 163.717 898 3 1 -0.435606 0.499398 -114.45 + 88 139.634 902 3 0 -0.433408 0.514252 -115.85 + 88 128.883 898 2 1 -0.392248 0.955339 -144.45 + 88 192.949 904 2 0 -0.370684 0.986338 -145.85 + 88 129.677 907 1 0 0.0510751 1.60908 -175.85 + 88 64.7691 904 0 1 1.04421 1.57992 -204.45 + 88 65.2381 905 0 1 1.05 1.57966 -204.696 + 88 140.736 907 0 0 1.07898 1.5778 -205.85 + 88 77.1922 899 1 1 -0.05 1.64232 -174.675 + 88 130.266 908 1 0 -0.144688 1.73639 -175.85 + 88 128.219 888 0 1 -2.35939 3.925 -204.45 + 88 107.572 920 0 0 -2.46679 4.09921 -205.85 + 88 77.8975 1187 0 0 7.18874 57.45 -206.15 + 88 291.312 934 0 1 7.04759 57.9466 -204.85 + 88 17.4441 935 0 1 7.05 58.13 -204.836 + 88 153.845 897 0 1 -0.497655 0.341392 -204.45 + 88 52.6672 904 0 0 -0.842768 0.929275 -205.85 + 88 71.6653 905 0 0 -0.878541 1.05 -206.081 +Number of digits in this event = 13 e- Event: 89 -Number of tracker hits in this event = 28 - 89 217.331 898 4 1 -0.280283 -0.142742 -84.45 - 89 283.319 899 4 0 -0.282087 -0.146771 -85.85 - 89 118.954 898 3 1 -0.304887 -0.227355 -114.45 - 89 129.986 899 3 0 -0.308088 -0.214759 -115.85 - 89 0.211999 897 2 1 -0.450441 0.12085 -144.45 - 89 86.2535 898 2 1 -0.45 0.120474 -144.451 - 89 75.7545 898 2 0 0.05 -0.326445 -146.088 - 89 92.3628 941 1 1 8.25436 -1.52281 -174.45 - 89 128.968 892 1 0 8.31383 -1.60917 -175.85 - 89 7.18317 891 1 0 8.32956 -1.65 -176.216 - 89 24.6803 946 0 1 9.32548 -3.62401 -204.45 - 89 84.3132 945 0 1 9.25 -3.65783 -204.523 - 89 29.06 944 0 1 9.05 -3.76417 -204.762 - 89 1.78324 878 0 0 8.22941 -4.44778 -205.85 - 89 129.373 877 0 0 8.22672 -4.45013 -205.854 - 89 226.774 876 0 0 7.98366 -4.65 -206.104 - 89 130.664 647 0 0 1.87746 -50.4727 -206.25 - 89 97.5984 646 0 0 2.014 -50.65 -206.148 - 89 67.523 645 0 0 2.19054 -50.85 -206.012 - 89 10.324 644 0 0 2.31933 -51.05 -205.865 - 89 15.6726 915 0 1 3.21926 -52.7059 -204.85 - 89 168.77 916 0 1 3.25 -52.7659 -204.813 - 89 172.588 917 0 1 3.45 -53.1708 -204.567 - 89 254.384 899 0 1 -0.131422 0.410631 -204.45 - 89 228.205 901 0 0 -0.141692 0.436884 -205.85 - 89 1.58346 746 0 0 -19.4864 -30.65 -205.868 - 89 194.79 800 0 1 -19.9558 -31.2335 -204.85 - 89 207.825 799 0 1 -20.05 -31.483 -204.703 -Number of digits in this event = 16 +Number of tracker hits in this event = 31 + 89 374.046 900 3 1 0.077579 -0.67769 -114.45 + 89 106.284 896 3 0 0.102179 -0.6855 -115.85 + 89 163.754 902 2 1 0.631452 -0.845789 -144.45 + 89 113.379 896 2 0 0.647755 -0.843774 -145.85 + 89 102.437 904 1 1 1.01422 -0.823532 -174.45 + 89 140.188 896 1 0 1.03689 -0.810801 -175.85 + 89 104.332 907 0 1 1.5533 -0.536346 -204.45 + 89 116.671 897 0 0 1.58593 -0.517016 -205.85 + 89 114.529 900 4 1 0.0500234 -0.369837 -84.6254 + 89 10.0318 764 3 0 -7.22935 -27.2436 -116.25 + 89 521.09 763 3 0 -7.23227 -27.25 -116.231 + 89 85.7506 859 3 1 -8.07724 -27.7417 -114.85 + 89 200.364 858 3 1 -8.25 -27.9386 -114.786 + 89 252.46 857 3 1 -8.45 -28.2783 -114.473 + 89 8.3898 1055 3 0 -13.8719 31.2004 -116.25 + 89 8.46502 905 3 0 0.631626 1.21039 -115.85 + 89 103.401 906 3 0 0.644919 1.25016 -115.875 + 89 45.7543 907 3 0 0.73307 1.45 -115.968 + 89 77.6542 908 3 0 0.807566 1.65 -115.997 + 89 75.9887 909 3 0 0.87469 1.85 -115.982 + 89 47.3995 910 3 0 0.926892 2.05 -115.941 + 89 45.5511 911 3 0 0.967872 2.25 -115.879 + 89 407.623 903 3 1 0.784747 6.57589 -114.85 + 89 2.5002 865 3 0 -12.9412 -6.9297 -115.85 + 89 6.25953 787 3 1 -22.6011 -15.1274 -114.85 + 89 5.67823 776 3 0 -33.701 -24.8376 -115.85 + 89 4.92446 728 3 1 -34.299 -26.4651 -114.85 + 89 284.637 899 0 1 -0.165267 -0.997269 -204.45 + 89 172.605 895 0 0 -0.108091 -0.979591 -205.85 + 89 141.942 892 0 0 0.150114 -1.47496 -205.85 + 89 59.9751 896 0 0 2.66191 -0.769538 -206.25 +Number of digits in this event = 11 e- Event: 90 -Number of tracker hits in this event = 10 - 90 191.908 900 5 1 0.0866118 0.0626568 -54.45 - 90 137.324 900 5 0 0.0838326 0.0674846 -55.85 - 90 110.143 899 2 1 -0.0690831 0.162702 -144.45 - 90 127.292 900 2 0 -0.0672308 0.164222 -145.85 - 90 228.29 900 0 1 0.153535 0.17104 -204.45 - 90 111.654 900 0 0 0.176142 0.183902 -205.85 - 90 171.577 903 5 0 0.829285 0.663987 -55.85 - 90 59.328 898 1 0 -0.209899 -0.346806 -175.85 - 90 116.789 897 0 1 -0.516116 2.39665 -204.45 - 90 166.295 909 0 0 -0.441028 2.04439 -205.85 -Number of digits in this event = 7 -e- -Event: 91 -Number of tracker hits in this event = 31 - 91 150.916 900 4 1 0.090135 -0.23856 -84.45 - 91 132.318 902 4 0 -0.0699016 0.465317 -85.85 - 91 10.3121 903 4 0 -0.116588 0.65 -86.2231 - 91 134.281 881 3 1 -3.79682 15.4034 -114.45 - 91 46.4376 981 3 0 -3.91171 16.3681 -115.85 - 91 77.9302 982 3 0 -3.91965 16.45 -115.977 - 91 196.619 868 2 1 -6.30507 36.9009 -144.45 - 91 124.147 867 2 1 -6.45 37.402 -144.709 - 91 26.0338 1099 2 0 -7.1462 39.9528 -145.85 - 91 81.213 1100 2 0 -7.17675 40.05 -145.908 - 91 62.4302 1101 2 0 -7.22594 40.25 -146.035 - 91 22.8419 1102 2 0 -7.28873 40.45 -146.22 - 91 29.363 808 1 1 -18.358 69.3597 -174.45 - 91 74.3063 807 1 1 -18.45 69.2934 -174.452 - 91 58.3591 806 1 1 -18.65 69.1255 -174.454 - 91 161.956 805 1 1 -18.85 68.9193 -174.5 - 91 235.909 804 1 1 -19.05 68.411 -174.621 - 91 62.7658 803 1 1 -19.25 67.7676 -174.807 - 91 96.7791 1216 1 0 -21.0743 63.4487 -175.85 - 91 87.2619 1215 1 0 -21.1658 63.25 -175.915 - 91 100.374 1214 1 0 -21.2897 63.05 -175.971 - 91 72.9807 1213 1 0 -21.4094 62.85 -176.092 - 91 19.6533 1212 1 0 -21.5397 62.65 -176.231 - 91 15.0109 657 0 1 -48.468 15.4333 -204.45 - 91 129.999 658 0 1 -48.45 15.391 -204.516 - 91 157.38 974 0 0 -48.1875 15.0386 -205.85 - 91 232.328 900 0 1 0.166038 -2.059 -204.45 - 91 42.8961 888 0 0 0.405371 -2.43307 -205.85 - 91 206.974 887 0 0 0.415264 -2.45 -205.914 - 91 124.663 890 0 0 0.136469 -2.03893 -205.85 - 91 218.103 1155 1 1 51.1739 -90.5048 -174.85 -Number of digits in this event = 15 -e- -Event: 92 -Number of tracker hits in this event = 13 - 92 742.238 899 6 0 0.05 -0.105522 -25.8561 - 92 120.321 901 5 1 0.443473 -1.56239 -54.45 - 92 175.133 892 5 0 0.42561 -1.58089 -55.85 - 92 117.105 899 4 1 -0.118146 -2.10927 -84.4504 - 92 117.457 889 4 0 -0.165018 -2.15084 -85.85 - 92 127.298 897 3 1 -0.582736 -2.99477 -114.45 - 92 130.089 884 3 0 -0.495972 -3.18478 -115.85 - 92 188.563 906 2 1 1.31003 -6.92469 -144.45 - 92 145.268 864 2 0 1.25271 -7.08848 -145.85 - 92 129.829 899 1 1 -0.148178 -10.019 -174.45 - 92 117.733 909 0 1 1.97578 -12.3373 -204.45 - 92 130.341 837 0 0 2.184 -12.4517 -205.85 - 92 201.419 902 5 1 0.45 -1.56732 -54.4627 -Number of digits in this event = 11 -e- -Event: 93 -Number of tracker hits in this event = 16 - 93 122.631 910 5 1 2.12498 -0.784096 -54.45 - 93 103.97 896 5 0 2.45161 -0.831536 -55.85 - 93 168.789 944 4 1 8.95536 -1.84939 -84.45 - 93 144.625 891 4 0 9.23274 -1.83737 -85.85 - 93 103.781 974 3 1 14.976 -1.29724 -114.45 - 93 19.2522 975 3 1 15.05 -1.30057 -114.761 - 93 119.559 893 3 0 15.2931 -1.29415 -115.85 - 93 123.035 1007 2 1 21.455 -1.49701 -144.45 - 93 113.833 892 2 0 21.839 -1.4745 -145.85 - 93 58.5915 1051 1 1 30.3638 -0.870124 -174.45 - 93 47.7254 1052 1 1 30.45 -0.846296 -174.69 - 93 122.031 896 1 0 30.8719 -0.761368 -175.85 - 93 3.01212 1109 0 1 42.0444 1.16553 -204.45 - 93 151.933 1110 0 1 42.05 1.16857 -204.461 - 93 121.849 907 0 0 42.7541 1.55849 -205.85 - 93 21.327 908 0 0 42.918 1.65 -206.171 +Number of tracker hits in this event = 18 + 90 114.767 899 4 1 -0.160843 -0.340847 -84.45 + 90 101.763 898 4 0 -0.163813 -0.356034 -85.85 + 90 102.967 899 3 1 -0.222598 -0.670519 -114.45 + 90 163.414 896 3 0 -0.230748 -0.680771 -115.85 + 90 129.156 898 2 1 -0.360881 -0.879938 -144.45 + 90 105.539 895 2 0 -0.381805 -0.89451 -145.85 + 90 126.773 896 1 1 -0.793936 -1.21507 -174.45 + 90 179.987 894 1 0 -0.804835 -1.23548 -175.85 + 90 137.161 894 0 1 -1.0505 -1.54921 -204.45 + 90 115.172 892 0 0 -1.06901 -1.56897 -205.85 + 90 7.25078 893 1 0 -0.801341 -1.25007 -176.227 + 90 25.1792 1455 2 0 42.7465 111.281 -146.25 + 90 124.632 1456 2 0 42.7536 111.35 -146.169 + 90 106.919 1457 2 0 42.8952 111.55 -146.124 + 90 43.7589 1458 2 0 43.2043 111.75 -146.204 + 90 140.594 1538 2 0 43.8511 127.908 -146.25 + 90 51.1735 1539 2 0 43.7919 127.95 -146.215 + 90 141.593 1510 2 0 2.49017 122.258 -146.25 Number of digits in this event = 10 e- +Event: 91 +Number of tracker hits in this event = 15 + 91 90.3268 900 4 1 0.145735 0.127008 -84.45 + 91 134.99 900 4 0 0.153233 0.139644 -85.85 + 91 111.936 901 3 1 0.307786 0.415534 -114.45 + 91 128.949 902 3 0 0.308126 0.470623 -115.85 + 91 126.889 901 2 1 0.315726 1.59441 -144.45 + 91 142.697 907 2 0 0.361409 1.63693 -145.85 + 91 147.431 907 1 1 1.54233 2.1348 -174.45 + 91 171.07 910 1 0 1.68797 2.15048 -175.85 + 91 225.231 922 0 1 4.51091 2.21383 -204.45 + 91 18.3558 910 0 0 4.6936 2.24848 -205.85 + 91 87.8154 911 0 0 4.70116 2.25 -205.908 + 91 55.0965 704 0 0 26.403 -39.05 -206.13 + 91 8.59417 1671 1 1 154.529 -137.406 -174.45 + 91 234.113 1672 1 1 154.55 -137.411 -174.472 + 91 175.831 1673 1 1 154.75 -137.312 -174.644 +Number of digits in this event = 10 +e- +Event: 92 +Number of tracker hits in this event = 17 + 92 73.4 902 4 1 0.634706 -1.26823 -84.45 + 92 59.1576 903 4 1 0.65 -1.27779 -84.6756 + 92 114.414 893 4 0 0.731251 -1.32648 -85.85 + 92 24.0344 913 3 1 2.84626 -2.6283 -114.45 + 92 207.856 914 3 1 2.85 -2.62926 -114.504 + 92 103.463 887 3 0 2.94492 -2.64409 -115.85 + 92 109.085 924 2 1 4.94505 -3.08546 -144.45 + 92 109.069 884 2 0 5.05164 -3.06413 -145.85 + 92 29.4584 934 1 1 7.04701 -2.60091 -174.45 + 92 90.9755 935 1 1 7.05 -2.60256 -174.537 + 92 239.605 887 1 0 7.10393 -2.62394 -175.85 + 92 117.598 942 0 1 8.58172 -3.01795 -204.45 + 92 130.401 885 0 0 8.67011 -3.00636 -205.85 + 92 73.0908 750 4 1 -29.9423 34.008 -84.85 + 92 132.812 1147 2 1 49.5537 170.74 -144.45 + 92 357.234 907 0 1 1.55298 -3.43659 -204.45 + 92 222.498 883 0 0 1.55712 -3.36484 -205.85 +Number of digits in this event = 7 +e- +Event: 93 +Number of tracker hits in this event = 39 + 93 130.564 900 5 1 0.176389 -0.121027 -54.45 + 93 104.864 899 5 0 0.182545 -0.135346 -55.85 + 93 126.367 901 4 1 0.299003 -0.419328 -84.45 + 93 139.736 898 4 0 0.314545 -0.43133 -85.85 + 93 306.899 903 3 1 0.653206 -0.680361 -114.45 + 93 377.378 896 3 0 0.678331 -0.687861 -115.85 + 93 110.863 905 2 1 1.17799 -0.739082 -144.45 + 93 127.573 896 2 0 1.2093 -0.745039 -145.85 + 93 115.335 908 1 1 1.83568 -0.844596 -174.45 + 93 180.253 895 1 0 1.86907 -0.855721 -175.85 + 93 149.626 912 0 1 2.55203 -1.02777 -204.45 + 93 194.472 895 0 0 2.58661 -1.03336 -205.85 + 93 135.483 900 6 1 0.0640706 -0.0500274 -24.5539 + 93 160.104 902 3 1 0.626988 -0.673573 -114.45 + 93 157.715 897 3 0 0.291276 -0.577176 -115.85 + 93 115.814 872 2 1 -5.55712 2.34484 -144.45 + 93 158.632 910 2 0 -5.67354 2.2438 -145.85 + 93 187.972 848 1 1 -10.2523 -3.53468 -174.45 + 93 65.854 847 1 1 -10.45 -3.47149 -174.548 + 93 57.8758 846 1 1 -10.65 -3.37563 -174.623 + 93 66.8801 845 1 1 -10.85 -3.29219 -174.678 + 93 52.7972 844 1 1 -11.05 -3.22884 -174.714 + 93 62.1304 843 1 1 -11.25 -3.1541 -174.759 + 93 6.30014 842 1 1 -11.45 -3.08883 -174.838 + 93 188.584 888 1 0 -14.0439 -2.3809 -175.85 + 93 300.918 889 1 0 -14.5973 -2.25 -175.963 + 93 334.726 890 1 0 -15.4514 -2.05 -176.162 + 93 350.191 642 0 1 -51.6478 16.7765 -204.45 + 93 93.3826 973 0 0 -51.499 14.8295 -205.85 + 93 62.3207 972 0 0 -51.497 14.65 -206.048 + 93 12.355 895 3 0 0.811815 -0.85 -116.209 + 93 122.126 923 2 1 4.79953 -4.73666 -144.45 + 93 159.761 875 2 0 4.71759 -4.8895 -145.85 + 93 127.969 911 1 1 2.30438 -8.22507 -174.45 + 93 7.20123 910 1 1 2.25 -8.18684 -174.83 + 93 96.8206 859 1 0 2.09202 -8.07322 -175.85 + 93 64.9217 860 1 0 2.06227 -8.05 -176.04 + 93 125.083 886 0 1 -2.84049 -5.18031 -204.45 + 93 134.968 875 0 0 -2.85277 -4.93994 -205.85 +Number of digits in this event = 24 +e- Event: 94 -Number of tracker hits in this event = 51 - 94 111.46 900 5 1 0.179139 0.224589 -54.45 - 94 166.949 900 5 0 0.183399 0.227495 -55.85 - 94 120.12 901 4 1 0.264993 0.304334 -84.45 - 94 120.774 901 4 0 0.272633 0.307755 -85.85 - 94 135.92 902 3 1 0.482245 0.335545 -114.45 - 94 171.944 901 3 0 0.482441 0.336857 -115.85 - 94 308.74 901 2 1 0.44259 0.349318 -144.45 - 94 101.982 901 2 0 0.430044 0.341483 -145.85 - 94 256.525 900 1 1 0.246783 0.209774 -174.45 - 94 118.099 900 1 0 0.229446 0.195587 -175.85 - 94 122.586 899 0 1 -0.112355 -0.0857574 -204.45 - 94 104.701 899 0 0 -0.127293 -0.0908631 -205.85 - 94 246.596 899 4 1 -0.141714 0.203392 -84.4503 - 94 275.755 900 4 0 0.05 0.158128 -85.9437 - 94 234.331 918 3 1 3.66331 -3.0411 -114.45 - 94 4.02186 919 3 1 3.85 -3.12612 -114.829 - 94 65.7822 883 3 0 4.37666 -3.39412 -115.85 - 94 55.246 882 3 0 4.47593 -3.45 -116.053 - 94 75.8595 996 2 1 19.2966 -10.1434 -144.45 - 94 70.71 997 2 1 19.45 -10.2406 -144.67 - 94 336.243 846 2 0 20.5062 -10.6686 -145.85 - 94 85.129 1125 1 1 45.0632 -11.618 -174.45 - 94 68.0126 1126 1 1 45.25 -11.6626 -174.655 - 94 95.8521 840 1 0 46.13 -11.8984 -175.85 - 94 91.577 1246 0 1 69.2859 -19.3789 -204.45 - 94 19.6292 1247 0 1 69.45 -19.3798 -204.804 - 94 157.479 803 0 0 70.0208 -19.3469 -205.85 - 94 157.272 897 3 1 -0.52308 -0.665448 -114.45 - 94 118.659 896 3 0 -0.510564 -0.70361 -115.85 - 94 100.52 899 2 1 -0.0954107 -1.61109 -144.45 - 94 103.559 891 2 0 -0.0688856 -1.66834 -145.85 - 94 109.125 902 1 1 0.553739 -2.95179 -174.45 - 94 113.424 884 1 0 0.543965 -3.0942 -175.85 - 94 141.679 901 0 1 0.296988 -6.03201 -204.45 - 94 127.125 869 0 0 0.361618 -6.12499 -205.85 - 94 314.068 883 2 0 -53.0917 -3.44717 -146.25 - 94 22.2055 884 2 0 -54.0304 -3.25 -145.876 - 94 82.1198 604 2 1 -59.1389 -2.56815 -144.85 - 94 50.9659 603 2 1 -59.25 -2.54765 -144.817 - 94 33.4584 602 2 1 -59.4502 -2.55231 -144.803 - 94 255.505 890 2 0 -61.5898 -2.04846 -145.85 - 94 53.8105 896 3 1 -0.65 -0.792989 -114.533 - 94 96.7692 895 3 1 -0.85 -0.860924 -114.612 - 94 22.587 894 3 1 -1.05 -0.760736 -114.799 - 94 37.43 900 3 0 -1.41904 0.158399 -115.85 - 94 65.0037 902 3 0 -1.42649 0.450117 -116.065 - 94 116.168 903 3 0 -1.44986 0.65 -116.151 - 94 255.375 904 3 0 -1.50336 0.850106 -116.192 - 94 312.262 905 3 0 -1.44221 1.05 -116.194 - 94 122.352 906 3 0 -1.39482 1.25 -116.05 - 94 24.6959 503 0 0 -157.583 -79.25 -206.121 -Number of digits in this event = 23 +Number of tracker hits in this event = 34 + 94 134.446 899 5 1 -0.0675408 -0.120295 -54.45 + 94 122.027 899 5 0 -0.0721009 -0.123757 -55.85 + 94 437.45 899 4 1 -0.145132 -0.152155 -84.45 + 94 232.437 899 4 0 -0.147386 -0.154717 -85.85 + 94 105.601 899 3 1 -0.180231 -0.196143 -114.45 + 94 113.545 899 3 0 -0.183889 -0.185133 -115.85 + 94 154.636 900 2 0 -0.22714 0.05 -145.91 + 94 125.728 898 1 1 -0.296168 0.320031 -174.45 + 94 103.469 901 1 0 -0.299859 0.340164 -175.85 + 94 114.729 898 0 1 -0.38913 0.742262 -204.45 + 94 127.483 903 0 0 -0.395589 0.779001 -205.85 + 94 150.614 899 6 1 -0.05 0.0791948 -24.541 + 94 37.4307 898 6 1 -0.25 0.161205 -24.8099 + 94 403.889 899 6 0 -1.56984 -0.0500262 -25.8624 + 94 25.3918 898 6 0 -1.70125 -0.25 -26.0827 + 94 39.463 894 4 0 -0.0947852 -1.14047 -85.85 + 94 102.639 893 4 0 -0.0948761 -1.25 -85.9923 + 94 95.5046 888 3 1 -2.36239 -0.561246 -114.45 + 94 116.69 897 3 0 -2.39951 -0.573265 -115.85 + 94 121.145 883 2 1 -3.27991 -1.08146 -144.45 + 94 114.152 894 2 0 -3.46735 -1.05415 -145.85 + 94 120.159 865 1 1 -6.93996 -1.23167 -174.45 + 94 143.953 894 1 0 -7.30684 -1.10076 -175.85 + 94 166.111 825 0 1 -14.9723 1.71546 -204.45 + 94 415.105 909 0 0 -15.203 1.99725 -205.85 + 94 37.2096 910 0 0 -15.25 2.05 -206.112 + 94 151.911 1449 2 0 -159.254 110.005 -146.25 + 94 80.9336 98 2 1 -160.407 110.315 -144.85 + 94 364.887 97 2 1 -160.55 110.331 -144.667 + 94 7.7678 96 2 1 -160.75 110.394 -144.484 + 94 51.846 1458 2 0 -160.438 111.809 -145.85 + 94 69.1722 1459 2 0 -160.387 111.95 -145.987 + 94 391.375 127 1 1 -154.649 115.554 -174.45 + 94 172.39 128 1 1 -154.55 115.612 -174.564 +Number of digits in this event = 20 e- Event: 95 -Number of tracker hits in this event = 35 - 95 133.623 901 5 1 0.37724 0.612676 -54.45 - 95 98.2826 902 5 0 0.393775 0.6356 -55.85 - 95 124.218 903 4 1 0.729603 1.09343 -84.45 - 95 128.482 905 4 0 0.737655 1.1109 -85.85 - 95 111.2 904 3 1 0.893539 1.49125 -114.45 - 95 403.191 907 3 0 0.896202 1.50294 -115.85 - 95 125.782 904 2 1 0.959004 1.71057 -144.45 - 95 164.764 908 2 0 0.969457 1.72098 -145.85 - 95 116.638 905 1 1 1.18655 1.94608 -174.45 - 95 104.986 909 1 0 1.19149 1.96322 -175.85 - 95 139.585 906 0 1 1.27801 2.30771 -204.45 - 95 159.441 911 0 0 1.27382 2.33271 -205.85 - 95 201.9 906 2 1 1.40537 2.0385 -144.45 - 95 23.245 905 2 1 1.25 2.33384 -144.818 - 95 65.8955 914 2 0 0.617183 2.96336 -145.85 - 95 96.6182 915 2 0 0.499113 3.05 -146.02 - 95 137.621 789 1 1 -22.2183 12.3895 -174.45 - 95 150.408 963 1 0 -22.5236 12.7137 -175.85 - 95 70.7325 907 2 1 1.49439 1.89567 -144.45 - 95 80.4606 908 2 1 1.65 1.78298 -144.636 - 95 0.789433 909 2 1 1.85 1.62141 -144.844 - 95 20.7833 905 2 0 2.57278 1.08164 -145.85 - 95 99.0724 904 2 0 2.62133 1.05 -145.919 - 95 143.478 1011 1 1 22.4105 -12.8008 -174.45 - 95 24.0079 1012 1 1 22.45 -12.926 -174.79 - 95 112.728 833 1 0 22.6542 -13.2865 -175.85 - 95 136.479 1057 0 1 31.4927 -18.7959 -204.45 - 95 76.7234 799 0 0 31.8543 -20.0984 -205.85 - 95 120.574 798 0 0 31.8977 -20.25 -206.017 - 95 28.157 797 0 0 31.8129 -20.45 -206.177 - 95 339.312 694 0 0 41.466 -41.0838 -206.25 - 95 95.9474 1107 0 1 41.5006 -41.4271 -204.85 - 95 249.196 1106 0 1 41.45 -41.466 -204.682 - 95 51.9424 695 0 0 41.5694 -41.05 -206.222 - 95 26.9716 1404 1 0 36.5923 100.95 -176.237 -Number of digits in this event = 17 +Number of tracker hits in this event = 13 + 95 15.2309 900 5 1 0.0909451 0.05 -54.781 + 95 130.14 900 5 0 0.0933717 0.0547926 -55.85 + 95 114.881 900 4 1 0.154803 0.192417 -84.45 + 95 169.359 900 4 0 0.149311 0.197241 -85.85 + 95 133.376 901 3 0 0.0605302 0.32474 -115.85 + 95 139.86 902 2 1 0.477664 0.710445 -144.45 + 95 185.876 903 2 0 0.485897 0.750351 -145.85 + 95 223.901 901 1 1 0.318029 1.58954 -174.45 + 95 171.795 908 1 0 0.302445 1.66538 -175.85 + 95 406.823 899 0 1 -0.117579 3.13397 -204.45 + 95 480.688 915 0 0 -0.100662 3.17824 -205.85 + 95 43.462 916 0 0 -0.162333 3.25002 -206.079 + 95 89.3604 914 0 0 -0.315815 3.05 -205.968 +Number of digits in this event = 11 e- Event: 96 -Number of tracker hits in this event = 45 - 96 117.787 900 5 1 0.0731196 0.160017 -54.45 - 96 256.004 900 5 0 0.0739064 0.168305 -55.85 - 96 128.978 900 4 1 0.111447 0.332232 -84.45 - 96 133.451 901 4 0 0.119625 0.340038 -85.85 - 96 161.39 901 3 1 0.263092 0.484713 -114.45 - 96 169.865 902 3 0 0.276941 0.504221 -115.85 - 96 104.954 902 2 1 0.562384 0.867702 -144.45 - 96 111.712 904 2 0 0.581132 0.875715 -145.85 - 96 134.29 904 1 1 0.952147 1.09127 -174.45 - 96 213.797 905 1 0 0.961993 1.10777 -175.85 - 96 128.885 905 0 1 1.14883 1.44933 -204.45 - 96 128.321 907 0 0 1.14465 1.466 -205.85 - 96 122.999 899 5 0 -0.0730111 -0.128039 -55.85 - 96 128.707 893 4 1 -1.35839 -2.14066 -84.45 - 96 103.302 890 4 0 -1.63184 -2.03615 -85.85 - 96 89.2696 862 3 1 -7.56683 0.0998777 -114.45 - 96 35.1984 861 3 1 -7.65 0.0964874 -114.717 - 96 184.873 900 3 0 -8.0128 0.0965242 -115.85 - 96 143.373 814 2 1 -17.0761 0.528974 -144.45 - 96 185.1 901 2 0 -17.6475 0.434125 -145.85 - 96 9.26394 757 1 1 -28.6367 -0.720783 -174.45 - 96 241.916 756 1 1 -28.65 -0.716084 -174.477 - 96 116.066 898 1 0 -29.3111 -0.449093 -175.85 - 96 50.6499 691 0 1 -41.7799 5.52906 -204.45 - 96 112.819 690 0 1 -41.8502 5.56497 -204.582 - 96 128.521 929 0 0 -42.5078 5.91224 -205.85 - 96 127.521 891 4 1 -1.83191 2.83788 -84.45 - 96 123.648 912 4 0 -1.5579 2.52483 -85.85 - 96 23.3973 911 4 0 -1.49423 2.45 -86.1754 - 96 94.4238 920 3 1 4.11239 -5.51454 -114.45 - 96 128.63 921 3 1 4.25 -5.6115 -114.767 - 96 138.089 870 3 0 4.74252 -5.92365 -115.85 - 96 183.67 996 2 1 19.2975 -14.3161 -144.45 - 96 13.7522 997 2 1 19.45 -14.4032 -144.814 - 96 161.34 826 2 0 20.0126 -14.7211 -145.85 - 96 80.1589 1066 1 1 33.3804 -22.956 -174.45 - 96 108.702 1067 1 1 33.45 -22.9659 -174.594 - 96 141.969 784 1 0 34.0337 -23.094 -175.85 - 96 87.9335 1129 0 1 46.0142 -26.4195 -204.45 - 96 188.36 1130 0 1 46.0502 -26.3834 -204.489 - 96 123.061 1131 0 1 46.25 -26.1874 -204.706 - 96 30.6611 774 0 0 47.2494 -25.1147 -205.85 - 96 124.797 775 0 0 47.3095 -25.05 -205.918 - 96 119.569 776 0 0 47.4997 -24.8498 -206.12 - 96 127.412 969 7 0 -98.902 13.935 3.75 -Number of digits in this event = 29 +Number of tracker hits in this event = 15 + 96 122.832 899 4 1 -0.112608 -0.201403 -84.45 + 96 110.798 899 4 0 -0.112104 -0.219622 -85.85 + 96 140.253 899 3 1 -0.107884 -0.575608 -114.45 + 96 173.324 897 3 0 -0.114853 -0.597187 -115.85 + 96 119.499 898 2 1 -0.263143 -1.05897 -144.45 + 96 199.873 894 2 0 -0.273627 -1.09009 -145.85 + 96 101.206 897 1 1 -0.4886 -1.71902 -174.45 + 96 116.03 891 1 0 -0.494089 -1.75637 -175.85 + 96 111.07 897 0 1 -0.600305 -2.54001 -204.45 + 96 239.488 887 0 0 -0.596982 -2.58094 -205.85 + 96 18.4132 895 2 0 -0.335538 -1.05 -146.196 + 96 66.9149 975 2 0 2.15703 15.1776 -146.25 + 96 66.6371 974 2 0 2.29143 15.0499 -146.131 + 96 127.737 899 5 1 -0.0676281 -0.0500347 -54.762 + 96 194.034 801 0 0 10.3569 -19.7586 -206.25 +Number of digits in this event = 9 e- Event: 97 -Number of tracker hits in this event = 12 - 97 200.049 899 4 1 -0.099807 -0.244572 -84.45 - 97 204.078 899 4 0 -0.107595 -0.243283 -85.85 - 97 129.91 898 3 1 -0.255466 -0.220431 -114.45 - 97 102.317 899 3 0 -0.258502 -0.217633 -115.85 - 97 169.825 898 2 1 -0.333133 -0.185513 -144.45 - 97 231.337 899 2 0 -0.32716 -0.190582 -145.85 - 97 114.889 899 1 1 -0.202655 -0.283381 -174.45 - 97 142.499 898 1 0 -0.192582 -0.282255 -175.85 - 97 308.159 898 4 1 -0.25 -0.221039 -84.6606 - 97 293.87 897 4 1 -0.450063 -0.263426 -84.6887 - 97 169.558 896 5 0 2.75462 -0.669727 -55.85 - 97 344.554 900 6 1 0.05 -0.117092 -24.4976 -Number of digits in this event = 12 +Number of tracker hits in this event = 28 + 97 149.169 899 4 1 -0.108396 0.0667926 -84.45 + 97 126.512 900 4 0 -0.112558 0.0616718 -85.85 + 97 113.436 899 3 1 -0.230284 -0.133238 -114.45 + 97 143.265 899 3 0 -0.257408 -0.157331 -115.85 + 97 124.592 896 2 1 -0.765145 -0.660927 -144.45 + 97 108.531 896 2 0 -0.821973 -0.700476 -145.85 + 97 111.321 889 1 1 -2.06469 -1.48319 -174.45 + 97 114.285 892 1 0 -2.15025 -1.51498 -175.85 + 97 114.653 880 0 1 -3.90677 -2.13663 -204.45 + 97 103.577 889 0 0 -3.99756 -2.18079 -205.85 + 97 22.2185 899 5 1 -0.05 0.120893 -54.781 + 97 61.0073 903 5 0 -0.726082 0.709721 -55.85 + 97 56.2118 904 5 0 -0.848114 0.85 -56.0455 + 97 35.3876 899 6 1 -0.143722 -0.05 -24.5827 + 97 86.9513 1531 10 0 -156.734 126.502 93.75 + 97 305.285 1530 10 0 -156.657 126.35 93.8197 + 97 11.3129 863 4 1 -7.45 -98.3924 -84.4968 + 97 109.001 1039 9 0 -53.1239 27.9056 63.75 + 97 60.1648 1038 9 0 -53.4252 27.85 64.0467 + 97 17.7489 624 9 1 -55.2255 26.9583 65.15 + 97 71.3443 623 9 1 -55.2501 26.9456 65.1636 + 97 76.6255 622 9 1 -55.45 26.9207 65.2469 + 97 49.1096 621 9 1 -55.65 26.9305 65.3646 + 97 56.8687 620 9 1 -55.85 26.9287 65.4126 + 97 129.535 619 9 1 -56.0501 26.9148 65.5043 + 97 70.298 618 9 1 -56.2501 27.0409 65.3074 + 97 102.674 1032 9 0 -57.0067 26.5779 64.15 + 97 434.987 1031 9 0 -57.1382 26.45 63.995 +Number of digits in this event = 9 e- Event: 98 -Number of tracker hits in this event = 11 - 98 119.344 899 4 1 -0.06466 0.300434 -84.45 - 98 117.546 901 4 0 -0.0689417 0.310137 -85.85 - 98 188.633 899 3 1 -0.171535 0.50474 -114.45 - 98 118.804 902 3 0 -0.18046 0.520672 -115.85 - 98 120.452 898 2 1 -0.380776 0.813798 -144.45 - 98 104.113 903 2 0 -0.39796 0.826658 -145.85 - 98 113.913 896 1 1 -0.767621 1.09372 -174.45 - 98 177.232 905 1 0 -0.777918 1.10321 -175.85 - 98 120.291 894 0 1 -1.07227 1.25431 -204.45 - 98 145.303 906 0 0 -1.08186 1.25999 -205.85 - 98 9.90433 1400 8 1 100.192 -112.82 35.15 -Number of digits in this event = 6 +Number of tracker hits in this event = 14 + 98 123.164 900 5 1 0.0930172 0.128079 -54.45 + 98 136.411 900 5 0 0.0926068 0.127708 -55.85 + 98 149.196 900 4 1 0.0906451 0.121698 -84.45 + 98 118.383 900 4 0 0.0807392 0.11892 -85.85 + 98 127.46 899 3 1 -0.137604 0.0643535 -114.45 + 98 115.83 900 3 0 -0.140343 0.0634263 -115.85 + 98 118.881 898 1 1 -0.373349 0.0796292 -174.45 + 98 123.218 900 1 0 -0.38291 0.0800373 -175.85 + 98 205.712 897 0 1 -0.583244 0.123597 -204.45 + 98 388.234 900 0 0 -0.591455 0.131984 -205.85 + 98 38.4187 896 0 1 -0.65 0.0567716 -204.73 + 98 104.825 901 0 0 -1.27941 0.25 -206.169 + 98 3.37194 883 0 0 -22.6215 -3.44415 -206.25 + 98 96.9236 882 0 0 -22.629 -3.45004 -206.242 +Number of digits in this event = 9 e- Event: 99 -Number of tracker hits in this event = 12 - 99 126.578 899 5 1 -0.10986 -0.115288 -54.45 - 99 152.868 899 5 0 -0.127698 -0.125244 -55.85 - 99 151.531 897 4 1 -0.453266 -0.327622 -84.45 - 99 122.499 898 4 0 -0.472279 -0.345252 -85.85 - 99 157.622 895 3 1 -0.870596 -0.858385 -114.45 - 99 118.145 895 3 0 -0.891304 -0.877432 -115.85 - 99 95.69 893 2 1 -1.29106 -1.27889 -144.45 - 99 120.975 893 2 0 -1.30974 -1.30099 -145.85 - 99 123.403 891 1 1 -1.71449 -1.77344 -174.45 - 99 180.535 891 1 0 -1.72834 -1.79146 -175.85 - 99 116.332 890 0 1 -2.00035 -2.12774 -204.45 - 99 132.39 889 0 0 -2.01252 -2.15812 -205.85 -Number of digits in this event = 11 +Number of tracker hits in this event = 20 + 99 140.719 900 5 1 0.216307 -0.0732295 -54.45 + 99 276.877 899 5 0 0.22205 -0.0695402 -55.85 + 99 101.804 901 3 1 0.42475 0.0917212 -114.45 + 99 150.133 900 3 0 0.428489 0.0978264 -115.85 + 99 119.896 902 2 1 0.491644 0.173745 -144.45 + 99 116.926 900 2 0 0.4894 0.17398 -145.85 + 99 99.722 902 1 1 0.454055 0.169965 -174.45 + 99 110.986 900 1 0 0.460324 0.154115 -175.85 + 99 133.329 902 0 1 0.578114 -0.182074 -204.45 + 99 145.818 899 0 0 0.576984 -0.204802 -205.85 + 99 135.721 963 3 0 -8.08522 12.7808 -116.25 + 99 150.955 901 5 1 0.373288 -0.0563252 -54.45 + 99 102.849 898 5 0 -0.341411 -0.25 -55.9364 + 99 39.0505 1103 5 0 10.1016 40.8041 -56.25 + 99 36.9109 358 3 0 -162.884 -108.356 -116.25 + 99 95.0368 359 3 0 -162.978 -108.35 -116.207 + 99 70.2169 360 3 0 -163.185 -108.15 -115.988 + 99 80.5746 361 3 0 -163.231 -107.95 -115.887 + 99 2.29818 80 3 1 -164.146 -106.038 -114.85 + 99 211.481 79 3 1 -164.15 -106.029 -114.845 +Number of digits in this event = 9 Run terminated. Run Summary Number of events processed : 100 - User=25.59s Real=25.69s Sys=0.01s + User=9.26s Real=9.31s Sys=0s 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.32 MB +Dynamic pools deleted: 19 / Total memory freed: 0.35 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/advanced/hadrontherapy/History b/examples/advanced/hadrontherapy/History index e4d408ae6c..ac838b7d8f 100644 --- a/examples/advanced/hadrontherapy/History +++ b/examples/advanced/hadrontherapy/History @@ -8,10 +8,13 @@ http://g4advancedexamples.lngs.infn.it/Examples/hadrontherapy History file of the Hadrontherapy application ==================================================== -19.11.2016 A.Dotti Tag: hadrontherapy-V10-02-05 - - explicit set of SD to manager - -07.11.2016 G.Folger Tag: hadrontherapy-V10-02-04 +07.02.2017 G.A.P.Cirrone, G.Petringa; Tag: hadrontherapy-V10-02-06 + - Physics list corrected +31.01.2017 G.A.P.Cirrone, L.Pandola, J.Pipek + - Fixed Bugzilla #1879 (remaining edge cases) +19.11.2016 A.Dotti; Tag: hadrontherapy-V10-02-05 + - explicit set of SD to manager +07.11.2016 G.Folger; Tag: hadrontherapy-V10-02-04 - Remove direct use of theParticleIterator, and use GetParticleIterator() method. 03.11.2016 L. Pandola and J. Pipek. Tag: hadrontherapy-V10-02-03 - Fixed Bugzilla #1879 diff --git a/examples/advanced/hadrontherapy/src/HadrontherapyElectricTabulatedField3D.cc b/examples/advanced/hadrontherapy/src/HadrontherapyElectricTabulatedField3D.cc index 219493b05e..40ee613419 100755 --- a/examples/advanced/hadrontherapy/src/HadrontherapyElectricTabulatedField3D.cc +++ b/examples/advanced/hadrontherapy/src/HadrontherapyElectricTabulatedField3D.cc @@ -32,30 +32,30 @@ namespace{ G4Mutex MyHadrontherapyLockEField=G4MUTEX_INITIALIZER; } -HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( const char* filename, G4double exOffset, G4double eyOffset, G4double ezOffset) +HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( const char* filename, G4double exOffset, G4double eyOffset, G4double ezOffset) :feXoffset(exOffset),feYoffset(eyOffset),feZoffset(ezOffset),einvertX(false),einvertY(false),einvertZ(false) -{ +{ //The format file is: X Y Z Ex Ey Ez G4double ElenUnit= cm; - G4double EfieldUnit= volt/m; + G4double EfieldUnit= volt/m; G4cout << "\n-----------------------------------------------------------" << "\n Electric field" << "\n-----------------------------------------------------------"; - + G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl; G4AutoLock lock(&MyHadrontherapyLockEField); ifstream file( filename ); // Open the file for reading. - + // Ignore first blank line char ebuffer[256]; file.getline(ebuffer,256); - - // Read table dimensions + + // Read table dimensions file >> Enx >> Eny >> Enz; // Note dodgy order - G4cout << " [ Number of values x,y,z: " + G4cout << " [ Number of values x,y,z: " << Enx << " " << Eny << " " << Enz << " ] " << endl; @@ -86,7 +86,7 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co for (iy=0; iy> Exval >> Eyval >> Ezval >> Ex >> Ey >> Ez; - + if ( ix==0 && iy==0 && iz==0 ) { Eminx = Exval * ElenUnit; Eminy = Eyval * ElenUnit; @@ -107,30 +107,30 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co G4cout << "\n ---> ... done reading " << endl; - // G4cout << " Read values of field from file " << filename << endl; + // G4cout << " Read values of field from file " << filename << endl; G4cout << " ---> assumed the order: x, y, z, Ex, Ey, Ez " - << "\n ---> Min values x,y,z: " + << "\n ---> Min values x,y,z: " << Eminx/cm << " " << Eminy/cm << " " << Eminz/cm << " cm " - << "\n ---> Max values x,y,z: " + << "\n ---> Max values x,y,z: " << Emaxx/cm << " " << Emaxy/cm << " " << Emaxz/cm << " cm " - << "\n ---> The field will be offset in x by " << exOffset/cm << " cm " - << "\n ---> The field will be offset in y by " << eyOffset/cm << " cm " + << "\n ---> The field will be offset in x by " << exOffset/cm << " cm " + << "\n ---> The field will be offset in y by " << eyOffset/cm << " cm " << "\n ---> The field will be offset in z by " << ezOffset/cm << " cm " << endl; // Should really check that the limits are not the wrong way around. - if (Emaxx < Eminx) {swap(Emaxx,Eminx); einvertX = true;} - if (Emaxy < Eminy) {swap(Emaxy,Eminy); einvertY = true;} - if (Emaxz < Eminz) {swap(Emaxz,Eminz); einvertZ = true;} - G4cout << "\nAfter reordering if neccesary" - << "\n ---> Min values x,y,z: " + if (Emaxx < Eminx) {swap(Emaxx,Eminx); einvertX = true;} + if (Emaxy < Eminy) {swap(Emaxy,Eminy); einvertY = true;} + if (Emaxz < Eminz) {swap(Emaxz,Eminz); einvertZ = true;} + G4cout << "\nAfter reordering if neccesary" + << "\n ---> Min values x,y,z: " << Eminx/cm << " " << Eminy/cm << " " << Eminz/cm << " cm " - << " \n ---> Max values x,y,z: " + << " \n ---> Max values x,y,z: " << Emaxx/cm << " " << Emaxy/cm << " " << Emaxz/cm << " cm "; dx1 = Emaxx - Eminx; dy1 = Emaxy - Eminy; dz1 = Emaxz - Eminz; - G4cout << "\n ---> Dif values x,y,z (range): " + G4cout << "\n ---> Dif values x,y,z (range): " << dx1/cm << " " << dy1/cm << " " << dz1/cm << " cm " << "\n-----------------------------------------------------------" << endl; } @@ -138,19 +138,14 @@ HadrontherapyElectricTabulatedField3D::HadrontherapyElectricTabulatedField3D( co void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[4], G4double *Efield ) const { - G4double x1 = Epoint[0] + feXoffset; - G4double y1 = Epoint[1] + feYoffset; - G4double z1 = Epoint[2] + feZoffset; + G4double x1 = Epoint[0] + feXoffset; + G4double y1 = Epoint[1] + feYoffset; + G4double z1 = Epoint[2] + feZoffset; - // Check that the point is within the defined region - if ( x1>Eminx && x1Eminy && y1Eminz && z1(std::floor(exdindex)); G4int eyindex = static_cast(std::floor(eydindex)); G4int ezindex = static_cast(std::floor(ezdindex)); - + + if ((exindex < 0) || (exindex >= Enx - 1) || + (eyindex < 0) || (eyindex >= Eny - 1) || + (ezindex < 0) || (ezindex >= Enz - 1)) + { + Efield[0] = 0.0; + Efield[1] = 0.0; + Efield[2] = 0.0; + Efield[3] = 0.0; + Efield[4] = 0.0; + Efield[5] = 0.0; + } + else + { + /* #ifdef DEBUG_G4intERPOLATING_FIELD G4cout << "Local x,y,z: " << exlocal << " " << eylocal << " " << ezlocal << endl; @@ -187,45 +196,37 @@ void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[ */ // Full 3-dimensional version - Efield[0] = 0.0; - Efield[1] = 0.0; - Efield[2] = 0.0; + Efield[0] = 0.0; + Efield[1] = 0.0; + Efield[2] = 0.0; - Efield[3] = - xEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + - xEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + - xEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + - xEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + - xEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + - xEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + - xEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + - xEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; - Efield[4] = - yEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + - yEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + - yEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + - yEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + - yEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + - yEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + - yEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + - yEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; - Efield[5] = - zEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + - zEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + - zEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + - zEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + - zEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + - zEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + - zEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + - zEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; - - } else { - Efield[0] = 0.0; - Efield[1] = 0.0; - Efield[2] = 0.0; - Efield[3] = 0.0; - Efield[4] = 0.0; - Efield[5] = 0.0; + Efield[3] = + xEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + + xEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + + xEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + + xEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + + xEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + + xEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + + xEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + + xEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; + Efield[4] = + yEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + + yEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + + yEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + + yEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + + yEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + + yEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + + yEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + + yEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; + Efield[5] = + zEField[exindex ][eyindex ][ezindex ] * (1-exlocal) * (1-eylocal) * (1-ezlocal) + + zEField[exindex ][eyindex ][ezindex+1] * (1-exlocal) * (1-eylocal) * ezlocal + + zEField[exindex ][eyindex+1][ezindex ] * (1-exlocal) * eylocal * (1-ezlocal) + + zEField[exindex ][eyindex+1][ezindex+1] * (1-exlocal) * eylocal * ezlocal + + zEField[exindex+1][eyindex ][ezindex ] * exlocal * (1-eylocal) * (1-ezlocal) + + zEField[exindex+1][eyindex ][ezindex+1] * exlocal * (1-eylocal) * ezlocal + + zEField[exindex+1][eyindex+1][ezindex ] * exlocal * eylocal * (1-ezlocal) + + zEField[exindex+1][eyindex+1][ezindex+1] * exlocal * eylocal * ezlocal ; } //G4cout << "Getting electric field " << Efield[3]/(volt/m) << " " << Efield[4]/(volt/m) << " " << Efield[5]/(volt/m) << endl; //G4cout << "For coordinates: " << Epoint[0] << " " << Epoint[1] << " " << Epoint[2] << G4endl; @@ -239,4 +240,3 @@ void HadrontherapyElectricTabulatedField3D::GetFieldValue(const G4double Epoint[ << Efield[5]/(volt/m) << '\t' << " " << G4endl; */ } - diff --git a/examples/advanced/hadrontherapy/src/HadrontherapyMagneticField3D.cc b/examples/advanced/hadrontherapy/src/HadrontherapyMagneticField3D.cc index 648a2a5aa8..d79cfb392c 100644 --- a/examples/advanced/hadrontherapy/src/HadrontherapyMagneticField3D.cc +++ b/examples/advanced/hadrontherapy/src/HadrontherapyMagneticField3D.cc @@ -32,31 +32,31 @@ namespace{ G4Mutex MyHadrontherapyLock=G4MUTEX_INITIALIZER; } -HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename, double xOffset ) +HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename, double xOffset ) :fXoffset(xOffset),invertX(false),invertY(false),invertZ(false) -{ +{ //The format file is: X Y Z Ex Ey Ez - double lenUnit= meter; - double fieldUnit= tesla; + double lenUnit= meter; + double fieldUnit= tesla; G4cout << "\n-----------------------------------------------------------" << "\n Magnetic field" << "\n-----------------------------------------------------------"; - G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl; + G4cout << "\n ---> " "Reading the field grid from " << filename << " ... " << endl; G4AutoLock lock(&MyHadrontherapyLock); ifstream file( filename ); // Open the file for reading. - + // Ignore first blank line char buffer[256]; file.getline(buffer,256); - - // Read table dimensions + + // Read table dimensions file >> nx >> ny >> nz; // Note dodgy order - G4cout << " [ Number of values x,y,z: " + G4cout << " [ Number of values x,y,z: " << nx << " " << ny << " " << nz << " ] " << endl; @@ -92,7 +92,7 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename miny = yval * lenUnit; minz = zval * lenUnit; } - xField[ix][iy][iz] = bx * fieldUnit; + xField[ix][iy][iz] = bx * fieldUnit; yField[ix][iy][iz] = by * fieldUnit; zField[ix][iy][iz] = bz * fieldUnit; } @@ -108,28 +108,28 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename G4cout << "\n ---> ... done reading " << endl; - // G4cout << " Read values of field from file " << filename << endl; + // G4cout << " Read values of field from file " << filename << endl; G4cout << " ---> assumed the order: x, y, z, Bx, By, Bz " - << "\n ---> Min values x,y,z: " + << "\n ---> Min values x,y,z: " << minx/cm << " " << miny/cm << " " << minz/cm << " cm " - << "\n ---> Max values x,y,z: " + << "\n ---> Max values x,y,z: " << maxx/cm << " " << maxy/cm << " " << maxz/cm << " cm " << "\n ---> The field will be offset by " << xOffset/cm << " cm " << endl; // Should really check that the limits are not the wrong way around. - if (maxx < minx) {swap(maxx,minx); invertX = true;} - if (maxy < miny) {swap(maxy,miny); invertY = true;} - if (maxz < minz) {swap(maxz,minz); invertZ = true;} - G4cout << "\nAfter reordering if neccesary" - << "\n ---> Min values x,y,z: " + if (maxx < minx) {swap(maxx,minx); invertX = true;} + if (maxy < miny) {swap(maxy,miny); invertY = true;} + if (maxz < minz) {swap(maxz,minz); invertZ = true;} + G4cout << "\nAfter reordering if neccesary" + << "\n ---> Min values x,y,z: " << minx/cm << " " << miny/cm << " " << minz/cm << " cm " - << " \n ---> Max values x,y,z: " + << " \n ---> Max values x,y,z: " << maxx/cm << " " << maxy/cm << " " << maxz/cm << " cm "; dx = maxx - minx; dy = maxy - miny; dz = maxz - minz; - G4cout << "\n ---> Dif values x,y,z (range): " + G4cout << "\n ---> Dif values x,y,z (range): " << dx/cm << " " << dy/cm << " " << dz/cm << " cm in z " << "\n-----------------------------------------------------------" << endl; } @@ -137,18 +137,14 @@ HadrontherapyMagneticField3D::HadrontherapyMagneticField3D( const char* filename void HadrontherapyMagneticField3D::GetFieldValue(const double point[4], double *Bfield ) const { - double x = point[0]+ fXoffset; - double y = point[1]; - double z = point[2]; + double x = point[0]+ fXoffset; + double y = point[1]; + double z = point[2]; - // Check that the point is within the defined region - if ( x>minx && xminy && yminz && z(std::floor(xdindex)); int yindex = static_cast(std::floor(ydindex)); int zindex = static_cast(std::floor(zdindex)); - + + // Check that the point is within the defined region + if ((xindex < 0) || (xindex >= nx - 1) || + (yindex < 0) || (yindex >= ny - 1) || + (zindex < 0) || (zindex >= nz - 1)) + { + Bfield[0] = 0.0; + Bfield[1] = 0.0; + Bfield[2] = 0.0; + } + else + { #ifdef DEBUG_INTERPOLATING_FIELD - G4cout << "Local x,y,z: " << xlocal << " " << ylocal << " " << zlocal << endl; - G4cout << "Index x,y,z: " << xindex << " " << yindex << " " << zindex << endl; - double valx0z0, mulx0z0, valx1z0, mulx1z0; - double valx0z1, mulx0z1, valx1z1, mulx1z1; - valx0z0= table[xindex ][0][zindex]; mulx0z0= (1-xlocal) * (1-zlocal); - valx1z0= table[xindex+1][0][zindex]; mulx1z0= xlocal * (1-zlocal); - valx0z1= table[xindex ][0][zindex+1]; mulx0z1= (1-xlocal) * zlocal; - valx1z1= table[xindex+1][0][zindex+1]; mulx1z1= xlocal * zlocal; + G4cout << "Local x,y,z: " << xlocal << " " << ylocal << " " << zlocal << endl; + G4cout << "Index x,y,z: " << xindex << " " << yindex << " " << zindex << endl; + double valx0z0, mulx0z0, valx1z0, mulx1z0; + double valx0z1, mulx0z1, valx1z1, mulx1z1; + valx0z0= table[xindex ][0][zindex]; mulx0z0= (1-xlocal) * (1-zlocal); + valx1z0= table[xindex+1][0][zindex]; mulx1z0= xlocal * (1-zlocal); + valx0z1= table[xindex ][0][zindex+1]; mulx0z1= (1-xlocal) * zlocal; + valx1z1= table[xindex+1][0][zindex+1]; mulx1z1= xlocal * zlocal; #endif + // Full 3-dimensional version - Bfield[0] = - xField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + - xField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + - xField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + - xField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + - xField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + - xField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + - xField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + - xField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; + Bfield[0] = + xField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + + xField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + + xField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + + xField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + + xField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + + xField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + + xField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + + xField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; - Bfield[1] = - yField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + - yField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + - yField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + - yField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + - yField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + - yField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + - yField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + - yField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; + Bfield[1] = + yField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + + yField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + + yField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + + yField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + + yField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + + yField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + + yField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + + yField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; + + Bfield[2] = + zField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + + zField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + + zField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + + zField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + + zField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + + zField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + + zField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + + zField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; + } - Bfield[2] = - zField[xindex ][yindex ][zindex ] * (1-xlocal) * (1-ylocal) * (1-zlocal) + - zField[xindex ][yindex ][zindex+1] * (1-xlocal) * (1-ylocal) * zlocal + - zField[xindex ][yindex+1][zindex ] * (1-xlocal) * ylocal * (1-zlocal) + - zField[xindex ][yindex+1][zindex+1] * (1-xlocal) * ylocal * zlocal + - zField[xindex+1][yindex ][zindex ] * xlocal * (1-ylocal) * (1-zlocal) + - zField[xindex+1][yindex ][zindex+1] * xlocal * (1-ylocal) * zlocal + - zField[xindex+1][yindex+1][zindex ] * xlocal * ylocal * (1-zlocal) + - zField[xindex+1][yindex+1][zindex+1] * xlocal * ylocal * zlocal ; - - } else { - Bfield[0] = 0.0; - Bfield[1] = 0.0; - Bfield[2] = 0.0; - } //In order to obtain the output file with the magnetic components read from a particle passing in the magnetic field /* std::ofstream MagneticField("MagneticField.out", std::ios::app); MagneticField<< Bfield[0] << '\t' << " " @@ -227,6 +231,5 @@ void HadrontherapyMagneticField3D::GetFieldValue(const double point[4], << point[1] << '\t' << " " << point[2] << '\t' << " " << G4endl;*/ - -} +} diff --git a/examples/advanced/hadrontherapy/src/HadrontherapyModulator.cc b/examples/advanced/hadrontherapy/src/HadrontherapyModulator.cc index 0df2800944..a9049bdfd2 100755 --- a/examples/advanced/hadrontherapy/src/HadrontherapyModulator.cc +++ b/examples/advanced/hadrontherapy/src/HadrontherapyModulator.cc @@ -469,12 +469,12 @@ for (G4int i=1;i SetVisibility(true); red-> SetForceSolid(true); - logicMotherMod -> SetVisAttributes(G4VisAttributes::GetInvisible()); + logicMotherMod -> SetVisAttributes(G4VisAttributes::Invisible); - logicMod1 ->SetVisAttributes(G4VisAttributes::GetInvisible()); - logicMod2 ->SetVisAttributes(G4VisAttributes::GetInvisible()); - logicMod3 ->SetVisAttributes(G4VisAttributes::GetInvisible()); - logicMod4 ->SetVisAttributes(G4VisAttributes::GetInvisible()); + logicMod1 ->SetVisAttributes(G4VisAttributes::Invisible); + logicMod2 ->SetVisAttributes(G4VisAttributes::Invisible); + logicMod3 ->SetVisAttributes(G4VisAttributes::Invisible); + logicMod4 ->SetVisAttributes(G4VisAttributes::Invisible); for (G4int i=1;i SetVisAttributes (G4VisAttributes::GetInvisible()); + logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible); // The various components of the energyselector are constructed calling // the following methods @@ -1049,7 +1049,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB logicVirtualWindow, physicVirtualMag, true,0); - logicVirtualWindow->SetVisAttributes (G4VisAttributes::GetInvisible()); + logicVirtualWindow->SetVisAttributes (G4VisAttributes::Invisible); ///// GuardRing ///// @@ -1094,7 +1094,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB physicVirtualMag, true,0); - logicVirtualMiddle->SetVisAttributes (G4VisAttributes::GetInvisible()); + logicVirtualMiddle->SetVisAttributes (G4VisAttributes::Invisible); ///// FaradayCupBottom ///// @@ -1135,7 +1135,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB physicVirtualMag, true,0); - logicVirtualBottom->SetVisAttributes (G4VisAttributes::GetInvisible()); + logicVirtualBottom->SetVisAttributes (G4VisAttributes::Invisible); ///// Cup ///// @@ -1177,7 +1177,7 @@ G4double VirtualLateralPosX=GuardRingPosX+GuardRingThickness/2+1*cm+(FaradayCupB physicVirtualMag, true,0); -logicVirtualOverBottom->SetVisAttributes (G4VisAttributes::GetInvisible()); +logicVirtualOverBottom->SetVisAttributes (G4VisAttributes::Invisible); ///// Virtual Lateral ///// @@ -1202,7 +1202,7 @@ logicVirtualLateral=new G4LogicalVolume( VirtualLateral, - logicVirtualLateral->SetVisAttributes (G4VisAttributes::GetInvisible()); + logicVirtualLateral->SetVisAttributes (G4VisAttributes::Invisible); } ///////////////////////////////////////////////////////////////////////////// diff --git a/examples/advanced/hadrontherapy/src/PassiveCarbonBeamLine.cc b/examples/advanced/hadrontherapy/src/PassiveCarbonBeamLine.cc index 19b76be226..4331377444 100755 --- a/examples/advanced/hadrontherapy/src/PassiveCarbonBeamLine.cc +++ b/examples/advanced/hadrontherapy/src/PassiveCarbonBeamLine.cc @@ -349,7 +349,7 @@ void PassiveCarbonBeamLine::ConstructPassiveCarbonBeamLine() // The treatment room is invisible in the Visualisation - logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::GetInvisible()); + logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible); // Components of the Passive Carbon Beam Line HadrontherapyBeamLineSupport(); diff --git a/examples/advanced/hadrontherapy/src/PassiveProtonBeamLine.cc b/examples/advanced/hadrontherapy/src/PassiveProtonBeamLine.cc index cfc6afeb0d..ca975760f1 100755 --- a/examples/advanced/hadrontherapy/src/PassiveProtonBeamLine.cc +++ b/examples/advanced/hadrontherapy/src/PassiveProtonBeamLine.cc @@ -571,7 +571,7 @@ void PassiveProtonBeamLine::ConstructPassiveProtonBeamLine() // The treatment room is invisible in the Visualisation - logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::GetInvisible()); + logicTreatmentRoom -> SetVisAttributes (G4VisAttributes::Invisible); // Components of the Passive Proton Beam Line HadrontherapyBeamLineSupport(); diff --git a/examples/advanced/human_phantom/human_phantom.out b/examples/advanced/human_phantom/human_phantom.out index ca45ae83f6..671e6ad62e 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out index f258088748..977edce83c 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -73,16 +73,6 @@ Constructing materials...... done ******** Number of Rods in FCAL1 : 2351 ********* Number of Rods in FCAL2 : 2546 TBSetupSD is not found in /FCALTB/ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -766,6 +756,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -879,13 +882,13 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 395 kByte - Total CPU time elapsed for geometry optimisation: 0.3 seconds + Total CPU time elapsed for geometry optimisation: 0.51 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 56.67 0.17 0.00 152k EmModuleLogical - 43.33 0.13 0.00 238k HadModuleLogical + 50.98 0.26 0.00 152k EmModuleLogical + 49.02 0.25 0.00 238k HadModuleLogical 0.00 0.00 0.00 4k Mother 0.00 0.00 0.00 0k CryostatLogical 0.00 0.00 0.00 0k LArgLogical @@ -896,8 +899,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 60.17 238k 1385 2370 3792 0.13 HadModuleLogical - 38.50 152k 1129 1152 2426 0.17 EmModuleLogical + 60.17 238k 1385 2370 3792 0.25 HadModuleLogical + 38.50 152k 1129 1152 2426 0.26 EmModuleLogical 0.93 3k 8 42 146 0.00 Mother 0.12 0k 1 7 8 0.00 SolidWLogical 0.12 0k 1 7 8 0.00 CuPlateLogical @@ -932,333 +935,333 @@ HadEdep is=4.67582 MeV Edep in FCAL1 FCAl2 : 19636.8 4.67582 **** Primary : 2 Vertex : (-3.76032,10.9751,32740) -Number of F1 Tiles with Positive energy : 46 +Number of F1 Tiles with Positive energy : 45 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) 1.61737 3.91573 5.10146 Visible Energy in Hole Counter (MeV) 0 0 Visible Energy in Upstream Dead Materials -14.077 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 2 -N Scondaries 158 -EmEdep is=19814.6 MeV -HadEdep is=0 MeV -Edep in FCAL1 FCAl2 : 19814.6 0 - **** Primary : 3 - Vertex : (13.1951,2.677,32740) -Number of F1 Tiles with Positive energy : 50 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -1.85548 1.65818 2.17771 - Visible Energy in Hole Counter (MeV) -0 0.00619242 - Visible Energy in Upstream Dead Materials -21.0193 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 11 -N Scondaries 122 -EmEdep is=19669 MeV -HadEdep is=28.1736 MeV -Edep in FCAL1 FCAl2 : 19669 28.1736 - **** Primary : 4 - Vertex : (-8.66148,-8.80731,32740) -Number of F1 Tiles with Positive energy : 41 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -1.96264 1.80762 1.62497 - Visible Energy in Hole Counter (MeV) -0 0 - Visible Energy in Upstream Dead Materials -7.71057 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 2 -N Scondaries 275 -EmEdep is=19922 MeV -HadEdep is=0.288169 MeV -Edep in FCAL1 FCAl2 : 19922 0.288169 - **** Primary : 5 - Vertex : (4.75859,7.01622,32740) -Number of F1 Tiles with Positive energy : 39 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -2.30716 1.56115 1.57749 - Visible Energy in Hole Counter (MeV) -0 0 - Visible Energy in Upstream Dead Materials -5.02558 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 2 -N Scondaries 127 -EmEdep is=19743.8 MeV -HadEdep is=18.4449 MeV -Edep in FCAL1 FCAl2 : 19743.8 18.4449 - **** Primary : 6 - Vertex : (1.94335,14.9228,32740) -Number of F1 Tiles with Positive energy : 44 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -1.88447 1.67018 1.65017 - Visible Energy in Hole Counter (MeV) -0 79.0407 - Visible Energy in Upstream Dead Materials -1222.27 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 38 -N Scondaries 241 -EmEdep is=17843.2 MeV -HadEdep is=2.13251 MeV -Edep in FCAL1 FCAl2 : 17843.2 2.13251 - **** Primary : 7 - Vertex : (-10.9878,-6.7949,32740) -Number of F1 Tiles with Positive energy : 59 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -2.49865 1.59498 2.29169 - Visible Energy in Hole Counter (MeV) -0 161.147 - Visible Energy in Upstream Dead Materials -5238.5 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -1.81147 0 0 0 0 0 -N Tracks out of world 181 -N Scondaries 174 -EmEdep is=12407.5 MeV -HadEdep is=10.7424 MeV -Edep in FCAL1 FCAl2 : 12407.5 10.7424 - **** Primary : 8 - Vertex : (10.9757,-1.49585,32740) -Number of F1 Tiles with Positive energy : 40 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -1.59244 1.82386 1.71283 - Visible Energy in Hole Counter (MeV) -0 0 - Visible Energy in Upstream Dead Materials -2.36637 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 1 -N Scondaries 129 -EmEdep is=19755.8 MeV -HadEdep is=10.4371 MeV -Edep in FCAL1 FCAl2 : 19755.8 10.4371 - **** Primary : 9 - Vertex : (-27.7734,3.36444,32740) -Number of F1 Tiles with Positive energy : 68 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -2.08788 1.82006 1.88335 - Visible Energy in Hole Counter (MeV) -0 69.8326 - Visible Energy in Upstream Dead Materials -5115.96 - Visible Energy in Tail Catcher Scintillator -0 0 0 0 0 0 0 - Visible Energy in Tail Catcher Absorber -0 0 0 0 0 0 -N Tracks out of world 134 -N Scondaries 210 -EmEdep is=13317.9 MeV -HadEdep is=1.41332 MeV -Edep in FCAL1 FCAl2 : 13317.9 1.41332 - **** Primary : 10 - Vertex : (-22.5474,4.1006,32740) -Number of F1 Tiles with Positive energy : 43 -Number of F2 tiles with Positive energy : 0 - Visisble Energy in S1 , S2 , S3 in (MeV) -3.31171 1.67043 1.70158 - Visible Energy in Hole Counter (MeV) -0 0 - Visible Energy in Upstream Dead Materials -14.7186 +13.192 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 N Tracks out of world 3 -N Scondaries 153 -EmEdep is=19508 MeV -HadEdep is=6.59966 MeV -Edep in FCAL1 FCAl2 : 19508 6.59966 - ----> Begin of event: 11 - **** Primary : 11 - Vertex : (-6.31939,21.5056,32740) -Number of F1 Tiles with Positive energy : 56 +N Scondaries 158 +EmEdep is=19813.6 MeV +HadEdep is=0 MeV +Edep in FCAL1 FCAl2 : 19813.6 0 + **** Primary : 3 + Vertex : (13.1951,2.677,32740) +Number of F1 Tiles with Positive energy : 47 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -1.69211 1.55744 1.63137 +1.79255 1.8274 1.63921 Visible Energy in Hole Counter (MeV) -0 85.5543 +0 107.947 Visible Energy in Upstream Dead Materials -1740.81 +586.559 Visible Energy in Tail Catcher Scintillator -10.1713 0 0.243957 0 0 0 0 +0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 67 -N Scondaries 117 -EmEdep is=17109.2 MeV -HadEdep is=5.36671 MeV -Edep in FCAL1 FCAl2 : 17109.2 5.36671 - **** Primary : 12 - Vertex : (17.1015,6.30557,32740) +N Tracks out of world 44 +N Scondaries 108 +EmEdep is=18604.8 MeV +HadEdep is=7.12832 MeV +Edep in FCAL1 FCAl2 : 18604.8 7.12832 + **** Primary : 4 + Vertex : (-8.66148,-8.80731,32740) +Number of F1 Tiles with Positive energy : 44 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +3.86495 1.79955 1.47122 + Visible Energy in Hole Counter (MeV) +0 4.41528 + Visible Energy in Upstream Dead Materials +0.997375 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 3 +N Scondaries 175 +EmEdep is=19793 MeV +HadEdep is=0 MeV +Edep in FCAL1 FCAl2 : 19793 0 + **** Primary : 5 + Vertex : (4.75859,7.01622,32740) Number of F1 Tiles with Positive energy : 42 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -2.24206 1.87378 1.70901 +1.63797 1.98914 2.12755 Visible Energy in Hole Counter (MeV) 0 0 Visible Energy in Upstream Dead Materials -3.91569 +8.64241 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 4 -N Scondaries 134 -EmEdep is=19894.9 MeV -HadEdep is=0.371194 MeV -Edep in FCAL1 FCAl2 : 19894.9 0.371194 - **** Primary : 13 - Vertex : (-24.9484,11.8659,32740) -Number of F1 Tiles with Positive energy : 36 +N Tracks out of world 7 +N Scondaries 123 +EmEdep is=19820.6 MeV +HadEdep is=0.938035 MeV +Edep in FCAL1 FCAl2 : 19820.6 0.938035 + **** Primary : 6 + Vertex : (1.94335,14.9228,32740) +Number of F1 Tiles with Positive energy : 45 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -1.55876 3.78835 2.18524 +1.89613 1.71981 2.11501 Visible Energy in Hole Counter (MeV) -0 152.841 +0 64.5365 Visible Energy in Upstream Dead Materials -17316.8 +699.86 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 292 -N Scondaries 163 -EmEdep is=1242.44 MeV -HadEdep is=0.318602 MeV -Edep in FCAL1 FCAl2 : 1242.44 0.318602 - **** Primary : 14 - Vertex : (-0.133696,18.3151,32740) -Number of F1 Tiles with Positive energy : 40 +N Tracks out of world 19 +N Scondaries 153 +EmEdep is=18504.7 MeV +HadEdep is=0.000936371 MeV +Edep in FCAL1 FCAl2 : 18504.7 0.000936371 + **** Primary : 7 + Vertex : (-10.9878,-6.7949,32740) +Number of F1 Tiles with Positive energy : 37 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -1.67932 2.23501 1.76656 +1.56406 1.545 1.66667 + Visible Energy in Hole Counter (MeV) +0 3.57131 + Visible Energy in Upstream Dead Materials +21.0916 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 1 +N Scondaries 190 +EmEdep is=19755.4 MeV +HadEdep is=11.5865 MeV +Edep in FCAL1 FCAl2 : 19755.4 11.5865 + **** Primary : 8 + Vertex : (10.9757,-1.49585,32740) +Number of F1 Tiles with Positive energy : 43 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +2.00645 1.69591 1.73637 Visible Energy in Hole Counter (MeV) 0 0 Visible Energy in Upstream Dead Materials -18.5522 +14.2442 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 N Tracks out of world 2 -N Scondaries 185 -EmEdep is=19661.5 MeV +N Scondaries 202 +EmEdep is=19784.4 MeV HadEdep is=0 MeV -Edep in FCAL1 FCAl2 : 19661.5 0 - **** Primary : 15 - Vertex : (17.3196,17.6617,32740) +Edep in FCAL1 FCAl2 : 19784.4 0 + **** Primary : 9 + Vertex : (-27.7734,3.36444,32740) +Number of F1 Tiles with Positive energy : 73 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.47726 2.04453 2.16664 + Visible Energy in Hole Counter (MeV) +0 74.0139 + Visible Energy in Upstream Dead Materials +10929.8 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 242 +N Scondaries 123 +EmEdep is=5953.74 MeV +HadEdep is=0.101671 MeV +Edep in FCAL1 FCAl2 : 5953.74 0.101671 + **** Primary : 10 + Vertex : (-22.5474,4.1006,32740) +Number of F1 Tiles with Positive energy : 37 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.60743 1.91297 2.56461 + Visible Energy in Hole Counter (MeV) +0 0 + Visible Energy in Upstream Dead Materials +4.50982 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 1 +N Scondaries 182 +EmEdep is=19762.6 MeV +HadEdep is=0 MeV +Edep in FCAL1 FCAl2 : 19762.6 0 + +---> Begin of event: 11 + **** Primary : 11 + Vertex : (-6.31939,21.5056,32740) Number of F1 Tiles with Positive energy : 50 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -1.85911 1.60538 1.60683 +1.66988 1.70526 1.53815 Visible Energy in Hole Counter (MeV) -0 0 +0 8.86932 Visible Energy in Upstream Dead Materials -7.95352 +166.35 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 12 -N Scondaries 231 -EmEdep is=19517.1 MeV +N Tracks out of world 33 +N Scondaries 156 +EmEdep is=19152.1 MeV +HadEdep is=2.01735 MeV +Edep in FCAL1 FCAl2 : 19152.1 2.01735 + **** Primary : 12 + Vertex : (17.1015,6.30557,32740) +Number of F1 Tiles with Positive energy : 50 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.79232 1.8373 1.985 + Visible Energy in Hole Counter (MeV) +0 0 + Visible Energy in Upstream Dead Materials +3.56968 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 1 +N Scondaries 177 +EmEdep is=19789.3 MeV +HadEdep is=1.78682 MeV +Edep in FCAL1 FCAl2 : 19789.3 1.78682 + **** Primary : 13 + Vertex : (-24.9484,11.8659,32740) +Number of F1 Tiles with Positive energy : 27 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.86005 1.63346 1.77503 + Visible Energy in Hole Counter (MeV) +0 36.2749 + Visible Energy in Upstream Dead Materials +17011.9 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 153 +N Scondaries 225 +EmEdep is=2301.21 MeV HadEdep is=0 MeV -Edep in FCAL1 FCAl2 : 19517.1 0 +Edep in FCAL1 FCAl2 : 2301.21 0 + **** Primary : 14 + Vertex : (-0.133696,18.3151,32740) +Number of F1 Tiles with Positive energy : 50 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.82908 1.59367 1.82539 + Visible Energy in Hole Counter (MeV) +0 0 + Visible Energy in Upstream Dead Materials +12.7543 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 1 +N Scondaries 250 +EmEdep is=19791.1 MeV +HadEdep is=0.726235 MeV +Edep in FCAL1 FCAl2 : 19791.1 0.726235 + **** Primary : 15 + Vertex : (17.3196,17.6617,32740) +Number of F1 Tiles with Positive energy : 40 +Number of F2 tiles with Positive energy : 0 + Visisble Energy in S1 , S2 , S3 in (MeV) +1.7243 1.78672 1.78164 + Visible Energy in Hole Counter (MeV) +0 0.111833 + Visible Energy in Upstream Dead Materials +57.2954 + Visible Energy in Tail Catcher Scintillator +0 0 0 0 0 0 0 + Visible Energy in Tail Catcher Absorber +0 0 0 0 0 0 +N Tracks out of world 2 +N Scondaries 161 +EmEdep is=19818.9 MeV +HadEdep is=0 MeV +Edep in FCAL1 FCAl2 : 19818.9 0 **** Primary : 16 Vertex : (-20.8489,10.8988,32740) -Number of F1 Tiles with Positive energy : 63 +Number of F1 Tiles with Positive energy : 49 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -2.09616 1.72415 2.58245 +4.5549 1.54044 1.85046 Visible Energy in Hole Counter (MeV) -0 38.5703 +0 26.0934 Visible Energy in Upstream Dead Materials -4009.07 +1176.05 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 99 -N Scondaries 167 -EmEdep is=14625.6 MeV -HadEdep is=0.193778 MeV -Edep in FCAL1 FCAl2 : 14625.6 0.193778 +N Tracks out of world 45 +N Scondaries 158 +EmEdep is=18309 MeV +HadEdep is=0.605847 MeV +Edep in FCAL1 FCAl2 : 18309 0.605847 **** Primary : 17 Vertex : (-9.96316,-9.33478,32740) -Number of F1 Tiles with Positive energy : 39 +Number of F1 Tiles with Positive energy : 38 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -2.24319 2.25922 3.39082 +1.54614 1.81657 1.97244 Visible Energy in Hole Counter (MeV) -0 5.08517 +0 0.000962751 Visible Energy in Upstream Dead Materials -4.11404 +5.37345 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 5 -N Scondaries 189 -EmEdep is=19878.3 MeV -HadEdep is=9.0789 MeV -Edep in FCAL1 FCAl2 : 19878.3 9.0789 +N Tracks out of world 1 +N Scondaries 152 +EmEdep is=19800 MeV +HadEdep is=2.98151 MeV +Edep in FCAL1 FCAl2 : 19800 2.98151 **** Primary : 18 Vertex : (-9.96316,-9.33478,32740) -Number of F1 Tiles with Positive energy : 43 +Number of F1 Tiles with Positive energy : 56 Number of F2 tiles with Positive energy : 0 Visisble Energy in S1 , S2 , S3 in (MeV) -2.28363 2.6558 1.59609 +1.60294 1.5119 1.44372 Visible Energy in Hole Counter (MeV) -0 0 +0 3.40818 Visible Energy in Upstream Dead Materials -5.9764 +577.333 Visible Energy in Tail Catcher Scintillator 0 0 0 0 0 0 0 Visible Energy in Tail Catcher Absorber 0 0 0 0 0 0 -N Tracks out of world 4 -N Scondaries 201 -EmEdep is=19839.9 MeV -HadEdep is=1.90063 MeV -Edep in FCAL1 FCAl2 : 19839.9 1.90063 +N Tracks out of world 24 +N Scondaries 127 +EmEdep is=18506.8 MeV +HadEdep is=7.06229 MeV +Edep in FCAL1 FCAl2 : 18506.8 7.06229 Run terminated. Run Summary Number of events processed : 18 - User=13.49s Real=13.51s Sys=0.01s + User=10.3s Real=10.33s Sys=0.01s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. @@ -1271,21 +1274,21 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -Total navigation history collections cleaned: 285 +Total navigation history collections cleaned: 347 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.345 MB +Pool ID '20G4NavigationLevelRep', size : 0.431 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.103 MB +Pool ID '17G4DynamicParticle', size : 0.122 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB -Pool ID '7G4Track', size : 0.206 MB -Pool ID '18G4TouchableHistory', size : 0.0346 MB -Pool ID '15G4CountedObjectIvE', size : 0.00481 MB +Pool ID '7G4Track', size : 0.243 MB +Pool ID '18G4TouchableHistory', size : 0.0413 MB +Pool ID '15G4CountedObjectIvE', size : 0.00577 MB Pool ID '10G4Fragment', size : 0.00192 MB Number of memory pools allocated: 11 of which, static: 0 -Dynamic pools deleted: 11 / Total memory freed: 0.7 MB +Dynamic pools deleted: 11 / Total memory freed: 0.85 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/advanced/microbeam/microbeam.out b/examples/advanced/microbeam/microbeam.out index 5923c4f814..83deaae356 100644 --- a/examples/advanced/microbeam/microbeam.out +++ b/examples/advanced/microbeam/microbeam.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -812,7 +812,7 @@ Index : 12 used in the geometry : Yes ==================================================================== -##### Create analysis manager 0x1cb2700 +##### Create analysis manager 0x29eaa60 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 ffa978f44b..dad9e2fdcc 100644 --- a/examples/advanced/microelectronics/microelectronics.out +++ b/examples/advanced/microelectronics/microelectronics.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -192,13 +192,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 0 kByte Total CPU time elapsed for geometry optimisation: 0 seconds ### Run 0 starts. -##### Create analysis manager 0x1a03af0 +##### Create analysis manager 0x1e02e40 Using Root analysis manager ... open Root analysis file : microelectronics.root - done Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0.01s Sys=0s + User=0.01s Real=0s Sys=0s ... write Root file : microelectronics.root - done ... close Root file : microelectronics.root - done Number and type of particles created outside region "Target" : @@ -245,13 +245,13 @@ Index : 1 used in the geometry : Yes ==================================================================== ### Run 1 starts. -##### Create analysis manager 0x1a03af0 +##### Create analysis manager 0x1e02e40 Using Root analysis manager ... open Root analysis file : microelectronics.root - done Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s ... write Root file : microelectronics.root - done ... close Root file : microelectronics.root - done Number and type of particles created outside region "Target" : diff --git a/examples/advanced/purging_magnet/purging_magnet.out b/examples/advanced/purging_magnet/purging_magnet.out index 985c4e8b8f..868ef8244e 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/advanced/radioprotection/radioprotection.out b/examples/advanced/radioprotection/radioprotection.out index 4925b2fa8f..96e2a75103 100644 --- a/examples/advanced/radioprotection/radioprotection.out +++ b/examples/advanced/radioprotection/radioprotection.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -75,34 +75,24 @@ Checking overlaps for volume GoldCylinder1_phys ... OK! Checking overlaps for volume GoldCylinder2_phys ... OK! Checking overlaps for volume GoldCylinder3_phys ... OK! ### G4EmConfigurator::AddModels n= 0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon PhysicsList::SetCuts:CutLength : 10 nm ### === Deexcitation model UAtomDeexcitation is activated for 1 region: @@ -416,32 +406,32 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 1 TeV -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon msc: for pi+ SubType= 10 RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1 @@ -782,6 +772,19 @@ hPairProd: for pi- SubType= 4 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== diff --git a/examples/advanced/underground_physics/underground_physics.out b/examples/advanced/underground_physics/underground_physics.out index 6f671be2c0..ba8e135d33 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -70,38 +70,18 @@ User Limits: theMinEKine: 250 eV minRoomMinEKine: 250 eV -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon DMXPhysicsList::SetCuts:CutLength : 1 um Verbosity Set to: 0 @@ -328,22 +308,22 @@ muPairProd: for mu- SubType= 4 Sampling table 9x1001 from 1 GeV to 0.1 TeV ===== EM models for the G4Region DefaultRegionForTheWorld ====== muPairProd : Emin= 0 eV Emax= 100 GeV -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon msc: for pi+ SubType= 10 RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0 @@ -564,6 +544,32 @@ hBrems: for pi- SubType= 3 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== diff --git a/examples/advanced/xray_fluorescence/xray_fluorescence.out b/examples/advanced/xray_fluorescence/xray_fluorescence.out index 27c3caa52d..ddce2ea2bc 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -2867,7 +2867,7 @@ Created histos Run terminated. Run Summary Number of events processed : 10 - User=1.73s Real=1.75s Sys=0s + User=0.64s Real=0.75s Sys=0s 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 5ef28c8902..921633a2d7 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -380,7 +380,7 @@ Opening output file xraytel ... done Run terminated. Run Summary Number of events processed : 1000 - User=0.06s Real=0.07s Sys=0s + User=0.02s Real=0.02s Sys=0s ########################################## 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 75d6bf1148..1b20f7ee03 100644 --- a/examples/basic/B1/exampleB1.out +++ b/examples/basic/B1/exampleB1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -63,16 +63,6 @@ Available colours: Checking overlaps for volume Envelope ... OK! Checking overlaps for volume Shape1 ... OK! Checking overlaps for volume Shape2 ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 phot: for gamma SubType= 12 BuildTable= 0 @@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. --> Event 0 starts. --> Event 100 starts. @@ -777,7 +780,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 --------------------End of Global Run----------------------- The run consists of 1000 proton of 210 MeV - Cumulated dose per run, in scoring volume : 5.1075 nanoGy rms = 147.637 picoGy + Cumulated dose per run, in scoring volume : 5.03046 nanoGy rms = 144.653 picoGy ------------------------------------------------------------ Graphics systems deleted. diff --git a/examples/basic/B2/B2a/exampleB2a.out b/examples/basic/B2/B2a/exampleB2a.out index b8905491a6..f1116ce1d1 100644 --- a/examples/basic/B2/B2a/exampleB2a.out +++ b/examples/basic/B2/B2a/exampleB2a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -130,16 +130,6 @@ Checking overlaps for volume Chamber_PV ... OK! Checking overlaps for volume Chamber_PV ... OK! Checking overlaps for volume Chamber_PV ... OK! Checking overlaps for volume Chamber_PV ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -823,6 +813,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. --> Event 0 starts. diff --git a/examples/basic/B2/B2b/exampleB2b.out b/examples/basic/B2/B2b/exampleB2b.out index 3540e009e4..290beb6c26 100644 --- a/examples/basic/B2/B2b/exampleB2b.out +++ b/examples/basic/B2/B2b/exampleB2b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -126,16 +126,6 @@ Checking overlaps for parameterised volume Chamber ... OK! There are 5 chambers in the tracker region. The chambers are 20 cm of G4_Xe The distance between chamber is 80 cm -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -819,6 +809,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. --> Event 0 starts. diff --git a/examples/basic/B3/B3a/exampleB3a.out b/examples/basic/B3/B3a/exampleB3a.out index 1765037aaa..6ba3adad22 100644 --- a/examples/basic/B3/B3a/exampleB3a.out +++ b/examples/basic/B3/B3a/exampleB3a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/basic/B3/B3b/exampleB3b.out b/examples/basic/B3/B3b/exampleB3b.out index 7fbf65563d..1a1cac5216 100644 --- a/examples/basic/B3/B3b/exampleB3b.out +++ b/examples/basic/B3/B3b/exampleB3b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/basic/B4/B4a/exampleB4a.out b/examples/basic/B4/B4a/exampleB4a.out index dad9f26697..504451e28e 100644 --- a/examples/basic/B4/B4a/exampleB4a.out +++ b/examples/basic/B4/B4a/exampleB4a.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK! ------------------------------------------------------------ ---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ] ------------------------------------------------------------ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ... open Root analysis file : B4.root - done --> Event 0 starts. diff --git a/examples/basic/B4/B4b/exampleB4b.out b/examples/basic/B4/B4b/exampleB4b.out index de5641f076..b6254d4869 100644 --- a/examples/basic/B4/B4b/exampleB4b.out +++ b/examples/basic/B4/B4b/exampleB4b.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK! ------------------------------------------------------------ ---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ] ------------------------------------------------------------ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ### Run 0 start. ... open Root analysis file : B4.root - done diff --git a/examples/basic/B4/B4c/exampleB4c.out b/examples/basic/B4/B4c/exampleB4c.out index dad9f26697..504451e28e 100644 --- a/examples/basic/B4/B4c/exampleB4c.out +++ b/examples/basic/B4/B4c/exampleB4c.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -103,16 +103,6 @@ Checking overlaps for volume Gap ... OK! ------------------------------------------------------------ ---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of liquidArgon ] ------------------------------------------------------------ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -796,6 +786,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ... open Root analysis file : B4.root - done --> Event 0 starts. diff --git a/examples/basic/B4/B4d/exampleB4d.out b/examples/basic/B4/B4d/exampleB4d.out index 8e50f47673..75d943e4bd 100644 --- a/examples/basic/B4/B4d/exampleB4d.out +++ b/examples/basic/B4/B4d/exampleB4d.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -107,16 +107,6 @@ G4SDManager::AddNewCollection : the collection is registered at G4SDManager::AddNewCollection : the collection is registered at 2 G4SDManager::AddNewCollection : the collection is registered at 3 G4SDManager::AddNewCollection : the collection is registered at 4 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -800,6 +790,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ... open Root analysis file : B4.root - done --> Event 0 starts. diff --git a/examples/basic/B5/exampleB5.out b/examples/basic/B5/exampleB5.out index d254091175..a2795a5025 100644 --- a/examples/basic/B5/exampleB5.out +++ b/examples/basic/B5/exampleB5.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -200,16 +200,6 @@ Checking overlaps for volume wirePlane2Physical ... OK! Checking overlaps for volume EMcalorimeterPhysical ... OK! Checking overlaps for volume HadCalorimeterPhysical ... OK! Checking overlaps for volume HadCalScintiPhysical ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -893,6 +883,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. @@ -900,14 +903,12 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 >>> Event 0 >>> Simulation truth : proton (-0,0,100000) Hodoscope 1 has 2 hits. Hodoscope[7] 4.9870028631879 (nsec) - Hodoscope[10] 5.2512123134404 (nsec) + Hodoscope[10] 5.2312480754604 (nsec) Hodoscope 2 has 1 hits. Hodoscope[9] 43.187442586229 (nsec) -Drift Chamber 1 has 7 hits. +Drift Chamber 1 has 5 hits. Layer[0] : time 6.67124216588 (nsec) --- local (x,y) -0.018532662783075, 0.0011782691981271 - Layer[0] : time 7.1038037267594 (nsec) --- local (x,y) 479.27191354966, 41.346990806472 Layer[1] : time 8.3391361087098 (nsec) --- local (x,y) -0.03365876163577, 0.0094391447049121 - Layer[1] : time 8.9935473109974 (nsec) --- local (x,y) 588.32970167358, -177.6834399824 Layer[2] : time 10.00703005185 (nsec) --- local (x,y) -0.050530989921065, 0.017719896878703 Layer[3] : time 11.674923995494 (nsec) --- local (x,y) -0.070055505011856, 0.02673344766899 Layer[4] : time 13.342817939158 (nsec) --- local (x,y) -0.089521656852301, 0.03444705670676 @@ -917,8 +918,8 @@ Drift Chamber 2 has 5 hits. Layer[2] : time 38.191411246546 (nsec) --- local (x,y) -206.94959359523, 0.090563331470607 Layer[3] : time 39.862212545388 (nsec) --- local (x,y) -236.48472658101, 0.092028008145595 Layer[4] : time 41.533014322332 (nsec) --- local (x,y) -266.02228921832, 0.092607224561399 -EM Calorimeter has 40 hits. Total Edep is 484.76298455807 (MeV) -Hadron Calorimeter has 12 hits. Total Edep is 3641.671782832 (MeV) +EM Calorimeter has 39 hits. Total Edep is 314.22563326261 (MeV) +Hadron Calorimeter has 12 hits. Total Edep is 3898.5618596792 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 1 starts. @@ -927,117 +928,99 @@ Hadron Calorimeter has 12 hits. Total Edep is 3641.671782832 (MeV) >>> Event 0 >>> Simulation truth : pi+ (0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867880839397 (nsec) -Hodoscope 2 has 13 hits. - Hodoscope[10] 42.693845269414 (nsec) - Hodoscope[19] 860.65236307414 (nsec) - Hodoscope[9] 61.976221982387 (nsec) - Hodoscope[3] 351.67093229411 (nsec) - Hodoscope[1] 359.99668870371 (nsec) - Hodoscope[4] 121.92543842822 (nsec) - Hodoscope[7] 316.12358435998 (nsec) - Hodoscope[21] 256.49888127288 (nsec) - Hodoscope[18] 331.0259657115 (nsec) - Hodoscope[17] 441.93937988259 (nsec) - Hodoscope[22] 789.2447454611 (nsec) - Hodoscope[24] 284.49133966085 (nsec) - Hodoscope[8] 381.52289877569 (nsec) + Hodoscope[7] 4.9867880839576 (nsec) +Hodoscope 2 has 2 hits. + Hodoscope[10] 42.694237485012 (nsec) + Hodoscope[16] 332.58268984194 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709548428042 (nsec) --- local (x,y) -0.0014157871586749, -0.016258499667063 - Layer[1] : time 8.3387769450319 (nsec) --- local (x,y) -0.0023535510554497, -0.028649043200036 - Layer[2] : time 10.006599047452 (nsec) --- local (x,y) -0.0034164030312951, -0.043083076119764 - Layer[3] : time 11.674421150027 (nsec) --- local (x,y) -0.0070634467657052, -0.058654187725746 - Layer[4] : time 13.342243252386 (nsec) --- local (x,y) -0.011300370330243, -0.071765135654534 -Drift Chamber 2 has 11 hits. - Layer[0] : time 34.366535075849 (nsec) --- local (x,y) -82.679158489136, -0.28376352877477 - Layer[0] : time 79.952027443331 (nsec) --- local (x,y) -417.39098578031, -251.80441033814 - Layer[1] : time 36.03526772122 (nsec) --- local (x,y) -99.203319432133, -0.30510086652813 - Layer[1] : time 76.354211281489 (nsec) --- local (x,y) -395.93672923734, -218.49018748353 - Layer[2] : time 37.704000532665 (nsec) --- local (x,y) -115.72898779297, -0.32625355024602 - Layer[2] : time 72.762926774167 (nsec) --- local (x,y) -375.29135961601, -190.69797154605 - Layer[3] : time 39.37273349901 (nsec) --- local (x,y) -132.25606475303, -0.34505470547559 - Layer[3] : time 69.175014026755 (nsec) --- local (x,y) -354.48942370805, -162.79939397906 - Layer[4] : time 41.041466401553 (nsec) --- local (x,y) -148.78256632172, -0.36030924597599 - Layer[4] : time 65.590388389057 (nsec) --- local (x,y) -332.70330140587, -134.60453943101 - Layer[4] : time 72.089730240629 (nsec) --- local (x,y) -46.974064056039, -283.37700584991 -EM Calorimeter has 57 hits. Total Edep is 75575.253088053 (MeV) -Hadron Calorimeter has 12 hits. Total Edep is 666.90089211808 (MeV) + Layer[0] : time 6.6709548423586 (nsec) --- local (x,y) 0.00021151149758172, -0.010132253362352 + Layer[1] : time 8.3387769441526 (nsec) --- local (x,y) 0.0020309348336474, -0.015017499134163 + Layer[2] : time 10.006599045964 (nsec) --- local (x,y) 0.0056758512473074, -0.019247171812615 + Layer[3] : time 11.674421147741 (nsec) --- local (x,y) 0.0088804370383822, -0.022370524984524 + Layer[4] : time 13.342243249525 (nsec) --- local (x,y) 0.012545593937828, -0.025094077453974 +Drift Chamber 2 has 5 hits. + Layer[0] : time 34.366915979992 (nsec) --- local (x,y) -82.645029863701, -0.000184681579031 + Layer[1] : time 36.03565088531 (nsec) --- local (x,y) -99.189703130113, 0.0047057355620961 + Layer[2] : time 37.704385983768 (nsec) --- local (x,y) -115.73612675316, 0.010479690582926 + Layer[3] : time 39.373121028171 (nsec) --- local (x,y) -132.28206039537, 0.016101615624278 + Layer[4] : time 41.041856001756 (nsec) --- local (x,y) -148.82735243814, 0.020697036727392 +EM Calorimeter has 57 hits. Total Edep is 32787.468275966 (MeV) +Hadron Calorimeter has 15 hits. Total Edep is 2279.7179858769 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 2 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : e+ (0,0,100000) +>>> Event 0 >>> Simulation truth : e+ (-0,0,100000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867832233217 (nsec) + Hodoscope[7] 4.9867832233759 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.185830879903 (nsec) + Hodoscope[9] 43.186247967068 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6709483401964 (nsec) --- local (x,y) 0.00112168607348, -0.011803496170352 - Layer[1] : time 8.3387688162638 (nsec) --- local (x,y) -4.7253799964136e-05, -0.01642345574739 - Layer[2] : time 10.006589292411 (nsec) --- local (x,y) -0.0041578863248889, -0.021866153477021 - Layer[3] : time 11.674409768528 (nsec) --- local (x,y) -0.0071487027883982, -0.027126031393993 - Layer[4] : time 13.342230244563 (nsec) --- local (x,y) -0.010238011332357, -0.028859099757816 + Layer[0] : time 6.670948343375 (nsec) --- local (x,y) 0.014039107478544, -0.038466899699779 + Layer[1] : time 8.3387688225118 (nsec) --- local (x,y) 0.029013825948968, -0.065275947802531 + Layer[2] : time 10.006589301175 (nsec) --- local (x,y) 0.043338823706523, -0.089635874945854 + Layer[3] : time 11.674409779835 (nsec) --- local (x,y) 0.057785915178459, -0.11394206803956 + Layer[4] : time 13.342230258481 (nsec) --- local (x,y) 0.072517883304809, -0.1379310432186 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.848584074315 (nsec) --- local (x,y) -147.62077027868, -0.0051687766391103 - Layer[1] : time 36.519308284918 (nsec) --- local (x,y) -177.13814678685, -0.00050666820557199 - Layer[2] : time 38.190032648412 (nsec) --- local (x,y) -206.65630105937, 0.004140956496581 - Layer[3] : time 39.860756657931 (nsec) --- local (x,y) -236.1726542061, 0.010802438406376 - Layer[4] : time 41.531480219888 (nsec) --- local (x,y) -265.68672975404, 0.019981530277797 -EM Calorimeter has 38 hits. Total Edep is 92959.764539936 (MeV) -Hadron Calorimeter has 5 hits. Total Edep is 24.860214483776 (MeV) + Layer[0] : time 34.848998338402 (nsec) --- local (x,y) -147.37135172772, -0.37590144258291 + Layer[1] : time 36.519722612662 (nsec) --- local (x,y) -176.88904498261, -0.39686350642539 + Layer[2] : time 38.190447070378 (nsec) --- local (x,y) -206.40766920165, -0.42080435856835 + Layer[3] : time 39.861171657733 (nsec) --- local (x,y) -235.9269531043, -0.44444501800138 + Layer[4] : time 41.531896527039 (nsec) --- local (x,y) -265.44767191121, -0.4671600758979 +EM Calorimeter has 38 hits. Total Edep is 92385.775475691 (MeV) +Hadron Calorimeter has 5 hits. Total Edep is 39.160509835891 (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.0086960140352 (nsec) + Hodoscope[7] 5.0086956603414 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.374651037796 (nsec) + Hodoscope[9] 43.377639474491 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7002643087864 (nsec) --- local (x,y) -0.075812890820955, 0.1144158779046 - Layer[1] : time 8.3754162802687 (nsec) --- local (x,y) -0.1538288286879, 0.15381839787373 - Layer[2] : time 10.050568383341 (nsec) --- local (x,y) -0.23028996721813, 0.24647181265929 - Layer[3] : time 11.725720610458 (nsec) --- local (x,y) -0.31757342856099, 0.33371849442827 - Layer[4] : time 13.400872957139 (nsec) --- local (x,y) -0.37675659068728, 0.41506228999335 -Drift Chamber 2 has 6 hits. - Layer[0] : time 35.000779378324 (nsec) --- local (x,y) -148.16701760266, 1.4743972666059 - Layer[1] : time 36.678848566377 (nsec) --- local (x,y) -177.67671218368, 1.580902607473 - Layer[1] : time 37.058631859509 (nsec) --- local (x,y) -297.32904800583, -21.10956222707 - Layer[2] : time 38.356912753191 (nsec) --- local (x,y) -207.15815077603, 1.7724185494815 - Layer[3] : time 40.034971770081 (nsec) --- local (x,y) -236.61256053807, 1.999588667821 - Layer[4] : time 41.71303113134 (nsec) --- local (x,y) -266.06784847122, 2.2305246291866 -EM Calorimeter has 21 hits. Total Edep is 201.04491723817 (MeV) -Hadron Calorimeter has 8 hits. Total Edep is 358.74418508389 (MeV) + Layer[0] : time 6.7002638903709 (nsec) --- local (x,y) 0.071470537496708, 0.16485400284577 + Layer[1] : time 8.3754158205109 (nsec) --- local (x,y) 0.13216280223728, 0.30792105223104 + Layer[2] : time 10.050567885088 (nsec) --- local (x,y) 0.18999572275694, 0.46627545784655 + Layer[3] : time 11.725720114386 (nsec) --- local (x,y) 0.21649917933798, 0.59616803708745 + Layer[4] : time 13.400872962094 (nsec) --- local (x,y) 0.23773266224589, 0.75503040095252 +Drift Chamber 2 has 5 hits. + Layer[0] : time 35.003513410352 (nsec) --- local (x,y) -147.31823492568, 2.7076150382167 + Layer[1] : time 36.68162135377 (nsec) --- local (x,y) -177.02143084166, 2.8850702368507 + Layer[2] : time 38.359734204177 (nsec) --- local (x,y) -206.74887003841, 3.0126334466119 + Layer[3] : time 40.037848997185 (nsec) --- local (x,y) -236.48554067935, 3.1229010864219 + Layer[4] : time 41.715964289028 (nsec) --- local (x,y) -266.22428951295, 3.2202204779976 +EM Calorimeter has 26 hits. Total Edep is 249.75318706489 (MeV) +Hadron Calorimeter has 11 hits. Total Edep is 574.51517992377 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 4 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : pi+ (-0,0,10000) +>>> Event 0 >>> Simulation truth : pi+ (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9872691884335 (nsec) + Hodoscope[7] 4.9872691779859 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[10] 42.698960310705 (nsec) + Hodoscope[7] 42.778156460898 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.671598527447 (nsec) --- local (x,y) -0.16582683026096, 0.14124251833665 - Layer[1] : time 8.339581633293 (nsec) --- local (x,y) -0.26861100237289, 0.16362196342471 - Layer[2] : time 10.00756472568 (nsec) --- local (x,y) -0.34297946956181, 0.19035852241434 - Layer[3] : time 11.675547822324 (nsec) --- local (x,y) -0.41218536536106, 0.22948083534908 - Layer[4] : time 13.343530922318 (nsec) --- local (x,y) -0.48499546398557, 0.25992368971666 + Layer[0] : time 6.6715984791324 (nsec) --- local (x,y) 0.090607257386662, 0.0052212921134115 + Layer[1] : time 8.3395815497207 (nsec) --- local (x,y) 0.10706599953825, 0.023504636387262 + Layer[2] : time 10.007564634145 (nsec) --- local (x,y) 0.14911312303536, -0.0055613217277153 + Layer[3] : time 11.675547725331 (nsec) --- local (x,y) 0.21473021415382, -0.025223750884095 + Layer[4] : time 13.343530829444 (nsec) --- local (x,y) 0.30151413326356, -0.027903970590398 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.370823617856 (nsec) --- local (x,y) -82.61297508863, 0.32096609401532 - Layer[1] : time 36.039721418499 (nsec) --- local (x,y) -99.173707966138, 0.28336695347861 - Layer[2] : time 37.708618509207 (nsec) --- local (x,y) -115.72799769035, 0.25931841757623 - Layer[3] : time 39.377517373888 (nsec) --- local (x,y) -132.29831408887, 0.23751869525978 - Layer[4] : time 41.046416010183 (nsec) --- local (x,y) -148.86654971028, 0.24092692593556 -EM Calorimeter has 2 hits. Total Edep is 230.88541915934 (MeV) -Hadron Calorimeter has 7 hits. Total Edep is 249.95644012501 (MeV) + Layer[0] : time 34.396390461087 (nsec) --- local (x,y) -240.3144890403, -7.5441363236265 + Layer[1] : time 36.076017032417 (nsec) --- local (x,y) -299.53494780161, -9.3677505228456 + Layer[2] : time 37.755652856005 (nsec) --- local (x,y) -358.77947328986, -11.175059360923 + Layer[3] : time 39.43530153614 (nsec) --- local (x,y) -418.05627834154, -12.997024973848 + Layer[4] : time 41.114954614537 (nsec) --- local (x,y) -477.34382892089, -14.833556709721 +EM Calorimeter has 3 hits. Total Edep is 214.89578477245 (MeV) +Hadron Calorimeter has 2 hits. Total Edep is 42.667211045375 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 5 starts. @@ -1046,38 +1029,25 @@ Hadron Calorimeter has 7 hits. Total Edep is 249.95644012501 (MeV) >>> Event 0 >>> Simulation truth : e+ (0,0,10000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867832257787 (nsec) + Hodoscope[7] 4.9867832252215 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 43.184232274839 (nsec) -Drift Chamber 1 has 20 hits. - Layer[0] : time 6.6709484097253 (nsec) --- local (x,y) -0.028057384385367, 0.13731811637602 - Layer[1] : time 8.3387689577974 (nsec) --- local (x,y) -0.058886631783981, 0.28083995813304 - Layer[2] : time 10.006589507177 (nsec) --- local (x,y) -0.089624966954927, 0.42511098853306 - Layer[3] : time 11.674410078691 (nsec) --- local (x,y) -0.16400355351859, 0.5740907523785 - Layer[3] : time 12.086427335935 (nsec) --- local (x,y) 260.57541763109, -103.41401586103 - Layer[4] : time 13.342230665917 (nsec) --- local (x,y) -0.26613453928483, 0.72540032406541 - Layer[4] : time 13.342657839265 (nsec) --- local (x,y) -0.26616087523223, 0.72543907349462 - Layer[4] : time 13.342657839265 (nsec) --- local (x,y) -0.26616087523223, 0.72543907349462 - Layer[4] : time 13.344102850466 (nsec) --- local (x,y) -0.34168706037297, 0.71399626958038 - Layer[4] : time 13.34556578982 (nsec) --- local (x,y) -0.41908492495192, 0.69431020903882 - Layer[4] : time 13.347045272666 (nsec) --- local (x,y) -0.47336870238929, 0.63445296420964 - Layer[4] : time 13.348516148906 (nsec) --- local (x,y) -0.52765024101907, 0.59956103054886 - Layer[4] : time 13.349993475134 (nsec) --- local (x,y) -0.56438968635374, 0.59298121420683 - Layer[4] : time 13.373612968223 (nsec) --- local (x,y) -0.64327110767112, 0.97495990762418 - Layer[4] : time 13.374746598056 (nsec) --- local (x,y) -0.67775198566135, 0.94780949064854 - Layer[4] : time 13.375890747262 (nsec) --- local (x,y) -0.65260825594145, 0.9261032869502 - Layer[4] : time 13.377048723313 (nsec) --- local (x,y) -0.63884620170602, 0.93286727763876 - Layer[4] : time 13.378404933315 (nsec) --- local (x,y) -0.62707323704953, 0.93651216779631 - Layer[4] : time 13.379590695559 (nsec) --- local (x,y) -0.59827986369198, 0.93931117104372 - Layer[4] : time 15.01187373819 (nsec) --- local (x,y) 886.19967320032, -214.83415213454 + Hodoscope[7] 43.20885807433 (nsec) +Drift Chamber 1 has 7 hits. + Layer[0] : time 6.6709483583328 (nsec) --- local (x,y) -0.068157470142592, 0.014651909667236 + Layer[0] : time 6.9540154857074 (nsec) --- local (x,y) -229.89267580058, 143.40889886661 + Layer[1] : time 8.33876884601 (nsec) --- local (x,y) -0.12592658951061, 0.0035587223121364 + Layer[1] : time 8.8086145740518 (nsec) --- local (x,y) -424.61635784399, 205.5688152184 + Layer[2] : time 10.006589325693 (nsec) --- local (x,y) -0.15852117974118, 0.0046310157629761 + Layer[3] : time 11.67440980651 (nsec) --- local (x,y) -0.194473067917, -0.0051016078748026 + Layer[4] : time 13.342230284218 (nsec) --- local (x,y) -0.2020454189972, -0.025332461548471 Drift Chamber 2 has 5 hits. - Layer[0] : time 34.846835945193 (nsec) --- local (x,y) -149.26487923396, 2.3936314818129 - Layer[1] : time 36.51758393095 (nsec) --- local (x,y) -178.90275181992, 2.5032683059395 - Layer[2] : time 38.188338792778 (nsec) --- local (x,y) -208.57544182594, 2.6128345698654 - Layer[3] : time 39.859091180213 (nsec) --- local (x,y) -238.23564710883, 2.7114508931787 - Layer[4] : time 41.52984612048 (nsec) --- local (x,y) -267.90880567285, 2.7997441078234 -EM Calorimeter has 18 hits. Total Edep is 9668.6129614944 (MeV) -Hadron Calorimeter has 1 hits. Total Edep is 1.2518752838611 (MeV) + Layer[0] : time 34.847750142529 (nsec) --- local (x,y) -240.3068279609, 0.47524612999312 + Layer[1] : time 36.523258790228 (nsec) --- local (x,y) -288.3709212613, 0.57988185086455 + Layer[2] : time 38.198759733688 (nsec) --- local (x,y) -336.41079746881, 0.71428331724465 + Layer[3] : time 39.874265526984 (nsec) --- local (x,y) -384.46583242826, 0.86324213510351 + Layer[4] : time 41.549771867343 (nsec) --- local (x,y) -432.52262975077, 0.99574919394405 +EM Calorimeter has 19 hits. Total Edep is 8603.1376860756 (MeV) +Hadron Calorimeter has 3 hits. Total Edep is 3.9043359194893 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 6 starts. @@ -1086,67 +1056,80 @@ Hadron Calorimeter has 1 hits. Total Edep is 1.2518752838611 (MeV) >>> Event 0 >>> Simulation truth : proton (0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 6.8397807442116 (nsec) + Hodoscope[7] 6.8393823821317 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[9] 59.371279727488 (nsec) + Hodoscope[9] 59.4011276379 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 9.1544172104109 (nsec) --- local (x,y) -0.78718732060772, -3.4706529506627 - Layer[1] : time 11.446864911405 (nsec) --- local (x,y) -1.9865724522216, -4.9205490584396 - Layer[2] : time 13.739452247177 (nsec) --- local (x,y) -3.2615357926275, -6.1781971650349 - Layer[3] : time 16.032229611326 (nsec) --- local (x,y) -4.7688342186568, -6.9364006956199 - Layer[4] : time 18.32527656504 (nsec) --- local (x,y) -5.8031060440209, -7.6293459079815 + Layer[0] : time 9.153403609769 (nsec) --- local (x,y) 0.27660809283799, -0.79236399282942 + Layer[1] : time 11.445214612946 (nsec) --- local (x,y) 0.81210156906032, -1.2228736997056 + Layer[2] : time 13.737238569884 (nsec) --- local (x,y) 1.1012274892347, -1.2313795130515 + Layer[3] : time 16.029437072357 (nsec) --- local (x,y) 1.4214949826935, -1.2469009399884 + Layer[4] : time 18.321816326323 (nsec) --- local (x,y) 1.6634060619879, -1.0341382407455 Drift Chamber 2 has 5 hits. - Layer[0] : time 47.888370222871 (nsec) --- local (x,y) -170.48187123106, -15.346123304812 - Layer[1] : time 50.189142218059 (nsec) --- local (x,y) -202.23645396105, -16.632510660962 - Layer[2] : time 52.490055839766 (nsec) --- local (x,y) -233.83979443748, -17.887087258788 - Layer[3] : time 54.791167175562 (nsec) --- local (x,y) -265.46764600142, -19.204321018226 - Layer[4] : time 57.092410430717 (nsec) --- local (x,y) -296.87234985122, -20.576330405208 -EM Calorimeter has 5 hits. Total Edep is 373.48423478716 (MeV) -Hadron Calorimeter has 1 hits. Total Edep is 1.8376484481565 (MeV) + Layer[0] : time 47.918707418288 (nsec) --- local (x,y) -151.49228677226, -12.444262595747 + Layer[1] : time 50.219158851931 (nsec) --- local (x,y) -183.67437189321, -14.863324749023 + Layer[2] : time 52.519958632154 (nsec) --- local (x,y) -216.38043226138, -17.971867389565 + Layer[3] : time 54.821008951187 (nsec) --- local (x,y) -249.23114048547, -21.044472510521 + Layer[4] : time 57.122286403318 (nsec) --- local (x,y) -282.17449872721, -23.43152296868 +EM Calorimeter has 2 hits. Total Edep is 293.77489831842 (MeV) +Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 7 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : pi+ (0,0,1000) +>>> Event 0 >>> Simulation truth : pi+ (-0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 5.0351615644564 (nsec) + Hodoscope[7] 5.0351584507587 (nsec) Hodoscope 2 has 1 hits. - Hodoscope[18] 41.862249836078 (nsec) -Drift Chamber 1 has 5 hits. - Layer[0] : time 6.7415003844466 (nsec) --- local (x,y) -40.425394362961, -2.1627110960031 - Layer[1] : time 8.4313139721907 (nsec) --- local (x,y) -81.688857709177, -4.1486189017267 - Layer[2] : time 10.121092772983 (nsec) --- local (x,y) -122.8190560411, -6.0430392410656 - Layer[3] : time 11.810844093608 (nsec) --- local (x,y) -167.82177919786, -6.3995626434186 - Layer[4] : time 13.500442169941 (nsec) --- local (x,y) -222.5616677758, -2.7187840184854 -Drift Chamber 2 has 5 hits. - Layer[0] : time 33.195201993465 (nsec) --- local (x,y) -16.088829256964, 41.931977678264 - Layer[1] : time 34.93158833174 (nsec) --- local (x,y) 114.99994484443, 46.037451780742 - Layer[2] : time 36.668297472836 (nsec) --- local (x,y) 246.46561339992, 50.109310677199 - Layer[3] : time 38.405111679065 (nsec) --- local (x,y) 378.04824558091, 54.313105655969 - Layer[4] : time 40.141994528991 (nsec) --- local (x,y) 509.71443797046, 58.300952325428 -EM Calorimeter has 2 hits. Total Edep is 167.1897396414 (MeV) -Hadron Calorimeter has 1 hits. Total Edep is 18.67023265046 (MeV) + Hodoscope[10] 43.182081950465 (nsec) +Drift Chamber 1 has 9 hits. + Layer[0] : time 6.7357608599839 (nsec) --- local (x,y) 1.170565947884, -0.97527503161469 + Layer[0] : time 6.7361605904545 (nsec) --- local (x,y) 1.1708549892613, -0.97531219226997 + Layer[0] : time 6.7361605904545 (nsec) --- local (x,y) 1.1708549892613, -0.97531219226997 + Layer[0] : time 6.7373789944023 (nsec) --- local (x,y) 1.1832347944421, -0.94596810758235 + Layer[0] : time 6.7386997697359 (nsec) --- local (x,y) 1.2184315843266, -0.91041839980919 + Layer[1] : time 8.4198632370521 (nsec) --- local (x,y) 2.2750307068364, -1.1794899282492 + Layer[2] : time 10.103966810097 (nsec) --- local (x,y) 3.2560247482333, -1.2588341054096 + Layer[3] : time 11.78807250329 (nsec) --- local (x,y) 4.1451123412204, -1.0138236599293 + Layer[4] : time 13.472180776137 (nsec) --- local (x,y) 5.0074477702348, -0.8760745553473 +Drift Chamber 2 has 8 hits. + Layer[0] : time 34.767395575498 (nsec) --- local (x,y) -95.70371409981, 4.4217249578346 + Layer[0] : time 30.906573312961 (nsec) --- local (x,y) -1018.8006854845, -108.5898618409 + Layer[0] : time 31.021582132624 (nsec) --- local (x,y) -1009.757062866, -80.390972991994 + Layer[1] : time 36.453605781347 (nsec) --- local (x,y) -119.46500690643, 5.0766649072997 + Layer[1] : time 32.837053903371 (nsec) --- local (x,y) -795.36988693981, -280.58312290505 + Layer[2] : time 38.139820212909 (nsec) --- local (x,y) -143.22181797816, 6.1987506182654 + Layer[3] : time 39.826066936187 (nsec) --- local (x,y) -167.15082117984, 7.4870448717827 + Layer[4] : time 41.512350880551 (nsec) --- local (x,y) -191.28850866016, 8.8592293514675 +EM Calorimeter has 19 hits. Total Edep is 238.39065034028 (MeV) +Hadron Calorimeter has 7 hits. Total Edep is 36.248440510336 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done ### Run 8 starts. ... open Root analysis file : B5.root - done --> Event 0 starts. ->>> Event 0 >>> Simulation truth : e+ (0,0,1000) +>>> Event 0 >>> Simulation truth : e+ (-0,0,1000) Hodoscope 1 has 1 hits. - Hodoscope[7] 4.9867869198589 (nsec) -Hodoscope 2 has 0 hits. + Hodoscope[7] 4.9867833326091 (nsec) +Hodoscope 2 has 1 hits. + Hodoscope[9] 43.19616908327 (nsec) Drift Chamber 1 has 5 hits. - Layer[0] : time 6.6710116391753 (nsec) --- local (x,y) -4.2382996748459, -3.9533524430919 - Layer[1] : time 8.3388904830769 (nsec) --- local (x,y) -7.0679318382756, -7.0323914439979 - Layer[2] : time 10.006775356353 (nsec) --- local (x,y) -9.8361901471152, -10.404061955743 - Layer[3] : time 11.674675602791 (nsec) --- local (x,y) -12.746760288263, -14.333052647724 - Layer[4] : time 13.342576251069 (nsec) --- local (x,y) -15.577006143265, -18.335803784485 -Drift Chamber 2 has 0 hits. -EM Calorimeter has 0 hits. Total Edep is 0 (MeV) -Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV) + Layer[0] : time 6.6709508131839 (nsec) --- local (x,y) -0.0065595298467736, -0.72092457283458 + Layer[1] : time 8.338773841525 (nsec) --- local (x,y) 0.42361335766434, -1.474508405349 + Layer[2] : time 10.006596796517 (nsec) --- local (x,y) 1.1225794031369, -1.9771763364805 + Layer[3] : time 11.674419475943 (nsec) --- local (x,y) 1.5886119395617, -2.6403582368155 + Layer[4] : time 13.342242740298 (nsec) --- local (x,y) 1.8777334744089, -3.5040981825274 +Drift Chamber 2 has 5 hits. + Layer[0] : time 34.857230330519 (nsec) --- local (x,y) -149.7724895288, -19.94798462539 + Layer[1] : time 36.528236610125 (nsec) --- local (x,y) -180.6469320994, -21.607281505143 + Layer[2] : time 38.199258676164 (nsec) --- local (x,y) -211.60936546418, -23.042037834 + Layer[3] : time 39.870328876695 (nsec) --- local (x,y) -242.81534375519, -24.212678763039 + Layer[4] : time 41.541449563153 (nsec) --- local (x,y) -274.27591952959, -24.966503044254 +EM Calorimeter has 8 hits. Total Edep is 963.1430795106 (MeV) +Hadron Calorimeter has 2 hits. Total Edep is 0.98932812962652 (MeV) ... write Root file : B5.root - done ... close Root file : B5.root - done Graphics systems deleted. diff --git a/examples/extended/analysis/AnaEx01/AnaEx01.out b/examples/extended/analysis/AnaEx01/AnaEx01.out index 84dfdb3a99..94e93d1ebf 100644 --- a/examples/extended/analysis/AnaEx01/AnaEx01.out +++ b/examples/extended/analysis/AnaEx01/AnaEx01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -99,16 +99,6 @@ Available colours: ------------------------------------------------------------ ---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of G4_lAr ] ------------------------------------------------------------ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -792,6 +782,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. ... open Root analysis file : AnaEx01.root - done diff --git a/examples/extended/analysis/AnaEx02/AnaEx02.out b/examples/extended/analysis/AnaEx02/AnaEx02.out index f64dc9c320..35a5bcf23d 100644 --- a/examples/extended/analysis/AnaEx02/AnaEx02.out +++ b/examples/extended/analysis/AnaEx02/AnaEx02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -50,16 +50,6 @@ ------------------------------------------------------------ ---> The calorimeter is 10 layers of: [ 10mm of G4_Pb + 5mm of G4_lAr ] ------------------------------------------------------------ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -792,6 +782,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. ----> Output file is open in AnaEx02.root diff --git a/examples/extended/analysis/B1Con/exampleB01Con.out b/examples/extended/analysis/B1Con/exampleB01Con.out index 1e54af4d01..c37ea5026d 100644 --- a/examples/extended/analysis/B1Con/exampleB01Con.out +++ b/examples/extended/analysis/B1Con/exampleB01Con.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -14,16 +14,6 @@ Checking overlaps for volume Envelope ... OK! Checking overlaps for volume Shape1 ... OK! Checking overlaps for volume Shape2 ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... @@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. ---> Begin of event: 0 @@ -776,13 +779,13 @@ G4ConvergenceTester Output Result of DOSE_TALLY R = 0.0889053 SHIFT = 1.78837e-13 VOV = 0.0089262 - FOM = 1054.3 + FOM = 1581.45 THE LARGEST SCORE = 5.55155e-13 and it happend at 5th event Affected Mean = 4.50333e-14 and its ratio to orignal is 1.01146 Affected VAR = 1.59133e-26 and its ratio to orignal is 1.01562 Affected R = 0.088538 and its ratio to orignal is 0.995868 Affected SHIFT = 1.79324e-13 and its ratio to orignal is 1.00273 - Affected FOM = 1054.3 and its ratio to orignal is 1 + Affected FOM = 1581.45 and its ratio to orignal is 1 MEAN distribution is RANDOM r follows 1/std::sqrt(N) r is monotonically decrease @@ -796,22 +799,22 @@ This result passes 6 / 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 5.47726e-14 1.89905e-26 1.37806e-13 0.316982 0.127305 82.9371 1.79367e-13 0.206349 0.0610501 0.0378328 - 2 124 5.73411e-14 2.07988e-26 1.44218e-13 0.224956 0.0547426 164.673 1.77575e-13 0.2 0.032 0.0182005 - 3 187 4.59343e-14 1.62797e-26 1.27592e-13 0.202585 0.0496736 203.05 1.837e-13 0.175532 0.0249839 0.0158385 - 4 249 4.76015e-14 1.67468e-26 1.2941e-13 0.17194 0.0361214 281.881 1.83419e-13 0.18 0.0182222 0.0112228 - 5 312 5.01532e-14 1.71426e-26 1.3093e-13 0.147559 0.0255973 382.724 1.74495e-13 0.191693 0.0134718 0.00823242 - 6 374 4.5541e-14 1.58633e-26 1.25949e-13 0.142816 0.0245389 408.567 1.80888e-13 0.181333 0.0120392 0.00830289 - 7 437 4.21231e-14 1.47979e-26 1.21647e-13 0.137989 0.0231649 437.655 1.83892e-13 0.171233 0.0110502 0.00794715 - 8 499 4.33339e-14 1.50823e-26 1.2281e-13 0.126742 0.0189683 518.773 1.79575e-13 0.174 0.00949425 0.00653715 - 9 562 4.35618e-14 1.5546e-26 1.24684e-13 0.120628 0.0165036 572.691 1.81574e-13 0.168739 0.00875012 0.00577523 - 10 624 4.56042e-14 1.63614e-26 1.27912e-13 0.112193 0.013885 662.047 1.80607e-13 0.176 0.00749091 0.00507617 - 11 687 4.6396e-14 1.65308e-26 1.28572e-13 0.105651 0.0121191 746.575 1.78001e-13 0.175872 0.00681097 0.00433488 - 12 749 4.49456e-14 1.60642e-26 1.26745e-13 0.10297 0.0117228 785.952 1.80157e-13 0.174667 0.00630025 0.00428846 - 13 812 4.47091e-14 1.60861e-26 1.26831e-13 0.099491 0.0108767 841.882 1.81016e-13 0.177122 0.00571443 0.00417186 - 14 874 4.44065e-14 1.58666e-26 1.25963e-13 0.095894 0.010173 906.225 1.80158e-13 0.177143 0.00530876 0.00387639 - 15 937 4.54158e-14 1.59159e-26 1.26158e-13 0.0907 0.00923288 1012.99 1.77302e-13 0.181237 0.00481625 0.00340147 - 16 999 4.45231e-14 1.56685e-26 1.25174e-13 0.0889053 0.0089262 1054.3 1.78837e-13 0.181 0.00452486 0.00337139 + 1 62 5.47726e-14 1.89905e-26 1.37806e-13 0.316982 0.127305 124.406 1.79367e-13 0.206349 0.0610501 0.0378328 + 2 124 5.73411e-14 2.07988e-26 1.44218e-13 0.224956 0.0547426 247.01 1.77575e-13 0.2 0.032 0.0182005 + 3 187 4.59343e-14 1.62797e-26 1.27592e-13 0.202585 0.0496736 304.575 1.837e-13 0.175532 0.0249839 0.0158385 + 4 249 4.76015e-14 1.67468e-26 1.2941e-13 0.17194 0.0361214 422.822 1.83419e-13 0.18 0.0182222 0.0112228 + 5 312 5.01532e-14 1.71426e-26 1.3093e-13 0.147559 0.0255973 574.085 1.74495e-13 0.191693 0.0134718 0.00823242 + 6 374 4.5541e-14 1.58633e-26 1.25949e-13 0.142816 0.0245389 612.85 1.80888e-13 0.181333 0.0120392 0.00830289 + 7 437 4.21231e-14 1.47979e-26 1.21647e-13 0.137989 0.0231649 656.483 1.83892e-13 0.171233 0.0110502 0.00794715 + 8 499 4.33339e-14 1.50823e-26 1.2281e-13 0.126742 0.0189683 778.16 1.79575e-13 0.174 0.00949425 0.00653715 + 9 562 4.35618e-14 1.5546e-26 1.24684e-13 0.120628 0.0165036 859.036 1.81574e-13 0.168739 0.00875012 0.00577523 + 10 624 4.56042e-14 1.63614e-26 1.27912e-13 0.112193 0.013885 993.071 1.80607e-13 0.176 0.00749091 0.00507617 + 11 687 4.6396e-14 1.65308e-26 1.28572e-13 0.105651 0.0121191 1119.86 1.78001e-13 0.175872 0.00681097 0.00433488 + 12 749 4.49456e-14 1.60642e-26 1.26745e-13 0.10297 0.0117228 1178.93 1.80157e-13 0.174667 0.00630025 0.00428846 + 13 812 4.47091e-14 1.60861e-26 1.26831e-13 0.099491 0.0108767 1262.82 1.81016e-13 0.177122 0.00571443 0.00417186 + 14 874 4.44065e-14 1.58666e-26 1.25963e-13 0.095894 0.010173 1359.34 1.80158e-13 0.177143 0.00530876 0.00387639 + 15 937 4.54158e-14 1.59159e-26 1.26158e-13 0.0907 0.00923288 1519.48 1.77302e-13 0.181237 0.00481625 0.00340147 + 16 999 4.45231e-14 1.56685e-26 1.25174e-13 0.0889053 0.0089262 1581.45 1.78837e-13 0.181 0.00452486 0.00337139 --------------------End of Global Run----------------------- The run consists of 1000 gamma of 6 MeV @@ -841,24 +844,24 @@ i/16 till_ith mean var sd r vov ---> Begin of event: 900 G4ConvergenceTester Output Result of DOSE_TALLY - EFFICIENCY = 0.635 - MEAN = 5.1075e-12 - VAR = 2.18186e-23 - SD = 4.67103e-12 - R = 0.0289204 - SHIFT = -1.67334e-14 - VOV = 0.000147739 - FOM = 1271.93 -THE LARGEST SCORE = 1.0761e-11 and it happend at 764th event - Affected Mean = 5.11315e-12 and its ratio to orignal is 1.00111 - Affected VAR = 2.18287e-23 and its ratio to orignal is 1.00046 - Affected R = 0.0288807 and its ratio to orignal is 0.998628 - Affected SHIFT = -2.10374e-14 and its ratio to orignal is 1.25721 - Affected FOM = 1271.93 and its ratio to orignal is 1 + EFFICIENCY = 0.631 + MEAN = 5.03046e-12 + VAR = 2.09456e-23 + SD = 4.57663e-12 + R = 0.0287699 + SHIFT = 1.36898e-15 + VOV = 0.000182109 + FOM = 2013.6 +THE LARGEST SCORE = 1.06427e-11 and it happend at 133th event + Affected Mean = 5.03607e-12 and its ratio to orignal is 1.00111 + Affected VAR = 2.09561e-23 and its ratio to orignal is 1.0005 + Affected R = 0.0287307 and its ratio to orignal is 0.998638 + Affected SHIFT = -2.82122e-15 and its ratio to orignal is -2.06081 + Affected FOM = 2013.6 and its ratio to orignal is 1 MEAN distribution is not RANDOM r follows 1/std::sqrt(N) r is monotonically decrease -r is less than 0.1. r = 0.0289204 +r is less than 0.1. r = 0.0287699 VOV follows 1/std::sqrt(N) VOV is monotonically decrease FOM distribution is not RANDOM @@ -868,26 +871,26 @@ This result passes 5 / 8 Convergence Test. G4ConvergenceTester Output History of DOSE_TALLY i/16 till_ith mean var sd r vov fom shift e r2eff r2int - 1 62 5.53065e-12 2.11539e-23 4.59934e-12 0.104773 0.00345181 96.9113 -4.40351e-13 0.666667 0.00793651 0.0028666 - 2 124 5.21427e-12 2.12833e-23 4.61338e-12 0.0791354 0.00146416 169.876 -9.22854e-14 0.656 0.00419512 0.00201718 - 3 187 4.80438e-12 2.14275e-23 4.62899e-12 0.07027 0.00102027 215.443 2.89404e-13 0.62234 0.00322786 0.00168375 - 4 249 4.84843e-12 2.16468e-23 4.65261e-12 0.0606912 0.000690051 288.816 2.3154e-13 0.624 0.00241026 0.00125843 - 5 312 5.11328e-12 2.1776e-23 4.66648e-12 0.0515842 0.000499835 399.796 6.54981e-15 0.645367 0.00175561 0.000896825 - 6 374 5.05058e-12 2.1849e-23 4.67429e-12 0.0477924 0.000405729 465.753 6.1819e-14 0.634667 0.00153501 0.000743004 - 7 437 5.0899e-12 2.17646e-23 4.66526e-12 0.0437954 0.000352594 554.644 2.21414e-14 0.634703 0.00131402 0.000599643 - 8 499 5.06795e-12 2.18137e-23 4.67052e-12 0.0412143 0.000310055 626.292 4.12079e-14 0.63 0.0011746 0.000520616 - 9 562 5.01284e-12 2.18003e-23 4.66908e-12 0.0392549 0.000277056 690.375 8.90387e-14 0.626998 0.00105666 0.000481545 - 10 624 4.91961e-12 2.17383e-23 4.66243e-12 0.037909 0.000256105 740.266 1.72942e-13 0.6272 0.00095102 0.000483772 - 11 687 5.01907e-12 2.17233e-23 4.66083e-12 0.0354034 0.00022996 848.754 8.14949e-14 0.633721 0.00084009 0.000411491 - 12 749 5.09551e-12 2.1806e-23 4.66969e-12 0.0334634 0.000202725 950.019 8.38385e-15 0.637333 0.000758717 0.000359589 - 13 812 5.00488e-12 2.18574e-23 4.67519e-12 0.0327612 0.000184474 991.179 8.62371e-14 0.624846 0.000738492 0.000333486 - 14 874 5.11023e-12 2.1852e-23 4.67461e-12 0.0309244 0.000170058 1112.42 -1.69642e-14 0.632 0.000665461 0.000289764 - 15 937 5.10732e-12 2.18525e-23 4.67467e-12 0.0298852 0.000157073 1191.13 -9.68995e-15 0.634328 0.000614574 0.000277599 - 16 999 5.1075e-12 2.18186e-23 4.67103e-12 0.0289204 0.000147739 1271.93 -1.67334e-14 0.635 0.000574803 0.00026075 + 1 62 4.8425e-12 2.11277e-23 4.59649e-12 0.119588 0.00320077 116.54 1.24176e-13 0.571429 0.0119048 0.00216943 + 2 124 4.5137e-12 2.08137e-23 4.5622e-12 0.0904038 0.00172398 203.927 4.25225e-13 0.568 0.00608451 0.00202296 + 3 187 4.5484e-12 2.12944e-23 4.61459e-12 0.0739938 0.000987755 304.409 3.9034e-13 0.558511 0.00420466 0.0012413 + 4 249 4.65867e-12 2.11346e-23 4.59724e-12 0.0624117 0.00076412 427.875 3.34298e-13 0.584 0.00284932 0.00103032 + 5 312 4.6235e-12 2.17027e-23 4.65861e-12 0.0569525 0.000548115 513.834 3.80465e-13 0.56869 0.00242309 0.000810138 + 6 374 4.63931e-12 2.13445e-23 4.62001e-12 0.0514249 0.000490849 630.233 3.53744e-13 0.578667 0.00194163 0.000695843 + 7 437 4.57617e-12 2.12164e-23 4.60613e-12 0.0480947 0.00044567 720.534 4.12199e-13 0.577626 0.00166946 0.000638353 + 8 499 4.6657e-12 2.12777e-23 4.61277e-12 0.0442141 0.000359186 852.566 3.1898e-13 0.586 0.00141297 0.000538004 + 9 562 4.72049e-12 2.10569e-23 4.58878e-12 0.040969 0.000333495 992.974 2.74593e-13 0.596803 0.00119999 0.000475487 + 10 624 4.79255e-12 2.11101e-23 4.59457e-12 0.0383476 0.000287207 1133.37 2.10887e-13 0.6016 0.00105957 0.000408614 + 11 687 4.87204e-12 2.1073e-23 4.59053e-12 0.0359218 0.000262284 1291.61 1.46399e-13 0.610465 0.000927464 0.000361036 + 12 749 4.92191e-12 2.10199e-23 4.58474e-12 0.0340134 0.000243613 1440.61 1.03457e-13 0.616 0.000831169 0.000324203 + 13 812 5.00885e-12 2.10157e-23 4.58429e-12 0.0320988 0.000221836 1617.6 1.61632e-14 0.622386 0.000746272 0.000282792 + 14 874 4.97202e-12 2.09478e-23 4.57688e-12 0.0311195 0.000207449 1721.01 4.91775e-14 0.622857 0.000692005 0.000275311 + 15 937 4.99055e-12 2.08759e-23 4.56902e-12 0.0298932 0.000195212 1865.1 3.32652e-14 0.628998 0.000628817 0.000263836 + 16 999 5.03046e-12 2.09456e-23 4.57663e-12 0.0287699 0.000182109 2013.6 1.36898e-15 0.631 0.000584786 0.000242091 --------------------End of Global Run----------------------- The run consists of 1000 proton of 210 MeV - Dose in scoring volume : 5.1075 nanoGy +- 147.637 picoGy + Dose in scoring volume : 5.03046 nanoGy +- 144.653 picoGy ------------------------------------------------------------ Graphics systems deleted. diff --git a/examples/extended/biasing/B01/exampleB01.out b/examples/extended/biasing/B01/exampleB01.out index f7561fa981..76d7d8c948 100644 --- a/examples/extended/biasing/B01/exampleB01.out +++ b/examples/extended/biasing/B01/exampleB01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -12,16 +12,6 @@ <<< Geant4 Physics List simulation engine: FTFP_BERT 2.0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -781,6 +771,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ++ ConcreteSD/Collisions id 0 ++ ConcreteSD/CollWeight id 1 ++ ConcreteSD/Population id 2 @@ -798,26 +801,26 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 ============================================================= ============================================================= Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v | - cell_00 | 38 | 129 | 38 | 38 | 0.159189 | 3.93155 | 1 | 8082.78 | 8082.78 | 6143.41 | 31777.8 | 977.965 | - cell_01 | 147 | 175 | 512 | 512 | 0.0234011 | 4.50537 | 1 | 24122.5 | 24122.5 | 128701 | 108681 | 3011.75 | - cell_02 | 154 | 257 | 1283 | 641.5 | 0.0132114 | 2.84829 | 0.5 | 47671.3 | 23835.6 | 162492 | 67890.8 | 2146.76 | - cell_03 | 217 | 359 | 1797 | 449.25 | 0.00771804 | 2.16402 | 0.25 | 63266.6 | 15816.6 | 152850 | 34227.5 | 1179.7 | - cell_04 | 298 | 449 | 2508 | 313.5 | 0.00444296 | 1.64284 | 0.125 | 80316.3 | 10039.5 | 137255 | 16493.3 | 609.819 | - cell_05 | 316 | 464 | 3093 | 193.312 | 0.0029678 | 1.14639 | 0.0625 | 89919.4 | 5619.96 | 91865.5 | 6442.69 | 272.639 | - cell_06 | 292 | 412 | 2466 | 77.0625 | 0.00324867 | 1.12579 | 0.03125 | 75120.3 | 2347.51 | 35066.8 | 2642.8 | 113.921 | - cell_07 | 281 | 405 | 2869 | 44.8281 | 0.00259938 | 1.0063 | 0.015625 | 82711.3 | 1292.36 | 21654 | 1300.51 | 56.2871 | - cell_08 | 220 | 307 | 2017 | 15.7578 | 0.00202507 | 0.864205 | 0.0078125 | 57075.1 | 445.9 | 8537.85 | 385.349 | 17.2898 | - cell_09 | 207 | 294 | 1951 | 7.62109 | 0.00193322 | 0.866714 | 0.00390625 | 54477.4 | 212.802 | 4354.37 | 184.439 | 8.41797 | - cell_10 | 171 | 251 | 1618 | 3.16016 | 0.0021047 | 0.776897 | 0.00195312 | 45977.2 | 89.7992 | 1678.16 | 69.7647 | 3.53201 | - cell_11 | 141 | 202 | 1432 | 1.39844 | 0.00238711 | 0.715644 | 0.000976562 | 41466.9 | 40.495 | 638.582 | 28.98 | 1.52436 | - cell_12 | 139 | 197 | 1318 | 0.643555 | 0.00195435 | 0.738886 | 0.000488281 | 37379.9 | 18.2519 | 359.767 | 13.4861 | 0.703111 | - cell_13 | 127 | 184 | 1393 | 0.340088 | 0.00234259 | 0.597097 | 0.000244141 | 39615.9 | 9.67186 | 137.829 | 5.77504 | 0.322876 | - cell_14 | 108 | 154 | 926 | 0.113037 | 0.00144701 | 0.681425 | 0.00012207 | 24968.9 | 3.04797 | 72.1566 | 2.07696 | 0.104411 | - cell_15 | 80 | 109 | 830 | 0.0506592 | 0.00126008 | 0.527462 | 6.10352e-05 | 21781.5 | 1.32944 | 28.8661 | 0.701227 | 0.0363735 | - cell_16 | 51 | 75 | 485 | 0.014801 | 0.00156348 | 0.555657 | 3.05176e-05 | 12851.4 | 0.392194 | 7.68356 | 0.217925 | 0.0120131 | - cell_17 | 33 | 47 | 255 | 0.00389099 | 0.00170679 | 0.580506 | 1.52588e-05 | 7488.17 | 0.11426 | 2.38382 | 0.0663288 | 0.00406868 | - cell_18 | 19 | 35 | 161 | 0.00122833 | 0.00473311 | 0.70104 | 7.62939e-06 | 5140.12 | 0.039216 | 0.370179 | 0.027492 | 0.0017521 | - cell_19 | 14 | 14 | 14 | 0.000106812 | 0.00536291 | 0.760101 | 7.62939e-06 | 2278.22 | 0.0173814 | 0.145278 | 0.0132117 | 0.000779115 | + cell_00 | 39 | 133 | 39 | 39 | 0.10904 | 1.847 | 1 | 7314.45 | 7314.45 | 5023.53 | 13509.8 | 547.766 | + cell_01 | 150 | 174 | 529 | 529 | 0.0191438 | 4.3571 | 1 | 24776.1 | 24776.1 | 158346 | 107952 | 3031.35 | + cell_02 | 185 | 281 | 1161 | 580.5 | 0.0113294 | 2.8294 | 0.5 | 42409.6 | 21204.8 | 166951 | 59997 | 1891.45 | + cell_03 | 259 | 378 | 2045 | 511.25 | 0.00701385 | 2.36574 | 0.25 | 69002.2 | 17250.6 | 192206 | 40810.4 | 1348.11 | + cell_04 | 332 | 477 | 2669 | 333.625 | 0.00556124 | 1.9901 | 0.125 | 86766.9 | 10845.9 | 134430 | 21584.3 | 747.597 | + cell_05 | 375 | 572 | 3490 | 218.125 | 0.00411284 | 1.60753 | 0.0625 | 108628 | 6789.22 | 96286.5 | 10913.9 | 396.011 | + cell_06 | 374 | 544 | 3382 | 105.688 | 0.00406769 | 1.42661 | 0.03125 | 103232 | 3226.01 | 44105.6 | 4602.27 | 179.408 | + cell_07 | 390 | 558 | 3678 | 57.4688 | 0.00235337 | 1.1076 | 0.015625 | 103117 | 1611.21 | 31041.7 | 1784.58 | 73.0524 | + cell_08 | 322 | 465 | 3122 | 24.3906 | 0.00263579 | 1.08198 | 0.0078125 | 87754 | 685.578 | 12004.9 | 741.778 | 31.6423 | + cell_09 | 300 | 413 | 2794 | 10.9141 | 0.00277678 | 1.02977 | 0.00390625 | 81975.2 | 320.216 | 5016.14 | 329.747 | 13.9287 | + cell_10 | 268 | 402 | 2512 | 4.90625 | 0.00300105 | 1.12219 | 0.00195312 | 73299.7 | 143.163 | 2229.69 | 160.657 | 6.6914 | + cell_11 | 215 | 315 | 2083 | 2.03418 | 0.00351093 | 1.21322 | 0.000976562 | 63135.3 | 61.6556 | 866.631 | 74.8015 | 3.04268 | + cell_12 | 182 | 288 | 1698 | 0.829102 | 0.00336218 | 1.26154 | 0.000488281 | 51732.6 | 25.2601 | 377.732 | 31.8666 | 1.27 | + cell_13 | 179 | 281 | 1860 | 0.454102 | 0.00329636 | 1.18124 | 0.000244141 | 55119.6 | 13.4569 | 198.138 | 15.8958 | 0.653134 | + cell_14 | 194 | 286 | 1783 | 0.217651 | 0.00388223 | 1.21878 | 0.00012207 | 54032.7 | 6.59579 | 86.0927 | 8.03883 | 0.334232 | + cell_15 | 209 | 307 | 2009 | 0.12262 | 0.00340077 | 1.19782 | 6.10352e-05 | 61609.1 | 3.76032 | 57.2078 | 4.5042 | 0.19455 | + cell_16 | 191 | 296 | 1721 | 0.0525208 | 0.00419752 | 1.23058 | 3.05176e-05 | 53101.7 | 1.62053 | 20.4162 | 1.9942 | 0.0856975 | + cell_17 | 173 | 260 | 1725 | 0.0263214 | 0.0029313 | 1.10115 | 1.52588e-05 | 50473.6 | 0.770166 | 12.4802 | 0.848072 | 0.0365832 | + cell_18 | 111 | 205 | 1151 | 0.00878143 | 0.00451357 | 1.1056 | 7.62939e-06 | 34016.7 | 0.259527 | 2.83551 | 0.286934 | 0.0127983 | + cell_19 | 71 | 71 | 71 | 0.000541687 | 0.00684046 | 1.6655 | 7.62939e-06 | 10890.2 | 0.0830856 | 0.786876 | 0.138379 | 0.0053826 | ============================================= === G4ProcessPlacer::RemoveProcess: for: neutron ProcessName: ImportanceProcess, will be removed! diff --git a/examples/extended/biasing/B03/exampleB03.out b/examples/extended/biasing/B03/exampleB03.out index 32cb39d091..ddcd1e34af 100644 --- a/examples/extended/biasing/B03/exampleB03.out +++ b/examples/extended/biasing/B03/exampleB03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -65,36 +65,7 @@ DoIt Vector: ================================================ GeomSampler Configured!!! Running in singlethreaded mode!!! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= +Number of de-excitation channels is changed to 68 B03PhysicsList::SetCuts:CutLength : 1 (mm) ghost world: ParallelBiasingWorld adding cell: 1 replica: 0 name: cell_01 @@ -498,6 +469,32 @@ hIoni: for pi- SubType= 2 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ++ ConcreteSD/Collisions id 0 ++ ConcreteSD/CollWeight id 1 ++ ConcreteSD/Population id 2 @@ -513,7 +510,7 @@ hIoni: for pi- SubType= 2 *** G4Exception : GeomBias1001 issued by : G4ImportanceAlgorithm::Warning() Calculate() - ipre_over_ipost ! in [0.25, 4]. -ipre_over_ipost = 4096. +ipre_over_ipost = 8192. *** This is just a warning message. *** -------- WWWW -------- G4Exception-END --------- WWWW ------- @@ -533,26 +530,26 @@ ipre_over_ipost = 4096. ============================================================= ============================================================= Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v | - cell_00 | 35 | 133 | 0 | 0 | 1.24683 | 3.02032 | 1 | 6543.05 | 6543.05 | 570.278 | 19762.1 | 711.038 | - cell_01 | 147 | 183 | 512 | 512 | 0.689648 | 4.44226 | 1 | 22609.6 | 22609.6 | 4170.21 | 100438 | 2875.98 | - cell_02 | 156 | 262 | 1228 | 614 | 0.293652 | 2.74735 | 0.5 | 44899.8 | 22449.9 | 6752.21 | 61677.8 | 1982.8 | - cell_03 | 191 | 341 | 1627 | 406.75 | 0.232076 | 2.63801 | 0.25 | 56651.5 | 14162.9 | 5119.69 | 37361.8 | 1188.15 | - cell_04 | 215 | 367 | 1759 | 219.875 | 0.188215 | 2.3795 | 0.125 | 58140.9 | 7267.61 | 2990.95 | 17293.3 | 562.942 | - cell_05 | 244 | 397 | 1899 | 118.688 | 0.191235 | 2.10345 | 0.0625 | 66265.7 | 4141.61 | 1618.53 | 8711.66 | 309.519 | - cell_06 | 282 | 459 | 2242 | 70.0625 | 0.186034 | 2.08815 | 0.03125 | 76440.2 | 2388.76 | 962.175 | 4988.09 | 178.998 | - cell_07 | 308 | 492 | 2706 | 42.2812 | 0.158886 | 1.77647 | 0.015625 | 86511.3 | 1351.74 | 569.718 | 2401.32 | 90.5205 | - cell_08 | 318 | 510 | 2701 | 21.1016 | 0.133471 | 1.50145 | 0.0078125 | 84640.2 | 661.252 | 296.247 | 992.835 | 39.5405 | - cell_09 | 325 | 476 | 2666 | 10.4141 | 0.124234 | 1.33054 | 0.00390625 | 85665.6 | 334.631 | 150.896 | 445.24 | 18.7465 | - cell_10 | 313 | 480 | 2878 | 5.62109 | 0.117983 | 1.28097 | 0.00195312 | 85723.7 | 167.429 | 77.5702 | 214.471 | 9.15195 | - cell_11 | 270 | 400 | 2367 | 2.31152 | 0.105955 | 1.19511 | 0.000976562 | 72268.5 | 70.5747 | 35.0292 | 84.3447 | 3.71152 | - cell_12 | 256 | 394 | 2129 | 1.03955 | 0.137258 | 1.35987 | 0.000488281 | 65553.6 | 32.0086 | 13.658 | 43.5275 | 1.87468 | - cell_13 | 249 | 356 | 2233 | 0.545166 | 0.101676 | 1.22937 | 0.000244141 | 68040.2 | 16.6114 | 8.45268 | 20.4216 | 0.859434 | - cell_14 | 211 | 319 | 1789 | 0.218384 | 0.114427 | 1.3403 | 0.00012207 | 56707.9 | 6.92235 | 3.34116 | 9.27806 | 0.38232 | - cell_15 | 187 | 300 | 1834 | 0.111938 | 0.115719 | 1.30993 | 6.10352e-05 | 56245.4 | 3.43295 | 1.62668 | 4.49693 | 0.188238 | - cell_16 | 181 | 300 | 1709 | 0.0521545 | 0.108321 | 1.25071 | 3.05176e-05 | 50757.5 | 1.549 | 0.760427 | 1.93735 | 0.0823699 | - cell_17 | 150 | 244 | 1480 | 0.022583 | 0.0913458 | 1.13875 | 1.52588e-05 | 41970.7 | 0.640423 | 0.344666 | 0.729284 | 0.0314838 | - cell_18 | 85 | 168 | 942 | 0.00718689 | 0.137986 | 1.57199 | 7.62939e-06 | 29412.7 | 0.224401 | 0.102615 | 0.352755 | 0.0141595 | - cell_19 | 56 | 56 | 0 | 0 | 0.36184 | 2.5269 | 7.62939e-06 | 7796.83 | 0.0594851 | 0.0155328 | 0.150313 | 0.00562039 | + cell_00 | 38 | 131 | 0 | 0 | 0.615797 | 3.54717 | 1 | 7764.55 | 7764.55 | 1446.41 | 27542.2 | 890.696 | + cell_01 | 141 | 172 | 559 | 559 | 0.452871 | 4.11041 | 1 | 23144.2 | 23144.2 | 5872.88 | 95132 | 2659.66 | + cell_02 | 149 | 263 | 1037 | 518.5 | 0.301368 | 3.06565 | 0.5 | 38748.3 | 19374.1 | 6035.26 | 59394.3 | 1818.83 | + cell_03 | 215 | 354 | 1670 | 417.5 | 0.243482 | 2.43315 | 0.25 | 58023.4 | 14505.9 | 4816.75 | 35294.9 | 1172.79 | + cell_04 | 227 | 381 | 1932 | 241.5 | 0.185452 | 2.07363 | 0.125 | 66787 | 8348.37 | 3257.61 | 17311.4 | 604.131 | + cell_05 | 244 | 411 | 2126 | 132.875 | 0.168608 | 1.81913 | 0.0625 | 69047.8 | 4315.49 | 1710.4 | 7850.42 | 288.386 | + cell_06 | 256 | 406 | 2148 | 67.125 | 0.16032 | 1.8576 | 0.03125 | 69619.5 | 2175.61 | 923.281 | 4041.42 | 148.02 | + cell_07 | 292 | 423 | 2391 | 37.3594 | 0.148577 | 1.57139 | 0.015625 | 75858.8 | 1185.29 | 484.816 | 1862.55 | 72.0325 | + cell_08 | 277 | 436 | 2431 | 18.9922 | 0.125756 | 1.42518 | 0.0078125 | 75164.9 | 587.226 | 267.904 | 836.902 | 33.6905 | + cell_09 | 261 | 413 | 2178 | 8.50781 | 0.137057 | 1.52669 | 0.00390625 | 69034.3 | 269.665 | 119.175 | 411.696 | 16.3338 | + cell_10 | 297 | 435 | 2365 | 4.61914 | 0.124018 | 1.36421 | 0.00195312 | 75338.1 | 147.145 | 67.432 | 200.736 | 8.36276 | + cell_11 | 316 | 478 | 2821 | 2.75488 | 0.114359 | 1.19705 | 0.000976562 | 87062 | 85.0215 | 39.8396 | 101.775 | 4.556 | + cell_12 | 278 | 431 | 2576 | 1.25781 | 0.112178 | 1.22026 | 0.000488281 | 75947.9 | 37.0839 | 17.4092 | 45.2521 | 1.95292 | + cell_13 | 252 | 371 | 2192 | 0.535156 | 0.0996486 | 1.11984 | 0.000244141 | 66109 | 16.1399 | 8.03034 | 18.074 | 0.800212 | + cell_14 | 221 | 336 | 2076 | 0.253418 | 0.0946568 | 1.13656 | 0.00012207 | 60910.8 | 7.4354 | 3.98966 | 8.45078 | 0.377648 | + cell_15 | 186 | 290 | 1861 | 0.113586 | 0.110914 | 1.0462 | 6.10352e-05 | 55839.9 | 3.40819 | 1.57606 | 3.56566 | 0.174807 | + cell_16 | 148 | 232 | 1494 | 0.0455933 | 0.0632583 | 0.797689 | 3.05176e-05 | 42309.8 | 1.29119 | 0.817666 | 1.02997 | 0.0517241 | + cell_17 | 115 | 181 | 1131 | 0.0172577 | 0.10909 | 1.04002 | 1.52588e-05 | 34875.2 | 0.532153 | 0.247801 | 0.553449 | 0.0270326 | + cell_18 | 69 | 132 | 780 | 0.00595093 | 0.102372 | 0.894151 | 7.62939e-06 | 23056.4 | 0.175906 | 0.0806366 | 0.157287 | 0.00825496 | + cell_19 | 42 | 42 | 0 | 0 | 0.19215 | 1.46111 | 7.62939e-06 | 6806.72 | 0.0519311 | 0.0177029 | 0.0758772 | 0.0034016 | ============================================= === G4ProcessPlacer::RemoveProcess: for: neutron ProcessName: ImportanceProcess, will be removed! diff --git a/examples/extended/biasing/GB01/exampleGB01.out b/examples/extended/biasing/GB01/exampleGB01.out index 9853ec774f..76c61c4141 100644 --- a/examples/extended/biasing/GB01/exampleGB01.out +++ b/examples/extended/biasing/GB01/exampleGB01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -17,16 +17,6 @@ ********** processes are wrapped for biasing ************ ********************************************************* Attaching biasing operator TestManyExponentialTransform to logical volume test.logical -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 1, Parent ID = 0 diff --git a/examples/extended/biasing/GB02/exampleGB02.out b/examples/extended/biasing/GB02/exampleGB02.out index 308f291fb4..ab6a01d855 100644 --- a/examples/extended/biasing/GB02/exampleGB02.out +++ b/examples/extended/biasing/GB02/exampleGB02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -17,16 +17,6 @@ ********** processes are wrapped for biasing ************ ********************************************************* Attaching biasing operator TestManyForceCollision to logical volume test.logical -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 1, Parent ID = 0 diff --git a/examples/extended/biasing/GB03/exampleGB03.out b/examples/extended/biasing/GB03/exampleGB03.out index c667c57fe9..0e4fb4e25f 100644 --- a/examples/extended/biasing/GB03/exampleGB03.out +++ b/examples/extended/biasing/GB03/exampleGB03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -72,16 +72,6 @@ G4SDManager::AddNewCollection : the collection is registere G4SDManager::AddNewCollection : the collection is registered at 4 G4SDManager::AddNewCollection : the collection is registered at 5 G4SDManager::AddNewCollection : the collection is registered at 6 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -765,6 +755,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -824,7 +827,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.16s Real=0.17s Sys=0s + User=0.12s Real=0.13s Sys=0s Region -- -- appears in world volume This region is in the mass world. @@ -884,7 +887,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob Run terminated. Run Summary Number of events processed : 10 - User=0.73s Real=0.74s Sys=0s + User=0.17s Real=0.16s Sys=0s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. @@ -896,22 +899,22 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -Total navigation history collections cleaned: 93 +Total navigation history collections cleaned: 78 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.145 MB +Pool ID '20G4NavigationLevelRep', size : 0.121 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.0375 MB +Pool ID '17G4DynamicParticle', size : 0.0346 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 MB -Pool ID '7G4Track', size : 0.074 MB -Pool ID '18G4TouchableHistory', size : 0.0115 MB +Pool ID '7G4Track', size : 0.0683 MB +Pool ID '18G4TouchableHistory', size : 0.00961 MB Pool ID '15G4CountedObjectIvE', size : 0.00192 MB Pool ID '10G4Fragment', size : 0.00192 MB Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.28 MB +Dynamic pools deleted: 12 / Total memory freed: 0.24 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/extended/biasing/GB04/exampleGB04.out b/examples/extended/biasing/GB04/exampleGB04.out index 41ee82107e..e4c211b01e 100644 --- a/examples/extended/biasing/GB04/exampleGB04.out +++ b/examples/extended/biasing/GB04/exampleGB04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -17,16 +17,6 @@ ********** processes are wrapped for biasing ************ ********************************************************* Attaching biasing operator BremSplittingOperator to logical volume test.logical -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -759,6 +749,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -1209,7 +1212,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0s Sys=0s + User=0s Real=0s Sys=0s Region -- -- appears in world volume This region is in the mass world. @@ -2528,7 +2531,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 10 - User=0.01s Real=0.02s Sys=0s + User=0s Real=0s Sys=0s Region -- -- appears in world volume This region is in the mass world. @@ -3706,7 +3709,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=0s Real=0s Sys=0s + User=0.01s Real=0s Sys=0s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out index f4467e18ee..a1aa2a2352 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -321,11 +321,11 @@ nb event 175000 1% Precision reached! Run terminated. Run Summary - Run Aborted after 176420 events processed. - User=183.82s Real=184.32s Sys=0.13s + Run Aborted after 177760 events processed. + User=93.7s Real=94.2s Sys=0.19s Results of reverse/adjoint simulation! -normalised edep [MeV] = 0.00165028 -error[MeV] = 1.65024e-05 +normalised edep [MeV] = 0.00167089 +error[MeV] = 1.67088e-05 ----> Histogram Tree is saved in adjoint_sim.root Graphics systems deleted. diff --git a/examples/extended/electromagnetic/TestEm0/TestEm0.out b/examples/extended/electromagnetic/TestEm0/TestEm0.out index 195e0f6699..50802ee122 100644 --- a/examples/extended/electromagnetic/TestEm0/TestEm0.out +++ b/examples/extended/electromagnetic/TestEm0/TestEm0.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/electromagnetic/TestEm1/TestEm1.out b/examples/extended/electromagnetic/TestEm1/TestEm1.out index 3696e3cf84..3ed60e2777 100644 --- a/examples/extended/electromagnetic/TestEm1/TestEm1.out +++ b/examples/extended/electromagnetic/TestEm1/TestEm1.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -334,7 +334,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 2000 - User=5.18s Real=5.19s Sys=0s + User=1.48s Real=1.48s Sys=0s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm10/TestEm10.out b/examples/extended/electromagnetic/TestEm10/TestEm10.out index c6c2846444..20e156f2ba 100644 --- a/examples/extended/electromagnetic/TestEm10/TestEm10.out +++ b/examples/extended/electromagnetic/TestEm10/TestEm10.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -131,7 +131,7 @@ Lorentz Factor XTR photon number 8.085e+04 3.149 9.283e+04 3.149 -total time for build X-ray TR energy loss tables = 0.06 s +total time for build X-ray TR energy loss tables = 0.04 s msc: for e+ SubType= 10 RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1 @@ -217,7 +217,7 @@ Lorentz Factor XTR photon number 8.085e+04 3.149 9.283e+04 3.149 -total time for build X-ray TR energy loss tables = 0.05 s +total time for build X-ray TR energy loss tables = 0.04 s msc: for proton SubType= 10 RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180 @@ -541,7 +541,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.94s Real=0.94s Sys=0s + User=0.28s Real=0.28s Sys=0s ================== run summary ===================== End of Run TotNbofEvents = 1000 Mean energy deposit in absorber = 0.0481175 +-0.0195904 MeV diff --git a/examples/extended/electromagnetic/TestEm11/TestEm11.out b/examples/extended/electromagnetic/TestEm11/TestEm11.out index ea4ed2ee68..3b85c0c8f1 100644 --- a/examples/extended/electromagnetic/TestEm11/TestEm11.out +++ b/examples/extended/electromagnetic/TestEm11/TestEm11.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -456,7 +456,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 20000 - User=5.26s Real=5.29s Sys=0s + User=1.93s Real=1.93s Sys=0s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm12/TestEm12.out b/examples/extended/electromagnetic/TestEm12/TestEm12.out index 45977c1a32..e6ec9b2517 100644 --- a/examples/extended/electromagnetic/TestEm12/TestEm12.out +++ b/examples/extended/electromagnetic/TestEm12/TestEm12.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -164,7 +164,7 @@ Type of PIXE cross section for e+- Livermore Run terminated. Run Summary Number of events processed : 10000 - User=2.98s Real=2.98s Sys=0s + User=1.54s Real=1.54s Sys=0s ======================== run summary ===================== diff --git a/examples/extended/electromagnetic/TestEm13/TestEm13.out b/examples/extended/electromagnetic/TestEm13/TestEm13.out index 3370fe2a6d..f2976d6a39 100644 --- a/examples/extended/electromagnetic/TestEm13/TestEm13.out +++ b/examples/extended/electromagnetic/TestEm13/TestEm13.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -427,7 +427,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=4.5s Real=4.5s Sys=0s + User=2.29s Real=2.29s Sys=0s ======================== run summary ====================== @@ -494,7 +494,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=9s Real=9.04s Sys=0s + User=3.47s Real=3.5s Sys=0s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm14/TestEm14.out b/examples/extended/electromagnetic/TestEm14/TestEm14.out index 9f494fe245..812a00dcaa 100644 --- a/examples/extended/electromagnetic/TestEm14/TestEm14.out +++ b/examples/extended/electromagnetic/TestEm14/TestEm14.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -466,7 +466,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000000 - User=13.58s Real=13.66s Sys=0s + User=4.48s Real=4.5s Sys=0s ======================== run summary ====================== @@ -535,7 +535,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000000 - User=10.03s Real=10.06s Sys=0s + User=4.89s Real=4.89s Sys=0.01s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm15/TestEm15.out b/examples/extended/electromagnetic/TestEm15/TestEm15.out index cf23c42870..a798002c57 100644 --- a/examples/extended/electromagnetic/TestEm15/TestEm15.out +++ b/examples/extended/electromagnetic/TestEm15/TestEm15.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -488,7 +488,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=0.31s Real=0.32s Sys=0s + User=0.1s Real=0.1s Sys=0s The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 ) @@ -558,7 +558,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.35s Real=0.35s Sys=0s + User=0.13s Real=0.13s Sys=0s The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm16/TestEm16.out b/examples/extended/electromagnetic/TestEm16/TestEm16.out index 49ef85edfb..6be300c1b0 100644 --- a/examples/extended/electromagnetic/TestEm16/TestEm16.out +++ b/examples/extended/electromagnetic/TestEm16/TestEm16.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -268,7 +268,7 @@ G4SynchrotronRadiation::GetRandomEnergySR : Run terminated. Run Summary Number of events processed : 100 - User=0.72s Real=0.72s Sys=0s + User=0.23s Real=0.23s Sys=0s Summary for synchrotron radiation : Number of photons = 64554 Emean = 20.24 +/- 0.1449 keV diff --git a/examples/extended/electromagnetic/TestEm17/TestEm17.out b/examples/extended/electromagnetic/TestEm17/TestEm17.out index ab043ef08f..4ce915aca1 100644 --- a/examples/extended/electromagnetic/TestEm17/TestEm17.out +++ b/examples/extended/electromagnetic/TestEm17/TestEm17.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -185,7 +185,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=3.94s Real=3.98s Sys=0s + User=1.71s Real=1.71s Sys=0s The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -246,7 +246,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=3.4s Real=3.42s Sys=0s + User=1.58s Real=1.59s Sys=0s The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 ) @@ -306,7 +306,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=2.38s Real=2.39s Sys=0s + User=1.51s Real=1.51s Sys=0s 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 7575596c47..c19cc7df8c 100644 --- a/examples/extended/electromagnetic/TestEm18/TestEm18.out +++ b/examples/extended/electromagnetic/TestEm18/TestEm18.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -436,7 +436,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=3.16s Real=3.18s Sys=0s + User=1.35s Real=1.34s Sys=0s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm2/TestEm2.out b/examples/extended/electromagnetic/TestEm2/TestEm2.out index a115ca262d..5b4d5cab51 100644 --- a/examples/extended/electromagnetic/TestEm2/TestEm2.out +++ b/examples/extended/electromagnetic/TestEm2/TestEm2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -558,7 +558,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=9.62s Real=9.71s Sys=0s + User=3s Real=3.01s Sys=0s ===== SUMMARY ===== diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3.out b/examples/extended/electromagnetic/TestEm3/TestEm3.out index d9dbf4e80b..68ec40898f 100644 --- a/examples/extended/electromagnetic/TestEm3/TestEm3.out +++ b/examples/extended/electromagnetic/TestEm3/TestEm3.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -499,7 +499,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100 - User=3.15s Real=3.15s Sys=0s + User=2.04s Real=2.04s Sys=0s ------------------------------------------------------------ material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen @@ -944,7 +944,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=3.23s Real=3.24s Sys=0s + User=1.99s Real=1.99s Sys=0s ------------------------------------------------------------ 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 7dc4675e31..ed46ccc0e9 100644 --- a/examples/extended/electromagnetic/TestEm4/TestEm4.out +++ b/examples/extended/electromagnetic/TestEm4/TestEm4.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -140,7 +140,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=2.16s Real=2.17s Sys=0s + User=1.06s Real=1.08s Sys=0s --------- Ranecu engine status --------- Initial seed (index) = 0 diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5.out b/examples/extended/electromagnetic/TestEm5/TestEm5.out index 62c17615aa..4ee15d323e 100644 --- a/examples/extended/electromagnetic/TestEm5/TestEm5.out +++ b/examples/extended/electromagnetic/TestEm5/TestEm5.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -433,7 +433,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=2.19s Real=2.19s Sys=0s + User=1.08s Real=1.09s Sys=0s ======================== run summary ====================== @@ -857,7 +857,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 50000 - User=1.95s Real=1.96s Sys=0s + User=1.11s Real=1.11s Sys=0s ======================== run summary ====================== @@ -1286,7 +1286,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 50000 - User=5.14s Real=5.15s Sys=0s + User=2.34s Real=2.34s Sys=0s ======================== run summary ====================== @@ -1721,7 +1721,7 @@ Index : 4 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 50000 - User=1.32s Real=1.34s Sys=0s + User=0.98s Real=0.98s Sys=0s ======================== run summary ====================== @@ -2157,7 +2157,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 50000 - User=17.71s Real=17.75s Sys=0s + User=10.1s Real=10.12s Sys=0s ======================== run summary ====================== diff --git a/examples/extended/electromagnetic/TestEm6/TestEm6.out b/examples/extended/electromagnetic/TestEm6/TestEm6.out index 0ae882c09c..4b49724a9a 100644 --- a/examples/extended/electromagnetic/TestEm6/TestEm6.out +++ b/examples/extended/electromagnetic/TestEm6/TestEm6.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -192,7 +192,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 5 - User=0s Real=0s Sys=0s + User=0s Real=0.01s Sys=0s Number of process calls ---> GammaToMuPair : 5... write Root file : testem6_0.root - done ... close Root file : testem6_0.root - done diff --git a/examples/extended/electromagnetic/TestEm7/TestEm7.out b/examples/extended/electromagnetic/TestEm7/TestEm7.out index 37d8264a86..10aed5e7d4 100644 --- a/examples/extended/electromagnetic/TestEm7/TestEm7.out +++ b/examples/extended/electromagnetic/TestEm7/TestEm7.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -507,7 +507,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=14.6s Real=14.65s Sys=0s + User=7.53s Real=7.58s Sys=0s The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -565,7 +565,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=5.25s Real=5.27s Sys=0s + User=4.15s Real=4.18s Sys=0s 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=2.03s Real=2.05s Sys=0s + User=1.82s Real=1.82s Sys=0s The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 ) @@ -1361,7 +1361,7 @@ Index : 3 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 kg/m3 ) @@ -1754,7 +1754,7 @@ Index : 3 used in the geometry : No Run terminated. Run Summary Number of events processed : 100 - User=0.02s Real=0.02s Sys=0s + User=0.01s Real=0.01s Sys=0s The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 ) @@ -2156,7 +2156,7 @@ Index : 4 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=13.83s Real=13.97s Sys=0.08s + User=6.32s Real=6.4s Sys=0.07s The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 ) @@ -2564,7 +2564,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=1.03s Real=1.03s Sys=0s + User=0.85s Real=0.85s Sys=0s The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 ) diff --git a/examples/extended/electromagnetic/TestEm8/TestEm8.out b/examples/extended/electromagnetic/TestEm8/TestEm8.out index ea53800af6..47f2e2b7c9 100644 --- a/examples/extended/electromagnetic/TestEm8/TestEm8.out +++ b/examples/extended/electromagnetic/TestEm8/TestEm8.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -862,7 +862,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=0.14s Real=0.13s Sys=0s + User=0.12s Real=0.13s Sys=0s RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0159235 ==================================================== Beam Particle: proton diff --git a/examples/extended/electromagnetic/TestEm9/TestEm9.out b/examples/extended/electromagnetic/TestEm9/TestEm9.out index ea5377a7d9..1c279d0060 100644 --- a/examples/extended/electromagnetic/TestEm9/TestEm9.out +++ b/examples/extended/electromagnetic/TestEm9/TestEm9.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -490,7 +490,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=2.59s Real=2.6s Sys=0s + User=1.31s Real=1.33s Sys=0s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 0 ================================================================= @@ -600,7 +600,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 1000 - User=4.96s Real=5s Sys=0s + User=2.11s Real=2.11s Sys=0s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 1 ================================================================= @@ -1099,7 +1099,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=2.46s Real=2.47s Sys=0s + User=0.9s Real=0.9s Sys=0s RunAction: End of run actions are started HistoManager: End of run actions are started RunID# 2 ================================================================= @@ -1598,7 +1598,7 @@ Index : 7 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=3.76s Real=3.76s Sys=0s + User=1.22s Real=1.22s Sys=0s 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 42c9ac3dc6..73a0bff7f3 100644 --- a/examples/extended/errorpropagation/errorprop.out +++ b/examples/extended/errorpropagation/errorprop.out @@ -4,13 +4,13 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 ************************************************************* - creating G4RunManagerKernel 0x166aff0 + creating G4RunManagerKernel 0x19b0340 The materials defined are : @@ -83,15 +83,15 @@ Current application state is PreInit Warning : Geant4 kernel is not Init state : Assuming Init state. physicsList->Construct() start. G4Transportation constructor> set fShortStepOptimisation to false -0x18b3e70G4ErrorPhysicsList:: particle process manager e+ = 0x18b6670 -0x18b3ce0G4ErrorPhysicsList:: particle process manager e- = 0x18b7c60 -0x18b3a20G4ErrorPhysicsList:: particle process manager gamma = 0x18b7ed0 -0x18b5520G4ErrorPhysicsList:: particle process manager geantino = 0x18b8120 -0x18b4080G4ErrorPhysicsList:: particle process manager mu+ = 0x18b8370 -0x18b4520G4ErrorPhysicsList:: particle process manager mu- = 0x18b85c0 -0x18b49c0G4ErrorPhysicsList:: particle process manager pi+ = 0x18b8810 -0x18b4e40G4ErrorPhysicsList:: particle process manager pi- = 0x18b8a60 -0x18b52c0G4ErrorPhysicsList:: particle process manager proton = 0x18b8cb0 +0x1bf90f0G4ErrorPhysicsList:: particle process manager e+ = 0x1bfb8f0 +0x1bf8f60G4ErrorPhysicsList:: particle process manager e- = 0x1bfcee0 +0x1bf8ca0G4ErrorPhysicsList:: particle process manager gamma = 0x1bfd150 +0x1bfa7a0G4ErrorPhysicsList:: particle process manager geantino = 0x1bfd3a0 +0x1bf9300G4ErrorPhysicsList:: particle process manager mu+ = 0x1bfd5f0 +0x1bf97a0G4ErrorPhysicsList:: particle process manager mu- = 0x1bfd840 +0x1bf9c40G4ErrorPhysicsList:: particle process manager pi+ = 0x1bfda90 +0x1bfa0c0G4ErrorPhysicsList:: particle process manager pi- = 0x1bfdce0 +0x1bfa540G4ErrorPhysicsList:: particle process manager proton = 0x1bfdf30 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 0b3263ced1..f2496f9d97 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction01Messenger.hh b/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction01Messenger.hh index bd4ee191f3..ba755dee36 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction01Messenger.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction01Messenger.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: ExG4DetectorConstruction01Messenger.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: ExG4DetectorConstruction01Messenger.hh 85714 2014-11-04 14:30:40Z ihrivnac $ // /// \file ExG4DetectorConstruction01Messenger.hh /// \brief Definition of the ExG4DetectorConstruction01Messenger class diff --git a/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction02Messenger.hh b/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction02Messenger.hh index 24f6503b66..b015294d38 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction02Messenger.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/common/include/ExG4DetectorConstruction02Messenger.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: ExG4DetectorConstruction02Messenger.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: ExG4DetectorConstruction02Messenger.hh 85714 2014-11-04 14:30:40Z ihrivnac $ // /// \file ExG4DetectorConstruction02Messenger.hh /// \brief Definition of the ExG4DetectorConstruction02Messenger class diff --git a/examples/extended/eventgenerator/pythia/decayer6/common/src/ExG4DetectorConstruction01Messenger.cc b/examples/extended/eventgenerator/pythia/decayer6/common/src/ExG4DetectorConstruction01Messenger.cc index 26c68bc0ff..92b5ca595c 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/common/src/ExG4DetectorConstruction01Messenger.cc +++ b/examples/extended/eventgenerator/pythia/decayer6/common/src/ExG4DetectorConstruction01Messenger.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: ExG4DetectorConstruction01Messenger.cc 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: ExG4DetectorConstruction01Messenger.cc 85714 2014-11-04 14:30:40Z ihrivnac $ // /// \file ExG4DetectorConstruction01Messenger.cc /// \brief Implementation of the ExG4DetectorConstruction01Messenger class diff --git a/examples/extended/eventgenerator/pythia/decayer6/include/EDecayType.hh b/examples/extended/eventgenerator/pythia/decayer6/include/EDecayType.hh index af2549b0c3..fb90f1953d 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/include/EDecayType.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/include/EDecayType.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: EDecayType.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: EDecayType.hh 66586 2012-12-21 10:48:39Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/include/EDecayType.hh /// \brief Definition of the EDecayType enumeration diff --git a/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh b/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh index 05f760a30b..224b81f182 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4Pythia6Decayer.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: G4Pythia6Decayer.hh 98497 2016-07-20 15:39:38Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/include/G4Pythia6Decayer.hh /// \brief Definition of the G4Pythia6Decayer class diff --git a/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh b/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh index 8161319a33..d1e141c28f 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4Pythia6DecayerMessenger.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: G4Pythia6DecayerMessenger.hh 66586 2012-12-21 10:48:39Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/include/G4Pythia6DecayerMessenger.hh /// \brief Definition of the G4Pythia6DecayerMessenger class diff --git a/examples/extended/eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh b/examples/extended/eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh index b803b62d88..f6db56b654 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: P6DExtDecayerPhysics.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: P6DExtDecayerPhysics.hh 66586 2012-12-21 10:48:39Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/include/P6DExtDecayerPhysics.hh /// \brief Definition of the P6DExtDecayerPhysics class diff --git a/examples/extended/eventgenerator/pythia/decayer6/include/Pythia6.hh b/examples/extended/eventgenerator/pythia/decayer6/include/Pythia6.hh index da16fe1229..8fb9dd75da 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/include/Pythia6.hh +++ b/examples/extended/eventgenerator/pythia/decayer6/include/Pythia6.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: Pythia6.hh 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: Pythia6.hh 66586 2012-12-21 10:48:39Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/include/Pythia6.hh /// \brief Definition of the Pythia6 class diff --git a/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc b/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc index edda1cfcc3..9bdb0091c1 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc +++ b/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Pythia6Decayer.cc 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: G4Pythia6Decayer.cc 98498 2016-07-20 15:39:59Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/src/G4Pythia6Decayer.cc /// \brief Implementation of the G4Pythia6Decayer class diff --git a/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc b/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc index c3d7c4cd5b..3f75e56729 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc +++ b/examples/extended/eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Pythia6DecayerMessenger.cc 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: G4Pythia6DecayerMessenger.cc 66586 2012-12-21 10:48:39Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/src/G4Pythia6DecayerMessenger.cc /// \brief Implementation of the G4Pythia6DecayerMessenger class diff --git a/examples/extended/eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc b/examples/extended/eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc index 49f7267bd2..e81c68972b 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc +++ b/examples/extended/eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: P6DExtDecayerPhysics.cc 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: P6DExtDecayerPhysics.cc 100121 2016-10-14 13:21:59Z gunter $ // /// \file eventgenerator/pythia/decayer6/src/P6DExtDecayerPhysics.cc /// \brief Implementation of the P6DExtDecayerPhysics class diff --git a/examples/extended/eventgenerator/pythia/decayer6/src/Pythia6.cc b/examples/extended/eventgenerator/pythia/decayer6/src/Pythia6.cc index 3ae779f223..c20b6a3de2 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/src/Pythia6.cc +++ b/examples/extended/eventgenerator/pythia/decayer6/src/Pythia6.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: Pythia6.cc 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: Pythia6.cc 98526 2016-07-21 11:15:24Z ihrivnac $ // /// \file eventgenerator/pythia/decayer6/src/Pythia6.cc /// \brief Implementation of the Pythia6 class diff --git a/examples/extended/eventgenerator/pythia/decayer6/src/pythia6_common_address.c b/examples/extended/eventgenerator/pythia/decayer6/src/pythia6_common_address.c index a281f89b8e..a46c70abaa 100644 --- a/examples/extended/eventgenerator/pythia/decayer6/src/pythia6_common_address.c +++ b/examples/extended/eventgenerator/pythia/decayer6/src/pythia6_common_address.c @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: pythia6_common_address.c 100687 2016-10-31 11:20:33Z gcosmo $ +// $Id: pythia6_common_address.c 98526 2016-07-21 11:15:24Z ihrivnac $ // // According to pythia6_common_address.c provided in Root // Pythia6 distribution: diff --git a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out index 0b6f5a9d8e..091144f64a 100644 --- a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out +++ b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -91,7 +91,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=1.55s Real=1.56s Sys=0s + User=0.35s Real=0.36s Sys=0s 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 b6a3787aa7..5732f24a4a 100644 --- a/examples/extended/exoticphysics/channeling/channeling.out +++ b/examples/extended/exoticphysics/channeling/channeling.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -19,36 +19,6 @@ XLatticeManager3::registerLattice: Registering Lattice.Total number of lattices: G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used ### WARNING: G4EmProcessOptions class is obsolete and will be removed in the next public release Please, try to use G4EmParameters class and/or UI interface to EM parameters -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ExExChProcessChanneling::Constructor:Geometry surface tolerance is: 1e-09 mm @@ -59,7 +29,7 @@ PhysicsList::AddChanneling: Channeling process added... ### === Deexcitation model UAtomDeexcitation is activated for 1 region: DefaultRegionForTheWorld 1 1 0 ### === Auger cascade flag: 1 -### === Ignore cuts flag: 1 +### === Ignore cuts flag: 0 compt: for gamma SubType= 13 BuildTable= 1 Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1 @@ -710,6 +680,45 @@ msc: for pi- SubType= 10 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ... open Root analysis file : ExExCh.root - done --> Event 0 starts. diff --git a/examples/extended/exoticphysics/monopole/monopole.out b/examples/extended/exoticphysics/monopole/monopole.out index 2cbe23329d..fef14c2fc8 100644 --- a/examples/extended/exoticphysics/monopole/monopole.out +++ b/examples/extended/exoticphysics/monopole/monopole.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -19,7 +19,7 @@ G4PhysListFactory::GetReferencePhysList EMoption= 0 /monopole/setup Monopole is created: m(GeV)= 100 Qel= 0 Qmag= 68.518 -/control/execute /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/exoticphysics/monopole/monopole.in +/control/execute /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/exoticphysics/monopole/monopole.in /control/verbose 1 /run/verbose 0 /testex/run/verbose 1 @@ -38,16 +38,6 @@ Monopole is created: m(GeV)= 100 Qel= 0 Qmag= 68.518 ---> The Absorber is 10 cm of G4_Si --------------------------------------------------------- -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -758,6 +748,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 starts. ### Run 0 start. ### Histo::Save: Opended file for 5 histograms diff --git a/examples/extended/exoticphysics/phonon/phonon.out b/examples/extended/exoticphysics/phonon/phonon.out index d24e721d2b..0ac97d40dc 100644 --- a/examples/extended/exoticphysics/phonon/phonon.out +++ b/examples/extended/exoticphysics/phonon/phonon.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/exoticphysics/ucn/ExUCN.in b/examples/extended/exoticphysics/ucn/ExUCN.in index dc30b9cf10..35c464bfc5 100644 --- a/examples/extended/exoticphysics/ucn/ExUCN.in +++ b/examples/extended/exoticphysics/ucn/ExUCN.in @@ -4,7 +4,7 @@ /run/verbose 1 /control/verbose 2 /event/verbose 1 -/tracking/verbose 1 +#/tracking/verbose 1 /ucnboundary/verbose 1 # /run/beamOn 1 diff --git a/examples/extended/exoticphysics/ucn/ExUCN.out b/examples/extended/exoticphysics/ucn/ExUCN.out index dce5d662e5..edbd36617f 100644 --- a/examples/extended/exoticphysics/ucn/ExUCN.out +++ b/examples/extended/exoticphysics/ucn/ExUCN.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -85,7 +85,7 @@ Available colours: black, blue, brown, cyan, gray, green, grey, magenta, red, white, yellow /event/verbose 1 -/tracking/verbose 1 +#/tracking/verbose 1 /ucnboundary/verbose 1 # /run/beamOn 1 @@ -115,11378 +115,1373 @@ Index : 1 used in the geometry : Yes G4PrimaryTransformer::PrimaryVertex (0(mm),0(mm),0(mm),0(nsec)) 1 primaries are passed from G4EventTransformer. !!!!!!! Now start processing an event !!!!!!! - -********************************************************************************************************* -* G4Track Information: Particle = neutron, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 5.56e-14 0 0 0 World initStep - 1 -0.224 0.975 0.00541 5.55e-14 0 1 1 World StepLimiter - 2 -0.449 1.95 0.0108 5.54e-14 0 1 2 World StepLimiter - 3 -0.673 2.92 0.0162 5.53e-14 0 1 3 World StepLimiter - 4 -0.898 3.9 0.0217 5.52e-14 0 1 4 World StepLimiter - 5 -1.12 4.87 0.0271 5.51e-14 0 1 5 World StepLimiter - 6 -1.35 5.85 0.0325 5.5e-14 0 1 6 World StepLimiter - 7 -1.57 6.82 0.0379 5.49e-14 0 1 7 World StepLimiter - 8 -1.8 7.79 0.0434 5.48e-14 0 1 8 World StepLimiter - 9 -2.02 8.77 0.0488 5.47e-14 0 1 9 World StepLimiter - 10 -2.25 9.74 0.0543 5.46e-14 0 1 10 World StepLimiter - 11 -2.48 10.7 0.0597 5.45e-14 0 1 11 World StepLimiter - 12 -2.7 11.7 0.0652 5.44e-14 0 1 12 World StepLimiter - 13 -2.93 12.7 0.0707 5.43e-14 0 1 13 World StepLimiter - 14 -3.16 13.6 0.0761 5.42e-14 0 1 14 World StepLimiter - 15 -3.38 14.6 0.0816 5.41e-14 0 1 15 World StepLimiter - 16 -3.61 15.6 0.0871 5.4e-14 0 1 16 World StepLimiter - 17 -3.84 16.6 0.0926 5.39e-14 0 1 17 World StepLimiter - 18 -4.07 17.5 0.0981 5.38e-14 0 1 18 World StepLimiter - 19 -4.29 18.5 0.104 5.37e-14 0 1 19 World StepLimiter - 20 -4.52 19.5 0.109 5.36e-14 0 1 20 World StepLimiter - 21 -4.75 20.5 0.115 5.35e-14 0 1 21 World StepLimiter - 22 -4.98 21.4 0.12 5.34e-14 0 1 22 World StepLimiter - 23 -5.21 22.4 0.126 5.33e-14 0 1 23 World StepLimiter - 24 -5.44 23.4 0.131 5.32e-14 0 1 24 World StepLimiter - 25 -5.67 24.3 0.137 5.31e-14 0 1 25 World StepLimiter - 26 -5.9 25.3 0.142 5.3e-14 0 1 26 World StepLimiter - 27 -6.12 26.3 0.148 5.29e-14 0 1 27 World StepLimiter - 28 -6.35 27.3 0.153 5.28e-14 0 1 28 World StepLimiter - 29 -6.58 28.2 0.159 5.27e-14 0 1 29 World StepLimiter - 30 -6.81 29.2 0.164 5.26e-14 0 1 30 World StepLimiter - 31 -7.05 30.2 0.17 5.25e-14 0 1 31 World StepLimiter - 32 -7.28 31.2 0.175 5.24e-14 0 1 32 World StepLimiter - 33 -7.51 32.1 0.181 5.23e-14 0 1 33 World StepLimiter - 34 -7.74 33.1 0.187 5.22e-14 0 1 34 World StepLimiter - 35 -7.97 34.1 0.192 5.21e-14 0 1 35 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.110664100809neV MomDir: (-0.23145360719851,0.97282993339041,0.0055810764567927) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 36 -7.97 34.1 0.192 5.21e-14 0 0.000612 35 Guide Transportation *** StepTooSmall *** - 37 -7.97 34.1 0.192 5.21e-14 0 0 35 World Transportation - 38 -7.75 33.1 0.198 5.22e-14 0 1 36 World StepLimiter - 39 -7.52 32.1 0.203 5.23e-14 0 1 37 World StepLimiter - 40 -7.3 31.2 0.209 5.24e-14 0 1 38 World StepLimiter - 41 -7.08 30.2 0.214 5.25e-14 0 1 39 World StepLimiter - 42 -6.85 29.2 0.22 5.26e-14 0 1 40 World StepLimiter - 43 -6.63 28.2 0.226 5.27e-14 0 1 41 World StepLimiter - 44 -6.41 27.3 0.231 5.28e-14 0 1 42 World StepLimiter - 45 -6.18 26.3 0.237 5.29e-14 0 1 43 World StepLimiter - 46 -5.96 25.3 0.242 5.3e-14 0 1 44 World StepLimiter - 47 -5.74 24.3 0.248 5.31e-14 0 1 45 World StepLimiter - 48 -5.52 23.4 0.253 5.32e-14 0 1 46 World StepLimiter - 49 -5.3 22.4 0.259 5.33e-14 0 1 47 World StepLimiter - 50 -5.08 21.4 0.264 5.34e-14 0 1 48 World StepLimiter - 51 -4.86 20.4 0.27 5.35e-14 0 1 49 World StepLimiter - 52 -4.63 19.5 0.275 5.36e-14 0 1 50 World StepLimiter - 53 -4.41 18.5 0.281 5.37e-14 0 1 51 World StepLimiter - 54 -4.19 17.5 0.286 5.38e-14 0 1 52 World StepLimiter - 55 -3.97 16.5 0.292 5.39e-14 0 1 53 World StepLimiter - 56 -3.75 15.6 0.297 5.4e-14 0 1 54 World StepLimiter - 57 -3.53 14.6 0.303 5.41e-14 0 1 55 World StepLimiter - 58 -3.31 13.6 0.308 5.42e-14 0 1 56 World StepLimiter - 59 -3.09 12.6 0.314 5.43e-14 0 1 57 World StepLimiter - 60 -2.87 11.7 0.319 5.44e-14 0 1 58 World StepLimiter - 61 -2.66 10.7 0.325 5.45e-14 0 1 59 World StepLimiter - 62 -2.44 9.7 0.33 5.46e-14 0 1 60 World StepLimiter - 63 -2.22 8.73 0.336 5.47e-14 0 1 61 World StepLimiter - 64 -2 7.75 0.341 5.48e-14 0 1 62 World StepLimiter - 65 -1.78 6.77 0.346 5.49e-14 0 1 63 World StepLimiter - 66 -1.56 5.8 0.352 5.5e-14 0 1 64 World StepLimiter - 67 -1.35 4.82 0.357 5.51e-14 0 1 65 World StepLimiter - 68 -1.13 3.85 0.363 5.52e-14 0 1 66 World StepLimiter - 69 -0.91 2.87 0.368 5.53e-14 0 1 67 World StepLimiter - 70 -0.693 1.89 0.374 5.54e-14 0 1 68 World StepLimiter - 71 -0.476 0.917 0.379 5.55e-14 0 1 69 World StepLimiter - 72 -0.259 -0.0589 0.384 5.56e-14 0 1 70 World StepLimiter - 73 -0.0423 -1.04 0.39 5.57e-14 0 1 71 World StepLimiter - 74 0.174 -2.01 0.395 5.58e-14 0 1 72 World StepLimiter - 75 0.39 -2.99 0.401 5.59e-14 0 1 73 World StepLimiter - 76 0.607 -3.96 0.406 5.6e-14 0 1 74 World StepLimiter - 77 0.822 -4.94 0.411 5.61e-14 0 1 75 World StepLimiter - 78 1.04 -5.92 0.417 5.62e-14 0 1 76 World StepLimiter - 79 1.25 -6.89 0.422 5.63e-14 0 1 77 World StepLimiter - 80 1.47 -7.87 0.427 5.64e-14 0 1 78 World StepLimiter - 81 1.68 -8.85 0.433 5.65e-14 0 1 79 World StepLimiter - 82 1.9 -9.82 0.438 5.66e-14 0 1 80 World StepLimiter - 83 2.11 -10.8 0.443 5.67e-14 0 1 81 World StepLimiter - 84 2.33 -11.8 0.449 5.68e-14 0 1 82 World StepLimiter - 85 2.54 -12.8 0.454 5.69e-14 0 1 83 World StepLimiter - 86 2.76 -13.7 0.46 5.7e-14 0 1 84 World StepLimiter - 87 2.97 -14.7 0.465 5.71e-14 0 1 85 World StepLimiter - 88 3.18 -15.7 0.47 5.72e-14 0 1 86 World StepLimiter - 89 3.4 -16.7 0.475 5.73e-14 0 1 87 World StepLimiter - 90 3.61 -17.6 0.481 5.74e-14 0 1 88 World StepLimiter - 91 3.83 -18.6 0.486 5.75e-14 0 1 89 World StepLimiter - 92 4.04 -19.6 0.491 5.76e-14 0 1 90 World StepLimiter - 93 4.25 -20.6 0.497 5.77e-14 0 1 91 World StepLimiter - 94 4.46 -21.5 0.502 5.78e-14 0 1 92 World StepLimiter - 95 4.68 -22.5 0.507 5.79e-14 0 1 93 World StepLimiter - 96 4.89 -23.5 0.513 5.8e-14 0 1 94 World StepLimiter - 97 5.1 -24.5 0.518 5.81e-14 0 1 95 World StepLimiter - 98 5.31 -25.5 0.523 5.82e-14 0 1 96 World StepLimiter - 99 5.52 -26.4 0.528 5.83e-14 0 1 97 World StepLimiter - 100 5.74 -27.4 0.534 5.84e-14 0 1 98 World StepLimiter - 101 5.95 -28.4 0.539 5.85e-14 0 1 99 World StepLimiter - 102 6.16 -29.4 0.544 5.86e-14 0 1 100 World StepLimiter - 103 6.37 -30.3 0.55 5.87e-14 0 1 101 World StepLimiter - 104 6.58 -31.3 0.555 5.88e-14 0 1 102 World StepLimiter - 105 6.79 -32.3 0.56 5.89e-14 0 1 103 World StepLimiter - 106 7 -33.3 0.565 5.9e-14 0 1 104 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.11816428763neV MomDir: (0.21025043745269,-0.9776335188997,0.0052398735425751) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 107 7.21 -34.2 0.571 5.91e-14 0 0.997 105 Guide Transportation *** StepTooSmall *** - 108 7.21 -34.2 0.571 5.91e-14 0 0 105 World Transportation - 109 7.01 -33.3 0.576 5.9e-14 0 1 106 World StepLimiter - 110 6.81 -32.3 0.581 5.89e-14 0 1 107 World StepLimiter - 111 6.61 -31.3 0.586 5.88e-14 0 1 108 World StepLimiter - 112 6.4 -30.3 0.592 5.87e-14 0 1 109 World StepLimiter - 113 6.2 -29.4 0.597 5.86e-14 0 1 110 World StepLimiter - 114 6 -28.4 0.602 5.85e-14 0 1 111 World StepLimiter - 115 5.79 -27.4 0.607 5.84e-14 0 1 112 World StepLimiter - 116 5.59 -26.4 0.613 5.83e-14 0 1 113 World StepLimiter - 117 5.39 -25.4 0.618 5.82e-14 0 1 114 World StepLimiter - 118 5.18 -24.5 0.623 5.81e-14 0 1 115 World StepLimiter - 119 4.98 -23.5 0.628 5.8e-14 0 1 116 World StepLimiter - 120 4.78 -22.5 0.634 5.79e-14 0 1 117 World StepLimiter - 121 4.57 -21.5 0.639 5.78e-14 0 1 118 World StepLimiter - 122 4.37 -20.5 0.644 5.77e-14 0 1 119 World StepLimiter - 123 4.16 -19.6 0.65 5.76e-14 0 1 120 World StepLimiter - 124 3.96 -18.6 0.655 5.75e-14 0 1 121 World StepLimiter - 125 3.76 -17.6 0.66 5.74e-14 0 1 122 World StepLimiter - 126 3.55 -16.6 0.666 5.73e-14 0 1 123 World StepLimiter - 127 3.35 -15.6 0.671 5.72e-14 0 1 124 World StepLimiter - 128 3.14 -14.7 0.676 5.71e-14 0 1 125 World StepLimiter - 129 2.93 -13.7 0.682 5.7e-14 0 1 126 World StepLimiter - 130 2.73 -12.7 0.687 5.69e-14 0 1 127 World StepLimiter - 131 2.52 -11.7 0.692 5.68e-14 0 1 128 World StepLimiter - 132 2.32 -10.8 0.698 5.67e-14 0 1 129 World StepLimiter - 133 2.11 -9.78 0.703 5.66e-14 0 1 130 World StepLimiter - 134 1.9 -8.8 0.708 5.65e-14 0 1 131 World StepLimiter - 135 1.7 -7.82 0.714 5.64e-14 0 1 132 World StepLimiter - 136 1.49 -6.84 0.719 5.63e-14 0 1 133 World StepLimiter - 137 1.28 -5.86 0.724 5.62e-14 0 1 134 World StepLimiter - 138 1.08 -4.88 0.73 5.61e-14 0 1 135 World StepLimiter - 139 0.87 -3.91 0.735 5.6e-14 0 1 136 World StepLimiter - 140 0.663 -2.93 0.741 5.59e-14 0 1 137 World StepLimiter - 141 0.455 -1.95 0.746 5.58e-14 0 1 138 World StepLimiter - 142 0.247 -0.97 0.751 5.57e-14 0 1 139 World StepLimiter - 143 0.0392 0.00767 0.757 5.56e-14 0 1 140 World StepLimiter - 144 -0.169 0.986 0.762 5.55e-14 0 1 141 World StepLimiter - 145 -0.377 1.96 0.768 5.54e-14 0 1 142 World StepLimiter - 146 -0.586 2.94 0.773 5.53e-14 0 1 143 World StepLimiter - 147 -0.795 3.92 0.778 5.52e-14 0 1 144 World StepLimiter - 148 -1 4.9 0.784 5.51e-14 0 1 145 World StepLimiter - 149 -1.21 5.88 0.789 5.5e-14 0 1 146 World StepLimiter - 150 -1.42 6.85 0.795 5.49e-14 0 1 147 World StepLimiter - 151 -1.63 7.83 0.8 5.48e-14 0 1 148 World StepLimiter - 152 -1.84 8.81 0.806 5.47e-14 0 1 149 World StepLimiter - 153 -2.05 9.79 0.811 5.46e-14 0 1 150 World StepLimiter - 154 -2.26 10.8 0.816 5.45e-14 0 1 151 World StepLimiter - 155 -2.47 11.7 0.822 5.44e-14 0 1 152 World StepLimiter - 156 -2.68 12.7 0.827 5.43e-14 0 1 153 World StepLimiter - 157 -2.89 13.7 0.833 5.42e-14 0 1 154 World StepLimiter - 158 -3.1 14.7 0.838 5.41e-14 0 1 155 World StepLimiter - 159 -3.31 15.7 0.844 5.4e-14 0 1 156 World StepLimiter - 160 -3.53 16.6 0.849 5.39e-14 0 1 157 World StepLimiter - 161 -3.74 17.6 0.855 5.38e-14 0 1 158 World StepLimiter - 162 -3.95 18.6 0.86 5.37e-14 0 1 159 World StepLimiter - 163 -4.16 19.6 0.866 5.36e-14 0 1 160 World StepLimiter - 164 -4.37 20.5 0.871 5.35e-14 0 1 161 World StepLimiter - 165 -4.59 21.5 0.877 5.34e-14 0 1 162 World StepLimiter - 166 -4.8 22.5 0.882 5.33e-14 0 1 163 World StepLimiter - 167 -5.01 23.5 0.888 5.32e-14 0 1 164 World StepLimiter - 168 -5.22 24.4 0.893 5.31e-14 0 1 165 World StepLimiter - 169 -5.44 25.4 0.899 5.3e-14 0 1 166 World StepLimiter - 170 -5.65 26.4 0.904 5.29e-14 0 1 167 World StepLimiter - 171 -5.86 27.4 0.91 5.28e-14 0 1 168 World StepLimiter - 172 -6.08 28.4 0.916 5.27e-14 0 1 169 World StepLimiter - 173 -6.29 29.3 0.921 5.26e-14 0 1 170 World StepLimiter - 174 -6.51 30.3 0.927 5.25e-14 0 1 171 World StepLimiter - 175 -6.72 31.3 0.932 5.24e-14 0 1 172 World StepLimiter - 176 -6.93 32.3 0.938 5.23e-14 0 1 173 World StepLimiter - 177 -7.15 33.2 0.943 5.22e-14 0 1 174 World StepLimiter - 178 -7.36 34.2 0.949 5.21e-14 0 1 175 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.096715000832neV MomDir: (-0.21500696712803,0.97659656323985,0.005581823584351) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 179 -7.36 34.2 0.949 5.21e-14 0 0.00138 175 Guide Transportation *** StepTooSmall *** - 180 -7.36 34.2 0.949 5.21e-14 0 0 175 World Transportation - 181 -7.16 33.2 0.954 5.22e-14 0 1 176 World StepLimiter - 182 -6.95 32.3 0.96 5.23e-14 0 1 177 World StepLimiter - 183 -6.75 31.3 0.966 5.24e-14 0 1 178 World StepLimiter - 184 -6.54 30.3 0.971 5.25e-14 0 1 179 World StepLimiter - 185 -6.34 29.3 0.977 5.26e-14 0 1 180 World StepLimiter - 186 -6.13 28.3 0.982 5.27e-14 0 1 181 World StepLimiter - 187 -5.93 27.4 0.988 5.28e-14 0 1 182 World StepLimiter - 188 -5.72 26.4 0.993 5.29e-14 0 1 183 World StepLimiter - 189 -5.52 25.4 0.999 5.3e-14 0 1 184 World StepLimiter - 190 -5.32 24.4 1 5.31e-14 0 1 185 World StepLimiter - 191 -5.11 23.4 1.01 5.32e-14 0 1 186 World StepLimiter - 192 -4.91 22.5 1.02 5.33e-14 0 1 187 World StepLimiter - 193 -4.71 21.5 1.02 5.34e-14 0 1 188 World StepLimiter - 194 -4.5 20.5 1.03 5.35e-14 0 1 189 World StepLimiter - 195 -4.3 19.5 1.03 5.36e-14 0 1 190 World StepLimiter - 196 -4.1 18.6 1.04 5.37e-14 0 1 191 World StepLimiter - 197 -3.89 17.6 1.04 5.38e-14 0 1 192 World StepLimiter - 198 -3.69 16.6 1.05 5.39e-14 0 1 193 World StepLimiter - 199 -3.49 15.6 1.05 5.4e-14 0 1 194 World StepLimiter - 200 -3.29 14.6 1.06 5.41e-14 0 1 195 World StepLimiter - 201 -3.09 13.7 1.06 5.42e-14 0 1 196 World StepLimiter - 202 -2.88 12.7 1.07 5.43e-14 0 1 197 World StepLimiter - 203 -2.68 11.7 1.08 5.44e-14 0 1 198 World StepLimiter - 204 -2.48 10.7 1.08 5.45e-14 0 1 199 World StepLimiter - 205 -2.28 9.74 1.09 5.46e-14 0 1 200 World StepLimiter - 206 -2.08 8.76 1.09 5.47e-14 0 1 201 World StepLimiter - 207 -1.88 7.78 1.1 5.48e-14 0 1 202 World StepLimiter - 208 -1.68 6.8 1.1 5.49e-14 0 1 203 World StepLimiter - 209 -1.48 5.82 1.11 5.5e-14 0 1 204 World StepLimiter - 210 -1.28 4.84 1.11 5.51e-14 0 1 205 World StepLimiter - 211 -1.08 3.86 1.12 5.52e-14 0 1 206 World StepLimiter - 212 -0.878 2.88 1.12 5.53e-14 0 1 207 World StepLimiter - 213 -0.678 1.9 1.13 5.54e-14 0 1 208 World StepLimiter - 214 -0.479 0.922 1.14 5.55e-14 0 1 209 World StepLimiter - 215 -0.279 -0.0583 1.14 5.56e-14 0 1 210 World StepLimiter - 216 -0.0803 -1.04 1.15 5.57e-14 0 1 211 World StepLimiter - 217 0.119 -2.02 1.15 5.58e-14 0 1 212 World StepLimiter - 218 0.317 -3 1.16 5.59e-14 0 1 213 World StepLimiter - 219 0.516 -3.98 1.16 5.6e-14 0 1 214 World StepLimiter - 220 0.714 -4.96 1.17 5.61e-14 0 1 215 World StepLimiter - 221 0.912 -5.94 1.17 5.62e-14 0 1 216 World StepLimiter - 222 1.11 -6.92 1.18 5.63e-14 0 1 217 World StepLimiter - 223 1.31 -7.9 1.18 5.64e-14 0 1 218 World StepLimiter - 224 1.51 -8.88 1.19 5.65e-14 0 1 219 World StepLimiter - 225 1.7 -9.86 1.19 5.66e-14 0 1 220 World StepLimiter - 226 1.9 -10.8 1.2 5.67e-14 0 1 221 World StepLimiter - 227 2.1 -11.8 1.21 5.68e-14 0 1 222 World StepLimiter - 228 2.29 -12.8 1.21 5.69e-14 0 1 223 World StepLimiter - 229 2.49 -13.8 1.22 5.7e-14 0 1 224 World StepLimiter - 230 2.69 -14.8 1.22 5.71e-14 0 1 225 World StepLimiter - 231 2.88 -15.7 1.23 5.72e-14 0 1 226 World StepLimiter - 232 3.08 -16.7 1.23 5.73e-14 0 1 227 World StepLimiter - 233 3.28 -17.7 1.24 5.74e-14 0 1 228 World StepLimiter - 234 3.47 -18.7 1.24 5.75e-14 0 1 229 World StepLimiter - 235 3.67 -19.7 1.25 5.76e-14 0 1 230 World StepLimiter - 236 3.86 -20.6 1.25 5.77e-14 0 1 231 World StepLimiter - 237 4.06 -21.6 1.26 5.78e-14 0 1 232 World StepLimiter - 238 4.25 -22.6 1.26 5.79e-14 0 1 233 World StepLimiter - 239 4.45 -23.6 1.27 5.8e-14 0 1 234 World StepLimiter - 240 4.64 -24.6 1.27 5.81e-14 0 1 235 World StepLimiter - 241 4.84 -25.5 1.28 5.82e-14 0 1 236 World StepLimiter - 242 5.03 -26.5 1.29 5.83e-14 0 1 237 World StepLimiter - 243 5.23 -27.5 1.29 5.84e-14 0 1 238 World StepLimiter - 244 5.42 -28.5 1.3 5.85e-14 0 1 239 World StepLimiter - 245 5.62 -29.5 1.3 5.86e-14 0 1 240 World StepLimiter - 246 5.81 -30.5 1.31 5.87e-14 0 1 241 World StepLimiter - 247 6 -31.4 1.31 5.88e-14 0 1 242 World StepLimiter - 248 6.2 -32.4 1.32 5.89e-14 0 1 243 World StepLimiter - 249 6.39 -33.4 1.32 5.9e-14 0 1 244 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.131111543263neV MomDir: (0.19314099204705,-0.98115702460316,0.0052392998539152) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 250 6.58 -34.4 1.33 5.91e-14 0 0.997 245 Guide Transportation *** StepTooSmall *** - 251 6.58 -34.4 1.33 5.91e-14 0 0 245 World Transportation - 252 6.4 -33.4 1.33 5.9e-14 0 1 246 World StepLimiter - 253 6.22 -32.4 1.34 5.89e-14 0 1 247 World StepLimiter - 254 6.03 -31.4 1.34 5.88e-14 0 1 248 World StepLimiter - 255 5.85 -30.4 1.35 5.87e-14 0 1 249 World StepLimiter - 256 5.67 -29.5 1.35 5.86e-14 0 1 250 World StepLimiter - 257 5.48 -28.5 1.36 5.85e-14 0 1 251 World StepLimiter - 258 5.3 -27.5 1.36 5.84e-14 0 1 252 World StepLimiter - 259 5.11 -26.5 1.37 5.83e-14 0 1 253 World StepLimiter - 260 4.93 -25.5 1.37 5.82e-14 0 1 254 World StepLimiter - 261 4.75 -24.5 1.38 5.81e-14 0 1 255 World StepLimiter - 262 4.56 -23.6 1.39 5.8e-14 0 1 256 World StepLimiter - 263 4.38 -22.6 1.39 5.79e-14 0 1 257 World StepLimiter - 264 4.19 -21.6 1.4 5.78e-14 0 1 258 World StepLimiter - 265 4.01 -20.6 1.4 5.77e-14 0 1 259 World StepLimiter - 266 3.82 -19.6 1.41 5.76e-14 0 1 260 World StepLimiter - 267 3.63 -18.6 1.41 5.75e-14 0 1 261 World StepLimiter - 268 3.45 -17.7 1.42 5.74e-14 0 1 262 World StepLimiter - 269 3.26 -16.7 1.42 5.73e-14 0 1 263 World StepLimiter - 270 3.08 -15.7 1.43 5.72e-14 0 1 264 World StepLimiter - 271 2.89 -14.7 1.43 5.71e-14 0 1 265 World StepLimiter - 272 2.7 -13.7 1.44 5.7e-14 0 1 266 World StepLimiter - 273 2.52 -12.8 1.44 5.69e-14 0 1 267 World StepLimiter - 274 2.33 -11.8 1.45 5.68e-14 0 1 268 World StepLimiter - 275 2.14 -10.8 1.45 5.67e-14 0 1 269 World StepLimiter - 276 1.96 -9.81 1.46 5.66e-14 0 1 270 World StepLimiter - 277 1.77 -8.83 1.47 5.65e-14 0 1 271 World StepLimiter - 278 1.58 -7.84 1.47 5.64e-14 0 1 272 World StepLimiter - 279 1.4 -6.86 1.48 5.63e-14 0 1 273 World StepLimiter - 280 1.21 -5.88 1.48 5.62e-14 0 1 274 World StepLimiter - 281 1.02 -4.9 1.49 5.61e-14 0 1 275 World StepLimiter - 282 0.832 -3.91 1.49 5.6e-14 0 1 276 World StepLimiter - 283 0.644 -2.93 1.5 5.59e-14 0 1 277 World StepLimiter - 284 0.455 -1.95 1.5 5.58e-14 0 1 278 World StepLimiter - 285 0.267 -0.968 1.51 5.57e-14 0 1 279 World StepLimiter - 286 0.0781 0.0143 1.51 5.56e-14 0 1 280 World StepLimiter - 287 -0.111 0.996 1.52 5.55e-14 0 1 281 World StepLimiter - 288 -0.3 1.98 1.52 5.54e-14 0 1 282 World StepLimiter - 289 -0.489 2.96 1.53 5.53e-14 0 1 283 World StepLimiter - 290 -0.678 3.94 1.54 5.52e-14 0 1 284 World StepLimiter - 291 -0.868 4.92 1.54 5.51e-14 0 1 285 World StepLimiter - 292 -1.06 5.91 1.55 5.5e-14 0 1 286 World StepLimiter - 293 -1.25 6.89 1.55 5.49e-14 0 1 287 World StepLimiter - 294 -1.44 7.87 1.56 5.48e-14 0 1 288 World StepLimiter - 295 -1.63 8.85 1.56 5.47e-14 0 1 289 World StepLimiter - 296 -1.82 9.83 1.57 5.46e-14 0 1 290 World StepLimiter - 297 -2.01 10.8 1.57 5.45e-14 0 1 291 World StepLimiter - 298 -2.2 11.8 1.58 5.44e-14 0 1 292 World StepLimiter - 299 -2.39 12.8 1.58 5.43e-14 0 1 293 World StepLimiter - 300 -2.58 13.8 1.59 5.42e-14 0 1 294 World StepLimiter - 301 -2.77 14.7 1.6 5.41e-14 0 1 295 World StepLimiter - 302 -2.96 15.7 1.6 5.4e-14 0 1 296 World StepLimiter - 303 -3.16 16.7 1.61 5.39e-14 0 1 297 World StepLimiter - 304 -3.35 17.7 1.61 5.38e-14 0 1 298 World StepLimiter - 305 -3.54 18.7 1.62 5.37e-14 0 1 299 World StepLimiter - 306 -3.73 19.6 1.62 5.36e-14 0 1 300 World StepLimiter - 307 -3.92 20.6 1.63 5.35e-14 0 1 301 World StepLimiter - 308 -4.12 21.6 1.63 5.34e-14 0 1 302 World StepLimiter - 309 -4.31 22.6 1.64 5.33e-14 0 1 303 World StepLimiter - 310 -4.5 23.6 1.64 5.32e-14 0 1 304 World StepLimiter - 311 -4.7 24.6 1.65 5.31e-14 0 1 305 World StepLimiter - 312 -4.89 25.5 1.66 5.3e-14 0 1 306 World StepLimiter - 313 -5.08 26.5 1.66 5.29e-14 0 1 307 World StepLimiter - 314 -5.28 27.5 1.67 5.28e-14 0 1 308 World StepLimiter - 315 -5.47 28.5 1.67 5.27e-14 0 1 309 World StepLimiter - 316 -5.66 29.5 1.68 5.26e-14 0 1 310 World StepLimiter - 317 -5.86 30.4 1.68 5.25e-14 0 1 311 World StepLimiter - 318 -6.05 31.4 1.69 5.24e-14 0 1 312 World StepLimiter - 319 -6.25 32.4 1.69 5.23e-14 0 1 313 World StepLimiter - 320 -6.44 33.4 1.7 5.22e-14 0 1 314 World StepLimiter - 321 -6.64 34.4 1.71 5.21e-14 0 1 315 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.081506603937neV MomDir: (-0.19505369661452,0.98077667671308,0.0055826385030971) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 322 -6.64 34.4 1.71 5.21e-14 0 0.00144 315 Guide Transportation *** StepTooSmall *** - 323 -6.64 34.4 1.71 5.21e-14 0 0 315 World Transportation - 324 -6.45 33.4 1.71 5.22e-14 0 1 316 World StepLimiter - 325 -6.27 32.4 1.72 5.23e-14 0 1 317 World StepLimiter - 326 -6.09 31.4 1.72 5.24e-14 0 1 318 World StepLimiter - 327 -5.9 30.4 1.73 5.25e-14 0 1 319 World StepLimiter - 328 -5.72 29.5 1.73 5.26e-14 0 1 320 World StepLimiter - 329 -5.54 28.5 1.74 5.27e-14 0 1 321 World StepLimiter - 330 -5.35 27.5 1.74 5.28e-14 0 1 322 World StepLimiter - 331 -5.17 26.5 1.75 5.29e-14 0 1 323 World StepLimiter - 332 -4.99 25.5 1.76 5.3e-14 0 1 324 World StepLimiter - 333 -4.8 24.5 1.76 5.31e-14 0 1 325 World StepLimiter - 334 -4.62 23.6 1.77 5.32e-14 0 1 326 World StepLimiter - 335 -4.44 22.6 1.77 5.33e-14 0 1 327 World StepLimiter - 336 -4.26 21.6 1.78 5.34e-14 0 1 328 World StepLimiter - 337 -4.08 20.6 1.78 5.35e-14 0 1 329 World StepLimiter - 338 -3.89 19.6 1.79 5.36e-14 0 1 330 World StepLimiter - 339 -3.71 18.6 1.79 5.37e-14 0 1 331 World StepLimiter - 340 -3.53 17.7 1.8 5.38e-14 0 1 332 World StepLimiter - 341 -3.35 16.7 1.81 5.39e-14 0 1 333 World StepLimiter - 342 -3.17 15.7 1.81 5.4e-14 0 1 334 World StepLimiter - 343 -2.99 14.7 1.82 5.41e-14 0 1 335 World StepLimiter - 344 -2.81 13.7 1.82 5.42e-14 0 1 336 World StepLimiter - 345 -2.63 12.7 1.83 5.43e-14 0 1 337 World StepLimiter - 346 -2.45 11.8 1.83 5.44e-14 0 1 338 World StepLimiter - 347 -2.27 10.8 1.84 5.45e-14 0 1 339 World StepLimiter - 348 -2.09 9.78 1.84 5.46e-14 0 1 340 World StepLimiter - 349 -1.91 8.8 1.85 5.47e-14 0 1 341 World StepLimiter - 350 -1.73 7.82 1.85 5.48e-14 0 1 342 World StepLimiter - 351 -1.55 6.83 1.86 5.49e-14 0 1 343 World StepLimiter - 352 -1.37 5.85 1.87 5.5e-14 0 1 344 World StepLimiter - 353 -1.19 4.86 1.87 5.51e-14 0 1 345 World StepLimiter - 354 -1.01 3.88 1.88 5.52e-14 0 1 346 World StepLimiter - 355 -0.831 2.9 1.88 5.53e-14 0 1 347 World StepLimiter - 356 -0.652 1.91 1.89 5.54e-14 0 1 348 World StepLimiter - 357 -0.474 0.929 1.89 5.55e-14 0 1 349 World StepLimiter - 358 -0.296 -0.0552 1.9 5.56e-14 0 1 350 World StepLimiter - 359 -0.117 -1.04 1.9 5.57e-14 0 1 351 World StepLimiter - 360 0.0606 -2.02 1.91 5.58e-14 0 1 352 World StepLimiter - 361 0.238 -3.01 1.91 5.59e-14 0 1 353 World StepLimiter - 362 0.416 -3.99 1.92 5.6e-14 0 1 354 World StepLimiter - 363 0.594 -4.98 1.92 5.61e-14 0 1 355 World StepLimiter - 364 0.771 -5.96 1.93 5.62e-14 0 1 356 World StepLimiter - 365 0.948 -6.94 1.94 5.63e-14 0 1 357 World StepLimiter - 366 1.13 -7.93 1.94 5.64e-14 0 1 358 World StepLimiter - 367 1.3 -8.91 1.95 5.65e-14 0 1 359 World StepLimiter - 368 1.48 -9.9 1.95 5.66e-14 0 1 360 World StepLimiter - 369 1.66 -10.9 1.96 5.67e-14 0 1 361 World StepLimiter - 370 1.83 -11.9 1.96 5.68e-14 0 1 362 World StepLimiter - 371 2.01 -12.8 1.97 5.69e-14 0 1 363 World StepLimiter - 372 2.18 -13.8 1.97 5.7e-14 0 1 364 World StepLimiter - 373 2.36 -14.8 1.98 5.71e-14 0 1 365 World StepLimiter - 374 2.54 -15.8 1.98 5.72e-14 0 1 366 World StepLimiter - 375 2.71 -16.8 1.99 5.73e-14 0 1 367 World StepLimiter - 376 2.89 -17.8 1.99 5.74e-14 0 1 368 World StepLimiter - 377 3.06 -18.8 2 5.75e-14 0 1 369 World StepLimiter - 378 3.24 -19.7 2 5.76e-14 0 1 370 World StepLimiter - 379 3.41 -20.7 2.01 5.77e-14 0 1 371 World StepLimiter - 380 3.59 -21.7 2.02 5.78e-14 0 1 372 World StepLimiter - 381 3.76 -22.7 2.02 5.79e-14 0 1 373 World StepLimiter - 382 3.94 -23.7 2.03 5.8e-14 0 1 374 World StepLimiter - 383 4.11 -24.7 2.03 5.81e-14 0 1 375 World StepLimiter - 384 4.29 -25.6 2.04 5.82e-14 0 1 376 World StepLimiter - 385 4.46 -26.6 2.04 5.83e-14 0 1 377 World StepLimiter - 386 4.63 -27.6 2.05 5.84e-14 0 1 378 World StepLimiter - 387 4.81 -28.6 2.05 5.85e-14 0 1 379 World StepLimiter - 388 4.98 -29.6 2.06 5.86e-14 0 1 380 World StepLimiter - 389 5.16 -30.6 2.06 5.87e-14 0 1 381 World StepLimiter - 390 5.33 -31.6 2.07 5.88e-14 0 1 382 World StepLimiter - 391 5.5 -32.5 2.07 5.89e-14 0 1 383 World StepLimiter - 392 5.67 -33.5 2.08 5.9e-14 0 1 384 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.144740858644neV MomDir: (0.17286310795848,-0.9849319275816,0.005238696146947) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 393 5.85 -34.5 2.08 5.91e-14 0 0.997 385 Guide Transportation *** StepTooSmall *** - 394 5.85 -34.5 2.08 5.91e-14 0 0 385 World Transportation - 395 5.69 -33.5 2.09 5.9e-14 0 1 386 World StepLimiter - 396 5.52 -32.5 2.09 5.89e-14 0 1 387 World StepLimiter - 397 5.36 -31.5 2.1 5.88e-14 0 1 388 World StepLimiter - 398 5.2 -30.6 2.11 5.87e-14 0 1 389 World StepLimiter - 399 5.04 -29.6 2.11 5.86e-14 0 1 390 World StepLimiter - 400 4.88 -28.6 2.12 5.85e-14 0 1 391 World StepLimiter - 401 4.72 -27.6 2.12 5.84e-14 0 1 392 World StepLimiter - 402 4.55 -26.6 2.13 5.83e-14 0 1 393 World StepLimiter - 403 4.39 -25.6 2.13 5.82e-14 0 1 394 World StepLimiter - 404 4.23 -24.6 2.14 5.81e-14 0 1 395 World StepLimiter - 405 4.07 -23.7 2.14 5.8e-14 0 1 396 World StepLimiter - 406 3.9 -22.7 2.15 5.79e-14 0 1 397 World StepLimiter - 407 3.74 -21.7 2.15 5.78e-14 0 1 398 World StepLimiter - 408 3.58 -20.7 2.16 5.77e-14 0 1 399 World StepLimiter - 409 3.41 -19.7 2.16 5.76e-14 0 1 400 World StepLimiter - 410 3.25 -18.7 2.17 5.75e-14 0 1 401 World StepLimiter - 411 3.09 -17.7 2.17 5.74e-14 0 1 402 World StepLimiter - 412 2.92 -16.7 2.18 5.73e-14 0 1 403 World StepLimiter - 413 2.76 -15.8 2.18 5.72e-14 0 1 404 World StepLimiter - 414 2.59 -14.8 2.19 5.71e-14 0 1 405 World StepLimiter - 415 2.43 -13.8 2.2 5.7e-14 0 1 406 World StepLimiter - 416 2.27 -12.8 2.2 5.69e-14 0 1 407 World StepLimiter - 417 2.1 -11.8 2.21 5.68e-14 0 1 408 World StepLimiter - 418 1.94 -10.8 2.21 5.67e-14 0 1 409 World StepLimiter - 419 1.77 -9.84 2.22 5.66e-14 0 1 410 World StepLimiter - 420 1.61 -8.86 2.22 5.65e-14 0 1 411 World StepLimiter - 421 1.44 -7.87 2.23 5.64e-14 0 1 412 World StepLimiter - 422 1.28 -6.88 2.23 5.63e-14 0 1 413 World StepLimiter - 423 1.11 -5.9 2.24 5.62e-14 0 1 414 World StepLimiter - 424 0.946 -4.91 2.24 5.61e-14 0 1 415 World StepLimiter - 425 0.78 -3.93 2.25 5.6e-14 0 1 416 World StepLimiter - 426 0.614 -2.94 2.25 5.59e-14 0 1 417 World StepLimiter - 427 0.449 -1.95 2.26 5.58e-14 0 1 418 World StepLimiter - 428 0.282 -0.967 2.26 5.57e-14 0 1 419 World StepLimiter - 429 0.116 0.019 2.27 5.56e-14 0 1 420 World StepLimiter - 430 -0.0501 1 2.28 5.55e-14 0 1 421 World StepLimiter - 431 -0.217 1.99 2.28 5.54e-14 0 1 422 World StepLimiter - 432 -0.383 2.98 2.29 5.53e-14 0 1 423 World StepLimiter - 433 -0.55 3.96 2.29 5.52e-14 0 1 424 World StepLimiter - 434 -0.717 4.95 2.3 5.51e-14 0 1 425 World StepLimiter - 435 -0.884 5.93 2.3 5.5e-14 0 1 426 World StepLimiter - 436 -1.05 6.92 2.31 5.49e-14 0 1 427 World StepLimiter - 437 -1.22 7.91 2.31 5.48e-14 0 1 428 World StepLimiter - 438 -1.39 8.89 2.32 5.47e-14 0 1 429 World StepLimiter - 439 -1.55 9.88 2.32 5.46e-14 0 1 430 World StepLimiter - 440 -1.72 10.9 2.33 5.45e-14 0 1 431 World StepLimiter - 441 -1.89 11.8 2.34 5.44e-14 0 1 432 World StepLimiter - 442 -2.06 12.8 2.34 5.43e-14 0 1 433 World StepLimiter - 443 -2.23 13.8 2.35 5.42e-14 0 1 434 World StepLimiter - 444 -2.4 14.8 2.35 5.41e-14 0 1 435 World StepLimiter - 445 -2.56 15.8 2.36 5.4e-14 0 1 436 World StepLimiter - 446 -2.73 16.8 2.36 5.39e-14 0 1 437 World StepLimiter - 447 -2.9 17.8 2.37 5.38e-14 0 1 438 World StepLimiter - 448 -3.07 18.7 2.37 5.37e-14 0 1 439 World StepLimiter - 449 -3.24 19.7 2.38 5.36e-14 0 1 440 World StepLimiter - 450 -3.41 20.7 2.38 5.35e-14 0 1 441 World StepLimiter - 451 -3.58 21.7 2.39 5.34e-14 0 1 442 World StepLimiter - 452 -3.75 22.7 2.4 5.33e-14 0 1 443 World StepLimiter - 453 -3.92 23.7 2.4 5.32e-14 0 1 444 World StepLimiter - 454 -4.09 24.7 2.41 5.31e-14 0 1 445 World StepLimiter - 455 -4.26 25.6 2.41 5.3e-14 0 1 446 World StepLimiter - 456 -4.43 26.6 2.42 5.29e-14 0 1 447 World StepLimiter - 457 -4.6 27.6 2.42 5.28e-14 0 1 448 World StepLimiter - 458 -4.77 28.6 2.43 5.27e-14 0 1 449 World StepLimiter - 459 -4.94 29.6 2.43 5.26e-14 0 1 450 World StepLimiter - 460 -5.11 30.6 2.44 5.25e-14 0 1 451 World StepLimiter - 461 -5.29 31.6 2.45 5.24e-14 0 1 452 World StepLimiter - 462 -5.46 32.5 2.45 5.23e-14 0 1 453 World StepLimiter - 463 -5.63 33.5 2.46 5.22e-14 0 1 454 World StepLimiter - 464 -5.8 34.5 2.46 5.21e-14 0 1 455 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.06600878744neV MomDir: (-0.17186607152276,0.98510450122306,0.0055834692972355) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 465 -5.8 34.5 2.46 5.21e-14 0 0.00134 455 Guide Transportation *** StepTooSmall *** - 466 -5.8 34.5 2.46 5.21e-14 0 0 455 World Transportation - 467 -5.64 33.5 2.47 5.22e-14 0 1 456 World StepLimiter - 468 -5.48 32.5 2.47 5.23e-14 0 1 457 World StepLimiter - 469 -5.32 31.6 2.48 5.24e-14 0 1 458 World StepLimiter - 470 -5.16 30.6 2.48 5.25e-14 0 1 459 World StepLimiter - 471 -5 29.6 2.49 5.26e-14 0 1 460 World StepLimiter - 472 -4.85 28.6 2.5 5.27e-14 0 1 461 World StepLimiter - 473 -4.69 27.6 2.5 5.28e-14 0 1 462 World StepLimiter - 474 -4.53 26.6 2.51 5.29e-14 0 1 463 World StepLimiter - 475 -4.37 25.6 2.51 5.3e-14 0 1 464 World StepLimiter - 476 -4.21 24.6 2.52 5.31e-14 0 1 465 World StepLimiter - 477 -4.05 23.7 2.52 5.32e-14 0 1 466 World StepLimiter - 478 -3.9 22.7 2.53 5.33e-14 0 1 467 World StepLimiter - 479 -3.74 21.7 2.53 5.34e-14 0 1 468 World StepLimiter - 480 -3.58 20.7 2.54 5.35e-14 0 1 469 World StepLimiter - 481 -3.42 19.7 2.55 5.36e-14 0 1 470 World StepLimiter - 482 -3.27 18.7 2.55 5.37e-14 0 1 471 World StepLimiter - 483 -3.11 17.7 2.56 5.38e-14 0 1 472 World StepLimiter - 484 -2.95 16.7 2.56 5.39e-14 0 1 473 World StepLimiter - 485 -2.8 15.8 2.57 5.4e-14 0 1 474 World StepLimiter - 486 -2.64 14.8 2.57 5.41e-14 0 1 475 World StepLimiter - 487 -2.48 13.8 2.58 5.42e-14 0 1 476 World StepLimiter - 488 -2.33 12.8 2.58 5.43e-14 0 1 477 World StepLimiter - 489 -2.17 11.8 2.59 5.44e-14 0 1 478 World StepLimiter - 490 -2.01 10.8 2.59 5.45e-14 0 1 479 World StepLimiter - 491 -1.86 9.83 2.6 5.46e-14 0 1 480 World StepLimiter - 492 -1.7 8.84 2.61 5.47e-14 0 1 481 World StepLimiter - 493 -1.55 7.85 2.61 5.48e-14 0 1 482 World StepLimiter - 494 -1.39 6.87 2.62 5.49e-14 0 1 483 World StepLimiter - 495 -1.24 5.88 2.62 5.5e-14 0 1 484 World StepLimiter - 496 -1.08 4.89 2.63 5.51e-14 0 1 485 World StepLimiter - 497 -0.926 3.9 2.63 5.52e-14 0 1 486 World StepLimiter - 498 -0.771 2.91 2.64 5.53e-14 0 1 487 World StepLimiter - 499 -0.616 1.93 2.64 5.54e-14 0 1 488 World StepLimiter - 500 -0.462 0.938 2.65 5.55e-14 0 1 489 World StepLimiter - 501 -0.307 -0.0496 2.65 5.56e-14 0 1 490 World StepLimiter - 502 -0.153 -1.04 2.66 5.57e-14 0 1 491 World StepLimiter - 503 0.00133 -2.03 2.67 5.58e-14 0 1 492 World StepLimiter - 504 0.155 -3.01 2.67 5.59e-14 0 1 493 World StepLimiter - 505 0.309 -4 2.68 5.6e-14 0 1 494 World StepLimiter - 506 0.463 -4.99 2.68 5.61e-14 0 1 495 World StepLimiter - 507 0.617 -5.98 2.69 5.62e-14 0 1 496 World StepLimiter - 508 0.77 -6.97 2.69 5.63e-14 0 1 497 World StepLimiter - 509 0.924 -7.95 2.7 5.64e-14 0 1 498 World StepLimiter - 510 1.08 -8.94 2.7 5.65e-14 0 1 499 World StepLimiter - 511 1.23 -9.93 2.71 5.66e-14 0 1 500 World StepLimiter - 512 1.38 -10.9 2.71 5.67e-14 0 1 501 World StepLimiter - 513 1.54 -11.9 2.72 5.68e-14 0 1 502 World StepLimiter - 514 1.69 -12.9 2.72 5.69e-14 0 1 503 World StepLimiter - 515 1.84 -13.9 2.73 5.7e-14 0 1 504 World StepLimiter - 516 1.99 -14.9 2.74 5.71e-14 0 1 505 World StepLimiter - 517 2.15 -15.9 2.74 5.72e-14 0 1 506 World StepLimiter - 518 2.3 -16.8 2.75 5.73e-14 0 1 507 World StepLimiter - 519 2.45 -17.8 2.75 5.74e-14 0 1 508 World StepLimiter - 520 2.6 -18.8 2.76 5.75e-14 0 1 509 World StepLimiter - 521 2.75 -19.8 2.76 5.76e-14 0 1 510 World StepLimiter - 522 2.9 -20.8 2.77 5.77e-14 0 1 511 World StepLimiter - 523 3.06 -21.8 2.77 5.78e-14 0 1 512 World StepLimiter - 524 3.21 -22.8 2.78 5.79e-14 0 1 513 World StepLimiter - 525 3.36 -23.8 2.78 5.8e-14 0 1 514 World StepLimiter - 526 3.51 -24.8 2.79 5.81e-14 0 1 515 World StepLimiter - 527 3.66 -25.7 2.79 5.82e-14 0 1 516 World StepLimiter - 528 3.81 -26.7 2.8 5.83e-14 0 1 517 World StepLimiter - 529 3.96 -27.7 2.8 5.84e-14 0 1 518 World StepLimiter - 530 4.11 -28.7 2.81 5.86e-14 0 1 519 World StepLimiter - 531 4.26 -29.7 2.81 5.87e-14 0 1 520 World StepLimiter - 532 4.41 -30.7 2.82 5.88e-14 0 1 521 World StepLimiter - 533 4.56 -31.7 2.83 5.89e-14 0 1 522 World StepLimiter - 534 4.71 -32.7 2.83 5.9e-14 0 1 523 World StepLimiter - 535 4.86 -33.7 2.84 5.91e-14 0 1 524 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.158177026749neV MomDir: (0.14970679955338,-0.98871656022508,0.0052381011996146) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 536 5.01 -34.6 2.84 5.92e-14 0 0.997 525 Guide Transportation *** StepTooSmall *** - 537 5.01 -34.6 2.84 5.92e-14 0 0 525 World Transportation - 538 4.88 -33.6 2.85 5.91e-14 0 1 526 World StepLimiter - 539 4.74 -32.7 2.85 5.9e-14 0 1 527 World StepLimiter - 540 4.6 -31.7 2.86 5.89e-14 0 1 528 World StepLimiter - 541 4.47 -30.7 2.86 5.88e-14 0 1 529 World StepLimiter - 542 4.33 -29.7 2.87 5.87e-14 0 1 530 World StepLimiter - 543 4.19 -28.7 2.87 5.85e-14 0 1 531 World StepLimiter - 544 4.05 -27.7 2.88 5.84e-14 0 1 532 World StepLimiter - 545 3.92 -26.7 2.88 5.83e-14 0 1 533 World StepLimiter - 546 3.78 -25.7 2.89 5.82e-14 0 1 534 World StepLimiter - 547 3.64 -24.7 2.89 5.81e-14 0 1 535 World StepLimiter - 548 3.5 -23.7 2.9 5.8e-14 0 1 536 World StepLimiter - 549 3.36 -22.8 2.9 5.79e-14 0 1 537 World StepLimiter - 550 3.23 -21.8 2.91 5.78e-14 0 1 538 World StepLimiter - 551 3.09 -20.8 2.91 5.77e-14 0 1 539 World StepLimiter - 552 2.95 -19.8 2.92 5.76e-14 0 1 540 World StepLimiter - 553 2.81 -18.8 2.93 5.75e-14 0 1 541 World StepLimiter - 554 2.67 -17.8 2.93 5.74e-14 0 1 542 World StepLimiter - 555 2.53 -16.8 2.94 5.73e-14 0 1 543 World StepLimiter - 556 2.39 -15.8 2.94 5.72e-14 0 1 544 World StepLimiter - 557 2.25 -14.8 2.95 5.71e-14 0 1 545 World StepLimiter - 558 2.12 -13.8 2.95 5.7e-14 0 1 546 World StepLimiter - 559 1.98 -12.9 2.96 5.69e-14 0 1 547 World StepLimiter - 560 1.84 -11.9 2.96 5.68e-14 0 1 548 World StepLimiter - 561 1.7 -10.9 2.97 5.67e-14 0 1 549 World StepLimiter - 562 1.56 -9.88 2.97 5.66e-14 0 1 550 World StepLimiter - 563 1.42 -8.89 2.98 5.65e-14 0 1 551 World StepLimiter - 564 1.28 -7.9 2.98 5.64e-14 0 1 552 World StepLimiter - 565 1.14 -6.91 2.99 5.63e-14 0 1 553 World StepLimiter - 566 0.997 -5.92 2.99 5.62e-14 0 1 554 World StepLimiter - 567 0.857 -4.93 3 5.61e-14 0 1 555 World StepLimiter - 568 0.716 -3.94 3.01 5.6e-14 0 1 556 World StepLimiter - 569 0.575 -2.95 3.01 5.59e-14 0 1 557 World StepLimiter - 570 0.435 -1.96 3.02 5.58e-14 0 1 558 World StepLimiter - 571 0.294 -0.969 3.02 5.57e-14 0 1 559 World StepLimiter - 572 0.153 0.0213 3.03 5.56e-14 0 1 560 World StepLimiter - 573 0.0118 1.01 3.03 5.55e-14 0 1 561 World StepLimiter - 574 -0.129 2 3.04 5.54e-14 0 1 562 World StepLimiter - 575 -0.271 2.99 3.04 5.53e-14 0 1 563 World StepLimiter - 576 -0.412 3.98 3.05 5.52e-14 0 1 564 World StepLimiter - 577 -0.554 4.97 3.05 5.51e-14 0 1 565 World StepLimiter - 578 -0.696 5.96 3.06 5.5e-14 0 1 566 World StepLimiter - 579 -0.838 6.95 3.06 5.49e-14 0 1 567 World StepLimiter - 580 -0.98 7.94 3.07 5.48e-14 0 1 568 World StepLimiter - 581 -1.12 8.93 3.08 5.47e-14 0 1 569 World StepLimiter - 582 -1.26 9.92 3.08 5.46e-14 0 1 570 World StepLimiter - 583 -1.41 10.9 3.09 5.45e-14 0 1 571 World StepLimiter - 584 -1.55 11.9 3.09 5.44e-14 0 1 572 World StepLimiter - 585 -1.69 12.9 3.1 5.43e-14 0 1 573 World StepLimiter - 586 -1.83 13.9 3.1 5.42e-14 0 1 574 World StepLimiter - 587 -1.98 14.9 3.11 5.41e-14 0 1 575 World StepLimiter - 588 -2.12 15.9 3.11 5.4e-14 0 1 576 World StepLimiter - 589 -2.26 16.8 3.12 5.39e-14 0 1 577 World StepLimiter - 590 -2.41 17.8 3.13 5.38e-14 0 1 578 World StepLimiter - 591 -2.55 18.8 3.13 5.37e-14 0 1 579 World StepLimiter - 592 -2.69 19.8 3.14 5.36e-14 0 1 580 World StepLimiter - 593 -2.84 20.8 3.14 5.35e-14 0 1 581 World StepLimiter - 594 -2.98 21.8 3.15 5.34e-14 0 1 582 World StepLimiter - 595 -3.13 22.8 3.15 5.33e-14 0 1 583 World StepLimiter - 596 -3.27 23.8 3.16 5.32e-14 0 1 584 World StepLimiter - 597 -3.41 24.8 3.16 5.31e-14 0 1 585 World StepLimiter - 598 -3.56 25.8 3.17 5.3e-14 0 1 586 World StepLimiter - 599 -3.7 26.7 3.17 5.29e-14 0 1 587 World StepLimiter - 600 -3.85 27.7 3.18 5.28e-14 0 1 588 World StepLimiter - 601 -3.99 28.7 3.19 5.27e-14 0 1 589 World StepLimiter - 602 -4.14 29.7 3.19 5.26e-14 0 1 590 World StepLimiter - 603 -4.28 30.7 3.2 5.25e-14 0 1 591 World StepLimiter - 604 -4.43 31.7 3.2 5.24e-14 0 1 592 World StepLimiter - 605 -4.57 32.7 3.21 5.23e-14 0 1 593 World StepLimiter - 606 -4.72 33.7 3.21 5.22e-14 0 1 594 World StepLimiter - 607 -4.87 34.7 3.22 5.21e-14 0 1 595 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.051222792658neV MomDir: (-0.14577993266946,0.9893012823431,0.0055842622784699) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 608 -4.87 34.7 3.22 5.21e-14 0 0.00111 595 Guide Transportation *** StepTooSmall *** - 609 -4.87 34.7 3.22 5.21e-14 0 0 595 World Transportation - 610 -4.73 33.7 3.22 5.22e-14 0 1 596 World StepLimiter - 611 -4.6 32.7 3.23 5.23e-14 0 1 597 World StepLimiter - 612 -4.47 31.7 3.24 5.24e-14 0 1 598 World StepLimiter - 613 -4.34 30.7 3.24 5.25e-14 0 1 599 World StepLimiter - 614 -4.21 29.7 3.25 5.26e-14 0 1 600 World StepLimiter - 615 -4.07 28.7 3.25 5.27e-14 0 1 601 World StepLimiter - 616 -3.94 27.7 3.26 5.28e-14 0 1 602 World StepLimiter - 617 -3.81 26.7 3.26 5.29e-14 0 1 603 World StepLimiter - 618 -3.68 25.7 3.27 5.3e-14 0 1 604 World StepLimiter - 619 -3.55 24.7 3.27 5.31e-14 0 1 605 World StepLimiter - 620 -3.42 23.8 3.28 5.32e-14 0 1 606 World StepLimiter - 621 -3.29 22.8 3.29 5.33e-14 0 1 607 World StepLimiter - 622 -3.16 21.8 3.29 5.34e-14 0 1 608 World StepLimiter - 623 -3.03 20.8 3.3 5.35e-14 0 1 609 World StepLimiter - 624 -2.9 19.8 3.3 5.36e-14 0 1 610 World StepLimiter - 625 -2.77 18.8 3.31 5.37e-14 0 1 611 World StepLimiter - 626 -2.64 17.8 3.31 5.38e-14 0 1 612 World StepLimiter - 627 -2.51 16.8 3.32 5.39e-14 0 1 613 World StepLimiter - 628 -2.38 15.8 3.32 5.4e-14 0 1 614 World StepLimiter - 629 -2.25 14.8 3.33 5.41e-14 0 1 615 World StepLimiter - 630 -2.12 13.8 3.34 5.42e-14 0 1 616 World StepLimiter - 631 -1.99 12.8 3.34 5.43e-14 0 1 617 World StepLimiter - 632 -1.86 11.9 3.35 5.44e-14 0 1 618 World StepLimiter - 633 -1.73 10.9 3.35 5.45e-14 0 1 619 World StepLimiter - 634 -1.6 9.87 3.36 5.46e-14 0 1 620 World StepLimiter - 635 -1.47 8.88 3.36 5.47e-14 0 1 621 World StepLimiter - 636 -1.34 7.89 3.37 5.48e-14 0 1 622 World StepLimiter - 637 -1.21 6.9 3.37 5.49e-14 0 1 623 World StepLimiter - 638 -1.08 5.91 3.38 5.5e-14 0 1 624 World StepLimiter - 639 -0.955 4.92 3.38 5.51e-14 0 1 625 World StepLimiter - 640 -0.826 3.92 3.39 5.52e-14 0 1 626 World StepLimiter - 641 -0.698 2.93 3.4 5.53e-14 0 1 627 World StepLimiter - 642 -0.57 1.94 3.4 5.54e-14 0 1 628 World StepLimiter - 643 -0.442 0.95 3.41 5.55e-14 0 1 629 World StepLimiter - 644 -0.314 -0.042 3.41 5.56e-14 0 1 630 World StepLimiter - 645 -0.186 -1.03 3.42 5.57e-14 0 1 631 World StepLimiter - 646 -0.0582 -2.03 3.42 5.58e-14 0 1 632 World StepLimiter - 647 0.0694 -3.02 3.43 5.59e-14 0 1 633 World StepLimiter - 648 0.197 -4.01 3.43 5.6e-14 0 1 634 World StepLimiter - 649 0.324 -5 3.44 5.61e-14 0 1 635 World StepLimiter - 650 0.452 -5.99 3.44 5.62e-14 0 1 636 World StepLimiter - 651 0.579 -6.98 3.45 5.63e-14 0 1 637 World StepLimiter - 652 0.706 -7.98 3.45 5.64e-14 0 1 638 World StepLimiter - 653 0.833 -8.97 3.46 5.65e-14 0 1 639 World StepLimiter - 654 0.96 -9.96 3.47 5.66e-14 0 1 640 World StepLimiter - 655 1.09 -11 3.47 5.67e-14 0 1 641 World StepLimiter - 656 1.21 -11.9 3.48 5.68e-14 0 1 642 World StepLimiter - 657 1.34 -12.9 3.48 5.69e-14 0 1 643 World StepLimiter - 658 1.47 -13.9 3.49 5.7e-14 0 1 644 World StepLimiter - 659 1.59 -14.9 3.49 5.71e-14 0 1 645 World StepLimiter - 660 1.72 -15.9 3.5 5.72e-14 0 1 646 World StepLimiter - 661 1.84 -16.9 3.5 5.73e-14 0 1 647 World StepLimiter - 662 1.97 -17.9 3.51 5.74e-14 0 1 648 World StepLimiter - 663 2.1 -18.9 3.51 5.75e-14 0 1 649 World StepLimiter - 664 2.22 -19.9 3.52 5.76e-14 0 1 650 World StepLimiter - 665 2.35 -20.9 3.52 5.77e-14 0 1 651 World StepLimiter - 666 2.47 -21.9 3.53 5.78e-14 0 1 652 World StepLimiter - 667 2.6 -22.9 3.53 5.79e-14 0 1 653 World StepLimiter - 668 2.72 -23.8 3.54 5.81e-14 0 1 654 World StepLimiter - 669 2.85 -24.8 3.54 5.82e-14 0 1 655 World StepLimiter - 670 2.97 -25.8 3.55 5.83e-14 0 1 656 World StepLimiter - 671 3.1 -26.8 3.56 5.84e-14 0 1 657 World StepLimiter - 672 3.22 -27.8 3.56 5.85e-14 0 1 658 World StepLimiter - 673 3.35 -28.8 3.57 5.86e-14 0 1 659 World StepLimiter - 674 3.47 -29.8 3.57 5.87e-14 0 1 660 World StepLimiter - 675 3.6 -30.8 3.58 5.88e-14 0 1 661 World StepLimiter - 676 3.72 -31.8 3.58 5.89e-14 0 1 662 World StepLimiter - 677 3.85 -32.8 3.59 5.9e-14 0 1 663 World StepLimiter - 678 3.97 -33.8 3.59 5.91e-14 0 1 664 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.170547362866neV MomDir: (0.12402046301375,-0.99226583776016,0.0052375536260129) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 679 4.09 -34.8 3.6 5.92e-14 0 0.997 665 Guide Transportation *** StepTooSmall *** - 680 4.09 -34.8 3.6 5.92e-14 0 0 665 World Transportation - 681 3.98 -33.8 3.6 5.91e-14 0 1 666 World StepLimiter - 682 3.87 -32.8 3.61 5.9e-14 0 1 667 World StepLimiter - 683 3.76 -31.8 3.61 5.89e-14 0 1 668 World StepLimiter - 684 3.65 -30.8 3.62 5.88e-14 0 1 669 World StepLimiter - 685 3.54 -29.8 3.62 5.87e-14 0 1 670 World StepLimiter - 686 3.43 -28.8 3.63 5.86e-14 0 1 671 World StepLimiter - 687 3.32 -27.8 3.63 5.85e-14 0 1 672 World StepLimiter - 688 3.21 -26.8 3.64 5.84e-14 0 1 673 World StepLimiter - 689 3.1 -25.8 3.64 5.83e-14 0 1 674 World StepLimiter - 690 2.99 -24.8 3.65 5.82e-14 0 1 675 World StepLimiter - 691 2.88 -23.8 3.66 5.8e-14 0 1 676 World StepLimiter - 692 2.77 -22.8 3.66 5.79e-14 0 1 677 World StepLimiter - 693 2.66 -21.8 3.67 5.78e-14 0 1 678 World StepLimiter - 694 2.55 -20.8 3.67 5.77e-14 0 1 679 World StepLimiter - 695 2.43 -19.9 3.68 5.76e-14 0 1 680 World StepLimiter - 696 2.32 -18.9 3.68 5.75e-14 0 1 681 World StepLimiter - 697 2.21 -17.9 3.69 5.74e-14 0 1 682 World StepLimiter - 698 2.1 -16.9 3.69 5.73e-14 0 1 683 World StepLimiter - 699 1.99 -15.9 3.7 5.72e-14 0 1 684 World StepLimiter - 700 1.88 -14.9 3.7 5.71e-14 0 1 685 World StepLimiter - 701 1.76 -13.9 3.71 5.7e-14 0 1 686 World StepLimiter - 702 1.65 -12.9 3.71 5.69e-14 0 1 687 World StepLimiter - 703 1.54 -11.9 3.72 5.68e-14 0 1 688 World StepLimiter - 704 1.43 -10.9 3.72 5.67e-14 0 1 689 World StepLimiter - 705 1.32 -9.91 3.73 5.66e-14 0 1 690 World StepLimiter - 706 1.2 -8.92 3.74 5.65e-14 0 1 691 World StepLimiter - 707 1.09 -7.93 3.74 5.64e-14 0 1 692 World StepLimiter - 708 0.978 -6.93 3.75 5.63e-14 0 1 693 World StepLimiter - 709 0.866 -5.94 3.75 5.62e-14 0 1 694 World StepLimiter - 710 0.753 -4.95 3.76 5.61e-14 0 1 695 World StepLimiter - 711 0.64 -3.95 3.76 5.6e-14 0 1 696 World StepLimiter - 712 0.527 -2.96 3.77 5.59e-14 0 1 697 World StepLimiter - 713 0.414 -1.97 3.77 5.58e-14 0 1 698 World StepLimiter - 714 0.301 -0.973 3.78 5.57e-14 0 1 699 World StepLimiter - 715 0.187 0.021 3.78 5.56e-14 0 1 700 World StepLimiter - 716 0.074 1.01 3.79 5.55e-14 0 1 701 World StepLimiter - 717 -0.0396 2.01 3.79 5.54e-14 0 1 702 World StepLimiter - 718 -0.153 3 3.8 5.53e-14 0 1 703 World StepLimiter - 719 -0.267 4 3.81 5.52e-14 0 1 704 World StepLimiter - 720 -0.381 4.99 3.81 5.51e-14 0 1 705 World StepLimiter - 721 -0.495 5.98 3.82 5.5e-14 0 1 706 World StepLimiter - 722 -0.609 6.98 3.82 5.49e-14 0 1 707 World StepLimiter - 723 -0.723 7.97 3.83 5.48e-14 0 1 708 World StepLimiter - 724 -0.837 8.96 3.83 5.47e-14 0 1 709 World StepLimiter - 725 -0.952 9.96 3.84 5.46e-14 0 1 710 World StepLimiter - 726 -1.07 10.9 3.84 5.45e-14 0 1 711 World StepLimiter - 727 -1.18 11.9 3.85 5.44e-14 0 1 712 World StepLimiter - 728 -1.3 12.9 3.85 5.43e-14 0 1 713 World StepLimiter - 729 -1.41 13.9 3.86 5.42e-14 0 1 714 World StepLimiter - 730 -1.53 14.9 3.87 5.41e-14 0 1 715 World StepLimiter - 731 -1.64 15.9 3.87 5.4e-14 0 1 716 World StepLimiter - 732 -1.76 16.9 3.88 5.39e-14 0 1 717 World StepLimiter - 733 -1.87 17.9 3.88 5.38e-14 0 1 718 World StepLimiter - 734 -1.99 18.9 3.89 5.37e-14 0 1 719 World StepLimiter - 735 -2.1 19.9 3.89 5.36e-14 0 1 720 World StepLimiter - 736 -2.22 20.9 3.9 5.35e-14 0 1 721 World StepLimiter - 737 -2.33 21.9 3.9 5.34e-14 0 1 722 World StepLimiter - 738 -2.45 22.9 3.91 5.33e-14 0 1 723 World StepLimiter - 739 -2.56 23.9 3.91 5.32e-14 0 1 724 World StepLimiter - 740 -2.68 24.9 3.92 5.31e-14 0 1 725 World StepLimiter - 741 -2.8 25.8 3.93 5.3e-14 0 1 726 World StepLimiter - 742 -2.91 26.8 3.93 5.29e-14 0 1 727 World StepLimiter - 743 -3.03 27.8 3.94 5.28e-14 0 1 728 World StepLimiter - 744 -3.15 28.8 3.94 5.26e-14 0 1 729 World StepLimiter - 745 -3.26 29.8 3.95 5.25e-14 0 1 730 World StepLimiter - 746 -3.38 30.8 3.95 5.24e-14 0 1 731 World StepLimiter - 747 -3.5 31.8 3.96 5.23e-14 0 1 732 World StepLimiter - 748 -3.61 32.8 3.96 5.22e-14 0 1 733 World StepLimiter - 749 -3.73 33.8 3.97 5.21e-14 0 1 734 World StepLimiter - 750 -3.85 34.8 3.98 5.2e-14 0 1 735 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.038116068564neV MomDir: (-0.11719507601264,0.99309320928046,0.0055849654820293) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 751 -3.85 34.8 3.98 5.2e-14 0 0.000737 735 Guide Transportation *** StepTooSmall *** - 752 -3.85 34.8 3.98 5.2e-14 0 0 735 World Transportation - 753 -3.74 33.8 3.98 5.21e-14 0 1 736 World StepLimiter - 754 -3.64 32.8 3.99 5.22e-14 0 1 737 World StepLimiter - 755 -3.54 31.8 3.99 5.23e-14 0 1 738 World StepLimiter - 756 -3.44 30.8 4 5.24e-14 0 1 739 World StepLimiter - 757 -3.33 29.8 4 5.25e-14 0 1 740 World StepLimiter - 758 -3.23 28.8 4.01 5.27e-14 0 1 741 World StepLimiter - 759 -3.13 27.8 4.01 5.28e-14 0 1 742 World StepLimiter - 760 -3.03 26.8 4.02 5.29e-14 0 1 743 World StepLimiter - 761 -2.93 25.8 4.03 5.3e-14 0 1 744 World StepLimiter - 762 -2.83 24.8 4.03 5.31e-14 0 1 745 World StepLimiter - 763 -2.72 23.8 4.04 5.32e-14 0 1 746 World StepLimiter - 764 -2.62 22.9 4.04 5.33e-14 0 1 747 World StepLimiter - 765 -2.52 21.9 4.05 5.34e-14 0 1 748 World StepLimiter - 766 -2.42 20.9 4.05 5.35e-14 0 1 749 World StepLimiter - 767 -2.32 19.9 4.06 5.36e-14 0 1 750 World StepLimiter - 768 -2.22 18.9 4.06 5.37e-14 0 1 751 World StepLimiter - 769 -2.12 17.9 4.07 5.38e-14 0 1 752 World StepLimiter - 770 -2.02 16.9 4.08 5.39e-14 0 1 753 World StepLimiter - 771 -1.92 15.9 4.08 5.4e-14 0 1 754 World StepLimiter - 772 -1.81 14.9 4.09 5.41e-14 0 1 755 World StepLimiter - 773 -1.71 13.9 4.09 5.42e-14 0 1 756 World StepLimiter - 774 -1.61 12.9 4.1 5.43e-14 0 1 757 World StepLimiter - 775 -1.51 11.9 4.1 5.44e-14 0 1 758 World StepLimiter - 776 -1.41 10.9 4.11 5.45e-14 0 1 759 World StepLimiter - 777 -1.31 9.92 4.11 5.46e-14 0 1 760 World StepLimiter - 778 -1.21 8.92 4.12 5.47e-14 0 1 761 World StepLimiter - 779 -1.11 7.93 4.12 5.48e-14 0 1 762 World StepLimiter - 780 -1.01 6.93 4.13 5.49e-14 0 1 763 World StepLimiter - 781 -0.912 5.94 4.14 5.5e-14 0 1 764 World StepLimiter - 782 -0.813 4.94 4.14 5.51e-14 0 1 765 World StepLimiter - 783 -0.713 3.95 4.15 5.52e-14 0 1 766 World StepLimiter - 784 -0.613 2.95 4.15 5.53e-14 0 1 767 World StepLimiter - 785 -0.514 1.96 4.16 5.54e-14 0 1 768 World StepLimiter - 786 -0.414 0.962 4.16 5.55e-14 0 1 769 World StepLimiter - 787 -0.315 -0.0329 4.17 5.56e-14 0 1 770 World StepLimiter - 788 -0.216 -1.03 4.17 5.57e-14 0 1 771 World StepLimiter - 789 -0.117 -2.02 4.18 5.58e-14 0 1 772 World StepLimiter - 790 -0.0178 -3.02 4.18 5.59e-14 0 1 773 World StepLimiter - 791 0.0811 -4.01 4.19 5.6e-14 0 1 774 World StepLimiter - 792 0.18 -5.01 4.2 5.61e-14 0 1 775 World StepLimiter - 793 0.279 -6 4.2 5.62e-14 0 1 776 World StepLimiter - 794 0.377 -7 4.21 5.63e-14 0 1 777 World StepLimiter - 795 0.476 -7.99 4.21 5.64e-14 0 1 778 World StepLimiter - 796 0.574 -8.99 4.22 5.65e-14 0 1 779 World StepLimiter - 797 0.673 -9.98 4.22 5.66e-14 0 1 780 World StepLimiter - 798 0.771 -11 4.23 5.67e-14 0 1 781 World StepLimiter - 799 0.869 -12 4.23 5.68e-14 0 1 782 World StepLimiter - 800 0.968 -13 4.24 5.69e-14 0 1 783 World StepLimiter - 801 1.07 -14 4.24 5.7e-14 0 1 784 World StepLimiter - 802 1.16 -15 4.25 5.71e-14 0 1 785 World StepLimiter - 803 1.26 -16 4.25 5.72e-14 0 1 786 World StepLimiter - 804 1.36 -16.9 4.26 5.73e-14 0 1 787 World StepLimiter - 805 1.46 -17.9 4.26 5.74e-14 0 1 788 World StepLimiter - 806 1.55 -18.9 4.27 5.75e-14 0 1 789 World StepLimiter - 807 1.65 -19.9 4.28 5.77e-14 0 1 790 World StepLimiter - 808 1.75 -20.9 4.28 5.78e-14 0 1 791 World StepLimiter - 809 1.85 -21.9 4.29 5.79e-14 0 1 792 World StepLimiter - 810 1.94 -22.9 4.29 5.8e-14 0 1 793 World StepLimiter - 811 2.04 -23.9 4.3 5.81e-14 0 1 794 World StepLimiter - 812 2.14 -24.9 4.3 5.82e-14 0 1 795 World StepLimiter - 813 2.24 -25.9 4.31 5.83e-14 0 1 796 World StepLimiter - 814 2.33 -26.9 4.31 5.84e-14 0 1 797 World StepLimiter - 815 2.43 -27.9 4.32 5.85e-14 0 1 798 World StepLimiter - 816 2.53 -28.9 4.32 5.86e-14 0 1 799 World StepLimiter - 817 2.62 -29.9 4.33 5.87e-14 0 1 800 World StepLimiter - 818 2.72 -30.9 4.33 5.88e-14 0 1 801 World StepLimiter - 819 2.82 -31.9 4.34 5.89e-14 0 1 802 World StepLimiter - 820 2.91 -32.9 4.34 5.9e-14 0 1 803 World StepLimiter - 821 3.01 -33.9 4.35 5.91e-14 0 1 804 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.181039703755neV MomDir: (0.09620916515466,-0.99534736119394,0.0052370893165457) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 822 3.1 -34.9 4.35 5.92e-14 0 0.997 805 Guide Transportation *** StepTooSmall *** - 823 3.1 -34.9 4.35 5.92e-14 0 0 805 World Transportation - 824 3.02 -33.9 4.36 5.91e-14 0 1 806 World StepLimiter - 825 2.94 -32.9 4.36 5.9e-14 0 1 807 World StepLimiter - 826 2.86 -31.9 4.37 5.89e-14 0 1 808 World StepLimiter - 827 2.78 -30.9 4.38 5.88e-14 0 1 809 World StepLimiter - 828 2.7 -29.9 4.38 5.87e-14 0 1 810 World StepLimiter - 829 2.62 -28.9 4.39 5.86e-14 0 1 811 World StepLimiter - 830 2.53 -27.9 4.39 5.85e-14 0 1 812 World StepLimiter - 831 2.45 -26.9 4.4 5.84e-14 0 1 813 World StepLimiter - 832 2.37 -25.9 4.4 5.83e-14 0 1 814 World StepLimiter - 833 2.29 -24.9 4.41 5.82e-14 0 1 815 World StepLimiter - 834 2.21 -23.9 4.41 5.81e-14 0 1 816 World StepLimiter - 835 2.13 -22.9 4.42 5.8e-14 0 1 817 World StepLimiter - 836 2.04 -21.9 4.42 5.79e-14 0 1 818 World StepLimiter - 837 1.96 -20.9 4.43 5.78e-14 0 1 819 World StepLimiter - 838 1.88 -19.9 4.43 5.76e-14 0 1 820 World StepLimiter - 839 1.8 -18.9 4.44 5.75e-14 0 1 821 World StepLimiter - 840 1.71 -17.9 4.44 5.74e-14 0 1 822 World StepLimiter - 841 1.63 -16.9 4.45 5.73e-14 0 1 823 World StepLimiter - 842 1.55 -15.9 4.45 5.72e-14 0 1 824 World StepLimiter - 843 1.47 -14.9 4.46 5.71e-14 0 1 825 World StepLimiter - 844 1.38 -13.9 4.47 5.7e-14 0 1 826 World StepLimiter - 845 1.3 -12.9 4.47 5.69e-14 0 1 827 World StepLimiter - 846 1.22 -11.9 4.48 5.68e-14 0 1 828 World StepLimiter - 847 1.14 -10.9 4.48 5.67e-14 0 1 829 World StepLimiter - 848 1.05 -9.95 4.49 5.66e-14 0 1 830 World StepLimiter - 849 0.97 -8.95 4.49 5.65e-14 0 1 831 World StepLimiter - 850 0.886 -7.95 4.5 5.64e-14 0 1 832 World StepLimiter - 851 0.803 -6.96 4.5 5.63e-14 0 1 833 World StepLimiter - 852 0.72 -5.96 4.51 5.62e-14 0 1 834 World StepLimiter - 853 0.637 -4.96 4.51 5.61e-14 0 1 835 World StepLimiter - 854 0.553 -3.97 4.52 5.6e-14 0 1 836 World StepLimiter - 855 0.47 -2.97 4.52 5.59e-14 0 1 837 World StepLimiter - 856 0.386 -1.97 4.53 5.58e-14 0 1 838 World StepLimiter - 857 0.303 -0.978 4.54 5.57e-14 0 1 839 World StepLimiter - 858 0.219 0.0183 4.54 5.56e-14 0 1 840 World StepLimiter - 859 0.135 1.01 4.55 5.55e-14 0 1 841 World StepLimiter - 860 0.0514 2.01 4.55 5.54e-14 0 1 842 World StepLimiter - 861 -0.0326 3.01 4.56 5.53e-14 0 1 843 World StepLimiter - 862 -0.117 4 4.56 5.52e-14 0 1 844 World StepLimiter - 863 -0.201 5 4.57 5.51e-14 0 1 845 World StepLimiter - 864 -0.285 6 4.57 5.5e-14 0 1 846 World StepLimiter - 865 -0.369 6.99 4.58 5.49e-14 0 1 847 World StepLimiter - 866 -0.453 7.99 4.58 5.48e-14 0 1 848 World StepLimiter - 867 -0.538 8.99 4.59 5.47e-14 0 1 849 World StepLimiter - 868 -0.622 9.98 4.59 5.46e-14 0 1 850 World StepLimiter - 869 -0.707 11 4.6 5.45e-14 0 1 851 World StepLimiter - 870 -0.791 12 4.61 5.44e-14 0 1 852 World StepLimiter - 871 -0.876 13 4.61 5.43e-14 0 1 853 World StepLimiter - 872 -0.961 14 4.62 5.42e-14 0 1 854 World StepLimiter - 873 -1.05 15 4.62 5.41e-14 0 1 855 World StepLimiter - 874 -1.13 16 4.63 5.4e-14 0 1 856 World StepLimiter - 875 -1.22 17 4.63 5.39e-14 0 1 857 World StepLimiter - 876 -1.3 18 4.64 5.38e-14 0 1 858 World StepLimiter - 877 -1.39 19 4.64 5.37e-14 0 1 859 World StepLimiter - 878 -1.47 19.9 4.65 5.36e-14 0 1 860 World StepLimiter - 879 -1.56 20.9 4.66 5.35e-14 0 1 861 World StepLimiter - 880 -1.64 21.9 4.66 5.34e-14 0 1 862 World StepLimiter - 881 -1.73 22.9 4.67 5.33e-14 0 1 863 World StepLimiter - 882 -1.81 23.9 4.67 5.32e-14 0 1 864 World StepLimiter - 883 -1.9 24.9 4.68 5.3e-14 0 1 865 World StepLimiter - 884 -1.98 25.9 4.68 5.29e-14 0 1 866 World StepLimiter - 885 -2.07 26.9 4.69 5.28e-14 0 1 867 World StepLimiter - 886 -2.16 27.9 4.69 5.27e-14 0 1 868 World StepLimiter - 887 -2.24 28.9 4.7 5.26e-14 0 1 869 World StepLimiter - 888 -2.33 29.9 4.7 5.25e-14 0 1 870 World StepLimiter - 889 -2.42 30.9 4.71 5.24e-14 0 1 871 World StepLimiter - 890 -2.5 31.9 4.72 5.23e-14 0 1 872 World StepLimiter - 891 -2.59 32.9 4.72 5.22e-14 0 1 873 World StepLimiter - 892 -2.67 33.9 4.73 5.21e-14 0 1 874 World StepLimiter - 893 -2.76 34.9 4.73 5.2e-14 0 1 875 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.027556185071neV MomDir: (-0.086572231600535,0.99622991851547,0.0055855322354659) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 894 -2.76 34.9 4.73 5.2e-14 0 0.000259 875 Guide Transportation *** StepTooSmall *** - 895 -2.76 34.9 4.73 5.2e-14 0 0 875 World Transportation - 896 -2.69 33.9 4.74 5.21e-14 0 1 876 World StepLimiter - 897 -2.62 32.9 4.74 5.22e-14 0 1 877 World StepLimiter - 898 -2.55 31.9 4.75 5.23e-14 0 1 878 World StepLimiter - 899 -2.48 30.9 4.76 5.24e-14 0 1 879 World StepLimiter - 900 -2.41 29.9 4.76 5.25e-14 0 1 880 World StepLimiter - 901 -2.33 28.9 4.77 5.26e-14 0 1 881 World StepLimiter - 902 -2.26 27.9 4.77 5.27e-14 0 1 882 World StepLimiter - 903 -2.19 26.9 4.78 5.28e-14 0 1 883 World StepLimiter - 904 -2.12 25.9 4.78 5.29e-14 0 1 884 World StepLimiter - 905 -2.05 24.9 4.79 5.31e-14 0 1 885 World StepLimiter - 906 -1.98 23.9 4.79 5.32e-14 0 1 886 World StepLimiter - 907 -1.91 22.9 4.8 5.33e-14 0 1 887 World StepLimiter - 908 -1.84 21.9 4.8 5.34e-14 0 1 888 World StepLimiter - 909 -1.77 20.9 4.81 5.35e-14 0 1 889 World StepLimiter - 910 -1.7 19.9 4.82 5.36e-14 0 1 890 World StepLimiter - 911 -1.63 18.9 4.82 5.37e-14 0 1 891 World StepLimiter - 912 -1.56 17.9 4.83 5.38e-14 0 1 892 World StepLimiter - 913 -1.49 16.9 4.83 5.39e-14 0 1 893 World StepLimiter - 914 -1.42 15.9 4.84 5.4e-14 0 1 894 World StepLimiter - 915 -1.35 14.9 4.84 5.41e-14 0 1 895 World StepLimiter - 916 -1.28 13.9 4.85 5.42e-14 0 1 896 World StepLimiter - 917 -1.21 12.9 4.85 5.43e-14 0 1 897 World StepLimiter - 918 -1.14 11.9 4.86 5.44e-14 0 1 898 World StepLimiter - 919 -1.07 11 4.87 5.45e-14 0 1 899 World StepLimiter - 920 -1 9.95 4.87 5.46e-14 0 1 900 World StepLimiter - 921 -0.933 8.96 4.88 5.47e-14 0 1 901 World StepLimiter - 922 -0.864 7.96 4.88 5.48e-14 0 1 902 World StepLimiter - 923 -0.795 6.96 4.89 5.49e-14 0 1 903 World StepLimiter - 924 -0.725 5.96 4.89 5.5e-14 0 1 904 World StepLimiter - 925 -0.656 4.97 4.9 5.51e-14 0 1 905 World StepLimiter - 926 -0.587 3.97 4.9 5.52e-14 0 1 906 World StepLimiter - 927 -0.518 2.97 4.91 5.53e-14 0 1 907 World StepLimiter - 928 -0.449 1.97 4.91 5.54e-14 0 1 908 World StepLimiter - 929 -0.38 0.975 4.92 5.55e-14 0 1 909 World StepLimiter - 930 -0.311 -0.0227 4.92 5.56e-14 0 1 910 World StepLimiter - 931 -0.242 -1.02 4.93 5.57e-14 0 1 911 World StepLimiter - 932 -0.173 -2.02 4.94 5.58e-14 0 1 912 World StepLimiter - 933 -0.105 -3.02 4.94 5.59e-14 0 1 913 World StepLimiter - 934 -0.0362 -4.01 4.95 5.6e-14 0 1 914 World StepLimiter - 935 0.0324 -5.01 4.95 5.61e-14 0 1 915 World StepLimiter - 936 0.101 -6.01 4.96 5.62e-14 0 1 916 World StepLimiter - 937 0.169 -7.01 4.96 5.63e-14 0 1 917 World StepLimiter - 938 0.238 -8 4.97 5.64e-14 0 1 918 World StepLimiter - 939 0.306 -9 4.97 5.65e-14 0 1 919 World StepLimiter - 940 0.374 -10 4.98 5.66e-14 0 1 920 World StepLimiter - 941 0.442 -11 4.98 5.67e-14 0 1 921 World StepLimiter - 942 0.511 -12 4.99 5.68e-14 0 1 922 World StepLimiter - 943 0.579 -13 4.99 5.69e-14 0 1 923 World StepLimiter - 944 0.647 -14 5 5.7e-14 0 1 924 World StepLimiter - 945 0.715 -15 5.01 5.71e-14 0 1 925 World StepLimiter - 946 0.782 -16 5.01 5.72e-14 0 1 926 World StepLimiter - 947 0.85 -17 5.02 5.73e-14 0 1 927 World StepLimiter - 948 0.918 -18 5.02 5.74e-14 0 1 928 World StepLimiter - 949 0.986 -19 5.03 5.76e-14 0 1 929 World StepLimiter - 950 1.05 -20 5.03 5.77e-14 0 1 930 World StepLimiter - 951 1.12 -21 5.04 5.78e-14 0 1 931 World StepLimiter - 952 1.19 -22 5.04 5.79e-14 0 1 932 World StepLimiter - 953 1.26 -23 5.05 5.8e-14 0 1 933 World StepLimiter - 954 1.32 -24 5.05 5.81e-14 0 1 934 World StepLimiter - 955 1.39 -25 5.06 5.82e-14 0 1 935 World StepLimiter - 956 1.46 -26 5.06 5.83e-14 0 1 936 World StepLimiter - 957 1.53 -27 5.07 5.84e-14 0 1 937 World StepLimiter - 958 1.59 -28 5.07 5.85e-14 0 1 938 World StepLimiter - 959 1.66 -29 5.08 5.86e-14 0 1 939 World StepLimiter - 960 1.73 -30 5.08 5.87e-14 0 1 940 World StepLimiter - 961 1.79 -31 5.09 5.88e-14 0 1 941 World StepLimiter - 962 1.86 -31.9 5.1 5.89e-14 0 1 942 World StepLimiter - 963 1.93 -32.9 5.1 5.9e-14 0 1 943 World StepLimiter - 964 1.99 -33.9 5.11 5.91e-14 0 1 944 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.188958621767neV MomDir: (0.066729769835732,-0.99775734243485,0.0052367389685322) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 965 2.06 -34.9 5.11 5.92e-14 0 0.998 945 Guide Transportation *** StepTooSmall *** - 966 2.06 -34.9 5.11 5.92e-14 0 0 945 World Transportation - 967 2.01 -33.9 5.12 5.91e-14 0 1 946 World StepLimiter - 968 1.96 -32.9 5.12 5.9e-14 0 1 947 World StepLimiter - 969 1.91 -31.9 5.13 5.89e-14 0 1 948 World StepLimiter - 970 1.86 -30.9 5.13 5.88e-14 0 1 949 World StepLimiter - 971 1.81 -29.9 5.14 5.87e-14 0 1 950 World StepLimiter - 972 1.75 -28.9 5.14 5.86e-14 0 1 951 World StepLimiter - 973 1.7 -27.9 5.15 5.85e-14 0 1 952 World StepLimiter - 974 1.65 -26.9 5.15 5.84e-14 0 1 953 World StepLimiter - 975 1.6 -26 5.16 5.83e-14 0 1 954 World StepLimiter - 976 1.55 -25 5.16 5.82e-14 0 1 955 World StepLimiter - 977 1.5 -24 5.17 5.81e-14 0 1 956 World StepLimiter - 978 1.45 -23 5.17 5.8e-14 0 1 957 World StepLimiter - 979 1.39 -22 5.18 5.79e-14 0 1 958 World StepLimiter - 980 1.34 -21 5.18 5.78e-14 0 1 959 World StepLimiter - 981 1.29 -20 5.19 5.77e-14 0 1 960 World StepLimiter - 982 1.24 -19 5.2 5.76e-14 0 1 961 World StepLimiter - 983 1.19 -18 5.2 5.74e-14 0 1 962 World StepLimiter - 984 1.14 -17 5.21 5.73e-14 0 1 963 World StepLimiter - 985 1.08 -16 5.21 5.72e-14 0 1 964 World StepLimiter - 986 1.03 -15 5.22 5.71e-14 0 1 965 World StepLimiter - 987 0.979 -14 5.22 5.7e-14 0 1 966 World StepLimiter - 988 0.927 -13 5.23 5.69e-14 0 1 967 World StepLimiter - 989 0.875 -12 5.23 5.68e-14 0 1 968 World StepLimiter - 990 0.823 -11 5.24 5.67e-14 0 1 969 World StepLimiter - 991 0.771 -9.97 5.24 5.66e-14 0 1 970 World StepLimiter - 992 0.719 -8.97 5.25 5.65e-14 0 1 971 World StepLimiter - 993 0.667 -7.98 5.25 5.64e-14 0 1 972 World StepLimiter - 994 0.614 -6.98 5.26 5.63e-14 0 1 973 World StepLimiter - 995 0.562 -5.98 5.26 5.62e-14 0 1 974 World StepLimiter - 996 0.51 -4.98 5.27 5.61e-14 0 1 975 World StepLimiter - 997 0.457 -3.98 5.28 5.6e-14 0 1 976 World StepLimiter - 998 0.405 -2.98 5.28 5.59e-14 0 1 977 World StepLimiter - 999 0.352 -1.98 5.29 5.58e-14 0 1 978 World StepLimiter - 1000 0.3 -0.985 5.29 5.57e-14 0 1 979 World StepLimiter - 1001 0.247 0.0132 5.3 5.56e-14 0 1 980 World StepLimiter - 1002 0.194 1.01 5.3 5.55e-14 0 1 981 World StepLimiter - 1003 0.142 2.01 5.31 5.54e-14 0 1 982 World StepLimiter - 1004 0.0889 3.01 5.31 5.53e-14 0 1 983 World StepLimiter - 1005 0.0361 4.01 5.32 5.52e-14 0 1 984 World StepLimiter - 1006 -0.0168 5.01 5.32 5.51e-14 0 1 985 World StepLimiter - 1007 -0.0697 6 5.33 5.5e-14 0 1 986 World StepLimiter - 1008 -0.123 7 5.34 5.49e-14 0 1 987 World StepLimiter - 1009 -0.176 8 5.34 5.48e-14 0 1 988 World StepLimiter - 1010 -0.229 9 5.35 5.47e-14 0 1 989 World StepLimiter - 1011 -0.282 10 5.35 5.46e-14 0 1 990 World StepLimiter - 1012 -0.335 11 5.36 5.45e-14 0 1 991 World StepLimiter - 1013 -0.388 12 5.36 5.44e-14 0 1 992 World StepLimiter - 1014 -0.441 13 5.37 5.43e-14 0 1 993 World StepLimiter - 1015 -0.495 14 5.37 5.42e-14 0 1 994 World StepLimiter - 1016 -0.548 15 5.38 5.41e-14 0 1 995 World StepLimiter - 1017 -0.602 16 5.38 5.4e-14 0 1 996 World StepLimiter - 1018 -0.655 17 5.39 5.39e-14 0 1 997 World StepLimiter - 1019 -0.708 18 5.4 5.38e-14 0 1 998 World StepLimiter - 1020 -0.762 19 5.4 5.37e-14 0 1 999 World StepLimiter - 1021 -0.816 20 5.41 5.36e-14 0 1 1e+03 World StepLimiter - 1022 -0.869 21 5.41 5.35e-14 0 1 1e+03 World StepLimiter - 1023 -0.923 22 5.42 5.34e-14 0 1 1e+03 World StepLimiter - 1024 -0.977 23 5.42 5.32e-14 0 1 1e+03 World StepLimiter - 1025 -1.03 24 5.43 5.31e-14 0 1 1e+03 World StepLimiter - 1026 -1.08 25 5.43 5.3e-14 0 1 1e+03 World StepLimiter - 1027 -1.14 26 5.44 5.29e-14 0 1 1.01e+03 World StepLimiter - 1028 -1.19 27 5.44 5.28e-14 0 1 1.01e+03 World StepLimiter - 1029 -1.25 28 5.45 5.27e-14 0 1 1.01e+03 World StepLimiter - 1030 -1.3 29 5.46 5.26e-14 0 1 1.01e+03 World StepLimiter - 1031 -1.35 30 5.46 5.25e-14 0 1 1.01e+03 World StepLimiter - 1032 -1.41 31 5.47 5.24e-14 0 1 1.01e+03 World StepLimiter - 1033 -1.46 32 5.47 5.23e-14 0 1 1.01e+03 World StepLimiter - 1034 -1.52 33 5.48 5.22e-14 0 1 1.01e+03 World StepLimiter - 1035 -1.57 34 5.48 5.21e-14 0 1 1.01e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.020248986726neV MomDir: (-0.054426070781627,0.99850217839851,0.0055859245169285) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1036 -1.63 35 5.49 5.2e-14 0 1 1.01e+03 Guide Transportation *** StepTooSmall *** - 1037 -1.63 35 5.49 5.2e-14 0 0 1.01e+03 World Transportation - 1038 -1.59 34 5.5 5.21e-14 0 1 1.02e+03 World StepLimiter - 1039 -1.55 33 5.5 5.22e-14 0 1 1.02e+03 World StepLimiter - 1040 -1.51 32 5.51 5.23e-14 0 1 1.02e+03 World StepLimiter - 1041 -1.47 31 5.51 5.24e-14 0 1 1.02e+03 World StepLimiter - 1042 -1.43 30 5.52 5.25e-14 0 1 1.02e+03 World StepLimiter - 1043 -1.4 29 5.52 5.26e-14 0 1 1.02e+03 World StepLimiter - 1044 -1.36 28 5.53 5.27e-14 0 1 1.02e+03 World StepLimiter - 1045 -1.32 27 5.53 5.28e-14 0 1 1.02e+03 World StepLimiter - 1046 -1.28 26 5.54 5.29e-14 0 1 1.02e+03 World StepLimiter - 1047 -1.24 25 5.55 5.3e-14 0 1 1.02e+03 World StepLimiter - 1048 -1.2 24 5.55 5.31e-14 0 1 1.03e+03 World StepLimiter - 1049 -1.17 23 5.56 5.32e-14 0 1 1.03e+03 World StepLimiter - 1050 -1.13 22 5.56 5.34e-14 0 1 1.03e+03 World StepLimiter - 1051 -1.09 21 5.57 5.35e-14 0 1 1.03e+03 World StepLimiter - 1052 -1.05 20 5.57 5.36e-14 0 1 1.03e+03 World StepLimiter - 1053 -1.02 19 5.58 5.37e-14 0 1 1.03e+03 World StepLimiter - 1054 -0.977 18 5.58 5.38e-14 0 1 1.03e+03 World StepLimiter - 1055 -0.939 17 5.59 5.39e-14 0 1 1.03e+03 World StepLimiter - 1056 -0.902 16 5.59 5.4e-14 0 1 1.03e+03 World StepLimiter - 1057 -0.864 15 5.6 5.41e-14 0 1 1.03e+03 World StepLimiter - 1058 -0.826 14 5.61 5.42e-14 0 1 1.04e+03 World StepLimiter - 1059 -0.788 13 5.61 5.43e-14 0 1 1.04e+03 World StepLimiter - 1060 -0.751 12 5.62 5.44e-14 0 1 1.04e+03 World StepLimiter - 1061 -0.713 11 5.62 5.45e-14 0 1 1.04e+03 World StepLimiter - 1062 -0.675 9.98 5.63 5.46e-14 0 1 1.04e+03 World StepLimiter - 1063 -0.638 8.98 5.63 5.47e-14 0 1 1.04e+03 World StepLimiter - 1064 -0.6 7.98 5.64 5.48e-14 0 1 1.04e+03 World StepLimiter - 1065 -0.563 6.98 5.64 5.49e-14 0 1 1.04e+03 World StepLimiter - 1066 -0.525 5.98 5.65 5.5e-14 0 1 1.04e+03 World StepLimiter - 1067 -0.488 4.98 5.65 5.51e-14 0 1 1.04e+03 World StepLimiter - 1068 -0.451 3.98 5.66 5.52e-14 0 1 1.05e+03 World StepLimiter - 1069 -0.413 2.99 5.67 5.53e-14 0 1 1.05e+03 World StepLimiter - 1070 -0.376 1.99 5.67 5.54e-14 0 1 1.05e+03 World StepLimiter - 1071 -0.339 0.987 5.68 5.55e-14 0 1 1.05e+03 World StepLimiter - 1072 -0.301 -0.0122 5.68 5.56e-14 0 1 1.05e+03 World StepLimiter - 1073 -0.264 -1.01 5.69 5.57e-14 0 1 1.05e+03 World StepLimiter - 1074 -0.227 -2.01 5.69 5.58e-14 0 1 1.05e+03 World StepLimiter - 1075 -0.19 -3.01 5.7 5.59e-14 0 1 1.05e+03 World StepLimiter - 1076 -0.153 -4.01 5.7 5.6e-14 0 1 1.05e+03 World StepLimiter - 1077 -0.116 -5.01 5.71 5.61e-14 0 1 1.05e+03 World StepLimiter - 1078 -0.0787 -6.01 5.71 5.62e-14 0 1 1.06e+03 World StepLimiter - 1079 -0.0416 -7.01 5.72 5.63e-14 0 1 1.06e+03 World StepLimiter - 1080 -0.00467 -8.01 5.72 5.64e-14 0 1 1.06e+03 World StepLimiter - 1081 0.0323 -9.01 5.73 5.65e-14 0 1 1.06e+03 World StepLimiter - 1082 0.0692 -10 5.74 5.66e-14 0 1 1.06e+03 World StepLimiter - 1083 0.106 -11 5.74 5.67e-14 0 1 1.06e+03 World StepLimiter - 1084 0.143 -12 5.75 5.68e-14 0 1 1.06e+03 World StepLimiter - 1085 0.18 -13 5.75 5.69e-14 0 1 1.06e+03 World StepLimiter - 1086 0.216 -14 5.76 5.7e-14 0 1 1.06e+03 World StepLimiter - 1087 0.253 -15 5.76 5.71e-14 0 1 1.06e+03 World StepLimiter - 1088 0.29 -16 5.77 5.72e-14 0 1 1.07e+03 World StepLimiter - 1089 0.327 -17 5.77 5.73e-14 0 1 1.07e+03 World StepLimiter - 1090 0.363 -18 5.78 5.75e-14 0 1 1.07e+03 World StepLimiter - 1091 0.4 -19 5.78 5.76e-14 0 1 1.07e+03 World StepLimiter - 1092 0.436 -20 5.79 5.77e-14 0 1 1.07e+03 World StepLimiter - 1093 0.473 -21 5.79 5.78e-14 0 1 1.07e+03 World StepLimiter - 1094 0.509 -22 5.8 5.79e-14 0 1 1.07e+03 World StepLimiter - 1095 0.546 -23 5.8 5.8e-14 0 1 1.07e+03 World StepLimiter - 1096 0.582 -24 5.81 5.81e-14 0 1 1.07e+03 World StepLimiter - 1097 0.619 -25 5.82 5.82e-14 0 1 1.07e+03 World StepLimiter - 1098 0.655 -26 5.82 5.83e-14 0 1 1.08e+03 World StepLimiter - 1099 0.692 -27 5.83 5.84e-14 0 1 1.08e+03 World StepLimiter - 1100 0.728 -28 5.83 5.85e-14 0 1 1.08e+03 World StepLimiter - 1101 0.764 -29 5.84 5.86e-14 0 1 1.08e+03 World StepLimiter - 1102 0.8 -30 5.84 5.87e-14 0 1 1.08e+03 World StepLimiter - 1103 0.837 -31 5.85 5.88e-14 0 1 1.08e+03 World StepLimiter - 1104 0.873 -32 5.85 5.89e-14 0 1 1.08e+03 World StepLimiter - 1105 0.909 -33 5.86 5.9e-14 0 1 1.08e+03 World StepLimiter - 1106 0.945 -34 5.86 5.91e-14 0 1 1.08e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.193775254671neV MomDir: (0.036082656764601,-0.99933508928549,0.0052365259059065) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1107 0.981 -35 5.87 5.92e-14 0 0.998 1.08e+03 Guide Transportation *** StepTooSmall *** - 1108 0.981 -35 5.87 5.92e-14 0 0 1.08e+03 World Transportation - 1109 0.961 -34 5.87 5.91e-14 0 1 1.09e+03 World StepLimiter - 1110 0.941 -33 5.88 5.9e-14 0 1 1.09e+03 World StepLimiter - 1111 0.921 -32 5.88 5.89e-14 0 1 1.09e+03 World StepLimiter - 1112 0.901 -31 5.89 5.88e-14 0 1 1.09e+03 World StepLimiter - 1113 0.881 -30 5.89 5.87e-14 0 1 1.09e+03 World StepLimiter - 1114 0.861 -29 5.9 5.86e-14 0 1 1.09e+03 World StepLimiter - 1115 0.841 -28 5.9 5.85e-14 0 1 1.09e+03 World StepLimiter - 1116 0.821 -27 5.91 5.84e-14 0 1 1.09e+03 World StepLimiter - 1117 0.801 -26 5.92 5.83e-14 0 1 1.09e+03 World StepLimiter - 1118 0.78 -25 5.92 5.82e-14 0 1 1.09e+03 World StepLimiter - 1119 0.76 -24 5.93 5.81e-14 0 1 1.1e+03 World StepLimiter - 1120 0.74 -23 5.93 5.8e-14 0 1 1.1e+03 World StepLimiter - 1121 0.72 -22 5.94 5.79e-14 0 1 1.1e+03 World StepLimiter - 1122 0.7 -21 5.94 5.78e-14 0 1 1.1e+03 World StepLimiter - 1123 0.679 -20 5.95 5.77e-14 0 1 1.1e+03 World StepLimiter - 1124 0.659 -19 5.95 5.76e-14 0 1 1.1e+03 World StepLimiter - 1125 0.639 -18 5.96 5.75e-14 0 1 1.1e+03 World StepLimiter - 1126 0.619 -17 5.96 5.73e-14 0 1 1.1e+03 World StepLimiter - 1127 0.598 -16 5.97 5.72e-14 0 1 1.1e+03 World StepLimiter - 1128 0.578 -15 5.97 5.71e-14 0 1 1.1e+03 World StepLimiter - 1129 0.558 -14 5.98 5.7e-14 0 1 1.11e+03 World StepLimiter - 1130 0.537 -13 5.98 5.69e-14 0 1 1.11e+03 World StepLimiter - 1131 0.517 -12 5.99 5.68e-14 0 1 1.11e+03 World StepLimiter - 1132 0.497 -11 5.99 5.67e-14 0 1 1.11e+03 World StepLimiter - 1133 0.476 -9.99 6 5.66e-14 0 1 1.11e+03 World StepLimiter - 1134 0.456 -8.99 6.01 5.65e-14 0 1 1.11e+03 World StepLimiter - 1135 0.435 -7.99 6.01 5.64e-14 0 1 1.11e+03 World StepLimiter - 1136 0.415 -6.99 6.02 5.63e-14 0 1 1.11e+03 World StepLimiter - 1137 0.394 -5.99 6.02 5.62e-14 0 1 1.11e+03 World StepLimiter - 1138 0.374 -4.99 6.03 5.61e-14 0 1 1.11e+03 World StepLimiter - 1139 0.353 -3.99 6.03 5.6e-14 0 1 1.12e+03 World StepLimiter - 1140 0.333 -2.99 6.04 5.59e-14 0 1 1.12e+03 World StepLimiter - 1141 0.312 -1.99 6.04 5.58e-14 0 1 1.12e+03 World StepLimiter - 1142 0.292 -0.994 6.05 5.57e-14 0 1 1.12e+03 World StepLimiter - 1143 0.271 0.00605 6.05 5.56e-14 0 1 1.12e+03 World StepLimiter - 1144 0.25 1.01 6.06 5.55e-14 0 1 1.12e+03 World StepLimiter - 1145 0.23 2.01 6.06 5.54e-14 0 1 1.12e+03 World StepLimiter - 1146 0.209 3.01 6.07 5.53e-14 0 1 1.12e+03 World StepLimiter - 1147 0.188 4.01 6.08 5.52e-14 0 1 1.12e+03 World StepLimiter - 1148 0.168 5 6.08 5.51e-14 0 1 1.12e+03 World StepLimiter - 1149 0.147 6 6.09 5.5e-14 0 1 1.13e+03 World StepLimiter - 1150 0.126 7 6.09 5.49e-14 0 1 1.13e+03 World StepLimiter - 1151 0.105 8 6.1 5.48e-14 0 1 1.13e+03 World StepLimiter - 1152 0.0846 9 6.1 5.47e-14 0 1 1.13e+03 World StepLimiter - 1153 0.0638 10 6.11 5.46e-14 0 1 1.13e+03 World StepLimiter - 1154 0.043 11 6.11 5.45e-14 0 1 1.13e+03 World StepLimiter - 1155 0.0221 12 6.12 5.44e-14 0 1 1.13e+03 World StepLimiter - 1156 0.00128 13 6.12 5.43e-14 0 1 1.13e+03 World StepLimiter - 1157 -0.0196 14 6.13 5.42e-14 0 1 1.13e+03 World StepLimiter - 1158 -0.0405 15 6.14 5.41e-14 0 1 1.13e+03 World StepLimiter - 1159 -0.0614 16 6.14 5.4e-14 0 1 1.14e+03 World StepLimiter - 1160 -0.0823 17 6.15 5.39e-14 0 1 1.14e+03 World StepLimiter - 1161 -0.103 18 6.15 5.38e-14 0 1 1.14e+03 World StepLimiter - 1162 -0.124 19 6.16 5.37e-14 0 1 1.14e+03 World StepLimiter - 1163 -0.145 20 6.16 5.36e-14 0 1 1.14e+03 World StepLimiter - 1164 -0.166 21 6.17 5.35e-14 0 1 1.14e+03 World StepLimiter - 1165 -0.187 22 6.17 5.33e-14 0 1 1.14e+03 World StepLimiter - 1166 -0.208 23 6.18 5.32e-14 0 1 1.14e+03 World StepLimiter - 1167 -0.229 24 6.19 5.31e-14 0 1 1.14e+03 World StepLimiter - 1168 -0.251 25 6.19 5.3e-14 0 1 1.14e+03 World StepLimiter - 1169 -0.272 26 6.2 5.29e-14 0 1 1.15e+03 World StepLimiter - 1170 -0.293 27 6.2 5.28e-14 0 1 1.15e+03 World StepLimiter - 1171 -0.314 28 6.21 5.27e-14 0 1 1.15e+03 World StepLimiter - 1172 -0.335 29 6.21 5.26e-14 0 1 1.15e+03 World StepLimiter - 1173 -0.356 30 6.22 5.25e-14 0 1 1.15e+03 World StepLimiter - 1174 -0.378 31 6.22 5.24e-14 0 1 1.15e+03 World StepLimiter - 1175 -0.399 32 6.23 5.23e-14 0 1 1.15e+03 World StepLimiter - 1176 -0.42 33 6.24 5.22e-14 0 1 1.15e+03 World StepLimiter - 1177 -0.441 34 6.24 5.21e-14 0 1 1.15e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.01668649408neV MomDir: (-0.021314186773858,0.99975722090539,0.0055861157966471) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1178 -0.463 35 6.25 5.2e-14 0 0.999 1.15e+03 Guide Transportation *** StepTooSmall *** - 1179 -0.463 35 6.25 5.2e-14 0 0 1.15e+03 World Transportation - 1180 -0.458 34 6.25 5.21e-14 0 1 1.16e+03 World StepLimiter - 1181 -0.452 33 6.26 5.22e-14 0 1 1.16e+03 World StepLimiter - 1182 -0.447 32 6.26 5.23e-14 0 1 1.16e+03 World StepLimiter - 1183 -0.442 31 6.27 5.24e-14 0 1 1.16e+03 World StepLimiter - 1184 -0.437 30 6.27 5.25e-14 0 1 1.16e+03 World StepLimiter - 1185 -0.432 29 6.28 5.26e-14 0 1 1.16e+03 World StepLimiter - 1186 -0.427 28 6.29 5.27e-14 0 1 1.16e+03 World StepLimiter - 1187 -0.422 27 6.29 5.28e-14 0 1 1.16e+03 World StepLimiter - 1188 -0.417 26 6.3 5.29e-14 0 1 1.16e+03 World StepLimiter - 1189 -0.412 25 6.3 5.3e-14 0 1 1.16e+03 World StepLimiter - 1190 -0.407 24 6.31 5.31e-14 0 1 1.17e+03 World StepLimiter - 1191 -0.402 23 6.31 5.32e-14 0 1 1.17e+03 World StepLimiter - 1192 -0.396 22 6.32 5.33e-14 0 1 1.17e+03 World StepLimiter - 1193 -0.391 21 6.32 5.35e-14 0 1 1.17e+03 World StepLimiter - 1194 -0.386 20 6.33 5.36e-14 0 1 1.17e+03 World StepLimiter - 1195 -0.381 19 6.33 5.37e-14 0 1 1.17e+03 World StepLimiter - 1196 -0.376 18 6.34 5.38e-14 0 1 1.17e+03 World StepLimiter - 1197 -0.371 17 6.35 5.39e-14 0 1 1.17e+03 World StepLimiter - 1198 -0.366 16 6.35 5.4e-14 0 1 1.17e+03 World StepLimiter - 1199 -0.361 15 6.36 5.41e-14 0 1 1.17e+03 World StepLimiter - 1200 -0.356 14 6.36 5.42e-14 0 1 1.18e+03 World StepLimiter - 1201 -0.351 13 6.37 5.43e-14 0 1 1.18e+03 World StepLimiter - 1202 -0.346 12 6.37 5.44e-14 0 1 1.18e+03 World StepLimiter - 1203 -0.341 11 6.38 5.45e-14 0 1 1.18e+03 World StepLimiter - 1204 -0.336 10 6.38 5.46e-14 0 1 1.18e+03 World StepLimiter - 1205 -0.331 9 6.39 5.47e-14 0 1 1.18e+03 World StepLimiter - 1206 -0.326 8 6.4 5.48e-14 0 1 1.18e+03 World StepLimiter - 1207 -0.321 7 6.4 5.49e-14 0 1 1.18e+03 World StepLimiter - 1208 -0.316 6 6.41 5.5e-14 0 1 1.18e+03 World StepLimiter - 1209 -0.311 5 6.41 5.51e-14 0 1 1.18e+03 World StepLimiter - 1210 -0.306 4 6.42 5.52e-14 0 1 1.19e+03 World StepLimiter - 1211 -0.301 3 6.42 5.53e-14 0 1 1.19e+03 World StepLimiter - 1212 -0.296 2 6.43 5.54e-14 0 1 1.19e+03 World StepLimiter - 1213 -0.291 0.998 6.43 5.55e-14 0 1 1.19e+03 World StepLimiter - 1214 -0.286 -0.00209 6.44 5.56e-14 0 1 1.19e+03 World StepLimiter - 1215 -0.281 -1 6.44 5.57e-14 0 1 1.19e+03 World StepLimiter - 1216 -0.277 -2 6.45 5.58e-14 0 1 1.19e+03 World StepLimiter - 1217 -0.272 -3 6.45 5.59e-14 0 1 1.19e+03 World StepLimiter - 1218 -0.267 -4 6.46 5.6e-14 0 1 1.19e+03 World StepLimiter - 1219 -0.262 -5 6.47 5.61e-14 0 1 1.19e+03 World StepLimiter - 1220 -0.257 -6 6.47 5.62e-14 0 1 1.2e+03 World StepLimiter - 1221 -0.252 -7 6.48 5.63e-14 0 1 1.2e+03 World StepLimiter - 1222 -0.247 -8 6.48 5.64e-14 0 1 1.2e+03 World StepLimiter - 1223 -0.242 -9 6.49 5.65e-14 0 1 1.2e+03 World StepLimiter - 1224 -0.237 -10 6.49 5.66e-14 0 1 1.2e+03 World StepLimiter - 1225 -0.232 -11 6.5 5.67e-14 0 1 1.2e+03 World StepLimiter - 1226 -0.227 -12 6.5 5.68e-14 0 1 1.2e+03 World StepLimiter - 1227 -0.222 -13 6.51 5.69e-14 0 1 1.2e+03 World StepLimiter - 1228 -0.218 -14 6.51 5.7e-14 0 1 1.2e+03 World StepLimiter - 1229 -0.213 -15 6.52 5.71e-14 0 1 1.2e+03 World StepLimiter - 1230 -0.208 -16 6.52 5.72e-14 0 1 1.21e+03 World StepLimiter - 1231 -0.203 -17 6.53 5.73e-14 0 1 1.21e+03 World StepLimiter - 1232 -0.198 -18 6.53 5.75e-14 0 1 1.21e+03 World StepLimiter - 1233 -0.193 -19 6.54 5.76e-14 0 1 1.21e+03 World StepLimiter - 1234 -0.188 -20 6.55 5.77e-14 0 1 1.21e+03 World StepLimiter - 1235 -0.183 -21 6.55 5.78e-14 0 1 1.21e+03 World StepLimiter - 1236 -0.179 -22 6.56 5.79e-14 0 1 1.21e+03 World StepLimiter - 1237 -0.174 -23 6.56 5.8e-14 0 1 1.21e+03 World StepLimiter - 1238 -0.169 -24 6.57 5.81e-14 0 1 1.21e+03 World StepLimiter - 1239 -0.164 -25 6.57 5.82e-14 0 1 1.21e+03 World StepLimiter - 1240 -0.159 -26 6.58 5.83e-14 0 1 1.22e+03 World StepLimiter - 1241 -0.154 -27 6.58 5.84e-14 0 1 1.22e+03 World StepLimiter - 1242 -0.149 -28 6.59 5.85e-14 0 1 1.22e+03 World StepLimiter - 1243 -0.145 -29 6.59 5.86e-14 0 1 1.22e+03 World StepLimiter - 1244 -0.14 -30 6.6 5.87e-14 0 1 1.22e+03 World StepLimiter - 1245 -0.135 -31 6.6 5.88e-14 0 1 1.22e+03 World StepLimiter - 1246 -0.13 -32 6.61 5.89e-14 0 1 1.22e+03 World StepLimiter - 1247 -0.125 -33 6.61 5.9e-14 0 1 1.22e+03 World StepLimiter - 1248 -0.121 -34 6.62 5.91e-14 0 1 1.22e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.195166239641neV MomDir: (0.0048002320238681,-0.99997476828833,0.0052364643808524) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1249 -0.116 -35 6.62 5.92e-14 0 0.999 1.22e+03 Guide Transportation *** StepTooSmall *** - 1250 -0.116 -35 6.62 5.92e-14 0 0 1.22e+03 World Transportation - 1251 -0.104 -34 6.63 5.91e-14 0 1 1.23e+03 World StepLimiter - 1252 -0.0929 -33 6.64 5.9e-14 0 1 1.23e+03 World StepLimiter - 1253 -0.0815 -32 6.64 5.89e-14 0 1 1.23e+03 World StepLimiter - 1254 -0.07 -31 6.65 5.88e-14 0 1 1.23e+03 World StepLimiter - 1255 -0.0586 -30 6.65 5.87e-14 0 1 1.23e+03 World StepLimiter - 1256 -0.0471 -29 6.66 5.86e-14 0 1 1.23e+03 World StepLimiter - 1257 -0.0356 -28 6.66 5.85e-14 0 1 1.23e+03 World StepLimiter - 1258 -0.0241 -27 6.67 5.84e-14 0 1 1.23e+03 World StepLimiter - 1259 -0.0126 -26 6.67 5.83e-14 0 1 1.23e+03 World StepLimiter - 1260 -0.00112 -25 6.68 5.82e-14 0 1 1.23e+03 World StepLimiter - 1261 0.0104 -24 6.68 5.81e-14 0 1 1.24e+03 World StepLimiter - 1262 0.0219 -23 6.69 5.8e-14 0 1 1.24e+03 World StepLimiter - 1263 0.0335 -22 6.69 5.79e-14 0 1 1.24e+03 World StepLimiter - 1264 0.045 -21 6.7 5.78e-14 0 1 1.24e+03 World StepLimiter - 1265 0.0566 -20 6.7 5.77e-14 0 1 1.24e+03 World StepLimiter - 1266 0.0682 -19 6.71 5.76e-14 0 1 1.24e+03 World StepLimiter - 1267 0.0797 -18 6.71 5.75e-14 0 1 1.24e+03 World StepLimiter - 1268 0.0913 -17 6.72 5.73e-14 0 1 1.24e+03 World StepLimiter - 1269 0.103 -16 6.72 5.72e-14 0 1 1.24e+03 World StepLimiter - 1270 0.115 -15 6.73 5.71e-14 0 1 1.24e+03 World StepLimiter - 1271 0.126 -14 6.74 5.7e-14 0 1 1.25e+03 World StepLimiter - 1272 0.138 -13 6.74 5.69e-14 0 1 1.25e+03 World StepLimiter - 1273 0.149 -12 6.75 5.68e-14 0 1 1.25e+03 World StepLimiter - 1274 0.161 -11 6.75 5.67e-14 0 1 1.25e+03 World StepLimiter - 1275 0.173 -10 6.76 5.66e-14 0 1 1.25e+03 World StepLimiter - 1276 0.184 -9 6.76 5.65e-14 0 1 1.25e+03 World StepLimiter - 1277 0.196 -8 6.77 5.64e-14 0 1 1.25e+03 World StepLimiter - 1278 0.208 -7 6.77 5.63e-14 0 1 1.25e+03 World StepLimiter - 1279 0.22 -6 6.78 5.62e-14 0 1 1.25e+03 World StepLimiter - 1280 0.231 -5 6.78 5.61e-14 0 1 1.25e+03 World StepLimiter - 1281 0.243 -4 6.79 5.6e-14 0 1 1.26e+03 World StepLimiter - 1282 0.255 -3 6.79 5.59e-14 0 1 1.26e+03 World StepLimiter - 1283 0.266 -2 6.8 5.58e-14 0 1 1.26e+03 World StepLimiter - 1284 0.278 -1 6.81 5.57e-14 0 1 1.26e+03 World StepLimiter - 1285 0.29 -0.00266 6.81 5.56e-14 0 1 1.26e+03 World StepLimiter - 1286 0.302 0.997 6.82 5.55e-14 0 1 1.26e+03 World StepLimiter - 1287 0.314 2 6.82 5.54e-14 0 1 1.26e+03 World StepLimiter - 1288 0.325 3 6.83 5.53e-14 0 1 1.26e+03 World StepLimiter - 1289 0.337 4 6.83 5.52e-14 0 1 1.26e+03 World StepLimiter - 1290 0.349 5 6.84 5.51e-14 0 1 1.26e+03 World StepLimiter - 1291 0.361 6 6.84 5.5e-14 0 1 1.27e+03 World StepLimiter - 1292 0.373 7 6.85 5.49e-14 0 1 1.27e+03 World StepLimiter - 1293 0.385 8 6.85 5.48e-14 0 1 1.27e+03 World StepLimiter - 1294 0.396 9 6.86 5.47e-14 0 1 1.27e+03 World StepLimiter - 1295 0.408 10 6.87 5.46e-14 0 1 1.27e+03 World StepLimiter - 1296 0.42 11 6.87 5.45e-14 0 1 1.27e+03 World StepLimiter - 1297 0.432 12 6.88 5.44e-14 0 1 1.27e+03 World StepLimiter - 1298 0.444 13 6.88 5.43e-14 0 1 1.27e+03 World StepLimiter - 1299 0.456 14 6.89 5.42e-14 0 1 1.27e+03 World StepLimiter - 1300 0.468 15 6.89 5.41e-14 0 1 1.27e+03 World StepLimiter - 1301 0.48 16 6.9 5.4e-14 0 1 1.28e+03 World StepLimiter - 1302 0.492 17 6.9 5.39e-14 0 1 1.28e+03 World StepLimiter - 1303 0.504 18 6.91 5.38e-14 0 1 1.28e+03 World StepLimiter - 1304 0.516 19 6.91 5.37e-14 0 1 1.28e+03 World StepLimiter - 1305 0.528 20 6.92 5.36e-14 0 1 1.28e+03 World StepLimiter - 1306 0.54 21 6.93 5.35e-14 0 1 1.28e+03 World StepLimiter - 1307 0.552 22 6.93 5.34e-14 0 1 1.28e+03 World StepLimiter - 1308 0.564 23 6.94 5.32e-14 0 1 1.28e+03 World StepLimiter - 1309 0.576 24 6.94 5.31e-14 0 1 1.28e+03 World StepLimiter - 1310 0.588 25 6.95 5.3e-14 0 1 1.28e+03 World StepLimiter - 1311 0.6 26 6.95 5.29e-14 0 1 1.29e+03 World StepLimiter - 1312 0.612 27 6.96 5.28e-14 0 1 1.29e+03 World StepLimiter - 1313 0.624 28 6.96 5.27e-14 0 1 1.29e+03 World StepLimiter - 1314 0.636 29 6.97 5.26e-14 0 1 1.29e+03 World StepLimiter - 1315 0.648 30 6.98 5.25e-14 0 1 1.29e+03 World StepLimiter - 1316 0.661 31 6.98 5.24e-14 0 1 1.29e+03 World StepLimiter - 1317 0.673 32 6.99 5.23e-14 0 1 1.29e+03 World StepLimiter - 1318 0.685 33 6.99 5.22e-14 0 1 1.29e+03 World StepLimiter - 1319 0.697 34 7 5.21e-14 0 1 1.29e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.017109649702neV MomDir: (0.012177443569161,0.99991024868849,0.0055860930752663) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1320 0.709 35 7 5.2e-14 0 0.999 1.29e+03 Guide Transportation *** StepTooSmall *** - 1321 0.709 35 7 5.2e-14 0 0 1.29e+03 World Transportation - 1322 0.681 34 7.01 5.21e-14 0 1 1.3e+03 World StepLimiter - 1323 0.652 33 7.01 5.22e-14 0 1 1.3e+03 World StepLimiter - 1324 0.624 32 7.02 5.23e-14 0 1 1.3e+03 World StepLimiter - 1325 0.596 31 7.03 5.24e-14 0 1 1.3e+03 World StepLimiter - 1326 0.568 30 7.03 5.25e-14 0 1 1.3e+03 World StepLimiter - 1327 0.54 29 7.04 5.26e-14 0 1 1.3e+03 World StepLimiter - 1328 0.511 28 7.04 5.27e-14 0 1 1.3e+03 World StepLimiter - 1329 0.483 27 7.05 5.28e-14 0 1 1.3e+03 World StepLimiter - 1330 0.455 26 7.05 5.29e-14 0 1 1.3e+03 World StepLimiter - 1331 0.427 25 7.06 5.3e-14 0 1 1.3e+03 World StepLimiter - 1332 0.399 24 7.06 5.31e-14 0 1 1.31e+03 World StepLimiter - 1333 0.371 23 7.07 5.32e-14 0 1 1.31e+03 World StepLimiter - 1334 0.343 22 7.08 5.33e-14 0 1 1.31e+03 World StepLimiter - 1335 0.315 21 7.08 5.35e-14 0 1 1.31e+03 World StepLimiter - 1336 0.287 20 7.09 5.36e-14 0 1 1.31e+03 World StepLimiter - 1337 0.259 19 7.09 5.37e-14 0 1 1.31e+03 World StepLimiter - 1338 0.231 18 7.1 5.38e-14 0 1 1.31e+03 World StepLimiter - 1339 0.203 17 7.1 5.39e-14 0 1 1.31e+03 World StepLimiter - 1340 0.176 16 7.11 5.4e-14 0 1 1.31e+03 World StepLimiter - 1341 0.148 15 7.11 5.41e-14 0 1 1.31e+03 World StepLimiter - 1342 0.12 14 7.12 5.42e-14 0 1 1.32e+03 World StepLimiter - 1343 0.0922 13 7.12 5.43e-14 0 1 1.32e+03 World StepLimiter - 1344 0.0645 12 7.13 5.44e-14 0 1 1.32e+03 World StepLimiter - 1345 0.0368 11 7.14 5.45e-14 0 1 1.32e+03 World StepLimiter - 1346 0.0091 10 7.14 5.46e-14 0 1 1.32e+03 World StepLimiter - 1347 -0.0185 9 7.15 5.47e-14 0 1 1.32e+03 World StepLimiter - 1348 -0.0462 8 7.15 5.48e-14 0 1 1.32e+03 World StepLimiter - 1349 -0.0738 7 7.16 5.49e-14 0 1 1.32e+03 World StepLimiter - 1350 -0.101 6 7.16 5.5e-14 0 1 1.32e+03 World StepLimiter - 1351 -0.129 5 7.17 5.51e-14 0 1 1.32e+03 World StepLimiter - 1352 -0.156 4.01 7.17 5.52e-14 0 1 1.33e+03 World StepLimiter - 1353 -0.184 3.01 7.18 5.53e-14 0 1 1.33e+03 World StepLimiter - 1354 -0.211 2.01 7.18 5.54e-14 0 1 1.33e+03 World StepLimiter - 1355 -0.239 1.01 7.19 5.55e-14 0 1 1.33e+03 World StepLimiter - 1356 -0.266 0.00694 7.2 5.56e-14 0 1 1.33e+03 World StepLimiter - 1357 -0.294 -0.993 7.2 5.57e-14 0 1 1.33e+03 World StepLimiter - 1358 -0.321 -1.99 7.21 5.58e-14 0 1 1.33e+03 World StepLimiter - 1359 -0.348 -2.99 7.21 5.59e-14 0 1 1.33e+03 World StepLimiter - 1360 -0.376 -3.99 7.22 5.6e-14 0 1 1.33e+03 World StepLimiter - 1361 -0.403 -4.99 7.22 5.61e-14 0 1 1.33e+03 World StepLimiter - 1362 -0.43 -5.99 7.23 5.62e-14 0 1 1.34e+03 World StepLimiter - 1363 -0.458 -6.99 7.23 5.63e-14 0 1 1.34e+03 World StepLimiter - 1364 -0.485 -7.99 7.24 5.64e-14 0 1 1.34e+03 World StepLimiter - 1365 -0.512 -8.99 7.24 5.65e-14 0 1 1.34e+03 World StepLimiter - 1366 -0.539 -9.99 7.25 5.66e-14 0 1 1.34e+03 World StepLimiter - 1367 -0.566 -11 7.25 5.67e-14 0 1 1.34e+03 World StepLimiter - 1368 -0.593 -12 7.26 5.68e-14 0 1 1.34e+03 World StepLimiter - 1369 -0.621 -13 7.27 5.69e-14 0 1 1.34e+03 World StepLimiter - 1370 -0.648 -14 7.27 5.7e-14 0 1 1.34e+03 World StepLimiter - 1371 -0.675 -15 7.28 5.71e-14 0 1 1.34e+03 World StepLimiter - 1372 -0.702 -16 7.28 5.72e-14 0 1 1.35e+03 World StepLimiter - 1373 -0.729 -17 7.29 5.73e-14 0 1 1.35e+03 World StepLimiter - 1374 -0.756 -18 7.29 5.75e-14 0 1 1.35e+03 World StepLimiter - 1375 -0.783 -19 7.3 5.76e-14 0 1 1.35e+03 World StepLimiter - 1376 -0.81 -20 7.3 5.77e-14 0 1 1.35e+03 World StepLimiter - 1377 -0.836 -21 7.31 5.78e-14 0 1 1.35e+03 World StepLimiter - 1378 -0.863 -22 7.31 5.79e-14 0 1 1.35e+03 World StepLimiter - 1379 -0.89 -23 7.32 5.8e-14 0 1 1.35e+03 World StepLimiter - 1380 -0.917 -24 7.32 5.81e-14 0 1 1.35e+03 World StepLimiter - 1381 -0.944 -25 7.33 5.82e-14 0 1 1.35e+03 World StepLimiter - 1382 -0.971 -26 7.33 5.83e-14 0 1 1.36e+03 World StepLimiter - 1383 -0.997 -27 7.34 5.84e-14 0 1 1.36e+03 World StepLimiter - 1384 -1.02 -28 7.34 5.85e-14 0 1 1.36e+03 World StepLimiter - 1385 -1.05 -29 7.35 5.86e-14 0 1 1.36e+03 World StepLimiter - 1386 -1.08 -30 7.36 5.87e-14 0 1 1.36e+03 World StepLimiter - 1387 -1.1 -31 7.36 5.88e-14 0 1 1.36e+03 World StepLimiter - 1388 -1.13 -32 7.37 5.89e-14 0 1 1.36e+03 World StepLimiter - 1389 -1.16 -33 7.37 5.9e-14 0 1 1.36e+03 World StepLimiter - 1390 -1.18 -34 7.38 5.91e-14 0 1 1.36e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.193037955872neV MomDir: (-0.026567108807605,-0.9996333163638,0.0052365585184601) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1391 -1.21 -35 7.38 5.92e-14 0 0.999 1.36e+03 Guide Transportation *** StepTooSmall *** - 1392 -1.21 -35 7.38 5.92e-14 0 0 1.36e+03 World Transportation - 1393 -1.17 -34 7.39 5.91e-14 0 1 1.37e+03 World StepLimiter - 1394 -1.13 -33 7.39 5.9e-14 0 1 1.37e+03 World StepLimiter - 1395 -1.08 -32 7.4 5.89e-14 0 1 1.37e+03 World StepLimiter - 1396 -1.04 -31 7.4 5.88e-14 0 1 1.37e+03 World StepLimiter - 1397 -0.997 -30 7.41 5.87e-14 0 1 1.37e+03 World StepLimiter - 1398 -0.954 -29 7.41 5.86e-14 0 1 1.37e+03 World StepLimiter - 1399 -0.911 -28 7.42 5.85e-14 0 1 1.37e+03 World StepLimiter - 1400 -0.869 -27 7.42 5.84e-14 0 1 1.37e+03 World StepLimiter - 1401 -0.826 -26 7.43 5.83e-14 0 1 1.37e+03 World StepLimiter - 1402 -0.783 -25 7.43 5.82e-14 0 1 1.37e+03 World StepLimiter - 1403 -0.74 -24 7.44 5.81e-14 0 1 1.38e+03 World StepLimiter - 1404 -0.697 -23 7.44 5.8e-14 0 1 1.38e+03 World StepLimiter - 1405 -0.654 -22 7.45 5.79e-14 0 1 1.38e+03 World StepLimiter - 1406 -0.61 -21 7.46 5.78e-14 0 1 1.38e+03 World StepLimiter - 1407 -0.567 -20 7.46 5.77e-14 0 1 1.38e+03 World StepLimiter - 1408 -0.524 -19 7.47 5.76e-14 0 1 1.38e+03 World StepLimiter - 1409 -0.481 -18 7.47 5.75e-14 0 1 1.38e+03 World StepLimiter - 1410 -0.438 -17 7.48 5.73e-14 0 1 1.38e+03 World StepLimiter - 1411 -0.394 -16 7.48 5.72e-14 0 1 1.38e+03 World StepLimiter - 1412 -0.351 -15 7.49 5.71e-14 0 1 1.38e+03 World StepLimiter - 1413 -0.308 -14 7.49 5.7e-14 0 1 1.39e+03 World StepLimiter - 1414 -0.264 -13 7.5 5.69e-14 0 1 1.39e+03 World StepLimiter - 1415 -0.221 -12 7.5 5.68e-14 0 1 1.39e+03 World StepLimiter - 1416 -0.177 -11 7.51 5.67e-14 0 1 1.39e+03 World StepLimiter - 1417 -0.134 -10 7.51 5.66e-14 0 1 1.39e+03 World StepLimiter - 1418 -0.09 -9 7.52 5.65e-14 0 1 1.39e+03 World StepLimiter - 1419 -0.0464 -8 7.52 5.64e-14 0 1 1.39e+03 World StepLimiter - 1420 -0.00277 -7.01 7.53 5.63e-14 0 1 1.39e+03 World StepLimiter - 1421 0.0409 -6.01 7.54 5.62e-14 0 1 1.39e+03 World StepLimiter - 1422 0.0847 -5.01 7.54 5.61e-14 0 1 1.39e+03 World StepLimiter - 1423 0.128 -4.01 7.55 5.6e-14 0 1 1.4e+03 World StepLimiter - 1424 0.172 -3.01 7.55 5.59e-14 0 1 1.4e+03 World StepLimiter - 1425 0.216 -2.01 7.56 5.58e-14 0 1 1.4e+03 World StepLimiter - 1426 0.26 -1.01 7.56 5.57e-14 0 1 1.4e+03 World StepLimiter - 1427 0.304 -0.0123 7.57 5.56e-14 0 1 1.4e+03 World StepLimiter - 1428 0.348 0.987 7.57 5.55e-14 0 1 1.4e+03 World StepLimiter - 1429 0.392 1.99 7.58 5.54e-14 0 1 1.4e+03 World StepLimiter - 1430 0.436 2.98 7.58 5.53e-14 0 1 1.4e+03 World StepLimiter - 1431 0.48 3.98 7.59 5.52e-14 0 1 1.4e+03 World StepLimiter - 1432 0.524 4.98 7.59 5.51e-14 0 1 1.4e+03 World StepLimiter - 1433 0.568 5.98 7.6 5.5e-14 0 1 1.41e+03 World StepLimiter - 1434 0.613 6.98 7.61 5.49e-14 0 1 1.41e+03 World StepLimiter - 1435 0.657 7.98 7.61 5.48e-14 0 1 1.41e+03 World StepLimiter - 1436 0.701 8.98 7.62 5.47e-14 0 1 1.41e+03 World StepLimiter - 1437 0.746 9.98 7.62 5.46e-14 0 1 1.41e+03 World StepLimiter - 1438 0.79 11 7.63 5.45e-14 0 1 1.41e+03 World StepLimiter - 1439 0.834 12 7.63 5.44e-14 0 1 1.41e+03 World StepLimiter - 1440 0.879 13 7.64 5.43e-14 0 1 1.41e+03 World StepLimiter - 1441 0.923 14 7.64 5.42e-14 0 1 1.41e+03 World StepLimiter - 1442 0.968 15 7.65 5.41e-14 0 1 1.41e+03 World StepLimiter - 1443 1.01 16 7.65 5.4e-14 0 1 1.42e+03 World StepLimiter - 1444 1.06 17 7.66 5.39e-14 0 1 1.42e+03 World StepLimiter - 1445 1.1 18 7.67 5.38e-14 0 1 1.42e+03 World StepLimiter - 1446 1.15 19 7.67 5.37e-14 0 1 1.42e+03 World StepLimiter - 1447 1.19 20 7.68 5.36e-14 0 1 1.42e+03 World StepLimiter - 1448 1.24 21 7.68 5.35e-14 0 1 1.42e+03 World StepLimiter - 1449 1.28 22 7.69 5.34e-14 0 1 1.42e+03 World StepLimiter - 1450 1.33 23 7.69 5.33e-14 0 1 1.42e+03 World StepLimiter - 1451 1.37 24 7.7 5.31e-14 0 1 1.42e+03 World StepLimiter - 1452 1.42 25 7.7 5.3e-14 0 1 1.42e+03 World StepLimiter - 1453 1.46 26 7.71 5.29e-14 0 1 1.43e+03 World StepLimiter - 1454 1.51 27 7.72 5.28e-14 0 1 1.43e+03 World StepLimiter - 1455 1.55 28 7.72 5.27e-14 0 1 1.43e+03 World StepLimiter - 1456 1.6 29 7.73 5.26e-14 0 1 1.43e+03 World StepLimiter - 1457 1.64 30 7.73 5.25e-14 0 1 1.43e+03 World StepLimiter - 1458 1.69 31 7.74 5.24e-14 0 1 1.43e+03 World StepLimiter - 1459 1.73 32 7.74 5.23e-14 0 1 1.43e+03 World StepLimiter - 1460 1.78 33 7.75 5.22e-14 0 1 1.43e+03 World StepLimiter - 1461 1.82 34 7.75 5.21e-14 0 1 1.43e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.021489797705neV MomDir: (0.045451458671523,0.99895093127549,0.005585857899096) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1462 1.87 35 7.76 5.2e-14 0 0.998 1.43e+03 Guide Transportation *** StepTooSmall *** - 1463 1.87 35 7.76 5.2e-14 0 0 1.43e+03 World Transportation - 1464 1.81 34 7.77 5.21e-14 0 1 1.44e+03 World StepLimiter - 1465 1.75 33 7.77 5.22e-14 0 1 1.44e+03 World StepLimiter - 1466 1.68 32 7.78 5.23e-14 0 1 1.44e+03 World StepLimiter - 1467 1.62 31 7.78 5.24e-14 0 1 1.44e+03 World StepLimiter - 1468 1.56 30 7.79 5.25e-14 0 1 1.44e+03 World StepLimiter - 1469 1.5 29 7.79 5.26e-14 0 1 1.44e+03 World StepLimiter - 1470 1.44 28 7.8 5.27e-14 0 1 1.44e+03 World StepLimiter - 1471 1.38 27 7.8 5.28e-14 0 1 1.44e+03 World StepLimiter - 1472 1.32 26 7.81 5.29e-14 0 1 1.44e+03 World StepLimiter - 1473 1.26 25 7.82 5.3e-14 0 1 1.44e+03 World StepLimiter - 1474 1.2 24 7.82 5.31e-14 0 1 1.45e+03 World StepLimiter - 1475 1.14 23 7.83 5.32e-14 0 1 1.45e+03 World StepLimiter - 1476 1.08 22 7.83 5.34e-14 0 1 1.45e+03 World StepLimiter - 1477 1.02 21 7.84 5.35e-14 0 1 1.45e+03 World StepLimiter - 1478 0.955 20 7.84 5.36e-14 0 1 1.45e+03 World StepLimiter - 1479 0.895 19 7.85 5.37e-14 0 1 1.45e+03 World StepLimiter - 1480 0.835 18 7.85 5.38e-14 0 1 1.45e+03 World StepLimiter - 1481 0.774 17 7.86 5.39e-14 0 1 1.45e+03 World StepLimiter - 1482 0.714 16 7.86 5.4e-14 0 1 1.45e+03 World StepLimiter - 1483 0.654 15 7.87 5.41e-14 0 1 1.45e+03 World StepLimiter - 1484 0.594 14 7.88 5.42e-14 0 1 1.46e+03 World StepLimiter - 1485 0.534 13 7.88 5.43e-14 0 1 1.46e+03 World StepLimiter - 1486 0.474 12 7.89 5.44e-14 0 1 1.46e+03 World StepLimiter - 1487 0.414 11 7.89 5.45e-14 0 1 1.46e+03 World StepLimiter - 1488 0.354 10 7.9 5.46e-14 0 1 1.46e+03 World StepLimiter - 1489 0.294 9 7.9 5.47e-14 0 1 1.46e+03 World StepLimiter - 1490 0.235 8 7.91 5.48e-14 0 1 1.46e+03 World StepLimiter - 1491 0.175 7 7.91 5.49e-14 0 1 1.46e+03 World StepLimiter - 1492 0.115 6 7.92 5.5e-14 0 1 1.46e+03 World StepLimiter - 1493 0.0556 5.01 7.92 5.51e-14 0 1 1.46e+03 World StepLimiter - 1494 -0.00389 4.01 7.93 5.52e-14 0 1 1.47e+03 World StepLimiter - 1495 -0.0634 3.01 7.94 5.53e-14 0 1 1.47e+03 World StepLimiter - 1496 -0.123 2.01 7.94 5.54e-14 0 1 1.47e+03 World StepLimiter - 1497 -0.182 1.01 7.95 5.55e-14 0 1 1.47e+03 World StepLimiter - 1498 -0.241 0.0143 7.95 5.56e-14 0 1 1.47e+03 World StepLimiter - 1499 -0.301 -0.984 7.96 5.57e-14 0 1 1.47e+03 World StepLimiter - 1500 -0.36 -1.98 7.96 5.58e-14 0 1 1.47e+03 World StepLimiter - 1501 -0.419 -2.98 7.97 5.59e-14 0 1 1.47e+03 World StepLimiter - 1502 -0.478 -3.98 7.97 5.6e-14 0 1 1.47e+03 World StepLimiter - 1503 -0.537 -4.98 7.98 5.61e-14 0 1 1.47e+03 World StepLimiter - 1504 -0.596 -5.98 7.98 5.62e-14 0 1 1.48e+03 World StepLimiter - 1505 -0.655 -6.97 7.99 5.63e-14 0 1 1.48e+03 World StepLimiter - 1506 -0.714 -7.97 8 5.64e-14 0 1 1.48e+03 World StepLimiter - 1507 -0.773 -8.97 8 5.65e-14 0 1 1.48e+03 World StepLimiter - 1508 -0.832 -9.97 8.01 5.66e-14 0 1 1.48e+03 World StepLimiter - 1509 -0.89 -11 8.01 5.67e-14 0 1 1.48e+03 World StepLimiter - 1510 -0.949 -12 8.02 5.68e-14 0 1 1.48e+03 World StepLimiter - 1511 -1.01 -13 8.02 5.69e-14 0 1 1.48e+03 World StepLimiter - 1512 -1.07 -14 8.03 5.7e-14 0 1 1.48e+03 World StepLimiter - 1513 -1.12 -15 8.03 5.71e-14 0 1 1.48e+03 World StepLimiter - 1514 -1.18 -16 8.04 5.72e-14 0 1 1.49e+03 World StepLimiter - 1515 -1.24 -17 8.04 5.73e-14 0 1 1.49e+03 World StepLimiter - 1516 -1.3 -18 8.05 5.74e-14 0 1 1.49e+03 World StepLimiter - 1517 -1.36 -19 8.05 5.75e-14 0 1 1.49e+03 World StepLimiter - 1518 -1.42 -20 8.06 5.77e-14 0 1 1.49e+03 World StepLimiter - 1519 -1.47 -20.9 8.06 5.78e-14 0 1 1.49e+03 World StepLimiter - 1520 -1.53 -21.9 8.07 5.79e-14 0 1 1.49e+03 World StepLimiter - 1521 -1.59 -22.9 8.08 5.8e-14 0 1 1.49e+03 World StepLimiter - 1522 -1.65 -23.9 8.08 5.81e-14 0 1 1.49e+03 World StepLimiter - 1523 -1.71 -24.9 8.09 5.82e-14 0 1 1.49e+03 World StepLimiter - 1524 -1.76 -25.9 8.09 5.83e-14 0 1 1.5e+03 World StepLimiter - 1525 -1.82 -26.9 8.1 5.84e-14 0 1 1.5e+03 World StepLimiter - 1526 -1.88 -27.9 8.1 5.85e-14 0 1 1.5e+03 World StepLimiter - 1527 -1.94 -28.9 8.11 5.86e-14 0 1 1.5e+03 World StepLimiter - 1528 -2 -29.9 8.11 5.87e-14 0 1 1.5e+03 World StepLimiter - 1529 -2.05 -30.9 8.12 5.88e-14 0 1 1.5e+03 World StepLimiter - 1530 -2.11 -31.9 8.12 5.89e-14 0 1 1.5e+03 World StepLimiter - 1531 -2.17 -32.9 8.13 5.9e-14 0 1 1.5e+03 World StepLimiter - 1532 -2.23 -33.9 8.13 5.91e-14 0 1 1.5e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.187533603363neV MomDir: (-0.057466511752617,-0.99833369968749,0.0052368020088722) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1533 -2.28 -34.9 8.14 5.92e-14 0 1 1.5e+03 Guide Transportation *** StepTooSmall *** - 1534 -2.28 -34.9 8.14 5.92e-14 0 0 1.5e+03 World Transportation - 1535 -2.21 -33.9 8.14 5.91e-14 0 1 1.51e+03 World StepLimiter - 1536 -2.14 -32.9 8.15 5.9e-14 0 1 1.51e+03 World StepLimiter - 1537 -2.06 -31.9 8.15 5.89e-14 0 1 1.51e+03 World StepLimiter - 1538 -1.99 -30.9 8.16 5.88e-14 0 1 1.51e+03 World StepLimiter - 1539 -1.92 -29.9 8.16 5.87e-14 0 1 1.51e+03 World StepLimiter - 1540 -1.84 -28.9 8.17 5.86e-14 0 1 1.51e+03 World StepLimiter - 1541 -1.77 -27.9 8.17 5.85e-14 0 1 1.51e+03 World StepLimiter - 1542 -1.7 -26.9 8.18 5.84e-14 0 1 1.51e+03 World StepLimiter - 1543 -1.62 -25.9 8.19 5.83e-14 0 1 1.51e+03 World StepLimiter - 1544 -1.55 -25 8.19 5.82e-14 0 1 1.51e+03 World StepLimiter - 1545 -1.48 -24 8.2 5.81e-14 0 1 1.52e+03 World StepLimiter - 1546 -1.4 -23 8.2 5.8e-14 0 1 1.52e+03 World StepLimiter - 1547 -1.33 -22 8.21 5.79e-14 0 1 1.52e+03 World StepLimiter - 1548 -1.26 -21 8.21 5.78e-14 0 1 1.52e+03 World StepLimiter - 1549 -1.18 -20 8.22 5.77e-14 0 1 1.52e+03 World StepLimiter - 1550 -1.11 -19 8.22 5.76e-14 0 1 1.52e+03 World StepLimiter - 1551 -1.03 -18 8.23 5.74e-14 0 1 1.52e+03 World StepLimiter - 1552 -0.959 -17 8.23 5.73e-14 0 1 1.52e+03 World StepLimiter - 1553 -0.885 -16 8.24 5.72e-14 0 1 1.52e+03 World StepLimiter - 1554 -0.81 -15 8.24 5.71e-14 0 1 1.52e+03 World StepLimiter - 1555 -0.736 -14 8.25 5.7e-14 0 1 1.53e+03 World StepLimiter - 1556 -0.661 -13 8.25 5.69e-14 0 1 1.53e+03 World StepLimiter - 1557 -0.587 -12 8.26 5.68e-14 0 1 1.53e+03 World StepLimiter - 1558 -0.512 -11 8.27 5.67e-14 0 1 1.53e+03 World StepLimiter - 1559 -0.438 -9.99 8.27 5.66e-14 0 1 1.53e+03 World StepLimiter - 1560 -0.363 -9 8.28 5.65e-14 0 1 1.53e+03 World StepLimiter - 1561 -0.288 -8 8.28 5.64e-14 0 1 1.53e+03 World StepLimiter - 1562 -0.213 -7 8.29 5.63e-14 0 1 1.53e+03 World StepLimiter - 1563 -0.138 -6.01 8.29 5.62e-14 0 1 1.53e+03 World StepLimiter - 1564 -0.0634 -5.01 8.3 5.61e-14 0 1 1.53e+03 World StepLimiter - 1565 0.0116 -4.01 8.3 5.6e-14 0 1 1.54e+03 World StepLimiter - 1566 0.0868 -3.01 8.31 5.59e-14 0 1 1.54e+03 World StepLimiter - 1567 0.162 -2.02 8.31 5.58e-14 0 1 1.54e+03 World StepLimiter - 1568 0.237 -1.02 8.32 5.57e-14 0 1 1.54e+03 World StepLimiter - 1569 0.313 -0.0224 8.32 5.56e-14 0 1 1.54e+03 World StepLimiter - 1570 0.388 0.975 8.33 5.55e-14 0 1 1.54e+03 World StepLimiter - 1571 0.463 1.97 8.34 5.54e-14 0 1 1.54e+03 World StepLimiter - 1572 0.539 2.97 8.34 5.53e-14 0 1 1.54e+03 World StepLimiter - 1573 0.615 3.97 8.35 5.52e-14 0 1 1.54e+03 World StepLimiter - 1574 0.69 4.96 8.35 5.51e-14 0 1 1.54e+03 World StepLimiter - 1575 0.766 5.96 8.36 5.5e-14 0 1 1.55e+03 World StepLimiter - 1576 0.842 6.96 8.36 5.49e-14 0 1 1.55e+03 World StepLimiter - 1577 0.918 7.95 8.37 5.48e-14 0 1 1.55e+03 World StepLimiter - 1578 0.994 8.95 8.37 5.47e-14 0 1 1.55e+03 World StepLimiter - 1579 1.07 9.95 8.38 5.46e-14 0 1 1.55e+03 World StepLimiter - 1580 1.15 10.9 8.38 5.45e-14 0 1 1.55e+03 World StepLimiter - 1581 1.22 11.9 8.39 5.44e-14 0 1 1.55e+03 World StepLimiter - 1582 1.3 12.9 8.4 5.43e-14 0 1 1.55e+03 World StepLimiter - 1583 1.37 13.9 8.4 5.42e-14 0 1 1.55e+03 World StepLimiter - 1584 1.45 14.9 8.41 5.41e-14 0 1 1.55e+03 World StepLimiter - 1585 1.53 15.9 8.41 5.4e-14 0 1 1.56e+03 World StepLimiter - 1586 1.6 16.9 8.42 5.39e-14 0 1 1.56e+03 World StepLimiter - 1587 1.68 17.9 8.42 5.38e-14 0 1 1.56e+03 World StepLimiter - 1588 1.76 18.9 8.43 5.37e-14 0 1 1.56e+03 World StepLimiter - 1589 1.83 19.9 8.43 5.36e-14 0 1 1.56e+03 World StepLimiter - 1590 1.91 20.9 8.44 5.35e-14 0 1 1.56e+03 World StepLimiter - 1591 1.99 21.9 8.44 5.34e-14 0 1 1.56e+03 World StepLimiter - 1592 2.06 22.9 8.45 5.33e-14 0 1 1.56e+03 World StepLimiter - 1593 2.14 23.9 8.46 5.32e-14 0 1 1.56e+03 World StepLimiter - 1594 2.22 24.9 8.46 5.31e-14 0 1 1.56e+03 World StepLimiter - 1595 2.3 25.9 8.47 5.29e-14 0 1 1.57e+03 World StepLimiter - 1596 2.37 26.9 8.47 5.28e-14 0 1 1.57e+03 World StepLimiter - 1597 2.45 27.9 8.48 5.27e-14 0 1 1.57e+03 World StepLimiter - 1598 2.53 28.9 8.48 5.26e-14 0 1 1.57e+03 World StepLimiter - 1599 2.61 29.9 8.49 5.25e-14 0 1 1.57e+03 World StepLimiter - 1600 2.68 30.9 8.49 5.24e-14 0 1 1.57e+03 World StepLimiter - 1601 2.76 31.9 8.5 5.23e-14 0 1 1.57e+03 World StepLimiter - 1602 2.84 32.9 8.51 5.22e-14 0 1 1.57e+03 World StepLimiter - 1603 2.92 33.9 8.51 5.21e-14 0 1 1.57e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.02953089856neV MomDir: (0.077917121499852,0.99694419361914,0.0055854262386376) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1604 2.99 34.9 8.52 5.2e-14 0 0.997 1.57e+03 Guide Transportation *** StepTooSmall *** - 1605 2.99 34.9 8.52 5.2e-14 0 0 1.57e+03 World Transportation - 1606 2.9 33.9 8.52 5.21e-14 0 1 1.58e+03 World StepLimiter - 1607 2.81 32.9 8.53 5.22e-14 0 1 1.58e+03 World StepLimiter - 1608 2.72 31.9 8.53 5.23e-14 0 1 1.58e+03 World StepLimiter - 1609 2.62 30.9 8.54 5.24e-14 0 1 1.58e+03 World StepLimiter - 1610 2.53 29.9 8.54 5.25e-14 0 1 1.58e+03 World StepLimiter - 1611 2.44 28.9 8.55 5.26e-14 0 1 1.58e+03 World StepLimiter - 1612 2.34 27.9 8.56 5.27e-14 0 1 1.58e+03 World StepLimiter - 1613 2.25 26.9 8.56 5.28e-14 0 1 1.58e+03 World StepLimiter - 1614 2.16 25.9 8.57 5.29e-14 0 1 1.58e+03 World StepLimiter - 1615 2.07 24.9 8.57 5.31e-14 0 1 1.58e+03 World StepLimiter - 1616 1.97 23.9 8.58 5.32e-14 0 1 1.59e+03 World StepLimiter - 1617 1.88 22.9 8.58 5.33e-14 0 1 1.59e+03 World StepLimiter - 1618 1.79 21.9 8.59 5.34e-14 0 1 1.59e+03 World StepLimiter - 1619 1.7 20.9 8.59 5.35e-14 0 1 1.59e+03 World StepLimiter - 1620 1.61 19.9 8.6 5.36e-14 0 1 1.59e+03 World StepLimiter - 1621 1.51 18.9 8.61 5.37e-14 0 1 1.59e+03 World StepLimiter - 1622 1.42 17.9 8.61 5.38e-14 0 1 1.59e+03 World StepLimiter - 1623 1.33 16.9 8.62 5.39e-14 0 1 1.59e+03 World StepLimiter - 1624 1.24 16 8.62 5.4e-14 0 1 1.59e+03 World StepLimiter - 1625 1.15 15 8.63 5.41e-14 0 1 1.59e+03 World StepLimiter - 1626 1.06 14 8.63 5.42e-14 0 1 1.6e+03 World StepLimiter - 1627 0.966 13 8.64 5.43e-14 0 1 1.6e+03 World StepLimiter - 1628 0.875 12 8.64 5.44e-14 0 1 1.6e+03 World StepLimiter - 1629 0.784 11 8.65 5.45e-14 0 1 1.6e+03 World StepLimiter - 1630 0.693 9.98 8.65 5.46e-14 0 1 1.6e+03 World StepLimiter - 1631 0.602 8.98 8.66 5.47e-14 0 1 1.6e+03 World StepLimiter - 1632 0.511 7.99 8.67 5.48e-14 0 1 1.6e+03 World StepLimiter - 1633 0.42 6.99 8.67 5.49e-14 0 1 1.6e+03 World StepLimiter - 1634 0.33 5.99 8.68 5.5e-14 0 1 1.6e+03 World StepLimiter - 1635 0.239 5 8.68 5.51e-14 0 1 1.6e+03 World StepLimiter - 1636 0.149 4 8.69 5.52e-14 0 1 1.61e+03 World StepLimiter - 1637 0.0582 3.01 8.69 5.53e-14 0 1 1.61e+03 World StepLimiter - 1638 -0.0322 2.01 8.7 5.54e-14 0 1 1.61e+03 World StepLimiter - 1639 -0.122 1.02 8.7 5.55e-14 0 1 1.61e+03 World StepLimiter - 1640 -0.213 0.0195 8.71 5.56e-14 0 1 1.61e+03 World StepLimiter - 1641 -0.303 -0.976 8.71 5.57e-14 0 1 1.61e+03 World StepLimiter - 1642 -0.393 -1.97 8.72 5.58e-14 0 1 1.61e+03 World StepLimiter - 1643 -0.483 -2.97 8.72 5.59e-14 0 1 1.61e+03 World StepLimiter - 1644 -0.572 -3.96 8.73 5.6e-14 0 1 1.61e+03 World StepLimiter - 1645 -0.662 -4.96 8.74 5.61e-14 0 1 1.61e+03 World StepLimiter - 1646 -0.752 -5.96 8.74 5.62e-14 0 1 1.62e+03 World StepLimiter - 1647 -0.841 -6.95 8.75 5.63e-14 0 1 1.62e+03 World StepLimiter - 1648 -0.931 -7.95 8.75 5.64e-14 0 1 1.62e+03 World StepLimiter - 1649 -1.02 -8.94 8.76 5.65e-14 0 1 1.62e+03 World StepLimiter - 1650 -1.11 -9.94 8.76 5.66e-14 0 1 1.62e+03 World StepLimiter - 1651 -1.2 -10.9 8.77 5.67e-14 0 1 1.62e+03 World StepLimiter - 1652 -1.29 -11.9 8.77 5.68e-14 0 1 1.62e+03 World StepLimiter - 1653 -1.38 -12.9 8.78 5.69e-14 0 1 1.62e+03 World StepLimiter - 1654 -1.47 -13.9 8.78 5.7e-14 0 1 1.62e+03 World StepLimiter - 1655 -1.56 -14.9 8.79 5.71e-14 0 1 1.62e+03 World StepLimiter - 1656 -1.64 -15.9 8.79 5.72e-14 0 1 1.63e+03 World StepLimiter - 1657 -1.73 -16.9 8.8 5.73e-14 0 1 1.63e+03 World StepLimiter - 1658 -1.82 -17.9 8.81 5.74e-14 0 1 1.63e+03 World StepLimiter - 1659 -1.91 -18.9 8.81 5.75e-14 0 1 1.63e+03 World StepLimiter - 1660 -2 -19.9 8.82 5.76e-14 0 1 1.63e+03 World StepLimiter - 1661 -2.09 -20.9 8.82 5.77e-14 0 1 1.63e+03 World StepLimiter - 1662 -2.18 -21.9 8.83 5.79e-14 0 1 1.63e+03 World StepLimiter - 1663 -2.26 -22.9 8.83 5.8e-14 0 1 1.63e+03 World StepLimiter - 1664 -2.35 -23.9 8.84 5.81e-14 0 1 1.63e+03 World StepLimiter - 1665 -2.44 -24.9 8.84 5.82e-14 0 1 1.63e+03 World StepLimiter - 1666 -2.53 -25.9 8.85 5.83e-14 0 1 1.64e+03 World StepLimiter - 1667 -2.62 -26.9 8.85 5.84e-14 0 1 1.64e+03 World StepLimiter - 1668 -2.7 -27.9 8.86 5.85e-14 0 1 1.64e+03 World StepLimiter - 1669 -2.79 -28.9 8.86 5.86e-14 0 1 1.64e+03 World StepLimiter - 1670 -2.88 -29.9 8.87 5.87e-14 0 1 1.64e+03 World StepLimiter - 1671 -2.97 -30.9 8.87 5.88e-14 0 1 1.64e+03 World StepLimiter - 1672 -3.06 -31.9 8.88 5.89e-14 0 1 1.64e+03 World StepLimiter - 1673 -3.14 -32.8 8.88 5.9e-14 0 1 1.64e+03 World StepLimiter - 1674 -3.23 -33.8 8.89 5.91e-14 0 1 1.64e+03 World StepLimiter - 1675 -3.32 -34.8 8.89 5.92e-14 0 1 1.64e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.179022381624neV MomDir: (-0.087358404641599,-0.99616317995548,0.0052371785779573) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1676 -3.32 -34.8 8.89 5.92e-14 0 0.000368 1.64e+03 Guide Transportation *** StepTooSmall *** - 1677 -3.32 -34.8 8.89 5.92e-14 0 0 1.64e+03 World Transportation - 1678 -3.22 -33.8 8.9 5.91e-14 0 1 1.65e+03 World StepLimiter - 1679 -3.11 -32.9 8.91 5.9e-14 0 1 1.65e+03 World StepLimiter - 1680 -3.01 -31.9 8.91 5.89e-14 0 1 1.65e+03 World StepLimiter - 1681 -2.91 -30.9 8.92 5.88e-14 0 1 1.65e+03 World StepLimiter - 1682 -2.81 -29.9 8.92 5.87e-14 0 1 1.65e+03 World StepLimiter - 1683 -2.7 -28.9 8.93 5.86e-14 0 1 1.65e+03 World StepLimiter - 1684 -2.6 -27.9 8.93 5.85e-14 0 1 1.65e+03 World StepLimiter - 1685 -2.5 -26.9 8.94 5.84e-14 0 1 1.65e+03 World StepLimiter - 1686 -2.39 -25.9 8.94 5.83e-14 0 1 1.65e+03 World StepLimiter - 1687 -2.29 -24.9 8.95 5.82e-14 0 1 1.65e+03 World StepLimiter - 1688 -2.19 -23.9 8.95 5.81e-14 0 1 1.66e+03 World StepLimiter - 1689 -2.08 -22.9 8.96 5.8e-14 0 1 1.66e+03 World StepLimiter - 1690 -1.98 -21.9 8.96 5.79e-14 0 1 1.66e+03 World StepLimiter - 1691 -1.88 -20.9 8.97 5.78e-14 0 1 1.66e+03 World StepLimiter - 1692 -1.77 -19.9 8.97 5.76e-14 0 1 1.66e+03 World StepLimiter - 1693 -1.67 -18.9 8.98 5.75e-14 0 1 1.66e+03 World StepLimiter - 1694 -1.57 -17.9 8.98 5.74e-14 0 1 1.66e+03 World StepLimiter - 1695 -1.46 -16.9 8.99 5.73e-14 0 1 1.66e+03 World StepLimiter - 1696 -1.36 -15.9 9 5.72e-14 0 1 1.66e+03 World StepLimiter - 1697 -1.26 -14.9 9 5.71e-14 0 1 1.66e+03 World StepLimiter - 1698 -1.15 -14 9.01 5.7e-14 0 1 1.67e+03 World StepLimiter - 1699 -1.05 -13 9.01 5.69e-14 0 1 1.67e+03 World StepLimiter - 1700 -0.943 -12 9.02 5.68e-14 0 1 1.67e+03 World StepLimiter - 1701 -0.839 -11 9.02 5.67e-14 0 1 1.67e+03 World StepLimiter - 1702 -0.734 -9.98 9.03 5.66e-14 0 1 1.67e+03 World StepLimiter - 1703 -0.63 -8.98 9.03 5.65e-14 0 1 1.67e+03 World StepLimiter - 1704 -0.525 -7.99 9.04 5.64e-14 0 1 1.67e+03 World StepLimiter - 1705 -0.42 -6.99 9.04 5.63e-14 0 1 1.67e+03 World StepLimiter - 1706 -0.315 -6 9.05 5.62e-14 0 1 1.67e+03 World StepLimiter - 1707 -0.21 -5 9.05 5.61e-14 0 1 1.67e+03 World StepLimiter - 1708 -0.105 -4.01 9.06 5.6e-14 0 1 1.68e+03 World StepLimiter - 1709 -0.000294 -3.02 9.06 5.59e-14 0 1 1.68e+03 World StepLimiter - 1710 0.105 -2.02 9.07 5.58e-14 0 1 1.68e+03 World StepLimiter - 1711 0.21 -1.03 9.08 5.57e-14 0 1 1.68e+03 World StepLimiter - 1712 0.316 -0.032 9.08 5.56e-14 0 1 1.68e+03 World StepLimiter - 1713 0.421 0.962 9.09 5.55e-14 0 1 1.68e+03 World StepLimiter - 1714 0.527 1.96 9.09 5.54e-14 0 1 1.68e+03 World StepLimiter - 1715 0.632 2.95 9.1 5.53e-14 0 1 1.68e+03 World StepLimiter - 1716 0.738 3.95 9.1 5.52e-14 0 1 1.68e+03 World StepLimiter - 1717 0.844 4.94 9.11 5.51e-14 0 1 1.68e+03 World StepLimiter - 1718 0.95 5.93 9.11 5.5e-14 0 1 1.69e+03 World StepLimiter - 1719 1.06 6.93 9.12 5.49e-14 0 1 1.69e+03 World StepLimiter - 1720 1.16 7.92 9.12 5.48e-14 0 1 1.69e+03 World StepLimiter - 1721 1.27 8.92 9.13 5.47e-14 0 1 1.69e+03 World StepLimiter - 1722 1.38 9.91 9.14 5.46e-14 0 1 1.69e+03 World StepLimiter - 1723 1.48 10.9 9.14 5.45e-14 0 1 1.69e+03 World StepLimiter - 1724 1.59 11.9 9.15 5.44e-14 0 1 1.69e+03 World StepLimiter - 1725 1.69 12.9 9.15 5.43e-14 0 1 1.69e+03 World StepLimiter - 1726 1.8 13.9 9.16 5.42e-14 0 1 1.69e+03 World StepLimiter - 1727 1.91 14.9 9.16 5.41e-14 0 1 1.69e+03 World StepLimiter - 1728 2.02 15.9 9.17 5.4e-14 0 1 1.7e+03 World StepLimiter - 1729 2.12 16.9 9.17 5.39e-14 0 1 1.7e+03 World StepLimiter - 1730 2.23 17.9 9.18 5.38e-14 0 1 1.7e+03 World StepLimiter - 1731 2.34 18.9 9.18 5.37e-14 0 1 1.7e+03 World StepLimiter - 1732 2.44 19.9 9.19 5.36e-14 0 1 1.7e+03 World StepLimiter - 1733 2.55 20.8 9.2 5.35e-14 0 1 1.7e+03 World StepLimiter - 1734 2.66 21.8 9.2 5.34e-14 0 1 1.7e+03 World StepLimiter - 1735 2.77 22.8 9.21 5.33e-14 0 1 1.7e+03 World StepLimiter - 1736 2.87 23.8 9.21 5.32e-14 0 1 1.7e+03 World StepLimiter - 1737 2.98 24.8 9.22 5.31e-14 0 1 1.7e+03 World StepLimiter - 1738 3.09 25.8 9.22 5.3e-14 0 1 1.71e+03 World StepLimiter - 1739 3.2 26.8 9.23 5.29e-14 0 1 1.71e+03 World StepLimiter - 1740 3.31 27.8 9.23 5.28e-14 0 1 1.71e+03 World StepLimiter - 1741 3.42 28.8 9.24 5.27e-14 0 1 1.71e+03 World StepLimiter - 1742 3.52 29.8 9.25 5.26e-14 0 1 1.71e+03 World StepLimiter - 1743 3.63 30.8 9.25 5.24e-14 0 1 1.71e+03 World StepLimiter - 1744 3.74 31.8 9.26 5.23e-14 0 1 1.71e+03 World StepLimiter - 1745 3.85 32.8 9.26 5.22e-14 0 1 1.71e+03 World StepLimiter - 1746 3.96 33.8 9.27 5.21e-14 0 1 1.71e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.040692234324neV MomDir: (0.10900772685251,0.99402521355904,0.0055848272442937) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1747 4.07 34.8 9.27 5.2e-14 0 0.997 1.71e+03 Guide Transportation *** StepTooSmall *** - 1748 4.07 34.8 9.27 5.2e-14 0 0 1.71e+03 World Transportation - 1749 3.94 33.8 9.28 5.21e-14 0 1 1.72e+03 World StepLimiter - 1750 3.82 32.8 9.28 5.22e-14 0 1 1.72e+03 World StepLimiter - 1751 3.7 31.8 9.29 5.23e-14 0 1 1.72e+03 World StepLimiter - 1752 3.57 30.8 9.3 5.24e-14 0 1 1.72e+03 World StepLimiter - 1753 3.45 29.8 9.3 5.25e-14 0 1 1.72e+03 World StepLimiter - 1754 3.33 28.8 9.31 5.27e-14 0 1 1.72e+03 World StepLimiter - 1755 3.21 27.8 9.31 5.28e-14 0 1 1.72e+03 World StepLimiter - 1756 3.08 26.8 9.32 5.29e-14 0 1 1.72e+03 World StepLimiter - 1757 2.96 25.8 9.32 5.3e-14 0 1 1.72e+03 World StepLimiter - 1758 2.84 24.8 9.33 5.31e-14 0 1 1.72e+03 World StepLimiter - 1759 2.72 23.8 9.33 5.32e-14 0 1 1.73e+03 World StepLimiter - 1760 2.6 22.9 9.34 5.33e-14 0 1 1.73e+03 World StepLimiter - 1761 2.47 21.9 9.35 5.34e-14 0 1 1.73e+03 World StepLimiter - 1762 2.35 20.9 9.35 5.35e-14 0 1 1.73e+03 World StepLimiter - 1763 2.23 19.9 9.36 5.36e-14 0 1 1.73e+03 World StepLimiter - 1764 2.11 18.9 9.36 5.37e-14 0 1 1.73e+03 World StepLimiter - 1765 1.99 17.9 9.37 5.38e-14 0 1 1.73e+03 World StepLimiter - 1766 1.87 16.9 9.37 5.39e-14 0 1 1.73e+03 World StepLimiter - 1767 1.74 15.9 9.38 5.4e-14 0 1 1.73e+03 World StepLimiter - 1768 1.62 14.9 9.38 5.41e-14 0 1 1.73e+03 World StepLimiter - 1769 1.5 13.9 9.39 5.42e-14 0 1 1.74e+03 World StepLimiter - 1770 1.38 12.9 9.39 5.43e-14 0 1 1.74e+03 World StepLimiter - 1771 1.26 11.9 9.4 5.44e-14 0 1 1.74e+03 World StepLimiter - 1772 1.14 10.9 9.41 5.45e-14 0 1 1.74e+03 World StepLimiter - 1773 1.02 9.95 9.41 5.46e-14 0 1 1.74e+03 World StepLimiter - 1774 0.899 8.96 9.42 5.47e-14 0 1 1.74e+03 World StepLimiter - 1775 0.778 7.96 9.42 5.48e-14 0 1 1.74e+03 World StepLimiter - 1776 0.658 6.97 9.43 5.49e-14 0 1 1.74e+03 World StepLimiter - 1777 0.538 5.98 9.43 5.5e-14 0 1 1.74e+03 World StepLimiter - 1778 0.418 4.99 9.44 5.51e-14 0 1 1.74e+03 World StepLimiter - 1779 0.298 3.99 9.44 5.52e-14 0 1 1.75e+03 World StepLimiter - 1780 0.178 3 9.45 5.53e-14 0 1 1.75e+03 World StepLimiter - 1781 0.0587 2.01 9.45 5.54e-14 0 1 1.75e+03 World StepLimiter - 1782 -0.0608 1.01 9.46 5.55e-14 0 1 1.75e+03 World StepLimiter - 1783 -0.18 0.0221 9.47 5.56e-14 0 1 1.75e+03 World StepLimiter - 1784 -0.3 -0.971 9.47 5.57e-14 0 1 1.75e+03 World StepLimiter - 1785 -0.419 -1.96 9.48 5.58e-14 0 1 1.75e+03 World StepLimiter - 1786 -0.538 -2.96 9.48 5.59e-14 0 1 1.75e+03 World StepLimiter - 1787 -0.657 -3.95 9.49 5.6e-14 0 1 1.75e+03 World StepLimiter - 1788 -0.776 -4.94 9.49 5.61e-14 0 1 1.75e+03 World StepLimiter - 1789 -0.895 -5.94 9.5 5.62e-14 0 1 1.76e+03 World StepLimiter - 1790 -1.01 -6.93 9.5 5.63e-14 0 1 1.76e+03 World StepLimiter - 1791 -1.13 -7.92 9.51 5.64e-14 0 1 1.76e+03 World StepLimiter - 1792 -1.25 -8.91 9.51 5.65e-14 0 1 1.76e+03 World StepLimiter - 1793 -1.37 -9.91 9.52 5.66e-14 0 1 1.76e+03 World StepLimiter - 1794 -1.49 -10.9 9.52 5.67e-14 0 1 1.76e+03 World StepLimiter - 1795 -1.61 -11.9 9.53 5.68e-14 0 1 1.76e+03 World StepLimiter - 1796 -1.72 -12.9 9.54 5.69e-14 0 1 1.76e+03 World StepLimiter - 1797 -1.84 -13.9 9.54 5.7e-14 0 1 1.76e+03 World StepLimiter - 1798 -1.96 -14.9 9.55 5.71e-14 0 1 1.76e+03 World StepLimiter - 1799 -2.08 -15.9 9.55 5.72e-14 0 1 1.77e+03 World StepLimiter - 1800 -2.19 -16.9 9.56 5.73e-14 0 1 1.77e+03 World StepLimiter - 1801 -2.31 -17.9 9.56 5.74e-14 0 1 1.77e+03 World StepLimiter - 1802 -2.43 -18.8 9.57 5.75e-14 0 1 1.77e+03 World StepLimiter - 1803 -2.55 -19.8 9.57 5.76e-14 0 1 1.77e+03 World StepLimiter - 1804 -2.66 -20.8 9.58 5.77e-14 0 1 1.77e+03 World StepLimiter - 1805 -2.78 -21.8 9.58 5.78e-14 0 1 1.77e+03 World StepLimiter - 1806 -2.9 -22.8 9.59 5.79e-14 0 1 1.77e+03 World StepLimiter - 1807 -3.01 -23.8 9.59 5.8e-14 0 1 1.77e+03 World StepLimiter - 1808 -3.13 -24.8 9.6 5.81e-14 0 1 1.77e+03 World StepLimiter - 1809 -3.25 -25.8 9.6 5.83e-14 0 1 1.78e+03 World StepLimiter - 1810 -3.36 -26.8 9.61 5.84e-14 0 1 1.78e+03 World StepLimiter - 1811 -3.48 -27.8 9.61 5.85e-14 0 1 1.78e+03 World StepLimiter - 1812 -3.6 -28.8 9.62 5.86e-14 0 1 1.78e+03 World StepLimiter - 1813 -3.71 -29.8 9.63 5.87e-14 0 1 1.78e+03 World StepLimiter - 1814 -3.83 -30.8 9.63 5.88e-14 0 1 1.78e+03 World StepLimiter - 1815 -3.95 -31.8 9.64 5.89e-14 0 1 1.78e+03 World StepLimiter - 1816 -4.06 -32.7 9.64 5.9e-14 0 1 1.78e+03 World StepLimiter - 1817 -4.18 -33.7 9.65 5.91e-14 0 1 1.78e+03 World StepLimiter - 1818 -4.29 -34.7 9.65 5.92e-14 0 1 1.78e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.168071895326neV MomDir: (-0.11573112598173,-0.9932667684783,0.0052376631889745) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1819 -4.29 -34.7 9.65 5.92e-14 0 0.000825 1.78e+03 Guide Transportation *** StepTooSmall *** - 1820 -4.29 -34.7 9.65 5.92e-14 0 0 1.78e+03 World Transportation - 1821 -4.16 -33.7 9.66 5.91e-14 0 1 1.79e+03 World StepLimiter - 1822 -4.03 -32.8 9.66 5.9e-14 0 1 1.79e+03 World StepLimiter - 1823 -3.9 -31.8 9.67 5.89e-14 0 1 1.79e+03 World StepLimiter - 1824 -3.77 -30.8 9.67 5.88e-14 0 1 1.79e+03 World StepLimiter - 1825 -3.64 -29.8 9.68 5.87e-14 0 1 1.79e+03 World StepLimiter - 1826 -3.51 -28.8 9.68 5.86e-14 0 1 1.79e+03 World StepLimiter - 1827 -3.38 -27.8 9.69 5.85e-14 0 1 1.79e+03 World StepLimiter - 1828 -3.25 -26.8 9.69 5.84e-14 0 1 1.79e+03 World StepLimiter - 1829 -3.12 -25.8 9.7 5.83e-14 0 1 1.79e+03 World StepLimiter - 1830 -2.99 -24.8 9.7 5.82e-14 0 1 1.79e+03 World StepLimiter - 1831 -2.86 -23.8 9.71 5.8e-14 0 1 1.8e+03 World StepLimiter - 1832 -2.73 -22.8 9.71 5.79e-14 0 1 1.8e+03 World StepLimiter - 1833 -2.6 -21.8 9.72 5.78e-14 0 1 1.8e+03 World StepLimiter - 1834 -2.47 -20.9 9.73 5.77e-14 0 1 1.8e+03 World StepLimiter - 1835 -2.34 -19.9 9.73 5.76e-14 0 1 1.8e+03 World StepLimiter - 1836 -2.21 -18.9 9.74 5.75e-14 0 1 1.8e+03 World StepLimiter - 1837 -2.07 -17.9 9.74 5.74e-14 0 1 1.8e+03 World StepLimiter - 1838 -1.94 -16.9 9.75 5.73e-14 0 1 1.8e+03 World StepLimiter - 1839 -1.81 -15.9 9.75 5.72e-14 0 1 1.8e+03 World StepLimiter - 1840 -1.68 -14.9 9.76 5.71e-14 0 1 1.8e+03 World StepLimiter - 1841 -1.55 -13.9 9.76 5.7e-14 0 1 1.81e+03 World StepLimiter - 1842 -1.41 -12.9 9.77 5.69e-14 0 1 1.81e+03 World StepLimiter - 1843 -1.28 -11.9 9.77 5.68e-14 0 1 1.81e+03 World StepLimiter - 1844 -1.15 -10.9 9.78 5.67e-14 0 1 1.81e+03 World StepLimiter - 1845 -1.02 -9.95 9.78 5.66e-14 0 1 1.81e+03 World StepLimiter - 1846 -0.885 -8.96 9.79 5.65e-14 0 1 1.81e+03 World StepLimiter - 1847 -0.752 -7.97 9.79 5.64e-14 0 1 1.81e+03 World StepLimiter - 1848 -0.62 -6.98 9.8 5.63e-14 0 1 1.81e+03 World StepLimiter - 1849 -0.487 -5.99 9.81 5.62e-14 0 1 1.81e+03 World StepLimiter - 1850 -0.354 -5 9.81 5.61e-14 0 1 1.81e+03 World StepLimiter - 1851 -0.221 -4 9.82 5.6e-14 0 1 1.82e+03 World StepLimiter - 1852 -0.0873 -3.01 9.82 5.59e-14 0 1 1.82e+03 World StepLimiter - 1853 0.0461 -2.02 9.83 5.58e-14 0 1 1.82e+03 World StepLimiter - 1854 0.18 -1.03 9.83 5.57e-14 0 1 1.82e+03 World StepLimiter - 1855 0.313 -0.0407 9.84 5.56e-14 0 1 1.82e+03 World StepLimiter - 1856 0.447 0.95 9.84 5.55e-14 0 1 1.82e+03 World StepLimiter - 1857 0.581 1.94 9.85 5.54e-14 0 1 1.82e+03 World StepLimiter - 1858 0.715 2.93 9.85 5.53e-14 0 1 1.82e+03 World StepLimiter - 1859 0.849 3.92 9.86 5.52e-14 0 1 1.82e+03 World StepLimiter - 1860 0.983 4.91 9.86 5.51e-14 0 1 1.82e+03 World StepLimiter - 1861 1.12 5.91 9.87 5.5e-14 0 1 1.83e+03 World StepLimiter - 1862 1.25 6.9 9.88 5.49e-14 0 1 1.83e+03 World StepLimiter - 1863 1.39 7.89 9.88 5.48e-14 0 1 1.83e+03 World StepLimiter - 1864 1.52 8.88 9.89 5.47e-14 0 1 1.83e+03 World StepLimiter - 1865 1.66 9.87 9.89 5.46e-14 0 1 1.83e+03 World StepLimiter - 1866 1.79 10.9 9.9 5.45e-14 0 1 1.83e+03 World StepLimiter - 1867 1.93 11.9 9.9 5.44e-14 0 1 1.83e+03 World StepLimiter - 1868 2.06 12.8 9.91 5.43e-14 0 1 1.83e+03 World StepLimiter - 1869 2.2 13.8 9.91 5.42e-14 0 1 1.83e+03 World StepLimiter - 1870 2.33 14.8 9.92 5.41e-14 0 1 1.83e+03 World StepLimiter - 1871 2.47 15.8 9.92 5.4e-14 0 1 1.84e+03 World StepLimiter - 1872 2.6 16.8 9.93 5.39e-14 0 1 1.84e+03 World StepLimiter - 1873 2.74 17.8 9.94 5.38e-14 0 1 1.84e+03 World StepLimiter - 1874 2.88 18.8 9.94 5.37e-14 0 1 1.84e+03 World StepLimiter - 1875 3.01 19.8 9.95 5.36e-14 0 1 1.84e+03 World StepLimiter - 1876 3.15 20.8 9.95 5.35e-14 0 1 1.84e+03 World StepLimiter - 1877 3.28 21.8 9.96 5.34e-14 0 1 1.84e+03 World StepLimiter - 1878 3.42 22.7 9.96 5.33e-14 0 1 1.84e+03 World StepLimiter - 1879 3.56 23.7 9.97 5.32e-14 0 1 1.84e+03 World StepLimiter - 1880 3.69 24.7 9.97 5.31e-14 0 1 1.84e+03 World StepLimiter - 1881 3.83 25.7 9.98 5.3e-14 0 1 1.85e+03 World StepLimiter - 1882 3.97 26.7 9.99 5.29e-14 0 1 1.85e+03 World StepLimiter - 1883 4.11 27.7 9.99 5.28e-14 0 1 1.85e+03 World StepLimiter - 1884 4.24 28.7 10 5.27e-14 0 1 1.85e+03 World StepLimiter - 1885 4.38 29.7 10 5.26e-14 0 1 1.85e+03 World StepLimiter - 1886 4.52 30.7 10 5.25e-14 0 1 1.85e+03 World StepLimiter - 1887 4.66 31.7 10 5.24e-14 0 1 1.85e+03 World StepLimiter - 1888 4.79 32.7 10 5.23e-14 0 1 1.85e+03 World StepLimiter - 1889 4.93 33.6 10 5.22e-14 0 1 1.85e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.054229162354neV MomDir: (0.13819589495449,0.99038917221138,0.0055841010178042) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1890 5.07 34.6 10 5.21e-14 0 0.997 1.85e+03 Guide Transportation *** StepTooSmall *** - 1891 5.07 34.6 10 5.21e-14 0 0 1.85e+03 World Transportation - 1892 4.92 33.6 10 5.22e-14 0 1 1.86e+03 World StepLimiter - 1893 4.77 32.7 10 5.23e-14 0 1 1.86e+03 World StepLimiter - 1894 4.62 31.7 10 5.24e-14 0 1 1.86e+03 World StepLimiter - 1895 4.47 30.7 10.1 5.25e-14 0 1 1.86e+03 World StepLimiter - 1896 4.31 29.7 10.1 5.26e-14 0 1 1.86e+03 World StepLimiter - 1897 4.16 28.7 10.1 5.27e-14 0 1 1.86e+03 World StepLimiter - 1898 4.01 27.7 10.1 5.28e-14 0 1 1.86e+03 World StepLimiter - 1899 3.86 26.7 10.1 5.29e-14 0 1 1.86e+03 World StepLimiter - 1900 3.71 25.7 10.1 5.3e-14 0 1 1.86e+03 World StepLimiter - 1901 3.56 24.7 10.1 5.31e-14 0 1 1.86e+03 World StepLimiter - 1902 3.41 23.8 10.1 5.32e-14 0 1 1.87e+03 World StepLimiter - 1903 3.26 22.8 10.1 5.33e-14 0 1 1.87e+03 World StepLimiter - 1904 3.11 21.8 10.1 5.34e-14 0 1 1.87e+03 World StepLimiter - 1905 2.96 20.8 10.1 5.35e-14 0 1 1.87e+03 World StepLimiter - 1906 2.81 19.8 10.1 5.36e-14 0 1 1.87e+03 World StepLimiter - 1907 2.66 18.8 10.1 5.37e-14 0 1 1.87e+03 World StepLimiter - 1908 2.52 17.8 10.1 5.38e-14 0 1 1.87e+03 World StepLimiter - 1909 2.37 16.8 10.1 5.39e-14 0 1 1.87e+03 World StepLimiter - 1910 2.22 15.8 10.1 5.4e-14 0 1 1.87e+03 World StepLimiter - 1911 2.07 14.9 10.1 5.41e-14 0 1 1.87e+03 World StepLimiter - 1912 1.92 13.9 10.1 5.42e-14 0 1 1.88e+03 World StepLimiter - 1913 1.77 12.9 10.2 5.43e-14 0 1 1.88e+03 World StepLimiter - 1914 1.62 11.9 10.2 5.44e-14 0 1 1.88e+03 World StepLimiter - 1915 1.48 10.9 10.2 5.45e-14 0 1 1.88e+03 World StepLimiter - 1916 1.33 9.91 10.2 5.46e-14 0 1 1.88e+03 World StepLimiter - 1917 1.18 8.92 10.2 5.47e-14 0 1 1.88e+03 World StepLimiter - 1918 1.03 7.93 10.2 5.48e-14 0 1 1.88e+03 World StepLimiter - 1919 0.884 6.95 10.2 5.49e-14 0 1 1.88e+03 World StepLimiter - 1920 0.737 5.96 10.2 5.5e-14 0 1 1.88e+03 World StepLimiter - 1921 0.589 4.97 10.2 5.51e-14 0 1 1.88e+03 World StepLimiter - 1922 0.442 3.98 10.2 5.52e-14 0 1 1.89e+03 World StepLimiter - 1923 0.295 2.99 10.2 5.53e-14 0 1 1.89e+03 World StepLimiter - 1924 0.148 2 10.2 5.54e-14 0 1 1.89e+03 World StepLimiter - 1925 0.00149 1.01 10.2 5.55e-14 0 1 1.89e+03 World StepLimiter - 1926 -0.145 0.0221 10.2 5.56e-14 0 1 1.89e+03 World StepLimiter - 1927 -0.292 -0.967 10.2 5.57e-14 0 1 1.89e+03 World StepLimiter - 1928 -0.438 -1.96 10.2 5.58e-14 0 1 1.89e+03 World StepLimiter - 1929 -0.584 -2.95 10.2 5.59e-14 0 1 1.89e+03 World StepLimiter - 1930 -0.73 -3.93 10.2 5.6e-14 0 1 1.89e+03 World StepLimiter - 1931 -0.876 -4.92 10.2 5.61e-14 0 1 1.89e+03 World StepLimiter - 1932 -1.02 -5.91 10.3 5.62e-14 0 1 1.9e+03 World StepLimiter - 1933 -1.17 -6.9 10.3 5.63e-14 0 1 1.9e+03 World StepLimiter - 1934 -1.31 -7.89 10.3 5.64e-14 0 1 1.9e+03 World StepLimiter - 1935 -1.46 -8.88 10.3 5.65e-14 0 1 1.9e+03 World StepLimiter - 1936 -1.6 -9.87 10.3 5.66e-14 0 1 1.9e+03 World StepLimiter - 1937 -1.75 -10.9 10.3 5.67e-14 0 1 1.9e+03 World StepLimiter - 1938 -1.89 -11.8 10.3 5.68e-14 0 1 1.9e+03 World StepLimiter - 1939 -2.04 -12.8 10.3 5.69e-14 0 1 1.9e+03 World StepLimiter - 1940 -2.18 -13.8 10.3 5.7e-14 0 1 1.9e+03 World StepLimiter - 1941 -2.33 -14.8 10.3 5.71e-14 0 1 1.9e+03 World StepLimiter - 1942 -2.47 -15.8 10.3 5.72e-14 0 1 1.91e+03 World StepLimiter - 1943 -2.62 -16.8 10.3 5.73e-14 0 1 1.91e+03 World StepLimiter - 1944 -2.76 -17.8 10.3 5.74e-14 0 1 1.91e+03 World StepLimiter - 1945 -2.91 -18.8 10.3 5.75e-14 0 1 1.91e+03 World StepLimiter - 1946 -3.05 -19.8 10.3 5.76e-14 0 1 1.91e+03 World StepLimiter - 1947 -3.19 -20.8 10.3 5.77e-14 0 1 1.91e+03 World StepLimiter - 1948 -3.34 -21.7 10.3 5.78e-14 0 1 1.91e+03 World StepLimiter - 1949 -3.48 -22.7 10.3 5.79e-14 0 1 1.91e+03 World StepLimiter - 1950 -3.63 -23.7 10.4 5.8e-14 0 1 1.91e+03 World StepLimiter - 1951 -3.77 -24.7 10.4 5.81e-14 0 1 1.91e+03 World StepLimiter - 1952 -3.91 -25.7 10.4 5.82e-14 0 1 1.92e+03 World StepLimiter - 1953 -4.06 -26.7 10.4 5.83e-14 0 1 1.92e+03 World StepLimiter - 1954 -4.2 -27.7 10.4 5.84e-14 0 1 1.92e+03 World StepLimiter - 1955 -4.34 -28.7 10.4 5.85e-14 0 1 1.92e+03 World StepLimiter - 1956 -4.48 -29.7 10.4 5.86e-14 0 1 1.92e+03 World StepLimiter - 1957 -4.63 -30.7 10.4 5.87e-14 0 1 1.92e+03 World StepLimiter - 1958 -4.77 -31.6 10.4 5.89e-14 0 1 1.92e+03 World StepLimiter - 1959 -4.91 -32.6 10.4 5.9e-14 0 1 1.92e+03 World StepLimiter - 1960 -5.05 -33.6 10.4 5.91e-14 0 1 1.92e+03 World StepLimiter - 1961 -5.2 -34.6 10.4 5.92e-14 0 1 1.92e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.15540657949neV MomDir: (-0.14211330545892,-0.98983653671824,0.0052382238571538) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 1962 -5.2 -34.6 10.4 5.92e-14 0 0.00117 1.92e+03 Guide Transportation *** StepTooSmall *** - 1963 -5.2 -34.6 10.4 5.92e-14 0 0 1.92e+03 World Transportation - 1964 -5.04 -33.6 10.4 5.91e-14 0 1 1.93e+03 World StepLimiter - 1965 -4.89 -32.6 10.4 5.9e-14 0 1 1.93e+03 World StepLimiter - 1966 -4.73 -31.6 10.4 5.89e-14 0 1 1.93e+03 World StepLimiter - 1967 -4.58 -30.7 10.4 5.88e-14 0 1 1.93e+03 World StepLimiter - 1968 -4.42 -29.7 10.4 5.86e-14 0 1 1.93e+03 World StepLimiter - 1969 -4.27 -28.7 10.4 5.85e-14 0 1 1.93e+03 World StepLimiter - 1970 -4.11 -27.7 10.4 5.84e-14 0 1 1.93e+03 World StepLimiter - 1971 -3.95 -26.7 10.5 5.83e-14 0 1 1.93e+03 World StepLimiter - 1972 -3.8 -25.7 10.5 5.82e-14 0 1 1.93e+03 World StepLimiter - 1973 -3.64 -24.7 10.5 5.81e-14 0 1 1.93e+03 World StepLimiter - 1974 -3.49 -23.7 10.5 5.8e-14 0 1 1.94e+03 World StepLimiter - 1975 -3.33 -22.8 10.5 5.79e-14 0 1 1.94e+03 World StepLimiter - 1976 -3.17 -21.8 10.5 5.78e-14 0 1 1.94e+03 World StepLimiter - 1977 -3.02 -20.8 10.5 5.77e-14 0 1 1.94e+03 World StepLimiter - 1978 -2.86 -19.8 10.5 5.76e-14 0 1 1.94e+03 World StepLimiter - 1979 -2.7 -18.8 10.5 5.75e-14 0 1 1.94e+03 World StepLimiter - 1980 -2.55 -17.8 10.5 5.74e-14 0 1 1.94e+03 World StepLimiter - 1981 -2.39 -16.8 10.5 5.73e-14 0 1 1.94e+03 World StepLimiter - 1982 -2.23 -15.8 10.5 5.72e-14 0 1 1.94e+03 World StepLimiter - 1983 -2.07 -14.9 10.5 5.71e-14 0 1 1.94e+03 World StepLimiter - 1984 -1.92 -13.9 10.5 5.7e-14 0 1 1.95e+03 World StepLimiter - 1985 -1.76 -12.9 10.5 5.69e-14 0 1 1.95e+03 World StepLimiter - 1986 -1.6 -11.9 10.5 5.68e-14 0 1 1.95e+03 World StepLimiter - 1987 -1.44 -10.9 10.5 5.67e-14 0 1 1.95e+03 World StepLimiter - 1988 -1.28 -9.92 10.5 5.66e-14 0 1 1.95e+03 World StepLimiter - 1989 -1.13 -8.93 10.5 5.65e-14 0 1 1.95e+03 World StepLimiter - 1990 -0.967 -7.95 10.6 5.64e-14 0 1 1.95e+03 World StepLimiter - 1991 -0.808 -6.96 10.6 5.63e-14 0 1 1.95e+03 World StepLimiter - 1992 -0.65 -5.97 10.6 5.62e-14 0 1 1.95e+03 World StepLimiter - 1993 -0.491 -4.98 10.6 5.61e-14 0 1 1.95e+03 World StepLimiter - 1994 -0.332 -4 10.6 5.6e-14 0 1 1.96e+03 World StepLimiter - 1995 -0.173 -3.01 10.6 5.59e-14 0 1 1.96e+03 World StepLimiter - 1996 -0.0134 -2.02 10.6 5.58e-14 0 1 1.96e+03 World StepLimiter - 1997 0.146 -1.03 10.6 5.57e-14 0 1 1.96e+03 World StepLimiter - 1998 0.306 -0.0478 10.6 5.56e-14 0 1 1.96e+03 World StepLimiter - 1999 0.465 0.939 10.6 5.55e-14 0 1 1.96e+03 World StepLimiter - 2000 0.625 1.93 10.6 5.54e-14 0 1 1.96e+03 World StepLimiter - 2001 0.785 2.91 10.6 5.53e-14 0 1 1.96e+03 World StepLimiter - 2002 0.946 3.9 10.6 5.52e-14 0 1 1.96e+03 World StepLimiter - 2003 1.11 4.89 10.6 5.51e-14 0 1 1.96e+03 World StepLimiter - 2004 1.27 5.87 10.6 5.5e-14 0 1 1.97e+03 World StepLimiter - 2005 1.43 6.86 10.6 5.49e-14 0 1 1.97e+03 World StepLimiter - 2006 1.59 7.85 10.6 5.48e-14 0 1 1.97e+03 World StepLimiter - 2007 1.75 8.84 10.6 5.47e-14 0 1 1.97e+03 World StepLimiter - 2008 1.91 9.82 10.6 5.46e-14 0 1 1.97e+03 World StepLimiter - 2009 2.07 10.8 10.7 5.45e-14 0 1 1.97e+03 World StepLimiter - 2010 2.23 11.8 10.7 5.44e-14 0 1 1.97e+03 World StepLimiter - 2011 2.39 12.8 10.7 5.43e-14 0 1 1.97e+03 World StepLimiter - 2012 2.56 13.8 10.7 5.42e-14 0 1 1.97e+03 World StepLimiter - 2013 2.72 14.8 10.7 5.41e-14 0 1 1.97e+03 World StepLimiter - 2014 2.88 15.7 10.7 5.4e-14 0 1 1.98e+03 World StepLimiter - 2015 3.04 16.7 10.7 5.39e-14 0 1 1.98e+03 World StepLimiter - 2016 3.2 17.7 10.7 5.38e-14 0 1 1.98e+03 World StepLimiter - 2017 3.37 18.7 10.7 5.37e-14 0 1 1.98e+03 World StepLimiter - 2018 3.53 19.7 10.7 5.36e-14 0 1 1.98e+03 World StepLimiter - 2019 3.69 20.7 10.7 5.35e-14 0 1 1.98e+03 World StepLimiter - 2020 3.85 21.7 10.7 5.34e-14 0 1 1.98e+03 World StepLimiter - 2021 4.02 22.7 10.7 5.33e-14 0 1 1.98e+03 World StepLimiter - 2022 4.18 23.6 10.7 5.32e-14 0 1 1.98e+03 World StepLimiter - 2023 4.34 24.6 10.7 5.31e-14 0 1 1.98e+03 World StepLimiter - 2024 4.51 25.6 10.7 5.3e-14 0 1 1.99e+03 World StepLimiter - 2025 4.67 26.6 10.7 5.29e-14 0 1 1.99e+03 World StepLimiter - 2026 4.83 27.6 10.7 5.28e-14 0 1 1.99e+03 World StepLimiter - 2027 5 28.6 10.8 5.27e-14 0 1 1.99e+03 World StepLimiter - 2028 5.16 29.6 10.8 5.26e-14 0 1 1.99e+03 World StepLimiter - 2029 5.33 30.5 10.8 5.25e-14 0 1 1.99e+03 World StepLimiter - 2030 5.49 31.5 10.8 5.24e-14 0 1 1.99e+03 World StepLimiter - 2031 5.66 32.5 10.8 5.23e-14 0 1 1.99e+03 World StepLimiter - 2032 5.82 33.5 10.8 5.22e-14 0 1 1.99e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.069247715544neV MomDir: (0.16500558299584,0.9862768294906,0.0055832956367962) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2033 5.99 34.5 10.8 5.21e-14 0 0.997 1.99e+03 Guide Transportation *** StepTooSmall *** - 2034 5.99 34.5 10.8 5.21e-14 0 0 1.99e+03 World Transportation - 2035 5.81 33.5 10.8 5.22e-14 0 1 2e+03 World StepLimiter - 2036 5.63 32.5 10.8 5.23e-14 0 1 2e+03 World StepLimiter - 2037 5.46 31.5 10.8 5.24e-14 0 1 2e+03 World StepLimiter - 2038 5.28 30.5 10.8 5.25e-14 0 1 2e+03 World StepLimiter - 2039 5.1 29.6 10.8 5.26e-14 0 1 2e+03 World StepLimiter - 2040 4.93 28.6 10.8 5.27e-14 0 1 2e+03 World StepLimiter - 2041 4.75 27.6 10.8 5.28e-14 0 1 2e+03 World StepLimiter - 2042 4.57 26.6 10.8 5.29e-14 0 1 2e+03 World StepLimiter - 2043 4.4 25.6 10.8 5.3e-14 0 1 2e+03 World StepLimiter - 2044 4.22 24.6 10.8 5.31e-14 0 1 2e+03 World StepLimiter - 2045 4.05 23.7 10.8 5.32e-14 0 1 2.01e+03 World StepLimiter - 2046 3.87 22.7 10.9 5.33e-14 0 1 2.01e+03 World StepLimiter - 2047 3.7 21.7 10.9 5.34e-14 0 1 2.01e+03 World StepLimiter - 2048 3.52 20.7 10.9 5.35e-14 0 1 2.01e+03 World StepLimiter - 2049 3.35 19.7 10.9 5.36e-14 0 1 2.01e+03 World StepLimiter - 2050 3.17 18.7 10.9 5.37e-14 0 1 2.01e+03 World StepLimiter - 2051 3 17.7 10.9 5.38e-14 0 1 2.01e+03 World StepLimiter - 2052 2.83 16.8 10.9 5.39e-14 0 1 2.01e+03 World StepLimiter - 2053 2.65 15.8 10.9 5.4e-14 0 1 2.01e+03 World StepLimiter - 2054 2.48 14.8 10.9 5.41e-14 0 1 2.01e+03 World StepLimiter - 2055 2.31 13.8 10.9 5.42e-14 0 1 2.02e+03 World StepLimiter - 2056 2.13 12.8 10.9 5.43e-14 0 1 2.02e+03 World StepLimiter - 2057 1.96 11.8 10.9 5.44e-14 0 1 2.02e+03 World StepLimiter - 2058 1.79 10.9 10.9 5.45e-14 0 1 2.02e+03 World StepLimiter - 2059 1.61 9.87 10.9 5.46e-14 0 1 2.02e+03 World StepLimiter - 2060 1.44 8.89 10.9 5.47e-14 0 1 2.02e+03 World StepLimiter - 2061 1.27 7.9 10.9 5.48e-14 0 1 2.02e+03 World StepLimiter - 2062 1.09 6.92 10.9 5.49e-14 0 1 2.02e+03 World StepLimiter - 2063 0.922 5.93 10.9 5.5e-14 0 1 2.02e+03 World StepLimiter - 2064 0.75 4.95 11 5.51e-14 0 1 2.02e+03 World StepLimiter - 2065 0.578 3.96 11 5.52e-14 0 1 2.03e+03 World StepLimiter - 2066 0.406 2.98 11 5.53e-14 0 1 2.03e+03 World StepLimiter - 2067 0.235 1.99 11 5.54e-14 0 1 2.03e+03 World StepLimiter - 2068 0.0633 1 11 5.55e-14 0 1 2.03e+03 World StepLimiter - 2069 -0.108 0.0195 11 5.56e-14 0 1 2.03e+03 World StepLimiter - 2070 -0.279 -0.966 11 5.57e-14 0 1 2.03e+03 World StepLimiter - 2071 -0.45 -1.95 11 5.58e-14 0 1 2.03e+03 World StepLimiter - 2072 -0.621 -2.94 11 5.59e-14 0 1 2.03e+03 World StepLimiter - 2073 -0.792 -3.92 11 5.6e-14 0 1 2.03e+03 World StepLimiter - 2074 -0.963 -4.91 11 5.61e-14 0 1 2.03e+03 World StepLimiter - 2075 -1.13 -5.89 11 5.62e-14 0 1 2.04e+03 World StepLimiter - 2076 -1.3 -6.88 11 5.63e-14 0 1 2.04e+03 World StepLimiter - 2077 -1.47 -7.86 11 5.64e-14 0 1 2.04e+03 World StepLimiter - 2078 -1.64 -8.85 11 5.65e-14 0 1 2.04e+03 World StepLimiter - 2079 -1.81 -9.83 11 5.66e-14 0 1 2.04e+03 World StepLimiter - 2080 -1.98 -10.8 11 5.67e-14 0 1 2.04e+03 World StepLimiter - 2081 -2.15 -11.8 11 5.68e-14 0 1 2.04e+03 World StepLimiter - 2082 -2.32 -12.8 11 5.69e-14 0 1 2.04e+03 World StepLimiter - 2083 -2.49 -13.8 11.1 5.7e-14 0 1 2.04e+03 World StepLimiter - 2084 -2.66 -14.8 11.1 5.71e-14 0 1 2.04e+03 World StepLimiter - 2085 -2.83 -15.7 11.1 5.72e-14 0 1 2.05e+03 World StepLimiter - 2086 -3 -16.7 11.1 5.73e-14 0 1 2.05e+03 World StepLimiter - 2087 -3.17 -17.7 11.1 5.74e-14 0 1 2.05e+03 World StepLimiter - 2088 -3.33 -18.7 11.1 5.75e-14 0 1 2.05e+03 World StepLimiter - 2089 -3.5 -19.7 11.1 5.76e-14 0 1 2.05e+03 World StepLimiter - 2090 -3.67 -20.7 11.1 5.77e-14 0 1 2.05e+03 World StepLimiter - 2091 -3.84 -21.7 11.1 5.78e-14 0 1 2.05e+03 World StepLimiter - 2092 -4.01 -22.6 11.1 5.79e-14 0 1 2.05e+03 World StepLimiter - 2093 -4.18 -23.6 11.1 5.8e-14 0 1 2.05e+03 World StepLimiter - 2094 -4.34 -24.6 11.1 5.81e-14 0 1 2.05e+03 World StepLimiter - 2095 -4.51 -25.6 11.1 5.82e-14 0 1 2.06e+03 World StepLimiter - 2096 -4.68 -26.6 11.1 5.83e-14 0 1 2.06e+03 World StepLimiter - 2097 -4.84 -27.6 11.1 5.84e-14 0 1 2.06e+03 World StepLimiter - 2098 -5.01 -28.6 11.1 5.85e-14 0 1 2.06e+03 World StepLimiter - 2099 -5.18 -29.5 11.1 5.86e-14 0 1 2.06e+03 World StepLimiter - 2100 -5.35 -30.5 11.1 5.87e-14 0 1 2.06e+03 World StepLimiter - 2101 -5.51 -31.5 11.1 5.88e-14 0 1 2.06e+03 World StepLimiter - 2102 -5.68 -32.5 11.2 5.89e-14 0 1 2.06e+03 World StepLimiter - 2103 -5.84 -33.5 11.2 5.9e-14 0 1 2.06e+03 World StepLimiter - 2104 -6.01 -34.5 11.2 5.91e-14 0 1 2.06e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.141856139305neV MomDir: (-0.16608319862886,-0.98609782773175,0.0052388239074266) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2105 -6.01 -34.5 11.2 5.91e-14 0 0.00138 2.06e+03 Guide Transportation *** StepTooSmall *** - 2106 -6.01 -34.5 11.2 5.91e-14 0 0 2.06e+03 World Transportation - 2107 -5.83 -33.5 11.2 5.9e-14 0 1 2.07e+03 World StepLimiter - 2108 -5.66 -32.5 11.2 5.89e-14 0 1 2.07e+03 World StepLimiter - 2109 -5.48 -31.5 11.2 5.88e-14 0 1 2.07e+03 World StepLimiter - 2110 -5.3 -30.5 11.2 5.87e-14 0 1 2.07e+03 World StepLimiter - 2111 -5.12 -29.6 11.2 5.86e-14 0 1 2.07e+03 World StepLimiter - 2112 -4.94 -28.6 11.2 5.85e-14 0 1 2.07e+03 World StepLimiter - 2113 -4.77 -27.6 11.2 5.84e-14 0 1 2.07e+03 World StepLimiter - 2114 -4.59 -26.6 11.2 5.83e-14 0 1 2.07e+03 World StepLimiter - 2115 -4.41 -25.6 11.2 5.82e-14 0 1 2.07e+03 World StepLimiter - 2116 -4.23 -24.6 11.2 5.81e-14 0 1 2.07e+03 World StepLimiter - 2117 -4.05 -23.7 11.2 5.8e-14 0 1 2.08e+03 World StepLimiter - 2118 -3.87 -22.7 11.2 5.79e-14 0 1 2.08e+03 World StepLimiter - 2119 -3.69 -21.7 11.2 5.78e-14 0 1 2.08e+03 World StepLimiter - 2120 -3.51 -20.7 11.2 5.77e-14 0 1 2.08e+03 World StepLimiter - 2121 -3.33 -19.7 11.2 5.76e-14 0 1 2.08e+03 World StepLimiter - 2122 -3.15 -18.7 11.2 5.75e-14 0 1 2.08e+03 World StepLimiter - 2123 -2.97 -17.8 11.3 5.74e-14 0 1 2.08e+03 World StepLimiter - 2124 -2.79 -16.8 11.3 5.73e-14 0 1 2.08e+03 World StepLimiter - 2125 -2.61 -15.8 11.3 5.72e-14 0 1 2.08e+03 World StepLimiter - 2126 -2.43 -14.8 11.3 5.71e-14 0 1 2.08e+03 World StepLimiter - 2127 -2.25 -13.8 11.3 5.7e-14 0 1 2.09e+03 World StepLimiter - 2128 -2.07 -12.8 11.3 5.69e-14 0 1 2.09e+03 World StepLimiter - 2129 -1.89 -11.9 11.3 5.68e-14 0 1 2.09e+03 World StepLimiter - 2130 -1.71 -10.9 11.3 5.67e-14 0 1 2.09e+03 World StepLimiter - 2131 -1.53 -9.89 11.3 5.66e-14 0 1 2.09e+03 World StepLimiter - 2132 -1.35 -8.9 11.3 5.65e-14 0 1 2.09e+03 World StepLimiter - 2133 -1.17 -7.92 11.3 5.64e-14 0 1 2.09e+03 World StepLimiter - 2134 -0.983 -6.94 11.3 5.63e-14 0 1 2.09e+03 World StepLimiter - 2135 -0.801 -5.95 11.3 5.62e-14 0 1 2.09e+03 World StepLimiter - 2136 -0.619 -4.97 11.3 5.61e-14 0 1 2.09e+03 World StepLimiter - 2137 -0.437 -3.99 11.3 5.6e-14 0 1 2.1e+03 World StepLimiter - 2138 -0.255 -3 11.3 5.59e-14 0 1 2.1e+03 World StepLimiter - 2139 -0.0724 -2.02 11.3 5.58e-14 0 1 2.1e+03 World StepLimiter - 2140 0.11 -1.04 11.3 5.57e-14 0 1 2.1e+03 World StepLimiter - 2141 0.293 -0.0529 11.4 5.56e-14 0 1 2.1e+03 World StepLimiter - 2142 0.476 0.93 11.4 5.55e-14 0 1 2.1e+03 World StepLimiter - 2143 0.659 1.91 11.4 5.54e-14 0 1 2.1e+03 World StepLimiter - 2144 0.843 2.9 11.4 5.53e-14 0 1 2.1e+03 World StepLimiter - 2145 1.03 3.88 11.4 5.52e-14 0 1 2.1e+03 World StepLimiter - 2146 1.21 4.86 11.4 5.51e-14 0 1 2.1e+03 World StepLimiter - 2147 1.39 5.85 11.4 5.5e-14 0 1 2.11e+03 World StepLimiter - 2148 1.58 6.83 11.4 5.49e-14 0 1 2.11e+03 World StepLimiter - 2149 1.76 7.81 11.4 5.48e-14 0 1 2.11e+03 World StepLimiter - 2150 1.95 8.79 11.4 5.47e-14 0 1 2.11e+03 World StepLimiter - 2151 2.13 9.78 11.4 5.46e-14 0 1 2.11e+03 World StepLimiter - 2152 2.32 10.8 11.4 5.45e-14 0 1 2.11e+03 World StepLimiter - 2153 2.5 11.7 11.4 5.44e-14 0 1 2.11e+03 World StepLimiter - 2154 2.69 12.7 11.4 5.43e-14 0 1 2.11e+03 World StepLimiter - 2155 2.87 13.7 11.4 5.42e-14 0 1 2.11e+03 World StepLimiter - 2156 3.06 14.7 11.4 5.41e-14 0 1 2.11e+03 World StepLimiter - 2157 3.24 15.7 11.4 5.4e-14 0 1 2.12e+03 World StepLimiter - 2158 3.43 16.7 11.4 5.39e-14 0 1 2.12e+03 World StepLimiter - 2159 3.61 17.6 11.4 5.38e-14 0 1 2.12e+03 World StepLimiter - 2160 3.8 18.6 11.5 5.37e-14 0 1 2.12e+03 World StepLimiter - 2161 3.99 19.6 11.5 5.36e-14 0 1 2.12e+03 World StepLimiter - 2162 4.17 20.6 11.5 5.35e-14 0 1 2.12e+03 World StepLimiter - 2163 4.36 21.6 11.5 5.34e-14 0 1 2.12e+03 World StepLimiter - 2164 4.55 22.6 11.5 5.33e-14 0 1 2.12e+03 World StepLimiter - 2165 4.73 23.5 11.5 5.32e-14 0 1 2.12e+03 World StepLimiter - 2166 4.92 24.5 11.5 5.31e-14 0 1 2.12e+03 World StepLimiter - 2167 5.11 25.5 11.5 5.3e-14 0 1 2.13e+03 World StepLimiter - 2168 5.29 26.5 11.5 5.29e-14 0 1 2.13e+03 World StepLimiter - 2169 5.48 27.5 11.5 5.28e-14 0 1 2.13e+03 World StepLimiter - 2170 5.67 28.4 11.5 5.27e-14 0 1 2.13e+03 World StepLimiter - 2171 5.86 29.4 11.5 5.26e-14 0 1 2.13e+03 World StepLimiter - 2172 6.05 30.4 11.5 5.25e-14 0 1 2.13e+03 World StepLimiter - 2173 6.23 31.4 11.5 5.24e-14 0 1 2.13e+03 World StepLimiter - 2174 6.42 32.4 11.5 5.23e-14 0 1 2.13e+03 World StepLimiter - 2175 6.61 33.4 11.5 5.22e-14 0 1 2.13e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.084767797061neV MomDir: (0.18902015143659,0.98195734044287,0.0055824637269767) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2176 6.8 34.3 11.5 5.21e-14 0 0.997 2.13e+03 Guide Transportation *** StepTooSmall *** - 2177 6.8 34.3 11.5 5.21e-14 0 0 2.13e+03 World Transportation - 2178 6.6 33.4 11.5 5.22e-14 0 1 2.14e+03 World StepLimiter - 2179 6.4 32.4 11.6 5.23e-14 0 1 2.14e+03 World StepLimiter - 2180 6.2 31.4 11.6 5.24e-14 0 1 2.14e+03 World StepLimiter - 2181 6 30.4 11.6 5.25e-14 0 1 2.14e+03 World StepLimiter - 2182 5.8 29.4 11.6 5.26e-14 0 1 2.14e+03 World StepLimiter - 2183 5.61 28.5 11.6 5.27e-14 0 1 2.14e+03 World StepLimiter - 2184 5.41 27.5 11.6 5.28e-14 0 1 2.14e+03 World StepLimiter - 2185 5.21 26.5 11.6 5.29e-14 0 1 2.14e+03 World StepLimiter - 2186 5.01 25.5 11.6 5.3e-14 0 1 2.14e+03 World StepLimiter - 2187 4.81 24.5 11.6 5.31e-14 0 1 2.14e+03 World StepLimiter - 2188 4.62 23.6 11.6 5.32e-14 0 1 2.15e+03 World StepLimiter - 2189 4.42 22.6 11.6 5.33e-14 0 1 2.15e+03 World StepLimiter - 2190 4.22 21.6 11.6 5.34e-14 0 1 2.15e+03 World StepLimiter - 2191 4.03 20.6 11.6 5.35e-14 0 1 2.15e+03 World StepLimiter - 2192 3.83 19.6 11.6 5.36e-14 0 1 2.15e+03 World StepLimiter - 2193 3.63 18.7 11.6 5.37e-14 0 1 2.15e+03 World StepLimiter - 2194 3.44 17.7 11.6 5.38e-14 0 1 2.15e+03 World StepLimiter - 2195 3.24 16.7 11.6 5.39e-14 0 1 2.15e+03 World StepLimiter - 2196 3.04 15.7 11.6 5.4e-14 0 1 2.15e+03 World StepLimiter - 2197 2.85 14.7 11.7 5.41e-14 0 1 2.15e+03 World StepLimiter - 2198 2.65 13.7 11.7 5.42e-14 0 1 2.16e+03 World StepLimiter - 2199 2.46 12.8 11.7 5.43e-14 0 1 2.16e+03 World StepLimiter - 2200 2.26 11.8 11.7 5.44e-14 0 1 2.16e+03 World StepLimiter - 2201 2.07 10.8 11.7 5.45e-14 0 1 2.16e+03 World StepLimiter - 2202 1.87 9.82 11.7 5.46e-14 0 1 2.16e+03 World StepLimiter - 2203 1.68 8.84 11.7 5.47e-14 0 1 2.16e+03 World StepLimiter - 2204 1.48 7.86 11.7 5.48e-14 0 1 2.16e+03 World StepLimiter - 2205 1.29 6.88 11.7 5.49e-14 0 1 2.16e+03 World StepLimiter - 2206 1.09 5.9 11.7 5.5e-14 0 1 2.16e+03 World StepLimiter - 2207 0.898 4.92 11.7 5.51e-14 0 1 2.16e+03 World StepLimiter - 2208 0.704 3.94 11.7 5.52e-14 0 1 2.17e+03 World StepLimiter - 2209 0.51 2.96 11.7 5.53e-14 0 1 2.17e+03 World StepLimiter - 2210 0.317 1.98 11.7 5.54e-14 0 1 2.17e+03 World StepLimiter - 2211 0.124 0.996 11.7 5.55e-14 0 1 2.17e+03 World StepLimiter - 2212 -0.0697 0.0145 11.7 5.56e-14 0 1 2.17e+03 World StepLimiter - 2213 -0.263 -0.967 11.7 5.57e-14 0 1 2.17e+03 World StepLimiter - 2214 -0.456 -1.95 11.7 5.58e-14 0 1 2.17e+03 World StepLimiter - 2215 -0.648 -2.93 11.8 5.59e-14 0 1 2.17e+03 World StepLimiter - 2216 -0.841 -3.91 11.8 5.6e-14 0 1 2.17e+03 World StepLimiter - 2217 -1.03 -4.89 11.8 5.61e-14 0 1 2.17e+03 World StepLimiter - 2218 -1.23 -5.87 11.8 5.62e-14 0 1 2.18e+03 World StepLimiter - 2219 -1.42 -6.85 11.8 5.63e-14 0 1 2.18e+03 World StepLimiter - 2220 -1.61 -7.84 11.8 5.64e-14 0 1 2.18e+03 World StepLimiter - 2221 -1.8 -8.82 11.8 5.65e-14 0 1 2.18e+03 World StepLimiter - 2222 -1.99 -9.8 11.8 5.66e-14 0 1 2.18e+03 World StepLimiter - 2223 -2.18 -10.8 11.8 5.67e-14 0 1 2.18e+03 World StepLimiter - 2224 -2.37 -11.8 11.8 5.68e-14 0 1 2.18e+03 World StepLimiter - 2225 -2.57 -12.7 11.8 5.69e-14 0 1 2.18e+03 World StepLimiter - 2226 -2.76 -13.7 11.8 5.7e-14 0 1 2.18e+03 World StepLimiter - 2227 -2.95 -14.7 11.8 5.71e-14 0 1 2.18e+03 World StepLimiter - 2228 -3.14 -15.7 11.8 5.72e-14 0 1 2.19e+03 World StepLimiter - 2229 -3.33 -16.7 11.8 5.73e-14 0 1 2.19e+03 World StepLimiter - 2230 -3.52 -17.7 11.8 5.74e-14 0 1 2.19e+03 World StepLimiter - 2231 -3.71 -18.6 11.8 5.75e-14 0 1 2.19e+03 World StepLimiter - 2232 -3.9 -19.6 11.8 5.76e-14 0 1 2.19e+03 World StepLimiter - 2233 -4.09 -20.6 11.8 5.77e-14 0 1 2.19e+03 World StepLimiter - 2234 -4.28 -21.6 11.9 5.78e-14 0 1 2.19e+03 World StepLimiter - 2235 -4.47 -22.6 11.9 5.79e-14 0 1 2.19e+03 World StepLimiter - 2236 -4.66 -23.5 11.9 5.8e-14 0 1 2.19e+03 World StepLimiter - 2237 -4.84 -24.5 11.9 5.81e-14 0 1 2.19e+03 World StepLimiter - 2238 -5.03 -25.5 11.9 5.82e-14 0 1 2.2e+03 World StepLimiter - 2239 -5.22 -26.5 11.9 5.83e-14 0 1 2.2e+03 World StepLimiter - 2240 -5.41 -27.5 11.9 5.84e-14 0 1 2.2e+03 World StepLimiter - 2241 -5.6 -28.5 11.9 5.85e-14 0 1 2.2e+03 World StepLimiter - 2242 -5.79 -29.4 11.9 5.86e-14 0 1 2.2e+03 World StepLimiter - 2243 -5.97 -30.4 11.9 5.87e-14 0 1 2.2e+03 World StepLimiter - 2244 -6.16 -31.4 11.9 5.88e-14 0 1 2.2e+03 World StepLimiter - 2245 -6.35 -32.4 11.9 5.89e-14 0 1 2.2e+03 World StepLimiter - 2246 -6.54 -33.4 11.9 5.9e-14 0 1 2.2e+03 World StepLimiter - 2247 -6.73 -34.3 11.9 5.91e-14 0 1 2.2e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.128298587468neV MomDir: (-0.18727462292813,-0.98229362414619,0.0052394244790435) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2248 -6.73 -34.3 11.9 5.91e-14 0 0.00144 2.2e+03 Guide Transportation *** StepTooSmall *** - 2249 -6.73 -34.3 11.9 5.91e-14 0 0 2.2e+03 World Transportation - 2250 -6.53 -33.4 11.9 5.9e-14 0 1 2.21e+03 World StepLimiter - 2251 -6.33 -32.4 11.9 5.89e-14 0 1 2.21e+03 World StepLimiter - 2252 -6.13 -31.4 11.9 5.88e-14 0 1 2.21e+03 World StepLimiter - 2253 -5.94 -30.4 11.9 5.87e-14 0 1 2.21e+03 World StepLimiter - 2254 -5.74 -29.4 11.9 5.86e-14 0 1 2.21e+03 World StepLimiter - 2255 -5.54 -28.5 12 5.85e-14 0 1 2.21e+03 World StepLimiter - 2256 -5.34 -27.5 12 5.84e-14 0 1 2.21e+03 World StepLimiter - 2257 -5.14 -26.5 12 5.83e-14 0 1 2.21e+03 World StepLimiter - 2258 -4.95 -25.5 12 5.82e-14 0 1 2.21e+03 World StepLimiter - 2259 -4.75 -24.5 12 5.81e-14 0 1 2.21e+03 World StepLimiter - 2260 -4.55 -23.6 12 5.8e-14 0 1 2.22e+03 World StepLimiter - 2261 -4.35 -22.6 12 5.79e-14 0 1 2.22e+03 World StepLimiter - 2262 -4.15 -21.6 12 5.78e-14 0 1 2.22e+03 World StepLimiter - 2263 -3.95 -20.6 12 5.77e-14 0 1 2.22e+03 World StepLimiter - 2264 -3.75 -19.6 12 5.76e-14 0 1 2.22e+03 World StepLimiter - 2265 -3.55 -18.7 12 5.75e-14 0 1 2.22e+03 World StepLimiter - 2266 -3.35 -17.7 12 5.74e-14 0 1 2.22e+03 World StepLimiter - 2267 -3.15 -16.7 12 5.73e-14 0 1 2.22e+03 World StepLimiter - 2268 -2.95 -15.7 12 5.72e-14 0 1 2.22e+03 World StepLimiter - 2269 -2.75 -14.7 12 5.71e-14 0 1 2.22e+03 World StepLimiter - 2270 -2.55 -13.8 12 5.7e-14 0 1 2.23e+03 World StepLimiter - 2271 -2.35 -12.8 12 5.69e-14 0 1 2.23e+03 World StepLimiter - 2272 -2.15 -11.8 12 5.68e-14 0 1 2.23e+03 World StepLimiter - 2273 -1.95 -10.8 12 5.67e-14 0 1 2.23e+03 World StepLimiter - 2274 -1.75 -9.85 12.1 5.66e-14 0 1 2.23e+03 World StepLimiter - 2275 -1.54 -8.87 12.1 5.65e-14 0 1 2.23e+03 World StepLimiter - 2276 -1.34 -7.89 12.1 5.64e-14 0 1 2.23e+03 World StepLimiter - 2277 -1.14 -6.91 12.1 5.63e-14 0 1 2.23e+03 World StepLimiter - 2278 -0.94 -5.93 12.1 5.62e-14 0 1 2.23e+03 World StepLimiter - 2279 -0.737 -4.95 12.1 5.61e-14 0 1 2.23e+03 World StepLimiter - 2280 -0.535 -3.97 12.1 5.6e-14 0 1 2.24e+03 World StepLimiter - 2281 -0.333 -2.99 12.1 5.59e-14 0 1 2.24e+03 World StepLimiter - 2282 -0.13 -2.01 12.1 5.58e-14 0 1 2.24e+03 World StepLimiter - 2283 0.073 -1.03 12.1 5.57e-14 0 1 2.24e+03 World StepLimiter - 2284 0.276 -0.0558 12.1 5.56e-14 0 1 2.24e+03 World StepLimiter - 2285 0.479 0.923 12.1 5.55e-14 0 1 2.24e+03 World StepLimiter - 2286 0.683 1.9 12.1 5.54e-14 0 1 2.24e+03 World StepLimiter - 2287 0.886 2.88 12.1 5.53e-14 0 1 2.24e+03 World StepLimiter - 2288 1.09 3.86 12.1 5.52e-14 0 1 2.24e+03 World StepLimiter - 2289 1.29 4.84 12.1 5.51e-14 0 1 2.24e+03 World StepLimiter - 2290 1.5 5.82 12.1 5.5e-14 0 1 2.25e+03 World StepLimiter - 2291 1.7 6.8 12.1 5.49e-14 0 1 2.25e+03 World StepLimiter - 2292 1.91 7.78 12.2 5.48e-14 0 1 2.25e+03 World StepLimiter - 2293 2.11 8.75 12.2 5.47e-14 0 1 2.25e+03 World StepLimiter - 2294 2.32 9.73 12.2 5.46e-14 0 1 2.25e+03 World StepLimiter - 2295 2.52 10.7 12.2 5.45e-14 0 1 2.25e+03 World StepLimiter - 2296 2.73 11.7 12.2 5.44e-14 0 1 2.25e+03 World StepLimiter - 2297 2.93 12.7 12.2 5.43e-14 0 1 2.25e+03 World StepLimiter - 2298 3.14 13.6 12.2 5.42e-14 0 1 2.25e+03 World StepLimiter - 2299 3.34 14.6 12.2 5.41e-14 0 1 2.25e+03 World StepLimiter - 2300 3.55 15.6 12.2 5.4e-14 0 1 2.26e+03 World StepLimiter - 2301 3.76 16.6 12.2 5.39e-14 0 1 2.26e+03 World StepLimiter - 2302 3.96 17.6 12.2 5.38e-14 0 1 2.26e+03 World StepLimiter - 2303 4.17 18.5 12.2 5.37e-14 0 1 2.26e+03 World StepLimiter - 2304 4.38 19.5 12.2 5.36e-14 0 1 2.26e+03 World StepLimiter - 2305 4.58 20.5 12.2 5.35e-14 0 1 2.26e+03 World StepLimiter - 2306 4.79 21.5 12.2 5.34e-14 0 1 2.26e+03 World StepLimiter - 2307 5 22.5 12.2 5.33e-14 0 1 2.26e+03 World StepLimiter - 2308 5.21 23.4 12.2 5.32e-14 0 1 2.26e+03 World StepLimiter - 2309 5.41 24.4 12.2 5.31e-14 0 1 2.26e+03 World StepLimiter - 2310 5.62 25.4 12.3 5.3e-14 0 1 2.27e+03 World StepLimiter - 2311 5.83 26.4 12.3 5.29e-14 0 1 2.27e+03 World StepLimiter - 2312 6.04 27.3 12.3 5.28e-14 0 1 2.27e+03 World StepLimiter - 2313 6.25 28.3 12.3 5.27e-14 0 1 2.27e+03 World StepLimiter - 2314 6.46 29.3 12.3 5.26e-14 0 1 2.27e+03 World StepLimiter - 2315 6.66 30.3 12.3 5.25e-14 0 1 2.27e+03 World StepLimiter - 2316 6.87 31.3 12.3 5.24e-14 0 1 2.27e+03 World StepLimiter - 2317 7.08 32.2 12.3 5.23e-14 0 1 2.27e+03 World StepLimiter - 2318 7.29 33.2 12.3 5.22e-14 0 1 2.27e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.099789476764neV MomDir: (0.20988639534544,0.97770984761992,0.0055816588866082) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2319 7.5 34.2 12.3 5.21e-14 0 0.997 2.27e+03 Guide Transportation *** StepTooSmall *** - 2320 7.5 34.2 12.3 5.21e-14 0 0 2.27e+03 World Transportation - 2321 7.28 33.2 12.3 5.22e-14 0 1 2.28e+03 World StepLimiter - 2322 7.06 32.2 12.3 5.23e-14 0 1 2.28e+03 World StepLimiter - 2323 6.85 31.3 12.3 5.24e-14 0 1 2.28e+03 World StepLimiter - 2324 6.63 30.3 12.3 5.25e-14 0 1 2.28e+03 World StepLimiter - 2325 6.41 29.3 12.3 5.26e-14 0 1 2.28e+03 World StepLimiter - 2326 6.19 28.3 12.3 5.27e-14 0 1 2.28e+03 World StepLimiter - 2327 5.98 27.4 12.3 5.28e-14 0 1 2.28e+03 World StepLimiter - 2328 5.76 26.4 12.3 5.29e-14 0 1 2.28e+03 World StepLimiter - 2329 5.54 25.4 12.4 5.3e-14 0 1 2.28e+03 World StepLimiter - 2330 5.32 24.4 12.4 5.31e-14 0 1 2.28e+03 World StepLimiter - 2331 5.11 23.5 12.4 5.32e-14 0 1 2.29e+03 World StepLimiter - 2332 4.89 22.5 12.4 5.33e-14 0 1 2.29e+03 World StepLimiter - 2333 4.68 21.5 12.4 5.34e-14 0 1 2.29e+03 World StepLimiter - 2334 4.46 20.5 12.4 5.35e-14 0 1 2.29e+03 World StepLimiter - 2335 4.24 19.5 12.4 5.36e-14 0 1 2.29e+03 World StepLimiter - 2336 4.03 18.6 12.4 5.37e-14 0 1 2.29e+03 World StepLimiter - 2337 3.81 17.6 12.4 5.38e-14 0 1 2.29e+03 World StepLimiter - 2338 3.6 16.6 12.4 5.39e-14 0 1 2.29e+03 World StepLimiter - 2339 3.38 15.6 12.4 5.4e-14 0 1 2.29e+03 World StepLimiter - 2340 3.17 14.7 12.4 5.41e-14 0 1 2.29e+03 World StepLimiter - 2341 2.95 13.7 12.4 5.42e-14 0 1 2.3e+03 World StepLimiter - 2342 2.74 12.7 12.4 5.43e-14 0 1 2.3e+03 World StepLimiter - 2343 2.52 11.7 12.4 5.44e-14 0 1 2.3e+03 World StepLimiter - 2344 2.31 10.8 12.4 5.45e-14 0 1 2.3e+03 World StepLimiter - 2345 2.1 9.78 12.4 5.46e-14 0 1 2.3e+03 World StepLimiter - 2346 1.88 8.8 12.4 5.47e-14 0 1 2.3e+03 World StepLimiter - 2347 1.67 7.82 12.4 5.48e-14 0 1 2.3e+03 World StepLimiter - 2348 1.46 6.85 12.5 5.49e-14 0 1 2.3e+03 World StepLimiter - 2349 1.24 5.87 12.5 5.5e-14 0 1 2.3e+03 World StepLimiter - 2350 1.03 4.89 12.5 5.51e-14 0 1 2.3e+03 World StepLimiter - 2351 0.818 3.92 12.5 5.52e-14 0 1 2.31e+03 World StepLimiter - 2352 0.605 2.94 12.5 5.53e-14 0 1 2.31e+03 World StepLimiter - 2353 0.393 1.96 12.5 5.54e-14 0 1 2.31e+03 World StepLimiter - 2354 0.181 0.985 12.5 5.55e-14 0 1 2.31e+03 World StepLimiter - 2355 -0.0307 0.00737 12.5 5.56e-14 0 1 2.31e+03 World StepLimiter - 2356 -0.242 -0.97 12.5 5.57e-14 0 1 2.31e+03 World StepLimiter - 2357 -0.454 -1.95 12.5 5.58e-14 0 1 2.31e+03 World StepLimiter - 2358 -0.665 -2.92 12.5 5.59e-14 0 1 2.31e+03 World StepLimiter - 2359 -0.876 -3.9 12.5 5.6e-14 0 1 2.31e+03 World StepLimiter - 2360 -1.09 -4.88 12.5 5.61e-14 0 1 2.31e+03 World StepLimiter - 2361 -1.3 -5.86 12.5 5.62e-14 0 1 2.32e+03 World StepLimiter - 2362 -1.51 -6.83 12.5 5.63e-14 0 1 2.32e+03 World StepLimiter - 2363 -1.72 -7.81 12.5 5.64e-14 0 1 2.32e+03 World StepLimiter - 2364 -1.93 -8.79 12.5 5.65e-14 0 1 2.32e+03 World StepLimiter - 2365 -2.14 -9.77 12.5 5.66e-14 0 1 2.32e+03 World StepLimiter - 2366 -2.35 -10.7 12.6 5.67e-14 0 1 2.32e+03 World StepLimiter - 2367 -2.56 -11.7 12.6 5.68e-14 0 1 2.32e+03 World StepLimiter - 2368 -2.77 -12.7 12.6 5.69e-14 0 1 2.32e+03 World StepLimiter - 2369 -2.98 -13.7 12.6 5.7e-14 0 1 2.32e+03 World StepLimiter - 2370 -3.19 -14.7 12.6 5.71e-14 0 1 2.32e+03 World StepLimiter - 2371 -3.39 -15.6 12.6 5.72e-14 0 1 2.33e+03 World StepLimiter - 2372 -3.6 -16.6 12.6 5.73e-14 0 1 2.33e+03 World StepLimiter - 2373 -3.81 -17.6 12.6 5.74e-14 0 1 2.33e+03 World StepLimiter - 2374 -4.02 -18.6 12.6 5.75e-14 0 1 2.33e+03 World StepLimiter - 2375 -4.23 -19.5 12.6 5.76e-14 0 1 2.33e+03 World StepLimiter - 2376 -4.44 -20.5 12.6 5.77e-14 0 1 2.33e+03 World StepLimiter - 2377 -4.64 -21.5 12.6 5.78e-14 0 1 2.33e+03 World StepLimiter - 2378 -4.85 -22.5 12.6 5.79e-14 0 1 2.33e+03 World StepLimiter - 2379 -5.06 -23.5 12.6 5.8e-14 0 1 2.33e+03 World StepLimiter - 2380 -5.27 -24.4 12.6 5.81e-14 0 1 2.33e+03 World StepLimiter - 2381 -5.47 -25.4 12.6 5.82e-14 0 1 2.34e+03 World StepLimiter - 2382 -5.68 -26.4 12.6 5.83e-14 0 1 2.34e+03 World StepLimiter - 2383 -5.89 -27.4 12.6 5.84e-14 0 1 2.34e+03 World StepLimiter - 2384 -6.09 -28.4 12.6 5.85e-14 0 1 2.34e+03 World StepLimiter - 2385 -6.3 -29.3 12.7 5.86e-14 0 1 2.34e+03 World StepLimiter - 2386 -6.51 -30.3 12.7 5.87e-14 0 1 2.34e+03 World StepLimiter - 2387 -6.71 -31.3 12.7 5.88e-14 0 1 2.34e+03 World StepLimiter - 2388 -6.92 -32.3 12.7 5.89e-14 0 1 2.34e+03 World StepLimiter - 2389 -7.12 -33.2 12.7 5.9e-14 0 1 2.34e+03 World StepLimiter - 2390 -7.33 -34.2 12.7 5.91e-14 0 1 2.34e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.115602421881neV MomDir: (-0.20537960691593,-0.97866836037468,0.0052399870803433) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2391 -7.33 -34.2 12.7 5.91e-14 0 0.00135 2.34e+03 Guide Transportation *** StepTooSmall *** - 2392 -7.33 -34.2 12.7 5.91e-14 0 0 2.34e+03 World Transportation - 2393 -7.12 -33.2 12.7 5.9e-14 0 1 2.35e+03 World StepLimiter - 2394 -6.9 -32.3 12.7 5.89e-14 0 1 2.35e+03 World StepLimiter - 2395 -6.69 -31.3 12.7 5.88e-14 0 1 2.35e+03 World StepLimiter - 2396 -6.47 -30.3 12.7 5.87e-14 0 1 2.35e+03 World StepLimiter - 2397 -6.26 -29.3 12.7 5.86e-14 0 1 2.35e+03 World StepLimiter - 2398 -6.05 -28.4 12.7 5.85e-14 0 1 2.35e+03 World StepLimiter - 2399 -5.83 -27.4 12.7 5.84e-14 0 1 2.35e+03 World StepLimiter - 2400 -5.62 -26.4 12.7 5.83e-14 0 1 2.35e+03 World StepLimiter - 2401 -5.4 -25.4 12.7 5.82e-14 0 1 2.35e+03 World StepLimiter - 2402 -5.19 -24.5 12.7 5.81e-14 0 1 2.35e+03 World StepLimiter - 2403 -4.97 -23.5 12.7 5.8e-14 0 1 2.36e+03 World StepLimiter - 2404 -4.76 -22.5 12.7 5.79e-14 0 1 2.36e+03 World StepLimiter - 2405 -4.54 -21.5 12.7 5.78e-14 0 1 2.36e+03 World StepLimiter - 2406 -4.32 -20.6 12.8 5.77e-14 0 1 2.36e+03 World StepLimiter - 2407 -4.11 -19.6 12.8 5.76e-14 0 1 2.36e+03 World StepLimiter - 2408 -3.89 -18.6 12.8 5.75e-14 0 1 2.36e+03 World StepLimiter - 2409 -3.67 -17.6 12.8 5.74e-14 0 1 2.36e+03 World StepLimiter - 2410 -3.46 -16.6 12.8 5.73e-14 0 1 2.36e+03 World StepLimiter - 2411 -3.24 -15.7 12.8 5.72e-14 0 1 2.36e+03 World StepLimiter - 2412 -3.02 -14.7 12.8 5.71e-14 0 1 2.36e+03 World StepLimiter - 2413 -2.81 -13.7 12.8 5.7e-14 0 1 2.37e+03 World StepLimiter - 2414 -2.59 -12.7 12.8 5.69e-14 0 1 2.37e+03 World StepLimiter - 2415 -2.37 -11.8 12.8 5.68e-14 0 1 2.37e+03 World StepLimiter - 2416 -2.15 -10.8 12.8 5.67e-14 0 1 2.37e+03 World StepLimiter - 2417 -1.94 -9.81 12.8 5.66e-14 0 1 2.37e+03 World StepLimiter - 2418 -1.72 -8.84 12.8 5.65e-14 0 1 2.37e+03 World StepLimiter - 2419 -1.5 -7.86 12.8 5.64e-14 0 1 2.37e+03 World StepLimiter - 2420 -1.28 -6.89 12.8 5.63e-14 0 1 2.37e+03 World StepLimiter - 2421 -1.06 -5.91 12.8 5.62e-14 0 1 2.37e+03 World StepLimiter - 2422 -0.843 -4.93 12.8 5.61e-14 0 1 2.37e+03 World StepLimiter - 2423 -0.624 -3.96 12.8 5.6e-14 0 1 2.38e+03 World StepLimiter - 2424 -0.404 -2.98 12.8 5.59e-14 0 1 2.38e+03 World StepLimiter - 2425 -0.185 -2.01 12.9 5.58e-14 0 1 2.38e+03 World StepLimiter - 2426 0.0349 -1.03 12.9 5.57e-14 0 1 2.38e+03 World StepLimiter - 2427 0.255 -0.0561 12.9 5.56e-14 0 1 2.38e+03 World StepLimiter - 2428 0.475 0.919 12.9 5.55e-14 0 1 2.38e+03 World StepLimiter - 2429 0.695 1.89 12.9 5.54e-14 0 1 2.38e+03 World StepLimiter - 2430 0.916 2.87 12.9 5.53e-14 0 1 2.38e+03 World StepLimiter - 2431 1.14 3.85 12.9 5.52e-14 0 1 2.38e+03 World StepLimiter - 2432 1.36 4.82 12.9 5.51e-14 0 1 2.38e+03 World StepLimiter - 2433 1.58 5.8 12.9 5.5e-14 0 1 2.39e+03 World StepLimiter - 2434 1.8 6.77 12.9 5.49e-14 0 1 2.39e+03 World StepLimiter - 2435 2.02 7.75 12.9 5.48e-14 0 1 2.39e+03 World StepLimiter - 2436 2.24 8.72 12.9 5.47e-14 0 1 2.39e+03 World StepLimiter - 2437 2.47 9.7 12.9 5.46e-14 0 1 2.39e+03 World StepLimiter - 2438 2.69 10.7 12.9 5.45e-14 0 1 2.39e+03 World StepLimiter - 2439 2.91 11.6 12.9 5.44e-14 0 1 2.39e+03 World StepLimiter - 2440 3.13 12.6 12.9 5.43e-14 0 1 2.39e+03 World StepLimiter - 2441 3.36 13.6 12.9 5.42e-14 0 1 2.39e+03 World StepLimiter - 2442 3.58 14.6 12.9 5.41e-14 0 1 2.39e+03 World StepLimiter - 2443 3.8 15.5 13 5.4e-14 0 1 2.4e+03 World StepLimiter - 2444 4.02 16.5 13 5.39e-14 0 1 2.4e+03 World StepLimiter - 2445 4.25 17.5 13 5.38e-14 0 1 2.4e+03 World StepLimiter - 2446 4.47 18.5 13 5.37e-14 0 1 2.4e+03 World StepLimiter - 2447 4.7 19.4 13 5.36e-14 0 1 2.4e+03 World StepLimiter - 2448 4.92 20.4 13 5.35e-14 0 1 2.4e+03 World StepLimiter - 2449 5.14 21.4 13 5.34e-14 0 1 2.4e+03 World StepLimiter - 2450 5.37 22.4 13 5.33e-14 0 1 2.4e+03 World StepLimiter - 2451 5.59 23.3 13 5.32e-14 0 1 2.4e+03 World StepLimiter - 2452 5.82 24.3 13 5.31e-14 0 1 2.4e+03 World StepLimiter - 2453 6.04 25.3 13 5.3e-14 0 1 2.41e+03 World StepLimiter - 2454 6.27 26.3 13 5.29e-14 0 1 2.41e+03 World StepLimiter - 2455 6.5 27.2 13 5.28e-14 0 1 2.41e+03 World StepLimiter - 2456 6.72 28.2 13 5.27e-14 0 1 2.41e+03 World StepLimiter - 2457 6.95 29.2 13 5.26e-14 0 1 2.41e+03 World StepLimiter - 2458 7.17 30.2 13 5.25e-14 0 1 2.41e+03 World StepLimiter - 2459 7.4 31.1 13 5.24e-14 0 1 2.41e+03 World StepLimiter - 2460 7.63 32.1 13 5.23e-14 0 1 2.41e+03 World StepLimiter - 2461 7.85 33.1 13.1 5.22e-14 0 1 2.41e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.113357367067neV MomDir: (0.22731498109964,0.9738052949964,0.0055809322373461) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2462 8.08 34.1 13.1 5.21e-14 0 0.997 2.41e+03 Guide Transportation *** StepTooSmall *** - 2463 8.08 34.1 13.1 5.21e-14 0 0 2.41e+03 World Transportation - 2464 7.85 33.1 13.1 5.22e-14 0 1 2.42e+03 World StepLimiter - 2465 7.61 32.1 13.1 5.23e-14 0 1 2.42e+03 World StepLimiter - 2466 7.38 31.1 13.1 5.24e-14 0 1 2.42e+03 World StepLimiter - 2467 7.15 30.2 13.1 5.25e-14 0 1 2.42e+03 World StepLimiter - 2468 6.91 29.2 13.1 5.26e-14 0 1 2.42e+03 World StepLimiter - 2469 6.68 28.2 13.1 5.27e-14 0 1 2.42e+03 World StepLimiter - 2470 6.45 27.2 13.1 5.28e-14 0 1 2.42e+03 World StepLimiter - 2471 6.21 26.3 13.1 5.29e-14 0 1 2.42e+03 World StepLimiter - 2472 5.98 25.3 13.1 5.3e-14 0 1 2.42e+03 World StepLimiter - 2473 5.75 24.3 13.1 5.31e-14 0 1 2.42e+03 World StepLimiter - 2474 5.52 23.4 13.1 5.32e-14 0 1 2.43e+03 World StepLimiter - 2475 5.28 22.4 13.1 5.33e-14 0 1 2.43e+03 World StepLimiter - 2476 5.05 21.4 13.1 5.34e-14 0 1 2.43e+03 World StepLimiter - 2477 4.82 20.4 13.1 5.35e-14 0 1 2.43e+03 World StepLimiter - 2478 4.59 19.5 13.1 5.36e-14 0 1 2.43e+03 World StepLimiter - 2479 4.36 18.5 13.1 5.37e-14 0 1 2.43e+03 World StepLimiter - 2480 4.13 17.5 13.2 5.38e-14 0 1 2.43e+03 World StepLimiter - 2481 3.9 16.5 13.2 5.39e-14 0 1 2.43e+03 World StepLimiter - 2482 3.67 15.6 13.2 5.4e-14 0 1 2.43e+03 World StepLimiter - 2483 3.44 14.6 13.2 5.41e-14 0 1 2.43e+03 World StepLimiter - 2484 3.21 13.6 13.2 5.42e-14 0 1 2.44e+03 World StepLimiter - 2485 2.98 12.7 13.2 5.43e-14 0 1 2.44e+03 World StepLimiter - 2486 2.75 11.7 13.2 5.44e-14 0 1 2.44e+03 World StepLimiter - 2487 2.52 10.7 13.2 5.45e-14 0 1 2.44e+03 World StepLimiter - 2488 2.29 9.74 13.2 5.46e-14 0 1 2.44e+03 World StepLimiter - 2489 2.06 8.76 13.2 5.47e-14 0 1 2.44e+03 World StepLimiter - 2490 1.83 7.79 13.2 5.48e-14 0 1 2.44e+03 World StepLimiter - 2491 1.6 6.81 13.2 5.49e-14 0 1 2.44e+03 World StepLimiter - 2492 1.37 5.84 13.2 5.5e-14 0 1 2.44e+03 World StepLimiter - 2493 1.15 4.87 13.2 5.51e-14 0 1 2.44e+03 World StepLimiter - 2494 0.918 3.89 13.2 5.52e-14 0 1 2.45e+03 World StepLimiter - 2495 0.69 2.92 13.2 5.53e-14 0 1 2.45e+03 World StepLimiter - 2496 0.463 1.95 13.2 5.54e-14 0 1 2.45e+03 World StepLimiter - 2497 0.235 0.973 13.2 5.55e-14 0 1 2.45e+03 World StepLimiter - 2498 0.00833 -0.00134 13.2 5.56e-14 0 1 2.45e+03 World StepLimiter - 2499 -0.219 -0.975 13.3 5.57e-14 0 1 2.45e+03 World StepLimiter - 2500 -0.445 -1.95 13.3 5.58e-14 0 1 2.45e+03 World StepLimiter - 2501 -0.672 -2.92 13.3 5.59e-14 0 1 2.45e+03 World StepLimiter - 2502 -0.898 -3.9 13.3 5.6e-14 0 1 2.45e+03 World StepLimiter - 2503 -1.12 -4.87 13.3 5.61e-14 0 1 2.45e+03 World StepLimiter - 2504 -1.35 -5.85 13.3 5.62e-14 0 1 2.46e+03 World StepLimiter - 2505 -1.58 -6.82 13.3 5.63e-14 0 1 2.46e+03 World StepLimiter - 2506 -1.8 -7.79 13.3 5.64e-14 0 1 2.46e+03 World StepLimiter - 2507 -2.03 -8.77 13.3 5.65e-14 0 1 2.46e+03 World StepLimiter - 2508 -2.25 -9.74 13.3 5.66e-14 0 1 2.46e+03 World StepLimiter - 2509 -2.48 -10.7 13.3 5.67e-14 0 1 2.46e+03 World StepLimiter - 2510 -2.7 -11.7 13.3 5.68e-14 0 1 2.46e+03 World StepLimiter - 2511 -2.93 -12.7 13.3 5.69e-14 0 1 2.46e+03 World StepLimiter - 2512 -3.15 -13.6 13.3 5.7e-14 0 1 2.46e+03 World StepLimiter - 2513 -3.37 -14.6 13.3 5.71e-14 0 1 2.46e+03 World StepLimiter - 2514 -3.6 -15.6 13.3 5.72e-14 0 1 2.47e+03 World StepLimiter - 2515 -3.82 -16.6 13.3 5.73e-14 0 1 2.47e+03 World StepLimiter - 2516 -4.04 -17.5 13.3 5.74e-14 0 1 2.47e+03 World StepLimiter - 2517 -4.27 -18.5 13.4 5.75e-14 0 1 2.47e+03 World StepLimiter - 2518 -4.49 -19.5 13.4 5.76e-14 0 1 2.47e+03 World StepLimiter - 2519 -4.71 -20.5 13.4 5.77e-14 0 1 2.47e+03 World StepLimiter - 2520 -4.94 -21.4 13.4 5.78e-14 0 1 2.47e+03 World StepLimiter - 2521 -5.16 -22.4 13.4 5.79e-14 0 1 2.47e+03 World StepLimiter - 2522 -5.38 -23.4 13.4 5.8e-14 0 1 2.47e+03 World StepLimiter - 2523 -5.6 -24.4 13.4 5.81e-14 0 1 2.47e+03 World StepLimiter - 2524 -5.83 -25.3 13.4 5.82e-14 0 1 2.48e+03 World StepLimiter - 2525 -6.05 -26.3 13.4 5.83e-14 0 1 2.48e+03 World StepLimiter - 2526 -6.27 -27.3 13.4 5.84e-14 0 1 2.48e+03 World StepLimiter - 2527 -6.49 -28.3 13.4 5.85e-14 0 1 2.48e+03 World StepLimiter - 2528 -6.71 -29.2 13.4 5.86e-14 0 1 2.48e+03 World StepLimiter - 2529 -6.93 -30.2 13.4 5.87e-14 0 1 2.48e+03 World StepLimiter - 2530 -7.15 -31.2 13.4 5.88e-14 0 1 2.48e+03 World StepLimiter - 2531 -7.37 -32.2 13.4 5.89e-14 0 1 2.48e+03 World StepLimiter - 2532 -7.59 -33.1 13.4 5.9e-14 0 1 2.48e+03 World StepLimiter - 2533 -7.81 -34.1 13.4 5.91e-14 0 1 2.48e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.104571945295neV MomDir: (-0.22014826071538,-0.97545234671669,0.0052404760176321) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2534 -7.81 -34.1 13.4 5.91e-14 0 0.00112 2.48e+03 Guide Transportation *** StepTooSmall *** - 2535 -7.81 -34.1 13.4 5.91e-14 0 0 2.48e+03 World Transportation - 2536 -7.59 -33.1 13.4 5.9e-14 0 1 2.49e+03 World StepLimiter - 2537 -7.36 -32.2 13.4 5.89e-14 0 1 2.49e+03 World StepLimiter - 2538 -7.13 -31.2 13.5 5.88e-14 0 1 2.49e+03 World StepLimiter - 2539 -6.91 -30.2 13.5 5.87e-14 0 1 2.49e+03 World StepLimiter - 2540 -6.68 -29.2 13.5 5.86e-14 0 1 2.49e+03 World StepLimiter - 2541 -6.45 -28.3 13.5 5.85e-14 0 1 2.49e+03 World StepLimiter - 2542 -6.23 -27.3 13.5 5.84e-14 0 1 2.49e+03 World StepLimiter - 2543 -6 -26.3 13.5 5.83e-14 0 1 2.49e+03 World StepLimiter - 2544 -5.77 -25.4 13.5 5.82e-14 0 1 2.49e+03 World StepLimiter - 2545 -5.54 -24.4 13.5 5.81e-14 0 1 2.49e+03 World StepLimiter - 2546 -5.31 -23.4 13.5 5.8e-14 0 1 2.5e+03 World StepLimiter - 2547 -5.08 -22.4 13.5 5.79e-14 0 1 2.5e+03 World StepLimiter - 2548 -4.86 -21.5 13.5 5.78e-14 0 1 2.5e+03 World StepLimiter - 2549 -4.63 -20.5 13.5 5.77e-14 0 1 2.5e+03 World StepLimiter - 2550 -4.4 -19.5 13.5 5.76e-14 0 1 2.5e+03 World StepLimiter - 2551 -4.17 -18.5 13.5 5.75e-14 0 1 2.5e+03 World StepLimiter - 2552 -3.94 -17.6 13.5 5.74e-14 0 1 2.5e+03 World StepLimiter - 2553 -3.71 -16.6 13.5 5.73e-14 0 1 2.5e+03 World StepLimiter - 2554 -3.48 -15.6 13.5 5.72e-14 0 1 2.5e+03 World StepLimiter - 2555 -3.25 -14.6 13.5 5.71e-14 0 1 2.5e+03 World StepLimiter - 2556 -3.02 -13.7 13.5 5.7e-14 0 1 2.51e+03 World StepLimiter - 2557 -2.79 -12.7 13.6 5.69e-14 0 1 2.51e+03 World StepLimiter - 2558 -2.56 -11.7 13.6 5.68e-14 0 1 2.51e+03 World StepLimiter - 2559 -2.32 -10.8 13.6 5.67e-14 0 1 2.51e+03 World StepLimiter - 2560 -2.09 -9.78 13.6 5.66e-14 0 1 2.51e+03 World StepLimiter - 2561 -1.86 -8.81 13.6 5.65e-14 0 1 2.51e+03 World StepLimiter - 2562 -1.63 -7.83 13.6 5.64e-14 0 1 2.51e+03 World StepLimiter - 2563 -1.4 -6.86 13.6 5.63e-14 0 1 2.51e+03 World StepLimiter - 2564 -1.17 -5.89 13.6 5.62e-14 0 1 2.51e+03 World StepLimiter - 2565 -0.934 -4.92 13.6 5.61e-14 0 1 2.51e+03 World StepLimiter - 2566 -0.702 -3.94 13.6 5.6e-14 0 1 2.52e+03 World StepLimiter - 2567 -0.469 -2.97 13.6 5.59e-14 0 1 2.52e+03 World StepLimiter - 2568 -0.236 -2 13.6 5.58e-14 0 1 2.52e+03 World StepLimiter - 2569 -0.0034 -1.03 13.6 5.57e-14 0 1 2.52e+03 World StepLimiter - 2570 0.23 -0.0541 13.6 5.56e-14 0 1 2.52e+03 World StepLimiter - 2571 0.463 0.918 13.6 5.55e-14 0 1 2.52e+03 World StepLimiter - 2572 0.697 1.89 13.6 5.54e-14 0 1 2.52e+03 World StepLimiter - 2573 0.931 2.86 13.6 5.53e-14 0 1 2.52e+03 World StepLimiter - 2574 1.17 3.83 13.6 5.52e-14 0 1 2.52e+03 World StepLimiter - 2575 1.4 4.81 13.6 5.51e-14 0 1 2.52e+03 World StepLimiter - 2576 1.63 5.78 13.7 5.5e-14 0 1 2.53e+03 World StepLimiter - 2577 1.87 6.75 13.7 5.49e-14 0 1 2.53e+03 World StepLimiter - 2578 2.1 7.72 13.7 5.48e-14 0 1 2.53e+03 World StepLimiter - 2579 2.34 8.7 13.7 5.47e-14 0 1 2.53e+03 World StepLimiter - 2580 2.57 9.67 13.7 5.46e-14 0 1 2.53e+03 World StepLimiter - 2581 2.81 10.6 13.7 5.45e-14 0 1 2.53e+03 World StepLimiter - 2582 3.05 11.6 13.7 5.44e-14 0 1 2.53e+03 World StepLimiter - 2583 3.28 12.6 13.7 5.43e-14 0 1 2.53e+03 World StepLimiter - 2584 3.52 13.6 13.7 5.42e-14 0 1 2.53e+03 World StepLimiter - 2585 3.75 14.5 13.7 5.41e-14 0 1 2.53e+03 World StepLimiter - 2586 3.99 15.5 13.7 5.4e-14 0 1 2.54e+03 World StepLimiter - 2587 4.23 16.5 13.7 5.39e-14 0 1 2.54e+03 World StepLimiter - 2588 4.47 17.4 13.7 5.38e-14 0 1 2.54e+03 World StepLimiter - 2589 4.7 18.4 13.7 5.37e-14 0 1 2.54e+03 World StepLimiter - 2590 4.94 19.4 13.7 5.36e-14 0 1 2.54e+03 World StepLimiter - 2591 5.18 20.4 13.7 5.35e-14 0 1 2.54e+03 World StepLimiter - 2592 5.42 21.3 13.7 5.34e-14 0 1 2.54e+03 World StepLimiter - 2593 5.65 22.3 13.7 5.33e-14 0 1 2.54e+03 World StepLimiter - 2594 5.89 23.3 13.8 5.32e-14 0 1 2.54e+03 World StepLimiter - 2595 6.13 24.2 13.8 5.31e-14 0 1 2.54e+03 World StepLimiter - 2596 6.37 25.2 13.8 5.3e-14 0 1 2.55e+03 World StepLimiter - 2597 6.61 26.2 13.8 5.29e-14 0 1 2.55e+03 World StepLimiter - 2598 6.85 27.2 13.8 5.28e-14 0 1 2.55e+03 World StepLimiter - 2599 7.09 28.1 13.8 5.27e-14 0 1 2.55e+03 World StepLimiter - 2600 7.33 29.1 13.8 5.26e-14 0 1 2.55e+03 World StepLimiter - 2601 7.57 30.1 13.8 5.25e-14 0 1 2.55e+03 World StepLimiter - 2602 7.81 31 13.8 5.24e-14 0 1 2.55e+03 World StepLimiter - 2603 8.05 32 13.8 5.23e-14 0 1 2.55e+03 World StepLimiter - 2604 8.29 33 13.8 5.22e-14 0 1 2.55e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.124619010516neV MomDir: (0.24107813109448,0.97048966745282,0.0055803293181759) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2605 8.53 33.9 13.8 5.21e-14 0 0.998 2.55e+03 Guide Transportation *** StepTooSmall *** - 2606 8.53 33.9 13.8 5.21e-14 0 0 2.55e+03 World Transportation - 2607 8.28 33 13.8 5.22e-14 0 1 2.56e+03 World StepLimiter - 2608 8.04 32 13.8 5.23e-14 0 1 2.56e+03 World StepLimiter - 2609 7.79 31 13.8 5.24e-14 0 1 2.56e+03 World StepLimiter - 2610 7.55 30.1 13.8 5.25e-14 0 1 2.56e+03 World StepLimiter - 2611 7.3 29.1 13.8 5.26e-14 0 1 2.56e+03 World StepLimiter - 2612 7.06 28.1 13.8 5.27e-14 0 1 2.56e+03 World StepLimiter - 2613 6.81 27.2 13.9 5.28e-14 0 1 2.56e+03 World StepLimiter - 2614 6.57 26.2 13.9 5.29e-14 0 1 2.56e+03 World StepLimiter - 2615 6.32 25.2 13.9 5.3e-14 0 1 2.56e+03 World StepLimiter - 2616 6.08 24.2 13.9 5.31e-14 0 1 2.56e+03 World StepLimiter - 2617 5.83 23.3 13.9 5.32e-14 0 1 2.57e+03 World StepLimiter - 2618 5.59 22.3 13.9 5.33e-14 0 1 2.57e+03 World StepLimiter - 2619 5.35 21.3 13.9 5.34e-14 0 1 2.57e+03 World StepLimiter - 2620 5.1 20.4 13.9 5.35e-14 0 1 2.57e+03 World StepLimiter - 2621 4.86 19.4 13.9 5.36e-14 0 1 2.57e+03 World StepLimiter - 2622 4.62 18.4 13.9 5.37e-14 0 1 2.57e+03 World StepLimiter - 2623 4.38 17.5 13.9 5.38e-14 0 1 2.57e+03 World StepLimiter - 2624 4.13 16.5 13.9 5.39e-14 0 1 2.57e+03 World StepLimiter - 2625 3.89 15.5 13.9 5.4e-14 0 1 2.57e+03 World StepLimiter - 2626 3.65 14.5 13.9 5.41e-14 0 1 2.57e+03 World StepLimiter - 2627 3.41 13.6 13.9 5.42e-14 0 1 2.58e+03 World StepLimiter - 2628 3.17 12.6 13.9 5.43e-14 0 1 2.58e+03 World StepLimiter - 2629 2.92 11.6 13.9 5.44e-14 0 1 2.58e+03 World StepLimiter - 2630 2.68 10.7 13.9 5.45e-14 0 1 2.58e+03 World StepLimiter - 2631 2.44 9.7 14 5.46e-14 0 1 2.58e+03 World StepLimiter - 2632 2.2 8.73 14 5.47e-14 0 1 2.58e+03 World StepLimiter - 2633 1.96 7.76 14 5.48e-14 0 1 2.58e+03 World StepLimiter - 2634 1.72 6.79 14 5.49e-14 0 1 2.58e+03 World StepLimiter - 2635 1.48 5.81 14 5.5e-14 0 1 2.58e+03 World StepLimiter - 2636 1.24 4.84 14 5.51e-14 0 1 2.58e+03 World StepLimiter - 2637 1 3.87 14 5.52e-14 0 1 2.59e+03 World StepLimiter - 2638 0.763 2.9 14 5.53e-14 0 1 2.59e+03 World StepLimiter - 2639 0.524 1.93 14 5.54e-14 0 1 2.59e+03 World StepLimiter - 2640 0.285 0.96 14 5.55e-14 0 1 2.59e+03 World StepLimiter - 2641 0.0468 -0.0111 14 5.56e-14 0 1 2.59e+03 World StepLimiter - 2642 -0.192 -0.982 14 5.57e-14 0 1 2.59e+03 World StepLimiter - 2643 -0.43 -1.95 14 5.58e-14 0 1 2.59e+03 World StepLimiter - 2644 -0.668 -2.92 14 5.59e-14 0 1 2.59e+03 World StepLimiter - 2645 -0.906 -3.9 14 5.6e-14 0 1 2.59e+03 World StepLimiter - 2646 -1.14 -4.87 14 5.61e-14 0 1 2.59e+03 World StepLimiter - 2647 -1.38 -5.84 14 5.62e-14 0 1 2.6e+03 World StepLimiter - 2648 -1.62 -6.81 14 5.63e-14 0 1 2.6e+03 World StepLimiter - 2649 -1.85 -7.78 14 5.64e-14 0 1 2.6e+03 World StepLimiter - 2650 -2.09 -8.75 14.1 5.65e-14 0 1 2.6e+03 World StepLimiter - 2651 -2.33 -9.72 14.1 5.66e-14 0 1 2.6e+03 World StepLimiter - 2652 -2.56 -10.7 14.1 5.67e-14 0 1 2.6e+03 World StepLimiter - 2653 -2.8 -11.7 14.1 5.68e-14 0 1 2.6e+03 World StepLimiter - 2654 -3.04 -12.6 14.1 5.69e-14 0 1 2.6e+03 World StepLimiter - 2655 -3.27 -13.6 14.1 5.7e-14 0 1 2.6e+03 World StepLimiter - 2656 -3.51 -14.6 14.1 5.71e-14 0 1 2.6e+03 World StepLimiter - 2657 -3.74 -15.6 14.1 5.72e-14 0 1 2.61e+03 World StepLimiter - 2658 -3.98 -16.5 14.1 5.73e-14 0 1 2.61e+03 World StepLimiter - 2659 -4.21 -17.5 14.1 5.74e-14 0 1 2.61e+03 World StepLimiter - 2660 -4.45 -18.5 14.1 5.75e-14 0 1 2.61e+03 World StepLimiter - 2661 -4.68 -19.4 14.1 5.76e-14 0 1 2.61e+03 World StepLimiter - 2662 -4.92 -20.4 14.1 5.77e-14 0 1 2.61e+03 World StepLimiter - 2663 -5.15 -21.4 14.1 5.78e-14 0 1 2.61e+03 World StepLimiter - 2664 -5.38 -22.4 14.1 5.79e-14 0 1 2.61e+03 World StepLimiter - 2665 -5.62 -23.3 14.1 5.8e-14 0 1 2.61e+03 World StepLimiter - 2666 -5.85 -24.3 14.1 5.81e-14 0 1 2.61e+03 World StepLimiter - 2667 -6.08 -25.3 14.1 5.82e-14 0 1 2.62e+03 World StepLimiter - 2668 -6.32 -26.2 14.2 5.83e-14 0 1 2.62e+03 World StepLimiter - 2669 -6.55 -27.2 14.2 5.84e-14 0 1 2.62e+03 World StepLimiter - 2670 -6.78 -28.2 14.2 5.85e-14 0 1 2.62e+03 World StepLimiter - 2671 -7.02 -29.2 14.2 5.86e-14 0 1 2.62e+03 World StepLimiter - 2672 -7.25 -30.1 14.2 5.87e-14 0 1 2.62e+03 World StepLimiter - 2673 -7.48 -31.1 14.2 5.88e-14 0 1 2.62e+03 World StepLimiter - 2674 -7.71 -32.1 14.2 5.89e-14 0 1 2.62e+03 World StepLimiter - 2675 -7.94 -33.1 14.2 5.9e-14 0 1 2.62e+03 World StepLimiter - 2676 -8.17 -34 14.2 5.91e-14 0 1 2.62e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.09589888502neV MomDir: (-0.23138665392576,-0.97284775261377,0.0052408605561341) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2677 -8.18 -34 14.2 5.91e-14 0 0.00076 2.62e+03 Guide Transportation *** StepTooSmall *** - 2678 -8.18 -34 14.2 5.91e-14 0 0 2.62e+03 World Transportation - 2679 -7.94 -33.1 14.2 5.9e-14 0 1 2.63e+03 World StepLimiter - 2680 -7.7 -32.1 14.2 5.89e-14 0 1 2.63e+03 World StepLimiter - 2681 -7.47 -31.1 14.2 5.88e-14 0 1 2.63e+03 World StepLimiter - 2682 -7.23 -30.1 14.2 5.87e-14 0 1 2.63e+03 World StepLimiter - 2683 -6.99 -29.2 14.2 5.86e-14 0 1 2.63e+03 World StepLimiter - 2684 -6.76 -28.2 14.2 5.85e-14 0 1 2.63e+03 World StepLimiter - 2685 -6.52 -27.2 14.2 5.84e-14 0 1 2.63e+03 World StepLimiter - 2686 -6.28 -26.3 14.2 5.83e-14 0 1 2.63e+03 World StepLimiter - 2687 -6.05 -25.3 14.2 5.82e-14 0 1 2.63e+03 World StepLimiter - 2688 -5.81 -24.3 14.2 5.81e-14 0 1 2.63e+03 World StepLimiter - 2689 -5.57 -23.3 14.3 5.8e-14 0 1 2.64e+03 World StepLimiter - 2690 -5.33 -22.4 14.3 5.79e-14 0 1 2.64e+03 World StepLimiter - 2691 -5.09 -21.4 14.3 5.78e-14 0 1 2.64e+03 World StepLimiter - 2692 -4.85 -20.4 14.3 5.77e-14 0 1 2.64e+03 World StepLimiter - 2693 -4.62 -19.5 14.3 5.76e-14 0 1 2.64e+03 World StepLimiter - 2694 -4.38 -18.5 14.3 5.75e-14 0 1 2.64e+03 World StepLimiter - 2695 -4.14 -17.5 14.3 5.74e-14 0 1 2.64e+03 World StepLimiter - 2696 -3.9 -16.5 14.3 5.73e-14 0 1 2.64e+03 World StepLimiter - 2697 -3.66 -15.6 14.3 5.72e-14 0 1 2.64e+03 World StepLimiter - 2698 -3.42 -14.6 14.3 5.71e-14 0 1 2.64e+03 World StepLimiter - 2699 -3.18 -13.6 14.3 5.7e-14 0 1 2.65e+03 World StepLimiter - 2700 -2.94 -12.7 14.3 5.69e-14 0 1 2.65e+03 World StepLimiter - 2701 -2.7 -11.7 14.3 5.68e-14 0 1 2.65e+03 World StepLimiter - 2702 -2.46 -10.7 14.3 5.67e-14 0 1 2.65e+03 World StepLimiter - 2703 -2.22 -9.75 14.3 5.66e-14 0 1 2.65e+03 World StepLimiter - 2704 -1.98 -8.78 14.3 5.65e-14 0 1 2.65e+03 World StepLimiter - 2705 -1.74 -7.81 14.3 5.64e-14 0 1 2.65e+03 World StepLimiter - 2706 -1.49 -6.84 14.3 5.63e-14 0 1 2.65e+03 World StepLimiter - 2707 -1.25 -5.87 14.3 5.62e-14 0 1 2.65e+03 World StepLimiter - 2708 -1.01 -4.9 14.4 5.61e-14 0 1 2.65e+03 World StepLimiter - 2709 -0.769 -3.93 14.4 5.6e-14 0 1 2.66e+03 World StepLimiter - 2710 -0.526 -2.96 14.4 5.59e-14 0 1 2.66e+03 World StepLimiter - 2711 -0.284 -1.99 14.4 5.58e-14 0 1 2.66e+03 World StepLimiter - 2712 -0.0412 -1.02 14.4 5.57e-14 0 1 2.66e+03 World StepLimiter - 2713 0.202 -0.0497 14.4 5.56e-14 0 1 2.66e+03 World StepLimiter - 2714 0.445 0.92 14.4 5.55e-14 0 1 2.66e+03 World StepLimiter - 2715 0.688 1.89 14.4 5.54e-14 0 1 2.66e+03 World StepLimiter - 2716 0.932 2.86 14.4 5.53e-14 0 1 2.66e+03 World StepLimiter - 2717 1.18 3.83 14.4 5.52e-14 0 1 2.66e+03 World StepLimiter - 2718 1.42 4.8 14.4 5.51e-14 0 1 2.66e+03 World StepLimiter - 2719 1.66 5.77 14.4 5.5e-14 0 1 2.67e+03 World StepLimiter - 2720 1.91 6.74 14.4 5.49e-14 0 1 2.67e+03 World StepLimiter - 2721 2.15 7.71 14.4 5.48e-14 0 1 2.67e+03 World StepLimiter - 2722 2.4 8.68 14.4 5.47e-14 0 1 2.67e+03 World StepLimiter - 2723 2.64 9.65 14.4 5.46e-14 0 1 2.67e+03 World StepLimiter - 2724 2.89 10.6 14.4 5.45e-14 0 1 2.67e+03 World StepLimiter - 2725 3.13 11.6 14.4 5.44e-14 0 1 2.67e+03 World StepLimiter - 2726 3.38 12.6 14.4 5.43e-14 0 1 2.67e+03 World StepLimiter - 2727 3.63 13.5 14.5 5.42e-14 0 1 2.67e+03 World StepLimiter - 2728 3.87 14.5 14.5 5.41e-14 0 1 2.67e+03 World StepLimiter - 2729 4.12 15.5 14.5 5.4e-14 0 1 2.68e+03 World StepLimiter - 2730 4.37 16.4 14.5 5.39e-14 0 1 2.68e+03 World StepLimiter - 2731 4.61 17.4 14.5 5.38e-14 0 1 2.68e+03 World StepLimiter - 2732 4.86 18.4 14.5 5.37e-14 0 1 2.68e+03 World StepLimiter - 2733 5.11 19.3 14.5 5.36e-14 0 1 2.68e+03 World StepLimiter - 2734 5.35 20.3 14.5 5.35e-14 0 1 2.68e+03 World StepLimiter - 2735 5.6 21.3 14.5 5.34e-14 0 1 2.68e+03 World StepLimiter - 2736 5.85 22.2 14.5 5.33e-14 0 1 2.68e+03 World StepLimiter - 2737 6.1 23.2 14.5 5.32e-14 0 1 2.68e+03 World StepLimiter - 2738 6.35 24.2 14.5 5.31e-14 0 1 2.68e+03 World StepLimiter - 2739 6.6 25.2 14.5 5.3e-14 0 1 2.69e+03 World StepLimiter - 2740 6.84 26.1 14.5 5.29e-14 0 1 2.69e+03 World StepLimiter - 2741 7.09 27.1 14.5 5.28e-14 0 1 2.69e+03 World StepLimiter - 2742 7.34 28.1 14.5 5.27e-14 0 1 2.69e+03 World StepLimiter - 2743 7.59 29 14.5 5.26e-14 0 1 2.69e+03 World StepLimiter - 2744 7.84 30 14.5 5.25e-14 0 1 2.69e+03 World StepLimiter - 2745 8.09 31 14.6 5.24e-14 0 1 2.69e+03 World StepLimiter - 2746 8.34 31.9 14.6 5.23e-14 0 1 2.69e+03 World StepLimiter - 2747 8.59 32.9 14.6 5.22e-14 0 1 2.69e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.132874367371neV MomDir: (0.25100563171028,0.96796954379026,0.0055798874718906) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2748 8.84 33.9 14.6 5.21e-14 0 0.998 2.69e+03 Guide Transportation *** StepTooSmall *** - 2749 8.84 33.9 14.6 5.21e-14 0 0 2.69e+03 World Transportation - 2750 8.59 32.9 14.6 5.22e-14 0 1 2.7e+03 World StepLimiter - 2751 8.34 31.9 14.6 5.23e-14 0 1 2.7e+03 World StepLimiter - 2752 8.08 31 14.6 5.24e-14 0 1 2.7e+03 World StepLimiter - 2753 7.83 30 14.6 5.25e-14 0 1 2.7e+03 World StepLimiter - 2754 7.58 29 14.6 5.26e-14 0 1 2.7e+03 World StepLimiter - 2755 7.32 28.1 14.6 5.27e-14 0 1 2.7e+03 World StepLimiter - 2756 7.07 27.1 14.6 5.28e-14 0 1 2.7e+03 World StepLimiter - 2757 6.82 26.1 14.6 5.29e-14 0 1 2.7e+03 World StepLimiter - 2758 6.56 25.2 14.6 5.3e-14 0 1 2.7e+03 World StepLimiter - 2759 6.31 24.2 14.6 5.31e-14 0 1 2.7e+03 World StepLimiter - 2760 6.06 23.2 14.6 5.32e-14 0 1 2.71e+03 World StepLimiter - 2761 5.81 22.3 14.6 5.33e-14 0 1 2.71e+03 World StepLimiter - 2762 5.56 21.3 14.6 5.34e-14 0 1 2.71e+03 World StepLimiter - 2763 5.31 20.3 14.6 5.35e-14 0 1 2.71e+03 World StepLimiter - 2764 5.06 19.4 14.7 5.36e-14 0 1 2.71e+03 World StepLimiter - 2765 4.8 18.4 14.7 5.37e-14 0 1 2.71e+03 World StepLimiter - 2766 4.55 17.4 14.7 5.38e-14 0 1 2.71e+03 World StepLimiter - 2767 4.3 16.4 14.7 5.39e-14 0 1 2.71e+03 World StepLimiter - 2768 4.05 15.5 14.7 5.4e-14 0 1 2.71e+03 World StepLimiter - 2769 3.8 14.5 14.7 5.41e-14 0 1 2.71e+03 World StepLimiter - 2770 3.55 13.5 14.7 5.42e-14 0 1 2.72e+03 World StepLimiter - 2771 3.31 12.6 14.7 5.43e-14 0 1 2.72e+03 World StepLimiter - 2772 3.06 11.6 14.7 5.44e-14 0 1 2.72e+03 World StepLimiter - 2773 2.81 10.6 14.7 5.45e-14 0 1 2.72e+03 World StepLimiter - 2774 2.56 9.67 14.7 5.46e-14 0 1 2.72e+03 World StepLimiter - 2775 2.31 8.7 14.7 5.47e-14 0 1 2.72e+03 World StepLimiter - 2776 2.06 7.73 14.7 5.48e-14 0 1 2.72e+03 World StepLimiter - 2777 1.81 6.76 14.7 5.49e-14 0 1 2.72e+03 World StepLimiter - 2778 1.57 5.79 14.7 5.5e-14 0 1 2.72e+03 World StepLimiter - 2779 1.32 4.82 14.7 5.51e-14 0 1 2.72e+03 World StepLimiter - 2780 1.07 3.85 14.7 5.52e-14 0 1 2.73e+03 World StepLimiter - 2781 0.824 2.89 14.7 5.53e-14 0 1 2.73e+03 World StepLimiter - 2782 0.577 1.92 14.8 5.54e-14 0 1 2.73e+03 World StepLimiter - 2783 0.331 0.948 14.8 5.55e-14 0 1 2.73e+03 World StepLimiter - 2784 0.0844 -0.0213 14.8 5.56e-14 0 1 2.73e+03 World StepLimiter - 2785 -0.162 -0.99 14.8 5.57e-14 0 1 2.73e+03 World StepLimiter - 2786 -0.408 -1.96 14.8 5.58e-14 0 1 2.73e+03 World StepLimiter - 2787 -0.654 -2.93 14.8 5.59e-14 0 1 2.73e+03 World StepLimiter - 2788 -0.899 -3.9 14.8 5.6e-14 0 1 2.73e+03 World StepLimiter - 2789 -1.14 -4.87 14.8 5.61e-14 0 1 2.73e+03 World StepLimiter - 2790 -1.39 -5.84 14.8 5.62e-14 0 1 2.74e+03 World StepLimiter - 2791 -1.63 -6.81 14.8 5.63e-14 0 1 2.74e+03 World StepLimiter - 2792 -1.88 -7.78 14.8 5.64e-14 0 1 2.74e+03 World StepLimiter - 2793 -2.12 -8.75 14.8 5.65e-14 0 1 2.74e+03 World StepLimiter - 2794 -2.37 -9.72 14.8 5.66e-14 0 1 2.74e+03 World StepLimiter - 2795 -2.61 -10.7 14.8 5.67e-14 0 1 2.74e+03 World StepLimiter - 2796 -2.86 -11.7 14.8 5.68e-14 0 1 2.74e+03 World StepLimiter - 2797 -3.1 -12.6 14.8 5.69e-14 0 1 2.74e+03 World StepLimiter - 2798 -3.34 -13.6 14.8 5.7e-14 0 1 2.74e+03 World StepLimiter - 2799 -3.59 -14.6 14.8 5.71e-14 0 1 2.74e+03 World StepLimiter - 2800 -3.83 -15.5 14.8 5.72e-14 0 1 2.75e+03 World StepLimiter - 2801 -4.07 -16.5 14.9 5.73e-14 0 1 2.75e+03 World StepLimiter - 2802 -4.31 -17.5 14.9 5.74e-14 0 1 2.75e+03 World StepLimiter - 2803 -4.56 -18.4 14.9 5.75e-14 0 1 2.75e+03 World StepLimiter - 2804 -4.8 -19.4 14.9 5.76e-14 0 1 2.75e+03 World StepLimiter - 2805 -5.04 -20.4 14.9 5.77e-14 0 1 2.75e+03 World StepLimiter - 2806 -5.28 -21.4 14.9 5.78e-14 0 1 2.75e+03 World StepLimiter - 2807 -5.52 -22.3 14.9 5.79e-14 0 1 2.75e+03 World StepLimiter - 2808 -5.77 -23.3 14.9 5.8e-14 0 1 2.75e+03 World StepLimiter - 2809 -6.01 -24.3 14.9 5.81e-14 0 1 2.75e+03 World StepLimiter - 2810 -6.25 -25.2 14.9 5.82e-14 0 1 2.76e+03 World StepLimiter - 2811 -6.49 -26.2 14.9 5.83e-14 0 1 2.76e+03 World StepLimiter - 2812 -6.73 -27.2 14.9 5.84e-14 0 1 2.76e+03 World StepLimiter - 2813 -6.97 -28.2 14.9 5.85e-14 0 1 2.76e+03 World StepLimiter - 2814 -7.21 -29.1 14.9 5.86e-14 0 1 2.76e+03 World StepLimiter - 2815 -7.45 -30.1 14.9 5.87e-14 0 1 2.76e+03 World StepLimiter - 2816 -7.69 -31.1 14.9 5.88e-14 0 1 2.76e+03 World StepLimiter - 2817 -7.93 -32 14.9 5.89e-14 0 1 2.76e+03 World StepLimiter - 2818 -8.17 -33 14.9 5.9e-14 0 1 2.76e+03 World StepLimiter - 2819 -8.41 -34 14.9 5.91e-14 0 1 2.76e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.090122541369neV MomDir: (-0.23895362200146,-0.97101683673766,0.0052411167095359) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2820 -8.41 -34 14.9 5.91e-14 0 0.0003 2.76e+03 Guide Transportation *** StepTooSmall *** - 2821 -8.41 -34 14.9 5.91e-14 0 0 2.76e+03 World Transportation - 2822 -8.16 -33 15 5.9e-14 0 1 2.77e+03 World StepLimiter - 2823 -7.92 -32 15 5.89e-14 0 1 2.77e+03 World StepLimiter - 2824 -7.68 -31.1 15 5.88e-14 0 1 2.77e+03 World StepLimiter - 2825 -7.44 -30.1 15 5.87e-14 0 1 2.77e+03 World StepLimiter - 2826 -7.2 -29.1 15 5.86e-14 0 1 2.77e+03 World StepLimiter - 2827 -6.95 -28.2 15 5.85e-14 0 1 2.77e+03 World StepLimiter - 2828 -6.71 -27.2 15 5.84e-14 0 1 2.77e+03 World StepLimiter - 2829 -6.47 -26.2 15 5.83e-14 0 1 2.77e+03 World StepLimiter - 2830 -6.23 -25.2 15 5.82e-14 0 1 2.77e+03 World StepLimiter - 2831 -5.98 -24.3 15 5.81e-14 0 1 2.77e+03 World StepLimiter - 2832 -5.74 -23.3 15 5.8e-14 0 1 2.78e+03 World StepLimiter - 2833 -5.49 -22.3 15 5.79e-14 0 1 2.78e+03 World StepLimiter - 2834 -5.25 -21.4 15 5.78e-14 0 1 2.78e+03 World StepLimiter - 2835 -5.01 -20.4 15 5.77e-14 0 1 2.78e+03 World StepLimiter - 2836 -4.76 -19.4 15 5.76e-14 0 1 2.78e+03 World StepLimiter - 2837 -4.52 -18.5 15 5.75e-14 0 1 2.78e+03 World StepLimiter - 2838 -4.27 -17.5 15 5.74e-14 0 1 2.78e+03 World StepLimiter - 2839 -4.03 -16.5 15 5.73e-14 0 1 2.78e+03 World StepLimiter - 2840 -3.78 -15.5 15 5.72e-14 0 1 2.78e+03 World StepLimiter - 2841 -3.54 -14.6 15.1 5.71e-14 0 1 2.78e+03 World StepLimiter - 2842 -3.29 -13.6 15.1 5.7e-14 0 1 2.79e+03 World StepLimiter - 2843 -3.05 -12.6 15.1 5.69e-14 0 1 2.79e+03 World StepLimiter - 2844 -2.8 -11.7 15.1 5.68e-14 0 1 2.79e+03 World StepLimiter - 2845 -2.55 -10.7 15.1 5.67e-14 0 1 2.79e+03 World StepLimiter - 2846 -2.31 -9.73 15.1 5.66e-14 0 1 2.79e+03 World StepLimiter - 2847 -2.06 -8.76 15.1 5.65e-14 0 1 2.79e+03 World StepLimiter - 2848 -1.81 -7.79 15.1 5.64e-14 0 1 2.79e+03 World StepLimiter - 2849 -1.57 -6.82 15.1 5.63e-14 0 1 2.79e+03 World StepLimiter - 2850 -1.32 -5.86 15.1 5.62e-14 0 1 2.79e+03 World StepLimiter - 2851 -1.07 -4.89 15.1 5.61e-14 0 1 2.79e+03 World StepLimiter - 2852 -0.823 -3.92 15.1 5.6e-14 0 1 2.8e+03 World StepLimiter - 2853 -0.575 -2.95 15.1 5.59e-14 0 1 2.8e+03 World StepLimiter - 2854 -0.326 -1.98 15.1 5.58e-14 0 1 2.8e+03 World StepLimiter - 2855 -0.078 -1.01 15.1 5.57e-14 0 1 2.8e+03 World StepLimiter - 2856 0.171 -0.0433 15.1 5.56e-14 0 1 2.8e+03 World StepLimiter - 2857 0.42 0.925 15.1 5.55e-14 0 1 2.8e+03 World StepLimiter - 2858 0.669 1.89 15.1 5.54e-14 0 1 2.8e+03 World StepLimiter - 2859 0.918 2.86 15.2 5.53e-14 0 1 2.8e+03 World StepLimiter - 2860 1.17 3.83 15.2 5.52e-14 0 1 2.8e+03 World StepLimiter - 2861 1.42 4.8 15.2 5.51e-14 0 1 2.8e+03 World StepLimiter - 2862 1.67 5.77 15.2 5.5e-14 0 1 2.81e+03 World StepLimiter - 2863 1.92 6.74 15.2 5.49e-14 0 1 2.81e+03 World StepLimiter - 2864 2.17 7.7 15.2 5.48e-14 0 1 2.81e+03 World StepLimiter - 2865 2.42 8.67 15.2 5.47e-14 0 1 2.81e+03 World StepLimiter - 2866 2.67 9.64 15.2 5.46e-14 0 1 2.81e+03 World StepLimiter - 2867 2.92 10.6 15.2 5.45e-14 0 1 2.81e+03 World StepLimiter - 2868 3.17 11.6 15.2 5.44e-14 0 1 2.81e+03 World StepLimiter - 2869 3.42 12.5 15.2 5.43e-14 0 1 2.81e+03 World StepLimiter - 2870 3.68 13.5 15.2 5.42e-14 0 1 2.81e+03 World StepLimiter - 2871 3.93 14.5 15.2 5.41e-14 0 1 2.81e+03 World StepLimiter - 2872 4.18 15.4 15.2 5.4e-14 0 1 2.82e+03 World StepLimiter - 2873 4.43 16.4 15.2 5.39e-14 0 1 2.82e+03 World StepLimiter - 2874 4.69 17.4 15.2 5.38e-14 0 1 2.82e+03 World StepLimiter - 2875 4.94 18.3 15.2 5.37e-14 0 1 2.82e+03 World StepLimiter - 2876 5.19 19.3 15.2 5.36e-14 0 1 2.82e+03 World StepLimiter - 2877 5.45 20.3 15.2 5.35e-14 0 1 2.82e+03 World StepLimiter - 2878 5.7 21.3 15.3 5.34e-14 0 1 2.82e+03 World StepLimiter - 2879 5.95 22.2 15.3 5.33e-14 0 1 2.82e+03 World StepLimiter - 2880 6.21 23.2 15.3 5.32e-14 0 1 2.82e+03 World StepLimiter - 2881 6.46 24.2 15.3 5.31e-14 0 1 2.82e+03 World StepLimiter - 2882 6.72 25.1 15.3 5.3e-14 0 1 2.83e+03 World StepLimiter - 2883 6.97 26.1 15.3 5.29e-14 0 1 2.83e+03 World StepLimiter - 2884 7.23 27.1 15.3 5.28e-14 0 1 2.83e+03 World StepLimiter - 2885 7.48 28 15.3 5.27e-14 0 1 2.83e+03 World StepLimiter - 2886 7.74 29 15.3 5.26e-14 0 1 2.83e+03 World StepLimiter - 2887 7.99 30 15.3 5.25e-14 0 1 2.83e+03 World StepLimiter - 2888 8.25 30.9 15.3 5.24e-14 0 1 2.83e+03 World StepLimiter - 2889 8.51 31.9 15.3 5.23e-14 0 1 2.83e+03 World StepLimiter - 2890 8.76 32.9 15.3 5.22e-14 0 1 2.83e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.137614591651neV MomDir: (0.25698029550132,0.96640053570483,0.0055796338112705) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2891 9.02 33.8 15.3 5.21e-14 0 0.999 2.83e+03 Guide Transportation *** StepTooSmall *** - 2892 9.02 33.8 15.3 5.21e-14 0 0 2.83e+03 World Transportation - 2893 8.76 32.9 15.3 5.22e-14 0 1 2.84e+03 World StepLimiter - 2894 8.5 31.9 15.3 5.23e-14 0 1 2.84e+03 World StepLimiter - 2895 8.25 30.9 15.3 5.24e-14 0 1 2.84e+03 World StepLimiter - 2896 7.99 30 15.3 5.25e-14 0 1 2.84e+03 World StepLimiter - 2897 7.73 29 15.4 5.26e-14 0 1 2.84e+03 World StepLimiter - 2898 7.47 28 15.4 5.27e-14 0 1 2.84e+03 World StepLimiter - 2899 7.22 27.1 15.4 5.28e-14 0 1 2.84e+03 World StepLimiter - 2900 6.96 26.1 15.4 5.29e-14 0 1 2.84e+03 World StepLimiter - 2901 6.7 25.1 15.4 5.3e-14 0 1 2.84e+03 World StepLimiter - 2902 6.45 24.2 15.4 5.31e-14 0 1 2.84e+03 World StepLimiter - 2903 6.19 23.2 15.4 5.32e-14 0 1 2.85e+03 World StepLimiter - 2904 5.94 22.2 15.4 5.33e-14 0 1 2.85e+03 World StepLimiter - 2905 5.68 21.3 15.4 5.34e-14 0 1 2.85e+03 World StepLimiter - 2906 5.43 20.3 15.4 5.35e-14 0 1 2.85e+03 World StepLimiter - 2907 5.17 19.3 15.4 5.36e-14 0 1 2.85e+03 World StepLimiter - 2908 4.92 18.4 15.4 5.37e-14 0 1 2.85e+03 World StepLimiter - 2909 4.66 17.4 15.4 5.38e-14 0 1 2.85e+03 World StepLimiter - 2910 4.41 16.4 15.4 5.39e-14 0 1 2.85e+03 World StepLimiter - 2911 4.15 15.5 15.4 5.4e-14 0 1 2.85e+03 World StepLimiter - 2912 3.9 14.5 15.4 5.41e-14 0 1 2.85e+03 World StepLimiter - 2913 3.65 13.5 15.4 5.42e-14 0 1 2.86e+03 World StepLimiter - 2914 3.39 12.6 15.4 5.43e-14 0 1 2.86e+03 World StepLimiter - 2915 3.14 11.6 15.5 5.44e-14 0 1 2.86e+03 World StepLimiter - 2916 2.89 10.6 15.5 5.45e-14 0 1 2.86e+03 World StepLimiter - 2917 2.63 9.65 15.5 5.46e-14 0 1 2.86e+03 World StepLimiter - 2918 2.38 8.68 15.5 5.47e-14 0 1 2.86e+03 World StepLimiter - 2919 2.13 7.71 15.5 5.48e-14 0 1 2.86e+03 World StepLimiter - 2920 1.88 6.74 15.5 5.49e-14 0 1 2.86e+03 World StepLimiter - 2921 1.63 5.78 15.5 5.5e-14 0 1 2.86e+03 World StepLimiter - 2922 1.37 4.81 15.5 5.51e-14 0 1 2.86e+03 World StepLimiter - 2923 1.12 3.84 15.5 5.52e-14 0 1 2.87e+03 World StepLimiter - 2924 0.872 2.87 15.5 5.53e-14 0 1 2.87e+03 World StepLimiter - 2925 0.621 1.9 15.5 5.54e-14 0 1 2.87e+03 World StepLimiter - 2926 0.371 0.937 15.5 5.55e-14 0 1 2.87e+03 World StepLimiter - 2927 0.12 -0.0312 15.5 5.56e-14 0 1 2.87e+03 World StepLimiter - 2928 -0.13 -0.999 15.5 5.57e-14 0 1 2.87e+03 World StepLimiter - 2929 -0.38 -1.97 15.5 5.58e-14 0 1 2.87e+03 World StepLimiter - 2930 -0.629 -2.94 15.5 5.59e-14 0 1 2.87e+03 World StepLimiter - 2931 -0.879 -3.9 15.5 5.6e-14 0 1 2.87e+03 World StepLimiter - 2932 -1.13 -4.87 15.5 5.61e-14 0 1 2.87e+03 World StepLimiter - 2933 -1.38 -5.84 15.6 5.62e-14 0 1 2.88e+03 World StepLimiter - 2934 -1.63 -6.81 15.6 5.63e-14 0 1 2.88e+03 World StepLimiter - 2935 -1.87 -7.78 15.6 5.64e-14 0 1 2.88e+03 World StepLimiter - 2936 -2.12 -8.75 15.6 5.65e-14 0 1 2.88e+03 World StepLimiter - 2937 -2.37 -9.72 15.6 5.66e-14 0 1 2.88e+03 World StepLimiter - 2938 -2.62 -10.7 15.6 5.67e-14 0 1 2.88e+03 World StepLimiter - 2939 -2.87 -11.7 15.6 5.68e-14 0 1 2.88e+03 World StepLimiter - 2940 -3.11 -12.6 15.6 5.69e-14 0 1 2.88e+03 World StepLimiter - 2941 -3.36 -13.6 15.6 5.7e-14 0 1 2.88e+03 World StepLimiter - 2942 -3.61 -14.6 15.6 5.71e-14 0 1 2.88e+03 World StepLimiter - 2943 -3.86 -15.5 15.6 5.72e-14 0 1 2.89e+03 World StepLimiter - 2944 -4.1 -16.5 15.6 5.73e-14 0 1 2.89e+03 World StepLimiter - 2945 -4.35 -17.5 15.6 5.74e-14 0 1 2.89e+03 World StepLimiter - 2946 -4.59 -18.4 15.6 5.75e-14 0 1 2.89e+03 World StepLimiter - 2947 -4.84 -19.4 15.6 5.76e-14 0 1 2.89e+03 World StepLimiter - 2948 -5.09 -20.4 15.6 5.77e-14 0 1 2.89e+03 World StepLimiter - 2949 -5.33 -21.3 15.6 5.78e-14 0 1 2.89e+03 World StepLimiter - 2950 -5.58 -22.3 15.6 5.79e-14 0 1 2.89e+03 World StepLimiter - 2951 -5.82 -23.3 15.6 5.8e-14 0 1 2.89e+03 World StepLimiter - 2952 -6.07 -24.3 15.7 5.81e-14 0 1 2.89e+03 World StepLimiter - 2953 -6.31 -25.2 15.7 5.82e-14 0 1 2.9e+03 World StepLimiter - 2954 -6.56 -26.2 15.7 5.83e-14 0 1 2.9e+03 World StepLimiter - 2955 -6.8 -27.2 15.7 5.84e-14 0 1 2.9e+03 World StepLimiter - 2956 -7.04 -28.1 15.7 5.85e-14 0 1 2.9e+03 World StepLimiter - 2957 -7.29 -29.1 15.7 5.86e-14 0 1 2.9e+03 World StepLimiter - 2958 -7.53 -30.1 15.7 5.87e-14 0 1 2.9e+03 World StepLimiter - 2959 -7.78 -31 15.7 5.88e-14 0 1 2.9e+03 World StepLimiter - 2960 -8.02 -32 15.7 5.89e-14 0 1 2.9e+03 World StepLimiter - 2961 -8.26 -33 15.7 5.9e-14 0 1 2.9e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.087599856384neV MomDir: (-0.24275741569471,-0.97007286666935,0.0052412285904157) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 2962 -8.5 -34 15.7 5.91e-14 0 1 2.9e+03 Guide Transportation *** StepTooSmall *** - 2963 -8.5 -34 15.7 5.91e-14 0 0 2.9e+03 World Transportation - 2964 -8.26 -33 15.7 5.9e-14 0 1 2.91e+03 World StepLimiter - 2965 -8.02 -32 15.7 5.89e-14 0 1 2.91e+03 World StepLimiter - 2966 -7.77 -31 15.7 5.88e-14 0 1 2.91e+03 World StepLimiter - 2967 -7.53 -30.1 15.7 5.87e-14 0 1 2.91e+03 World StepLimiter - 2968 -7.29 -29.1 15.7 5.86e-14 0 1 2.91e+03 World StepLimiter - 2969 -7.04 -28.1 15.7 5.85e-14 0 1 2.91e+03 World StepLimiter - 2970 -6.8 -27.2 15.7 5.84e-14 0 1 2.91e+03 World StepLimiter - 2971 -6.55 -26.2 15.7 5.83e-14 0 1 2.91e+03 World StepLimiter - 2972 -6.31 -25.2 15.8 5.82e-14 0 1 2.91e+03 World StepLimiter - 2973 -6.06 -24.3 15.8 5.81e-14 0 1 2.91e+03 World StepLimiter - 2974 -5.82 -23.3 15.8 5.8e-14 0 1 2.92e+03 World StepLimiter - 2975 -5.57 -22.3 15.8 5.79e-14 0 1 2.92e+03 World StepLimiter - 2976 -5.33 -21.3 15.8 5.78e-14 0 1 2.92e+03 World StepLimiter - 2977 -5.08 -20.4 15.8 5.77e-14 0 1 2.92e+03 World StepLimiter - 2978 -4.83 -19.4 15.8 5.76e-14 0 1 2.92e+03 World StepLimiter - 2979 -4.59 -18.4 15.8 5.75e-14 0 1 2.92e+03 World StepLimiter - 2980 -4.34 -17.5 15.8 5.74e-14 0 1 2.92e+03 World StepLimiter - 2981 -4.09 -16.5 15.8 5.73e-14 0 1 2.92e+03 World StepLimiter - 2982 -3.85 -15.5 15.8 5.72e-14 0 1 2.92e+03 World StepLimiter - 2983 -3.6 -14.6 15.8 5.71e-14 0 1 2.92e+03 World StepLimiter - 2984 -3.35 -13.6 15.8 5.7e-14 0 1 2.93e+03 World StepLimiter - 2985 -3.1 -12.6 15.8 5.69e-14 0 1 2.93e+03 World StepLimiter - 2986 -2.86 -11.7 15.8 5.68e-14 0 1 2.93e+03 World StepLimiter - 2987 -2.61 -10.7 15.8 5.67e-14 0 1 2.93e+03 World StepLimiter - 2988 -2.36 -9.72 15.8 5.66e-14 0 1 2.93e+03 World StepLimiter - 2989 -2.11 -8.75 15.8 5.65e-14 0 1 2.93e+03 World StepLimiter - 2990 -1.86 -7.78 15.8 5.64e-14 0 1 2.93e+03 World StepLimiter - 2991 -1.61 -6.81 15.9 5.63e-14 0 1 2.93e+03 World StepLimiter - 2992 -1.36 -5.84 15.9 5.62e-14 0 1 2.93e+03 World StepLimiter - 2993 -1.11 -4.88 15.9 5.61e-14 0 1 2.93e+03 World StepLimiter - 2994 -0.864 -3.91 15.9 5.6e-14 0 1 2.94e+03 World StepLimiter - 2995 -0.614 -2.94 15.9 5.59e-14 0 1 2.94e+03 World StepLimiter - 2996 -0.364 -1.97 15.9 5.58e-14 0 1 2.94e+03 World StepLimiter - 2997 -0.113 -1 15.9 5.57e-14 0 1 2.94e+03 World StepLimiter - 2998 0.137 -0.0353 15.9 5.56e-14 0 1 2.94e+03 World StepLimiter - 2999 0.388 0.933 15.9 5.55e-14 0 1 2.94e+03 World StepLimiter - 3000 0.639 1.9 15.9 5.54e-14 0 1 2.94e+03 World StepLimiter - 3001 0.891 2.87 15.9 5.53e-14 0 1 2.94e+03 World StepLimiter - 3002 1.14 3.84 15.9 5.52e-14 0 1 2.94e+03 World StepLimiter - 3003 1.39 4.8 15.9 5.51e-14 0 1 2.94e+03 World StepLimiter - 3004 1.65 5.77 15.9 5.5e-14 0 1 2.95e+03 World StepLimiter - 3005 1.9 6.74 15.9 5.49e-14 0 1 2.95e+03 World StepLimiter - 3006 2.15 7.71 15.9 5.48e-14 0 1 2.95e+03 World StepLimiter - 3007 2.4 8.67 15.9 5.47e-14 0 1 2.95e+03 World StepLimiter - 3008 2.66 9.64 15.9 5.46e-14 0 1 2.95e+03 World StepLimiter - 3009 2.91 10.6 16 5.45e-14 0 1 2.95e+03 World StepLimiter - 3010 3.16 11.6 16 5.44e-14 0 1 2.95e+03 World StepLimiter - 3011 3.42 12.5 16 5.43e-14 0 1 2.95e+03 World StepLimiter - 3012 3.67 13.5 16 5.42e-14 0 1 2.95e+03 World StepLimiter - 3013 3.92 14.5 16 5.41e-14 0 1 2.95e+03 World StepLimiter - 3014 4.18 15.4 16 5.4e-14 0 1 2.96e+03 World StepLimiter - 3015 4.43 16.4 16 5.39e-14 0 1 2.96e+03 World StepLimiter - 3016 4.69 17.4 16 5.38e-14 0 1 2.96e+03 World StepLimiter - 3017 4.94 18.3 16 5.37e-14 0 1 2.96e+03 World StepLimiter - 3018 5.2 19.3 16 5.36e-14 0 1 2.96e+03 World StepLimiter - 3019 5.45 20.3 16 5.35e-14 0 1 2.96e+03 World StepLimiter - 3020 5.71 21.2 16 5.34e-14 0 1 2.96e+03 World StepLimiter - 3021 5.96 22.2 16 5.33e-14 0 1 2.96e+03 World StepLimiter - 3022 6.22 23.2 16 5.32e-14 0 1 2.96e+03 World StepLimiter - 3023 6.48 24.1 16 5.31e-14 0 1 2.96e+03 World StepLimiter - 3024 6.73 25.1 16 5.3e-14 0 1 2.97e+03 World StepLimiter - 3025 6.99 26.1 16 5.29e-14 0 1 2.97e+03 World StepLimiter - 3026 7.25 27 16 5.28e-14 0 1 2.97e+03 World StepLimiter - 3027 7.5 28 16.1 5.27e-14 0 1 2.97e+03 World StepLimiter - 3028 7.76 29 16.1 5.26e-14 0 1 2.97e+03 World StepLimiter - 3029 8.02 29.9 16.1 5.25e-14 0 1 2.97e+03 World StepLimiter - 3030 8.28 30.9 16.1 5.24e-14 0 1 2.97e+03 World StepLimiter - 3031 8.54 31.9 16.1 5.23e-14 0 1 2.97e+03 World StepLimiter - 3032 8.8 32.8 16.1 5.22e-14 0 1 2.97e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.13854914579neV MomDir: (0.25893390601918,0.96587892644897,0.0055795838051491) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3033 9.05 33.8 16.1 5.21e-14 0 0.999 2.97e+03 Guide Transportation *** StepTooSmall *** - 3034 9.05 33.8 16.1 5.21e-14 0 0 2.97e+03 World Transportation - 3035 8.8 32.8 16.1 5.22e-14 0 1 2.98e+03 World StepLimiter - 3036 8.54 31.9 16.1 5.23e-14 0 1 2.98e+03 World StepLimiter - 3037 8.28 30.9 16.1 5.24e-14 0 1 2.98e+03 World StepLimiter - 3038 8.02 29.9 16.1 5.25e-14 0 1 2.98e+03 World StepLimiter - 3039 7.76 29 16.1 5.26e-14 0 1 2.98e+03 World StepLimiter - 3040 7.51 28 16.1 5.27e-14 0 1 2.98e+03 World StepLimiter - 3041 7.25 27 16.1 5.28e-14 0 1 2.98e+03 World StepLimiter - 3042 6.99 26.1 16.1 5.29e-14 0 1 2.98e+03 World StepLimiter - 3043 6.74 25.1 16.1 5.3e-14 0 1 2.98e+03 World StepLimiter - 3044 6.48 24.1 16.1 5.31e-14 0 1 2.98e+03 World StepLimiter - 3045 6.23 23.2 16.1 5.32e-14 0 1 2.99e+03 World StepLimiter - 3046 5.97 22.2 16.2 5.33e-14 0 1 2.99e+03 World StepLimiter - 3047 5.71 21.2 16.2 5.34e-14 0 1 2.99e+03 World StepLimiter - 3048 5.46 20.3 16.2 5.35e-14 0 1 2.99e+03 World StepLimiter - 3049 5.2 19.3 16.2 5.36e-14 0 1 2.99e+03 World StepLimiter - 3050 4.95 18.3 16.2 5.37e-14 0 1 2.99e+03 World StepLimiter - 3051 4.7 17.4 16.2 5.38e-14 0 1 2.99e+03 World StepLimiter - 3052 4.44 16.4 16.2 5.39e-14 0 1 2.99e+03 World StepLimiter - 3053 4.19 15.4 16.2 5.4e-14 0 1 2.99e+03 World StepLimiter - 3054 3.93 14.5 16.2 5.41e-14 0 1 2.99e+03 World StepLimiter - 3055 3.68 13.5 16.2 5.42e-14 0 1 3e+03 World StepLimiter - 3056 3.43 12.5 16.2 5.43e-14 0 1 3e+03 World StepLimiter - 3057 3.17 11.6 16.2 5.44e-14 0 1 3e+03 World StepLimiter - 3058 2.92 10.6 16.2 5.45e-14 0 1 3e+03 World StepLimiter - 3059 2.67 9.64 16.2 5.46e-14 0 1 3e+03 World StepLimiter - 3060 2.42 8.67 16.2 5.47e-14 0 1 3e+03 World StepLimiter - 3061 2.16 7.7 16.2 5.48e-14 0 1 3e+03 World StepLimiter - 3062 1.91 6.74 16.2 5.49e-14 0 1 3e+03 World StepLimiter - 3063 1.66 5.77 16.2 5.5e-14 0 1 3e+03 World StepLimiter - 3064 1.41 4.8 16.2 5.51e-14 0 1 3e+03 World StepLimiter - 3065 1.16 3.83 16.3 5.52e-14 0 1 3.01e+03 World StepLimiter - 3066 0.906 2.86 16.3 5.53e-14 0 1 3.01e+03 World StepLimiter - 3067 0.656 1.9 16.3 5.54e-14 0 1 3.01e+03 World StepLimiter - 3068 0.405 0.928 16.3 5.55e-14 0 1 3.01e+03 World StepLimiter - 3069 0.155 -0.0404 16.3 5.56e-14 0 1 3.01e+03 World StepLimiter - 3070 -0.0954 -1.01 16.3 5.57e-14 0 1 3.01e+03 World StepLimiter - 3071 -0.345 -1.98 16.3 5.58e-14 0 1 3.01e+03 World StepLimiter - 3072 -0.595 -2.95 16.3 5.59e-14 0 1 3.01e+03 World StepLimiter - 3073 -0.844 -3.91 16.3 5.6e-14 0 1 3.01e+03 World StepLimiter - 3074 -1.09 -4.88 16.3 5.61e-14 0 1 3.01e+03 World StepLimiter - 3075 -1.34 -5.85 16.3 5.62e-14 0 1 3.02e+03 World StepLimiter - 3076 -1.59 -6.82 16.3 5.63e-14 0 1 3.02e+03 World StepLimiter - 3077 -1.84 -7.79 16.3 5.64e-14 0 1 3.02e+03 World StepLimiter - 3078 -2.09 -8.76 16.3 5.65e-14 0 1 3.02e+03 World StepLimiter - 3079 -2.34 -9.72 16.3 5.66e-14 0 1 3.02e+03 World StepLimiter - 3080 -2.58 -10.7 16.3 5.67e-14 0 1 3.02e+03 World StepLimiter - 3081 -2.83 -11.7 16.3 5.68e-14 0 1 3.02e+03 World StepLimiter - 3082 -3.08 -12.6 16.3 5.69e-14 0 1 3.02e+03 World StepLimiter - 3083 -3.33 -13.6 16.4 5.7e-14 0 1 3.02e+03 World StepLimiter - 3084 -3.57 -14.6 16.4 5.71e-14 0 1 3.02e+03 World StepLimiter - 3085 -3.82 -15.5 16.4 5.72e-14 0 1 3.03e+03 World StepLimiter - 3086 -4.07 -16.5 16.4 5.73e-14 0 1 3.03e+03 World StepLimiter - 3087 -4.31 -17.5 16.4 5.74e-14 0 1 3.03e+03 World StepLimiter - 3088 -4.56 -18.4 16.4 5.75e-14 0 1 3.03e+03 World StepLimiter - 3089 -4.81 -19.4 16.4 5.76e-14 0 1 3.03e+03 World StepLimiter - 3090 -5.05 -20.4 16.4 5.77e-14 0 1 3.03e+03 World StepLimiter - 3091 -5.3 -21.4 16.4 5.78e-14 0 1 3.03e+03 World StepLimiter - 3092 -5.54 -22.3 16.4 5.79e-14 0 1 3.03e+03 World StepLimiter - 3093 -5.79 -23.3 16.4 5.8e-14 0 1 3.03e+03 World StepLimiter - 3094 -6.03 -24.3 16.4 5.81e-14 0 1 3.03e+03 World StepLimiter - 3095 -6.28 -25.2 16.4 5.82e-14 0 1 3.04e+03 World StepLimiter - 3096 -6.52 -26.2 16.4 5.83e-14 0 1 3.04e+03 World StepLimiter - 3097 -6.77 -27.2 16.4 5.84e-14 0 1 3.04e+03 World StepLimiter - 3098 -7.01 -28.1 16.4 5.85e-14 0 1 3.04e+03 World StepLimiter - 3099 -7.25 -29.1 16.4 5.86e-14 0 1 3.04e+03 World StepLimiter - 3100 -7.5 -30.1 16.4 5.87e-14 0 1 3.04e+03 World StepLimiter - 3101 -7.74 -31.1 16.4 5.88e-14 0 1 3.04e+03 World StepLimiter - 3102 -7.98 -32 16.5 5.89e-14 0 1 3.04e+03 World StepLimiter - 3103 -8.23 -33 16.5 5.9e-14 0 1 3.04e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.088486161255neV MomDir: (-0.24275297673391,-0.97007397770569,0.0052411892820482) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3104 -8.47 -34 16.5 5.91e-14 0 0.999 3.04e+03 Guide Transportation *** StepTooSmall *** - 3105 -8.47 -34 16.5 5.91e-14 0 0 3.04e+03 World Transportation - 3106 -8.23 -33 16.5 5.9e-14 0 1 3.05e+03 World StepLimiter - 3107 -7.99 -32 16.5 5.89e-14 0 1 3.05e+03 World StepLimiter - 3108 -7.75 -31 16.5 5.88e-14 0 1 3.05e+03 World StepLimiter - 3109 -7.5 -30.1 16.5 5.87e-14 0 1 3.05e+03 World StepLimiter - 3110 -7.26 -29.1 16.5 5.86e-14 0 1 3.05e+03 World StepLimiter - 3111 -7.02 -28.1 16.5 5.85e-14 0 1 3.05e+03 World StepLimiter - 3112 -6.78 -27.2 16.5 5.84e-14 0 1 3.05e+03 World StepLimiter - 3113 -6.53 -26.2 16.5 5.83e-14 0 1 3.05e+03 World StepLimiter - 3114 -6.29 -25.2 16.5 5.82e-14 0 1 3.05e+03 World StepLimiter - 3115 -6.05 -24.3 16.5 5.81e-14 0 1 3.05e+03 World StepLimiter - 3116 -5.8 -23.3 16.5 5.8e-14 0 1 3.06e+03 World StepLimiter - 3117 -5.56 -22.3 16.5 5.79e-14 0 1 3.06e+03 World StepLimiter - 3118 -5.32 -21.3 16.5 5.78e-14 0 1 3.06e+03 World StepLimiter - 3119 -5.07 -20.4 16.5 5.77e-14 0 1 3.06e+03 World StepLimiter - 3120 -4.83 -19.4 16.5 5.76e-14 0 1 3.06e+03 World StepLimiter - 3121 -4.58 -18.4 16.5 5.75e-14 0 1 3.06e+03 World StepLimiter - 3122 -4.34 -17.5 16.6 5.74e-14 0 1 3.06e+03 World StepLimiter - 3123 -4.09 -16.5 16.6 5.73e-14 0 1 3.06e+03 World StepLimiter - 3124 -3.85 -15.5 16.6 5.72e-14 0 1 3.06e+03 World StepLimiter - 3125 -3.6 -14.6 16.6 5.71e-14 0 1 3.06e+03 World StepLimiter - 3126 -3.36 -13.6 16.6 5.7e-14 0 1 3.07e+03 World StepLimiter - 3127 -3.11 -12.6 16.6 5.69e-14 0 1 3.07e+03 World StepLimiter - 3128 -2.87 -11.7 16.6 5.68e-14 0 1 3.07e+03 World StepLimiter - 3129 -2.62 -10.7 16.6 5.67e-14 0 1 3.07e+03 World StepLimiter - 3130 -2.37 -9.71 16.6 5.66e-14 0 1 3.07e+03 World StepLimiter - 3131 -2.13 -8.75 16.6 5.65e-14 0 1 3.07e+03 World StepLimiter - 3132 -1.88 -7.78 16.6 5.64e-14 0 1 3.07e+03 World StepLimiter - 3133 -1.63 -6.81 16.6 5.63e-14 0 1 3.07e+03 World StepLimiter - 3134 -1.39 -5.84 16.6 5.62e-14 0 1 3.07e+03 World StepLimiter - 3135 -1.14 -4.87 16.6 5.61e-14 0 1 3.07e+03 World StepLimiter - 3136 -0.891 -3.9 16.6 5.6e-14 0 1 3.08e+03 World StepLimiter - 3137 -0.643 -2.93 16.6 5.59e-14 0 1 3.08e+03 World StepLimiter - 3138 -0.395 -1.96 16.6 5.58e-14 0 1 3.08e+03 World StepLimiter - 3139 -0.147 -0.995 16.6 5.57e-14 0 1 3.08e+03 World StepLimiter - 3140 0.102 -0.0262 16.6 5.56e-14 0 1 3.08e+03 World StepLimiter - 3141 0.351 0.942 16.7 5.55e-14 0 1 3.08e+03 World StepLimiter - 3142 0.6 1.91 16.7 5.54e-14 0 1 3.08e+03 World StepLimiter - 3143 0.849 2.88 16.7 5.53e-14 0 1 3.08e+03 World StepLimiter - 3144 1.1 3.85 16.7 5.52e-14 0 1 3.08e+03 World StepLimiter - 3145 1.35 4.82 16.7 5.51e-14 0 1 3.08e+03 World StepLimiter - 3146 1.6 5.78 16.7 5.5e-14 0 1 3.09e+03 World StepLimiter - 3147 1.85 6.75 16.7 5.49e-14 0 1 3.09e+03 World StepLimiter - 3148 2.1 7.72 16.7 5.48e-14 0 1 3.09e+03 World StepLimiter - 3149 2.35 8.69 16.7 5.47e-14 0 1 3.09e+03 World StepLimiter - 3150 2.6 9.66 16.7 5.46e-14 0 1 3.09e+03 World StepLimiter - 3151 2.85 10.6 16.7 5.45e-14 0 1 3.09e+03 World StepLimiter - 3152 3.1 11.6 16.7 5.44e-14 0 1 3.09e+03 World StepLimiter - 3153 3.35 12.6 16.7 5.43e-14 0 1 3.09e+03 World StepLimiter - 3154 3.61 13.5 16.7 5.42e-14 0 1 3.09e+03 World StepLimiter - 3155 3.86 14.5 16.7 5.41e-14 0 1 3.09e+03 World StepLimiter - 3156 4.11 15.5 16.7 5.4e-14 0 1 3.1e+03 World StepLimiter - 3157 4.36 16.4 16.7 5.39e-14 0 1 3.1e+03 World StepLimiter - 3158 4.62 17.4 16.7 5.38e-14 0 1 3.1e+03 World StepLimiter - 3159 4.87 18.4 16.8 5.37e-14 0 1 3.1e+03 World StepLimiter - 3160 5.12 19.3 16.8 5.36e-14 0 1 3.1e+03 World StepLimiter - 3161 5.37 20.3 16.8 5.35e-14 0 1 3.1e+03 World StepLimiter - 3162 5.63 21.3 16.8 5.34e-14 0 1 3.1e+03 World StepLimiter - 3163 5.88 22.2 16.8 5.33e-14 0 1 3.1e+03 World StepLimiter - 3164 6.14 23.2 16.8 5.32e-14 0 1 3.1e+03 World StepLimiter - 3165 6.39 24.2 16.8 5.31e-14 0 1 3.1e+03 World StepLimiter - 3166 6.64 25.1 16.8 5.3e-14 0 1 3.11e+03 World StepLimiter - 3167 6.9 26.1 16.8 5.29e-14 0 1 3.11e+03 World StepLimiter - 3168 7.15 27.1 16.8 5.28e-14 0 1 3.11e+03 World StepLimiter - 3169 7.41 28 16.8 5.27e-14 0 1 3.11e+03 World StepLimiter - 3170 7.67 29 16.8 5.26e-14 0 1 3.11e+03 World StepLimiter - 3171 7.92 30 16.8 5.25e-14 0 1 3.11e+03 World StepLimiter - 3172 8.18 30.9 16.8 5.24e-14 0 1 3.11e+03 World StepLimiter - 3173 8.43 31.9 16.8 5.23e-14 0 1 3.11e+03 World StepLimiter - 3174 8.69 32.9 16.8 5.22e-14 0 1 3.11e+03 World StepLimiter - 3175 8.95 33.8 16.8 5.21e-14 0 1 3.11e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.135620877628neV MomDir: (0.25684445959797,0.96643664565756,0.0055797404954112) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3176 8.95 33.8 16.8 5.21e-14 0 4.99e-05 3.11e+03 Guide Transportation *** StepTooSmall *** - 3177 8.95 33.8 16.8 5.21e-14 0 0 3.11e+03 World Transportation - 3178 8.69 32.9 16.8 5.22e-14 0 1 3.12e+03 World StepLimiter - 3179 8.44 31.9 16.9 5.23e-14 0 1 3.12e+03 World StepLimiter - 3180 8.18 30.9 16.9 5.24e-14 0 1 3.12e+03 World StepLimiter - 3181 7.93 30 16.9 5.25e-14 0 1 3.12e+03 World StepLimiter - 3182 7.68 29 16.9 5.26e-14 0 1 3.12e+03 World StepLimiter - 3183 7.42 28 16.9 5.27e-14 0 1 3.12e+03 World StepLimiter - 3184 7.17 27.1 16.9 5.28e-14 0 1 3.12e+03 World StepLimiter - 3185 6.92 26.1 16.9 5.29e-14 0 1 3.12e+03 World StepLimiter - 3186 6.67 25.1 16.9 5.3e-14 0 1 3.12e+03 World StepLimiter - 3187 6.41 24.2 16.9 5.31e-14 0 1 3.12e+03 World StepLimiter - 3188 6.16 23.2 16.9 5.32e-14 0 1 3.13e+03 World StepLimiter - 3189 5.91 22.2 16.9 5.33e-14 0 1 3.13e+03 World StepLimiter - 3190 5.66 21.3 16.9 5.34e-14 0 1 3.13e+03 World StepLimiter - 3191 5.41 20.3 16.9 5.35e-14 0 1 3.13e+03 World StepLimiter - 3192 5.16 19.3 16.9 5.36e-14 0 1 3.13e+03 World StepLimiter - 3193 4.91 18.4 16.9 5.37e-14 0 1 3.13e+03 World StepLimiter - 3194 4.66 17.4 16.9 5.38e-14 0 1 3.13e+03 World StepLimiter - 3195 4.41 16.4 16.9 5.39e-14 0 1 3.13e+03 World StepLimiter - 3196 4.16 15.5 16.9 5.4e-14 0 1 3.13e+03 World StepLimiter - 3197 3.91 14.5 17 5.41e-14 0 1 3.13e+03 World StepLimiter - 3198 3.66 13.5 17 5.42e-14 0 1 3.14e+03 World StepLimiter - 3199 3.41 12.5 17 5.43e-14 0 1 3.14e+03 World StepLimiter - 3200 3.16 11.6 17 5.44e-14 0 1 3.14e+03 World StepLimiter - 3201 2.91 10.6 17 5.45e-14 0 1 3.14e+03 World StepLimiter - 3202 2.66 9.64 17 5.46e-14 0 1 3.14e+03 World StepLimiter - 3203 2.41 8.67 17 5.47e-14 0 1 3.14e+03 World StepLimiter - 3204 2.16 7.7 17 5.48e-14 0 1 3.14e+03 World StepLimiter - 3205 1.92 6.73 17 5.49e-14 0 1 3.14e+03 World StepLimiter - 3206 1.67 5.77 17 5.5e-14 0 1 3.14e+03 World StepLimiter - 3207 1.42 4.8 17 5.51e-14 0 1 3.14e+03 World StepLimiter - 3208 1.17 3.83 17 5.52e-14 0 1 3.15e+03 World StepLimiter - 3209 0.927 2.86 17 5.53e-14 0 1 3.15e+03 World StepLimiter - 3210 0.68 1.89 17 5.54e-14 0 1 3.15e+03 World StepLimiter - 3211 0.433 0.921 17 5.55e-14 0 1 3.15e+03 World StepLimiter - 3212 0.187 -0.0482 17 5.56e-14 0 1 3.15e+03 World StepLimiter - 3213 -0.0594 -1.02 17 5.57e-14 0 1 3.15e+03 World StepLimiter - 3214 -0.305 -1.99 17 5.58e-14 0 1 3.15e+03 World StepLimiter - 3215 -0.551 -2.96 17 5.59e-14 0 1 3.15e+03 World StepLimiter - 3216 -0.797 -3.93 17.1 5.6e-14 0 1 3.15e+03 World StepLimiter - 3217 -1.04 -4.89 17.1 5.61e-14 0 1 3.15e+03 World StepLimiter - 3218 -1.29 -5.86 17.1 5.62e-14 0 1 3.16e+03 World StepLimiter - 3219 -1.53 -6.83 17.1 5.63e-14 0 1 3.16e+03 World StepLimiter - 3220 -1.78 -7.8 17.1 5.64e-14 0 1 3.16e+03 World StepLimiter - 3221 -2.02 -8.77 17.1 5.65e-14 0 1 3.16e+03 World StepLimiter - 3222 -2.27 -9.74 17.1 5.66e-14 0 1 3.16e+03 World StepLimiter - 3223 -2.51 -10.7 17.1 5.67e-14 0 1 3.16e+03 World StepLimiter - 3224 -2.75 -11.7 17.1 5.68e-14 0 1 3.16e+03 World StepLimiter - 3225 -3 -12.7 17.1 5.69e-14 0 1 3.16e+03 World StepLimiter - 3226 -3.24 -13.6 17.1 5.7e-14 0 1 3.16e+03 World StepLimiter - 3227 -3.48 -14.6 17.1 5.71e-14 0 1 3.16e+03 World StepLimiter - 3228 -3.73 -15.6 17.1 5.72e-14 0 1 3.17e+03 World StepLimiter - 3229 -3.97 -16.5 17.1 5.73e-14 0 1 3.17e+03 World StepLimiter - 3230 -4.21 -17.5 17.1 5.74e-14 0 1 3.17e+03 World StepLimiter - 3231 -4.45 -18.5 17.1 5.75e-14 0 1 3.17e+03 World StepLimiter - 3232 -4.7 -19.4 17.1 5.76e-14 0 1 3.17e+03 World StepLimiter - 3233 -4.94 -20.4 17.1 5.77e-14 0 1 3.17e+03 World StepLimiter - 3234 -5.18 -21.4 17.2 5.78e-14 0 1 3.17e+03 World StepLimiter - 3235 -5.42 -22.4 17.2 5.79e-14 0 1 3.17e+03 World StepLimiter - 3236 -5.66 -23.3 17.2 5.8e-14 0 1 3.17e+03 World StepLimiter - 3237 -5.9 -24.3 17.2 5.81e-14 0 1 3.17e+03 World StepLimiter - 3238 -6.14 -25.3 17.2 5.82e-14 0 1 3.18e+03 World StepLimiter - 3239 -6.39 -26.2 17.2 5.83e-14 0 1 3.18e+03 World StepLimiter - 3240 -6.63 -27.2 17.2 5.84e-14 0 1 3.18e+03 World StepLimiter - 3241 -6.87 -28.2 17.2 5.85e-14 0 1 3.18e+03 World StepLimiter - 3242 -7.11 -29.1 17.2 5.86e-14 0 1 3.18e+03 World StepLimiter - 3243 -7.35 -30.1 17.2 5.87e-14 0 1 3.18e+03 World StepLimiter - 3244 -7.59 -31.1 17.2 5.88e-14 0 1 3.18e+03 World StepLimiter - 3245 -7.82 -32.1 17.2 5.89e-14 0 1 3.18e+03 World StepLimiter - 3246 -8.06 -33 17.2 5.9e-14 0 1 3.18e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.092726934789neV MomDir: (-0.23894042173029,-0.97102008566746,0.0052410012124098) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3247 -8.3 -34 17.2 5.91e-14 0 0.999 3.18e+03 Guide Transportation *** StepTooSmall *** - 3248 -8.3 -34 17.2 5.91e-14 0 0 3.18e+03 World Transportation - 3249 -8.07 -33 17.2 5.9e-14 0 1 3.19e+03 World StepLimiter - 3250 -7.83 -32.1 17.2 5.89e-14 0 1 3.19e+03 World StepLimiter - 3251 -7.6 -31.1 17.2 5.88e-14 0 1 3.19e+03 World StepLimiter - 3252 -7.36 -30.1 17.2 5.87e-14 0 1 3.19e+03 World StepLimiter - 3253 -7.12 -29.1 17.2 5.86e-14 0 1 3.19e+03 World StepLimiter - 3254 -6.89 -28.2 17.3 5.85e-14 0 1 3.19e+03 World StepLimiter - 3255 -6.65 -27.2 17.3 5.84e-14 0 1 3.19e+03 World StepLimiter - 3256 -6.41 -26.2 17.3 5.83e-14 0 1 3.19e+03 World StepLimiter - 3257 -6.18 -25.3 17.3 5.82e-14 0 1 3.19e+03 World StepLimiter - 3258 -5.94 -24.3 17.3 5.81e-14 0 1 3.19e+03 World StepLimiter - 3259 -5.7 -23.3 17.3 5.8e-14 0 1 3.2e+03 World StepLimiter - 3260 -5.46 -22.3 17.3 5.79e-14 0 1 3.2e+03 World StepLimiter - 3261 -5.22 -21.4 17.3 5.78e-14 0 1 3.2e+03 World StepLimiter - 3262 -4.99 -20.4 17.3 5.77e-14 0 1 3.2e+03 World StepLimiter - 3263 -4.75 -19.4 17.3 5.76e-14 0 1 3.2e+03 World StepLimiter - 3264 -4.51 -18.5 17.3 5.75e-14 0 1 3.2e+03 World StepLimiter - 3265 -4.27 -17.5 17.3 5.74e-14 0 1 3.2e+03 World StepLimiter - 3266 -4.03 -16.5 17.3 5.73e-14 0 1 3.2e+03 World StepLimiter - 3267 -3.79 -15.5 17.3 5.72e-14 0 1 3.2e+03 World StepLimiter - 3268 -3.55 -14.6 17.3 5.71e-14 0 1 3.2e+03 World StepLimiter - 3269 -3.31 -13.6 17.3 5.7e-14 0 1 3.21e+03 World StepLimiter - 3270 -3.07 -12.6 17.3 5.69e-14 0 1 3.21e+03 World StepLimiter - 3271 -2.83 -11.7 17.3 5.68e-14 0 1 3.21e+03 World StepLimiter - 3272 -2.59 -10.7 17.3 5.67e-14 0 1 3.21e+03 World StepLimiter - 3273 -2.35 -9.72 17.4 5.66e-14 0 1 3.21e+03 World StepLimiter - 3274 -2.11 -8.75 17.4 5.65e-14 0 1 3.21e+03 World StepLimiter - 3275 -1.87 -7.78 17.4 5.64e-14 0 1 3.21e+03 World StepLimiter - 3276 -1.63 -6.81 17.4 5.63e-14 0 1 3.21e+03 World StepLimiter - 3277 -1.39 -5.84 17.4 5.62e-14 0 1 3.21e+03 World StepLimiter - 3278 -1.15 -4.87 17.4 5.61e-14 0 1 3.21e+03 World StepLimiter - 3279 -0.904 -3.9 17.4 5.6e-14 0 1 3.22e+03 World StepLimiter - 3280 -0.662 -2.93 17.4 5.59e-14 0 1 3.22e+03 World StepLimiter - 3281 -0.42 -1.96 17.4 5.58e-14 0 1 3.22e+03 World StepLimiter - 3282 -0.178 -0.987 17.4 5.57e-14 0 1 3.22e+03 World StepLimiter - 3283 0.0649 -0.0165 17.4 5.56e-14 0 1 3.22e+03 World StepLimiter - 3284 0.308 0.954 17.4 5.55e-14 0 1 3.22e+03 World StepLimiter - 3285 0.551 1.92 17.4 5.54e-14 0 1 3.22e+03 World StepLimiter - 3286 0.794 2.89 17.4 5.53e-14 0 1 3.22e+03 World StepLimiter - 3287 1.04 3.86 17.4 5.52e-14 0 1 3.22e+03 World StepLimiter - 3288 1.28 4.83 17.4 5.51e-14 0 1 3.22e+03 World StepLimiter - 3289 1.53 5.8 17.4 5.5e-14 0 1 3.23e+03 World StepLimiter - 3290 1.77 6.77 17.4 5.49e-14 0 1 3.23e+03 World StepLimiter - 3291 2.01 7.74 17.4 5.48e-14 0 1 3.23e+03 World StepLimiter - 3292 2.26 8.71 17.5 5.47e-14 0 1 3.23e+03 World StepLimiter - 3293 2.5 9.68 17.5 5.46e-14 0 1 3.23e+03 World StepLimiter - 3294 2.75 10.7 17.5 5.45e-14 0 1 3.23e+03 World StepLimiter - 3295 2.99 11.6 17.5 5.44e-14 0 1 3.23e+03 World StepLimiter - 3296 3.24 12.6 17.5 5.43e-14 0 1 3.23e+03 World StepLimiter - 3297 3.49 13.6 17.5 5.42e-14 0 1 3.23e+03 World StepLimiter - 3298 3.73 14.5 17.5 5.41e-14 0 1 3.23e+03 World StepLimiter - 3299 3.98 15.5 17.5 5.4e-14 0 1 3.24e+03 World StepLimiter - 3300 4.22 16.5 17.5 5.39e-14 0 1 3.24e+03 World StepLimiter - 3301 4.47 17.4 17.5 5.38e-14 0 1 3.24e+03 World StepLimiter - 3302 4.72 18.4 17.5 5.37e-14 0 1 3.24e+03 World StepLimiter - 3303 4.96 19.4 17.5 5.36e-14 0 1 3.24e+03 World StepLimiter - 3304 5.21 20.3 17.5 5.35e-14 0 1 3.24e+03 World StepLimiter - 3305 5.46 21.3 17.5 5.34e-14 0 1 3.24e+03 World StepLimiter - 3306 5.71 22.3 17.5 5.33e-14 0 1 3.24e+03 World StepLimiter - 3307 5.96 23.2 17.5 5.32e-14 0 1 3.24e+03 World StepLimiter - 3308 6.2 24.2 17.5 5.31e-14 0 1 3.24e+03 World StepLimiter - 3309 6.45 25.2 17.5 5.3e-14 0 1 3.25e+03 World StepLimiter - 3310 6.7 26.2 17.6 5.29e-14 0 1 3.25e+03 World StepLimiter - 3311 6.95 27.1 17.6 5.28e-14 0 1 3.25e+03 World StepLimiter - 3312 7.2 28.1 17.6 5.27e-14 0 1 3.25e+03 World StepLimiter - 3313 7.45 29.1 17.6 5.26e-14 0 1 3.25e+03 World StepLimiter - 3314 7.7 30 17.6 5.25e-14 0 1 3.25e+03 World StepLimiter - 3315 7.95 31 17.6 5.24e-14 0 1 3.25e+03 World StepLimiter - 3316 8.2 32 17.6 5.23e-14 0 1 3.25e+03 World StepLimiter - 3317 8.45 32.9 17.6 5.22e-14 0 1 3.25e+03 World StepLimiter - 3318 8.7 33.9 17.6 5.21e-14 0 1 3.25e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.129008962467neV MomDir: (0.25073522785979,0.96803962111951,0.0055800943444651) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3319 8.7 33.9 17.6 5.21e-14 0 0.000549 3.25e+03 Guide Transportation *** StepTooSmall *** - 3320 8.7 33.9 17.6 5.21e-14 0 0 3.25e+03 World Transportation - 3321 8.45 32.9 17.6 5.22e-14 0 1 3.26e+03 World StepLimiter - 3322 8.21 32 17.6 5.23e-14 0 1 3.26e+03 World StepLimiter - 3323 7.96 31 17.6 5.24e-14 0 1 3.26e+03 World StepLimiter - 3324 7.72 30 17.6 5.25e-14 0 1 3.26e+03 World StepLimiter - 3325 7.47 29.1 17.6 5.26e-14 0 1 3.26e+03 World StepLimiter - 3326 7.23 28.1 17.6 5.27e-14 0 1 3.26e+03 World StepLimiter - 3327 6.98 27.1 17.6 5.28e-14 0 1 3.26e+03 World StepLimiter - 3328 6.74 26.1 17.6 5.29e-14 0 1 3.26e+03 World StepLimiter - 3329 6.49 25.2 17.6 5.3e-14 0 1 3.26e+03 World StepLimiter - 3330 6.25 24.2 17.7 5.31e-14 0 1 3.26e+03 World StepLimiter - 3331 6 23.2 17.7 5.32e-14 0 1 3.27e+03 World StepLimiter - 3332 5.76 22.3 17.7 5.33e-14 0 1 3.27e+03 World StepLimiter - 3333 5.52 21.3 17.7 5.34e-14 0 1 3.27e+03 World StepLimiter - 3334 5.27 20.3 17.7 5.35e-14 0 1 3.27e+03 World StepLimiter - 3335 5.03 19.4 17.7 5.36e-14 0 1 3.27e+03 World StepLimiter - 3336 4.79 18.4 17.7 5.37e-14 0 1 3.27e+03 World StepLimiter - 3337 4.54 17.4 17.7 5.38e-14 0 1 3.27e+03 World StepLimiter - 3338 4.3 16.4 17.7 5.39e-14 0 1 3.27e+03 World StepLimiter - 3339 4.06 15.5 17.7 5.4e-14 0 1 3.27e+03 World StepLimiter - 3340 3.82 14.5 17.7 5.41e-14 0 1 3.27e+03 World StepLimiter - 3341 3.58 13.5 17.7 5.42e-14 0 1 3.28e+03 World StepLimiter - 3342 3.34 12.6 17.7 5.43e-14 0 1 3.28e+03 World StepLimiter - 3343 3.09 11.6 17.7 5.44e-14 0 1 3.28e+03 World StepLimiter - 3344 2.85 10.6 17.7 5.45e-14 0 1 3.28e+03 World StepLimiter - 3345 2.61 9.65 17.7 5.46e-14 0 1 3.28e+03 World StepLimiter - 3346 2.37 8.68 17.7 5.47e-14 0 1 3.28e+03 World StepLimiter - 3347 2.13 7.71 17.7 5.48e-14 0 1 3.28e+03 World StepLimiter - 3348 1.89 6.74 17.8 5.49e-14 0 1 3.28e+03 World StepLimiter - 3349 1.65 5.77 17.8 5.5e-14 0 1 3.28e+03 World StepLimiter - 3350 1.41 4.8 17.8 5.51e-14 0 1 3.28e+03 World StepLimiter - 3351 1.17 3.83 17.8 5.52e-14 0 1 3.29e+03 World StepLimiter - 3352 0.933 2.86 17.8 5.53e-14 0 1 3.29e+03 World StepLimiter - 3353 0.694 1.89 17.8 5.54e-14 0 1 3.29e+03 World StepLimiter - 3354 0.455 0.917 17.8 5.55e-14 0 1 3.29e+03 World StepLimiter - 3355 0.216 -0.0541 17.8 5.56e-14 0 1 3.29e+03 World StepLimiter - 3356 -0.0222 -1.03 17.8 5.57e-14 0 1 3.29e+03 World StepLimiter - 3357 -0.26 -2 17.8 5.58e-14 0 1 3.29e+03 World StepLimiter - 3358 -0.498 -2.97 17.8 5.59e-14 0 1 3.29e+03 World StepLimiter - 3359 -0.736 -3.94 17.8 5.6e-14 0 1 3.29e+03 World StepLimiter - 3360 -0.974 -4.91 17.8 5.61e-14 0 1 3.29e+03 World StepLimiter - 3361 -1.21 -5.88 17.8 5.62e-14 0 1 3.3e+03 World StepLimiter - 3362 -1.45 -6.85 17.8 5.63e-14 0 1 3.3e+03 World StepLimiter - 3363 -1.69 -7.82 17.8 5.64e-14 0 1 3.3e+03 World StepLimiter - 3364 -1.92 -8.8 17.8 5.65e-14 0 1 3.3e+03 World StepLimiter - 3365 -2.16 -9.77 17.8 5.66e-14 0 1 3.3e+03 World StepLimiter - 3366 -2.39 -10.7 17.8 5.67e-14 0 1 3.3e+03 World StepLimiter - 3367 -2.63 -11.7 17.9 5.68e-14 0 1 3.3e+03 World StepLimiter - 3368 -2.87 -12.7 17.9 5.69e-14 0 1 3.3e+03 World StepLimiter - 3369 -3.1 -13.7 17.9 5.7e-14 0 1 3.3e+03 World StepLimiter - 3370 -3.34 -14.6 17.9 5.71e-14 0 1 3.3e+03 World StepLimiter - 3371 -3.57 -15.6 17.9 5.72e-14 0 1 3.31e+03 World StepLimiter - 3372 -3.81 -16.6 17.9 5.73e-14 0 1 3.31e+03 World StepLimiter - 3373 -4.04 -17.5 17.9 5.74e-14 0 1 3.31e+03 World StepLimiter - 3374 -4.28 -18.5 17.9 5.75e-14 0 1 3.31e+03 World StepLimiter - 3375 -4.51 -19.5 17.9 5.76e-14 0 1 3.31e+03 World StepLimiter - 3376 -4.75 -20.5 17.9 5.77e-14 0 1 3.31e+03 World StepLimiter - 3377 -4.98 -21.4 17.9 5.78e-14 0 1 3.31e+03 World StepLimiter - 3378 -5.21 -22.4 17.9 5.79e-14 0 1 3.31e+03 World StepLimiter - 3379 -5.45 -23.4 17.9 5.8e-14 0 1 3.31e+03 World StepLimiter - 3380 -5.68 -24.3 17.9 5.81e-14 0 1 3.31e+03 World StepLimiter - 3381 -5.91 -25.3 17.9 5.82e-14 0 1 3.32e+03 World StepLimiter - 3382 -6.15 -26.3 17.9 5.83e-14 0 1 3.32e+03 World StepLimiter - 3383 -6.38 -27.3 17.9 5.84e-14 0 1 3.32e+03 World StepLimiter - 3384 -6.61 -28.2 17.9 5.85e-14 0 1 3.32e+03 World StepLimiter - 3385 -6.85 -29.2 17.9 5.86e-14 0 1 3.32e+03 World StepLimiter - 3386 -7.08 -30.2 18 5.87e-14 0 1 3.32e+03 World StepLimiter - 3387 -7.31 -31.2 18 5.88e-14 0 1 3.32e+03 World StepLimiter - 3388 -7.54 -32.1 18 5.89e-14 0 1 3.32e+03 World StepLimiter - 3389 -7.77 -33.1 18 5.9e-14 0 1 3.32e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.100060669135neV MomDir: (-0.23136504702039,-0.97285289244164,0.0052406760240544) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3390 -8 -34.1 18 5.91e-14 0 0.998 3.32e+03 Guide Transportation *** StepTooSmall *** - 3391 -8 -34.1 18 5.91e-14 0 0 3.32e+03 World Transportation - 3392 -7.78 -33.1 18 5.9e-14 0 1 3.33e+03 World StepLimiter - 3393 -7.55 -32.1 18 5.89e-14 0 1 3.33e+03 World StepLimiter - 3394 -7.33 -31.2 18 5.88e-14 0 1 3.33e+03 World StepLimiter - 3395 -7.1 -30.2 18 5.87e-14 0 1 3.33e+03 World StepLimiter - 3396 -6.87 -29.2 18 5.86e-14 0 1 3.33e+03 World StepLimiter - 3397 -6.64 -28.2 18 5.85e-14 0 1 3.33e+03 World StepLimiter - 3398 -6.42 -27.3 18 5.84e-14 0 1 3.33e+03 World StepLimiter - 3399 -6.19 -26.3 18 5.83e-14 0 1 3.33e+03 World StepLimiter - 3400 -5.96 -25.3 18 5.82e-14 0 1 3.33e+03 World StepLimiter - 3401 -5.73 -24.3 18 5.81e-14 0 1 3.33e+03 World StepLimiter - 3402 -5.51 -23.4 18 5.8e-14 0 1 3.34e+03 World StepLimiter - 3403 -5.28 -22.4 18 5.79e-14 0 1 3.34e+03 World StepLimiter - 3404 -5.05 -21.4 18 5.78e-14 0 1 3.34e+03 World StepLimiter - 3405 -4.82 -20.4 18 5.77e-14 0 1 3.34e+03 World StepLimiter - 3406 -4.59 -19.5 18.1 5.76e-14 0 1 3.34e+03 World StepLimiter - 3407 -4.36 -18.5 18.1 5.75e-14 0 1 3.34e+03 World StepLimiter - 3408 -4.13 -17.5 18.1 5.74e-14 0 1 3.34e+03 World StepLimiter - 3409 -3.9 -16.5 18.1 5.73e-14 0 1 3.34e+03 World StepLimiter - 3410 -3.67 -15.6 18.1 5.72e-14 0 1 3.34e+03 World StepLimiter - 3411 -3.45 -14.6 18.1 5.71e-14 0 1 3.34e+03 World StepLimiter - 3412 -3.22 -13.6 18.1 5.7e-14 0 1 3.35e+03 World StepLimiter - 3413 -2.98 -12.7 18.1 5.69e-14 0 1 3.35e+03 World StepLimiter - 3414 -2.75 -11.7 18.1 5.68e-14 0 1 3.35e+03 World StepLimiter - 3415 -2.52 -10.7 18.1 5.67e-14 0 1 3.35e+03 World StepLimiter - 3416 -2.29 -9.73 18.1 5.66e-14 0 1 3.35e+03 World StepLimiter - 3417 -2.06 -8.76 18.1 5.65e-14 0 1 3.35e+03 World StepLimiter - 3418 -1.83 -7.79 18.1 5.64e-14 0 1 3.35e+03 World StepLimiter - 3419 -1.6 -6.82 18.1 5.63e-14 0 1 3.35e+03 World StepLimiter - 3420 -1.37 -5.84 18.1 5.62e-14 0 1 3.35e+03 World StepLimiter - 3421 -1.14 -4.87 18.1 5.61e-14 0 1 3.35e+03 World StepLimiter - 3422 -0.904 -3.9 18.1 5.6e-14 0 1 3.36e+03 World StepLimiter - 3423 -0.671 -2.92 18.1 5.59e-14 0 1 3.36e+03 World StepLimiter - 3424 -0.439 -1.95 18.2 5.58e-14 0 1 3.36e+03 World StepLimiter - 3425 -0.206 -0.979 18.2 5.57e-14 0 1 3.36e+03 World StepLimiter - 3426 0.0268 -0.00688 18.2 5.56e-14 0 1 3.36e+03 World StepLimiter - 3427 0.26 0.966 18.2 5.55e-14 0 1 3.36e+03 World StepLimiter - 3428 0.493 1.94 18.2 5.54e-14 0 1 3.36e+03 World StepLimiter - 3429 0.727 2.91 18.2 5.53e-14 0 1 3.36e+03 World StepLimiter - 3430 0.96 3.88 18.2 5.52e-14 0 1 3.36e+03 World StepLimiter - 3431 1.19 4.85 18.2 5.51e-14 0 1 3.36e+03 World StepLimiter - 3432 1.43 5.83 18.2 5.5e-14 0 1 3.37e+03 World StepLimiter - 3433 1.66 6.8 18.2 5.49e-14 0 1 3.37e+03 World StepLimiter - 3434 1.9 7.77 18.2 5.48e-14 0 1 3.37e+03 World StepLimiter - 3435 2.13 8.74 18.2 5.47e-14 0 1 3.37e+03 World StepLimiter - 3436 2.37 9.72 18.2 5.46e-14 0 1 3.37e+03 World StepLimiter - 3437 2.6 10.7 18.2 5.45e-14 0 1 3.37e+03 World StepLimiter - 3438 2.84 11.7 18.2 5.44e-14 0 1 3.37e+03 World StepLimiter - 3439 3.07 12.6 18.2 5.43e-14 0 1 3.37e+03 World StepLimiter - 3440 3.31 13.6 18.2 5.42e-14 0 1 3.37e+03 World StepLimiter - 3441 3.55 14.6 18.2 5.41e-14 0 1 3.37e+03 World StepLimiter - 3442 3.78 15.5 18.2 5.4e-14 0 1 3.38e+03 World StepLimiter - 3443 4.02 16.5 18.3 5.39e-14 0 1 3.38e+03 World StepLimiter - 3444 4.26 17.5 18.3 5.38e-14 0 1 3.38e+03 World StepLimiter - 3445 4.49 18.5 18.3 5.37e-14 0 1 3.38e+03 World StepLimiter - 3446 4.73 19.4 18.3 5.36e-14 0 1 3.38e+03 World StepLimiter - 3447 4.97 20.4 18.3 5.35e-14 0 1 3.38e+03 World StepLimiter - 3448 5.2 21.4 18.3 5.34e-14 0 1 3.38e+03 World StepLimiter - 3449 5.44 22.3 18.3 5.33e-14 0 1 3.38e+03 World StepLimiter - 3450 5.68 23.3 18.3 5.32e-14 0 1 3.38e+03 World StepLimiter - 3451 5.92 24.3 18.3 5.31e-14 0 1 3.38e+03 World StepLimiter - 3452 6.16 25.3 18.3 5.3e-14 0 1 3.39e+03 World StepLimiter - 3453 6.4 26.2 18.3 5.29e-14 0 1 3.39e+03 World StepLimiter - 3454 6.63 27.2 18.3 5.28e-14 0 1 3.39e+03 World StepLimiter - 3455 6.87 28.2 18.3 5.27e-14 0 1 3.39e+03 World StepLimiter - 3456 7.11 29.1 18.3 5.26e-14 0 1 3.39e+03 World StepLimiter - 3457 7.35 30.1 18.3 5.25e-14 0 1 3.39e+03 World StepLimiter - 3458 7.59 31.1 18.3 5.24e-14 0 1 3.39e+03 World StepLimiter - 3459 7.83 32.1 18.3 5.23e-14 0 1 3.39e+03 World StepLimiter - 3460 8.07 33 18.3 5.22e-14 0 1 3.39e+03 World StepLimiter - 3461 8.31 34 18.4 5.21e-14 0 1 3.39e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.119119687198neV MomDir: (0.24067581475211,0.97058951613562,0.0055806237132641) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3462 8.31 34 18.4 5.21e-14 0 0.000959 3.39e+03 Guide Transportation *** StepTooSmall *** - 3463 8.31 34 18.4 5.21e-14 0 0 3.39e+03 World Transportation - 3464 8.08 33 18.4 5.22e-14 0 1 3.4e+03 World StepLimiter - 3465 7.85 32.1 18.4 5.23e-14 0 1 3.4e+03 World StepLimiter - 3466 7.61 31.1 18.4 5.24e-14 0 1 3.4e+03 World StepLimiter - 3467 7.38 30.1 18.4 5.25e-14 0 1 3.4e+03 World StepLimiter - 3468 7.15 29.1 18.4 5.26e-14 0 1 3.4e+03 World StepLimiter - 3469 6.91 28.2 18.4 5.27e-14 0 1 3.4e+03 World StepLimiter - 3470 6.68 27.2 18.4 5.28e-14 0 1 3.4e+03 World StepLimiter - 3471 6.45 26.2 18.4 5.29e-14 0 1 3.4e+03 World StepLimiter - 3472 6.21 25.2 18.4 5.3e-14 0 1 3.4e+03 World StepLimiter - 3473 5.98 24.3 18.4 5.31e-14 0 1 3.4e+03 World StepLimiter - 3474 5.75 23.3 18.4 5.32e-14 0 1 3.41e+03 World StepLimiter - 3475 5.52 22.3 18.4 5.33e-14 0 1 3.41e+03 World StepLimiter - 3476 5.29 21.4 18.4 5.34e-14 0 1 3.41e+03 World StepLimiter - 3477 5.05 20.4 18.4 5.35e-14 0 1 3.41e+03 World StepLimiter - 3478 4.82 19.4 18.4 5.36e-14 0 1 3.41e+03 World StepLimiter - 3479 4.59 18.4 18.4 5.37e-14 0 1 3.41e+03 World StepLimiter - 3480 4.36 17.5 18.4 5.38e-14 0 1 3.41e+03 World StepLimiter - 3481 4.13 16.5 18.5 5.39e-14 0 1 3.41e+03 World StepLimiter - 3482 3.9 15.5 18.5 5.4e-14 0 1 3.41e+03 World StepLimiter - 3483 3.67 14.5 18.5 5.41e-14 0 1 3.41e+03 World StepLimiter - 3484 3.44 13.6 18.5 5.42e-14 0 1 3.42e+03 World StepLimiter - 3485 3.21 12.6 18.5 5.43e-14 0 1 3.42e+03 World StepLimiter - 3486 2.98 11.6 18.5 5.44e-14 0 1 3.42e+03 World StepLimiter - 3487 2.75 10.7 18.5 5.45e-14 0 1 3.42e+03 World StepLimiter - 3488 2.52 9.68 18.5 5.46e-14 0 1 3.42e+03 World StepLimiter - 3489 2.29 8.71 18.5 5.47e-14 0 1 3.42e+03 World StepLimiter - 3490 2.06 7.73 18.5 5.48e-14 0 1 3.42e+03 World StepLimiter - 3491 1.84 6.76 18.5 5.49e-14 0 1 3.42e+03 World StepLimiter - 3492 1.61 5.78 18.5 5.5e-14 0 1 3.42e+03 World StepLimiter - 3493 1.38 4.81 18.5 5.51e-14 0 1 3.42e+03 World StepLimiter - 3494 1.15 3.84 18.5 5.52e-14 0 1 3.43e+03 World StepLimiter - 3495 0.924 2.86 18.5 5.53e-14 0 1 3.43e+03 World StepLimiter - 3496 0.697 1.89 18.5 5.54e-14 0 1 3.43e+03 World StepLimiter - 3497 0.47 0.916 18.5 5.55e-14 0 1 3.43e+03 World StepLimiter - 3498 0.243 -0.0578 18.5 5.56e-14 0 1 3.43e+03 World StepLimiter - 3499 0.0159 -1.03 18.6 5.57e-14 0 1 3.43e+03 World StepLimiter - 3500 -0.211 -2.01 18.6 5.58e-14 0 1 3.43e+03 World StepLimiter - 3501 -0.437 -2.98 18.6 5.59e-14 0 1 3.43e+03 World StepLimiter - 3502 -0.663 -3.95 18.6 5.6e-14 0 1 3.43e+03 World StepLimiter - 3503 -0.889 -4.93 18.6 5.61e-14 0 1 3.43e+03 World StepLimiter - 3504 -1.12 -5.9 18.6 5.62e-14 0 1 3.44e+03 World StepLimiter - 3505 -1.34 -6.88 18.6 5.63e-14 0 1 3.44e+03 World StepLimiter - 3506 -1.57 -7.85 18.6 5.64e-14 0 1 3.44e+03 World StepLimiter - 3507 -1.79 -8.82 18.6 5.65e-14 0 1 3.44e+03 World StepLimiter - 3508 -2.02 -9.8 18.6 5.66e-14 0 1 3.44e+03 World StepLimiter - 3509 -2.24 -10.8 18.6 5.67e-14 0 1 3.44e+03 World StepLimiter - 3510 -2.47 -11.7 18.6 5.68e-14 0 1 3.44e+03 World StepLimiter - 3511 -2.69 -12.7 18.6 5.69e-14 0 1 3.44e+03 World StepLimiter - 3512 -2.91 -13.7 18.6 5.7e-14 0 1 3.44e+03 World StepLimiter - 3513 -3.14 -14.7 18.6 5.71e-14 0 1 3.44e+03 World StepLimiter - 3514 -3.36 -15.6 18.6 5.72e-14 0 1 3.45e+03 World StepLimiter - 3515 -3.59 -16.6 18.6 5.73e-14 0 1 3.45e+03 World StepLimiter - 3516 -3.81 -17.6 18.6 5.74e-14 0 1 3.45e+03 World StepLimiter - 3517 -4.03 -18.6 18.6 5.75e-14 0 1 3.45e+03 World StepLimiter - 3518 -4.26 -19.5 18.7 5.76e-14 0 1 3.45e+03 World StepLimiter - 3519 -4.48 -20.5 18.7 5.77e-14 0 1 3.45e+03 World StepLimiter - 3520 -4.7 -21.5 18.7 5.78e-14 0 1 3.45e+03 World StepLimiter - 3521 -4.92 -22.5 18.7 5.79e-14 0 1 3.45e+03 World StepLimiter - 3522 -5.15 -23.4 18.7 5.8e-14 0 1 3.45e+03 World StepLimiter - 3523 -5.37 -24.4 18.7 5.81e-14 0 1 3.45e+03 World StepLimiter - 3524 -5.59 -25.4 18.7 5.82e-14 0 1 3.46e+03 World StepLimiter - 3525 -5.81 -26.4 18.7 5.83e-14 0 1 3.46e+03 World StepLimiter - 3526 -6.03 -27.3 18.7 5.84e-14 0 1 3.46e+03 World StepLimiter - 3527 -6.25 -28.3 18.7 5.85e-14 0 1 3.46e+03 World StepLimiter - 3528 -6.48 -29.3 18.7 5.86e-14 0 1 3.46e+03 World StepLimiter - 3529 -6.7 -30.3 18.7 5.87e-14 0 1 3.46e+03 World StepLimiter - 3530 -6.92 -31.2 18.7 5.88e-14 0 1 3.46e+03 World StepLimiter - 3531 -7.14 -32.2 18.7 5.89e-14 0 1 3.46e+03 World StepLimiter - 3532 -7.36 -33.2 18.7 5.9e-14 0 1 3.46e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.110032855605neV MomDir: (-0.22011882502598,-0.97545899084351,0.0052402339400258) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3533 -7.58 -34.2 18.7 5.91e-14 0 0.998 3.46e+03 Guide Transportation *** StepTooSmall *** - 3534 -7.58 -34.2 18.7 5.91e-14 0 0 3.46e+03 World Transportation - 3535 -7.37 -33.2 18.7 5.9e-14 0 1 3.47e+03 World StepLimiter - 3536 -7.15 -32.2 18.7 5.89e-14 0 1 3.47e+03 World StepLimiter - 3537 -6.94 -31.2 18.7 5.88e-14 0 1 3.47e+03 World StepLimiter - 3538 -6.73 -30.3 18.8 5.87e-14 0 1 3.47e+03 World StepLimiter - 3539 -6.51 -29.3 18.8 5.86e-14 0 1 3.47e+03 World StepLimiter - 3540 -6.3 -28.3 18.8 5.85e-14 0 1 3.47e+03 World StepLimiter - 3541 -6.08 -27.3 18.8 5.84e-14 0 1 3.47e+03 World StepLimiter - 3542 -5.87 -26.4 18.8 5.83e-14 0 1 3.47e+03 World StepLimiter - 3543 -5.65 -25.4 18.8 5.82e-14 0 1 3.47e+03 World StepLimiter - 3544 -5.44 -24.4 18.8 5.81e-14 0 1 3.47e+03 World StepLimiter - 3545 -5.23 -23.4 18.8 5.8e-14 0 1 3.48e+03 World StepLimiter - 3546 -5.01 -22.4 18.8 5.79e-14 0 1 3.48e+03 World StepLimiter - 3547 -4.79 -21.5 18.8 5.78e-14 0 1 3.48e+03 World StepLimiter - 3548 -4.58 -20.5 18.8 5.77e-14 0 1 3.48e+03 World StepLimiter - 3549 -4.36 -19.5 18.8 5.76e-14 0 1 3.48e+03 World StepLimiter - 3550 -4.15 -18.5 18.8 5.75e-14 0 1 3.48e+03 World StepLimiter - 3551 -3.93 -17.6 18.8 5.74e-14 0 1 3.48e+03 World StepLimiter - 3552 -3.72 -16.6 18.8 5.73e-14 0 1 3.48e+03 World StepLimiter - 3553 -3.5 -15.6 18.8 5.72e-14 0 1 3.48e+03 World StepLimiter - 3554 -3.28 -14.6 18.8 5.71e-14 0 1 3.48e+03 World StepLimiter - 3555 -3.07 -13.7 18.8 5.7e-14 0 1 3.49e+03 World StepLimiter - 3556 -2.85 -12.7 18.8 5.69e-14 0 1 3.49e+03 World StepLimiter - 3557 -2.63 -11.7 18.9 5.68e-14 0 1 3.49e+03 World StepLimiter - 3558 -2.42 -10.7 18.9 5.67e-14 0 1 3.49e+03 World StepLimiter - 3559 -2.2 -9.76 18.9 5.66e-14 0 1 3.49e+03 World StepLimiter - 3560 -1.98 -8.78 18.9 5.65e-14 0 1 3.49e+03 World StepLimiter - 3561 -1.76 -7.8 18.9 5.64e-14 0 1 3.49e+03 World StepLimiter - 3562 -1.54 -6.83 18.9 5.63e-14 0 1 3.49e+03 World StepLimiter - 3563 -1.33 -5.85 18.9 5.62e-14 0 1 3.49e+03 World StepLimiter - 3564 -1.11 -4.88 18.9 5.61e-14 0 1 3.49e+03 World StepLimiter - 3565 -0.889 -3.9 18.9 5.6e-14 0 1 3.5e+03 World StepLimiter - 3566 -0.67 -2.92 18.9 5.59e-14 0 1 3.5e+03 World StepLimiter - 3567 -0.451 -1.95 18.9 5.58e-14 0 1 3.5e+03 World StepLimiter - 3568 -0.232 -0.973 18.9 5.57e-14 0 1 3.5e+03 World StepLimiter - 3569 -0.0121 0.00211 18.9 5.56e-14 0 1 3.5e+03 World StepLimiter - 3570 0.208 0.978 18.9 5.55e-14 0 1 3.5e+03 World StepLimiter - 3571 0.427 1.95 18.9 5.54e-14 0 1 3.5e+03 World StepLimiter - 3572 0.647 2.93 18.9 5.53e-14 0 1 3.5e+03 World StepLimiter - 3573 0.868 3.9 18.9 5.52e-14 0 1 3.5e+03 World StepLimiter - 3574 1.09 4.88 18.9 5.51e-14 0 1 3.5e+03 World StepLimiter - 3575 1.31 5.85 19 5.5e-14 0 1 3.51e+03 World StepLimiter - 3576 1.53 6.83 19 5.49e-14 0 1 3.51e+03 World StepLimiter - 3577 1.75 7.81 19 5.48e-14 0 1 3.51e+03 World StepLimiter - 3578 1.97 8.78 19 5.47e-14 0 1 3.51e+03 World StepLimiter - 3579 2.19 9.76 19 5.46e-14 0 1 3.51e+03 World StepLimiter - 3580 2.41 10.7 19 5.45e-14 0 1 3.51e+03 World StepLimiter - 3581 2.64 11.7 19 5.44e-14 0 1 3.51e+03 World StepLimiter - 3582 2.86 12.7 19 5.43e-14 0 1 3.51e+03 World StepLimiter - 3583 3.08 13.7 19 5.42e-14 0 1 3.51e+03 World StepLimiter - 3584 3.3 14.6 19 5.41e-14 0 1 3.51e+03 World StepLimiter - 3585 3.53 15.6 19 5.4e-14 0 1 3.52e+03 World StepLimiter - 3586 3.75 16.6 19 5.39e-14 0 1 3.52e+03 World StepLimiter - 3587 3.97 17.6 19 5.38e-14 0 1 3.52e+03 World StepLimiter - 3588 4.2 18.5 19 5.37e-14 0 1 3.52e+03 World StepLimiter - 3589 4.42 19.5 19 5.36e-14 0 1 3.52e+03 World StepLimiter - 3590 4.64 20.5 19 5.35e-14 0 1 3.52e+03 World StepLimiter - 3591 4.87 21.5 19 5.34e-14 0 1 3.52e+03 World StepLimiter - 3592 5.09 22.4 19 5.33e-14 0 1 3.52e+03 World StepLimiter - 3593 5.31 23.4 19 5.32e-14 0 1 3.52e+03 World StepLimiter - 3594 5.54 24.4 19.1 5.31e-14 0 1 3.52e+03 World StepLimiter - 3595 5.76 25.4 19.1 5.3e-14 0 1 3.53e+03 World StepLimiter - 3596 5.99 26.3 19.1 5.29e-14 0 1 3.53e+03 World StepLimiter - 3597 6.21 27.3 19.1 5.28e-14 0 1 3.53e+03 World StepLimiter - 3598 6.44 28.3 19.1 5.27e-14 0 1 3.53e+03 World StepLimiter - 3599 6.67 29.2 19.1 5.26e-14 0 1 3.53e+03 World StepLimiter - 3600 6.89 30.2 19.1 5.25e-14 0 1 3.53e+03 World StepLimiter - 3601 7.12 31.2 19.1 5.24e-14 0 1 3.53e+03 World StepLimiter - 3602 7.34 32.2 19.1 5.23e-14 0 1 3.53e+03 World StepLimiter - 3603 7.57 33.1 19.1 5.22e-14 0 1 3.53e+03 World StepLimiter - 3604 7.8 34.1 19.1 5.21e-14 0 1 3.53e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.106565093783neV MomDir: (0.22678497995699,0.97392885879882,0.0055812959725263) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3605 7.8 34.1 19.1 5.21e-14 0 0.00125 3.53e+03 Guide Transportation *** StepTooSmall *** - 3606 7.8 34.1 19.1 5.21e-14 0 0 3.53e+03 World Transportation - 3607 7.58 33.1 19.1 5.22e-14 0 1 3.54e+03 World StepLimiter - 3608 7.36 32.2 19.1 5.23e-14 0 1 3.54e+03 World StepLimiter - 3609 7.14 31.2 19.1 5.24e-14 0 1 3.54e+03 World StepLimiter - 3610 6.92 30.2 19.1 5.25e-14 0 1 3.54e+03 World StepLimiter - 3611 6.71 29.2 19.1 5.26e-14 0 1 3.54e+03 World StepLimiter - 3612 6.49 28.3 19.1 5.27e-14 0 1 3.54e+03 World StepLimiter - 3613 6.27 27.3 19.1 5.28e-14 0 1 3.54e+03 World StepLimiter - 3614 6.05 26.3 19.2 5.29e-14 0 1 3.54e+03 World StepLimiter - 3615 5.84 25.3 19.2 5.3e-14 0 1 3.54e+03 World StepLimiter - 3616 5.62 24.4 19.2 5.31e-14 0 1 3.54e+03 World StepLimiter - 3617 5.4 23.4 19.2 5.32e-14 0 1 3.55e+03 World StepLimiter - 3618 5.19 22.4 19.2 5.33e-14 0 1 3.55e+03 World StepLimiter - 3619 4.97 21.4 19.2 5.34e-14 0 1 3.55e+03 World StepLimiter - 3620 4.75 20.5 19.2 5.35e-14 0 1 3.55e+03 World StepLimiter - 3621 4.54 19.5 19.2 5.36e-14 0 1 3.55e+03 World StepLimiter - 3622 4.32 18.5 19.2 5.37e-14 0 1 3.55e+03 World StepLimiter - 3623 4.11 17.5 19.2 5.38e-14 0 1 3.55e+03 World StepLimiter - 3624 3.89 16.5 19.2 5.39e-14 0 1 3.55e+03 World StepLimiter - 3625 3.68 15.6 19.2 5.4e-14 0 1 3.55e+03 World StepLimiter - 3626 3.46 14.6 19.2 5.41e-14 0 1 3.55e+03 World StepLimiter - 3627 3.25 13.6 19.2 5.42e-14 0 1 3.56e+03 World StepLimiter - 3628 3.03 12.6 19.2 5.43e-14 0 1 3.56e+03 World StepLimiter - 3629 2.82 11.7 19.2 5.44e-14 0 1 3.56e+03 World StepLimiter - 3630 2.61 10.7 19.2 5.45e-14 0 1 3.56e+03 World StepLimiter - 3631 2.39 9.71 19.2 5.46e-14 0 1 3.56e+03 World StepLimiter - 3632 2.18 8.74 19.3 5.47e-14 0 1 3.56e+03 World StepLimiter - 3633 1.97 7.76 19.3 5.48e-14 0 1 3.56e+03 World StepLimiter - 3634 1.75 6.78 19.3 5.49e-14 0 1 3.56e+03 World StepLimiter - 3635 1.54 5.8 19.3 5.5e-14 0 1 3.56e+03 World StepLimiter - 3636 1.33 4.83 19.3 5.51e-14 0 1 3.56e+03 World StepLimiter - 3637 1.11 3.85 19.3 5.52e-14 0 1 3.57e+03 World StepLimiter - 3638 0.902 2.87 19.3 5.53e-14 0 1 3.57e+03 World StepLimiter - 3639 0.69 1.9 19.3 5.54e-14 0 1 3.57e+03 World StepLimiter - 3640 0.478 0.918 19.3 5.55e-14 0 1 3.57e+03 World StepLimiter - 3641 0.266 -0.059 19.3 5.56e-14 0 1 3.57e+03 World StepLimiter - 3642 0.0541 -1.04 19.3 5.57e-14 0 1 3.57e+03 World StepLimiter - 3643 -0.157 -2.01 19.3 5.58e-14 0 1 3.57e+03 World StepLimiter - 3644 -0.369 -2.99 19.3 5.59e-14 0 1 3.57e+03 World StepLimiter - 3645 -0.58 -3.97 19.3 5.6e-14 0 1 3.57e+03 World StepLimiter - 3646 -0.791 -4.95 19.3 5.61e-14 0 1 3.57e+03 World StepLimiter - 3647 -1 -5.92 19.3 5.62e-14 0 1 3.58e+03 World StepLimiter - 3648 -1.21 -6.9 19.3 5.63e-14 0 1 3.58e+03 World StepLimiter - 3649 -1.42 -7.88 19.3 5.64e-14 0 1 3.58e+03 World StepLimiter - 3650 -1.63 -8.86 19.4 5.65e-14 0 1 3.58e+03 World StepLimiter - 3651 -1.84 -9.83 19.4 5.66e-14 0 1 3.58e+03 World StepLimiter - 3652 -2.05 -10.8 19.4 5.67e-14 0 1 3.58e+03 World StepLimiter - 3653 -2.26 -11.8 19.4 5.68e-14 0 1 3.58e+03 World StepLimiter - 3654 -2.47 -12.8 19.4 5.69e-14 0 1 3.58e+03 World StepLimiter - 3655 -2.68 -13.7 19.4 5.7e-14 0 1 3.58e+03 World StepLimiter - 3656 -2.89 -14.7 19.4 5.71e-14 0 1 3.58e+03 World StepLimiter - 3657 -3.1 -15.7 19.4 5.72e-14 0 1 3.59e+03 World StepLimiter - 3658 -3.31 -16.7 19.4 5.73e-14 0 1 3.59e+03 World StepLimiter - 3659 -3.51 -17.7 19.4 5.74e-14 0 1 3.59e+03 World StepLimiter - 3660 -3.72 -18.6 19.4 5.75e-14 0 1 3.59e+03 World StepLimiter - 3661 -3.93 -19.6 19.4 5.76e-14 0 1 3.59e+03 World StepLimiter - 3662 -4.14 -20.6 19.4 5.77e-14 0 1 3.59e+03 World StepLimiter - 3663 -4.35 -21.6 19.4 5.78e-14 0 1 3.59e+03 World StepLimiter - 3664 -4.55 -22.5 19.4 5.79e-14 0 1 3.59e+03 World StepLimiter - 3665 -4.76 -23.5 19.4 5.8e-14 0 1 3.59e+03 World StepLimiter - 3666 -4.97 -24.5 19.4 5.81e-14 0 1 3.59e+03 World StepLimiter - 3667 -5.18 -25.5 19.4 5.82e-14 0 1 3.6e+03 World StepLimiter - 3668 -5.38 -26.5 19.4 5.83e-14 0 1 3.6e+03 World StepLimiter - 3669 -5.59 -27.4 19.5 5.84e-14 0 1 3.6e+03 World StepLimiter - 3670 -5.8 -28.4 19.5 5.85e-14 0 1 3.6e+03 World StepLimiter - 3671 -6 -29.4 19.5 5.86e-14 0 1 3.6e+03 World StepLimiter - 3672 -6.21 -30.4 19.5 5.87e-14 0 1 3.6e+03 World StepLimiter - 3673 -6.41 -31.4 19.5 5.88e-14 0 1 3.6e+03 World StepLimiter - 3674 -6.62 -32.3 19.5 5.89e-14 0 1 3.6e+03 World StepLimiter - 3675 -6.83 -33.3 19.5 5.9e-14 0 1 3.6e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.122020834616neV MomDir: (-0.20534310089771,-0.97867602220038,0.005239702640534) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3676 -7.03 -34.3 19.5 5.91e-14 0 0.997 3.6e+03 Guide Transportation *** StepTooSmall *** - 3677 -7.03 -34.3 19.5 5.91e-14 0 0 3.6e+03 World Transportation - 3678 -6.83 -33.3 19.5 5.9e-14 0 1 3.61e+03 World StepLimiter - 3679 -6.64 -32.3 19.5 5.89e-14 0 1 3.61e+03 World StepLimiter - 3680 -6.44 -31.3 19.5 5.88e-14 0 1 3.61e+03 World StepLimiter - 3681 -6.24 -30.4 19.5 5.87e-14 0 1 3.61e+03 World StepLimiter - 3682 -6.05 -29.4 19.5 5.86e-14 0 1 3.61e+03 World StepLimiter - 3683 -5.85 -28.4 19.5 5.85e-14 0 1 3.61e+03 World StepLimiter - 3684 -5.65 -27.4 19.5 5.84e-14 0 1 3.61e+03 World StepLimiter - 3685 -5.45 -26.4 19.5 5.83e-14 0 1 3.61e+03 World StepLimiter - 3686 -5.26 -25.5 19.5 5.82e-14 0 1 3.61e+03 World StepLimiter - 3687 -5.06 -24.5 19.5 5.81e-14 0 1 3.61e+03 World StepLimiter - 3688 -4.86 -23.5 19.5 5.8e-14 0 1 3.62e+03 World StepLimiter - 3689 -4.66 -22.5 19.6 5.79e-14 0 1 3.62e+03 World StepLimiter - 3690 -4.46 -21.5 19.6 5.78e-14 0 1 3.62e+03 World StepLimiter - 3691 -4.26 -20.6 19.6 5.77e-14 0 1 3.62e+03 World StepLimiter - 3692 -4.07 -19.6 19.6 5.76e-14 0 1 3.62e+03 World StepLimiter - 3693 -3.87 -18.6 19.6 5.75e-14 0 1 3.62e+03 World StepLimiter - 3694 -3.67 -17.6 19.6 5.74e-14 0 1 3.62e+03 World StepLimiter - 3695 -3.47 -16.6 19.6 5.73e-14 0 1 3.62e+03 World StepLimiter - 3696 -3.27 -15.7 19.6 5.72e-14 0 1 3.62e+03 World StepLimiter - 3697 -3.07 -14.7 19.6 5.71e-14 0 1 3.62e+03 World StepLimiter - 3698 -2.87 -13.7 19.6 5.7e-14 0 1 3.63e+03 World StepLimiter - 3699 -2.67 -12.7 19.6 5.69e-14 0 1 3.63e+03 World StepLimiter - 3700 -2.47 -11.7 19.6 5.68e-14 0 1 3.63e+03 World StepLimiter - 3701 -2.27 -10.8 19.6 5.67e-14 0 1 3.63e+03 World StepLimiter - 3702 -2.07 -9.78 19.6 5.66e-14 0 1 3.63e+03 World StepLimiter - 3703 -1.87 -8.8 19.6 5.65e-14 0 1 3.63e+03 World StepLimiter - 3704 -1.67 -7.83 19.6 5.64e-14 0 1 3.63e+03 World StepLimiter - 3705 -1.46 -6.85 19.6 5.63e-14 0 1 3.63e+03 World StepLimiter - 3706 -1.26 -5.87 19.6 5.62e-14 0 1 3.63e+03 World StepLimiter - 3707 -1.06 -4.89 19.6 5.61e-14 0 1 3.63e+03 World StepLimiter - 3708 -0.86 -3.91 19.7 5.6e-14 0 1 3.64e+03 World StepLimiter - 3709 -0.658 -2.93 19.7 5.59e-14 0 1 3.64e+03 World StepLimiter - 3710 -0.456 -1.95 19.7 5.58e-14 0 1 3.64e+03 World StepLimiter - 3711 -0.254 -0.969 19.7 5.57e-14 0 1 3.64e+03 World StepLimiter - 3712 -0.0512 0.0099 19.7 5.56e-14 0 1 3.64e+03 World StepLimiter - 3713 0.151 0.989 19.7 5.55e-14 0 1 3.64e+03 World StepLimiter - 3714 0.354 1.97 19.7 5.54e-14 0 1 3.64e+03 World StepLimiter - 3715 0.557 2.95 19.7 5.53e-14 0 1 3.64e+03 World StepLimiter - 3716 0.76 3.93 19.7 5.52e-14 0 1 3.64e+03 World StepLimiter - 3717 0.964 4.91 19.7 5.51e-14 0 1 3.64e+03 World StepLimiter - 3718 1.17 5.88 19.7 5.5e-14 0 1 3.65e+03 World StepLimiter - 3719 1.37 6.86 19.7 5.49e-14 0 1 3.65e+03 World StepLimiter - 3720 1.57 7.84 19.7 5.48e-14 0 1 3.65e+03 World StepLimiter - 3721 1.78 8.82 19.7 5.47e-14 0 1 3.65e+03 World StepLimiter - 3722 1.98 9.8 19.7 5.46e-14 0 1 3.65e+03 World StepLimiter - 3723 2.19 10.8 19.7 5.45e-14 0 1 3.65e+03 World StepLimiter - 3724 2.39 11.8 19.7 5.44e-14 0 1 3.65e+03 World StepLimiter - 3725 2.6 12.7 19.7 5.43e-14 0 1 3.65e+03 World StepLimiter - 3726 2.8 13.7 19.8 5.42e-14 0 1 3.65e+03 World StepLimiter - 3727 3.01 14.7 19.8 5.41e-14 0 1 3.65e+03 World StepLimiter - 3728 3.21 15.7 19.8 5.4e-14 0 1 3.66e+03 World StepLimiter - 3729 3.42 16.7 19.8 5.39e-14 0 1 3.66e+03 World StepLimiter - 3730 3.62 17.6 19.8 5.38e-14 0 1 3.66e+03 World StepLimiter - 3731 3.83 18.6 19.8 5.37e-14 0 1 3.66e+03 World StepLimiter - 3732 4.04 19.6 19.8 5.36e-14 0 1 3.66e+03 World StepLimiter - 3733 4.24 20.6 19.8 5.35e-14 0 1 3.66e+03 World StepLimiter - 3734 4.45 21.5 19.8 5.34e-14 0 1 3.66e+03 World StepLimiter - 3735 4.66 22.5 19.8 5.33e-14 0 1 3.66e+03 World StepLimiter - 3736 4.86 23.5 19.8 5.32e-14 0 1 3.66e+03 World StepLimiter - 3737 5.07 24.5 19.8 5.31e-14 0 1 3.66e+03 World StepLimiter - 3738 5.28 25.5 19.8 5.3e-14 0 1 3.67e+03 World StepLimiter - 3739 5.49 26.4 19.8 5.29e-14 0 1 3.67e+03 World StepLimiter - 3740 5.69 27.4 19.8 5.28e-14 0 1 3.67e+03 World StepLimiter - 3741 5.9 28.4 19.8 5.27e-14 0 1 3.67e+03 World StepLimiter - 3742 6.11 29.4 19.8 5.26e-14 0 1 3.67e+03 World StepLimiter - 3743 6.32 30.3 19.8 5.25e-14 0 1 3.67e+03 World StepLimiter - 3744 6.53 31.3 19.9 5.24e-14 0 1 3.67e+03 World StepLimiter - 3745 6.73 32.3 19.9 5.23e-14 0 1 3.67e+03 World StepLimiter - 3746 6.94 33.3 19.9 5.22e-14 0 1 3.67e+03 World StepLimiter - 3747 7.15 34.3 19.9 5.21e-14 0 1 3.67e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.092129744321neV MomDir: (0.20923474642712,0.97784950855976,0.0055820692407473) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3748 7.15 34.3 19.9 5.21e-14 0 0.00141 3.67e+03 Guide Transportation *** StepTooSmall *** - 3749 7.15 34.3 19.9 5.21e-14 0 0 3.67e+03 World Transportation - 3750 6.95 33.3 19.9 5.22e-14 0 1 3.68e+03 World StepLimiter - 3751 6.75 32.3 19.9 5.23e-14 0 1 3.68e+03 World StepLimiter - 3752 6.56 31.3 19.9 5.24e-14 0 1 3.68e+03 World StepLimiter - 3753 6.36 30.3 19.9 5.25e-14 0 1 3.68e+03 World StepLimiter - 3754 6.16 29.4 19.9 5.26e-14 0 1 3.68e+03 World StepLimiter - 3755 5.96 28.4 19.9 5.27e-14 0 1 3.68e+03 World StepLimiter - 3756 5.76 27.4 19.9 5.28e-14 0 1 3.68e+03 World StepLimiter - 3757 5.56 26.4 19.9 5.29e-14 0 1 3.68e+03 World StepLimiter - 3758 5.37 25.4 19.9 5.3e-14 0 1 3.68e+03 World StepLimiter - 3759 5.17 24.5 19.9 5.31e-14 0 1 3.68e+03 World StepLimiter - 3760 4.97 23.5 19.9 5.32e-14 0 1 3.69e+03 World StepLimiter - 3761 4.77 22.5 19.9 5.33e-14 0 1 3.69e+03 World StepLimiter - 3762 4.58 21.5 19.9 5.34e-14 0 1 3.69e+03 World StepLimiter - 3763 4.38 20.5 19.9 5.35e-14 0 1 3.69e+03 World StepLimiter - 3764 4.18 19.6 20 5.36e-14 0 1 3.69e+03 World StepLimiter - 3765 3.99 18.6 20 5.37e-14 0 1 3.69e+03 World StepLimiter - 3766 3.79 17.6 20 5.38e-14 0 1 3.69e+03 World StepLimiter - 3767 3.59 16.6 20 5.39e-14 0 1 3.69e+03 World StepLimiter - 3768 3.4 15.6 20 5.4e-14 0 1 3.69e+03 World StepLimiter - 3769 3.2 14.7 20 5.41e-14 0 1 3.69e+03 World StepLimiter - 3770 3.01 13.7 20 5.42e-14 0 1 3.7e+03 World StepLimiter - 3771 2.81 12.7 20 5.43e-14 0 1 3.7e+03 World StepLimiter - 3772 2.61 11.7 20 5.44e-14 0 1 3.7e+03 World StepLimiter - 3773 2.42 10.7 20 5.45e-14 0 1 3.7e+03 World StepLimiter - 3774 2.22 9.75 20 5.46e-14 0 1 3.7e+03 World StepLimiter - 3775 2.03 8.77 20 5.47e-14 0 1 3.7e+03 World StepLimiter - 3776 1.84 7.79 20 5.48e-14 0 1 3.7e+03 World StepLimiter - 3777 1.64 6.81 20 5.49e-14 0 1 3.7e+03 World StepLimiter - 3778 1.45 5.83 20 5.5e-14 0 1 3.7e+03 World StepLimiter - 3779 1.25 4.85 20 5.51e-14 0 1 3.7e+03 World StepLimiter - 3780 1.06 3.87 20 5.52e-14 0 1 3.71e+03 World StepLimiter - 3781 0.865 2.89 20 5.53e-14 0 1 3.71e+03 World StepLimiter - 3782 0.671 1.9 20 5.54e-14 0 1 3.71e+03 World StepLimiter - 3783 0.478 0.924 20.1 5.55e-14 0 1 3.71e+03 World StepLimiter - 3784 0.285 -0.0576 20.1 5.56e-14 0 1 3.71e+03 World StepLimiter - 3785 0.0919 -1.04 20.1 5.57e-14 0 1 3.71e+03 World StepLimiter - 3786 -0.101 -2.02 20.1 5.58e-14 0 1 3.71e+03 World StepLimiter - 3787 -0.294 -3 20.1 5.59e-14 0 1 3.71e+03 World StepLimiter - 3788 -0.486 -3.98 20.1 5.6e-14 0 1 3.71e+03 World StepLimiter - 3789 -0.678 -4.96 20.1 5.61e-14 0 1 3.71e+03 World StepLimiter - 3790 -0.87 -5.95 20.1 5.62e-14 0 1 3.72e+03 World StepLimiter - 3791 -1.06 -6.93 20.1 5.63e-14 0 1 3.72e+03 World StepLimiter - 3792 -1.25 -7.91 20.1 5.64e-14 0 1 3.72e+03 World StepLimiter - 3793 -1.45 -8.89 20.1 5.65e-14 0 1 3.72e+03 World StepLimiter - 3794 -1.64 -9.87 20.1 5.66e-14 0 1 3.72e+03 World StepLimiter - 3795 -1.83 -10.9 20.1 5.67e-14 0 1 3.72e+03 World StepLimiter - 3796 -2.02 -11.8 20.1 5.68e-14 0 1 3.72e+03 World StepLimiter - 3797 -2.21 -12.8 20.1 5.69e-14 0 1 3.72e+03 World StepLimiter - 3798 -2.4 -13.8 20.1 5.7e-14 0 1 3.72e+03 World StepLimiter - 3799 -2.59 -14.8 20.1 5.71e-14 0 1 3.72e+03 World StepLimiter - 3800 -2.78 -15.8 20.1 5.72e-14 0 1 3.73e+03 World StepLimiter - 3801 -2.97 -16.7 20.2 5.73e-14 0 1 3.73e+03 World StepLimiter - 3802 -3.16 -17.7 20.2 5.74e-14 0 1 3.73e+03 World StepLimiter - 3803 -3.35 -18.7 20.2 5.75e-14 0 1 3.73e+03 World StepLimiter - 3804 -3.54 -19.7 20.2 5.76e-14 0 1 3.73e+03 World StepLimiter - 3805 -3.73 -20.7 20.2 5.77e-14 0 1 3.73e+03 World StepLimiter - 3806 -3.92 -21.7 20.2 5.78e-14 0 1 3.73e+03 World StepLimiter - 3807 -4.11 -22.6 20.2 5.79e-14 0 1 3.73e+03 World StepLimiter - 3808 -4.3 -23.6 20.2 5.8e-14 0 1 3.73e+03 World StepLimiter - 3809 -4.49 -24.6 20.2 5.81e-14 0 1 3.73e+03 World StepLimiter - 3810 -4.68 -25.6 20.2 5.82e-14 0 1 3.74e+03 World StepLimiter - 3811 -4.87 -26.6 20.2 5.83e-14 0 1 3.74e+03 World StepLimiter - 3812 -5.05 -27.5 20.2 5.84e-14 0 1 3.74e+03 World StepLimiter - 3813 -5.24 -28.5 20.2 5.85e-14 0 1 3.74e+03 World StepLimiter - 3814 -5.43 -29.5 20.2 5.86e-14 0 1 3.74e+03 World StepLimiter - 3815 -5.62 -30.5 20.2 5.87e-14 0 1 3.74e+03 World StepLimiter - 3816 -5.81 -31.5 20.2 5.88e-14 0 1 3.74e+03 World StepLimiter - 3817 -5.99 -32.5 20.2 5.89e-14 0 1 3.74e+03 World StepLimiter - 3818 -6.18 -33.4 20.2 5.9e-14 0 1 3.74e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.135268994874neV MomDir: (-0.18723193184025,-0.98230176390266,0.0052391156785588) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3819 -6.37 -34.4 20.2 5.91e-14 0 0.997 3.74e+03 Guide Transportation *** StepTooSmall *** - 3820 -6.37 -34.4 20.2 5.91e-14 0 0 3.74e+03 World Transportation - 3821 -6.19 -33.4 20.3 5.9e-14 0 1 3.75e+03 World StepLimiter - 3822 -6.01 -32.4 20.3 5.89e-14 0 1 3.75e+03 World StepLimiter - 3823 -5.84 -31.5 20.3 5.88e-14 0 1 3.75e+03 World StepLimiter - 3824 -5.66 -30.5 20.3 5.87e-14 0 1 3.75e+03 World StepLimiter - 3825 -5.48 -29.5 20.3 5.86e-14 0 1 3.75e+03 World StepLimiter - 3826 -5.31 -28.5 20.3 5.85e-14 0 1 3.75e+03 World StepLimiter - 3827 -5.13 -27.5 20.3 5.84e-14 0 1 3.75e+03 World StepLimiter - 3828 -4.95 -26.5 20.3 5.83e-14 0 1 3.75e+03 World StepLimiter - 3829 -4.77 -25.6 20.3 5.82e-14 0 1 3.75e+03 World StepLimiter - 3830 -4.59 -24.6 20.3 5.81e-14 0 1 3.75e+03 World StepLimiter - 3831 -4.42 -23.6 20.3 5.8e-14 0 1 3.76e+03 World StepLimiter - 3832 -4.24 -22.6 20.3 5.79e-14 0 1 3.76e+03 World StepLimiter - 3833 -4.06 -21.6 20.3 5.78e-14 0 1 3.76e+03 World StepLimiter - 3834 -3.88 -20.6 20.3 5.77e-14 0 1 3.76e+03 World StepLimiter - 3835 -3.7 -19.7 20.3 5.76e-14 0 1 3.76e+03 World StepLimiter - 3836 -3.52 -18.7 20.3 5.75e-14 0 1 3.76e+03 World StepLimiter - 3837 -3.34 -17.7 20.3 5.74e-14 0 1 3.76e+03 World StepLimiter - 3838 -3.16 -16.7 20.3 5.73e-14 0 1 3.76e+03 World StepLimiter - 3839 -2.98 -15.7 20.3 5.72e-14 0 1 3.76e+03 World StepLimiter - 3840 -2.8 -14.7 20.4 5.71e-14 0 1 3.76e+03 World StepLimiter - 3841 -2.62 -13.8 20.4 5.7e-14 0 1 3.77e+03 World StepLimiter - 3842 -2.44 -12.8 20.4 5.69e-14 0 1 3.77e+03 World StepLimiter - 3843 -2.26 -11.8 20.4 5.68e-14 0 1 3.77e+03 World StepLimiter - 3844 -2.08 -10.8 20.4 5.67e-14 0 1 3.77e+03 World StepLimiter - 3845 -1.9 -9.82 20.4 5.66e-14 0 1 3.77e+03 World StepLimiter - 3846 -1.72 -8.83 20.4 5.65e-14 0 1 3.77e+03 World StepLimiter - 3847 -1.54 -7.85 20.4 5.64e-14 0 1 3.77e+03 World StepLimiter - 3848 -1.36 -6.87 20.4 5.63e-14 0 1 3.77e+03 World StepLimiter - 3849 -1.18 -5.88 20.4 5.62e-14 0 1 3.77e+03 World StepLimiter - 3850 -0.999 -4.9 20.4 5.61e-14 0 1 3.77e+03 World StepLimiter - 3851 -0.817 -3.92 20.4 5.6e-14 0 1 3.78e+03 World StepLimiter - 3852 -0.636 -2.93 20.4 5.59e-14 0 1 3.78e+03 World StepLimiter - 3853 -0.454 -1.95 20.4 5.58e-14 0 1 3.78e+03 World StepLimiter - 3854 -0.272 -0.967 20.4 5.57e-14 0 1 3.78e+03 World StepLimiter - 3855 -0.09 0.016 20.4 5.56e-14 0 1 3.78e+03 World StepLimiter - 3856 0.0923 0.999 20.4 5.55e-14 0 1 3.78e+03 World StepLimiter - 3857 0.275 1.98 20.4 5.54e-14 0 1 3.78e+03 World StepLimiter - 3858 0.457 2.97 20.4 5.53e-14 0 1 3.78e+03 World StepLimiter - 3859 0.64 3.95 20.5 5.52e-14 0 1 3.78e+03 World StepLimiter - 3860 0.823 4.93 20.5 5.51e-14 0 1 3.78e+03 World StepLimiter - 3861 1.01 5.91 20.5 5.5e-14 0 1 3.79e+03 World StepLimiter - 3862 1.19 6.9 20.5 5.49e-14 0 1 3.79e+03 World StepLimiter - 3863 1.37 7.88 20.5 5.48e-14 0 1 3.79e+03 World StepLimiter - 3864 1.56 8.86 20.5 5.47e-14 0 1 3.79e+03 World StepLimiter - 3865 1.74 9.85 20.5 5.46e-14 0 1 3.79e+03 World StepLimiter - 3866 1.92 10.8 20.5 5.45e-14 0 1 3.79e+03 World StepLimiter - 3867 2.11 11.8 20.5 5.44e-14 0 1 3.79e+03 World StepLimiter - 3868 2.29 12.8 20.5 5.43e-14 0 1 3.79e+03 World StepLimiter - 3869 2.48 13.8 20.5 5.42e-14 0 1 3.79e+03 World StepLimiter - 3870 2.66 14.8 20.5 5.41e-14 0 1 3.79e+03 World StepLimiter - 3871 2.85 15.7 20.5 5.4e-14 0 1 3.8e+03 World StepLimiter - 3872 3.03 16.7 20.5 5.39e-14 0 1 3.8e+03 World StepLimiter - 3873 3.22 17.7 20.5 5.38e-14 0 1 3.8e+03 World StepLimiter - 3874 3.4 18.7 20.5 5.37e-14 0 1 3.8e+03 World StepLimiter - 3875 3.59 19.7 20.5 5.36e-14 0 1 3.8e+03 World StepLimiter - 3876 3.77 20.7 20.5 5.35e-14 0 1 3.8e+03 World StepLimiter - 3877 3.96 21.6 20.6 5.34e-14 0 1 3.8e+03 World StepLimiter - 3878 4.14 22.6 20.6 5.33e-14 0 1 3.8e+03 World StepLimiter - 3879 4.33 23.6 20.6 5.32e-14 0 1 3.8e+03 World StepLimiter - 3880 4.52 24.6 20.6 5.31e-14 0 1 3.8e+03 World StepLimiter - 3881 4.7 25.6 20.6 5.3e-14 0 1 3.81e+03 World StepLimiter - 3882 4.89 26.6 20.6 5.29e-14 0 1 3.81e+03 World StepLimiter - 3883 5.08 27.5 20.6 5.28e-14 0 1 3.81e+03 World StepLimiter - 3884 5.26 28.5 20.6 5.27e-14 0 1 3.81e+03 World StepLimiter - 3885 5.45 29.5 20.6 5.26e-14 0 1 3.81e+03 World StepLimiter - 3886 5.64 30.5 20.6 5.25e-14 0 1 3.81e+03 World StepLimiter - 3887 5.83 31.5 20.6 5.24e-14 0 1 3.81e+03 World StepLimiter - 3888 6.01 32.4 20.6 5.23e-14 0 1 3.81e+03 World StepLimiter - 3889 6.2 33.4 20.6 5.22e-14 0 1 3.81e+03 World StepLimiter - 3890 6.39 34.4 20.6 5.21e-14 0 1 3.81e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.076726229293neV MomDir: (0.1882549524636,0.98210432447852,0.0055828947259155) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3891 6.39 34.4 20.6 5.21e-14 0 0.00142 3.81e+03 Guide Transportation *** StepTooSmall *** - 3892 6.39 34.4 20.6 5.21e-14 0 0 3.81e+03 World Transportation - 3893 6.21 33.4 20.6 5.22e-14 0 1 3.82e+03 World StepLimiter - 3894 6.04 32.4 20.6 5.23e-14 0 1 3.82e+03 World StepLimiter - 3895 5.86 31.5 20.6 5.24e-14 0 1 3.82e+03 World StepLimiter - 3896 5.68 30.5 20.6 5.25e-14 0 1 3.82e+03 World StepLimiter - 3897 5.51 29.5 20.7 5.26e-14 0 1 3.82e+03 World StepLimiter - 3898 5.33 28.5 20.7 5.27e-14 0 1 3.82e+03 World StepLimiter - 3899 5.16 27.5 20.7 5.28e-14 0 1 3.82e+03 World StepLimiter - 3900 4.98 26.5 20.7 5.29e-14 0 1 3.82e+03 World StepLimiter - 3901 4.81 25.6 20.7 5.3e-14 0 1 3.82e+03 World StepLimiter - 3902 4.63 24.6 20.7 5.31e-14 0 1 3.82e+03 World StepLimiter - 3903 4.46 23.6 20.7 5.32e-14 0 1 3.83e+03 World StepLimiter - 3904 4.28 22.6 20.7 5.33e-14 0 1 3.83e+03 World StepLimiter - 3905 4.11 21.6 20.7 5.34e-14 0 1 3.83e+03 World StepLimiter - 3906 3.93 20.6 20.7 5.35e-14 0 1 3.83e+03 World StepLimiter - 3907 3.76 19.6 20.7 5.36e-14 0 1 3.83e+03 World StepLimiter - 3908 3.58 18.7 20.7 5.37e-14 0 1 3.83e+03 World StepLimiter - 3909 3.41 17.7 20.7 5.38e-14 0 1 3.83e+03 World StepLimiter - 3910 3.23 16.7 20.7 5.39e-14 0 1 3.83e+03 World StepLimiter - 3911 3.06 15.7 20.7 5.4e-14 0 1 3.83e+03 World StepLimiter - 3912 2.89 14.7 20.7 5.41e-14 0 1 3.83e+03 World StepLimiter - 3913 2.71 13.7 20.7 5.42e-14 0 1 3.84e+03 World StepLimiter - 3914 2.54 12.8 20.7 5.43e-14 0 1 3.84e+03 World StepLimiter - 3915 2.37 11.8 20.8 5.44e-14 0 1 3.84e+03 World StepLimiter - 3916 2.19 10.8 20.8 5.45e-14 0 1 3.84e+03 World StepLimiter - 3917 2.02 9.8 20.8 5.46e-14 0 1 3.84e+03 World StepLimiter - 3918 1.85 8.81 20.8 5.47e-14 0 1 3.84e+03 World StepLimiter - 3919 1.67 7.83 20.8 5.48e-14 0 1 3.84e+03 World StepLimiter - 3920 1.5 6.84 20.8 5.49e-14 0 1 3.84e+03 World StepLimiter - 3921 1.33 5.86 20.8 5.5e-14 0 1 3.84e+03 World StepLimiter - 3922 1.16 4.87 20.8 5.51e-14 0 1 3.84e+03 World StepLimiter - 3923 0.986 3.89 20.8 5.52e-14 0 1 3.85e+03 World StepLimiter - 3924 0.814 2.9 20.8 5.53e-14 0 1 3.85e+03 World StepLimiter - 3925 0.642 1.92 20.8 5.54e-14 0 1 3.85e+03 World StepLimiter - 3926 0.471 0.931 20.8 5.55e-14 0 1 3.85e+03 World StepLimiter - 3927 0.3 -0.0537 20.8 5.56e-14 0 1 3.85e+03 World StepLimiter - 3928 0.129 -1.04 20.8 5.57e-14 0 1 3.85e+03 World StepLimiter - 3929 -0.0425 -2.02 20.8 5.58e-14 0 1 3.85e+03 World StepLimiter - 3930 -0.213 -3.01 20.8 5.59e-14 0 1 3.85e+03 World StepLimiter - 3931 -0.384 -3.99 20.8 5.6e-14 0 1 3.85e+03 World StepLimiter - 3932 -0.555 -4.98 20.8 5.61e-14 0 1 3.85e+03 World StepLimiter - 3933 -0.725 -5.97 20.8 5.62e-14 0 1 3.86e+03 World StepLimiter - 3934 -0.895 -6.95 20.9 5.63e-14 0 1 3.86e+03 World StepLimiter - 3935 -1.07 -7.94 20.9 5.64e-14 0 1 3.86e+03 World StepLimiter - 3936 -1.24 -8.92 20.9 5.65e-14 0 1 3.86e+03 World StepLimiter - 3937 -1.4 -9.91 20.9 5.66e-14 0 1 3.86e+03 World StepLimiter - 3938 -1.57 -10.9 20.9 5.67e-14 0 1 3.86e+03 World StepLimiter - 3939 -1.74 -11.9 20.9 5.68e-14 0 1 3.86e+03 World StepLimiter - 3940 -1.91 -12.9 20.9 5.69e-14 0 1 3.86e+03 World StepLimiter - 3941 -2.08 -13.8 20.9 5.7e-14 0 1 3.86e+03 World StepLimiter - 3942 -2.25 -14.8 20.9 5.71e-14 0 1 3.86e+03 World StepLimiter - 3943 -2.42 -15.8 20.9 5.72e-14 0 1 3.87e+03 World StepLimiter - 3944 -2.59 -16.8 20.9 5.73e-14 0 1 3.87e+03 World StepLimiter - 3945 -2.76 -17.8 20.9 5.74e-14 0 1 3.87e+03 World StepLimiter - 3946 -2.93 -18.8 20.9 5.75e-14 0 1 3.87e+03 World StepLimiter - 3947 -3.09 -19.8 20.9 5.76e-14 0 1 3.87e+03 World StepLimiter - 3948 -3.26 -20.7 20.9 5.77e-14 0 1 3.87e+03 World StepLimiter - 3949 -3.43 -21.7 20.9 5.78e-14 0 1 3.87e+03 World StepLimiter - 3950 -3.6 -22.7 20.9 5.79e-14 0 1 3.87e+03 World StepLimiter - 3951 -3.77 -23.7 20.9 5.8e-14 0 1 3.87e+03 World StepLimiter - 3952 -3.93 -24.7 21 5.81e-14 0 1 3.87e+03 World StepLimiter - 3953 -4.1 -25.7 21 5.82e-14 0 1 3.88e+03 World StepLimiter - 3954 -4.27 -26.7 21 5.83e-14 0 1 3.88e+03 World StepLimiter - 3955 -4.44 -27.7 21 5.84e-14 0 1 3.88e+03 World StepLimiter - 3956 -4.6 -28.6 21 5.85e-14 0 1 3.88e+03 World StepLimiter - 3957 -4.77 -29.6 21 5.86e-14 0 1 3.88e+03 World StepLimiter - 3958 -4.94 -30.6 21 5.87e-14 0 1 3.88e+03 World StepLimiter - 3959 -5.1 -31.6 21 5.88e-14 0 1 3.88e+03 World StepLimiter - 3960 -5.27 -32.6 21 5.89e-14 0 1 3.88e+03 World StepLimiter - 3961 -5.44 -33.6 21 5.9e-14 0 1 3.88e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.148933266102neV MomDir: (-0.16603527512207,-0.98610589969993,0.0052385104873182) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 3962 -5.6 -34.5 21 5.91e-14 0 0.997 3.88e+03 Guide Transportation *** StepTooSmall *** - 3963 -5.6 -34.5 21 5.91e-14 0 0 3.88e+03 World Transportation - 3964 -5.45 -33.6 21 5.9e-14 0 1 3.89e+03 World StepLimiter - 3965 -5.29 -32.6 21 5.89e-14 0 1 3.89e+03 World StepLimiter - 3966 -5.14 -31.6 21 5.88e-14 0 1 3.89e+03 World StepLimiter - 3967 -4.98 -30.6 21 5.87e-14 0 1 3.89e+03 World StepLimiter - 3968 -4.83 -29.6 21 5.86e-14 0 1 3.89e+03 World StepLimiter - 3969 -4.67 -28.6 21 5.85e-14 0 1 3.89e+03 World StepLimiter - 3970 -4.52 -27.6 21 5.84e-14 0 1 3.89e+03 World StepLimiter - 3971 -4.36 -26.6 21 5.83e-14 0 1 3.89e+03 World StepLimiter - 3972 -4.21 -25.7 21.1 5.82e-14 0 1 3.89e+03 World StepLimiter - 3973 -4.05 -24.7 21.1 5.81e-14 0 1 3.89e+03 World StepLimiter - 3974 -3.9 -23.7 21.1 5.8e-14 0 1 3.9e+03 World StepLimiter - 3975 -3.74 -22.7 21.1 5.79e-14 0 1 3.9e+03 World StepLimiter - 3976 -3.59 -21.7 21.1 5.78e-14 0 1 3.9e+03 World StepLimiter - 3977 -3.43 -20.7 21.1 5.77e-14 0 1 3.9e+03 World StepLimiter - 3978 -3.28 -19.7 21.1 5.76e-14 0 1 3.9e+03 World StepLimiter - 3979 -3.12 -18.7 21.1 5.75e-14 0 1 3.9e+03 World StepLimiter - 3980 -2.96 -17.8 21.1 5.74e-14 0 1 3.9e+03 World StepLimiter - 3981 -2.81 -16.8 21.1 5.73e-14 0 1 3.9e+03 World StepLimiter - 3982 -2.65 -15.8 21.1 5.72e-14 0 1 3.9e+03 World StepLimiter - 3983 -2.49 -14.8 21.1 5.71e-14 0 1 3.9e+03 World StepLimiter - 3984 -2.34 -13.8 21.1 5.7e-14 0 1 3.91e+03 World StepLimiter - 3985 -2.18 -12.8 21.1 5.69e-14 0 1 3.91e+03 World StepLimiter - 3986 -2.02 -11.8 21.1 5.68e-14 0 1 3.91e+03 World StepLimiter - 3987 -1.87 -10.8 21.1 5.67e-14 0 1 3.91e+03 World StepLimiter - 3988 -1.71 -9.85 21.1 5.66e-14 0 1 3.91e+03 World StepLimiter - 3989 -1.55 -8.87 21.1 5.65e-14 0 1 3.91e+03 World StepLimiter - 3990 -1.39 -7.88 21.1 5.64e-14 0 1 3.91e+03 World StepLimiter - 3991 -1.24 -6.89 21.2 5.63e-14 0 1 3.91e+03 World StepLimiter - 3992 -1.08 -5.9 21.2 5.62e-14 0 1 3.91e+03 World StepLimiter - 3993 -0.92 -4.92 21.2 5.61e-14 0 1 3.91e+03 World StepLimiter - 3994 -0.762 -3.93 21.2 5.6e-14 0 1 3.92e+03 World StepLimiter - 3995 -0.604 -2.94 21.2 5.59e-14 0 1 3.92e+03 World StepLimiter - 3996 -0.445 -1.95 21.2 5.58e-14 0 1 3.92e+03 World StepLimiter - 3997 -0.286 -0.967 21.2 5.57e-14 0 1 3.92e+03 World StepLimiter - 3998 -0.128 0.0199 21.2 5.56e-14 0 1 3.92e+03 World StepLimiter - 3999 0.0312 1.01 21.2 5.55e-14 0 1 3.92e+03 World StepLimiter - 4000 0.19 1.99 21.2 5.54e-14 0 1 3.92e+03 World StepLimiter - 4001 0.349 2.98 21.2 5.53e-14 0 1 3.92e+03 World StepLimiter - 4002 0.509 3.97 21.2 5.52e-14 0 1 3.92e+03 World StepLimiter - 4003 0.668 4.96 21.2 5.51e-14 0 1 3.92e+03 World StepLimiter - 4004 0.828 5.94 21.2 5.5e-14 0 1 3.93e+03 World StepLimiter - 4005 0.988 6.93 21.2 5.49e-14 0 1 3.93e+03 World StepLimiter - 4006 1.15 7.92 21.2 5.48e-14 0 1 3.93e+03 World StepLimiter - 4007 1.31 8.9 21.2 5.47e-14 0 1 3.93e+03 World StepLimiter - 4008 1.47 9.89 21.2 5.46e-14 0 1 3.93e+03 World StepLimiter - 4009 1.63 10.9 21.2 5.45e-14 0 1 3.93e+03 World StepLimiter - 4010 1.79 11.9 21.3 5.44e-14 0 1 3.93e+03 World StepLimiter - 4011 1.95 12.9 21.3 5.43e-14 0 1 3.93e+03 World StepLimiter - 4012 2.11 13.8 21.3 5.42e-14 0 1 3.93e+03 World StepLimiter - 4013 2.27 14.8 21.3 5.41e-14 0 1 3.93e+03 World StepLimiter - 4014 2.43 15.8 21.3 5.4e-14 0 1 3.94e+03 World StepLimiter - 4015 2.59 16.8 21.3 5.39e-14 0 1 3.94e+03 World StepLimiter - 4016 2.75 17.8 21.3 5.38e-14 0 1 3.94e+03 World StepLimiter - 4017 2.92 18.8 21.3 5.37e-14 0 1 3.94e+03 World StepLimiter - 4018 3.08 19.8 21.3 5.36e-14 0 1 3.94e+03 World StepLimiter - 4019 3.24 20.7 21.3 5.35e-14 0 1 3.94e+03 World StepLimiter - 4020 3.4 21.7 21.3 5.34e-14 0 1 3.94e+03 World StepLimiter - 4021 3.56 22.7 21.3 5.33e-14 0 1 3.94e+03 World StepLimiter - 4022 3.73 23.7 21.3 5.32e-14 0 1 3.94e+03 World StepLimiter - 4023 3.89 24.7 21.3 5.31e-14 0 1 3.94e+03 World StepLimiter - 4024 4.05 25.7 21.3 5.3e-14 0 1 3.95e+03 World StepLimiter - 4025 4.21 26.7 21.3 5.29e-14 0 1 3.95e+03 World StepLimiter - 4026 4.38 27.7 21.3 5.28e-14 0 1 3.95e+03 World StepLimiter - 4027 4.54 28.6 21.3 5.27e-14 0 1 3.95e+03 World StepLimiter - 4028 4.7 29.6 21.4 5.26e-14 0 1 3.95e+03 World StepLimiter - 4029 4.87 30.6 21.4 5.25e-14 0 1 3.95e+03 World StepLimiter - 4030 5.03 31.6 21.4 5.24e-14 0 1 3.95e+03 World StepLimiter - 4031 5.19 32.6 21.4 5.23e-14 0 1 3.95e+03 World StepLimiter - 4032 5.36 33.6 21.4 5.22e-14 0 1 3.95e+03 World StepLimiter - 4033 5.52 34.6 21.4 5.21e-14 0 1 3.95e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.061340776397neV MomDir: (0.16413720818288,0.98642171456495,0.0055837196088077) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4034 5.52 34.6 21.4 5.21e-14 0 0.00129 3.95e+03 Guide Transportation *** StepTooSmall *** - 4035 5.52 34.6 21.4 5.21e-14 0 0 3.95e+03 World Transportation - 4036 5.37 33.6 21.4 5.22e-14 0 1 3.96e+03 World StepLimiter - 4037 5.22 32.6 21.4 5.23e-14 0 1 3.96e+03 World StepLimiter - 4038 5.07 31.6 21.4 5.24e-14 0 1 3.96e+03 World StepLimiter - 4039 4.92 30.6 21.4 5.25e-14 0 1 3.96e+03 World StepLimiter - 4040 4.77 29.6 21.4 5.26e-14 0 1 3.96e+03 World StepLimiter - 4041 4.62 28.6 21.4 5.27e-14 0 1 3.96e+03 World StepLimiter - 4042 4.47 27.6 21.4 5.28e-14 0 1 3.96e+03 World StepLimiter - 4043 4.32 26.7 21.4 5.29e-14 0 1 3.96e+03 World StepLimiter - 4044 4.17 25.7 21.4 5.3e-14 0 1 3.96e+03 World StepLimiter - 4045 4.02 24.7 21.4 5.31e-14 0 1 3.96e+03 World StepLimiter - 4046 3.87 23.7 21.4 5.32e-14 0 1 3.97e+03 World StepLimiter - 4047 3.72 22.7 21.4 5.33e-14 0 1 3.97e+03 World StepLimiter - 4048 3.57 21.7 21.5 5.34e-14 0 1 3.97e+03 World StepLimiter - 4049 3.42 20.7 21.5 5.35e-14 0 1 3.97e+03 World StepLimiter - 4050 3.27 19.7 21.5 5.36e-14 0 1 3.97e+03 World StepLimiter - 4051 3.12 18.7 21.5 5.37e-14 0 1 3.97e+03 World StepLimiter - 4052 2.97 17.8 21.5 5.38e-14 0 1 3.97e+03 World StepLimiter - 4053 2.82 16.8 21.5 5.39e-14 0 1 3.97e+03 World StepLimiter - 4054 2.67 15.8 21.5 5.4e-14 0 1 3.97e+03 World StepLimiter - 4055 2.52 14.8 21.5 5.41e-14 0 1 3.97e+03 World StepLimiter - 4056 2.37 13.8 21.5 5.42e-14 0 1 3.98e+03 World StepLimiter - 4057 2.23 12.8 21.5 5.43e-14 0 1 3.98e+03 World StepLimiter - 4058 2.08 11.8 21.5 5.44e-14 0 1 3.98e+03 World StepLimiter - 4059 1.93 10.8 21.5 5.45e-14 0 1 3.98e+03 World StepLimiter - 4060 1.78 9.84 21.5 5.46e-14 0 1 3.98e+03 World StepLimiter - 4061 1.63 8.85 21.5 5.47e-14 0 1 3.98e+03 World StepLimiter - 4062 1.49 7.87 21.5 5.48e-14 0 1 3.98e+03 World StepLimiter - 4063 1.34 6.88 21.5 5.49e-14 0 1 3.98e+03 World StepLimiter - 4064 1.19 5.89 21.5 5.5e-14 0 1 3.98e+03 World StepLimiter - 4065 1.04 4.9 21.5 5.51e-14 0 1 3.98e+03 World StepLimiter - 4066 0.897 3.91 21.6 5.52e-14 0 1 3.99e+03 World StepLimiter - 4067 0.75 2.92 21.6 5.53e-14 0 1 3.99e+03 World StepLimiter - 4068 0.603 1.93 21.6 5.54e-14 0 1 3.99e+03 World StepLimiter - 4069 0.456 0.942 21.6 5.55e-14 0 1 3.99e+03 World StepLimiter - 4070 0.31 -0.0475 21.6 5.56e-14 0 1 3.99e+03 World StepLimiter - 4071 0.163 -1.04 21.6 5.57e-14 0 1 3.99e+03 World StepLimiter - 4072 0.017 -2.03 21.6 5.58e-14 0 1 3.99e+03 World StepLimiter - 4073 -0.129 -3.02 21.6 5.59e-14 0 1 3.99e+03 World StepLimiter - 4074 -0.275 -4 21.6 5.6e-14 0 1 3.99e+03 World StepLimiter - 4075 -0.421 -4.99 21.6 5.61e-14 0 1 3.99e+03 World StepLimiter - 4076 -0.567 -5.98 21.6 5.62e-14 0 1 4e+03 World StepLimiter - 4077 -0.713 -6.97 21.6 5.63e-14 0 1 4e+03 World StepLimiter - 4078 -0.858 -7.96 21.6 5.64e-14 0 1 4e+03 World StepLimiter - 4079 -1 -8.95 21.6 5.65e-14 0 1 4e+03 World StepLimiter - 4080 -1.15 -9.94 21.6 5.66e-14 0 1 4e+03 World StepLimiter - 4081 -1.29 -10.9 21.6 5.67e-14 0 1 4e+03 World StepLimiter - 4082 -1.44 -11.9 21.6 5.68e-14 0 1 4e+03 World StepLimiter - 4083 -1.58 -12.9 21.6 5.69e-14 0 1 4e+03 World StepLimiter - 4084 -1.73 -13.9 21.6 5.7e-14 0 1 4e+03 World StepLimiter - 4085 -1.87 -14.9 21.7 5.71e-14 0 1 4e+03 World StepLimiter - 4086 -2.02 -15.9 21.7 5.72e-14 0 1 4.01e+03 World StepLimiter - 4087 -2.16 -16.9 21.7 5.73e-14 0 1 4.01e+03 World StepLimiter - 4088 -2.31 -17.9 21.7 5.74e-14 0 1 4.01e+03 World StepLimiter - 4089 -2.45 -18.8 21.7 5.75e-14 0 1 4.01e+03 World StepLimiter - 4090 -2.59 -19.8 21.7 5.76e-14 0 1 4.01e+03 World StepLimiter - 4091 -2.74 -20.8 21.7 5.77e-14 0 1 4.01e+03 World StepLimiter - 4092 -2.88 -21.8 21.7 5.78e-14 0 1 4.01e+03 World StepLimiter - 4093 -3.03 -22.8 21.7 5.79e-14 0 1 4.01e+03 World StepLimiter - 4094 -3.17 -23.8 21.7 5.8e-14 0 1 4.01e+03 World StepLimiter - 4095 -3.31 -24.8 21.7 5.81e-14 0 1 4.01e+03 World StepLimiter - 4096 -3.46 -25.8 21.7 5.82e-14 0 1 4.02e+03 World StepLimiter - 4097 -3.6 -26.8 21.7 5.84e-14 0 1 4.02e+03 World StepLimiter - 4098 -3.74 -27.8 21.7 5.85e-14 0 1 4.02e+03 World StepLimiter - 4099 -3.88 -28.7 21.7 5.86e-14 0 1 4.02e+03 World StepLimiter - 4100 -4.03 -29.7 21.7 5.87e-14 0 1 4.02e+03 World StepLimiter - 4101 -4.17 -30.7 21.7 5.88e-14 0 1 4.02e+03 World StepLimiter - 4102 -4.31 -31.7 21.7 5.89e-14 0 1 4.02e+03 World StepLimiter - 4103 -4.45 -32.7 21.7 5.9e-14 0 1 4.02e+03 World StepLimiter - 4104 -4.6 -33.7 21.8 5.91e-14 0 1 4.02e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.162133100319neV MomDir: (-0.14206111153877,-0.98984403050122,0.0052379260651236) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4105 -4.74 -34.7 21.8 5.92e-14 0 0.997 4.02e+03 Guide Transportation *** StepTooSmall *** - 4106 -4.74 -34.7 21.8 5.92e-14 0 0 4.02e+03 World Transportation - 4107 -4.61 -33.7 21.8 5.91e-14 0 1 4.03e+03 World StepLimiter - 4108 -4.48 -32.7 21.8 5.9e-14 0 1 4.03e+03 World StepLimiter - 4109 -4.35 -31.7 21.8 5.89e-14 0 1 4.03e+03 World StepLimiter - 4110 -4.22 -30.7 21.8 5.88e-14 0 1 4.03e+03 World StepLimiter - 4111 -4.09 -29.7 21.8 5.87e-14 0 1 4.03e+03 World StepLimiter - 4112 -3.96 -28.7 21.8 5.86e-14 0 1 4.03e+03 World StepLimiter - 4113 -3.84 -27.7 21.8 5.85e-14 0 1 4.03e+03 World StepLimiter - 4114 -3.71 -26.7 21.8 5.83e-14 0 1 4.03e+03 World StepLimiter - 4115 -3.58 -25.8 21.8 5.82e-14 0 1 4.03e+03 World StepLimiter - 4116 -3.45 -24.8 21.8 5.81e-14 0 1 4.03e+03 World StepLimiter - 4117 -3.32 -23.8 21.8 5.8e-14 0 1 4.04e+03 World StepLimiter - 4118 -3.19 -22.8 21.8 5.79e-14 0 1 4.04e+03 World StepLimiter - 4119 -3.06 -21.8 21.8 5.78e-14 0 1 4.04e+03 World StepLimiter - 4120 -2.93 -20.8 21.8 5.77e-14 0 1 4.04e+03 World StepLimiter - 4121 -2.8 -19.8 21.8 5.76e-14 0 1 4.04e+03 World StepLimiter - 4122 -2.66 -18.8 21.8 5.75e-14 0 1 4.04e+03 World StepLimiter - 4123 -2.53 -17.8 21.8 5.74e-14 0 1 4.04e+03 World StepLimiter - 4124 -2.4 -16.8 21.9 5.73e-14 0 1 4.04e+03 World StepLimiter - 4125 -2.27 -15.8 21.9 5.72e-14 0 1 4.04e+03 World StepLimiter - 4126 -2.14 -14.8 21.9 5.71e-14 0 1 4.04e+03 World StepLimiter - 4127 -2.01 -13.9 21.9 5.7e-14 0 1 4.05e+03 World StepLimiter - 4128 -1.88 -12.9 21.9 5.69e-14 0 1 4.05e+03 World StepLimiter - 4129 -1.75 -11.9 21.9 5.68e-14 0 1 4.05e+03 World StepLimiter - 4130 -1.62 -10.9 21.9 5.67e-14 0 1 4.05e+03 World StepLimiter - 4131 -1.49 -9.89 21.9 5.66e-14 0 1 4.05e+03 World StepLimiter - 4132 -1.35 -8.9 21.9 5.65e-14 0 1 4.05e+03 World StepLimiter - 4133 -1.22 -7.91 21.9 5.64e-14 0 1 4.05e+03 World StepLimiter - 4134 -1.09 -6.92 21.9 5.63e-14 0 1 4.05e+03 World StepLimiter - 4135 -0.958 -5.93 21.9 5.62e-14 0 1 4.05e+03 World StepLimiter - 4136 -0.826 -4.93 21.9 5.61e-14 0 1 4.05e+03 World StepLimiter - 4137 -0.694 -3.94 21.9 5.6e-14 0 1 4.06e+03 World StepLimiter - 4138 -0.562 -2.95 21.9 5.59e-14 0 1 4.06e+03 World StepLimiter - 4139 -0.429 -1.96 21.9 5.58e-14 0 1 4.06e+03 World StepLimiter - 4140 -0.296 -0.97 21.9 5.57e-14 0 1 4.06e+03 World StepLimiter - 4141 -0.164 0.0215 21.9 5.56e-14 0 1 4.06e+03 World StepLimiter - 4142 -0.0309 1.01 22 5.55e-14 0 1 4.06e+03 World StepLimiter - 4143 0.102 2 22 5.54e-14 0 1 4.06e+03 World StepLimiter - 4144 0.235 2.99 22 5.53e-14 0 1 4.06e+03 World StepLimiter - 4145 0.368 3.99 22 5.52e-14 0 1 4.06e+03 World StepLimiter - 4146 0.502 4.98 22 5.51e-14 0 1 4.06e+03 World StepLimiter - 4147 0.635 5.97 22 5.5e-14 0 1 4.07e+03 World StepLimiter - 4148 0.769 6.96 22 5.49e-14 0 1 4.07e+03 World StepLimiter - 4149 0.902 7.95 22 5.48e-14 0 1 4.07e+03 World StepLimiter - 4150 1.04 8.94 22 5.47e-14 0 1 4.07e+03 World StepLimiter - 4151 1.17 9.93 22 5.46e-14 0 1 4.07e+03 World StepLimiter - 4152 1.3 10.9 22 5.45e-14 0 1 4.07e+03 World StepLimiter - 4153 1.44 11.9 22 5.44e-14 0 1 4.07e+03 World StepLimiter - 4154 1.57 12.9 22 5.43e-14 0 1 4.07e+03 World StepLimiter - 4155 1.71 13.9 22 5.42e-14 0 1 4.07e+03 World StepLimiter - 4156 1.84 14.9 22 5.41e-14 0 1 4.07e+03 World StepLimiter - 4157 1.98 15.9 22 5.4e-14 0 1 4.08e+03 World StepLimiter - 4158 2.11 16.9 22 5.39e-14 0 1 4.08e+03 World StepLimiter - 4159 2.25 17.9 22 5.38e-14 0 1 4.08e+03 World StepLimiter - 4160 2.38 18.8 22 5.37e-14 0 1 4.08e+03 World StepLimiter - 4161 2.52 19.8 22.1 5.36e-14 0 1 4.08e+03 World StepLimiter - 4162 2.65 20.8 22.1 5.35e-14 0 1 4.08e+03 World StepLimiter - 4163 2.79 21.8 22.1 5.34e-14 0 1 4.08e+03 World StepLimiter - 4164 2.92 22.8 22.1 5.33e-14 0 1 4.08e+03 World StepLimiter - 4165 3.06 23.8 22.1 5.32e-14 0 1 4.08e+03 World StepLimiter - 4166 3.19 24.8 22.1 5.31e-14 0 1 4.08e+03 World StepLimiter - 4167 3.33 25.8 22.1 5.3e-14 0 1 4.09e+03 World StepLimiter - 4168 3.47 26.8 22.1 5.29e-14 0 1 4.09e+03 World StepLimiter - 4169 3.6 27.8 22.1 5.28e-14 0 1 4.09e+03 World StepLimiter - 4170 3.74 28.8 22.1 5.27e-14 0 1 4.09e+03 World StepLimiter - 4171 3.88 29.7 22.1 5.26e-14 0 1 4.09e+03 World StepLimiter - 4172 4.01 30.7 22.1 5.25e-14 0 1 4.09e+03 World StepLimiter - 4173 4.15 31.7 22.1 5.24e-14 0 1 4.09e+03 World StepLimiter - 4174 4.29 32.7 22.1 5.23e-14 0 1 4.09e+03 World StepLimiter - 4175 4.42 33.7 22.1 5.21e-14 0 1 4.09e+03 World StepLimiter - 4176 4.56 34.7 22.1 5.2e-14 0 1 4.09e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.046971321267neV MomDir: (0.137237122178,0.99052248120062,0.0055844903498245) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4177 4.56 34.7 22.1 5.2e-14 0 0.00101 4.09e+03 Guide Transportation *** StepTooSmall *** - 4178 4.56 34.7 22.1 5.2e-14 0 0 4.09e+03 World Transportation - 4179 4.44 33.7 22.1 5.21e-14 0 1 4.1e+03 World StepLimiter - 4180 4.31 32.7 22.1 5.23e-14 0 1 4.1e+03 World StepLimiter - 4181 4.19 31.7 22.2 5.24e-14 0 1 4.1e+03 World StepLimiter - 4182 4.07 30.7 22.2 5.25e-14 0 1 4.1e+03 World StepLimiter - 4183 3.95 29.7 22.2 5.26e-14 0 1 4.1e+03 World StepLimiter - 4184 3.82 28.7 22.2 5.27e-14 0 1 4.1e+03 World StepLimiter - 4185 3.7 27.8 22.2 5.28e-14 0 1 4.1e+03 World StepLimiter - 4186 3.58 26.8 22.2 5.29e-14 0 1 4.1e+03 World StepLimiter - 4187 3.46 25.8 22.2 5.3e-14 0 1 4.1e+03 World StepLimiter - 4188 3.33 24.8 22.2 5.31e-14 0 1 4.1e+03 World StepLimiter - 4189 3.21 23.8 22.2 5.32e-14 0 1 4.11e+03 World StepLimiter - 4190 3.09 22.8 22.2 5.33e-14 0 1 4.11e+03 World StepLimiter - 4191 2.97 21.8 22.2 5.34e-14 0 1 4.11e+03 World StepLimiter - 4192 2.85 20.8 22.2 5.35e-14 0 1 4.11e+03 World StepLimiter - 4193 2.72 19.8 22.2 5.36e-14 0 1 4.11e+03 World StepLimiter - 4194 2.6 18.8 22.2 5.37e-14 0 1 4.11e+03 World StepLimiter - 4195 2.48 17.8 22.2 5.38e-14 0 1 4.11e+03 World StepLimiter - 4196 2.36 16.8 22.2 5.39e-14 0 1 4.11e+03 World StepLimiter - 4197 2.24 15.8 22.2 5.4e-14 0 1 4.11e+03 World StepLimiter - 4198 2.12 14.9 22.2 5.41e-14 0 1 4.11e+03 World StepLimiter - 4199 2 13.9 22.3 5.42e-14 0 1 4.12e+03 World StepLimiter - 4200 1.88 12.9 22.3 5.43e-14 0 1 4.12e+03 World StepLimiter - 4201 1.75 11.9 22.3 5.44e-14 0 1 4.12e+03 World StepLimiter - 4202 1.63 10.9 22.3 5.45e-14 0 1 4.12e+03 World StepLimiter - 4203 1.51 9.89 22.3 5.46e-14 0 1 4.12e+03 World StepLimiter - 4204 1.39 8.9 22.3 5.47e-14 0 1 4.12e+03 World StepLimiter - 4205 1.27 7.9 22.3 5.48e-14 0 1 4.12e+03 World StepLimiter - 4206 1.15 6.91 22.3 5.49e-14 0 1 4.12e+03 World StepLimiter - 4207 1.03 5.92 22.3 5.5e-14 0 1 4.12e+03 World StepLimiter - 4208 0.913 4.92 22.3 5.51e-14 0 1 4.12e+03 World StepLimiter - 4209 0.793 3.93 22.3 5.52e-14 0 1 4.13e+03 World StepLimiter - 4210 0.673 2.94 22.3 5.53e-14 0 1 4.13e+03 World StepLimiter - 4211 0.554 1.95 22.3 5.54e-14 0 1 4.13e+03 World StepLimiter - 4212 0.434 0.953 22.3 5.55e-14 0 1 4.13e+03 World StepLimiter - 4213 0.315 -0.0394 22.3 5.56e-14 0 1 4.13e+03 World StepLimiter - 4214 0.196 -1.03 22.3 5.57e-14 0 1 4.13e+03 World StepLimiter - 4215 0.0764 -2.03 22.3 5.58e-14 0 1 4.13e+03 World StepLimiter - 4216 -0.0427 -3.02 22.3 5.59e-14 0 1 4.13e+03 World StepLimiter - 4217 -0.162 -4.01 22.4 5.6e-14 0 1 4.13e+03 World StepLimiter - 4218 -0.28 -5 22.4 5.61e-14 0 1 4.13e+03 World StepLimiter - 4219 -0.399 -6 22.4 5.62e-14 0 1 4.14e+03 World StepLimiter - 4220 -0.518 -6.99 22.4 5.63e-14 0 1 4.14e+03 World StepLimiter - 4221 -0.636 -7.98 22.4 5.64e-14 0 1 4.14e+03 World StepLimiter - 4222 -0.755 -8.98 22.4 5.65e-14 0 1 4.14e+03 World StepLimiter - 4223 -0.873 -9.97 22.4 5.66e-14 0 1 4.14e+03 World StepLimiter - 4224 -0.991 -11 22.4 5.67e-14 0 1 4.14e+03 World StepLimiter - 4225 -1.11 -12 22.4 5.68e-14 0 1 4.14e+03 World StepLimiter - 4226 -1.23 -12.9 22.4 5.69e-14 0 1 4.14e+03 World StepLimiter - 4227 -1.35 -13.9 22.4 5.7e-14 0 1 4.14e+03 World StepLimiter - 4228 -1.46 -14.9 22.4 5.71e-14 0 1 4.14e+03 World StepLimiter - 4229 -1.58 -15.9 22.4 5.72e-14 0 1 4.15e+03 World StepLimiter - 4230 -1.7 -16.9 22.4 5.73e-14 0 1 4.15e+03 World StepLimiter - 4231 -1.82 -17.9 22.4 5.74e-14 0 1 4.15e+03 World StepLimiter - 4232 -1.93 -18.9 22.4 5.75e-14 0 1 4.15e+03 World StepLimiter - 4233 -2.05 -19.9 22.4 5.76e-14 0 1 4.15e+03 World StepLimiter - 4234 -2.17 -20.9 22.4 5.77e-14 0 1 4.15e+03 World StepLimiter - 4235 -2.28 -21.9 22.4 5.79e-14 0 1 4.15e+03 World StepLimiter - 4236 -2.4 -22.9 22.5 5.8e-14 0 1 4.15e+03 World StepLimiter - 4237 -2.52 -23.9 22.5 5.81e-14 0 1 4.15e+03 World StepLimiter - 4238 -2.63 -24.9 22.5 5.82e-14 0 1 4.15e+03 World StepLimiter - 4239 -2.75 -25.9 22.5 5.83e-14 0 1 4.16e+03 World StepLimiter - 4240 -2.87 -26.9 22.5 5.84e-14 0 1 4.16e+03 World StepLimiter - 4241 -2.98 -27.8 22.5 5.85e-14 0 1 4.16e+03 World StepLimiter - 4242 -3.1 -28.8 22.5 5.86e-14 0 1 4.16e+03 World StepLimiter - 4243 -3.22 -29.8 22.5 5.87e-14 0 1 4.16e+03 World StepLimiter - 4244 -3.33 -30.8 22.5 5.88e-14 0 1 4.16e+03 World StepLimiter - 4245 -3.45 -31.8 22.5 5.89e-14 0 1 4.16e+03 World StepLimiter - 4246 -3.57 -32.8 22.5 5.9e-14 0 1 4.16e+03 World StepLimiter - 4247 -3.68 -33.8 22.5 5.91e-14 0 1 4.16e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.174008233225neV MomDir: (-0.11567558395741,-0.9932732398049,0.005237400461138) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4248 -3.8 -34.8 22.5 5.92e-14 0 0.997 4.16e+03 Guide Transportation *** StepTooSmall *** - 4249 -3.8 -34.8 22.5 5.92e-14 0 0 4.16e+03 World Transportation - 4250 -3.7 -33.8 22.5 5.91e-14 0 1 4.17e+03 World StepLimiter - 4251 -3.59 -32.8 22.5 5.9e-14 0 1 4.17e+03 World StepLimiter - 4252 -3.49 -31.8 22.5 5.89e-14 0 1 4.17e+03 World StepLimiter - 4253 -3.39 -30.8 22.5 5.88e-14 0 1 4.17e+03 World StepLimiter - 4254 -3.29 -29.8 22.5 5.87e-14 0 1 4.17e+03 World StepLimiter - 4255 -3.19 -28.8 22.5 5.86e-14 0 1 4.17e+03 World StepLimiter - 4256 -3.09 -27.8 22.6 5.85e-14 0 1 4.17e+03 World StepLimiter - 4257 -2.98 -26.8 22.6 5.84e-14 0 1 4.17e+03 World StepLimiter - 4258 -2.88 -25.8 22.6 5.83e-14 0 1 4.17e+03 World StepLimiter - 4259 -2.78 -24.8 22.6 5.82e-14 0 1 4.17e+03 World StepLimiter - 4260 -2.68 -23.9 22.6 5.81e-14 0 1 4.18e+03 World StepLimiter - 4261 -2.58 -22.9 22.6 5.79e-14 0 1 4.18e+03 World StepLimiter - 4262 -2.47 -21.9 22.6 5.78e-14 0 1 4.18e+03 World StepLimiter - 4263 -2.37 -20.9 22.6 5.77e-14 0 1 4.18e+03 World StepLimiter - 4264 -2.27 -19.9 22.6 5.76e-14 0 1 4.18e+03 World StepLimiter - 4265 -2.17 -18.9 22.6 5.75e-14 0 1 4.18e+03 World StepLimiter - 4266 -2.06 -17.9 22.6 5.74e-14 0 1 4.18e+03 World StepLimiter - 4267 -1.96 -16.9 22.6 5.73e-14 0 1 4.18e+03 World StepLimiter - 4268 -1.86 -15.9 22.6 5.72e-14 0 1 4.18e+03 World StepLimiter - 4269 -1.75 -14.9 22.6 5.71e-14 0 1 4.18e+03 World StepLimiter - 4270 -1.65 -13.9 22.6 5.7e-14 0 1 4.19e+03 World StepLimiter - 4271 -1.55 -12.9 22.6 5.69e-14 0 1 4.19e+03 World StepLimiter - 4272 -1.44 -11.9 22.6 5.68e-14 0 1 4.19e+03 World StepLimiter - 4273 -1.34 -10.9 22.6 5.67e-14 0 1 4.19e+03 World StepLimiter - 4274 -1.24 -9.93 22.6 5.66e-14 0 1 4.19e+03 World StepLimiter - 4275 -1.13 -8.93 22.7 5.65e-14 0 1 4.19e+03 World StepLimiter - 4276 -1.03 -7.94 22.7 5.64e-14 0 1 4.19e+03 World StepLimiter - 4277 -0.926 -6.94 22.7 5.63e-14 0 1 4.19e+03 World StepLimiter - 4278 -0.822 -5.95 22.7 5.62e-14 0 1 4.19e+03 World StepLimiter - 4279 -0.719 -4.95 22.7 5.61e-14 0 1 4.19e+03 World StepLimiter - 4280 -0.614 -3.96 22.7 5.6e-14 0 1 4.2e+03 World StepLimiter - 4281 -0.51 -2.96 22.7 5.59e-14 0 1 4.2e+03 World StepLimiter - 4282 -0.406 -1.97 22.7 5.58e-14 0 1 4.2e+03 World StepLimiter - 4283 -0.302 -0.974 22.7 5.57e-14 0 1 4.2e+03 World StepLimiter - 4284 -0.197 0.0205 22.7 5.56e-14 0 1 4.2e+03 World StepLimiter - 4285 -0.093 1.01 22.7 5.55e-14 0 1 4.2e+03 World StepLimiter - 4286 0.0116 2.01 22.7 5.54e-14 0 1 4.2e+03 World StepLimiter - 4287 0.116 3 22.7 5.53e-14 0 1 4.2e+03 World StepLimiter - 4288 0.221 4 22.7 5.52e-14 0 1 4.2e+03 World StepLimiter - 4289 0.326 4.99 22.7 5.51e-14 0 1 4.2e+03 World StepLimiter - 4290 0.431 5.99 22.7 5.5e-14 0 1 4.21e+03 World StepLimiter - 4291 0.536 6.98 22.7 5.49e-14 0 1 4.21e+03 World StepLimiter - 4292 0.641 7.98 22.7 5.48e-14 0 1 4.21e+03 World StepLimiter - 4293 0.747 8.97 22.8 5.47e-14 0 1 4.21e+03 World StepLimiter - 4294 0.852 9.97 22.8 5.46e-14 0 1 4.21e+03 World StepLimiter - 4295 0.957 11 22.8 5.45e-14 0 1 4.21e+03 World StepLimiter - 4296 1.06 12 22.8 5.44e-14 0 1 4.21e+03 World StepLimiter - 4297 1.17 12.9 22.8 5.43e-14 0 1 4.21e+03 World StepLimiter - 4298 1.27 13.9 22.8 5.42e-14 0 1 4.21e+03 World StepLimiter - 4299 1.38 14.9 22.8 5.41e-14 0 1 4.21e+03 World StepLimiter - 4300 1.49 15.9 22.8 5.4e-14 0 1 4.22e+03 World StepLimiter - 4301 1.59 16.9 22.8 5.39e-14 0 1 4.22e+03 World StepLimiter - 4302 1.7 17.9 22.8 5.38e-14 0 1 4.22e+03 World StepLimiter - 4303 1.8 18.9 22.8 5.37e-14 0 1 4.22e+03 World StepLimiter - 4304 1.91 19.9 22.8 5.36e-14 0 1 4.22e+03 World StepLimiter - 4305 2.02 20.9 22.8 5.35e-14 0 1 4.22e+03 World StepLimiter - 4306 2.12 21.9 22.8 5.34e-14 0 1 4.22e+03 World StepLimiter - 4307 2.23 22.9 22.8 5.33e-14 0 1 4.22e+03 World StepLimiter - 4308 2.34 23.9 22.8 5.32e-14 0 1 4.22e+03 World StepLimiter - 4309 2.44 24.9 22.8 5.31e-14 0 1 4.22e+03 World StepLimiter - 4310 2.55 25.9 22.8 5.3e-14 0 1 4.23e+03 World StepLimiter - 4311 2.66 26.9 22.9 5.29e-14 0 1 4.23e+03 World StepLimiter - 4312 2.77 27.9 22.9 5.27e-14 0 1 4.23e+03 World StepLimiter - 4313 2.87 28.9 22.9 5.26e-14 0 1 4.23e+03 World StepLimiter - 4314 2.98 29.9 22.9 5.25e-14 0 1 4.23e+03 World StepLimiter - 4315 3.09 30.8 22.9 5.24e-14 0 1 4.23e+03 World StepLimiter - 4316 3.2 31.8 22.9 5.23e-14 0 1 4.23e+03 World StepLimiter - 4317 3.3 32.8 22.9 5.22e-14 0 1 4.23e+03 World StepLimiter - 4318 3.41 33.8 22.9 5.21e-14 0 1 4.23e+03 World StepLimiter - 4319 3.52 34.8 22.9 5.2e-14 0 1 4.23e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.034561558658neV MomDir: (0.10797372760753,0.99413805891152,0.0055851562348245) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4320 3.52 34.8 22.9 5.2e-14 0 0.000601 4.23e+03 Guide Transportation *** StepTooSmall *** - 4321 3.52 34.8 22.9 5.2e-14 0 0 4.23e+03 World Transportation - 4322 3.43 33.8 22.9 5.21e-14 0 1 4.24e+03 World StepLimiter - 4323 3.33 32.8 22.9 5.22e-14 0 1 4.24e+03 World StepLimiter - 4324 3.24 31.8 22.9 5.23e-14 0 1 4.24e+03 World StepLimiter - 4325 3.15 30.8 22.9 5.24e-14 0 1 4.24e+03 World StepLimiter - 4326 3.05 29.8 22.9 5.25e-14 0 1 4.24e+03 World StepLimiter - 4327 2.96 28.8 22.9 5.26e-14 0 1 4.24e+03 World StepLimiter - 4328 2.87 27.9 22.9 5.27e-14 0 1 4.24e+03 World StepLimiter - 4329 2.78 26.9 22.9 5.29e-14 0 1 4.24e+03 World StepLimiter - 4330 2.68 25.9 22.9 5.3e-14 0 1 4.24e+03 World StepLimiter - 4331 2.59 24.9 23 5.31e-14 0 1 4.24e+03 World StepLimiter - 4332 2.5 23.9 23 5.32e-14 0 1 4.25e+03 World StepLimiter - 4333 2.41 22.9 23 5.33e-14 0 1 4.25e+03 World StepLimiter - 4334 2.32 21.9 23 5.34e-14 0 1 4.25e+03 World StepLimiter - 4335 2.22 20.9 23 5.35e-14 0 1 4.25e+03 World StepLimiter - 4336 2.13 19.9 23 5.36e-14 0 1 4.25e+03 World StepLimiter - 4337 2.04 18.9 23 5.37e-14 0 1 4.25e+03 World StepLimiter - 4338 1.95 17.9 23 5.38e-14 0 1 4.25e+03 World StepLimiter - 4339 1.86 16.9 23 5.39e-14 0 1 4.25e+03 World StepLimiter - 4340 1.77 15.9 23 5.4e-14 0 1 4.25e+03 World StepLimiter - 4341 1.67 14.9 23 5.41e-14 0 1 4.25e+03 World StepLimiter - 4342 1.58 13.9 23 5.42e-14 0 1 4.26e+03 World StepLimiter - 4343 1.49 12.9 23 5.43e-14 0 1 4.26e+03 World StepLimiter - 4344 1.4 11.9 23 5.44e-14 0 1 4.26e+03 World StepLimiter - 4345 1.31 10.9 23 5.45e-14 0 1 4.26e+03 World StepLimiter - 4346 1.22 9.93 23 5.46e-14 0 1 4.26e+03 World StepLimiter - 4347 1.13 8.93 23 5.47e-14 0 1 4.26e+03 World StepLimiter - 4348 1.04 7.94 23 5.48e-14 0 1 4.26e+03 World StepLimiter - 4349 0.947 6.94 23 5.49e-14 0 1 4.26e+03 World StepLimiter - 4350 0.856 5.95 23.1 5.5e-14 0 1 4.26e+03 World StepLimiter - 4351 0.766 4.95 23.1 5.51e-14 0 1 4.26e+03 World StepLimiter - 4352 0.675 3.95 23.1 5.52e-14 0 1 4.27e+03 World StepLimiter - 4353 0.585 2.96 23.1 5.53e-14 0 1 4.27e+03 World StepLimiter - 4354 0.495 1.96 23.1 5.54e-14 0 1 4.27e+03 World StepLimiter - 4355 0.405 0.966 23.1 5.55e-14 0 1 4.27e+03 World StepLimiter - 4356 0.314 -0.0298 23.1 5.56e-14 0 1 4.27e+03 World StepLimiter - 4357 0.224 -1.03 23.1 5.57e-14 0 1 4.27e+03 World StepLimiter - 4358 0.135 -2.02 23.1 5.58e-14 0 1 4.27e+03 World StepLimiter - 4359 0.0447 -3.02 23.1 5.59e-14 0 1 4.27e+03 World StepLimiter - 4360 -0.0451 -4.01 23.1 5.6e-14 0 1 4.27e+03 World StepLimiter - 4361 -0.135 -5.01 23.1 5.61e-14 0 1 4.27e+03 World StepLimiter - 4362 -0.224 -6.01 23.1 5.62e-14 0 1 4.28e+03 World StepLimiter - 4363 -0.314 -7 23.1 5.63e-14 0 1 4.28e+03 World StepLimiter - 4364 -0.403 -8 23.1 5.64e-14 0 1 4.28e+03 World StepLimiter - 4365 -0.493 -8.99 23.1 5.65e-14 0 1 4.28e+03 World StepLimiter - 4366 -0.582 -9.99 23.1 5.66e-14 0 1 4.28e+03 World StepLimiter - 4367 -0.671 -11 23.1 5.67e-14 0 1 4.28e+03 World StepLimiter - 4368 -0.76 -12 23.2 5.68e-14 0 1 4.28e+03 World StepLimiter - 4369 -0.849 -13 23.2 5.69e-14 0 1 4.28e+03 World StepLimiter - 4370 -0.938 -14 23.2 5.7e-14 0 1 4.28e+03 World StepLimiter - 4371 -1.03 -15 23.2 5.71e-14 0 1 4.28e+03 World StepLimiter - 4372 -1.12 -16 23.2 5.72e-14 0 1 4.29e+03 World StepLimiter - 4373 -1.2 -17 23.2 5.73e-14 0 1 4.29e+03 World StepLimiter - 4374 -1.29 -18 23.2 5.74e-14 0 1 4.29e+03 World StepLimiter - 4375 -1.38 -19 23.2 5.75e-14 0 1 4.29e+03 World StepLimiter - 4376 -1.47 -19.9 23.2 5.77e-14 0 1 4.29e+03 World StepLimiter - 4377 -1.56 -20.9 23.2 5.78e-14 0 1 4.29e+03 World StepLimiter - 4378 -1.65 -21.9 23.2 5.79e-14 0 1 4.29e+03 World StepLimiter - 4379 -1.74 -22.9 23.2 5.8e-14 0 1 4.29e+03 World StepLimiter - 4380 -1.82 -23.9 23.2 5.81e-14 0 1 4.29e+03 World StepLimiter - 4381 -1.91 -24.9 23.2 5.82e-14 0 1 4.29e+03 World StepLimiter - 4382 -2 -25.9 23.2 5.83e-14 0 1 4.3e+03 World StepLimiter - 4383 -2.09 -26.9 23.2 5.84e-14 0 1 4.3e+03 World StepLimiter - 4384 -2.18 -27.9 23.2 5.85e-14 0 1 4.3e+03 World StepLimiter - 4385 -2.26 -28.9 23.2 5.86e-14 0 1 4.3e+03 World StepLimiter - 4386 -2.35 -29.9 23.2 5.87e-14 0 1 4.3e+03 World StepLimiter - 4387 -2.44 -30.9 23.3 5.88e-14 0 1 4.3e+03 World StepLimiter - 4388 -2.53 -31.9 23.3 5.89e-14 0 1 4.3e+03 World StepLimiter - 4389 -2.61 -32.9 23.3 5.9e-14 0 1 4.3e+03 World StepLimiter - 4390 -2.7 -33.9 23.3 5.91e-14 0 1 4.3e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.183776606489neV MomDir: (-0.087300364065362,-0.99616826921855,0.0052369682228052) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4391 -2.79 -34.9 23.3 5.92e-14 0 0.997 4.3e+03 Guide Transportation *** StepTooSmall *** - 4392 -2.79 -34.9 23.3 5.92e-14 0 0 4.3e+03 World Transportation - 4393 -2.72 -33.9 23.3 5.91e-14 0 1 4.31e+03 World StepLimiter - 4394 -2.64 -32.9 23.3 5.9e-14 0 1 4.31e+03 World StepLimiter - 4395 -2.57 -31.9 23.3 5.89e-14 0 1 4.31e+03 World StepLimiter - 4396 -2.5 -30.9 23.3 5.88e-14 0 1 4.31e+03 World StepLimiter - 4397 -2.43 -29.9 23.3 5.87e-14 0 1 4.31e+03 World StepLimiter - 4398 -2.36 -28.9 23.3 5.86e-14 0 1 4.31e+03 World StepLimiter - 4399 -2.28 -27.9 23.3 5.85e-14 0 1 4.31e+03 World StepLimiter - 4400 -2.21 -26.9 23.3 5.84e-14 0 1 4.31e+03 World StepLimiter - 4401 -2.14 -25.9 23.3 5.83e-14 0 1 4.31e+03 World StepLimiter - 4402 -2.06 -24.9 23.3 5.82e-14 0 1 4.31e+03 World StepLimiter - 4403 -1.99 -23.9 23.3 5.81e-14 0 1 4.32e+03 World StepLimiter - 4404 -1.92 -22.9 23.3 5.8e-14 0 1 4.32e+03 World StepLimiter - 4405 -1.85 -21.9 23.3 5.79e-14 0 1 4.32e+03 World StepLimiter - 4406 -1.77 -20.9 23.3 5.78e-14 0 1 4.32e+03 World StepLimiter - 4407 -1.7 -19.9 23.4 5.76e-14 0 1 4.32e+03 World StepLimiter - 4408 -1.63 -18.9 23.4 5.75e-14 0 1 4.32e+03 World StepLimiter - 4409 -1.55 -17.9 23.4 5.74e-14 0 1 4.32e+03 World StepLimiter - 4410 -1.48 -16.9 23.4 5.73e-14 0 1 4.32e+03 World StepLimiter - 4411 -1.41 -15.9 23.4 5.72e-14 0 1 4.32e+03 World StepLimiter - 4412 -1.34 -14.9 23.4 5.71e-14 0 1 4.32e+03 World StepLimiter - 4413 -1.26 -13.9 23.4 5.7e-14 0 1 4.33e+03 World StepLimiter - 4414 -1.19 -12.9 23.4 5.69e-14 0 1 4.33e+03 World StepLimiter - 4415 -1.11 -12 23.4 5.68e-14 0 1 4.33e+03 World StepLimiter - 4416 -1.04 -11 23.4 5.67e-14 0 1 4.33e+03 World StepLimiter - 4417 -0.968 -9.96 23.4 5.66e-14 0 1 4.33e+03 World StepLimiter - 4418 -0.894 -8.96 23.4 5.65e-14 0 1 4.33e+03 World StepLimiter - 4419 -0.82 -7.96 23.4 5.64e-14 0 1 4.33e+03 World StepLimiter - 4420 -0.747 -6.96 23.4 5.63e-14 0 1 4.33e+03 World StepLimiter - 4421 -0.673 -5.97 23.4 5.62e-14 0 1 4.33e+03 World StepLimiter - 4422 -0.599 -4.97 23.4 5.61e-14 0 1 4.33e+03 World StepLimiter - 4423 -0.525 -3.97 23.4 5.6e-14 0 1 4.34e+03 World StepLimiter - 4424 -0.451 -2.97 23.4 5.59e-14 0 1 4.34e+03 World StepLimiter - 4425 -0.377 -1.98 23.4 5.58e-14 0 1 4.34e+03 World StepLimiter - 4426 -0.302 -0.98 23.5 5.57e-14 0 1 4.34e+03 World StepLimiter - 4427 -0.228 0.017 23.5 5.56e-14 0 1 4.34e+03 World StepLimiter - 4428 -0.154 1.01 23.5 5.55e-14 0 1 4.34e+03 World StepLimiter - 4429 -0.0793 2.01 23.5 5.54e-14 0 1 4.34e+03 World StepLimiter - 4430 -0.0048 3.01 23.5 5.53e-14 0 1 4.34e+03 World StepLimiter - 4431 0.0698 4.01 23.5 5.52e-14 0 1 4.34e+03 World StepLimiter - 4432 0.144 5 23.5 5.51e-14 0 1 4.34e+03 World StepLimiter - 4433 0.219 6 23.5 5.5e-14 0 1 4.35e+03 World StepLimiter - 4434 0.294 7 23.5 5.49e-14 0 1 4.35e+03 World StepLimiter - 4435 0.369 7.99 23.5 5.48e-14 0 1 4.35e+03 World StepLimiter - 4436 0.444 8.99 23.5 5.47e-14 0 1 4.35e+03 World StepLimiter - 4437 0.519 9.99 23.5 5.46e-14 0 1 4.35e+03 World StepLimiter - 4438 0.594 11 23.5 5.45e-14 0 1 4.35e+03 World StepLimiter - 4439 0.669 12 23.5 5.44e-14 0 1 4.35e+03 World StepLimiter - 4440 0.744 13 23.5 5.43e-14 0 1 4.35e+03 World StepLimiter - 4441 0.819 14 23.5 5.42e-14 0 1 4.35e+03 World StepLimiter - 4442 0.894 15 23.5 5.41e-14 0 1 4.35e+03 World StepLimiter - 4443 0.97 16 23.5 5.4e-14 0 1 4.36e+03 World StepLimiter - 4444 1.05 17 23.6 5.39e-14 0 1 4.36e+03 World StepLimiter - 4445 1.12 18 23.6 5.38e-14 0 1 4.36e+03 World StepLimiter - 4446 1.2 19 23.6 5.37e-14 0 1 4.36e+03 World StepLimiter - 4447 1.27 20 23.6 5.36e-14 0 1 4.36e+03 World StepLimiter - 4448 1.35 21 23.6 5.35e-14 0 1 4.36e+03 World StepLimiter - 4449 1.42 22 23.6 5.34e-14 0 1 4.36e+03 World StepLimiter - 4450 1.5 23 23.6 5.33e-14 0 1 4.36e+03 World StepLimiter - 4451 1.58 23.9 23.6 5.31e-14 0 1 4.36e+03 World StepLimiter - 4452 1.65 24.9 23.6 5.3e-14 0 1 4.36e+03 World StepLimiter - 4453 1.73 25.9 23.6 5.29e-14 0 1 4.37e+03 World StepLimiter - 4454 1.8 26.9 23.6 5.28e-14 0 1 4.37e+03 World StepLimiter - 4455 1.88 27.9 23.6 5.27e-14 0 1 4.37e+03 World StepLimiter - 4456 1.96 28.9 23.6 5.26e-14 0 1 4.37e+03 World StepLimiter - 4457 2.03 29.9 23.6 5.25e-14 0 1 4.37e+03 World StepLimiter - 4458 2.11 30.9 23.6 5.24e-14 0 1 4.37e+03 World StepLimiter - 4459 2.19 31.9 23.6 5.23e-14 0 1 4.37e+03 World StepLimiter - 4460 2.26 32.9 23.6 5.22e-14 0 1 4.37e+03 World StepLimiter - 4461 2.34 33.9 23.6 5.21e-14 0 1 4.37e+03 World StepLimiter - 4462 2.42 34.9 23.7 5.2e-14 0 1 4.37e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.024935579797neV MomDir: (0.076825278482769,0.9970289247781,0.0055856729111895) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4463 2.42 34.9 23.7 5.2e-14 0 9.51e-05 4.37e+03 Guide Transportation *** StepTooSmall *** - 4464 2.42 34.9 23.7 5.2e-14 0 0 4.37e+03 World Transportation - 4465 2.35 33.9 23.7 5.21e-14 0 1 4.38e+03 World StepLimiter - 4466 2.29 32.9 23.7 5.22e-14 0 1 4.38e+03 World StepLimiter - 4467 2.23 31.9 23.7 5.23e-14 0 1 4.38e+03 World StepLimiter - 4468 2.17 30.9 23.7 5.24e-14 0 1 4.38e+03 World StepLimiter - 4469 2.11 29.9 23.7 5.25e-14 0 1 4.38e+03 World StepLimiter - 4470 2.05 28.9 23.7 5.26e-14 0 1 4.38e+03 World StepLimiter - 4471 1.99 27.9 23.7 5.27e-14 0 1 4.38e+03 World StepLimiter - 4472 1.93 26.9 23.7 5.28e-14 0 1 4.38e+03 World StepLimiter - 4473 1.87 25.9 23.7 5.29e-14 0 1 4.38e+03 World StepLimiter - 4474 1.81 24.9 23.7 5.3e-14 0 1 4.38e+03 World StepLimiter - 4475 1.75 23.9 23.7 5.32e-14 0 1 4.39e+03 World StepLimiter - 4476 1.69 22.9 23.7 5.33e-14 0 1 4.39e+03 World StepLimiter - 4477 1.63 21.9 23.7 5.34e-14 0 1 4.39e+03 World StepLimiter - 4478 1.56 20.9 23.7 5.35e-14 0 1 4.39e+03 World StepLimiter - 4479 1.5 19.9 23.7 5.36e-14 0 1 4.39e+03 World StepLimiter - 4480 1.44 18.9 23.7 5.37e-14 0 1 4.39e+03 World StepLimiter - 4481 1.38 17.9 23.7 5.38e-14 0 1 4.39e+03 World StepLimiter - 4482 1.32 16.9 23.8 5.39e-14 0 1 4.39e+03 World StepLimiter - 4483 1.26 16 23.8 5.4e-14 0 1 4.39e+03 World StepLimiter - 4484 1.2 15 23.8 5.41e-14 0 1 4.39e+03 World StepLimiter - 4485 1.14 14 23.8 5.42e-14 0 1 4.4e+03 World StepLimiter - 4486 1.08 13 23.8 5.43e-14 0 1 4.4e+03 World StepLimiter - 4487 1.02 12 23.8 5.44e-14 0 1 4.4e+03 World StepLimiter - 4488 0.963 11 23.8 5.45e-14 0 1 4.4e+03 World StepLimiter - 4489 0.904 9.96 23.8 5.46e-14 0 1 4.4e+03 World StepLimiter - 4490 0.844 8.96 23.8 5.47e-14 0 1 4.4e+03 World StepLimiter - 4491 0.784 7.97 23.8 5.48e-14 0 1 4.4e+03 World StepLimiter - 4492 0.725 6.97 23.8 5.49e-14 0 1 4.4e+03 World StepLimiter - 4493 0.665 5.97 23.8 5.5e-14 0 1 4.4e+03 World StepLimiter - 4494 0.605 4.97 23.8 5.51e-14 0 1 4.4e+03 World StepLimiter - 4495 0.546 3.97 23.8 5.52e-14 0 1 4.41e+03 World StepLimiter - 4496 0.487 2.98 23.8 5.53e-14 0 1 4.41e+03 World StepLimiter - 4497 0.427 1.98 23.8 5.54e-14 0 1 4.41e+03 World StepLimiter - 4498 0.368 0.979 23.8 5.55e-14 0 1 4.41e+03 World StepLimiter - 4499 0.309 -0.0195 23.8 5.56e-14 0 1 4.41e+03 World StepLimiter - 4500 0.249 -1.02 23.8 5.57e-14 0 1 4.41e+03 World StepLimiter - 4501 0.19 -2.02 23.9 5.58e-14 0 1 4.41e+03 World StepLimiter - 4502 0.131 -3.01 23.9 5.59e-14 0 1 4.41e+03 World StepLimiter - 4503 0.0722 -4.01 23.9 5.6e-14 0 1 4.41e+03 World StepLimiter - 4504 0.0132 -5.01 23.9 5.61e-14 0 1 4.41e+03 World StepLimiter - 4505 -0.0457 -6.01 23.9 5.62e-14 0 1 4.42e+03 World StepLimiter - 4506 -0.105 -7.01 23.9 5.63e-14 0 1 4.42e+03 World StepLimiter - 4507 -0.163 -8.01 23.9 5.64e-14 0 1 4.42e+03 World StepLimiter - 4508 -0.222 -9 23.9 5.65e-14 0 1 4.42e+03 World StepLimiter - 4509 -0.281 -10 23.9 5.66e-14 0 1 4.42e+03 World StepLimiter - 4510 -0.34 -11 23.9 5.67e-14 0 1 4.42e+03 World StepLimiter - 4511 -0.398 -12 23.9 5.68e-14 0 1 4.42e+03 World StepLimiter - 4512 -0.457 -13 23.9 5.69e-14 0 1 4.42e+03 World StepLimiter - 4513 -0.515 -14 23.9 5.7e-14 0 1 4.42e+03 World StepLimiter - 4514 -0.574 -15 23.9 5.71e-14 0 1 4.42e+03 World StepLimiter - 4515 -0.632 -16 23.9 5.72e-14 0 1 4.43e+03 World StepLimiter - 4516 -0.69 -17 23.9 5.73e-14 0 1 4.43e+03 World StepLimiter - 4517 -0.749 -18 23.9 5.75e-14 0 1 4.43e+03 World StepLimiter - 4518 -0.807 -19 23.9 5.76e-14 0 1 4.43e+03 World StepLimiter - 4519 -0.865 -20 24 5.77e-14 0 1 4.43e+03 World StepLimiter - 4520 -0.923 -21 24 5.78e-14 0 1 4.43e+03 World StepLimiter - 4521 -0.981 -22 24 5.79e-14 0 1 4.43e+03 World StepLimiter - 4522 -1.04 -23 24 5.8e-14 0 1 4.43e+03 World StepLimiter - 4523 -1.1 -24 24 5.81e-14 0 1 4.43e+03 World StepLimiter - 4524 -1.16 -25 24 5.82e-14 0 1 4.43e+03 World StepLimiter - 4525 -1.21 -26 24 5.83e-14 0 1 4.44e+03 World StepLimiter - 4526 -1.27 -27 24 5.84e-14 0 1 4.44e+03 World StepLimiter - 4527 -1.33 -28 24 5.85e-14 0 1 4.44e+03 World StepLimiter - 4528 -1.39 -29 24 5.86e-14 0 1 4.44e+03 World StepLimiter - 4529 -1.44 -30 24 5.87e-14 0 1 4.44e+03 World StepLimiter - 4530 -1.5 -31 24 5.88e-14 0 1 4.44e+03 World StepLimiter - 4531 -1.56 -32 24 5.89e-14 0 1 4.44e+03 World StepLimiter - 4532 -1.62 -33 24 5.9e-14 0 1 4.44e+03 World StepLimiter - 4533 -1.67 -34 24 5.91e-14 0 1 4.44e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.190789117065neV MomDir: (-0.05740673723663,-0.99833713941378,0.0052366579939387) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4534 -1.73 -35 24 5.92e-14 0 0.998 4.44e+03 Guide Transportation *** StepTooSmall *** - 4535 -1.73 -35 24 5.92e-14 0 0 4.44e+03 World Transportation - 4536 -1.69 -34 24 5.91e-14 0 1 4.45e+03 World StepLimiter - 4537 -1.65 -33 24 5.9e-14 0 1 4.45e+03 World StepLimiter - 4538 -1.61 -32 24 5.89e-14 0 1 4.45e+03 World StepLimiter - 4539 -1.57 -31 24.1 5.88e-14 0 1 4.45e+03 World StepLimiter - 4540 -1.52 -30 24.1 5.87e-14 0 1 4.45e+03 World StepLimiter - 4541 -1.48 -29 24.1 5.86e-14 0 1 4.45e+03 World StepLimiter - 4542 -1.44 -28 24.1 5.85e-14 0 1 4.45e+03 World StepLimiter - 4543 -1.4 -27 24.1 5.84e-14 0 1 4.45e+03 World StepLimiter - 4544 -1.36 -26 24.1 5.83e-14 0 1 4.45e+03 World StepLimiter - 4545 -1.31 -25 24.1 5.82e-14 0 1 4.45e+03 World StepLimiter - 4546 -1.27 -24 24.1 5.81e-14 0 1 4.46e+03 World StepLimiter - 4547 -1.23 -23 24.1 5.8e-14 0 1 4.46e+03 World StepLimiter - 4548 -1.19 -22 24.1 5.79e-14 0 1 4.46e+03 World StepLimiter - 4549 -1.15 -21 24.1 5.78e-14 0 1 4.46e+03 World StepLimiter - 4550 -1.1 -20 24.1 5.77e-14 0 1 4.46e+03 World StepLimiter - 4551 -1.06 -19 24.1 5.76e-14 0 1 4.46e+03 World StepLimiter - 4552 -1.02 -18 24.1 5.74e-14 0 1 4.46e+03 World StepLimiter - 4553 -0.978 -17 24.1 5.73e-14 0 1 4.46e+03 World StepLimiter - 4554 -0.936 -16 24.1 5.72e-14 0 1 4.46e+03 World StepLimiter - 4555 -0.894 -15 24.1 5.71e-14 0 1 4.46e+03 World StepLimiter - 4556 -0.851 -14 24.1 5.7e-14 0 1 4.47e+03 World StepLimiter - 4557 -0.809 -13 24.1 5.69e-14 0 1 4.47e+03 World StepLimiter - 4558 -0.766 -12 24.2 5.68e-14 0 1 4.47e+03 World StepLimiter - 4559 -0.724 -11 24.2 5.67e-14 0 1 4.47e+03 World StepLimiter - 4560 -0.682 -9.98 24.2 5.66e-14 0 1 4.47e+03 World StepLimiter - 4561 -0.639 -8.98 24.2 5.65e-14 0 1 4.47e+03 World StepLimiter - 4562 -0.597 -7.98 24.2 5.64e-14 0 1 4.47e+03 World StepLimiter - 4563 -0.554 -6.98 24.2 5.63e-14 0 1 4.47e+03 World StepLimiter - 4564 -0.511 -5.98 24.2 5.62e-14 0 1 4.47e+03 World StepLimiter - 4565 -0.469 -4.98 24.2 5.61e-14 0 1 4.47e+03 World StepLimiter - 4566 -0.426 -3.99 24.2 5.6e-14 0 1 4.48e+03 World StepLimiter - 4567 -0.383 -2.99 24.2 5.59e-14 0 1 4.48e+03 World StepLimiter - 4568 -0.341 -1.99 24.2 5.58e-14 0 1 4.48e+03 World StepLimiter - 4569 -0.298 -0.988 24.2 5.57e-14 0 1 4.48e+03 World StepLimiter - 4570 -0.255 0.0112 24.2 5.56e-14 0 1 4.48e+03 World StepLimiter - 4571 -0.212 1.01 24.2 5.55e-14 0 1 4.48e+03 World StepLimiter - 4572 -0.169 2.01 24.2 5.54e-14 0 1 4.48e+03 World StepLimiter - 4573 -0.126 3.01 24.2 5.53e-14 0 1 4.48e+03 World StepLimiter - 4574 -0.0831 4.01 24.2 5.52e-14 0 1 4.48e+03 World StepLimiter - 4575 -0.04 5.01 24.2 5.51e-14 0 1 4.48e+03 World StepLimiter - 4576 0.00306 6.01 24.2 5.5e-14 0 1 4.49e+03 World StepLimiter - 4577 0.0462 7 24.3 5.49e-14 0 1 4.49e+03 World StepLimiter - 4578 0.0894 8 24.3 5.48e-14 0 1 4.49e+03 World StepLimiter - 4579 0.133 9 24.3 5.47e-14 0 1 4.49e+03 World StepLimiter - 4580 0.176 10 24.3 5.46e-14 0 1 4.49e+03 World StepLimiter - 4581 0.219 11 24.3 5.45e-14 0 1 4.49e+03 World StepLimiter - 4582 0.262 12 24.3 5.44e-14 0 1 4.49e+03 World StepLimiter - 4583 0.306 13 24.3 5.43e-14 0 1 4.49e+03 World StepLimiter - 4584 0.349 14 24.3 5.42e-14 0 1 4.49e+03 World StepLimiter - 4585 0.393 15 24.3 5.41e-14 0 1 4.49e+03 World StepLimiter - 4586 0.436 16 24.3 5.4e-14 0 1 4.5e+03 World StepLimiter - 4587 0.48 17 24.3 5.39e-14 0 1 4.5e+03 World StepLimiter - 4588 0.523 18 24.3 5.38e-14 0 1 4.5e+03 World StepLimiter - 4589 0.567 19 24.3 5.37e-14 0 1 4.5e+03 World StepLimiter - 4590 0.611 20 24.3 5.36e-14 0 1 4.5e+03 World StepLimiter - 4591 0.654 21 24.3 5.35e-14 0 1 4.5e+03 World StepLimiter - 4592 0.698 22 24.3 5.34e-14 0 1 4.5e+03 World StepLimiter - 4593 0.742 23 24.3 5.32e-14 0 1 4.5e+03 World StepLimiter - 4594 0.786 24 24.3 5.31e-14 0 1 4.5e+03 World StepLimiter - 4595 0.829 25 24.4 5.3e-14 0 1 4.5e+03 World StepLimiter - 4596 0.873 26 24.4 5.29e-14 0 1 4.51e+03 World StepLimiter - 4597 0.917 27 24.4 5.28e-14 0 1 4.51e+03 World StepLimiter - 4598 0.961 28 24.4 5.27e-14 0 1 4.51e+03 World StepLimiter - 4599 1.01 29 24.4 5.26e-14 0 1 4.51e+03 World StepLimiter - 4600 1.05 30 24.4 5.25e-14 0 1 4.51e+03 World StepLimiter - 4601 1.09 31 24.4 5.24e-14 0 1 4.51e+03 World StepLimiter - 4602 1.14 32 24.4 5.23e-14 0 1 4.51e+03 World StepLimiter - 4603 1.18 33 24.4 5.22e-14 0 1 4.51e+03 World StepLimiter - 4604 1.23 34 24.4 5.21e-14 0 1 4.51e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.018738439358neV MomDir: (0.044320998136827,0.99900172455575,0.0055860056198405) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4605 1.27 35 24.4 5.2e-14 0 1 4.51e+03 Guide Transportation *** StepTooSmall *** - 4606 1.27 35 24.4 5.2e-14 0 0 4.51e+03 World Transportation - 4607 1.24 34 24.4 5.21e-14 0 1 4.52e+03 World StepLimiter - 4608 1.21 33 24.4 5.22e-14 0 1 4.52e+03 World StepLimiter - 4609 1.19 32 24.4 5.23e-14 0 1 4.52e+03 World StepLimiter - 4610 1.16 31 24.4 5.24e-14 0 1 4.52e+03 World StepLimiter - 4611 1.13 30 24.4 5.25e-14 0 1 4.52e+03 World StepLimiter - 4612 1.1 29 24.4 5.26e-14 0 1 4.52e+03 World StepLimiter - 4613 1.07 28 24.4 5.27e-14 0 1 4.52e+03 World StepLimiter - 4614 1.05 27 24.5 5.28e-14 0 1 4.52e+03 World StepLimiter - 4615 1.02 26 24.5 5.29e-14 0 1 4.52e+03 World StepLimiter - 4616 0.989 25 24.5 5.3e-14 0 1 4.52e+03 World StepLimiter - 4617 0.961 24 24.5 5.31e-14 0 1 4.53e+03 World StepLimiter - 4618 0.933 23 24.5 5.32e-14 0 1 4.53e+03 World StepLimiter - 4619 0.905 22 24.5 5.34e-14 0 1 4.53e+03 World StepLimiter - 4620 0.877 21 24.5 5.35e-14 0 1 4.53e+03 World StepLimiter - 4621 0.849 20 24.5 5.36e-14 0 1 4.53e+03 World StepLimiter - 4622 0.822 19 24.5 5.37e-14 0 1 4.53e+03 World StepLimiter - 4623 0.794 18 24.5 5.38e-14 0 1 4.53e+03 World StepLimiter - 4624 0.766 17 24.5 5.39e-14 0 1 4.53e+03 World StepLimiter - 4625 0.738 16 24.5 5.4e-14 0 1 4.53e+03 World StepLimiter - 4626 0.71 15 24.5 5.41e-14 0 1 4.53e+03 World StepLimiter - 4627 0.683 14 24.5 5.42e-14 0 1 4.54e+03 World StepLimiter - 4628 0.655 13 24.5 5.43e-14 0 1 4.54e+03 World StepLimiter - 4629 0.627 12 24.5 5.44e-14 0 1 4.54e+03 World StepLimiter - 4630 0.6 11 24.5 5.45e-14 0 1 4.54e+03 World StepLimiter - 4631 0.572 9.99 24.5 5.46e-14 0 1 4.54e+03 World StepLimiter - 4632 0.545 8.99 24.6 5.47e-14 0 1 4.54e+03 World StepLimiter - 4633 0.517 7.99 24.6 5.48e-14 0 1 4.54e+03 World StepLimiter - 4634 0.489 6.99 24.6 5.49e-14 0 1 4.54e+03 World StepLimiter - 4635 0.462 5.99 24.6 5.5e-14 0 1 4.54e+03 World StepLimiter - 4636 0.434 4.99 24.6 5.51e-14 0 1 4.54e+03 World StepLimiter - 4637 0.407 3.99 24.6 5.52e-14 0 1 4.55e+03 World StepLimiter - 4638 0.38 2.99 24.6 5.53e-14 0 1 4.55e+03 World StepLimiter - 4639 0.352 1.99 24.6 5.54e-14 0 1 4.55e+03 World StepLimiter - 4640 0.325 0.991 24.6 5.55e-14 0 1 4.55e+03 World StepLimiter - 4641 0.297 -0.00901 24.6 5.56e-14 0 1 4.55e+03 World StepLimiter - 4642 0.27 -1.01 24.6 5.57e-14 0 1 4.55e+03 World StepLimiter - 4643 0.243 -2.01 24.6 5.58e-14 0 1 4.55e+03 World StepLimiter - 4644 0.215 -3.01 24.6 5.59e-14 0 1 4.55e+03 World StepLimiter - 4645 0.188 -4.01 24.6 5.6e-14 0 1 4.55e+03 World StepLimiter - 4646 0.161 -5.01 24.6 5.61e-14 0 1 4.55e+03 World StepLimiter - 4647 0.134 -6.01 24.6 5.62e-14 0 1 4.56e+03 World StepLimiter - 4648 0.107 -7.01 24.6 5.63e-14 0 1 4.56e+03 World StepLimiter - 4649 0.0794 -8.01 24.6 5.64e-14 0 1 4.56e+03 World StepLimiter - 4650 0.0522 -9.01 24.6 5.65e-14 0 1 4.56e+03 World StepLimiter - 4651 0.0251 -10 24.7 5.66e-14 0 1 4.56e+03 World StepLimiter - 4652 -0.00196 -11 24.7 5.67e-14 0 1 4.56e+03 World StepLimiter - 4653 -0.029 -12 24.7 5.68e-14 0 1 4.56e+03 World StepLimiter - 4654 -0.0561 -13 24.7 5.69e-14 0 1 4.56e+03 World StepLimiter - 4655 -0.0831 -14 24.7 5.7e-14 0 1 4.56e+03 World StepLimiter - 4656 -0.11 -15 24.7 5.71e-14 0 1 4.56e+03 World StepLimiter - 4657 -0.137 -16 24.7 5.72e-14 0 1 4.57e+03 World StepLimiter - 4658 -0.164 -17 24.7 5.73e-14 0 1 4.57e+03 World StepLimiter - 4659 -0.191 -18 24.7 5.75e-14 0 1 4.57e+03 World StepLimiter - 4660 -0.218 -19 24.7 5.76e-14 0 1 4.57e+03 World StepLimiter - 4661 -0.245 -20 24.7 5.77e-14 0 1 4.57e+03 World StepLimiter - 4662 -0.271 -21 24.7 5.78e-14 0 1 4.57e+03 World StepLimiter - 4663 -0.298 -22 24.7 5.79e-14 0 1 4.57e+03 World StepLimiter - 4664 -0.325 -23 24.7 5.8e-14 0 1 4.57e+03 World StepLimiter - 4665 -0.352 -24 24.7 5.81e-14 0 1 4.57e+03 World StepLimiter - 4666 -0.379 -25 24.7 5.82e-14 0 1 4.57e+03 World StepLimiter - 4667 -0.405 -26 24.7 5.83e-14 0 1 4.58e+03 World StepLimiter - 4668 -0.432 -27 24.7 5.84e-14 0 1 4.58e+03 World StepLimiter - 4669 -0.459 -28 24.7 5.85e-14 0 1 4.58e+03 World StepLimiter - 4670 -0.485 -29 24.8 5.86e-14 0 1 4.58e+03 World StepLimiter - 4671 -0.512 -30 24.8 5.87e-14 0 1 4.58e+03 World StepLimiter - 4672 -0.539 -31 24.8 5.88e-14 0 1 4.58e+03 World StepLimiter - 4673 -0.565 -32 24.8 5.89e-14 0 1 4.58e+03 World StepLimiter - 4674 -0.592 -33 24.8 5.9e-14 0 1 4.58e+03 World StepLimiter - 4675 -0.618 -34 24.8 5.91e-14 0 1 4.58e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.194576556699neV MomDir: (-0.026506292172543,-0.99963493118383,0.0052364904630224) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4676 -0.645 -35 24.8 5.92e-14 0 0.998 4.58e+03 Guide Transportation *** StepTooSmall *** - 4677 -0.645 -35 24.8 5.92e-14 0 0 4.58e+03 World Transportation - 4678 -0.634 -34 24.8 5.91e-14 0 1 4.59e+03 World StepLimiter - 4679 -0.624 -33 24.8 5.9e-14 0 1 4.59e+03 World StepLimiter - 4680 -0.614 -32 24.8 5.89e-14 0 1 4.59e+03 World StepLimiter - 4681 -0.603 -31 24.8 5.88e-14 0 1 4.59e+03 World StepLimiter - 4682 -0.593 -30 24.8 5.87e-14 0 1 4.59e+03 World StepLimiter - 4683 -0.583 -29 24.8 5.86e-14 0 1 4.59e+03 World StepLimiter - 4684 -0.572 -28 24.8 5.85e-14 0 1 4.59e+03 World StepLimiter - 4685 -0.562 -27 24.8 5.84e-14 0 1 4.59e+03 World StepLimiter - 4686 -0.551 -26 24.8 5.83e-14 0 1 4.59e+03 World StepLimiter - 4687 -0.541 -25 24.8 5.82e-14 0 1 4.59e+03 World StepLimiter - 4688 -0.531 -24 24.8 5.81e-14 0 1 4.6e+03 World StepLimiter - 4689 -0.52 -23 24.8 5.8e-14 0 1 4.6e+03 World StepLimiter - 4690 -0.51 -22 24.9 5.79e-14 0 1 4.6e+03 World StepLimiter - 4691 -0.499 -21 24.9 5.78e-14 0 1 4.6e+03 World StepLimiter - 4692 -0.489 -20 24.9 5.77e-14 0 1 4.6e+03 World StepLimiter - 4693 -0.478 -19 24.9 5.76e-14 0 1 4.6e+03 World StepLimiter - 4694 -0.468 -18 24.9 5.75e-14 0 1 4.6e+03 World StepLimiter - 4695 -0.457 -17 24.9 5.73e-14 0 1 4.6e+03 World StepLimiter - 4696 -0.447 -16 24.9 5.72e-14 0 1 4.6e+03 World StepLimiter - 4697 -0.436 -15 24.9 5.71e-14 0 1 4.6e+03 World StepLimiter - 4698 -0.426 -14 24.9 5.7e-14 0 1 4.61e+03 World StepLimiter - 4699 -0.415 -13 24.9 5.69e-14 0 1 4.61e+03 World StepLimiter - 4700 -0.405 -12 24.9 5.68e-14 0 1 4.61e+03 World StepLimiter - 4701 -0.394 -11 24.9 5.67e-14 0 1 4.61e+03 World StepLimiter - 4702 -0.383 -10 24.9 5.66e-14 0 1 4.61e+03 World StepLimiter - 4703 -0.373 -9 24.9 5.65e-14 0 1 4.61e+03 World StepLimiter - 4704 -0.362 -8 24.9 5.64e-14 0 1 4.61e+03 World StepLimiter - 4705 -0.352 -7 24.9 5.63e-14 0 1 4.61e+03 World StepLimiter - 4706 -0.341 -6 24.9 5.62e-14 0 1 4.61e+03 World StepLimiter - 4707 -0.331 -5 24.9 5.61e-14 0 1 4.61e+03 World StepLimiter - 4708 -0.32 -4 25 5.6e-14 0 1 4.62e+03 World StepLimiter - 4709 -0.309 -3 25 5.59e-14 0 1 4.62e+03 World StepLimiter - 4710 -0.299 -2 25 5.58e-14 0 1 4.62e+03 World StepLimiter - 4711 -0.288 -0.996 25 5.57e-14 0 1 4.62e+03 World StepLimiter - 4712 -0.277 0.00352 25 5.56e-14 0 1 4.62e+03 World StepLimiter - 4713 -0.267 1 25 5.55e-14 0 1 4.62e+03 World StepLimiter - 4714 -0.256 2 25 5.54e-14 0 1 4.62e+03 World StepLimiter - 4715 -0.245 3 25 5.53e-14 0 1 4.62e+03 World StepLimiter - 4716 -0.235 4 25 5.52e-14 0 1 4.62e+03 World StepLimiter - 4717 -0.224 5 25 5.51e-14 0 1 4.62e+03 World StepLimiter - 4718 -0.213 6 25 5.5e-14 0 1 4.63e+03 World StepLimiter - 4719 -0.202 7 25 5.49e-14 0 1 4.63e+03 World StepLimiter - 4720 -0.192 8 25 5.48e-14 0 1 4.63e+03 World StepLimiter - 4721 -0.181 9 25 5.47e-14 0 1 4.63e+03 World StepLimiter - 4722 -0.17 10 25 5.46e-14 0 1 4.63e+03 World StepLimiter - 4723 -0.159 11 25 5.45e-14 0 1 4.63e+03 World StepLimiter - 4724 -0.149 12 25 5.44e-14 0 1 4.63e+03 World StepLimiter - 4725 -0.138 13 25 5.43e-14 0 1 4.63e+03 World StepLimiter - 4726 -0.127 14 25 5.42e-14 0 1 4.63e+03 World StepLimiter - 4727 -0.116 15 25.1 5.41e-14 0 1 4.63e+03 World StepLimiter - 4728 -0.105 16 25.1 5.4e-14 0 1 4.64e+03 World StepLimiter - 4729 -0.0945 17 25.1 5.39e-14 0 1 4.64e+03 World StepLimiter - 4730 -0.0837 18 25.1 5.38e-14 0 1 4.64e+03 World StepLimiter - 4731 -0.0728 19 25.1 5.37e-14 0 1 4.64e+03 World StepLimiter - 4732 -0.062 20 25.1 5.36e-14 0 1 4.64e+03 World StepLimiter - 4733 -0.0511 21 25.1 5.35e-14 0 1 4.64e+03 World StepLimiter - 4734 -0.0402 22 25.1 5.33e-14 0 1 4.64e+03 World StepLimiter - 4735 -0.0293 23 25.1 5.32e-14 0 1 4.64e+03 World StepLimiter - 4736 -0.0184 24 25.1 5.31e-14 0 1 4.64e+03 World StepLimiter - 4737 -0.00748 25 25.1 5.3e-14 0 1 4.64e+03 World StepLimiter - 4738 0.00344 26 25.1 5.29e-14 0 1 4.65e+03 World StepLimiter - 4739 0.0144 27 25.1 5.28e-14 0 1 4.65e+03 World StepLimiter - 4740 0.0253 28 25.1 5.27e-14 0 1 4.65e+03 World StepLimiter - 4741 0.0363 29 25.1 5.26e-14 0 1 4.65e+03 World StepLimiter - 4742 0.0473 30 25.1 5.25e-14 0 1 4.65e+03 World StepLimiter - 4743 0.0582 31 25.1 5.24e-14 0 1 4.65e+03 World StepLimiter - 4744 0.0692 32 25.1 5.23e-14 0 1 4.65e+03 World StepLimiter - 4745 0.0802 33 25.2 5.22e-14 0 1 4.65e+03 World StepLimiter - 4746 0.0912 34 25.2 5.21e-14 0 1 4.65e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.01638811904neV MomDir: (0.011028898473575,0.9999235763446,0.0055861318180894) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4747 0.102 35 25.2 5.2e-14 0 0.999 4.65e+03 Guide Transportation *** StepTooSmall *** - 4748 0.102 35 25.2 5.2e-14 0 0 4.65e+03 World Transportation - 4749 0.107 34 25.2 5.21e-14 0 1 4.66e+03 World StepLimiter - 4750 0.113 33 25.2 5.22e-14 0 1 4.66e+03 World StepLimiter - 4751 0.118 32 25.2 5.23e-14 0 1 4.66e+03 World StepLimiter - 4752 0.123 31 25.2 5.24e-14 0 1 4.66e+03 World StepLimiter - 4753 0.128 30 25.2 5.25e-14 0 1 4.66e+03 World StepLimiter - 4754 0.133 29 25.2 5.26e-14 0 1 4.66e+03 World StepLimiter - 4755 0.138 28 25.2 5.27e-14 0 1 4.66e+03 World StepLimiter - 4756 0.144 27 25.2 5.28e-14 0 1 4.66e+03 World StepLimiter - 4757 0.149 26 25.2 5.29e-14 0 1 4.66e+03 World StepLimiter - 4758 0.154 25 25.2 5.3e-14 0 1 4.66e+03 World StepLimiter - 4759 0.159 24 25.2 5.31e-14 0 1 4.67e+03 World StepLimiter - 4760 0.164 23 25.2 5.32e-14 0 1 4.67e+03 World StepLimiter - 4761 0.169 22 25.2 5.33e-14 0 1 4.67e+03 World StepLimiter - 4762 0.174 21 25.2 5.35e-14 0 1 4.67e+03 World StepLimiter - 4763 0.179 20 25.2 5.36e-14 0 1 4.67e+03 World StepLimiter - 4764 0.185 19 25.3 5.37e-14 0 1 4.67e+03 World StepLimiter - 4765 0.19 18 25.3 5.38e-14 0 1 4.67e+03 World StepLimiter - 4766 0.195 17 25.3 5.39e-14 0 1 4.67e+03 World StepLimiter - 4767 0.2 16 25.3 5.4e-14 0 1 4.67e+03 World StepLimiter - 4768 0.205 15 25.3 5.41e-14 0 1 4.67e+03 World StepLimiter - 4769 0.21 14 25.3 5.42e-14 0 1 4.68e+03 World StepLimiter - 4770 0.215 13 25.3 5.43e-14 0 1 4.68e+03 World StepLimiter - 4771 0.22 12 25.3 5.44e-14 0 1 4.68e+03 World StepLimiter - 4772 0.225 11 25.3 5.45e-14 0 1 4.68e+03 World StepLimiter - 4773 0.23 10 25.3 5.46e-14 0 1 4.68e+03 World StepLimiter - 4774 0.235 9 25.3 5.47e-14 0 1 4.68e+03 World StepLimiter - 4775 0.24 8 25.3 5.48e-14 0 1 4.68e+03 World StepLimiter - 4776 0.246 7 25.3 5.49e-14 0 1 4.68e+03 World StepLimiter - 4777 0.251 6 25.3 5.5e-14 0 1 4.68e+03 World StepLimiter - 4778 0.256 5 25.3 5.51e-14 0 1 4.68e+03 World StepLimiter - 4779 0.261 4 25.3 5.52e-14 0 1 4.69e+03 World StepLimiter - 4780 0.266 3 25.3 5.53e-14 0 1 4.69e+03 World StepLimiter - 4781 0.271 2 25.3 5.54e-14 0 1 4.69e+03 World StepLimiter - 4782 0.276 1 25.4 5.55e-14 0 1 4.69e+03 World StepLimiter - 4783 0.281 0.000834 25.4 5.56e-14 0 1 4.69e+03 World StepLimiter - 4784 0.286 -0.999 25.4 5.57e-14 0 1 4.69e+03 World StepLimiter - 4785 0.291 -2 25.4 5.58e-14 0 1 4.69e+03 World StepLimiter - 4786 0.296 -3 25.4 5.59e-14 0 1 4.69e+03 World StepLimiter - 4787 0.301 -4 25.4 5.6e-14 0 1 4.69e+03 World StepLimiter - 4788 0.306 -5 25.4 5.61e-14 0 1 4.69e+03 World StepLimiter - 4789 0.311 -6 25.4 5.62e-14 0 1 4.7e+03 World StepLimiter - 4790 0.316 -7 25.4 5.63e-14 0 1 4.7e+03 World StepLimiter - 4791 0.321 -8 25.4 5.64e-14 0 1 4.7e+03 World StepLimiter - 4792 0.326 -9 25.4 5.65e-14 0 1 4.7e+03 World StepLimiter - 4793 0.331 -10 25.4 5.66e-14 0 1 4.7e+03 World StepLimiter - 4794 0.336 -11 25.4 5.67e-14 0 1 4.7e+03 World StepLimiter - 4795 0.341 -12 25.4 5.68e-14 0 1 4.7e+03 World StepLimiter - 4796 0.346 -13 25.4 5.69e-14 0 1 4.7e+03 World StepLimiter - 4797 0.351 -14 25.4 5.7e-14 0 1 4.7e+03 World StepLimiter - 4798 0.355 -15 25.4 5.71e-14 0 1 4.7e+03 World StepLimiter - 4799 0.36 -16 25.4 5.72e-14 0 1 4.71e+03 World StepLimiter - 4800 0.365 -17 25.4 5.73e-14 0 1 4.71e+03 World StepLimiter - 4801 0.37 -18 25.5 5.75e-14 0 1 4.71e+03 World StepLimiter - 4802 0.375 -19 25.5 5.76e-14 0 1 4.71e+03 World StepLimiter - 4803 0.38 -20 25.5 5.77e-14 0 1 4.71e+03 World StepLimiter - 4804 0.385 -21 25.5 5.78e-14 0 1 4.71e+03 World StepLimiter - 4805 0.39 -22 25.5 5.79e-14 0 1 4.71e+03 World StepLimiter - 4806 0.395 -23 25.5 5.8e-14 0 1 4.71e+03 World StepLimiter - 4807 0.4 -24 25.5 5.81e-14 0 1 4.71e+03 World StepLimiter - 4808 0.405 -25 25.5 5.82e-14 0 1 4.71e+03 World StepLimiter - 4809 0.41 -26 25.5 5.83e-14 0 1 4.72e+03 World StepLimiter - 4810 0.415 -27 25.5 5.84e-14 0 1 4.72e+03 World StepLimiter - 4811 0.419 -28 25.5 5.85e-14 0 1 4.72e+03 World StepLimiter - 4812 0.424 -29 25.5 5.86e-14 0 1 4.72e+03 World StepLimiter - 4813 0.429 -30 25.5 5.87e-14 0 1 4.72e+03 World StepLimiter - 4814 0.434 -31 25.5 5.88e-14 0 1 4.72e+03 World StepLimiter - 4815 0.439 -32 25.5 5.89e-14 0 1 4.72e+03 World StepLimiter - 4816 0.444 -33 25.5 5.9e-14 0 1 4.72e+03 World StepLimiter - 4817 0.449 -34 25.5 5.91e-14 0 1 4.72e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.194884382982neV MomDir: (0.0048614427542199,-0.99997447251646,0.0052364768475597) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4818 0.454 -35 25.5 5.92e-14 0 0.999 4.72e+03 Guide Transportation *** StepTooSmall *** - 4819 0.454 -35 25.5 5.92e-14 0 0 4.72e+03 World Transportation - 4820 0.432 -34 25.5 5.91e-14 0 1 4.73e+03 World StepLimiter - 4821 0.411 -33 25.6 5.9e-14 0 1 4.73e+03 World StepLimiter - 4822 0.39 -32 25.6 5.89e-14 0 1 4.73e+03 World StepLimiter - 4823 0.369 -31 25.6 5.88e-14 0 1 4.73e+03 World StepLimiter - 4824 0.348 -30 25.6 5.87e-14 0 1 4.73e+03 World StepLimiter - 4825 0.327 -29 25.6 5.86e-14 0 1 4.73e+03 World StepLimiter - 4826 0.306 -28 25.6 5.85e-14 0 1 4.73e+03 World StepLimiter - 4827 0.285 -27 25.6 5.84e-14 0 1 4.73e+03 World StepLimiter - 4828 0.263 -26 25.6 5.83e-14 0 1 4.73e+03 World StepLimiter - 4829 0.242 -25 25.6 5.82e-14 0 1 4.73e+03 World StepLimiter - 4830 0.221 -24 25.6 5.81e-14 0 1 4.74e+03 World StepLimiter - 4831 0.2 -23 25.6 5.8e-14 0 1 4.74e+03 World StepLimiter - 4832 0.178 -22 25.6 5.79e-14 0 1 4.74e+03 World StepLimiter - 4833 0.157 -21 25.6 5.78e-14 0 1 4.74e+03 World StepLimiter - 4834 0.136 -20 25.6 5.77e-14 0 1 4.74e+03 World StepLimiter - 4835 0.114 -19 25.6 5.76e-14 0 1 4.74e+03 World StepLimiter - 4836 0.0929 -18 25.6 5.75e-14 0 1 4.74e+03 World StepLimiter - 4837 0.0716 -17 25.6 5.73e-14 0 1 4.74e+03 World StepLimiter - 4838 0.0502 -16 25.6 5.72e-14 0 1 4.74e+03 World StepLimiter - 4839 0.0287 -15 25.6 5.71e-14 0 1 4.74e+03 World StepLimiter - 4840 0.00731 -14 25.7 5.7e-14 0 1 4.75e+03 World StepLimiter - 4841 -0.0141 -13 25.7 5.69e-14 0 1 4.75e+03 World StepLimiter - 4842 -0.0356 -12 25.7 5.68e-14 0 1 4.75e+03 World StepLimiter - 4843 -0.0571 -11 25.7 5.67e-14 0 1 4.75e+03 World StepLimiter - 4844 -0.0786 -10 25.7 5.66e-14 0 1 4.75e+03 World StepLimiter - 4845 -0.1 -9 25.7 5.65e-14 0 1 4.75e+03 World StepLimiter - 4846 -0.122 -8 25.7 5.64e-14 0 1 4.75e+03 World StepLimiter - 4847 -0.143 -7 25.7 5.63e-14 0 1 4.75e+03 World StepLimiter - 4848 -0.165 -6 25.7 5.62e-14 0 1 4.75e+03 World StepLimiter - 4849 -0.187 -5 25.7 5.61e-14 0 1 4.75e+03 World StepLimiter - 4850 -0.208 -4 25.7 5.6e-14 0 1 4.76e+03 World StepLimiter - 4851 -0.23 -3 25.7 5.59e-14 0 1 4.76e+03 World StepLimiter - 4852 -0.251 -2.01 25.7 5.58e-14 0 1 4.76e+03 World StepLimiter - 4853 -0.273 -1.01 25.7 5.57e-14 0 1 4.76e+03 World StepLimiter - 4854 -0.295 -0.00556 25.7 5.56e-14 0 1 4.76e+03 World StepLimiter - 4855 -0.317 0.994 25.7 5.55e-14 0 1 4.76e+03 World StepLimiter - 4856 -0.338 1.99 25.7 5.54e-14 0 1 4.76e+03 World StepLimiter - 4857 -0.36 2.99 25.7 5.53e-14 0 1 4.76e+03 World StepLimiter - 4858 -0.382 3.99 25.8 5.52e-14 0 1 4.76e+03 World StepLimiter - 4859 -0.404 4.99 25.8 5.51e-14 0 1 4.76e+03 World StepLimiter - 4860 -0.426 5.99 25.8 5.5e-14 0 1 4.77e+03 World StepLimiter - 4861 -0.447 6.99 25.8 5.49e-14 0 1 4.77e+03 World StepLimiter - 4862 -0.469 7.99 25.8 5.48e-14 0 1 4.77e+03 World StepLimiter - 4863 -0.491 8.99 25.8 5.47e-14 0 1 4.77e+03 World StepLimiter - 4864 -0.513 9.99 25.8 5.46e-14 0 1 4.77e+03 World StepLimiter - 4865 -0.535 11 25.8 5.45e-14 0 1 4.77e+03 World StepLimiter - 4866 -0.557 12 25.8 5.44e-14 0 1 4.77e+03 World StepLimiter - 4867 -0.579 13 25.8 5.43e-14 0 1 4.77e+03 World StepLimiter - 4868 -0.601 14 25.8 5.42e-14 0 1 4.77e+03 World StepLimiter - 4869 -0.623 15 25.8 5.41e-14 0 1 4.77e+03 World StepLimiter - 4870 -0.645 16 25.8 5.4e-14 0 1 4.78e+03 World StepLimiter - 4871 -0.667 17 25.8 5.39e-14 0 1 4.78e+03 World StepLimiter - 4872 -0.689 18 25.8 5.38e-14 0 1 4.78e+03 World StepLimiter - 4873 -0.711 19 25.8 5.37e-14 0 1 4.78e+03 World StepLimiter - 4874 -0.733 20 25.8 5.36e-14 0 1 4.78e+03 World StepLimiter - 4875 -0.756 21 25.8 5.35e-14 0 1 4.78e+03 World StepLimiter - 4876 -0.778 22 25.8 5.34e-14 0 1 4.78e+03 World StepLimiter - 4877 -0.8 23 25.9 5.32e-14 0 1 4.78e+03 World StepLimiter - 4878 -0.822 24 25.9 5.31e-14 0 1 4.78e+03 World StepLimiter - 4879 -0.844 25 25.9 5.3e-14 0 1 4.78e+03 World StepLimiter - 4880 -0.867 26 25.9 5.29e-14 0 1 4.79e+03 World StepLimiter - 4881 -0.889 27 25.9 5.28e-14 0 1 4.79e+03 World StepLimiter - 4882 -0.911 28 25.9 5.27e-14 0 1 4.79e+03 World StepLimiter - 4883 -0.933 29 25.9 5.26e-14 0 1 4.79e+03 World StepLimiter - 4884 -0.956 30 25.9 5.25e-14 0 1 4.79e+03 World StepLimiter - 4885 -0.978 31 25.9 5.24e-14 0 1 4.79e+03 World StepLimiter - 4886 -1 32 25.9 5.23e-14 0 1 4.79e+03 World StepLimiter - 4887 -1.02 33 25.9 5.22e-14 0 1 4.79e+03 World StepLimiter - 4888 -1.05 34 25.9 5.21e-14 0 1 4.79e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.018043695474neV MomDir: (-0.022459651825693,0.99973214420881,0.0055860429225724) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4889 -1.07 35 25.9 5.2e-14 0 0.998 4.79e+03 Guide Transportation *** StepTooSmall *** - 4890 -1.07 35 25.9 5.2e-14 0 0 4.79e+03 World Transportation - 4891 -1.03 34 25.9 5.21e-14 0 1 4.8e+03 World StepLimiter - 4892 -0.991 33 25.9 5.22e-14 0 1 4.8e+03 World StepLimiter - 4893 -0.952 32 25.9 5.23e-14 0 1 4.8e+03 World StepLimiter - 4894 -0.914 31 25.9 5.24e-14 0 1 4.8e+03 World StepLimiter - 4895 -0.876 30 25.9 5.25e-14 0 1 4.8e+03 World StepLimiter - 4896 -0.837 29 26 5.26e-14 0 1 4.8e+03 World StepLimiter - 4897 -0.799 28 26 5.27e-14 0 1 4.8e+03 World StepLimiter - 4898 -0.761 27 26 5.28e-14 0 1 4.8e+03 World StepLimiter - 4899 -0.722 26 26 5.29e-14 0 1 4.8e+03 World StepLimiter - 4900 -0.684 25 26 5.3e-14 0 1 4.8e+03 World StepLimiter - 4901 -0.646 24 26 5.31e-14 0 1 4.81e+03 World StepLimiter - 4902 -0.608 23 26 5.32e-14 0 1 4.81e+03 World StepLimiter - 4903 -0.57 22 26 5.34e-14 0 1 4.81e+03 World StepLimiter - 4904 -0.532 21 26 5.35e-14 0 1 4.81e+03 World StepLimiter - 4905 -0.494 20 26 5.36e-14 0 1 4.81e+03 World StepLimiter - 4906 -0.456 19 26 5.37e-14 0 1 4.81e+03 World StepLimiter - 4907 -0.418 18 26 5.38e-14 0 1 4.81e+03 World StepLimiter - 4908 -0.38 17 26 5.39e-14 0 1 4.81e+03 World StepLimiter - 4909 -0.342 16 26 5.4e-14 0 1 4.81e+03 World StepLimiter - 4910 -0.304 15 26 5.41e-14 0 1 4.81e+03 World StepLimiter - 4911 -0.266 14 26 5.42e-14 0 1 4.82e+03 World StepLimiter - 4912 -0.229 13 26 5.43e-14 0 1 4.82e+03 World StepLimiter - 4913 -0.191 12 26 5.44e-14 0 1 4.82e+03 World StepLimiter - 4914 -0.153 11 26.1 5.45e-14 0 1 4.82e+03 World StepLimiter - 4915 -0.116 10 26.1 5.46e-14 0 1 4.82e+03 World StepLimiter - 4916 -0.0779 9 26.1 5.47e-14 0 1 4.82e+03 World StepLimiter - 4917 -0.0403 8 26.1 5.48e-14 0 1 4.82e+03 World StepLimiter - 4918 -0.00275 7 26.1 5.49e-14 0 1 4.82e+03 World StepLimiter - 4919 0.0348 6.01 26.1 5.5e-14 0 1 4.82e+03 World StepLimiter - 4920 0.0722 5.01 26.1 5.51e-14 0 1 4.82e+03 World StepLimiter - 4921 0.11 4.01 26.1 5.52e-14 0 1 4.83e+03 World StepLimiter - 4922 0.147 3.01 26.1 5.53e-14 0 1 4.83e+03 World StepLimiter - 4923 0.184 2.01 26.1 5.54e-14 0 1 4.83e+03 World StepLimiter - 4924 0.222 1.01 26.1 5.55e-14 0 1 4.83e+03 World StepLimiter - 4925 0.259 0.0094 26.1 5.56e-14 0 1 4.83e+03 World StepLimiter - 4926 0.296 -0.99 26.1 5.57e-14 0 1 4.83e+03 World StepLimiter - 4927 0.334 -1.99 26.1 5.58e-14 0 1 4.83e+03 World StepLimiter - 4928 0.371 -2.99 26.1 5.59e-14 0 1 4.83e+03 World StepLimiter - 4929 0.408 -3.99 26.1 5.6e-14 0 1 4.83e+03 World StepLimiter - 4930 0.445 -4.99 26.1 5.61e-14 0 1 4.83e+03 World StepLimiter - 4931 0.482 -5.99 26.1 5.62e-14 0 1 4.84e+03 World StepLimiter - 4932 0.519 -6.99 26.2 5.63e-14 0 1 4.84e+03 World StepLimiter - 4933 0.556 -7.98 26.2 5.64e-14 0 1 4.84e+03 World StepLimiter - 4934 0.593 -8.98 26.2 5.65e-14 0 1 4.84e+03 World StepLimiter - 4935 0.63 -9.98 26.2 5.66e-14 0 1 4.84e+03 World StepLimiter - 4936 0.667 -11 26.2 5.67e-14 0 1 4.84e+03 World StepLimiter - 4937 0.704 -12 26.2 5.68e-14 0 1 4.84e+03 World StepLimiter - 4938 0.741 -13 26.2 5.69e-14 0 1 4.84e+03 World StepLimiter - 4939 0.778 -14 26.2 5.7e-14 0 1 4.84e+03 World StepLimiter - 4940 0.815 -15 26.2 5.71e-14 0 1 4.84e+03 World StepLimiter - 4941 0.851 -16 26.2 5.72e-14 0 1 4.85e+03 World StepLimiter - 4942 0.888 -17 26.2 5.73e-14 0 1 4.85e+03 World StepLimiter - 4943 0.925 -18 26.2 5.74e-14 0 1 4.85e+03 World StepLimiter - 4944 0.962 -19 26.2 5.76e-14 0 1 4.85e+03 World StepLimiter - 4945 0.998 -20 26.2 5.77e-14 0 1 4.85e+03 World StepLimiter - 4946 1.03 -21 26.2 5.78e-14 0 1 4.85e+03 World StepLimiter - 4947 1.07 -22 26.2 5.79e-14 0 1 4.85e+03 World StepLimiter - 4948 1.11 -23 26.2 5.8e-14 0 1 4.85e+03 World StepLimiter - 4949 1.14 -24 26.2 5.81e-14 0 1 4.85e+03 World StepLimiter - 4950 1.18 -25 26.2 5.82e-14 0 1 4.85e+03 World StepLimiter - 4951 1.22 -26 26.3 5.83e-14 0 1 4.86e+03 World StepLimiter - 4952 1.25 -27 26.3 5.84e-14 0 1 4.86e+03 World StepLimiter - 4953 1.29 -28 26.3 5.85e-14 0 1 4.86e+03 World StepLimiter - 4954 1.33 -29 26.3 5.86e-14 0 1 4.86e+03 World StepLimiter - 4955 1.36 -30 26.3 5.87e-14 0 1 4.86e+03 World StepLimiter - 4956 1.4 -31 26.3 5.88e-14 0 1 4.86e+03 World StepLimiter - 4957 1.44 -32 26.3 5.89e-14 0 1 4.86e+03 World StepLimiter - 4958 1.47 -33 26.3 5.9e-14 0 1 4.86e+03 World StepLimiter - 4959 1.51 -34 26.3 5.91e-14 0 1 4.86e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.191691872807neV MomDir: (0.036143623053848,-0.99933288565114,0.0052366180606225) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 4960 1.54 -35 26.3 5.92e-14 0 0.999 4.86e+03 Guide Transportation *** StepTooSmall *** - 4961 1.54 -35 26.3 5.92e-14 0 0 4.86e+03 World Transportation - 4962 1.49 -34 26.3 5.91e-14 0 1 4.87e+03 World StepLimiter - 4963 1.44 -33 26.3 5.9e-14 0 1 4.87e+03 World StepLimiter - 4964 1.39 -32 26.3 5.89e-14 0 1 4.87e+03 World StepLimiter - 4965 1.34 -31 26.3 5.88e-14 0 1 4.87e+03 World StepLimiter - 4966 1.28 -30 26.3 5.87e-14 0 1 4.87e+03 World StepLimiter - 4967 1.23 -29 26.3 5.86e-14 0 1 4.87e+03 World StepLimiter - 4968 1.18 -28 26.3 5.85e-14 0 1 4.87e+03 World StepLimiter - 4969 1.13 -27 26.3 5.84e-14 0 1 4.87e+03 World StepLimiter - 4970 1.07 -26 26.3 5.83e-14 0 1 4.87e+03 World StepLimiter - 4971 1.02 -25 26.4 5.82e-14 0 1 4.87e+03 World StepLimiter - 4972 0.968 -24 26.4 5.81e-14 0 1 4.88e+03 World StepLimiter - 4973 0.916 -23 26.4 5.8e-14 0 1 4.88e+03 World StepLimiter - 4974 0.863 -22 26.4 5.79e-14 0 1 4.88e+03 World StepLimiter - 4975 0.81 -21 26.4 5.78e-14 0 1 4.88e+03 World StepLimiter - 4976 0.758 -20 26.4 5.77e-14 0 1 4.88e+03 World StepLimiter - 4977 0.705 -19 26.4 5.76e-14 0 1 4.88e+03 World StepLimiter - 4978 0.652 -18 26.4 5.75e-14 0 1 4.88e+03 World StepLimiter - 4979 0.599 -17 26.4 5.73e-14 0 1 4.88e+03 World StepLimiter - 4980 0.546 -16 26.4 5.72e-14 0 1 4.88e+03 World StepLimiter - 4981 0.493 -15 26.4 5.71e-14 0 1 4.88e+03 World StepLimiter - 4982 0.44 -14 26.4 5.7e-14 0 1 4.89e+03 World StepLimiter - 4983 0.387 -13 26.4 5.69e-14 0 1 4.89e+03 World StepLimiter - 4984 0.334 -12 26.4 5.68e-14 0 1 4.89e+03 World StepLimiter - 4985 0.281 -11 26.4 5.67e-14 0 1 4.89e+03 World StepLimiter - 4986 0.228 -10 26.4 5.66e-14 0 1 4.89e+03 World StepLimiter - 4987 0.174 -9 26.4 5.65e-14 0 1 4.89e+03 World StepLimiter - 4988 0.121 -8 26.4 5.64e-14 0 1 4.89e+03 World StepLimiter - 4989 0.0677 -7.01 26.4 5.63e-14 0 1 4.89e+03 World StepLimiter - 4990 0.0143 -6.01 26.5 5.62e-14 0 1 4.89e+03 World StepLimiter - 4991 -0.0392 -5.01 26.5 5.61e-14 0 1 4.89e+03 World StepLimiter - 4992 -0.0927 -4.01 26.5 5.6e-14 0 1 4.9e+03 World StepLimiter - 4993 -0.146 -3.01 26.5 5.59e-14 0 1 4.9e+03 World StepLimiter - 4994 -0.2 -2.01 26.5 5.58e-14 0 1 4.9e+03 World StepLimiter - 4995 -0.253 -1.01 26.5 5.57e-14 0 1 4.9e+03 World StepLimiter - 4996 -0.307 -0.0154 26.5 5.56e-14 0 1 4.9e+03 World StepLimiter - 4997 -0.361 0.983 26.5 5.55e-14 0 1 4.9e+03 World StepLimiter - 4998 -0.415 1.98 26.5 5.54e-14 0 1 4.9e+03 World StepLimiter - 4999 -0.469 2.98 26.5 5.53e-14 0 1 4.9e+03 World StepLimiter - 5000 -0.523 3.98 26.5 5.52e-14 0 1 4.9e+03 World StepLimiter - 5001 -0.576 4.98 26.5 5.51e-14 0 1 4.9e+03 World StepLimiter - 5002 -0.63 5.98 26.5 5.5e-14 0 1 4.91e+03 World StepLimiter - 5003 -0.685 6.97 26.5 5.49e-14 0 1 4.91e+03 World StepLimiter - 5004 -0.739 7.97 26.5 5.48e-14 0 1 4.91e+03 World StepLimiter - 5005 -0.793 8.97 26.5 5.47e-14 0 1 4.91e+03 World StepLimiter - 5006 -0.847 9.97 26.5 5.46e-14 0 1 4.91e+03 World StepLimiter - 5007 -0.901 11 26.5 5.45e-14 0 1 4.91e+03 World StepLimiter - 5008 -0.956 12 26.6 5.44e-14 0 1 4.91e+03 World StepLimiter - 5009 -1.01 13 26.6 5.43e-14 0 1 4.91e+03 World StepLimiter - 5010 -1.06 14 26.6 5.42e-14 0 1 4.91e+03 World StepLimiter - 5011 -1.12 15 26.6 5.41e-14 0 1 4.91e+03 World StepLimiter - 5012 -1.17 16 26.6 5.4e-14 0 1 4.92e+03 World StepLimiter - 5013 -1.23 17 26.6 5.39e-14 0 1 4.92e+03 World StepLimiter - 5014 -1.28 18 26.6 5.38e-14 0 1 4.92e+03 World StepLimiter - 5015 -1.34 19 26.6 5.37e-14 0 1 4.92e+03 World StepLimiter - 5016 -1.39 20 26.6 5.36e-14 0 1 4.92e+03 World StepLimiter - 5017 -1.45 21 26.6 5.35e-14 0 1 4.92e+03 World StepLimiter - 5018 -1.5 22 26.6 5.34e-14 0 1 4.92e+03 World StepLimiter - 5019 -1.56 23 26.6 5.33e-14 0 1 4.92e+03 World StepLimiter - 5020 -1.61 23.9 26.6 5.31e-14 0 1 4.92e+03 World StepLimiter - 5021 -1.67 24.9 26.6 5.3e-14 0 1 4.92e+03 World StepLimiter - 5022 -1.72 25.9 26.6 5.29e-14 0 1 4.93e+03 World StepLimiter - 5023 -1.78 26.9 26.6 5.28e-14 0 1 4.93e+03 World StepLimiter - 5024 -1.83 27.9 26.6 5.27e-14 0 1 4.93e+03 World StepLimiter - 5025 -1.89 28.9 26.6 5.26e-14 0 1 4.93e+03 World StepLimiter - 5026 -1.94 29.9 26.7 5.25e-14 0 1 4.93e+03 World StepLimiter - 5027 -2 30.9 26.7 5.24e-14 0 1 4.93e+03 World StepLimiter - 5028 -2.05 31.9 26.7 5.23e-14 0 1 4.93e+03 World StepLimiter - 5029 -2.11 32.9 26.7 5.22e-14 0 1 4.93e+03 World StepLimiter - 5030 -2.16 33.9 26.7 5.21e-14 0 1 4.93e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.023593083091neV MomDir: (-0.055547402964625,0.99844042660386,0.0055857449813663) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5031 -2.22 34.9 26.7 5.2e-14 0 0.998 4.93e+03 Guide Transportation *** StepTooSmall *** - 5032 -2.22 34.9 26.7 5.2e-14 0 0 4.93e+03 World Transportation - 5033 -2.15 33.9 26.7 5.21e-14 0 1 4.94e+03 World StepLimiter - 5034 -2.08 32.9 26.7 5.22e-14 0 1 4.94e+03 World StepLimiter - 5035 -2.01 31.9 26.7 5.23e-14 0 1 4.94e+03 World StepLimiter - 5036 -1.93 30.9 26.7 5.24e-14 0 1 4.94e+03 World StepLimiter - 5037 -1.86 29.9 26.7 5.25e-14 0 1 4.94e+03 World StepLimiter - 5038 -1.79 28.9 26.7 5.26e-14 0 1 4.94e+03 World StepLimiter - 5039 -1.72 27.9 26.7 5.27e-14 0 1 4.94e+03 World StepLimiter - 5040 -1.65 26.9 26.7 5.28e-14 0 1 4.94e+03 World StepLimiter - 5041 -1.58 26 26.7 5.29e-14 0 1 4.94e+03 World StepLimiter - 5042 -1.51 25 26.7 5.3e-14 0 1 4.94e+03 World StepLimiter - 5043 -1.44 24 26.7 5.31e-14 0 1 4.95e+03 World StepLimiter - 5044 -1.37 23 26.7 5.33e-14 0 1 4.95e+03 World StepLimiter - 5045 -1.3 22 26.8 5.34e-14 0 1 4.95e+03 World StepLimiter - 5046 -1.23 21 26.8 5.35e-14 0 1 4.95e+03 World StepLimiter - 5047 -1.16 20 26.8 5.36e-14 0 1 4.95e+03 World StepLimiter - 5048 -1.09 19 26.8 5.37e-14 0 1 4.95e+03 World StepLimiter - 5049 -1.02 18 26.8 5.38e-14 0 1 4.95e+03 World StepLimiter - 5050 -0.948 17 26.8 5.39e-14 0 1 4.95e+03 World StepLimiter - 5051 -0.878 16 26.8 5.4e-14 0 1 4.95e+03 World StepLimiter - 5052 -0.808 15 26.8 5.41e-14 0 1 4.95e+03 World StepLimiter - 5053 -0.738 14 26.8 5.42e-14 0 1 4.96e+03 World StepLimiter - 5054 -0.668 13 26.8 5.43e-14 0 1 4.96e+03 World StepLimiter - 5055 -0.598 12 26.8 5.44e-14 0 1 4.96e+03 World StepLimiter - 5056 -0.529 11 26.8 5.45e-14 0 1 4.96e+03 World StepLimiter - 5057 -0.459 9.99 26.8 5.46e-14 0 1 4.96e+03 World StepLimiter - 5058 -0.39 8.99 26.8 5.47e-14 0 1 4.96e+03 World StepLimiter - 5059 -0.32 8 26.8 5.48e-14 0 1 4.96e+03 World StepLimiter - 5060 -0.251 7 26.8 5.49e-14 0 1 4.96e+03 World StepLimiter - 5061 -0.182 6 26.8 5.5e-14 0 1 4.96e+03 World StepLimiter - 5062 -0.112 5 26.8 5.51e-14 0 1 4.96e+03 World StepLimiter - 5063 -0.0431 4.01 26.8 5.52e-14 0 1 4.97e+03 World StepLimiter - 5064 0.026 3.01 26.9 5.53e-14 0 1 4.97e+03 World StepLimiter - 5065 0.0951 2.01 26.9 5.54e-14 0 1 4.97e+03 World StepLimiter - 5066 0.164 1.01 26.9 5.55e-14 0 1 4.97e+03 World StepLimiter - 5067 0.233 0.0161 26.9 5.56e-14 0 1 4.97e+03 World StepLimiter - 5068 0.302 -0.981 26.9 5.57e-14 0 1 4.97e+03 World StepLimiter - 5069 0.371 -1.98 26.9 5.58e-14 0 1 4.97e+03 World StepLimiter - 5070 0.439 -2.98 26.9 5.59e-14 0 1 4.97e+03 World StepLimiter - 5071 0.508 -3.97 26.9 5.6e-14 0 1 4.97e+03 World StepLimiter - 5072 0.577 -4.97 26.9 5.61e-14 0 1 4.97e+03 World StepLimiter - 5073 0.645 -5.97 26.9 5.62e-14 0 1 4.98e+03 World StepLimiter - 5074 0.714 -6.97 26.9 5.63e-14 0 1 4.98e+03 World StepLimiter - 5075 0.782 -7.96 26.9 5.64e-14 0 1 4.98e+03 World StepLimiter - 5076 0.851 -8.96 26.9 5.65e-14 0 1 4.98e+03 World StepLimiter - 5077 0.919 -9.96 26.9 5.66e-14 0 1 4.98e+03 World StepLimiter - 5078 0.987 -11 26.9 5.67e-14 0 1 4.98e+03 World StepLimiter - 5079 1.06 -12 26.9 5.68e-14 0 1 4.98e+03 World StepLimiter - 5080 1.12 -13 26.9 5.69e-14 0 1 4.98e+03 World StepLimiter - 5081 1.19 -14 26.9 5.7e-14 0 1 4.98e+03 World StepLimiter - 5082 1.26 -14.9 27 5.71e-14 0 1 4.98e+03 World StepLimiter - 5083 1.33 -15.9 27 5.72e-14 0 1 4.99e+03 World StepLimiter - 5084 1.4 -16.9 27 5.73e-14 0 1 4.99e+03 World StepLimiter - 5085 1.46 -17.9 27 5.74e-14 0 1 4.99e+03 World StepLimiter - 5086 1.53 -18.9 27 5.75e-14 0 1 4.99e+03 World StepLimiter - 5087 1.6 -19.9 27 5.77e-14 0 1 4.99e+03 World StepLimiter - 5088 1.67 -20.9 27 5.78e-14 0 1 4.99e+03 World StepLimiter - 5089 1.73 -21.9 27 5.79e-14 0 1 4.99e+03 World StepLimiter - 5090 1.8 -22.9 27 5.8e-14 0 1 4.99e+03 World StepLimiter - 5091 1.87 -23.9 27 5.81e-14 0 1 4.99e+03 World StepLimiter - 5092 1.94 -24.9 27 5.82e-14 0 1 4.99e+03 World StepLimiter - 5093 2 -25.9 27 5.83e-14 0 1 5e+03 World StepLimiter - 5094 2.07 -26.9 27 5.84e-14 0 1 5e+03 World StepLimiter - 5095 2.14 -27.9 27 5.85e-14 0 1 5e+03 World StepLimiter - 5096 2.21 -28.9 27 5.86e-14 0 1 5e+03 World StepLimiter - 5097 2.27 -29.9 27 5.87e-14 0 1 5e+03 World StepLimiter - 5098 2.34 -30.9 27 5.88e-14 0 1 5e+03 World StepLimiter - 5099 2.41 -31.9 27 5.89e-14 0 1 5e+03 World StepLimiter - 5100 2.47 -32.9 27 5.9e-14 0 1 5e+03 World StepLimiter - 5101 2.54 -33.9 27.1 5.91e-14 0 1 5e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.185213688793neV MomDir: (0.066789825798315,-0.99775332322152,0.0052369046427353) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5102 2.61 -34.9 27.1 5.92e-14 0 1 5e+03 Guide Transportation *** StepTooSmall *** - 5103 2.61 -34.9 27.1 5.92e-14 0 0 5e+03 World Transportation - 5104 2.52 -33.9 27.1 5.91e-14 0 1 5.01e+03 World StepLimiter - 5105 2.44 -32.9 27.1 5.9e-14 0 1 5.01e+03 World StepLimiter - 5106 2.36 -31.9 27.1 5.89e-14 0 1 5.01e+03 World StepLimiter - 5107 2.28 -30.9 27.1 5.88e-14 0 1 5.01e+03 World StepLimiter - 5108 2.2 -29.9 27.1 5.87e-14 0 1 5.01e+03 World StepLimiter - 5109 2.11 -28.9 27.1 5.86e-14 0 1 5.01e+03 World StepLimiter - 5110 2.03 -27.9 27.1 5.85e-14 0 1 5.01e+03 World StepLimiter - 5111 1.95 -26.9 27.1 5.84e-14 0 1 5.01e+03 World StepLimiter - 5112 1.86 -25.9 27.1 5.83e-14 0 1 5.01e+03 World StepLimiter - 5113 1.78 -24.9 27.1 5.82e-14 0 1 5.01e+03 World StepLimiter - 5114 1.7 -23.9 27.1 5.81e-14 0 1 5.02e+03 World StepLimiter - 5115 1.62 -22.9 27.1 5.8e-14 0 1 5.02e+03 World StepLimiter - 5116 1.53 -21.9 27.1 5.79e-14 0 1 5.02e+03 World StepLimiter - 5117 1.45 -21 27.1 5.78e-14 0 1 5.02e+03 World StepLimiter - 5118 1.37 -20 27.1 5.77e-14 0 1 5.02e+03 World StepLimiter - 5119 1.28 -19 27.1 5.75e-14 0 1 5.02e+03 World StepLimiter - 5120 1.2 -18 27.1 5.74e-14 0 1 5.02e+03 World StepLimiter - 5121 1.12 -17 27.2 5.73e-14 0 1 5.02e+03 World StepLimiter - 5122 1.03 -16 27.2 5.72e-14 0 1 5.02e+03 World StepLimiter - 5123 0.949 -15 27.2 5.71e-14 0 1 5.02e+03 World StepLimiter - 5124 0.865 -14 27.2 5.7e-14 0 1 5.03e+03 World StepLimiter - 5125 0.782 -13 27.2 5.69e-14 0 1 5.03e+03 World StepLimiter - 5126 0.698 -12 27.2 5.68e-14 0 1 5.03e+03 World StepLimiter - 5127 0.614 -11 27.2 5.67e-14 0 1 5.03e+03 World StepLimiter - 5128 0.53 -9.99 27.2 5.66e-14 0 1 5.03e+03 World StepLimiter - 5129 0.446 -8.99 27.2 5.65e-14 0 1 5.03e+03 World StepLimiter - 5130 0.362 -8 27.2 5.64e-14 0 1 5.03e+03 World StepLimiter - 5131 0.278 -7 27.2 5.63e-14 0 1 5.03e+03 World StepLimiter - 5132 0.193 -6 27.2 5.62e-14 0 1 5.03e+03 World StepLimiter - 5133 0.109 -5.01 27.2 5.61e-14 0 1 5.03e+03 World StepLimiter - 5134 0.0244 -4.01 27.2 5.6e-14 0 1 5.04e+03 World StepLimiter - 5135 -0.0601 -3.01 27.2 5.59e-14 0 1 5.04e+03 World StepLimiter - 5136 -0.145 -2.02 27.2 5.58e-14 0 1 5.04e+03 World StepLimiter - 5137 -0.229 -1.02 27.2 5.57e-14 0 1 5.04e+03 World StepLimiter - 5138 -0.314 -0.0254 27.2 5.56e-14 0 1 5.04e+03 World StepLimiter - 5139 -0.399 0.971 27.2 5.55e-14 0 1 5.04e+03 World StepLimiter - 5140 -0.484 1.97 27.3 5.54e-14 0 1 5.04e+03 World StepLimiter - 5141 -0.569 2.96 27.3 5.53e-14 0 1 5.04e+03 World StepLimiter - 5142 -0.654 3.96 27.3 5.52e-14 0 1 5.04e+03 World StepLimiter - 5143 -0.739 4.96 27.3 5.51e-14 0 1 5.04e+03 World StepLimiter - 5144 -0.824 5.95 27.3 5.5e-14 0 1 5.05e+03 World StepLimiter - 5145 -0.909 6.95 27.3 5.49e-14 0 1 5.05e+03 World StepLimiter - 5146 -0.995 7.95 27.3 5.48e-14 0 1 5.05e+03 World StepLimiter - 5147 -1.08 8.94 27.3 5.47e-14 0 1 5.05e+03 World StepLimiter - 5148 -1.17 9.94 27.3 5.46e-14 0 1 5.05e+03 World StepLimiter - 5149 -1.25 10.9 27.3 5.45e-14 0 1 5.05e+03 World StepLimiter - 5150 -1.34 11.9 27.3 5.44e-14 0 1 5.05e+03 World StepLimiter - 5151 -1.42 12.9 27.3 5.43e-14 0 1 5.05e+03 World StepLimiter - 5152 -1.51 13.9 27.3 5.42e-14 0 1 5.05e+03 World StepLimiter - 5153 -1.59 14.9 27.3 5.41e-14 0 1 5.05e+03 World StepLimiter - 5154 -1.68 15.9 27.3 5.4e-14 0 1 5.06e+03 World StepLimiter - 5155 -1.77 16.9 27.3 5.39e-14 0 1 5.06e+03 World StepLimiter - 5156 -1.85 17.9 27.3 5.38e-14 0 1 5.06e+03 World StepLimiter - 5157 -1.94 18.9 27.3 5.37e-14 0 1 5.06e+03 World StepLimiter - 5158 -2.03 19.9 27.4 5.36e-14 0 1 5.06e+03 World StepLimiter - 5159 -2.11 20.9 27.4 5.35e-14 0 1 5.06e+03 World StepLimiter - 5160 -2.2 21.9 27.4 5.34e-14 0 1 5.06e+03 World StepLimiter - 5161 -2.29 22.9 27.4 5.33e-14 0 1 5.06e+03 World StepLimiter - 5162 -2.37 23.9 27.4 5.32e-14 0 1 5.06e+03 World StepLimiter - 5163 -2.46 24.9 27.4 5.31e-14 0 1 5.06e+03 World StepLimiter - 5164 -2.55 25.9 27.4 5.3e-14 0 1 5.07e+03 World StepLimiter - 5165 -2.63 26.9 27.4 5.28e-14 0 1 5.07e+03 World StepLimiter - 5166 -2.72 27.9 27.4 5.27e-14 0 1 5.07e+03 World StepLimiter - 5167 -2.81 28.9 27.4 5.26e-14 0 1 5.07e+03 World StepLimiter - 5168 -2.89 29.9 27.4 5.25e-14 0 1 5.07e+03 World StepLimiter - 5169 -2.98 30.9 27.4 5.24e-14 0 1 5.07e+03 World StepLimiter - 5170 -3.07 31.9 27.4 5.23e-14 0 1 5.07e+03 World StepLimiter - 5171 -3.16 32.9 27.4 5.22e-14 0 1 5.07e+03 World StepLimiter - 5172 -3.24 33.8 27.4 5.21e-14 0 1 5.07e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.032661682564neV MomDir: (-0.087649221305656,0.9961357432074,0.005585258199702) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5173 -3.33 34.8 27.4 5.2e-14 0 0.997 5.07e+03 Guide Transportation *** StepTooSmall *** - 5174 -3.33 34.8 27.4 5.2e-14 0 0 5.07e+03 World Transportation - 5175 -3.23 33.8 27.4 5.21e-14 0 1 5.08e+03 World StepLimiter - 5176 -3.13 32.9 27.4 5.22e-14 0 1 5.08e+03 World StepLimiter - 5177 -3.02 31.9 27.5 5.23e-14 0 1 5.08e+03 World StepLimiter - 5178 -2.92 30.9 27.5 5.24e-14 0 1 5.08e+03 World StepLimiter - 5179 -2.82 29.9 27.5 5.25e-14 0 1 5.08e+03 World StepLimiter - 5180 -2.72 28.9 27.5 5.26e-14 0 1 5.08e+03 World StepLimiter - 5181 -2.61 27.9 27.5 5.27e-14 0 1 5.08e+03 World StepLimiter - 5182 -2.51 26.9 27.5 5.28e-14 0 1 5.08e+03 World StepLimiter - 5183 -2.41 25.9 27.5 5.3e-14 0 1 5.08e+03 World StepLimiter - 5184 -2.31 24.9 27.5 5.31e-14 0 1 5.08e+03 World StepLimiter - 5185 -2.21 23.9 27.5 5.32e-14 0 1 5.09e+03 World StepLimiter - 5186 -2.11 22.9 27.5 5.33e-14 0 1 5.09e+03 World StepLimiter - 5187 -2 21.9 27.5 5.34e-14 0 1 5.09e+03 World StepLimiter - 5188 -1.9 20.9 27.5 5.35e-14 0 1 5.09e+03 World StepLimiter - 5189 -1.8 19.9 27.5 5.36e-14 0 1 5.09e+03 World StepLimiter - 5190 -1.7 18.9 27.5 5.37e-14 0 1 5.09e+03 World StepLimiter - 5191 -1.6 17.9 27.5 5.38e-14 0 1 5.09e+03 World StepLimiter - 5192 -1.5 16.9 27.5 5.39e-14 0 1 5.09e+03 World StepLimiter - 5193 -1.4 15.9 27.5 5.4e-14 0 1 5.09e+03 World StepLimiter - 5194 -1.3 14.9 27.5 5.41e-14 0 1 5.09e+03 World StepLimiter - 5195 -1.2 14 27.6 5.42e-14 0 1 5.1e+03 World StepLimiter - 5196 -1.1 13 27.6 5.43e-14 0 1 5.1e+03 World StepLimiter - 5197 -0.995 12 27.6 5.44e-14 0 1 5.1e+03 World StepLimiter - 5198 -0.895 11 27.6 5.45e-14 0 1 5.1e+03 World StepLimiter - 5199 -0.795 9.97 27.6 5.46e-14 0 1 5.1e+03 World StepLimiter - 5200 -0.695 8.98 27.6 5.47e-14 0 1 5.1e+03 World StepLimiter - 5201 -0.594 7.98 27.6 5.48e-14 0 1 5.1e+03 World StepLimiter - 5202 -0.494 6.99 27.6 5.49e-14 0 1 5.1e+03 World StepLimiter - 5203 -0.395 5.99 27.6 5.5e-14 0 1 5.1e+03 World StepLimiter - 5204 -0.295 5 27.6 5.51e-14 0 1 5.1e+03 World StepLimiter - 5205 -0.195 4 27.6 5.52e-14 0 1 5.11e+03 World StepLimiter - 5206 -0.0954 3.01 27.6 5.53e-14 0 1 5.11e+03 World StepLimiter - 5207 0.00417 2.01 27.6 5.54e-14 0 1 5.11e+03 World StepLimiter - 5208 0.104 1.02 27.6 5.55e-14 0 1 5.11e+03 World StepLimiter - 5209 0.203 0.0205 27.6 5.56e-14 0 1 5.11e+03 World StepLimiter - 5210 0.302 -0.974 27.6 5.57e-14 0 1 5.11e+03 World StepLimiter - 5211 0.401 -1.97 27.6 5.58e-14 0 1 5.11e+03 World StepLimiter - 5212 0.501 -2.96 27.6 5.59e-14 0 1 5.11e+03 World StepLimiter - 5213 0.599 -3.96 27.6 5.6e-14 0 1 5.11e+03 World StepLimiter - 5214 0.698 -4.95 27.7 5.61e-14 0 1 5.11e+03 World StepLimiter - 5215 0.797 -5.95 27.7 5.62e-14 0 1 5.12e+03 World StepLimiter - 5216 0.896 -6.94 27.7 5.63e-14 0 1 5.12e+03 World StepLimiter - 5217 0.995 -7.94 27.7 5.64e-14 0 1 5.12e+03 World StepLimiter - 5218 1.09 -8.94 27.7 5.65e-14 0 1 5.12e+03 World StepLimiter - 5219 1.19 -9.93 27.7 5.66e-14 0 1 5.12e+03 World StepLimiter - 5220 1.29 -10.9 27.7 5.67e-14 0 1 5.12e+03 World StepLimiter - 5221 1.39 -11.9 27.7 5.68e-14 0 1 5.12e+03 World StepLimiter - 5222 1.49 -12.9 27.7 5.69e-14 0 1 5.12e+03 World StepLimiter - 5223 1.58 -13.9 27.7 5.7e-14 0 1 5.12e+03 World StepLimiter - 5224 1.68 -14.9 27.7 5.71e-14 0 1 5.12e+03 World StepLimiter - 5225 1.78 -15.9 27.7 5.72e-14 0 1 5.13e+03 World StepLimiter - 5226 1.88 -16.9 27.7 5.73e-14 0 1 5.13e+03 World StepLimiter - 5227 1.98 -17.9 27.7 5.74e-14 0 1 5.13e+03 World StepLimiter - 5228 2.07 -18.9 27.7 5.75e-14 0 1 5.13e+03 World StepLimiter - 5229 2.17 -19.9 27.7 5.76e-14 0 1 5.13e+03 World StepLimiter - 5230 2.27 -20.9 27.7 5.77e-14 0 1 5.13e+03 World StepLimiter - 5231 2.37 -21.9 27.7 5.78e-14 0 1 5.13e+03 World StepLimiter - 5232 2.46 -22.9 27.8 5.8e-14 0 1 5.13e+03 World StepLimiter - 5233 2.56 -23.9 27.8 5.81e-14 0 1 5.13e+03 World StepLimiter - 5234 2.66 -24.9 27.8 5.82e-14 0 1 5.13e+03 World StepLimiter - 5235 2.75 -25.9 27.8 5.83e-14 0 1 5.14e+03 World StepLimiter - 5236 2.85 -26.8 27.8 5.84e-14 0 1 5.14e+03 World StepLimiter - 5237 2.95 -27.8 27.8 5.85e-14 0 1 5.14e+03 World StepLimiter - 5238 3.05 -28.8 27.8 5.86e-14 0 1 5.14e+03 World StepLimiter - 5239 3.14 -29.8 27.8 5.87e-14 0 1 5.14e+03 World StepLimiter - 5240 3.24 -30.8 27.8 5.88e-14 0 1 5.14e+03 World StepLimiter - 5241 3.34 -31.8 27.8 5.89e-14 0 1 5.14e+03 World StepLimiter - 5242 3.43 -32.8 27.8 5.9e-14 0 1 5.14e+03 World StepLimiter - 5243 3.53 -33.8 27.8 5.91e-14 0 1 5.14e+03 World StepLimiter - 5244 3.62 -34.8 27.8 5.92e-14 0 1 5.14e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.175883696037neV MomDir: (0.096267585408629,-0.99534171142646,0.0052373174659462) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5245 3.62 -34.8 27.8 5.92e-14 0 0.000519 5.14e+03 Guide Transportation *** StepTooSmall *** - 5246 3.62 -34.8 27.8 5.92e-14 0 0 5.14e+03 World Transportation - 5247 3.51 -33.8 27.8 5.91e-14 0 1 5.15e+03 World StepLimiter - 5248 3.4 -32.8 27.8 5.9e-14 0 1 5.15e+03 World StepLimiter - 5249 3.29 -31.8 27.8 5.89e-14 0 1 5.15e+03 World StepLimiter - 5250 3.18 -30.8 27.8 5.88e-14 0 1 5.15e+03 World StepLimiter - 5251 3.07 -29.8 27.8 5.87e-14 0 1 5.15e+03 World StepLimiter - 5252 2.96 -28.8 27.8 5.86e-14 0 1 5.15e+03 World StepLimiter - 5253 2.85 -27.9 27.9 5.85e-14 0 1 5.15e+03 World StepLimiter - 5254 2.73 -26.9 27.9 5.84e-14 0 1 5.15e+03 World StepLimiter - 5255 2.62 -25.9 27.9 5.83e-14 0 1 5.15e+03 World StepLimiter - 5256 2.51 -24.9 27.9 5.82e-14 0 1 5.15e+03 World StepLimiter - 5257 2.4 -23.9 27.9 5.81e-14 0 1 5.16e+03 World StepLimiter - 5258 2.29 -22.9 27.9 5.8e-14 0 1 5.16e+03 World StepLimiter - 5259 2.18 -21.9 27.9 5.79e-14 0 1 5.16e+03 World StepLimiter - 5260 2.06 -20.9 27.9 5.77e-14 0 1 5.16e+03 World StepLimiter - 5261 1.95 -19.9 27.9 5.76e-14 0 1 5.16e+03 World StepLimiter - 5262 1.84 -18.9 27.9 5.75e-14 0 1 5.16e+03 World StepLimiter - 5263 1.73 -17.9 27.9 5.74e-14 0 1 5.16e+03 World StepLimiter - 5264 1.61 -16.9 27.9 5.73e-14 0 1 5.16e+03 World StepLimiter - 5265 1.5 -15.9 27.9 5.72e-14 0 1 5.16e+03 World StepLimiter - 5266 1.39 -14.9 27.9 5.71e-14 0 1 5.16e+03 World StepLimiter - 5267 1.28 -13.9 27.9 5.7e-14 0 1 5.17e+03 World StepLimiter - 5268 1.16 -13 27.9 5.69e-14 0 1 5.17e+03 World StepLimiter - 5269 1.05 -12 27.9 5.68e-14 0 1 5.17e+03 World StepLimiter - 5270 0.936 -11 27.9 5.67e-14 0 1 5.17e+03 World StepLimiter - 5271 0.823 -9.97 27.9 5.66e-14 0 1 5.17e+03 World StepLimiter - 5272 0.71 -8.98 28 5.65e-14 0 1 5.17e+03 World StepLimiter - 5273 0.596 -7.98 28 5.64e-14 0 1 5.17e+03 World StepLimiter - 5274 0.482 -6.99 28 5.63e-14 0 1 5.17e+03 World StepLimiter - 5275 0.369 -6 28 5.62e-14 0 1 5.17e+03 World StepLimiter - 5276 0.255 -5 28 5.61e-14 0 1 5.17e+03 World StepLimiter - 5277 0.141 -4.01 28 5.6e-14 0 1 5.18e+03 World StepLimiter - 5278 0.0271 -3.02 28 5.59e-14 0 1 5.18e+03 World StepLimiter - 5279 -0.087 -2.02 28 5.58e-14 0 1 5.18e+03 World StepLimiter - 5280 -0.201 -1.03 28 5.57e-14 0 1 5.18e+03 World StepLimiter - 5281 -0.315 -0.0348 28 5.56e-14 0 1 5.18e+03 World StepLimiter - 5282 -0.43 0.959 28 5.55e-14 0 1 5.18e+03 World StepLimiter - 5283 -0.544 1.95 28 5.54e-14 0 1 5.18e+03 World StepLimiter - 5284 -0.659 2.95 28 5.53e-14 0 1 5.18e+03 World StepLimiter - 5285 -0.774 3.94 28 5.52e-14 0 1 5.18e+03 World StepLimiter - 5286 -0.889 4.93 28 5.51e-14 0 1 5.18e+03 World StepLimiter - 5287 -1 5.93 28 5.5e-14 0 1 5.19e+03 World StepLimiter - 5288 -1.12 6.92 28 5.49e-14 0 1 5.19e+03 World StepLimiter - 5289 -1.23 7.91 28 5.48e-14 0 1 5.19e+03 World StepLimiter - 5290 -1.35 8.91 28 5.47e-14 0 1 5.19e+03 World StepLimiter - 5291 -1.46 9.9 28.1 5.46e-14 0 1 5.19e+03 World StepLimiter - 5292 -1.58 10.9 28.1 5.45e-14 0 1 5.19e+03 World StepLimiter - 5293 -1.7 11.9 28.1 5.44e-14 0 1 5.19e+03 World StepLimiter - 5294 -1.81 12.9 28.1 5.43e-14 0 1 5.19e+03 World StepLimiter - 5295 -1.93 13.9 28.1 5.42e-14 0 1 5.19e+03 World StepLimiter - 5296 -2.04 14.9 28.1 5.41e-14 0 1 5.19e+03 World StepLimiter - 5297 -2.16 15.9 28.1 5.4e-14 0 1 5.2e+03 World StepLimiter - 5298 -2.27 16.9 28.1 5.39e-14 0 1 5.2e+03 World StepLimiter - 5299 -2.39 17.8 28.1 5.38e-14 0 1 5.2e+03 World StepLimiter - 5300 -2.51 18.8 28.1 5.37e-14 0 1 5.2e+03 World StepLimiter - 5301 -2.62 19.8 28.1 5.36e-14 0 1 5.2e+03 World StepLimiter - 5302 -2.74 20.8 28.1 5.35e-14 0 1 5.2e+03 World StepLimiter - 5303 -2.86 21.8 28.1 5.34e-14 0 1 5.2e+03 World StepLimiter - 5304 -2.97 22.8 28.1 5.33e-14 0 1 5.2e+03 World StepLimiter - 5305 -3.09 23.8 28.1 5.32e-14 0 1 5.2e+03 World StepLimiter - 5306 -3.21 24.8 28.1 5.31e-14 0 1 5.2e+03 World StepLimiter - 5307 -3.33 25.8 28.1 5.3e-14 0 1 5.21e+03 World StepLimiter - 5308 -3.44 26.8 28.1 5.29e-14 0 1 5.21e+03 World StepLimiter - 5309 -3.56 27.8 28.2 5.28e-14 0 1 5.21e+03 World StepLimiter - 5310 -3.68 28.8 28.2 5.27e-14 0 1 5.21e+03 World StepLimiter - 5311 -3.79 29.8 28.2 5.26e-14 0 1 5.21e+03 World StepLimiter - 5312 -3.91 30.8 28.2 5.25e-14 0 1 5.21e+03 World StepLimiter - 5313 -4.03 31.7 28.2 5.23e-14 0 1 5.21e+03 World StepLimiter - 5314 -4.15 32.7 28.2 5.22e-14 0 1 5.21e+03 World StepLimiter - 5315 -4.27 33.7 28.2 5.21e-14 0 1 5.21e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.044640988824neV MomDir: (-0.1182089954389,0.99297303360588,0.0055846153730077) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5316 -4.38 34.7 28.2 5.2e-14 0 0.997 5.21e+03 Guide Transportation *** StepTooSmall *** - 5317 -4.38 34.7 28.2 5.2e-14 0 0 5.21e+03 World Transportation - 5318 -4.25 33.7 28.2 5.21e-14 0 1 5.22e+03 World StepLimiter - 5319 -4.12 32.7 28.2 5.22e-14 0 1 5.22e+03 World StepLimiter - 5320 -3.99 31.8 28.2 5.23e-14 0 1 5.22e+03 World StepLimiter - 5321 -3.86 30.8 28.2 5.25e-14 0 1 5.22e+03 World StepLimiter - 5322 -3.72 29.8 28.2 5.26e-14 0 1 5.22e+03 World StepLimiter - 5323 -3.59 28.8 28.2 5.27e-14 0 1 5.22e+03 World StepLimiter - 5324 -3.46 27.8 28.2 5.28e-14 0 1 5.22e+03 World StepLimiter - 5325 -3.33 26.8 28.2 5.29e-14 0 1 5.22e+03 World StepLimiter - 5326 -3.2 25.8 28.2 5.3e-14 0 1 5.22e+03 World StepLimiter - 5327 -3.07 24.8 28.2 5.31e-14 0 1 5.22e+03 World StepLimiter - 5328 -2.94 23.8 28.3 5.32e-14 0 1 5.23e+03 World StepLimiter - 5329 -2.81 22.8 28.3 5.33e-14 0 1 5.23e+03 World StepLimiter - 5330 -2.67 21.8 28.3 5.34e-14 0 1 5.23e+03 World StepLimiter - 5331 -2.54 20.8 28.3 5.35e-14 0 1 5.23e+03 World StepLimiter - 5332 -2.41 19.9 28.3 5.36e-14 0 1 5.23e+03 World StepLimiter - 5333 -2.28 18.9 28.3 5.37e-14 0 1 5.23e+03 World StepLimiter - 5334 -2.15 17.9 28.3 5.38e-14 0 1 5.23e+03 World StepLimiter - 5335 -2.02 16.9 28.3 5.39e-14 0 1 5.23e+03 World StepLimiter - 5336 -1.89 15.9 28.3 5.4e-14 0 1 5.23e+03 World StepLimiter - 5337 -1.76 14.9 28.3 5.41e-14 0 1 5.23e+03 World StepLimiter - 5338 -1.63 13.9 28.3 5.42e-14 0 1 5.24e+03 World StepLimiter - 5339 -1.5 12.9 28.3 5.43e-14 0 1 5.24e+03 World StepLimiter - 5340 -1.37 11.9 28.3 5.44e-14 0 1 5.24e+03 World StepLimiter - 5341 -1.25 10.9 28.3 5.45e-14 0 1 5.24e+03 World StepLimiter - 5342 -1.12 9.94 28.3 5.46e-14 0 1 5.24e+03 World StepLimiter - 5343 -0.987 8.95 28.3 5.47e-14 0 1 5.24e+03 World StepLimiter - 5344 -0.858 7.96 28.3 5.48e-14 0 1 5.24e+03 World StepLimiter - 5345 -0.729 6.96 28.3 5.49e-14 0 1 5.24e+03 World StepLimiter - 5346 -0.6 5.97 28.4 5.5e-14 0 1 5.24e+03 World StepLimiter - 5347 -0.472 4.98 28.4 5.51e-14 0 1 5.24e+03 World StepLimiter - 5348 -0.343 3.99 28.4 5.52e-14 0 1 5.25e+03 World StepLimiter - 5349 -0.215 3 28.4 5.53e-14 0 1 5.25e+03 World StepLimiter - 5350 -0.0865 2.01 28.4 5.54e-14 0 1 5.25e+03 World StepLimiter - 5351 0.0417 1.01 28.4 5.55e-14 0 1 5.25e+03 World StepLimiter - 5352 0.17 0.0224 28.4 5.56e-14 0 1 5.25e+03 World StepLimiter - 5353 0.298 -0.969 28.4 5.57e-14 0 1 5.25e+03 World StepLimiter - 5354 0.425 -1.96 28.4 5.58e-14 0 1 5.25e+03 World StepLimiter - 5355 0.553 -2.95 28.4 5.59e-14 0 1 5.25e+03 World StepLimiter - 5356 0.681 -3.94 28.4 5.6e-14 0 1 5.25e+03 World StepLimiter - 5357 0.808 -4.94 28.4 5.61e-14 0 1 5.25e+03 World StepLimiter - 5358 0.936 -5.93 28.4 5.62e-14 0 1 5.26e+03 World StepLimiter - 5359 1.06 -6.92 28.4 5.63e-14 0 1 5.26e+03 World StepLimiter - 5360 1.19 -7.91 28.4 5.64e-14 0 1 5.26e+03 World StepLimiter - 5361 1.32 -8.9 28.4 5.65e-14 0 1 5.26e+03 World StepLimiter - 5362 1.44 -9.9 28.4 5.66e-14 0 1 5.26e+03 World StepLimiter - 5363 1.57 -10.9 28.4 5.67e-14 0 1 5.26e+03 World StepLimiter - 5364 1.7 -11.9 28.4 5.68e-14 0 1 5.26e+03 World StepLimiter - 5365 1.82 -12.9 28.5 5.69e-14 0 1 5.26e+03 World StepLimiter - 5366 1.95 -13.9 28.5 5.7e-14 0 1 5.26e+03 World StepLimiter - 5367 2.08 -14.9 28.5 5.71e-14 0 1 5.26e+03 World StepLimiter - 5368 2.2 -15.8 28.5 5.72e-14 0 1 5.27e+03 World StepLimiter - 5369 2.33 -16.8 28.5 5.73e-14 0 1 5.27e+03 World StepLimiter - 5370 2.45 -17.8 28.5 5.74e-14 0 1 5.27e+03 World StepLimiter - 5371 2.58 -18.8 28.5 5.75e-14 0 1 5.27e+03 World StepLimiter - 5372 2.71 -19.8 28.5 5.76e-14 0 1 5.27e+03 World StepLimiter - 5373 2.83 -20.8 28.5 5.77e-14 0 1 5.27e+03 World StepLimiter - 5374 2.96 -21.8 28.5 5.78e-14 0 1 5.27e+03 World StepLimiter - 5375 3.08 -22.8 28.5 5.79e-14 0 1 5.27e+03 World StepLimiter - 5376 3.21 -23.8 28.5 5.8e-14 0 1 5.27e+03 World StepLimiter - 5377 3.33 -24.8 28.5 5.81e-14 0 1 5.27e+03 World StepLimiter - 5378 3.46 -25.8 28.5 5.82e-14 0 1 5.28e+03 World StepLimiter - 5379 3.58 -26.8 28.5 5.84e-14 0 1 5.28e+03 World StepLimiter - 5380 3.71 -27.8 28.5 5.85e-14 0 1 5.28e+03 World StepLimiter - 5381 3.83 -28.7 28.5 5.86e-14 0 1 5.28e+03 World StepLimiter - 5382 3.96 -29.7 28.5 5.87e-14 0 1 5.28e+03 World StepLimiter - 5383 4.08 -30.7 28.5 5.88e-14 0 1 5.28e+03 World StepLimiter - 5384 4.21 -31.7 28.6 5.89e-14 0 1 5.28e+03 World StepLimiter - 5385 4.33 -32.7 28.6 5.9e-14 0 1 5.28e+03 World StepLimiter - 5386 4.46 -33.7 28.6 5.91e-14 0 1 5.28e+03 World StepLimiter - 5387 4.58 -34.7 28.6 5.92e-14 0 1 5.28e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.164322705145neV MomDir: (0.12407643709583,-0.99225883866233,0.00523782913936) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5388 4.58 -34.7 28.6 5.92e-14 0 0.000944 5.28e+03 Guide Transportation *** StepTooSmall *** - 5389 4.58 -34.7 28.6 5.92e-14 0 0 5.28e+03 World Transportation - 5390 4.44 -33.7 28.6 5.91e-14 0 1 5.29e+03 World StepLimiter - 5391 4.3 -32.7 28.6 5.9e-14 0 1 5.29e+03 World StepLimiter - 5392 4.17 -31.7 28.6 5.89e-14 0 1 5.29e+03 World StepLimiter - 5393 4.03 -30.7 28.6 5.88e-14 0 1 5.29e+03 World StepLimiter - 5394 3.89 -29.7 28.6 5.87e-14 0 1 5.29e+03 World StepLimiter - 5395 3.75 -28.8 28.6 5.86e-14 0 1 5.29e+03 World StepLimiter - 5396 3.61 -27.8 28.6 5.85e-14 0 1 5.29e+03 World StepLimiter - 5397 3.48 -26.8 28.6 5.84e-14 0 1 5.29e+03 World StepLimiter - 5398 3.34 -25.8 28.6 5.83e-14 0 1 5.29e+03 World StepLimiter - 5399 3.2 -24.8 28.6 5.81e-14 0 1 5.29e+03 World StepLimiter - 5400 3.06 -23.8 28.6 5.8e-14 0 1 5.3e+03 World StepLimiter - 5401 2.92 -22.8 28.6 5.79e-14 0 1 5.3e+03 World StepLimiter - 5402 2.78 -21.8 28.6 5.78e-14 0 1 5.3e+03 World StepLimiter - 5403 2.64 -20.8 28.6 5.77e-14 0 1 5.3e+03 World StepLimiter - 5404 2.5 -19.8 28.6 5.76e-14 0 1 5.3e+03 World StepLimiter - 5405 2.36 -18.9 28.7 5.75e-14 0 1 5.3e+03 World StepLimiter - 5406 2.22 -17.9 28.7 5.74e-14 0 1 5.3e+03 World StepLimiter - 5407 2.08 -16.9 28.7 5.73e-14 0 1 5.3e+03 World StepLimiter - 5408 1.94 -15.9 28.7 5.72e-14 0 1 5.3e+03 World StepLimiter - 5409 1.8 -14.9 28.7 5.71e-14 0 1 5.3e+03 World StepLimiter - 5410 1.66 -13.9 28.7 5.7e-14 0 1 5.31e+03 World StepLimiter - 5411 1.52 -12.9 28.7 5.69e-14 0 1 5.31e+03 World StepLimiter - 5412 1.38 -11.9 28.7 5.68e-14 0 1 5.31e+03 World StepLimiter - 5413 1.24 -10.9 28.7 5.67e-14 0 1 5.31e+03 World StepLimiter - 5414 1.1 -9.94 28.7 5.66e-14 0 1 5.31e+03 World StepLimiter - 5415 0.961 -8.95 28.7 5.65e-14 0 1 5.31e+03 World StepLimiter - 5416 0.82 -7.96 28.7 5.64e-14 0 1 5.31e+03 World StepLimiter - 5417 0.679 -6.97 28.7 5.63e-14 0 1 5.31e+03 World StepLimiter - 5418 0.538 -5.98 28.7 5.62e-14 0 1 5.31e+03 World StepLimiter - 5419 0.397 -4.99 28.7 5.61e-14 0 1 5.31e+03 World StepLimiter - 5420 0.255 -4 28.7 5.6e-14 0 1 5.32e+03 World StepLimiter - 5421 0.114 -3.01 28.7 5.59e-14 0 1 5.32e+03 World StepLimiter - 5422 -0.0278 -2.02 28.7 5.58e-14 0 1 5.32e+03 World StepLimiter - 5423 -0.17 -1.03 28.8 5.57e-14 0 1 5.32e+03 World StepLimiter - 5424 -0.311 -0.0431 28.8 5.56e-14 0 1 5.32e+03 World StepLimiter - 5425 -0.454 0.947 28.8 5.55e-14 0 1 5.32e+03 World StepLimiter - 5426 -0.596 1.94 28.8 5.54e-14 0 1 5.32e+03 World StepLimiter - 5427 -0.738 2.93 28.8 5.53e-14 0 1 5.32e+03 World StepLimiter - 5428 -0.88 3.92 28.8 5.52e-14 0 1 5.32e+03 World StepLimiter - 5429 -1.02 4.91 28.8 5.51e-14 0 1 5.32e+03 World StepLimiter - 5430 -1.17 5.9 28.8 5.5e-14 0 1 5.33e+03 World StepLimiter - 5431 -1.31 6.89 28.8 5.49e-14 0 1 5.33e+03 World StepLimiter - 5432 -1.45 7.88 28.8 5.48e-14 0 1 5.33e+03 World StepLimiter - 5433 -1.59 8.86 28.8 5.47e-14 0 1 5.33e+03 World StepLimiter - 5434 -1.74 9.85 28.8 5.46e-14 0 1 5.33e+03 World StepLimiter - 5435 -1.88 10.8 28.8 5.45e-14 0 1 5.33e+03 World StepLimiter - 5436 -2.02 11.8 28.8 5.44e-14 0 1 5.33e+03 World StepLimiter - 5437 -2.17 12.8 28.8 5.43e-14 0 1 5.33e+03 World StepLimiter - 5438 -2.31 13.8 28.8 5.42e-14 0 1 5.33e+03 World StepLimiter - 5439 -2.46 14.8 28.8 5.41e-14 0 1 5.33e+03 World StepLimiter - 5440 -2.6 15.8 28.8 5.4e-14 0 1 5.34e+03 World StepLimiter - 5441 -2.74 16.8 28.8 5.39e-14 0 1 5.34e+03 World StepLimiter - 5442 -2.89 17.8 28.9 5.38e-14 0 1 5.34e+03 World StepLimiter - 5443 -3.03 18.8 28.9 5.37e-14 0 1 5.34e+03 World StepLimiter - 5444 -3.18 19.8 28.9 5.36e-14 0 1 5.34e+03 World StepLimiter - 5445 -3.32 20.7 28.9 5.35e-14 0 1 5.34e+03 World StepLimiter - 5446 -3.47 21.7 28.9 5.34e-14 0 1 5.34e+03 World StepLimiter - 5447 -3.61 22.7 28.9 5.33e-14 0 1 5.34e+03 World StepLimiter - 5448 -3.76 23.7 28.9 5.32e-14 0 1 5.34e+03 World StepLimiter - 5449 -3.9 24.7 28.9 5.31e-14 0 1 5.34e+03 World StepLimiter - 5450 -4.05 25.7 28.9 5.3e-14 0 1 5.35e+03 World StepLimiter - 5451 -4.19 26.7 28.9 5.29e-14 0 1 5.35e+03 World StepLimiter - 5452 -4.34 27.7 28.9 5.28e-14 0 1 5.35e+03 World StepLimiter - 5453 -4.48 28.7 28.9 5.27e-14 0 1 5.35e+03 World StepLimiter - 5454 -4.63 29.6 28.9 5.26e-14 0 1 5.35e+03 World StepLimiter - 5455 -4.78 30.6 28.9 5.25e-14 0 1 5.35e+03 World StepLimiter - 5456 -4.92 31.6 28.9 5.24e-14 0 1 5.35e+03 World StepLimiter - 5457 -5.07 32.6 28.9 5.23e-14 0 1 5.35e+03 World StepLimiter - 5458 -5.22 33.6 28.9 5.22e-14 0 1 5.35e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.05873411504neV MomDir: (-0.14671402407998,0.98916318959637,0.0055838593997975) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5459 -5.36 34.6 28.9 5.21e-14 0 0.997 5.35e+03 Guide Transportation *** StepTooSmall *** - 5460 -5.36 34.6 28.9 5.21e-14 0 0 5.35e+03 World Transportation - 5461 -5.2 33.6 29 5.22e-14 0 1 5.36e+03 World StepLimiter - 5462 -5.04 32.6 29 5.23e-14 0 1 5.36e+03 World StepLimiter - 5463 -4.88 31.6 29 5.24e-14 0 1 5.36e+03 World StepLimiter - 5464 -4.72 30.6 29 5.25e-14 0 1 5.36e+03 World StepLimiter - 5465 -4.57 29.7 29 5.26e-14 0 1 5.36e+03 World StepLimiter - 5466 -4.41 28.7 29 5.27e-14 0 1 5.36e+03 World StepLimiter - 5467 -4.25 27.7 29 5.28e-14 0 1 5.36e+03 World StepLimiter - 5468 -4.09 26.7 29 5.29e-14 0 1 5.36e+03 World StepLimiter - 5469 -3.93 25.7 29 5.3e-14 0 1 5.36e+03 World StepLimiter - 5470 -3.77 24.7 29 5.31e-14 0 1 5.36e+03 World StepLimiter - 5471 -3.61 23.7 29 5.32e-14 0 1 5.37e+03 World StepLimiter - 5472 -3.46 22.7 29 5.33e-14 0 1 5.37e+03 World StepLimiter - 5473 -3.3 21.8 29 5.34e-14 0 1 5.37e+03 World StepLimiter - 5474 -3.14 20.8 29 5.35e-14 0 1 5.37e+03 World StepLimiter - 5475 -2.98 19.8 29 5.36e-14 0 1 5.37e+03 World StepLimiter - 5476 -2.83 18.8 29 5.37e-14 0 1 5.37e+03 World StepLimiter - 5477 -2.67 17.8 29 5.38e-14 0 1 5.37e+03 World StepLimiter - 5478 -2.51 16.8 29 5.39e-14 0 1 5.37e+03 World StepLimiter - 5479 -2.36 15.8 29.1 5.4e-14 0 1 5.37e+03 World StepLimiter - 5480 -2.2 14.8 29.1 5.41e-14 0 1 5.37e+03 World StepLimiter - 5481 -2.04 13.9 29.1 5.42e-14 0 1 5.38e+03 World StepLimiter - 5482 -1.89 12.9 29.1 5.43e-14 0 1 5.38e+03 World StepLimiter - 5483 -1.73 11.9 29.1 5.44e-14 0 1 5.38e+03 World StepLimiter - 5484 -1.57 10.9 29.1 5.45e-14 0 1 5.38e+03 World StepLimiter - 5485 -1.42 9.9 29.1 5.46e-14 0 1 5.38e+03 World StepLimiter - 5486 -1.26 8.91 29.1 5.47e-14 0 1 5.38e+03 World StepLimiter - 5487 -1.11 7.92 29.1 5.48e-14 0 1 5.38e+03 World StepLimiter - 5488 -0.951 6.94 29.1 5.49e-14 0 1 5.38e+03 World StepLimiter - 5489 -0.795 5.95 29.1 5.5e-14 0 1 5.38e+03 World StepLimiter - 5490 -0.64 4.96 29.1 5.51e-14 0 1 5.38e+03 World StepLimiter - 5491 -0.485 3.97 29.1 5.52e-14 0 1 5.39e+03 World StepLimiter - 5492 -0.33 2.99 29.1 5.53e-14 0 1 5.39e+03 World StepLimiter - 5493 -0.175 2 29.1 5.54e-14 0 1 5.39e+03 World StepLimiter - 5494 -0.0206 1.01 29.1 5.55e-14 0 1 5.39e+03 World StepLimiter - 5495 0.134 0.0216 29.1 5.56e-14 0 1 5.39e+03 World StepLimiter - 5496 0.288 -0.966 29.1 5.57e-14 0 1 5.39e+03 World StepLimiter - 5497 0.443 -1.95 29.2 5.58e-14 0 1 5.39e+03 World StepLimiter - 5498 0.597 -2.94 29.2 5.59e-14 0 1 5.39e+03 World StepLimiter - 5499 0.751 -3.93 29.2 5.6e-14 0 1 5.39e+03 World StepLimiter - 5500 0.904 -4.92 29.2 5.61e-14 0 1 5.39e+03 World StepLimiter - 5501 1.06 -5.91 29.2 5.62e-14 0 1 5.4e+03 World StepLimiter - 5502 1.21 -6.89 29.2 5.63e-14 0 1 5.4e+03 World StepLimiter - 5503 1.37 -7.88 29.2 5.64e-14 0 1 5.4e+03 World StepLimiter - 5504 1.52 -8.87 29.2 5.65e-14 0 1 5.4e+03 World StepLimiter - 5505 1.67 -9.86 29.2 5.66e-14 0 1 5.4e+03 World StepLimiter - 5506 1.82 -10.8 29.2 5.67e-14 0 1 5.4e+03 World StepLimiter - 5507 1.98 -11.8 29.2 5.68e-14 0 1 5.4e+03 World StepLimiter - 5508 2.13 -12.8 29.2 5.69e-14 0 1 5.4e+03 World StepLimiter - 5509 2.28 -13.8 29.2 5.7e-14 0 1 5.4e+03 World StepLimiter - 5510 2.44 -14.8 29.2 5.71e-14 0 1 5.4e+03 World StepLimiter - 5511 2.59 -15.8 29.2 5.72e-14 0 1 5.41e+03 World StepLimiter - 5512 2.74 -16.8 29.2 5.73e-14 0 1 5.41e+03 World StepLimiter - 5513 2.89 -17.8 29.2 5.74e-14 0 1 5.41e+03 World StepLimiter - 5514 3.04 -18.8 29.2 5.75e-14 0 1 5.41e+03 World StepLimiter - 5515 3.2 -19.7 29.2 5.76e-14 0 1 5.41e+03 World StepLimiter - 5516 3.35 -20.7 29.3 5.77e-14 0 1 5.41e+03 World StepLimiter - 5517 3.5 -21.7 29.3 5.78e-14 0 1 5.41e+03 World StepLimiter - 5518 3.65 -22.7 29.3 5.79e-14 0 1 5.41e+03 World StepLimiter - 5519 3.8 -23.7 29.3 5.8e-14 0 1 5.41e+03 World StepLimiter - 5520 3.95 -24.7 29.3 5.81e-14 0 1 5.41e+03 World StepLimiter - 5521 4.1 -25.7 29.3 5.82e-14 0 1 5.42e+03 World StepLimiter - 5522 4.25 -26.7 29.3 5.83e-14 0 1 5.42e+03 World StepLimiter - 5523 4.41 -27.7 29.3 5.84e-14 0 1 5.42e+03 World StepLimiter - 5524 4.56 -28.6 29.3 5.85e-14 0 1 5.42e+03 World StepLimiter - 5525 4.71 -29.6 29.3 5.86e-14 0 1 5.42e+03 World StepLimiter - 5526 4.86 -30.6 29.3 5.87e-14 0 1 5.42e+03 World StepLimiter - 5527 5.01 -31.6 29.3 5.88e-14 0 1 5.42e+03 World StepLimiter - 5528 5.16 -32.6 29.3 5.89e-14 0 1 5.42e+03 World StepLimiter - 5529 5.31 -33.6 29.3 5.9e-14 0 1 5.42e+03 World StepLimiter - 5530 5.46 -34.6 29.3 5.92e-14 0 1 5.42e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.151293360589neV MomDir: (0.14975942857483,-0.98870858833922,0.0052384059798565) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5531 5.46 -34.6 29.3 5.92e-14 0 0.00125 5.42e+03 Guide Transportation *** StepTooSmall *** - 5532 5.46 -34.6 29.3 5.92e-14 0 0 5.42e+03 World Transportation - 5533 5.29 -33.6 29.3 5.91e-14 0 1 5.43e+03 World StepLimiter - 5534 5.13 -32.6 29.3 5.89e-14 0 1 5.43e+03 World StepLimiter - 5535 4.97 -31.6 29.3 5.88e-14 0 1 5.43e+03 World StepLimiter - 5536 4.81 -30.6 29.3 5.87e-14 0 1 5.43e+03 World StepLimiter - 5537 4.64 -29.6 29.4 5.86e-14 0 1 5.43e+03 World StepLimiter - 5538 4.48 -28.7 29.4 5.85e-14 0 1 5.43e+03 World StepLimiter - 5539 4.32 -27.7 29.4 5.84e-14 0 1 5.43e+03 World StepLimiter - 5540 4.16 -26.7 29.4 5.83e-14 0 1 5.43e+03 World StepLimiter - 5541 3.99 -25.7 29.4 5.82e-14 0 1 5.43e+03 World StepLimiter - 5542 3.83 -24.7 29.4 5.81e-14 0 1 5.43e+03 World StepLimiter - 5543 3.67 -23.7 29.4 5.8e-14 0 1 5.44e+03 World StepLimiter - 5544 3.5 -22.7 29.4 5.79e-14 0 1 5.44e+03 World StepLimiter - 5545 3.34 -21.7 29.4 5.78e-14 0 1 5.44e+03 World StepLimiter - 5546 3.17 -20.8 29.4 5.77e-14 0 1 5.44e+03 World StepLimiter - 5547 3.01 -19.8 29.4 5.76e-14 0 1 5.44e+03 World StepLimiter - 5548 2.85 -18.8 29.4 5.75e-14 0 1 5.44e+03 World StepLimiter - 5549 2.68 -17.8 29.4 5.74e-14 0 1 5.44e+03 World StepLimiter - 5550 2.52 -16.8 29.4 5.73e-14 0 1 5.44e+03 World StepLimiter - 5551 2.35 -15.8 29.4 5.72e-14 0 1 5.44e+03 World StepLimiter - 5552 2.19 -14.8 29.4 5.71e-14 0 1 5.44e+03 World StepLimiter - 5553 2.02 -13.9 29.4 5.7e-14 0 1 5.45e+03 World StepLimiter - 5554 1.86 -12.9 29.4 5.69e-14 0 1 5.45e+03 World StepLimiter - 5555 1.69 -11.9 29.4 5.68e-14 0 1 5.45e+03 World StepLimiter - 5556 1.53 -10.9 29.5 5.67e-14 0 1 5.45e+03 World StepLimiter - 5557 1.36 -9.91 29.5 5.66e-14 0 1 5.45e+03 World StepLimiter - 5558 1.2 -8.92 29.5 5.65e-14 0 1 5.45e+03 World StepLimiter - 5559 1.03 -7.94 29.5 5.64e-14 0 1 5.45e+03 World StepLimiter - 5560 0.864 -6.95 29.5 5.63e-14 0 1 5.45e+03 World StepLimiter - 5561 0.698 -5.97 29.5 5.62e-14 0 1 5.45e+03 World StepLimiter - 5562 0.531 -4.98 29.5 5.61e-14 0 1 5.45e+03 World StepLimiter - 5563 0.365 -3.99 29.5 5.6e-14 0 1 5.46e+03 World StepLimiter - 5564 0.198 -3.01 29.5 5.59e-14 0 1 5.46e+03 World StepLimiter - 5565 0.0316 -2.02 29.5 5.58e-14 0 1 5.46e+03 World StepLimiter - 5566 -0.135 -1.04 29.5 5.57e-14 0 1 5.46e+03 World StepLimiter - 5567 -0.302 -0.0496 29.5 5.56e-14 0 1 5.46e+03 World StepLimiter - 5568 -0.47 0.936 29.5 5.55e-14 0 1 5.46e+03 World StepLimiter - 5569 -0.637 1.92 29.5 5.54e-14 0 1 5.46e+03 World StepLimiter - 5570 -0.804 2.91 29.5 5.53e-14 0 1 5.46e+03 World StepLimiter - 5571 -0.972 3.89 29.5 5.52e-14 0 1 5.46e+03 World StepLimiter - 5572 -1.14 4.88 29.5 5.51e-14 0 1 5.46e+03 World StepLimiter - 5573 -1.31 5.87 29.5 5.5e-14 0 1 5.47e+03 World StepLimiter - 5574 -1.48 6.85 29.6 5.49e-14 0 1 5.47e+03 World StepLimiter - 5575 -1.64 7.84 29.6 5.48e-14 0 1 5.47e+03 World StepLimiter - 5576 -1.81 8.82 29.6 5.47e-14 0 1 5.47e+03 World StepLimiter - 5577 -1.98 9.81 29.6 5.46e-14 0 1 5.47e+03 World StepLimiter - 5578 -2.15 10.8 29.6 5.45e-14 0 1 5.47e+03 World StepLimiter - 5579 -2.32 11.8 29.6 5.44e-14 0 1 5.47e+03 World StepLimiter - 5580 -2.49 12.8 29.6 5.43e-14 0 1 5.47e+03 World StepLimiter - 5581 -2.66 13.8 29.6 5.42e-14 0 1 5.47e+03 World StepLimiter - 5582 -2.83 14.7 29.6 5.41e-14 0 1 5.47e+03 World StepLimiter - 5583 -3 15.7 29.6 5.4e-14 0 1 5.48e+03 World StepLimiter - 5584 -3.17 16.7 29.6 5.39e-14 0 1 5.48e+03 World StepLimiter - 5585 -3.34 17.7 29.6 5.38e-14 0 1 5.48e+03 World StepLimiter - 5586 -3.51 18.7 29.6 5.37e-14 0 1 5.48e+03 World StepLimiter - 5587 -3.68 19.7 29.6 5.36e-14 0 1 5.48e+03 World StepLimiter - 5588 -3.85 20.6 29.6 5.35e-14 0 1 5.48e+03 World StepLimiter - 5589 -4.02 21.6 29.6 5.34e-14 0 1 5.48e+03 World StepLimiter - 5590 -4.19 22.6 29.6 5.33e-14 0 1 5.48e+03 World StepLimiter - 5591 -4.36 23.6 29.6 5.32e-14 0 1 5.48e+03 World StepLimiter - 5592 -4.53 24.6 29.7 5.31e-14 0 1 5.48e+03 World StepLimiter - 5593 -4.7 25.6 29.7 5.3e-14 0 1 5.49e+03 World StepLimiter - 5594 -4.87 26.6 29.7 5.29e-14 0 1 5.49e+03 World StepLimiter - 5595 -5.04 27.5 29.7 5.28e-14 0 1 5.49e+03 World StepLimiter - 5596 -5.21 28.5 29.7 5.27e-14 0 1 5.49e+03 World StepLimiter - 5597 -5.39 29.5 29.7 5.26e-14 0 1 5.49e+03 World StepLimiter - 5598 -5.56 30.5 29.7 5.25e-14 0 1 5.49e+03 World StepLimiter - 5599 -5.73 31.5 29.7 5.24e-14 0 1 5.49e+03 World StepLimiter - 5600 -5.9 32.5 29.7 5.23e-14 0 1 5.49e+03 World StepLimiter - 5601 -6.08 33.5 29.7 5.22e-14 0 1 5.49e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.07401362217neV MomDir: (-0.17270585949589,0.98495762130086,0.0055830401343614) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5602 -6.25 34.4 29.7 5.21e-14 0 0.997 5.49e+03 Guide Transportation *** StepTooSmall *** - 5603 -6.25 34.4 29.7 5.21e-14 0 0 5.49e+03 World Transportation - 5604 -6.06 33.5 29.7 5.22e-14 0 1 5.5e+03 World StepLimiter - 5605 -5.88 32.5 29.7 5.23e-14 0 1 5.5e+03 World StepLimiter - 5606 -5.7 31.5 29.7 5.24e-14 0 1 5.5e+03 World StepLimiter - 5607 -5.51 30.5 29.7 5.25e-14 0 1 5.5e+03 World StepLimiter - 5608 -5.33 29.5 29.7 5.26e-14 0 1 5.5e+03 World StepLimiter - 5609 -5.14 28.5 29.7 5.27e-14 0 1 5.5e+03 World StepLimiter - 5610 -4.96 27.6 29.7 5.28e-14 0 1 5.5e+03 World StepLimiter - 5611 -4.78 26.6 29.8 5.29e-14 0 1 5.5e+03 World StepLimiter - 5612 -4.6 25.6 29.8 5.3e-14 0 1 5.5e+03 World StepLimiter - 5613 -4.41 24.6 29.8 5.31e-14 0 1 5.5e+03 World StepLimiter - 5614 -4.23 23.6 29.8 5.32e-14 0 1 5.51e+03 World StepLimiter - 5615 -4.05 22.6 29.8 5.33e-14 0 1 5.51e+03 World StepLimiter - 5616 -3.87 21.7 29.8 5.34e-14 0 1 5.51e+03 World StepLimiter - 5617 -3.68 20.7 29.8 5.35e-14 0 1 5.51e+03 World StepLimiter - 5618 -3.5 19.7 29.8 5.36e-14 0 1 5.51e+03 World StepLimiter - 5619 -3.32 18.7 29.8 5.37e-14 0 1 5.51e+03 World StepLimiter - 5620 -3.14 17.7 29.8 5.38e-14 0 1 5.51e+03 World StepLimiter - 5621 -2.96 16.7 29.8 5.39e-14 0 1 5.51e+03 World StepLimiter - 5622 -2.78 15.8 29.8 5.4e-14 0 1 5.51e+03 World StepLimiter - 5623 -2.6 14.8 29.8 5.41e-14 0 1 5.51e+03 World StepLimiter - 5624 -2.42 13.8 29.8 5.42e-14 0 1 5.52e+03 World StepLimiter - 5625 -2.24 12.8 29.8 5.43e-14 0 1 5.52e+03 World StepLimiter - 5626 -2.06 11.8 29.8 5.44e-14 0 1 5.52e+03 World StepLimiter - 5627 -1.88 10.8 29.8 5.45e-14 0 1 5.52e+03 World StepLimiter - 5628 -1.69 9.86 29.8 5.46e-14 0 1 5.52e+03 World StepLimiter - 5629 -1.52 8.87 29.8 5.47e-14 0 1 5.52e+03 World StepLimiter - 5630 -1.34 7.89 29.9 5.48e-14 0 1 5.52e+03 World StepLimiter - 5631 -1.16 6.91 29.9 5.49e-14 0 1 5.52e+03 World StepLimiter - 5632 -0.976 5.92 29.9 5.5e-14 0 1 5.52e+03 World StepLimiter - 5633 -0.797 4.94 29.9 5.51e-14 0 1 5.52e+03 World StepLimiter - 5634 -0.618 3.95 29.9 5.52e-14 0 1 5.53e+03 World StepLimiter - 5635 -0.439 2.97 29.9 5.53e-14 0 1 5.53e+03 World StepLimiter - 5636 -0.261 1.99 29.9 5.54e-14 0 1 5.53e+03 World StepLimiter - 5637 -0.082 1 29.9 5.55e-14 0 1 5.53e+03 World StepLimiter - 5638 0.0964 0.0182 29.9 5.56e-14 0 1 5.53e+03 World StepLimiter - 5639 0.275 -0.966 29.9 5.57e-14 0 1 5.53e+03 World StepLimiter - 5640 0.453 -1.95 29.9 5.58e-14 0 1 5.53e+03 World StepLimiter - 5641 0.631 -2.93 29.9 5.59e-14 0 1 5.53e+03 World StepLimiter - 5642 0.808 -3.92 29.9 5.6e-14 0 1 5.53e+03 World StepLimiter - 5643 0.986 -4.9 29.9 5.61e-14 0 1 5.53e+03 World StepLimiter - 5644 1.16 -5.89 29.9 5.62e-14 0 1 5.54e+03 World StepLimiter - 5645 1.34 -6.87 29.9 5.63e-14 0 1 5.54e+03 World StepLimiter - 5646 1.52 -7.85 29.9 5.64e-14 0 1 5.54e+03 World StepLimiter - 5647 1.69 -8.84 29.9 5.65e-14 0 1 5.54e+03 World StepLimiter - 5648 1.87 -9.82 30 5.66e-14 0 1 5.54e+03 World StepLimiter - 5649 2.05 -10.8 30 5.67e-14 0 1 5.54e+03 World StepLimiter - 5650 2.22 -11.8 30 5.68e-14 0 1 5.54e+03 World StepLimiter - 5651 2.4 -12.8 30 5.69e-14 0 1 5.54e+03 World StepLimiter - 5652 2.58 -13.8 30 5.7e-14 0 1 5.54e+03 World StepLimiter - 5653 2.75 -14.7 30 5.71e-14 0 1 5.54e+03 World StepLimiter - 5654 2.93 -15.7 30 5.72e-14 0 1 5.55e+03 World StepLimiter - 5655 3.1 -16.7 30 5.73e-14 0 1 5.55e+03 World StepLimiter - 5656 3.28 -17.7 30 5.74e-14 0 1 5.55e+03 World StepLimiter - 5657 3.46 -18.7 30 5.75e-14 0 1 5.55e+03 World StepLimiter - 5658 3.63 -19.7 30 5.76e-14 0 1 5.55e+03 World StepLimiter - 5659 3.81 -20.7 30 5.77e-14 0 1 5.55e+03 World StepLimiter - 5660 3.98 -21.6 30 5.78e-14 0 1 5.55e+03 World StepLimiter - 5661 4.16 -22.6 30 5.79e-14 0 1 5.55e+03 World StepLimiter - 5662 4.33 -23.6 30 5.8e-14 0 1 5.55e+03 World StepLimiter - 5663 4.5 -24.6 30 5.81e-14 0 1 5.55e+03 World StepLimiter - 5664 4.68 -25.6 30 5.82e-14 0 1 5.56e+03 World StepLimiter - 5665 4.85 -26.6 30 5.83e-14 0 1 5.56e+03 World StepLimiter - 5666 5.03 -27.5 30 5.84e-14 0 1 5.56e+03 World StepLimiter - 5667 5.2 -28.5 30.1 5.85e-14 0 1 5.56e+03 World StepLimiter - 5668 5.38 -29.5 30.1 5.86e-14 0 1 5.56e+03 World StepLimiter - 5669 5.55 -30.5 30.1 5.87e-14 0 1 5.56e+03 World StepLimiter - 5670 5.72 -31.5 30.1 5.88e-14 0 1 5.56e+03 World StepLimiter - 5671 5.9 -32.5 30.1 5.89e-14 0 1 5.56e+03 World StepLimiter - 5672 6.07 -33.5 30.1 5.9e-14 0 1 5.56e+03 World StepLimiter - 5673 6.24 -34.4 30.1 5.91e-14 0 1 5.56e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.137646421197neV MomDir: (0.17291142448684,-0.98492344476731,0.0052390103671585) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5674 6.24 -34.4 30.1 5.91e-14 0 0.00141 5.56e+03 Guide Transportation *** StepTooSmall *** - 5675 6.24 -34.4 30.1 5.91e-14 0 0 5.56e+03 World Transportation - 5676 6.06 -33.5 30.1 5.9e-14 0 1 5.57e+03 World StepLimiter - 5677 5.87 -32.5 30.1 5.89e-14 0 1 5.57e+03 World StepLimiter - 5678 5.69 -31.5 30.1 5.88e-14 0 1 5.57e+03 World StepLimiter - 5679 5.51 -30.5 30.1 5.87e-14 0 1 5.57e+03 World StepLimiter - 5680 5.32 -29.5 30.1 5.86e-14 0 1 5.57e+03 World StepLimiter - 5681 5.14 -28.5 30.1 5.85e-14 0 1 5.57e+03 World StepLimiter - 5682 4.95 -27.6 30.1 5.84e-14 0 1 5.57e+03 World StepLimiter - 5683 4.77 -26.6 30.1 5.83e-14 0 1 5.57e+03 World StepLimiter - 5684 4.58 -25.6 30.1 5.82e-14 0 1 5.57e+03 World StepLimiter - 5685 4.4 -24.6 30.1 5.81e-14 0 1 5.57e+03 World StepLimiter - 5686 4.21 -23.6 30.1 5.8e-14 0 1 5.58e+03 World StepLimiter - 5687 4.03 -22.6 30.1 5.79e-14 0 1 5.58e+03 World StepLimiter - 5688 3.84 -21.7 30.2 5.78e-14 0 1 5.58e+03 World StepLimiter - 5689 3.65 -20.7 30.2 5.77e-14 0 1 5.58e+03 World StepLimiter - 5690 3.47 -19.7 30.2 5.76e-14 0 1 5.58e+03 World StepLimiter - 5691 3.28 -18.7 30.2 5.75e-14 0 1 5.58e+03 World StepLimiter - 5692 3.1 -17.7 30.2 5.74e-14 0 1 5.58e+03 World StepLimiter - 5693 2.91 -16.8 30.2 5.73e-14 0 1 5.58e+03 World StepLimiter - 5694 2.72 -15.8 30.2 5.72e-14 0 1 5.58e+03 World StepLimiter - 5695 2.53 -14.8 30.2 5.71e-14 0 1 5.58e+03 World StepLimiter - 5696 2.35 -13.8 30.2 5.7e-14 0 1 5.59e+03 World StepLimiter - 5697 2.16 -12.8 30.2 5.69e-14 0 1 5.59e+03 World StepLimiter - 5698 1.97 -11.8 30.2 5.68e-14 0 1 5.59e+03 World StepLimiter - 5699 1.79 -10.9 30.2 5.67e-14 0 1 5.59e+03 World StepLimiter - 5700 1.6 -9.87 30.2 5.66e-14 0 1 5.59e+03 World StepLimiter - 5701 1.41 -8.89 30.2 5.65e-14 0 1 5.59e+03 World StepLimiter - 5702 1.22 -7.91 30.2 5.64e-14 0 1 5.59e+03 World StepLimiter - 5703 1.03 -6.93 30.2 5.63e-14 0 1 5.59e+03 World StepLimiter - 5704 0.845 -5.95 30.2 5.62e-14 0 1 5.59e+03 World StepLimiter - 5705 0.657 -4.96 30.2 5.61e-14 0 1 5.59e+03 World StepLimiter - 5706 0.468 -3.98 30.2 5.6e-14 0 1 5.6e+03 World StepLimiter - 5707 0.279 -3 30.3 5.59e-14 0 1 5.6e+03 World StepLimiter - 5708 0.0903 -2.02 30.3 5.58e-14 0 1 5.6e+03 World StepLimiter - 5709 -0.099 -1.04 30.3 5.57e-14 0 1 5.6e+03 World StepLimiter - 5710 -0.288 -0.0541 30.3 5.56e-14 0 1 5.6e+03 World StepLimiter - 5711 -0.478 0.928 30.3 5.55e-14 0 1 5.6e+03 World StepLimiter - 5712 -0.668 1.91 30.3 5.54e-14 0 1 5.6e+03 World StepLimiter - 5713 -0.858 2.89 30.3 5.53e-14 0 1 5.6e+03 World StepLimiter - 5714 -1.05 3.87 30.3 5.52e-14 0 1 5.6e+03 World StepLimiter - 5715 -1.24 4.85 30.3 5.51e-14 0 1 5.6e+03 World StepLimiter - 5716 -1.43 5.84 30.3 5.5e-14 0 1 5.61e+03 World StepLimiter - 5717 -1.62 6.82 30.3 5.49e-14 0 1 5.61e+03 World StepLimiter - 5718 -1.81 7.8 30.3 5.48e-14 0 1 5.61e+03 World StepLimiter - 5719 -2 8.78 30.3 5.47e-14 0 1 5.61e+03 World StepLimiter - 5720 -2.19 9.76 30.3 5.46e-14 0 1 5.61e+03 World StepLimiter - 5721 -2.38 10.7 30.3 5.45e-14 0 1 5.61e+03 World StepLimiter - 5722 -2.57 11.7 30.3 5.44e-14 0 1 5.61e+03 World StepLimiter - 5723 -2.77 12.7 30.3 5.43e-14 0 1 5.61e+03 World StepLimiter - 5724 -2.96 13.7 30.3 5.42e-14 0 1 5.61e+03 World StepLimiter - 5725 -3.15 14.7 30.4 5.41e-14 0 1 5.61e+03 World StepLimiter - 5726 -3.34 15.7 30.4 5.4e-14 0 1 5.62e+03 World StepLimiter - 5727 -3.53 16.6 30.4 5.39e-14 0 1 5.62e+03 World StepLimiter - 5728 -3.73 17.6 30.4 5.38e-14 0 1 5.62e+03 World StepLimiter - 5729 -3.92 18.6 30.4 5.37e-14 0 1 5.62e+03 World StepLimiter - 5730 -4.11 19.6 30.4 5.36e-14 0 1 5.62e+03 World StepLimiter - 5731 -4.31 20.6 30.4 5.35e-14 0 1 5.62e+03 World StepLimiter - 5732 -4.5 21.5 30.4 5.34e-14 0 1 5.62e+03 World StepLimiter - 5733 -4.69 22.5 30.4 5.33e-14 0 1 5.62e+03 World StepLimiter - 5734 -4.89 23.5 30.4 5.32e-14 0 1 5.62e+03 World StepLimiter - 5735 -5.08 24.5 30.4 5.31e-14 0 1 5.62e+03 World StepLimiter - 5736 -5.27 25.5 30.4 5.3e-14 0 1 5.63e+03 World StepLimiter - 5737 -5.47 26.4 30.4 5.29e-14 0 1 5.63e+03 World StepLimiter - 5738 -5.66 27.4 30.4 5.28e-14 0 1 5.63e+03 World StepLimiter - 5739 -5.86 28.4 30.4 5.27e-14 0 1 5.63e+03 World StepLimiter - 5740 -6.05 29.4 30.4 5.26e-14 0 1 5.63e+03 World StepLimiter - 5741 -6.25 30.4 30.4 5.25e-14 0 1 5.63e+03 World StepLimiter - 5742 -6.44 31.3 30.4 5.24e-14 0 1 5.63e+03 World StepLimiter - 5743 -6.64 32.3 30.5 5.23e-14 0 1 5.63e+03 World StepLimiter - 5744 -6.83 33.3 30.5 5.22e-14 0 1 5.63e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.089486243451neV MomDir: (-0.19578711599093,0.98063053395946,0.0055822108817842) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5745 -7.03 34.3 30.5 5.21e-14 0 0.997 5.63e+03 Guide Transportation *** StepTooSmall *** - 5746 -7.03 34.3 30.5 5.21e-14 0 0 5.63e+03 World Transportation - 5747 -6.82 33.3 30.5 5.22e-14 0 1 5.64e+03 World StepLimiter - 5748 -6.62 32.3 30.5 5.23e-14 0 1 5.64e+03 World StepLimiter - 5749 -6.41 31.4 30.5 5.24e-14 0 1 5.64e+03 World StepLimiter - 5750 -6.21 30.4 30.5 5.25e-14 0 1 5.64e+03 World StepLimiter - 5751 -6 29.4 30.5 5.26e-14 0 1 5.64e+03 World StepLimiter - 5752 -5.8 28.4 30.5 5.27e-14 0 1 5.64e+03 World StepLimiter - 5753 -5.59 27.4 30.5 5.28e-14 0 1 5.64e+03 World StepLimiter - 5754 -5.39 26.5 30.5 5.29e-14 0 1 5.64e+03 World StepLimiter - 5755 -5.18 25.5 30.5 5.3e-14 0 1 5.64e+03 World StepLimiter - 5756 -4.98 24.5 30.5 5.31e-14 0 1 5.64e+03 World StepLimiter - 5757 -4.78 23.5 30.5 5.32e-14 0 1 5.65e+03 World StepLimiter - 5758 -4.57 22.5 30.5 5.33e-14 0 1 5.65e+03 World StepLimiter - 5759 -4.37 21.6 30.5 5.34e-14 0 1 5.65e+03 World StepLimiter - 5760 -4.17 20.6 30.5 5.35e-14 0 1 5.65e+03 World StepLimiter - 5761 -3.96 19.6 30.5 5.36e-14 0 1 5.65e+03 World StepLimiter - 5762 -3.76 18.6 30.6 5.37e-14 0 1 5.65e+03 World StepLimiter - 5763 -3.56 17.6 30.6 5.38e-14 0 1 5.65e+03 World StepLimiter - 5764 -3.36 16.7 30.6 5.39e-14 0 1 5.65e+03 World StepLimiter - 5765 -3.15 15.7 30.6 5.4e-14 0 1 5.65e+03 World StepLimiter - 5766 -2.95 14.7 30.6 5.41e-14 0 1 5.65e+03 World StepLimiter - 5767 -2.75 13.7 30.6 5.42e-14 0 1 5.66e+03 World StepLimiter - 5768 -2.55 12.7 30.6 5.43e-14 0 1 5.66e+03 World StepLimiter - 5769 -2.35 11.8 30.6 5.44e-14 0 1 5.66e+03 World StepLimiter - 5770 -2.14 10.8 30.6 5.45e-14 0 1 5.66e+03 World StepLimiter - 5771 -1.94 9.81 30.6 5.46e-14 0 1 5.66e+03 World StepLimiter - 5772 -1.74 8.83 30.6 5.47e-14 0 1 5.66e+03 World StepLimiter - 5773 -1.54 7.85 30.6 5.48e-14 0 1 5.66e+03 World StepLimiter - 5774 -1.34 6.87 30.6 5.49e-14 0 1 5.66e+03 World StepLimiter - 5775 -1.14 5.89 30.6 5.5e-14 0 1 5.66e+03 World StepLimiter - 5776 -0.941 4.91 30.6 5.51e-14 0 1 5.66e+03 World StepLimiter - 5777 -0.741 3.93 30.6 5.52e-14 0 1 5.67e+03 World StepLimiter - 5778 -0.541 2.95 30.6 5.53e-14 0 1 5.67e+03 World StepLimiter - 5779 -0.341 1.97 30.6 5.54e-14 0 1 5.67e+03 World StepLimiter - 5780 -0.142 0.992 30.6 5.55e-14 0 1 5.67e+03 World StepLimiter - 5781 0.0577 0.0125 30.7 5.56e-14 0 1 5.67e+03 World StepLimiter - 5782 0.257 -0.967 30.7 5.57e-14 0 1 5.67e+03 World StepLimiter - 5783 0.456 -1.95 30.7 5.58e-14 0 1 5.67e+03 World StepLimiter - 5784 0.655 -2.93 30.7 5.59e-14 0 1 5.67e+03 World StepLimiter - 5785 0.853 -3.91 30.7 5.6e-14 0 1 5.67e+03 World StepLimiter - 5786 1.05 -4.89 30.7 5.61e-14 0 1 5.67e+03 World StepLimiter - 5787 1.25 -5.87 30.7 5.62e-14 0 1 5.68e+03 World StepLimiter - 5788 1.45 -6.85 30.7 5.63e-14 0 1 5.68e+03 World StepLimiter - 5789 1.65 -7.83 30.7 5.64e-14 0 1 5.68e+03 World StepLimiter - 5790 1.84 -8.81 30.7 5.65e-14 0 1 5.68e+03 World StepLimiter - 5791 2.04 -9.79 30.7 5.66e-14 0 1 5.68e+03 World StepLimiter - 5792 2.24 -10.8 30.7 5.67e-14 0 1 5.68e+03 World StepLimiter - 5793 2.44 -11.7 30.7 5.68e-14 0 1 5.68e+03 World StepLimiter - 5794 2.63 -12.7 30.7 5.69e-14 0 1 5.68e+03 World StepLimiter - 5795 2.83 -13.7 30.7 5.7e-14 0 1 5.68e+03 World StepLimiter - 5796 3.03 -14.7 30.7 5.71e-14 0 1 5.68e+03 World StepLimiter - 5797 3.22 -15.7 30.7 5.72e-14 0 1 5.69e+03 World StepLimiter - 5798 3.42 -16.7 30.7 5.73e-14 0 1 5.69e+03 World StepLimiter - 5799 3.61 -17.6 30.8 5.74e-14 0 1 5.69e+03 World StepLimiter - 5800 3.81 -18.6 30.8 5.75e-14 0 1 5.69e+03 World StepLimiter - 5801 4.01 -19.6 30.8 5.76e-14 0 1 5.69e+03 World StepLimiter - 5802 4.2 -20.6 30.8 5.77e-14 0 1 5.69e+03 World StepLimiter - 5803 4.4 -21.6 30.8 5.78e-14 0 1 5.69e+03 World StepLimiter - 5804 4.59 -22.5 30.8 5.79e-14 0 1 5.69e+03 World StepLimiter - 5805 4.79 -23.5 30.8 5.8e-14 0 1 5.69e+03 World StepLimiter - 5806 4.98 -24.5 30.8 5.81e-14 0 1 5.69e+03 World StepLimiter - 5807 5.18 -25.5 30.8 5.82e-14 0 1 5.7e+03 World StepLimiter - 5808 5.37 -26.5 30.8 5.83e-14 0 1 5.7e+03 World StepLimiter - 5809 5.57 -27.4 30.8 5.84e-14 0 1 5.7e+03 World StepLimiter - 5810 5.76 -28.4 30.8 5.85e-14 0 1 5.7e+03 World StepLimiter - 5811 5.95 -29.4 30.8 5.86e-14 0 1 5.7e+03 World StepLimiter - 5812 6.15 -30.4 30.8 5.87e-14 0 1 5.7e+03 World StepLimiter - 5813 6.34 -31.4 30.8 5.88e-14 0 1 5.7e+03 World StepLimiter - 5814 6.54 -32.3 30.8 5.89e-14 0 1 5.7e+03 World StepLimiter - 5815 6.73 -33.3 30.8 5.9e-14 0 1 5.7e+03 World StepLimiter - 5816 6.92 -34.3 30.8 5.91e-14 0 1 5.7e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.124263065714neV MomDir: (0.19318399968043,-0.98114855594089,0.0052396032842377) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5817 6.92 -34.3 30.8 5.91e-14 0 0.00143 5.7e+03 Guide Transportation *** StepTooSmall *** - 5818 6.92 -34.3 30.8 5.91e-14 0 0 5.7e+03 World Transportation - 5819 6.72 -33.3 30.8 5.9e-14 0 1 5.71e+03 World StepLimiter - 5820 6.52 -32.3 30.9 5.89e-14 0 1 5.71e+03 World StepLimiter - 5821 6.32 -31.4 30.9 5.88e-14 0 1 5.71e+03 World StepLimiter - 5822 6.11 -30.4 30.9 5.87e-14 0 1 5.71e+03 World StepLimiter - 5823 5.91 -29.4 30.9 5.86e-14 0 1 5.71e+03 World StepLimiter - 5824 5.71 -28.4 30.9 5.85e-14 0 1 5.71e+03 World StepLimiter - 5825 5.5 -27.5 30.9 5.84e-14 0 1 5.71e+03 World StepLimiter - 5826 5.3 -26.5 30.9 5.83e-14 0 1 5.71e+03 World StepLimiter - 5827 5.09 -25.5 30.9 5.82e-14 0 1 5.71e+03 World StepLimiter - 5828 4.89 -24.5 30.9 5.81e-14 0 1 5.71e+03 World StepLimiter - 5829 4.69 -23.5 30.9 5.8e-14 0 1 5.72e+03 World StepLimiter - 5830 4.48 -22.6 30.9 5.79e-14 0 1 5.72e+03 World StepLimiter - 5831 4.28 -21.6 30.9 5.78e-14 0 1 5.72e+03 World StepLimiter - 5832 4.07 -20.6 30.9 5.77e-14 0 1 5.72e+03 World StepLimiter - 5833 3.87 -19.6 30.9 5.76e-14 0 1 5.72e+03 World StepLimiter - 5834 3.66 -18.6 30.9 5.75e-14 0 1 5.72e+03 World StepLimiter - 5835 3.46 -17.7 30.9 5.74e-14 0 1 5.72e+03 World StepLimiter - 5836 3.25 -16.7 30.9 5.73e-14 0 1 5.72e+03 World StepLimiter - 5837 3.05 -15.7 30.9 5.72e-14 0 1 5.72e+03 World StepLimiter - 5838 2.84 -14.7 30.9 5.71e-14 0 1 5.72e+03 World StepLimiter - 5839 2.63 -13.8 31 5.7e-14 0 1 5.73e+03 World StepLimiter - 5840 2.43 -12.8 31 5.69e-14 0 1 5.73e+03 World StepLimiter - 5841 2.22 -11.8 31 5.68e-14 0 1 5.73e+03 World StepLimiter - 5842 2.01 -10.8 31 5.67e-14 0 1 5.73e+03 World StepLimiter - 5843 1.81 -9.84 31 5.66e-14 0 1 5.73e+03 World StepLimiter - 5844 1.6 -8.86 31 5.65e-14 0 1 5.73e+03 World StepLimiter - 5845 1.39 -7.88 31 5.64e-14 0 1 5.73e+03 World StepLimiter - 5846 1.19 -6.9 31 5.63e-14 0 1 5.73e+03 World StepLimiter - 5847 0.979 -5.92 31 5.62e-14 0 1 5.73e+03 World StepLimiter - 5848 0.771 -4.95 31 5.61e-14 0 1 5.73e+03 World StepLimiter - 5849 0.563 -3.97 31 5.6e-14 0 1 5.74e+03 World StepLimiter - 5850 0.355 -2.99 31 5.59e-14 0 1 5.74e+03 World StepLimiter - 5851 0.147 -2.01 31 5.58e-14 0 1 5.74e+03 World StepLimiter - 5852 -0.0613 -1.03 31 5.57e-14 0 1 5.74e+03 World StepLimiter - 5853 -0.27 -0.0561 31 5.56e-14 0 1 5.74e+03 World StepLimiter - 5854 -0.479 0.922 31 5.55e-14 0 1 5.74e+03 World StepLimiter - 5855 -0.688 1.9 31 5.54e-14 0 1 5.74e+03 World StepLimiter - 5856 -0.897 2.88 31 5.53e-14 0 1 5.74e+03 World StepLimiter - 5857 -1.11 3.86 31 5.52e-14 0 1 5.74e+03 World StepLimiter - 5858 -1.32 4.83 31.1 5.51e-14 0 1 5.74e+03 World StepLimiter - 5859 -1.53 5.81 31.1 5.5e-14 0 1 5.75e+03 World StepLimiter - 5860 -1.74 6.79 31.1 5.49e-14 0 1 5.75e+03 World StepLimiter - 5861 -1.95 7.77 31.1 5.48e-14 0 1 5.75e+03 World StepLimiter - 5862 -2.16 8.74 31.1 5.47e-14 0 1 5.75e+03 World StepLimiter - 5863 -2.37 9.72 31.1 5.46e-14 0 1 5.75e+03 World StepLimiter - 5864 -2.58 10.7 31.1 5.45e-14 0 1 5.75e+03 World StepLimiter - 5865 -2.79 11.7 31.1 5.44e-14 0 1 5.75e+03 World StepLimiter - 5866 -3 12.7 31.1 5.43e-14 0 1 5.75e+03 World StepLimiter - 5867 -3.21 13.6 31.1 5.42e-14 0 1 5.75e+03 World StepLimiter - 5868 -3.42 14.6 31.1 5.41e-14 0 1 5.75e+03 World StepLimiter - 5869 -3.63 15.6 31.1 5.4e-14 0 1 5.76e+03 World StepLimiter - 5870 -3.85 16.6 31.1 5.39e-14 0 1 5.76e+03 World StepLimiter - 5871 -4.06 17.5 31.1 5.38e-14 0 1 5.76e+03 World StepLimiter - 5872 -4.27 18.5 31.1 5.37e-14 0 1 5.76e+03 World StepLimiter - 5873 -4.48 19.5 31.1 5.36e-14 0 1 5.76e+03 World StepLimiter - 5874 -4.7 20.5 31.1 5.35e-14 0 1 5.76e+03 World StepLimiter - 5875 -4.91 21.4 31.1 5.34e-14 0 1 5.76e+03 World StepLimiter - 5876 -5.12 22.4 31.2 5.33e-14 0 1 5.76e+03 World StepLimiter - 5877 -5.33 23.4 31.2 5.32e-14 0 1 5.76e+03 World StepLimiter - 5878 -5.55 24.4 31.2 5.31e-14 0 1 5.76e+03 World StepLimiter - 5879 -5.76 25.4 31.2 5.3e-14 0 1 5.77e+03 World StepLimiter - 5880 -5.98 26.3 31.2 5.29e-14 0 1 5.77e+03 World StepLimiter - 5881 -6.19 27.3 31.2 5.28e-14 0 1 5.77e+03 World StepLimiter - 5882 -6.4 28.3 31.2 5.27e-14 0 1 5.77e+03 World StepLimiter - 5883 -6.62 29.3 31.2 5.26e-14 0 1 5.77e+03 World StepLimiter - 5884 -6.83 30.2 31.2 5.25e-14 0 1 5.77e+03 World StepLimiter - 5885 -7.05 31.2 31.2 5.24e-14 0 1 5.77e+03 World StepLimiter - 5886 -7.26 32.2 31.2 5.23e-14 0 1 5.77e+03 World StepLimiter - 5887 -7.48 33.2 31.2 5.22e-14 0 1 5.77e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.104159088413neV MomDir: (-0.2156243273631,0.97646044320599,0.0055814248343417) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5888 -7.69 34.1 31.2 5.21e-14 0 0.997 5.77e+03 Guide Transportation *** StepTooSmall *** - 5889 -7.69 34.1 31.2 5.21e-14 0 0 5.77e+03 World Transportation - 5890 -7.47 33.2 31.2 5.22e-14 0 1 5.78e+03 World StepLimiter - 5891 -7.25 32.2 31.2 5.23e-14 0 1 5.78e+03 World StepLimiter - 5892 -7.02 31.2 31.2 5.24e-14 0 1 5.78e+03 World StepLimiter - 5893 -6.8 30.2 31.2 5.25e-14 0 1 5.78e+03 World StepLimiter - 5894 -6.58 29.3 31.2 5.26e-14 0 1 5.78e+03 World StepLimiter - 5895 -6.35 28.3 31.3 5.27e-14 0 1 5.78e+03 World StepLimiter - 5896 -6.13 27.3 31.3 5.28e-14 0 1 5.78e+03 World StepLimiter - 5897 -5.91 26.3 31.3 5.29e-14 0 1 5.78e+03 World StepLimiter - 5898 -5.69 25.4 31.3 5.3e-14 0 1 5.78e+03 World StepLimiter - 5899 -5.46 24.4 31.3 5.31e-14 0 1 5.78e+03 World StepLimiter - 5900 -5.24 23.4 31.3 5.32e-14 0 1 5.79e+03 World StepLimiter - 5901 -5.02 22.4 31.3 5.33e-14 0 1 5.79e+03 World StepLimiter - 5902 -4.8 21.5 31.3 5.34e-14 0 1 5.79e+03 World StepLimiter - 5903 -4.58 20.5 31.3 5.35e-14 0 1 5.79e+03 World StepLimiter - 5904 -4.36 19.5 31.3 5.36e-14 0 1 5.79e+03 World StepLimiter - 5905 -4.14 18.5 31.3 5.37e-14 0 1 5.79e+03 World StepLimiter - 5906 -3.92 17.6 31.3 5.38e-14 0 1 5.79e+03 World StepLimiter - 5907 -3.7 16.6 31.3 5.39e-14 0 1 5.79e+03 World StepLimiter - 5908 -3.48 15.6 31.3 5.4e-14 0 1 5.79e+03 World StepLimiter - 5909 -3.26 14.6 31.3 5.41e-14 0 1 5.79e+03 World StepLimiter - 5910 -3.04 13.7 31.3 5.42e-14 0 1 5.8e+03 World StepLimiter - 5911 -2.82 12.7 31.3 5.43e-14 0 1 5.8e+03 World StepLimiter - 5912 -2.6 11.7 31.3 5.44e-14 0 1 5.8e+03 World StepLimiter - 5913 -2.38 10.7 31.4 5.45e-14 0 1 5.8e+03 World StepLimiter - 5914 -2.16 9.76 31.4 5.46e-14 0 1 5.8e+03 World StepLimiter - 5915 -1.94 8.79 31.4 5.47e-14 0 1 5.8e+03 World StepLimiter - 5916 -1.72 7.81 31.4 5.48e-14 0 1 5.8e+03 World StepLimiter - 5917 -1.5 6.84 31.4 5.49e-14 0 1 5.8e+03 World StepLimiter - 5918 -1.29 5.86 31.4 5.5e-14 0 1 5.8e+03 World StepLimiter - 5919 -1.07 4.89 31.4 5.51e-14 0 1 5.8e+03 World StepLimiter - 5920 -0.85 3.91 31.4 5.52e-14 0 1 5.81e+03 World StepLimiter - 5921 -0.633 2.93 31.4 5.53e-14 0 1 5.81e+03 World StepLimiter - 5922 -0.415 1.96 31.4 5.54e-14 0 1 5.81e+03 World StepLimiter - 5923 -0.198 0.981 31.4 5.55e-14 0 1 5.81e+03 World StepLimiter - 5924 0.0187 0.00483 31.4 5.56e-14 0 1 5.81e+03 World StepLimiter - 5925 0.235 -0.971 31.4 5.57e-14 0 1 5.81e+03 World StepLimiter - 5926 0.452 -1.95 31.4 5.58e-14 0 1 5.81e+03 World StepLimiter - 5927 0.668 -2.92 31.4 5.59e-14 0 1 5.81e+03 World StepLimiter - 5928 0.884 -3.9 31.4 5.6e-14 0 1 5.81e+03 World StepLimiter - 5929 1.1 -4.88 31.4 5.61e-14 0 1 5.81e+03 World StepLimiter - 5930 1.32 -5.85 31.4 5.62e-14 0 1 5.82e+03 World StepLimiter - 5931 1.53 -6.83 31.4 5.63e-14 0 1 5.82e+03 World StepLimiter - 5932 1.75 -7.81 31.5 5.64e-14 0 1 5.82e+03 World StepLimiter - 5933 1.96 -8.78 31.5 5.65e-14 0 1 5.82e+03 World StepLimiter - 5934 2.18 -9.76 31.5 5.66e-14 0 1 5.82e+03 World StepLimiter - 5935 2.39 -10.7 31.5 5.67e-14 0 1 5.82e+03 World StepLimiter - 5936 2.61 -11.7 31.5 5.68e-14 0 1 5.82e+03 World StepLimiter - 5937 2.82 -12.7 31.5 5.69e-14 0 1 5.82e+03 World StepLimiter - 5938 3.04 -13.7 31.5 5.7e-14 0 1 5.82e+03 World StepLimiter - 5939 3.25 -14.6 31.5 5.71e-14 0 1 5.82e+03 World StepLimiter - 5940 3.46 -15.6 31.5 5.72e-14 0 1 5.83e+03 World StepLimiter - 5941 3.68 -16.6 31.5 5.73e-14 0 1 5.83e+03 World StepLimiter - 5942 3.89 -17.6 31.5 5.74e-14 0 1 5.83e+03 World StepLimiter - 5943 4.1 -18.6 31.5 5.75e-14 0 1 5.83e+03 World StepLimiter - 5944 4.32 -19.5 31.5 5.76e-14 0 1 5.83e+03 World StepLimiter - 5945 4.53 -20.5 31.5 5.77e-14 0 1 5.83e+03 World StepLimiter - 5946 4.74 -21.5 31.5 5.78e-14 0 1 5.83e+03 World StepLimiter - 5947 4.95 -22.5 31.5 5.79e-14 0 1 5.83e+03 World StepLimiter - 5948 5.17 -23.4 31.5 5.8e-14 0 1 5.83e+03 World StepLimiter - 5949 5.38 -24.4 31.5 5.81e-14 0 1 5.83e+03 World StepLimiter - 5950 5.59 -25.4 31.6 5.82e-14 0 1 5.84e+03 World StepLimiter - 5951 5.8 -26.4 31.6 5.83e-14 0 1 5.84e+03 World StepLimiter - 5952 6.01 -27.3 31.6 5.84e-14 0 1 5.84e+03 World StepLimiter - 5953 6.23 -28.3 31.6 5.85e-14 0 1 5.84e+03 World StepLimiter - 5954 6.44 -29.3 31.6 5.86e-14 0 1 5.84e+03 World StepLimiter - 5955 6.65 -30.3 31.6 5.87e-14 0 1 5.84e+03 World StepLimiter - 5956 6.86 -31.3 31.6 5.88e-14 0 1 5.84e+03 World StepLimiter - 5957 7.07 -32.2 31.6 5.89e-14 0 1 5.84e+03 World StepLimiter - 5958 7.28 -33.2 31.6 5.9e-14 0 1 5.84e+03 World StepLimiter - 5959 7.49 -34.2 31.6 5.91e-14 0 1 5.84e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.111997645169neV MomDir: (0.21028716429911,-0.9776256182159,0.0052401468507469) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 5960 7.49 -34.2 31.6 5.91e-14 0 0.00129 5.84e+03 Guide Transportation *** StepTooSmall *** - 5961 7.49 -34.2 31.6 5.91e-14 0 0 5.84e+03 World Transportation - 5962 7.27 -33.2 31.6 5.9e-14 0 1 5.85e+03 World StepLimiter - 5963 7.06 -32.2 31.6 5.89e-14 0 1 5.85e+03 World StepLimiter - 5964 6.84 -31.3 31.6 5.88e-14 0 1 5.85e+03 World StepLimiter - 5965 6.62 -30.3 31.6 5.87e-14 0 1 5.85e+03 World StepLimiter - 5966 6.4 -29.3 31.6 5.86e-14 0 1 5.85e+03 World StepLimiter - 5967 6.18 -28.3 31.6 5.85e-14 0 1 5.85e+03 World StepLimiter - 5968 5.96 -27.4 31.6 5.84e-14 0 1 5.85e+03 World StepLimiter - 5969 5.74 -26.4 31.6 5.83e-14 0 1 5.85e+03 World StepLimiter - 5970 5.52 -25.4 31.6 5.82e-14 0 1 5.85e+03 World StepLimiter - 5971 5.3 -24.4 31.7 5.81e-14 0 1 5.85e+03 World StepLimiter - 5972 5.08 -23.5 31.7 5.8e-14 0 1 5.86e+03 World StepLimiter - 5973 4.86 -22.5 31.7 5.79e-14 0 1 5.86e+03 World StepLimiter - 5974 4.64 -21.5 31.7 5.78e-14 0 1 5.86e+03 World StepLimiter - 5975 4.42 -20.5 31.7 5.77e-14 0 1 5.86e+03 World StepLimiter - 5976 4.2 -19.6 31.7 5.76e-14 0 1 5.86e+03 World StepLimiter - 5977 3.98 -18.6 31.7 5.75e-14 0 1 5.86e+03 World StepLimiter - 5978 3.76 -17.6 31.7 5.74e-14 0 1 5.86e+03 World StepLimiter - 5979 3.54 -16.6 31.7 5.73e-14 0 1 5.86e+03 World StepLimiter - 5980 3.32 -15.7 31.7 5.72e-14 0 1 5.86e+03 World StepLimiter - 5981 3.1 -14.7 31.7 5.71e-14 0 1 5.86e+03 World StepLimiter - 5982 2.88 -13.7 31.7 5.7e-14 0 1 5.87e+03 World StepLimiter - 5983 2.65 -12.7 31.7 5.69e-14 0 1 5.87e+03 World StepLimiter - 5984 2.43 -11.8 31.7 5.68e-14 0 1 5.87e+03 World StepLimiter - 5985 2.21 -10.8 31.7 5.67e-14 0 1 5.87e+03 World StepLimiter - 5986 1.99 -9.8 31.7 5.66e-14 0 1 5.87e+03 World StepLimiter - 5987 1.77 -8.83 31.7 5.65e-14 0 1 5.87e+03 World StepLimiter - 5988 1.54 -7.85 31.7 5.64e-14 0 1 5.87e+03 World StepLimiter - 5989 1.32 -6.88 31.7 5.63e-14 0 1 5.87e+03 World StepLimiter - 5990 1.1 -5.9 31.8 5.62e-14 0 1 5.87e+03 World StepLimiter - 5991 0.873 -4.93 31.8 5.61e-14 0 1 5.87e+03 World StepLimiter - 5992 0.649 -3.95 31.8 5.6e-14 0 1 5.88e+03 World StepLimiter - 5993 0.425 -2.98 31.8 5.59e-14 0 1 5.88e+03 World StepLimiter - 5994 0.201 -2 31.8 5.58e-14 0 1 5.88e+03 World StepLimiter - 5995 -0.0231 -1.03 31.8 5.57e-14 0 1 5.88e+03 World StepLimiter - 5996 -0.248 -0.0558 31.8 5.56e-14 0 1 5.88e+03 World StepLimiter - 5997 -0.472 0.919 31.8 5.55e-14 0 1 5.88e+03 World StepLimiter - 5998 -0.697 1.89 31.8 5.54e-14 0 1 5.88e+03 World StepLimiter - 5999 -0.922 2.87 31.8 5.53e-14 0 1 5.88e+03 World StepLimiter - 6000 -1.15 3.84 31.8 5.52e-14 0 1 5.88e+03 World StepLimiter - 6001 -1.37 4.82 31.8 5.51e-14 0 1 5.88e+03 World StepLimiter - 6002 -1.6 5.79 31.8 5.5e-14 0 1 5.89e+03 World StepLimiter - 6003 -1.82 6.76 31.8 5.49e-14 0 1 5.89e+03 World StepLimiter - 6004 -2.05 7.74 31.8 5.48e-14 0 1 5.89e+03 World StepLimiter - 6005 -2.28 8.71 31.8 5.47e-14 0 1 5.89e+03 World StepLimiter - 6006 -2.5 9.69 31.8 5.46e-14 0 1 5.89e+03 World StepLimiter - 6007 -2.73 10.7 31.8 5.45e-14 0 1 5.89e+03 World StepLimiter - 6008 -2.96 11.6 31.8 5.44e-14 0 1 5.89e+03 World StepLimiter - 6009 -3.18 12.6 31.9 5.43e-14 0 1 5.89e+03 World StepLimiter - 6010 -3.41 13.6 31.9 5.42e-14 0 1 5.89e+03 World StepLimiter - 6011 -3.64 14.6 31.9 5.41e-14 0 1 5.89e+03 World StepLimiter - 6012 -3.87 15.5 31.9 5.4e-14 0 1 5.9e+03 World StepLimiter - 6013 -4.09 16.5 31.9 5.39e-14 0 1 5.9e+03 World StepLimiter - 6014 -4.32 17.5 31.9 5.38e-14 0 1 5.9e+03 World StepLimiter - 6015 -4.55 18.5 31.9 5.37e-14 0 1 5.9e+03 World StepLimiter - 6016 -4.78 19.4 31.9 5.36e-14 0 1 5.9e+03 World StepLimiter - 6017 -5.01 20.4 31.9 5.35e-14 0 1 5.9e+03 World StepLimiter - 6018 -5.24 21.4 31.9 5.34e-14 0 1 5.9e+03 World StepLimiter - 6019 -5.47 22.3 31.9 5.33e-14 0 1 5.9e+03 World StepLimiter - 6020 -5.7 23.3 31.9 5.32e-14 0 1 5.9e+03 World StepLimiter - 6021 -5.93 24.3 31.9 5.31e-14 0 1 5.9e+03 World StepLimiter - 6022 -6.16 25.3 31.9 5.3e-14 0 1 5.91e+03 World StepLimiter - 6023 -6.39 26.2 31.9 5.29e-14 0 1 5.91e+03 World StepLimiter - 6024 -6.62 27.2 31.9 5.28e-14 0 1 5.91e+03 World StepLimiter - 6025 -6.85 28.2 31.9 5.27e-14 0 1 5.91e+03 World StepLimiter - 6026 -7.08 29.2 31.9 5.26e-14 0 1 5.91e+03 World StepLimiter - 6027 -7.31 30.1 32 5.25e-14 0 1 5.91e+03 World StepLimiter - 6028 -7.54 31.1 32 5.24e-14 0 1 5.91e+03 World StepLimiter - 6029 -7.77 32.1 32 5.23e-14 0 1 5.91e+03 World StepLimiter - 6030 -8 33 32 5.22e-14 0 1 5.91e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.117102558919neV MomDir: (-0.23194743328147,0.97271231287968,0.0055807317078037) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6031 -8.23 34 32 5.21e-14 0 0.997 5.91e+03 Guide Transportation *** StepTooSmall *** - 6032 -8.23 34 32 5.21e-14 0 0 5.91e+03 World Transportation - 6033 -8 33 32 5.22e-14 0 1 5.92e+03 World StepLimiter - 6034 -7.76 32.1 32 5.23e-14 0 1 5.92e+03 World StepLimiter - 6035 -7.52 31.1 32 5.24e-14 0 1 5.92e+03 World StepLimiter - 6036 -7.28 30.1 32 5.25e-14 0 1 5.92e+03 World StepLimiter - 6037 -7.04 29.2 32 5.26e-14 0 1 5.92e+03 World StepLimiter - 6038 -6.81 28.2 32 5.27e-14 0 1 5.92e+03 World StepLimiter - 6039 -6.57 27.2 32 5.28e-14 0 1 5.92e+03 World StepLimiter - 6040 -6.33 26.2 32 5.29e-14 0 1 5.92e+03 World StepLimiter - 6041 -6.1 25.3 32 5.3e-14 0 1 5.92e+03 World StepLimiter - 6042 -5.86 24.3 32 5.31e-14 0 1 5.92e+03 World StepLimiter - 6043 -5.62 23.3 32 5.32e-14 0 1 5.93e+03 World StepLimiter - 6044 -5.39 22.4 32 5.33e-14 0 1 5.93e+03 World StepLimiter - 6045 -5.15 21.4 32 5.34e-14 0 1 5.93e+03 World StepLimiter - 6046 -4.92 20.4 32.1 5.35e-14 0 1 5.93e+03 World StepLimiter - 6047 -4.68 19.4 32.1 5.36e-14 0 1 5.93e+03 World StepLimiter - 6048 -4.45 18.5 32.1 5.37e-14 0 1 5.93e+03 World StepLimiter - 6049 -4.21 17.5 32.1 5.38e-14 0 1 5.93e+03 World StepLimiter - 6050 -3.98 16.5 32.1 5.39e-14 0 1 5.93e+03 World StepLimiter - 6051 -3.74 15.6 32.1 5.4e-14 0 1 5.93e+03 World StepLimiter - 6052 -3.51 14.6 32.1 5.41e-14 0 1 5.93e+03 World StepLimiter - 6053 -3.27 13.6 32.1 5.42e-14 0 1 5.94e+03 World StepLimiter - 6054 -3.04 12.6 32.1 5.43e-14 0 1 5.94e+03 World StepLimiter - 6055 -2.81 11.7 32.1 5.44e-14 0 1 5.94e+03 World StepLimiter - 6056 -2.57 10.7 32.1 5.45e-14 0 1 5.94e+03 World StepLimiter - 6057 -2.34 9.72 32.1 5.46e-14 0 1 5.94e+03 World StepLimiter - 6058 -2.11 8.75 32.1 5.47e-14 0 1 5.94e+03 World StepLimiter - 6059 -1.87 7.78 32.1 5.48e-14 0 1 5.94e+03 World StepLimiter - 6060 -1.64 6.81 32.1 5.49e-14 0 1 5.94e+03 World StepLimiter - 6061 -1.41 5.83 32.1 5.5e-14 0 1 5.94e+03 World StepLimiter - 6062 -1.18 4.86 32.1 5.51e-14 0 1 5.94e+03 World StepLimiter - 6063 -0.946 3.89 32.1 5.52e-14 0 1 5.95e+03 World StepLimiter - 6064 -0.714 2.91 32.2 5.53e-14 0 1 5.95e+03 World StepLimiter - 6065 -0.483 1.94 32.2 5.54e-14 0 1 5.95e+03 World StepLimiter - 6066 -0.251 0.969 32.2 5.55e-14 0 1 5.95e+03 World StepLimiter - 6067 -0.0202 -0.00426 32.2 5.56e-14 0 1 5.95e+03 World StepLimiter - 6068 0.211 -0.977 32.2 5.57e-14 0 1 5.95e+03 World StepLimiter - 6069 0.441 -1.95 32.2 5.58e-14 0 1 5.95e+03 World StepLimiter - 6070 0.672 -2.92 32.2 5.59e-14 0 1 5.95e+03 World StepLimiter - 6071 0.902 -3.9 32.2 5.6e-14 0 1 5.95e+03 World StepLimiter - 6072 1.13 -4.87 32.2 5.61e-14 0 1 5.95e+03 World StepLimiter - 6073 1.36 -5.84 32.2 5.62e-14 0 1 5.96e+03 World StepLimiter - 6074 1.59 -6.82 32.2 5.63e-14 0 1 5.96e+03 World StepLimiter - 6075 1.82 -7.79 32.2 5.64e-14 0 1 5.96e+03 World StepLimiter - 6076 2.05 -8.76 32.2 5.65e-14 0 1 5.96e+03 World StepLimiter - 6077 2.28 -9.74 32.2 5.66e-14 0 1 5.96e+03 World StepLimiter - 6078 2.51 -10.7 32.2 5.67e-14 0 1 5.96e+03 World StepLimiter - 6079 2.74 -11.7 32.2 5.68e-14 0 1 5.96e+03 World StepLimiter - 6080 2.96 -12.7 32.2 5.69e-14 0 1 5.96e+03 World StepLimiter - 6081 3.19 -13.6 32.2 5.7e-14 0 1 5.96e+03 World StepLimiter - 6082 3.42 -14.6 32.2 5.71e-14 0 1 5.96e+03 World StepLimiter - 6083 3.65 -15.6 32.3 5.72e-14 0 1 5.97e+03 World StepLimiter - 6084 3.88 -16.6 32.3 5.73e-14 0 1 5.97e+03 World StepLimiter - 6085 4.1 -17.5 32.3 5.74e-14 0 1 5.97e+03 World StepLimiter - 6086 4.33 -18.5 32.3 5.75e-14 0 1 5.97e+03 World StepLimiter - 6087 4.56 -19.5 32.3 5.76e-14 0 1 5.97e+03 World StepLimiter - 6088 4.78 -20.4 32.3 5.77e-14 0 1 5.97e+03 World StepLimiter - 6089 5.01 -21.4 32.3 5.78e-14 0 1 5.97e+03 World StepLimiter - 6090 5.24 -22.4 32.3 5.79e-14 0 1 5.97e+03 World StepLimiter - 6091 5.46 -23.4 32.3 5.8e-14 0 1 5.97e+03 World StepLimiter - 6092 5.69 -24.3 32.3 5.81e-14 0 1 5.97e+03 World StepLimiter - 6093 5.92 -25.3 32.3 5.82e-14 0 1 5.98e+03 World StepLimiter - 6094 6.14 -26.3 32.3 5.83e-14 0 1 5.98e+03 World StepLimiter - 6095 6.37 -27.3 32.3 5.84e-14 0 1 5.98e+03 World StepLimiter - 6096 6.59 -28.2 32.3 5.85e-14 0 1 5.98e+03 World StepLimiter - 6097 6.82 -29.2 32.3 5.86e-14 0 1 5.98e+03 World StepLimiter - 6098 7.04 -30.2 32.3 5.87e-14 0 1 5.98e+03 World StepLimiter - 6099 7.27 -31.2 32.3 5.88e-14 0 1 5.98e+03 World StepLimiter - 6100 7.49 -32.1 32.3 5.89e-14 0 1 5.98e+03 World StepLimiter - 6101 7.71 -33.1 32.3 5.9e-14 0 1 5.98e+03 World StepLimiter - 6102 7.94 -34.1 32.4 5.91e-14 0 1 5.98e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.101624646212neV MomDir: (0.22398852861926,-0.97457769063763,0.0052406066828862) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6103 7.94 -34.1 32.4 5.91e-14 0 0.00102 5.98e+03 Guide Transportation *** StepTooSmall *** - 6104 7.94 -34.1 32.4 5.91e-14 0 0 5.98e+03 World Transportation - 6105 7.71 -33.1 32.4 5.9e-14 0 1 5.99e+03 World StepLimiter - 6106 7.48 -32.1 32.4 5.89e-14 0 1 5.99e+03 World StepLimiter - 6107 7.25 -31.2 32.4 5.88e-14 0 1 5.99e+03 World StepLimiter - 6108 7.02 -30.2 32.4 5.87e-14 0 1 5.99e+03 World StepLimiter - 6109 6.79 -29.2 32.4 5.86e-14 0 1 5.99e+03 World StepLimiter - 6110 6.56 -28.2 32.4 5.85e-14 0 1 5.99e+03 World StepLimiter - 6111 6.33 -27.3 32.4 5.84e-14 0 1 5.99e+03 World StepLimiter - 6112 6.1 -26.3 32.4 5.83e-14 0 1 5.99e+03 World StepLimiter - 6113 5.86 -25.3 32.4 5.82e-14 0 1 5.99e+03 World StepLimiter - 6114 5.63 -24.4 32.4 5.81e-14 0 1 5.99e+03 World StepLimiter - 6115 5.4 -23.4 32.4 5.8e-14 0 1 6e+03 World StepLimiter - 6116 5.17 -22.4 32.4 5.79e-14 0 1 6e+03 World StepLimiter - 6117 4.94 -21.4 32.4 5.78e-14 0 1 6e+03 World StepLimiter - 6118 4.7 -20.5 32.4 5.77e-14 0 1 6e+03 World StepLimiter - 6119 4.47 -19.5 32.4 5.76e-14 0 1 6e+03 World StepLimiter - 6120 4.24 -18.5 32.4 5.75e-14 0 1 6e+03 World StepLimiter - 6121 4.01 -17.5 32.4 5.74e-14 0 1 6e+03 World StepLimiter - 6122 3.77 -16.6 32.4 5.73e-14 0 1 6e+03 World StepLimiter - 6123 3.54 -15.6 32.5 5.72e-14 0 1 6e+03 World StepLimiter - 6124 3.31 -14.6 32.5 5.71e-14 0 1 6e+03 World StepLimiter - 6125 3.07 -13.7 32.5 5.7e-14 0 1 6.01e+03 World StepLimiter - 6126 2.84 -12.7 32.5 5.69e-14 0 1 6.01e+03 World StepLimiter - 6127 2.6 -11.7 32.5 5.68e-14 0 1 6.01e+03 World StepLimiter - 6128 2.37 -10.7 32.5 5.67e-14 0 1 6.01e+03 World StepLimiter - 6129 2.14 -9.77 32.5 5.66e-14 0 1 6.01e+03 World StepLimiter - 6130 1.9 -8.8 32.5 5.65e-14 0 1 6.01e+03 World StepLimiter - 6131 1.67 -7.83 32.5 5.64e-14 0 1 6.01e+03 World StepLimiter - 6132 1.43 -6.86 32.5 5.63e-14 0 1 6.01e+03 World StepLimiter - 6133 1.2 -5.88 32.5 5.62e-14 0 1 6.01e+03 World StepLimiter - 6134 0.96 -4.91 32.5 5.61e-14 0 1 6.01e+03 World StepLimiter - 6135 0.724 -3.94 32.5 5.6e-14 0 1 6.02e+03 World StepLimiter - 6136 0.488 -2.97 32.5 5.59e-14 0 1 6.02e+03 World StepLimiter - 6137 0.252 -2 32.5 5.58e-14 0 1 6.02e+03 World StepLimiter - 6138 0.0151 -1.02 32.5 5.57e-14 0 1 6.02e+03 World StepLimiter - 6139 -0.222 -0.053 32.5 5.56e-14 0 1 6.02e+03 World StepLimiter - 6140 -0.458 0.919 32.5 5.55e-14 0 1 6.02e+03 World StepLimiter - 6141 -0.696 1.89 32.6 5.54e-14 0 1 6.02e+03 World StepLimiter - 6142 -0.933 2.86 32.6 5.53e-14 0 1 6.02e+03 World StepLimiter - 6143 -1.17 3.83 32.6 5.52e-14 0 1 6.02e+03 World StepLimiter - 6144 -1.41 4.8 32.6 5.51e-14 0 1 6.02e+03 World StepLimiter - 6145 -1.65 5.78 32.6 5.5e-14 0 1 6.03e+03 World StepLimiter - 6146 -1.88 6.75 32.6 5.49e-14 0 1 6.03e+03 World StepLimiter - 6147 -2.12 7.72 32.6 5.48e-14 0 1 6.03e+03 World StepLimiter - 6148 -2.36 8.69 32.6 5.47e-14 0 1 6.03e+03 World StepLimiter - 6149 -2.6 9.66 32.6 5.46e-14 0 1 6.03e+03 World StepLimiter - 6150 -2.84 10.6 32.6 5.45e-14 0 1 6.03e+03 World StepLimiter - 6151 -3.08 11.6 32.6 5.44e-14 0 1 6.03e+03 World StepLimiter - 6152 -3.32 12.6 32.6 5.43e-14 0 1 6.03e+03 World StepLimiter - 6153 -3.56 13.5 32.6 5.42e-14 0 1 6.03e+03 World StepLimiter - 6154 -3.8 14.5 32.6 5.41e-14 0 1 6.03e+03 World StepLimiter - 6155 -4.04 15.5 32.6 5.4e-14 0 1 6.04e+03 World StepLimiter - 6156 -4.28 16.5 32.6 5.39e-14 0 1 6.04e+03 World StepLimiter - 6157 -4.52 17.4 32.6 5.38e-14 0 1 6.04e+03 World StepLimiter - 6158 -4.76 18.4 32.6 5.37e-14 0 1 6.04e+03 World StepLimiter - 6159 -5 19.4 32.6 5.36e-14 0 1 6.04e+03 World StepLimiter - 6160 -5.24 20.3 32.7 5.35e-14 0 1 6.04e+03 World StepLimiter - 6161 -5.48 21.3 32.7 5.34e-14 0 1 6.04e+03 World StepLimiter - 6162 -5.72 22.3 32.7 5.33e-14 0 1 6.04e+03 World StepLimiter - 6163 -5.97 23.2 32.7 5.32e-14 0 1 6.04e+03 World StepLimiter - 6164 -6.21 24.2 32.7 5.31e-14 0 1 6.04e+03 World StepLimiter - 6165 -6.45 25.2 32.7 5.3e-14 0 1 6.05e+03 World StepLimiter - 6166 -6.69 26.2 32.7 5.29e-14 0 1 6.05e+03 World StepLimiter - 6167 -6.94 27.1 32.7 5.28e-14 0 1 6.05e+03 World StepLimiter - 6168 -7.18 28.1 32.7 5.27e-14 0 1 6.05e+03 World StepLimiter - 6169 -7.42 29.1 32.7 5.26e-14 0 1 6.05e+03 World StepLimiter - 6170 -7.67 30 32.7 5.25e-14 0 1 6.05e+03 World StepLimiter - 6171 -7.91 31 32.7 5.24e-14 0 1 6.05e+03 World StepLimiter - 6172 -8.15 32 32.7 5.23e-14 0 1 6.05e+03 World StepLimiter - 6173 -8.4 32.9 32.7 5.22e-14 0 1 6.05e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.127506256521neV MomDir: (-0.24454682788619,0.96962142644451,0.0055801747739842) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6174 -8.64 33.9 32.7 5.21e-14 0 0.998 6.05e+03 Guide Transportation *** StepTooSmall *** - 6175 -8.64 33.9 32.7 5.21e-14 0 0 6.05e+03 World Transportation - 6176 -8.39 32.9 32.7 5.22e-14 0 1 6.06e+03 World StepLimiter - 6177 -8.14 32 32.7 5.23e-14 0 1 6.06e+03 World StepLimiter - 6178 -7.9 31 32.7 5.24e-14 0 1 6.06e+03 World StepLimiter - 6179 -7.65 30 32.8 5.25e-14 0 1 6.06e+03 World StepLimiter - 6180 -7.4 29.1 32.8 5.26e-14 0 1 6.06e+03 World StepLimiter - 6181 -7.15 28.1 32.8 5.27e-14 0 1 6.06e+03 World StepLimiter - 6182 -6.9 27.1 32.8 5.28e-14 0 1 6.06e+03 World StepLimiter - 6183 -6.66 26.2 32.8 5.29e-14 0 1 6.06e+03 World StepLimiter - 6184 -6.41 25.2 32.8 5.3e-14 0 1 6.06e+03 World StepLimiter - 6185 -6.16 24.2 32.8 5.31e-14 0 1 6.06e+03 World StepLimiter - 6186 -5.91 23.3 32.8 5.32e-14 0 1 6.07e+03 World StepLimiter - 6187 -5.67 22.3 32.8 5.33e-14 0 1 6.07e+03 World StepLimiter - 6188 -5.42 21.3 32.8 5.34e-14 0 1 6.07e+03 World StepLimiter - 6189 -5.18 20.4 32.8 5.35e-14 0 1 6.07e+03 World StepLimiter - 6190 -4.93 19.4 32.8 5.36e-14 0 1 6.07e+03 World StepLimiter - 6191 -4.68 18.4 32.8 5.37e-14 0 1 6.07e+03 World StepLimiter - 6192 -4.44 17.4 32.8 5.38e-14 0 1 6.07e+03 World StepLimiter - 6193 -4.19 16.5 32.8 5.39e-14 0 1 6.07e+03 World StepLimiter - 6194 -3.95 15.5 32.8 5.4e-14 0 1 6.07e+03 World StepLimiter - 6195 -3.7 14.5 32.8 5.41e-14 0 1 6.07e+03 World StepLimiter - 6196 -3.46 13.6 32.8 5.42e-14 0 1 6.08e+03 World StepLimiter - 6197 -3.21 12.6 32.9 5.43e-14 0 1 6.08e+03 World StepLimiter - 6198 -2.97 11.6 32.9 5.44e-14 0 1 6.08e+03 World StepLimiter - 6199 -2.73 10.7 32.9 5.45e-14 0 1 6.08e+03 World StepLimiter - 6200 -2.48 9.69 32.9 5.46e-14 0 1 6.08e+03 World StepLimiter - 6201 -2.24 8.72 32.9 5.47e-14 0 1 6.08e+03 World StepLimiter - 6202 -2 7.75 32.9 5.48e-14 0 1 6.08e+03 World StepLimiter - 6203 -1.75 6.78 32.9 5.49e-14 0 1 6.08e+03 World StepLimiter - 6204 -1.51 5.81 32.9 5.5e-14 0 1 6.08e+03 World StepLimiter - 6205 -1.27 4.84 32.9 5.51e-14 0 1 6.08e+03 World StepLimiter - 6206 -1.03 3.87 32.9 5.52e-14 0 1 6.09e+03 World StepLimiter - 6207 -0.783 2.9 32.9 5.53e-14 0 1 6.09e+03 World StepLimiter - 6208 -0.542 1.93 32.9 5.54e-14 0 1 6.09e+03 World StepLimiter - 6209 -0.3 0.956 32.9 5.55e-14 0 1 6.09e+03 World StepLimiter - 6210 -0.0585 -0.0142 32.9 5.56e-14 0 1 6.09e+03 World StepLimiter - 6211 0.183 -0.985 32.9 5.57e-14 0 1 6.09e+03 World StepLimiter - 6212 0.424 -1.96 32.9 5.58e-14 0 1 6.09e+03 World StepLimiter - 6213 0.665 -2.93 32.9 5.59e-14 0 1 6.09e+03 World StepLimiter - 6214 0.905 -3.9 32.9 5.6e-14 0 1 6.09e+03 World StepLimiter - 6215 1.15 -4.87 33 5.61e-14 0 1 6.09e+03 World StepLimiter - 6216 1.39 -5.84 33 5.62e-14 0 1 6.1e+03 World StepLimiter - 6217 1.63 -6.81 33 5.63e-14 0 1 6.1e+03 World StepLimiter - 6218 1.87 -7.78 33 5.64e-14 0 1 6.1e+03 World StepLimiter - 6219 2.1 -8.75 33 5.65e-14 0 1 6.1e+03 World StepLimiter - 6220 2.34 -9.72 33 5.66e-14 0 1 6.1e+03 World StepLimiter - 6221 2.58 -10.7 33 5.67e-14 0 1 6.1e+03 World StepLimiter - 6222 2.82 -11.7 33 5.68e-14 0 1 6.1e+03 World StepLimiter - 6223 3.06 -12.6 33 5.69e-14 0 1 6.1e+03 World StepLimiter - 6224 3.3 -13.6 33 5.7e-14 0 1 6.1e+03 World StepLimiter - 6225 3.54 -14.6 33 5.71e-14 0 1 6.1e+03 World StepLimiter - 6226 3.78 -15.5 33 5.72e-14 0 1 6.11e+03 World StepLimiter - 6227 4.01 -16.5 33 5.73e-14 0 1 6.11e+03 World StepLimiter - 6228 4.25 -17.5 33 5.74e-14 0 1 6.11e+03 World StepLimiter - 6229 4.49 -18.5 33 5.75e-14 0 1 6.11e+03 World StepLimiter - 6230 4.73 -19.4 33 5.76e-14 0 1 6.11e+03 World StepLimiter - 6231 4.96 -20.4 33 5.77e-14 0 1 6.11e+03 World StepLimiter - 6232 5.2 -21.4 33 5.78e-14 0 1 6.11e+03 World StepLimiter - 6233 5.44 -22.3 33 5.79e-14 0 1 6.11e+03 World StepLimiter - 6234 5.67 -23.3 33.1 5.8e-14 0 1 6.11e+03 World StepLimiter - 6235 5.91 -24.3 33.1 5.81e-14 0 1 6.11e+03 World StepLimiter - 6236 6.14 -25.3 33.1 5.82e-14 0 1 6.12e+03 World StepLimiter - 6237 6.38 -26.2 33.1 5.83e-14 0 1 6.12e+03 World StepLimiter - 6238 6.62 -27.2 33.1 5.84e-14 0 1 6.12e+03 World StepLimiter - 6239 6.85 -28.2 33.1 5.85e-14 0 1 6.12e+03 World StepLimiter - 6240 7.09 -29.2 33.1 5.86e-14 0 1 6.12e+03 World StepLimiter - 6241 7.32 -30.1 33.1 5.87e-14 0 1 6.12e+03 World StepLimiter - 6242 7.56 -31.1 33.1 5.88e-14 0 1 6.12e+03 World StepLimiter - 6243 7.79 -32.1 33.1 5.89e-14 0 1 6.12e+03 World StepLimiter - 6244 8.03 -33 33.1 5.9e-14 0 1 6.12e+03 World StepLimiter - 6245 8.26 -34 33.1 5.91e-14 0 1 6.12e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.093792737517neV MomDir: (0.23411075099784,-0.97219580778202,0.0052409539494206) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6246 8.26 -34 33.1 5.91e-14 0 0.000628 6.12e+03 Guide Transportation *** StepTooSmall *** - 6247 8.26 -34 33.1 5.91e-14 0 0 6.12e+03 World Transportation - 6248 8.02 -33 33.1 5.9e-14 0 1 6.13e+03 World StepLimiter - 6249 7.78 -32.1 33.1 5.89e-14 0 1 6.13e+03 World StepLimiter - 6250 7.55 -31.1 33.1 5.88e-14 0 1 6.13e+03 World StepLimiter - 6251 7.31 -30.1 33.1 5.87e-14 0 1 6.13e+03 World StepLimiter - 6252 7.07 -29.2 33.1 5.86e-14 0 1 6.13e+03 World StepLimiter - 6253 6.83 -28.2 33.1 5.85e-14 0 1 6.13e+03 World StepLimiter - 6254 6.59 -27.2 33.1 5.84e-14 0 1 6.13e+03 World StepLimiter - 6255 6.35 -26.2 33.2 5.83e-14 0 1 6.13e+03 World StepLimiter - 6256 6.11 -25.3 33.2 5.82e-14 0 1 6.13e+03 World StepLimiter - 6257 5.87 -24.3 33.2 5.81e-14 0 1 6.13e+03 World StepLimiter - 6258 5.63 -23.3 33.2 5.8e-14 0 1 6.14e+03 World StepLimiter - 6259 5.39 -22.4 33.2 5.79e-14 0 1 6.14e+03 World StepLimiter - 6260 5.15 -21.4 33.2 5.78e-14 0 1 6.14e+03 World StepLimiter - 6261 4.91 -20.4 33.2 5.77e-14 0 1 6.14e+03 World StepLimiter - 6262 4.67 -19.4 33.2 5.76e-14 0 1 6.14e+03 World StepLimiter - 6263 4.43 -18.5 33.2 5.75e-14 0 1 6.14e+03 World StepLimiter - 6264 4.19 -17.5 33.2 5.74e-14 0 1 6.14e+03 World StepLimiter - 6265 3.95 -16.5 33.2 5.73e-14 0 1 6.14e+03 World StepLimiter - 6266 3.7 -15.6 33.2 5.72e-14 0 1 6.14e+03 World StepLimiter - 6267 3.46 -14.6 33.2 5.71e-14 0 1 6.14e+03 World StepLimiter - 6268 3.22 -13.6 33.2 5.7e-14 0 1 6.15e+03 World StepLimiter - 6269 2.98 -12.7 33.2 5.69e-14 0 1 6.15e+03 World StepLimiter - 6270 2.73 -11.7 33.2 5.68e-14 0 1 6.15e+03 World StepLimiter - 6271 2.49 -10.7 33.2 5.67e-14 0 1 6.15e+03 World StepLimiter - 6272 2.25 -9.75 33.2 5.66e-14 0 1 6.15e+03 World StepLimiter - 6273 2.01 -8.78 33.2 5.65e-14 0 1 6.15e+03 World StepLimiter - 6274 1.76 -7.81 33.3 5.64e-14 0 1 6.15e+03 World StepLimiter - 6275 1.52 -6.84 33.3 5.63e-14 0 1 6.15e+03 World StepLimiter - 6276 1.27 -5.87 33.3 5.62e-14 0 1 6.15e+03 World StepLimiter - 6277 1.03 -4.9 33.3 5.61e-14 0 1 6.15e+03 World StepLimiter - 6278 0.787 -3.93 33.3 5.6e-14 0 1 6.16e+03 World StepLimiter - 6279 0.542 -2.96 33.3 5.59e-14 0 1 6.16e+03 World StepLimiter - 6280 0.298 -1.99 33.3 5.58e-14 0 1 6.16e+03 World StepLimiter - 6281 0.0526 -1.02 33.3 5.57e-14 0 1 6.16e+03 World StepLimiter - 6282 -0.192 -0.0479 33.3 5.56e-14 0 1 6.16e+03 World StepLimiter - 6283 -0.438 0.922 33.3 5.55e-14 0 1 6.16e+03 World StepLimiter - 6284 -0.683 1.89 33.3 5.54e-14 0 1 6.16e+03 World StepLimiter - 6285 -0.929 2.86 33.3 5.53e-14 0 1 6.16e+03 World StepLimiter - 6286 -1.18 3.83 33.3 5.52e-14 0 1 6.16e+03 World StepLimiter - 6287 -1.42 4.8 33.3 5.51e-14 0 1 6.16e+03 World StepLimiter - 6288 -1.67 5.77 33.3 5.5e-14 0 1 6.17e+03 World StepLimiter - 6289 -1.91 6.74 33.3 5.49e-14 0 1 6.17e+03 World StepLimiter - 6290 -2.16 7.71 33.3 5.48e-14 0 1 6.17e+03 World StepLimiter - 6291 -2.41 8.67 33.3 5.47e-14 0 1 6.17e+03 World StepLimiter - 6292 -2.66 9.64 33.4 5.46e-14 0 1 6.17e+03 World StepLimiter - 6293 -2.9 10.6 33.4 5.45e-14 0 1 6.17e+03 World StepLimiter - 6294 -3.15 11.6 33.4 5.44e-14 0 1 6.17e+03 World StepLimiter - 6295 -3.4 12.6 33.4 5.43e-14 0 1 6.17e+03 World StepLimiter - 6296 -3.65 13.5 33.4 5.42e-14 0 1 6.17e+03 World StepLimiter - 6297 -3.9 14.5 33.4 5.41e-14 0 1 6.17e+03 World StepLimiter - 6298 -4.14 15.5 33.4 5.4e-14 0 1 6.18e+03 World StepLimiter - 6299 -4.39 16.4 33.4 5.39e-14 0 1 6.18e+03 World StepLimiter - 6300 -4.64 17.4 33.4 5.38e-14 0 1 6.18e+03 World StepLimiter - 6301 -4.89 18.4 33.4 5.37e-14 0 1 6.18e+03 World StepLimiter - 6302 -5.14 19.3 33.4 5.36e-14 0 1 6.18e+03 World StepLimiter - 6303 -5.39 20.3 33.4 5.35e-14 0 1 6.18e+03 World StepLimiter - 6304 -5.64 21.3 33.4 5.34e-14 0 1 6.18e+03 World StepLimiter - 6305 -5.89 22.2 33.4 5.33e-14 0 1 6.18e+03 World StepLimiter - 6306 -6.14 23.2 33.4 5.32e-14 0 1 6.18e+03 World StepLimiter - 6307 -6.39 24.2 33.4 5.31e-14 0 1 6.18e+03 World StepLimiter - 6308 -6.64 25.1 33.4 5.3e-14 0 1 6.19e+03 World StepLimiter - 6309 -6.9 26.1 33.4 5.29e-14 0 1 6.19e+03 World StepLimiter - 6310 -7.15 27.1 33.5 5.28e-14 0 1 6.19e+03 World StepLimiter - 6311 -7.4 28 33.5 5.27e-14 0 1 6.19e+03 World StepLimiter - 6312 -7.65 29 33.5 5.26e-14 0 1 6.19e+03 World StepLimiter - 6313 -7.9 30 33.5 5.25e-14 0 1 6.19e+03 World StepLimiter - 6314 -8.16 30.9 33.5 5.24e-14 0 1 6.19e+03 World StepLimiter - 6315 -8.41 31.9 33.5 5.23e-14 0 1 6.19e+03 World StepLimiter - 6316 -8.66 32.9 33.5 5.22e-14 0 1 6.19e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.134725323787neV MomDir: (-0.25326908127884,0.96737977983281,0.0055797884187152) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6317 -8.91 33.8 33.5 5.21e-14 0 0.999 6.19e+03 Guide Transportation *** StepTooSmall *** - 6318 -8.91 33.8 33.5 5.21e-14 0 0 6.19e+03 World Transportation - 6319 -8.66 32.9 33.5 5.22e-14 0 1 6.2e+03 World StepLimiter - 6320 -8.4 31.9 33.5 5.23e-14 0 1 6.2e+03 World StepLimiter - 6321 -8.15 30.9 33.5 5.24e-14 0 1 6.2e+03 World StepLimiter - 6322 -7.89 30 33.5 5.25e-14 0 1 6.2e+03 World StepLimiter - 6323 -7.64 29 33.5 5.26e-14 0 1 6.2e+03 World StepLimiter - 6324 -7.38 28 33.5 5.27e-14 0 1 6.2e+03 World StepLimiter - 6325 -7.13 27.1 33.5 5.28e-14 0 1 6.2e+03 World StepLimiter - 6326 -6.87 26.1 33.5 5.29e-14 0 1 6.2e+03 World StepLimiter - 6327 -6.62 25.1 33.5 5.3e-14 0 1 6.2e+03 World StepLimiter - 6328 -6.36 24.2 33.5 5.31e-14 0 1 6.2e+03 World StepLimiter - 6329 -6.11 23.2 33.6 5.32e-14 0 1 6.21e+03 World StepLimiter - 6330 -5.86 22.2 33.6 5.33e-14 0 1 6.21e+03 World StepLimiter - 6331 -5.6 21.3 33.6 5.34e-14 0 1 6.21e+03 World StepLimiter - 6332 -5.35 20.3 33.6 5.35e-14 0 1 6.21e+03 World StepLimiter - 6333 -5.1 19.3 33.6 5.36e-14 0 1 6.21e+03 World StepLimiter - 6334 -4.85 18.4 33.6 5.37e-14 0 1 6.21e+03 World StepLimiter - 6335 -4.6 17.4 33.6 5.38e-14 0 1 6.21e+03 World StepLimiter - 6336 -4.34 16.4 33.6 5.39e-14 0 1 6.21e+03 World StepLimiter - 6337 -4.09 15.5 33.6 5.4e-14 0 1 6.21e+03 World StepLimiter - 6338 -3.84 14.5 33.6 5.41e-14 0 1 6.21e+03 World StepLimiter - 6339 -3.59 13.5 33.6 5.42e-14 0 1 6.22e+03 World StepLimiter - 6340 -3.34 12.6 33.6 5.43e-14 0 1 6.22e+03 World StepLimiter - 6341 -3.09 11.6 33.6 5.44e-14 0 1 6.22e+03 World StepLimiter - 6342 -2.84 10.6 33.6 5.45e-14 0 1 6.22e+03 World StepLimiter - 6343 -2.59 9.66 33.6 5.46e-14 0 1 6.22e+03 World StepLimiter - 6344 -2.34 8.69 33.6 5.47e-14 0 1 6.22e+03 World StepLimiter - 6345 -2.09 7.72 33.6 5.48e-14 0 1 6.22e+03 World StepLimiter - 6346 -1.84 6.76 33.6 5.49e-14 0 1 6.22e+03 World StepLimiter - 6347 -1.59 5.79 33.6 5.5e-14 0 1 6.22e+03 World StepLimiter - 6348 -1.34 4.82 33.7 5.51e-14 0 1 6.22e+03 World StepLimiter - 6349 -1.09 3.85 33.7 5.52e-14 0 1 6.23e+03 World StepLimiter - 6350 -0.84 2.88 33.7 5.53e-14 0 1 6.23e+03 World StepLimiter - 6351 -0.592 1.91 33.7 5.54e-14 0 1 6.23e+03 World StepLimiter - 6352 -0.344 0.944 33.7 5.55e-14 0 1 6.23e+03 World StepLimiter - 6353 -0.0956 -0.0244 33.7 5.56e-14 0 1 6.23e+03 World StepLimiter - 6354 0.152 -0.993 33.7 5.57e-14 0 1 6.23e+03 World StepLimiter - 6355 0.4 -1.96 33.7 5.58e-14 0 1 6.23e+03 World StepLimiter - 6356 0.647 -2.93 33.7 5.59e-14 0 1 6.23e+03 World StepLimiter - 6357 0.894 -3.9 33.7 5.6e-14 0 1 6.23e+03 World StepLimiter - 6358 1.14 -4.87 33.7 5.61e-14 0 1 6.23e+03 World StepLimiter - 6359 1.39 -5.84 33.7 5.62e-14 0 1 6.24e+03 World StepLimiter - 6360 1.63 -6.81 33.7 5.63e-14 0 1 6.24e+03 World StepLimiter - 6361 1.88 -7.78 33.7 5.64e-14 0 1 6.24e+03 World StepLimiter - 6362 2.13 -8.75 33.7 5.65e-14 0 1 6.24e+03 World StepLimiter - 6363 2.37 -9.71 33.7 5.66e-14 0 1 6.24e+03 World StepLimiter - 6364 2.62 -10.7 33.7 5.67e-14 0 1 6.24e+03 World StepLimiter - 6365 2.86 -11.7 33.7 5.68e-14 0 1 6.24e+03 World StepLimiter - 6366 3.11 -12.6 33.8 5.69e-14 0 1 6.24e+03 World StepLimiter - 6367 3.35 -13.6 33.8 5.7e-14 0 1 6.24e+03 World StepLimiter - 6368 3.6 -14.6 33.8 5.71e-14 0 1 6.24e+03 World StepLimiter - 6369 3.84 -15.5 33.8 5.72e-14 0 1 6.25e+03 World StepLimiter - 6370 4.09 -16.5 33.8 5.73e-14 0 1 6.25e+03 World StepLimiter - 6371 4.33 -17.5 33.8 5.74e-14 0 1 6.25e+03 World StepLimiter - 6372 4.58 -18.4 33.8 5.75e-14 0 1 6.25e+03 World StepLimiter - 6373 4.82 -19.4 33.8 5.76e-14 0 1 6.25e+03 World StepLimiter - 6374 5.06 -20.4 33.8 5.77e-14 0 1 6.25e+03 World StepLimiter - 6375 5.31 -21.4 33.8 5.78e-14 0 1 6.25e+03 World StepLimiter - 6376 5.55 -22.3 33.8 5.79e-14 0 1 6.25e+03 World StepLimiter - 6377 5.79 -23.3 33.8 5.8e-14 0 1 6.25e+03 World StepLimiter - 6378 6.04 -24.3 33.8 5.81e-14 0 1 6.25e+03 World StepLimiter - 6379 6.28 -25.2 33.8 5.82e-14 0 1 6.26e+03 World StepLimiter - 6380 6.52 -26.2 33.8 5.83e-14 0 1 6.26e+03 World StepLimiter - 6381 6.76 -27.2 33.8 5.84e-14 0 1 6.26e+03 World StepLimiter - 6382 7 -28.1 33.8 5.85e-14 0 1 6.26e+03 World StepLimiter - 6383 7.25 -29.1 33.8 5.86e-14 0 1 6.26e+03 World StepLimiter - 6384 7.49 -30.1 33.8 5.87e-14 0 1 6.26e+03 World StepLimiter - 6385 7.73 -31.1 33.9 5.88e-14 0 1 6.26e+03 World StepLimiter - 6386 7.97 -32 33.9 5.89e-14 0 1 6.26e+03 World StepLimiter - 6387 8.21 -33 33.9 5.9e-14 0 1 6.26e+03 World StepLimiter - 6388 8.45 -34 33.9 5.91e-14 0 1 6.26e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.088987854132neV MomDir: (0.24052820228713,-0.97062799983962,0.0052411670319386) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6389 8.45 -34 33.9 5.91e-14 0 0.000142 6.26e+03 Guide Transportation *** StepTooSmall *** - 6390 8.45 -34 33.9 5.91e-14 0 0 6.26e+03 World Transportation - 6391 8.21 -33 33.9 5.9e-14 0 1 6.27e+03 World StepLimiter - 6392 7.97 -32 33.9 5.89e-14 0 1 6.27e+03 World StepLimiter - 6393 7.72 -31.1 33.9 5.88e-14 0 1 6.27e+03 World StepLimiter - 6394 7.48 -30.1 33.9 5.87e-14 0 1 6.27e+03 World StepLimiter - 6395 7.24 -29.1 33.9 5.86e-14 0 1 6.27e+03 World StepLimiter - 6396 6.99 -28.1 33.9 5.85e-14 0 1 6.27e+03 World StepLimiter - 6397 6.75 -27.2 33.9 5.84e-14 0 1 6.27e+03 World StepLimiter - 6398 6.51 -26.2 33.9 5.83e-14 0 1 6.27e+03 World StepLimiter - 6399 6.26 -25.2 33.9 5.82e-14 0 1 6.27e+03 World StepLimiter - 6400 6.02 -24.3 33.9 5.81e-14 0 1 6.27e+03 World StepLimiter - 6401 5.77 -23.3 33.9 5.8e-14 0 1 6.28e+03 World StepLimiter - 6402 5.53 -22.3 33.9 5.79e-14 0 1 6.28e+03 World StepLimiter - 6403 5.28 -21.4 33.9 5.78e-14 0 1 6.28e+03 World StepLimiter - 6404 5.04 -20.4 33.9 5.77e-14 0 1 6.28e+03 World StepLimiter - 6405 4.79 -19.4 33.9 5.76e-14 0 1 6.28e+03 World StepLimiter - 6406 4.55 -18.4 34 5.75e-14 0 1 6.28e+03 World StepLimiter - 6407 4.3 -17.5 34 5.74e-14 0 1 6.28e+03 World StepLimiter - 6408 4.05 -16.5 34 5.73e-14 0 1 6.28e+03 World StepLimiter - 6409 3.81 -15.5 34 5.72e-14 0 1 6.28e+03 World StepLimiter - 6410 3.56 -14.6 34 5.71e-14 0 1 6.28e+03 World StepLimiter - 6411 3.32 -13.6 34 5.7e-14 0 1 6.29e+03 World StepLimiter - 6412 3.07 -12.6 34 5.69e-14 0 1 6.29e+03 World StepLimiter - 6413 2.82 -11.7 34 5.68e-14 0 1 6.29e+03 World StepLimiter - 6414 2.57 -10.7 34 5.67e-14 0 1 6.29e+03 World StepLimiter - 6415 2.33 -9.73 34 5.66e-14 0 1 6.29e+03 World StepLimiter - 6416 2.08 -8.76 34 5.65e-14 0 1 6.29e+03 World StepLimiter - 6417 1.83 -7.79 34 5.64e-14 0 1 6.29e+03 World StepLimiter - 6418 1.58 -6.82 34 5.63e-14 0 1 6.29e+03 World StepLimiter - 6419 1.33 -5.85 34 5.62e-14 0 1 6.29e+03 World StepLimiter - 6420 1.09 -4.88 34 5.61e-14 0 1 6.29e+03 World StepLimiter - 6421 0.837 -3.91 34 5.6e-14 0 1 6.3e+03 World StepLimiter - 6422 0.588 -2.95 34 5.59e-14 0 1 6.3e+03 World StepLimiter - 6423 0.339 -1.98 34 5.58e-14 0 1 6.3e+03 World StepLimiter - 6424 0.089 -1.01 34 5.57e-14 0 1 6.3e+03 World StepLimiter - 6425 -0.161 -0.041 34.1 5.56e-14 0 1 6.3e+03 World StepLimiter - 6426 -0.411 0.927 34.1 5.55e-14 0 1 6.3e+03 World StepLimiter - 6427 -0.661 1.9 34.1 5.54e-14 0 1 6.3e+03 World StepLimiter - 6428 -0.911 2.86 34.1 5.53e-14 0 1 6.3e+03 World StepLimiter - 6429 -1.16 3.83 34.1 5.52e-14 0 1 6.3e+03 World StepLimiter - 6430 -1.41 4.8 34.1 5.51e-14 0 1 6.3e+03 World StepLimiter - 6431 -1.66 5.77 34.1 5.5e-14 0 1 6.31e+03 World StepLimiter - 6432 -1.92 6.74 34.1 5.49e-14 0 1 6.31e+03 World StepLimiter - 6433 -2.17 7.7 34.1 5.48e-14 0 1 6.31e+03 World StepLimiter - 6434 -2.42 8.67 34.1 5.47e-14 0 1 6.31e+03 World StepLimiter - 6435 -2.67 9.64 34.1 5.46e-14 0 1 6.31e+03 World StepLimiter - 6436 -2.92 10.6 34.1 5.45e-14 0 1 6.31e+03 World StepLimiter - 6437 -3.17 11.6 34.1 5.44e-14 0 1 6.31e+03 World StepLimiter - 6438 -3.43 12.5 34.1 5.43e-14 0 1 6.31e+03 World StepLimiter - 6439 -3.68 13.5 34.1 5.42e-14 0 1 6.31e+03 World StepLimiter - 6440 -3.93 14.5 34.1 5.41e-14 0 1 6.31e+03 World StepLimiter - 6441 -4.19 15.4 34.1 5.4e-14 0 1 6.32e+03 World StepLimiter - 6442 -4.44 16.4 34.1 5.39e-14 0 1 6.32e+03 World StepLimiter - 6443 -4.69 17.4 34.2 5.38e-14 0 1 6.32e+03 World StepLimiter - 6444 -4.95 18.3 34.2 5.37e-14 0 1 6.32e+03 World StepLimiter - 6445 -5.2 19.3 34.2 5.36e-14 0 1 6.32e+03 World StepLimiter - 6446 -5.46 20.3 34.2 5.35e-14 0 1 6.32e+03 World StepLimiter - 6447 -5.71 21.2 34.2 5.34e-14 0 1 6.32e+03 World StepLimiter - 6448 -5.97 22.2 34.2 5.33e-14 0 1 6.32e+03 World StepLimiter - 6449 -6.22 23.2 34.2 5.32e-14 0 1 6.32e+03 World StepLimiter - 6450 -6.48 24.1 34.2 5.31e-14 0 1 6.32e+03 World StepLimiter - 6451 -6.73 25.1 34.2 5.3e-14 0 1 6.33e+03 World StepLimiter - 6452 -6.99 26.1 34.2 5.29e-14 0 1 6.33e+03 World StepLimiter - 6453 -7.25 27 34.2 5.28e-14 0 1 6.33e+03 World StepLimiter - 6454 -7.5 28 34.2 5.27e-14 0 1 6.33e+03 World StepLimiter - 6455 -7.76 29 34.2 5.26e-14 0 1 6.33e+03 World StepLimiter - 6456 -8.02 29.9 34.2 5.25e-14 0 1 6.33e+03 World StepLimiter - 6457 -8.27 30.9 34.2 5.24e-14 0 1 6.33e+03 World StepLimiter - 6458 -8.53 31.9 34.2 5.23e-14 0 1 6.33e+03 World StepLimiter - 6459 -8.79 32.8 34.2 5.22e-14 0 1 6.33e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.138315704999neV MomDir: (-0.25801244926957,0.96612548052885,0.0055795962959726) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6460 -9.05 33.8 34.2 5.21e-14 0 0.999 6.33e+03 Guide Transportation *** StepTooSmall *** - 6461 -9.05 33.8 34.2 5.21e-14 0 0 6.33e+03 World Transportation - 6462 -8.79 32.8 34.3 5.22e-14 0 1 6.34e+03 World StepLimiter - 6463 -8.53 31.9 34.3 5.23e-14 0 1 6.34e+03 World StepLimiter - 6464 -8.27 30.9 34.3 5.24e-14 0 1 6.34e+03 World StepLimiter - 6465 -8.01 29.9 34.3 5.25e-14 0 1 6.34e+03 World StepLimiter - 6466 -7.75 29 34.3 5.26e-14 0 1 6.34e+03 World StepLimiter - 6467 -7.5 28 34.3 5.27e-14 0 1 6.34e+03 World StepLimiter - 6468 -7.24 27 34.3 5.28e-14 0 1 6.34e+03 World StepLimiter - 6469 -6.98 26.1 34.3 5.29e-14 0 1 6.34e+03 World StepLimiter - 6470 -6.73 25.1 34.3 5.3e-14 0 1 6.34e+03 World StepLimiter - 6471 -6.47 24.1 34.3 5.31e-14 0 1 6.34e+03 World StepLimiter - 6472 -6.21 23.2 34.3 5.32e-14 0 1 6.35e+03 World StepLimiter - 6473 -5.96 22.2 34.3 5.33e-14 0 1 6.35e+03 World StepLimiter - 6474 -5.7 21.2 34.3 5.34e-14 0 1 6.35e+03 World StepLimiter - 6475 -5.45 20.3 34.3 5.35e-14 0 1 6.35e+03 World StepLimiter - 6476 -5.19 19.3 34.3 5.36e-14 0 1 6.35e+03 World StepLimiter - 6477 -4.93 18.3 34.3 5.37e-14 0 1 6.35e+03 World StepLimiter - 6478 -4.68 17.4 34.3 5.38e-14 0 1 6.35e+03 World StepLimiter - 6479 -4.43 16.4 34.3 5.39e-14 0 1 6.35e+03 World StepLimiter - 6480 -4.17 15.4 34.4 5.4e-14 0 1 6.35e+03 World StepLimiter - 6481 -3.92 14.5 34.4 5.41e-14 0 1 6.35e+03 World StepLimiter - 6482 -3.66 13.5 34.4 5.42e-14 0 1 6.36e+03 World StepLimiter - 6483 -3.41 12.5 34.4 5.43e-14 0 1 6.36e+03 World StepLimiter - 6484 -3.16 11.6 34.4 5.44e-14 0 1 6.36e+03 World StepLimiter - 6485 -2.9 10.6 34.4 5.45e-14 0 1 6.36e+03 World StepLimiter - 6486 -2.65 9.64 34.4 5.46e-14 0 1 6.36e+03 World StepLimiter - 6487 -2.4 8.68 34.4 5.47e-14 0 1 6.36e+03 World StepLimiter - 6488 -2.14 7.71 34.4 5.48e-14 0 1 6.36e+03 World StepLimiter - 6489 -1.89 6.74 34.4 5.49e-14 0 1 6.36e+03 World StepLimiter - 6490 -1.64 5.77 34.4 5.5e-14 0 1 6.36e+03 World StepLimiter - 6491 -1.39 4.81 34.4 5.51e-14 0 1 6.36e+03 World StepLimiter - 6492 -1.14 3.84 34.4 5.52e-14 0 1 6.37e+03 World StepLimiter - 6493 -0.884 2.87 34.4 5.53e-14 0 1 6.37e+03 World StepLimiter - 6494 -0.633 1.9 34.4 5.54e-14 0 1 6.37e+03 World StepLimiter - 6495 -0.382 0.934 34.4 5.55e-14 0 1 6.37e+03 World StepLimiter - 6496 -0.131 -0.0342 34.4 5.56e-14 0 1 6.37e+03 World StepLimiter - 6497 0.119 -1 34.4 5.57e-14 0 1 6.37e+03 World StepLimiter - 6498 0.37 -1.97 34.4 5.58e-14 0 1 6.37e+03 World StepLimiter - 6499 0.62 -2.94 34.5 5.59e-14 0 1 6.37e+03 World StepLimiter - 6500 0.87 -3.91 34.5 5.6e-14 0 1 6.37e+03 World StepLimiter - 6501 1.12 -4.88 34.5 5.61e-14 0 1 6.37e+03 World StepLimiter - 6502 1.37 -5.84 34.5 5.62e-14 0 1 6.38e+03 World StepLimiter - 6503 1.62 -6.81 34.5 5.63e-14 0 1 6.38e+03 World StepLimiter - 6504 1.87 -7.78 34.5 5.64e-14 0 1 6.38e+03 World StepLimiter - 6505 2.12 -8.75 34.5 5.65e-14 0 1 6.38e+03 World StepLimiter - 6506 2.36 -9.72 34.5 5.66e-14 0 1 6.38e+03 World StepLimiter - 6507 2.61 -10.7 34.5 5.67e-14 0 1 6.38e+03 World StepLimiter - 6508 2.86 -11.7 34.5 5.68e-14 0 1 6.38e+03 World StepLimiter - 6509 3.11 -12.6 34.5 5.69e-14 0 1 6.38e+03 World StepLimiter - 6510 3.36 -13.6 34.5 5.7e-14 0 1 6.38e+03 World StepLimiter - 6511 3.6 -14.6 34.5 5.71e-14 0 1 6.38e+03 World StepLimiter - 6512 3.85 -15.5 34.5 5.72e-14 0 1 6.39e+03 World StepLimiter - 6513 4.1 -16.5 34.5 5.73e-14 0 1 6.39e+03 World StepLimiter - 6514 4.34 -17.5 34.5 5.74e-14 0 1 6.39e+03 World StepLimiter - 6515 4.59 -18.4 34.5 5.75e-14 0 1 6.39e+03 World StepLimiter - 6516 4.84 -19.4 34.5 5.76e-14 0 1 6.39e+03 World StepLimiter - 6517 5.08 -20.4 34.6 5.77e-14 0 1 6.39e+03 World StepLimiter - 6518 5.33 -21.3 34.6 5.78e-14 0 1 6.39e+03 World StepLimiter - 6519 5.58 -22.3 34.6 5.79e-14 0 1 6.39e+03 World StepLimiter - 6520 5.82 -23.3 34.6 5.8e-14 0 1 6.39e+03 World StepLimiter - 6521 6.07 -24.3 34.6 5.81e-14 0 1 6.39e+03 World StepLimiter - 6522 6.31 -25.2 34.6 5.82e-14 0 1 6.4e+03 World StepLimiter - 6523 6.56 -26.2 34.6 5.83e-14 0 1 6.4e+03 World StepLimiter - 6524 6.8 -27.2 34.6 5.84e-14 0 1 6.4e+03 World StepLimiter - 6525 7.05 -28.1 34.6 5.85e-14 0 1 6.4e+03 World StepLimiter - 6526 7.29 -29.1 34.6 5.86e-14 0 1 6.4e+03 World StepLimiter - 6527 7.53 -30.1 34.6 5.87e-14 0 1 6.4e+03 World StepLimiter - 6528 7.78 -31 34.6 5.88e-14 0 1 6.4e+03 World StepLimiter - 6529 8.02 -32 34.6 5.89e-14 0 1 6.4e+03 World StepLimiter - 6530 8.27 -33 34.6 5.9e-14 0 1 6.4e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.087506491219neV MomDir: (0.24316373397004,-0.96997109645659,0.0052412327312909) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6531 8.51 -34 34.6 5.91e-14 0 1 6.4e+03 Guide Transportation *** StepTooSmall *** - 6532 8.51 -34 34.6 5.91e-14 0 0 6.4e+03 World Transportation - 6533 8.27 -33 34.6 5.9e-14 0 1 6.41e+03 World StepLimiter - 6534 8.02 -32 34.6 5.89e-14 0 1 6.41e+03 World StepLimiter - 6535 7.78 -31 34.6 5.88e-14 0 1 6.41e+03 World StepLimiter - 6536 7.53 -30.1 34.6 5.87e-14 0 1 6.41e+03 World StepLimiter - 6537 7.29 -29.1 34.7 5.86e-14 0 1 6.41e+03 World StepLimiter - 6538 7.05 -28.1 34.7 5.85e-14 0 1 6.41e+03 World StepLimiter - 6539 6.8 -27.2 34.7 5.84e-14 0 1 6.41e+03 World StepLimiter - 6540 6.56 -26.2 34.7 5.83e-14 0 1 6.41e+03 World StepLimiter - 6541 6.31 -25.2 34.7 5.82e-14 0 1 6.41e+03 World StepLimiter - 6542 6.07 -24.3 34.7 5.81e-14 0 1 6.41e+03 World StepLimiter - 6543 5.82 -23.3 34.7 5.8e-14 0 1 6.42e+03 World StepLimiter - 6544 5.58 -22.3 34.7 5.79e-14 0 1 6.42e+03 World StepLimiter - 6545 5.33 -21.3 34.7 5.78e-14 0 1 6.42e+03 World StepLimiter - 6546 5.09 -20.4 34.7 5.77e-14 0 1 6.42e+03 World StepLimiter - 6547 4.84 -19.4 34.7 5.76e-14 0 1 6.42e+03 World StepLimiter - 6548 4.59 -18.4 34.7 5.75e-14 0 1 6.42e+03 World StepLimiter - 6549 4.35 -17.5 34.7 5.74e-14 0 1 6.42e+03 World StepLimiter - 6550 4.1 -16.5 34.7 5.73e-14 0 1 6.42e+03 World StepLimiter - 6551 3.85 -15.5 34.7 5.72e-14 0 1 6.42e+03 World StepLimiter - 6552 3.61 -14.6 34.7 5.71e-14 0 1 6.42e+03 World StepLimiter - 6553 3.36 -13.6 34.7 5.7e-14 0 1 6.43e+03 World StepLimiter - 6554 3.11 -12.6 34.7 5.69e-14 0 1 6.43e+03 World StepLimiter - 6555 2.86 -11.7 34.7 5.68e-14 0 1 6.43e+03 World StepLimiter - 6556 2.62 -10.7 34.8 5.67e-14 0 1 6.43e+03 World StepLimiter - 6557 2.37 -9.72 34.8 5.66e-14 0 1 6.43e+03 World StepLimiter - 6558 2.12 -8.75 34.8 5.65e-14 0 1 6.43e+03 World StepLimiter - 6559 1.87 -7.78 34.8 5.64e-14 0 1 6.43e+03 World StepLimiter - 6560 1.62 -6.81 34.8 5.63e-14 0 1 6.43e+03 World StepLimiter - 6561 1.37 -5.84 34.8 5.62e-14 0 1 6.43e+03 World StepLimiter - 6562 1.12 -4.87 34.8 5.61e-14 0 1 6.43e+03 World StepLimiter - 6563 0.874 -3.91 34.8 5.6e-14 0 1 6.44e+03 World StepLimiter - 6564 0.624 -2.94 34.8 5.59e-14 0 1 6.44e+03 World StepLimiter - 6565 0.374 -1.97 34.8 5.58e-14 0 1 6.44e+03 World StepLimiter - 6566 0.124 -1 34.8 5.57e-14 0 1 6.44e+03 World StepLimiter - 6567 -0.127 -0.0326 34.8 5.56e-14 0 1 6.44e+03 World StepLimiter - 6568 -0.377 0.935 34.8 5.55e-14 0 1 6.44e+03 World StepLimiter - 6569 -0.628 1.9 34.8 5.54e-14 0 1 6.44e+03 World StepLimiter - 6570 -0.879 2.87 34.8 5.53e-14 0 1 6.44e+03 World StepLimiter - 6571 -1.13 3.84 34.8 5.52e-14 0 1 6.44e+03 World StepLimiter - 6572 -1.38 4.81 34.8 5.51e-14 0 1 6.44e+03 World StepLimiter - 6573 -1.63 5.77 34.8 5.5e-14 0 1 6.45e+03 World StepLimiter - 6574 -1.89 6.74 34.8 5.49e-14 0 1 6.45e+03 World StepLimiter - 6575 -2.14 7.71 34.9 5.48e-14 0 1 6.45e+03 World StepLimiter - 6576 -2.39 8.68 34.9 5.47e-14 0 1 6.45e+03 World StepLimiter - 6577 -2.64 9.65 34.9 5.46e-14 0 1 6.45e+03 World StepLimiter - 6578 -2.9 10.6 34.9 5.45e-14 0 1 6.45e+03 World StepLimiter - 6579 -3.15 11.6 34.9 5.44e-14 0 1 6.45e+03 World StepLimiter - 6580 -3.4 12.5 34.9 5.43e-14 0 1 6.45e+03 World StepLimiter - 6581 -3.66 13.5 34.9 5.42e-14 0 1 6.45e+03 World StepLimiter - 6582 -3.91 14.5 34.9 5.41e-14 0 1 6.45e+03 World StepLimiter - 6583 -4.16 15.4 34.9 5.4e-14 0 1 6.46e+03 World StepLimiter - 6584 -4.42 16.4 34.9 5.39e-14 0 1 6.46e+03 World StepLimiter - 6585 -4.67 17.4 34.9 5.38e-14 0 1 6.46e+03 World StepLimiter - 6586 -4.93 18.4 34.9 5.37e-14 0 1 6.46e+03 World StepLimiter - 6587 -5.18 19.3 34.9 5.36e-14 0 1 6.46e+03 World StepLimiter - 6588 -5.44 20.3 34.9 5.35e-14 0 1 6.46e+03 World StepLimiter - 6589 -5.69 21.3 34.9 5.34e-14 0 1 6.46e+03 World StepLimiter - 6590 -5.95 22.2 34.9 5.33e-14 0 1 6.46e+03 World StepLimiter - 6591 -6.2 23.2 34.9 5.32e-14 0 1 6.46e+03 World StepLimiter - 6592 -6.46 24.2 34.9 5.31e-14 0 1 6.46e+03 World StepLimiter - 6593 -6.72 25.1 35 5.3e-14 0 1 6.47e+03 World StepLimiter - 6594 -6.97 26.1 35 5.29e-14 0 1 6.47e+03 World StepLimiter - 6595 -7.23 27.1 35 5.28e-14 0 1 6.47e+03 World StepLimiter - 6596 -7.49 28 35 5.27e-14 0 1 6.47e+03 World StepLimiter - 6597 -7.75 29 35 5.26e-14 0 1 6.47e+03 World StepLimiter - 6598 -8 29.9 35 5.25e-14 0 1 6.47e+03 World StepLimiter - 6599 -8.26 30.9 35 5.24e-14 0 1 6.47e+03 World StepLimiter - 6600 -8.52 31.9 35 5.23e-14 0 1 6.47e+03 World StepLimiter - 6601 -8.78 32.8 35 5.22e-14 0 1 6.47e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.1380575779neV MomDir: (-0.25872314121252,0.96593540371609,0.0055796101077954) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6602 -9.04 33.8 35 5.21e-14 0 1 6.47e+03 Guide Transportation *** StepTooSmall *** - 6603 -9.04 33.8 35 5.21e-14 0 0 6.47e+03 World Transportation - 6604 -8.78 32.8 35 5.22e-14 0 1 6.48e+03 World StepLimiter - 6605 -8.52 31.9 35 5.23e-14 0 1 6.48e+03 World StepLimiter - 6606 -8.26 30.9 35 5.24e-14 0 1 6.48e+03 World StepLimiter - 6607 -8.01 29.9 35 5.25e-14 0 1 6.48e+03 World StepLimiter - 6608 -7.75 29 35 5.26e-14 0 1 6.48e+03 World StepLimiter - 6609 -7.49 28 35 5.27e-14 0 1 6.48e+03 World StepLimiter - 6610 -7.24 27 35 5.28e-14 0 1 6.48e+03 World StepLimiter - 6611 -6.98 26.1 35 5.29e-14 0 1 6.48e+03 World StepLimiter - 6612 -6.73 25.1 35.1 5.3e-14 0 1 6.48e+03 World StepLimiter - 6613 -6.47 24.1 35.1 5.31e-14 0 1 6.48e+03 World StepLimiter - 6614 -6.22 23.2 35.1 5.32e-14 0 1 6.49e+03 World StepLimiter - 6615 -5.96 22.2 35.1 5.33e-14 0 1 6.49e+03 World StepLimiter - 6616 -5.71 21.2 35.1 5.34e-14 0 1 6.49e+03 World StepLimiter - 6617 -5.45 20.3 35.1 5.35e-14 0 1 6.49e+03 World StepLimiter - 6618 -5.2 19.3 35.1 5.36e-14 0 1 6.49e+03 World StepLimiter - 6619 -4.95 18.3 35.1 5.37e-14 0 1 6.49e+03 World StepLimiter - 6620 -4.69 17.4 35.1 5.38e-14 0 1 6.49e+03 World StepLimiter - 6621 -4.44 16.4 35.1 5.39e-14 0 1 6.49e+03 World StepLimiter - 6622 -4.18 15.4 35.1 5.4e-14 0 1 6.49e+03 World StepLimiter - 6623 -3.93 14.5 35.1 5.41e-14 0 1 6.49e+03 World StepLimiter - 6624 -3.68 13.5 35.1 5.42e-14 0 1 6.5e+03 World StepLimiter - 6625 -3.43 12.5 35.1 5.43e-14 0 1 6.5e+03 World StepLimiter - 6626 -3.17 11.6 35.1 5.44e-14 0 1 6.5e+03 World StepLimiter - 6627 -2.92 10.6 35.1 5.45e-14 0 1 6.5e+03 World StepLimiter - 6628 -2.67 9.64 35.1 5.46e-14 0 1 6.5e+03 World StepLimiter - 6629 -2.42 8.67 35.1 5.47e-14 0 1 6.5e+03 World StepLimiter - 6630 -2.17 7.7 35.2 5.48e-14 0 1 6.5e+03 World StepLimiter - 6631 -1.92 6.73 35.2 5.49e-14 0 1 6.5e+03 World StepLimiter - 6632 -1.67 5.77 35.2 5.5e-14 0 1 6.5e+03 World StepLimiter - 6633 -1.41 4.8 35.2 5.51e-14 0 1 6.5e+03 World StepLimiter - 6634 -1.16 3.83 35.2 5.52e-14 0 1 6.51e+03 World StepLimiter - 6635 -0.914 2.86 35.2 5.53e-14 0 1 6.51e+03 World StepLimiter - 6636 -0.664 1.89 35.2 5.54e-14 0 1 6.51e+03 World StepLimiter - 6637 -0.414 0.925 35.2 5.55e-14 0 1 6.51e+03 World StepLimiter - 6638 -0.165 -0.043 35.2 5.56e-14 0 1 6.51e+03 World StepLimiter - 6639 0.0845 -1.01 35.2 5.57e-14 0 1 6.51e+03 World StepLimiter - 6640 0.334 -1.98 35.2 5.58e-14 0 1 6.51e+03 World StepLimiter - 6641 0.582 -2.95 35.2 5.59e-14 0 1 6.51e+03 World StepLimiter - 6642 0.831 -3.92 35.2 5.6e-14 0 1 6.51e+03 World StepLimiter - 6643 1.08 -4.89 35.2 5.61e-14 0 1 6.51e+03 World StepLimiter - 6644 1.33 -5.85 35.2 5.62e-14 0 1 6.52e+03 World StepLimiter - 6645 1.58 -6.82 35.2 5.63e-14 0 1 6.52e+03 World StepLimiter - 6646 1.82 -7.79 35.2 5.64e-14 0 1 6.52e+03 World StepLimiter - 6647 2.07 -8.76 35.2 5.65e-14 0 1 6.52e+03 World StepLimiter - 6648 2.32 -9.73 35.2 5.66e-14 0 1 6.52e+03 World StepLimiter - 6649 2.57 -10.7 35.3 5.67e-14 0 1 6.52e+03 World StepLimiter - 6650 2.81 -11.7 35.3 5.68e-14 0 1 6.52e+03 World StepLimiter - 6651 3.06 -12.6 35.3 5.69e-14 0 1 6.52e+03 World StepLimiter - 6652 3.31 -13.6 35.3 5.7e-14 0 1 6.52e+03 World StepLimiter - 6653 3.55 -14.6 35.3 5.71e-14 0 1 6.52e+03 World StepLimiter - 6654 3.8 -15.5 35.3 5.72e-14 0 1 6.53e+03 World StepLimiter - 6655 4.04 -16.5 35.3 5.73e-14 0 1 6.53e+03 World StepLimiter - 6656 4.29 -17.5 35.3 5.74e-14 0 1 6.53e+03 World StepLimiter - 6657 4.54 -18.5 35.3 5.75e-14 0 1 6.53e+03 World StepLimiter - 6658 4.78 -19.4 35.3 5.76e-14 0 1 6.53e+03 World StepLimiter - 6659 5.03 -20.4 35.3 5.77e-14 0 1 6.53e+03 World StepLimiter - 6660 5.27 -21.4 35.3 5.78e-14 0 1 6.53e+03 World StepLimiter - 6661 5.51 -22.3 35.3 5.79e-14 0 1 6.53e+03 World StepLimiter - 6662 5.76 -23.3 35.3 5.8e-14 0 1 6.53e+03 World StepLimiter - 6663 6 -24.3 35.3 5.81e-14 0 1 6.53e+03 World StepLimiter - 6664 6.25 -25.2 35.3 5.82e-14 0 1 6.54e+03 World StepLimiter - 6665 6.49 -26.2 35.3 5.83e-14 0 1 6.54e+03 World StepLimiter - 6666 6.73 -27.2 35.3 5.84e-14 0 1 6.54e+03 World StepLimiter - 6667 6.98 -28.1 35.3 5.85e-14 0 1 6.54e+03 World StepLimiter - 6668 7.22 -29.1 35.4 5.86e-14 0 1 6.54e+03 World StepLimiter - 6669 7.46 -30.1 35.4 5.87e-14 0 1 6.54e+03 World StepLimiter - 6670 7.71 -31.1 35.4 5.88e-14 0 1 6.54e+03 World StepLimiter - 6671 7.95 -32 35.4 5.89e-14 0 1 6.54e+03 World StepLimiter - 6672 8.19 -33 35.4 5.9e-14 0 1 6.54e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.089439819112neV MomDir: (0.24198627102425,-0.97026551779089,0.0052411469875069) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6673 8.43 -34 35.4 5.91e-14 0 0.999 6.54e+03 Guide Transportation *** StepTooSmall *** - 6674 8.43 -34 35.4 5.91e-14 0 0 6.54e+03 World Transportation - 6675 8.19 -33 35.4 5.9e-14 0 1 6.55e+03 World StepLimiter - 6676 7.95 -32 35.4 5.89e-14 0 1 6.55e+03 World StepLimiter - 6677 7.71 -31.1 35.4 5.88e-14 0 1 6.55e+03 World StepLimiter - 6678 7.47 -30.1 35.4 5.87e-14 0 1 6.55e+03 World StepLimiter - 6679 7.23 -29.1 35.4 5.86e-14 0 1 6.55e+03 World StepLimiter - 6680 6.99 -28.1 35.4 5.85e-14 0 1 6.55e+03 World StepLimiter - 6681 6.75 -27.2 35.4 5.84e-14 0 1 6.55e+03 World StepLimiter - 6682 6.51 -26.2 35.4 5.83e-14 0 1 6.55e+03 World StepLimiter - 6683 6.27 -25.2 35.4 5.82e-14 0 1 6.55e+03 World StepLimiter - 6684 6.02 -24.3 35.4 5.81e-14 0 1 6.55e+03 World StepLimiter - 6685 5.78 -23.3 35.4 5.8e-14 0 1 6.56e+03 World StepLimiter - 6686 5.54 -22.3 35.4 5.79e-14 0 1 6.56e+03 World StepLimiter - 6687 5.3 -21.4 35.4 5.78e-14 0 1 6.56e+03 World StepLimiter - 6688 5.05 -20.4 35.5 5.77e-14 0 1 6.56e+03 World StepLimiter - 6689 4.81 -19.4 35.5 5.76e-14 0 1 6.56e+03 World StepLimiter - 6690 4.57 -18.4 35.5 5.75e-14 0 1 6.56e+03 World StepLimiter - 6691 4.33 -17.5 35.5 5.74e-14 0 1 6.56e+03 World StepLimiter - 6692 4.08 -16.5 35.5 5.73e-14 0 1 6.56e+03 World StepLimiter - 6693 3.84 -15.5 35.5 5.72e-14 0 1 6.56e+03 World StepLimiter - 6694 3.59 -14.6 35.5 5.71e-14 0 1 6.56e+03 World StepLimiter - 6695 3.35 -13.6 35.5 5.7e-14 0 1 6.57e+03 World StepLimiter - 6696 3.11 -12.6 35.5 5.69e-14 0 1 6.57e+03 World StepLimiter - 6697 2.86 -11.7 35.5 5.68e-14 0 1 6.57e+03 World StepLimiter - 6698 2.62 -10.7 35.5 5.67e-14 0 1 6.57e+03 World StepLimiter - 6699 2.37 -9.72 35.5 5.66e-14 0 1 6.57e+03 World StepLimiter - 6700 2.13 -8.75 35.5 5.65e-14 0 1 6.57e+03 World StepLimiter - 6701 1.88 -7.78 35.5 5.64e-14 0 1 6.57e+03 World StepLimiter - 6702 1.63 -6.81 35.5 5.63e-14 0 1 6.57e+03 World StepLimiter - 6703 1.39 -5.84 35.5 5.62e-14 0 1 6.57e+03 World StepLimiter - 6704 1.14 -4.87 35.5 5.61e-14 0 1 6.57e+03 World StepLimiter - 6705 0.897 -3.9 35.5 5.6e-14 0 1 6.58e+03 World StepLimiter - 6706 0.65 -2.93 35.6 5.59e-14 0 1 6.58e+03 World StepLimiter - 6707 0.403 -1.96 35.6 5.58e-14 0 1 6.58e+03 World StepLimiter - 6708 0.156 -0.992 35.6 5.57e-14 0 1 6.58e+03 World StepLimiter - 6709 -0.0907 -0.0232 35.6 5.56e-14 0 1 6.58e+03 World StepLimiter - 6710 -0.338 0.946 35.6 5.55e-14 0 1 6.58e+03 World StepLimiter - 6711 -0.586 1.91 35.6 5.54e-14 0 1 6.58e+03 World StepLimiter - 6712 -0.834 2.88 35.6 5.53e-14 0 1 6.58e+03 World StepLimiter - 6713 -1.08 3.85 35.6 5.52e-14 0 1 6.58e+03 World StepLimiter - 6714 -1.33 4.82 35.6 5.51e-14 0 1 6.58e+03 World StepLimiter - 6715 -1.58 5.79 35.6 5.5e-14 0 1 6.59e+03 World StepLimiter - 6716 -1.83 6.76 35.6 5.49e-14 0 1 6.59e+03 World StepLimiter - 6717 -2.08 7.73 35.6 5.48e-14 0 1 6.59e+03 World StepLimiter - 6718 -2.33 8.69 35.6 5.47e-14 0 1 6.59e+03 World StepLimiter - 6719 -2.57 9.66 35.6 5.46e-14 0 1 6.59e+03 World StepLimiter - 6720 -2.82 10.6 35.6 5.45e-14 0 1 6.59e+03 World StepLimiter - 6721 -3.07 11.6 35.6 5.44e-14 0 1 6.59e+03 World StepLimiter - 6722 -3.32 12.6 35.6 5.43e-14 0 1 6.59e+03 World StepLimiter - 6723 -3.57 13.5 35.6 5.42e-14 0 1 6.59e+03 World StepLimiter - 6724 -3.83 14.5 35.6 5.41e-14 0 1 6.59e+03 World StepLimiter - 6725 -4.08 15.5 35.7 5.4e-14 0 1 6.6e+03 World StepLimiter - 6726 -4.33 16.4 35.7 5.39e-14 0 1 6.6e+03 World StepLimiter - 6727 -4.58 17.4 35.7 5.38e-14 0 1 6.6e+03 World StepLimiter - 6728 -4.83 18.4 35.7 5.37e-14 0 1 6.6e+03 World StepLimiter - 6729 -5.08 19.3 35.7 5.36e-14 0 1 6.6e+03 World StepLimiter - 6730 -5.33 20.3 35.7 5.35e-14 0 1 6.6e+03 World StepLimiter - 6731 -5.59 21.3 35.7 5.34e-14 0 1 6.6e+03 World StepLimiter - 6732 -5.84 22.2 35.7 5.33e-14 0 1 6.6e+03 World StepLimiter - 6733 -6.09 23.2 35.7 5.32e-14 0 1 6.6e+03 World StepLimiter - 6734 -6.34 24.2 35.7 5.31e-14 0 1 6.6e+03 World StepLimiter - 6735 -6.6 25.1 35.7 5.3e-14 0 1 6.61e+03 World StepLimiter - 6736 -6.85 26.1 35.7 5.29e-14 0 1 6.61e+03 World StepLimiter - 6737 -7.1 27.1 35.7 5.28e-14 0 1 6.61e+03 World StepLimiter - 6738 -7.36 28.1 35.7 5.27e-14 0 1 6.61e+03 World StepLimiter - 6739 -7.61 29 35.7 5.26e-14 0 1 6.61e+03 World StepLimiter - 6740 -7.87 30 35.7 5.25e-14 0 1 6.61e+03 World StepLimiter - 6741 -8.12 31 35.7 5.24e-14 0 1 6.61e+03 World StepLimiter - 6742 -8.38 31.9 35.7 5.23e-14 0 1 6.61e+03 World StepLimiter - 6743 -8.63 32.9 35.8 5.22e-14 0 1 6.61e+03 World StepLimiter - 6744 -8.89 33.9 35.8 5.21e-14 0 1 6.61e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.133966708225neV MomDir: (-0.25539308181479,0.96682120336146,0.0055798290150787) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6745 -8.89 33.9 35.8 5.21e-14 0 0.000211 6.61e+03 Guide Transportation *** StepTooSmall *** - 6746 -8.89 33.9 35.8 5.21e-14 0 0 6.61e+03 World Transportation - 6747 -8.63 32.9 35.8 5.22e-14 0 1 6.62e+03 World StepLimiter - 6748 -8.38 31.9 35.8 5.23e-14 0 1 6.62e+03 World StepLimiter - 6749 -8.13 31 35.8 5.24e-14 0 1 6.62e+03 World StepLimiter - 6750 -7.88 30 35.8 5.25e-14 0 1 6.62e+03 World StepLimiter - 6751 -7.63 29 35.8 5.26e-14 0 1 6.62e+03 World StepLimiter - 6752 -7.38 28 35.8 5.27e-14 0 1 6.62e+03 World StepLimiter - 6753 -7.12 27.1 35.8 5.28e-14 0 1 6.62e+03 World StepLimiter - 6754 -6.87 26.1 35.8 5.29e-14 0 1 6.62e+03 World StepLimiter - 6755 -6.62 25.1 35.8 5.3e-14 0 1 6.62e+03 World StepLimiter - 6756 -6.37 24.2 35.8 5.31e-14 0 1 6.62e+03 World StepLimiter - 6757 -6.12 23.2 35.8 5.32e-14 0 1 6.63e+03 World StepLimiter - 6758 -5.87 22.2 35.8 5.33e-14 0 1 6.63e+03 World StepLimiter - 6759 -5.63 21.3 35.8 5.34e-14 0 1 6.63e+03 World StepLimiter - 6760 -5.38 20.3 35.8 5.35e-14 0 1 6.63e+03 World StepLimiter - 6761 -5.13 19.3 35.8 5.36e-14 0 1 6.63e+03 World StepLimiter - 6762 -4.88 18.4 35.8 5.37e-14 0 1 6.63e+03 World StepLimiter - 6763 -4.63 17.4 35.9 5.38e-14 0 1 6.63e+03 World StepLimiter - 6764 -4.38 16.4 35.9 5.39e-14 0 1 6.63e+03 World StepLimiter - 6765 -4.13 15.5 35.9 5.4e-14 0 1 6.63e+03 World StepLimiter - 6766 -3.89 14.5 35.9 5.41e-14 0 1 6.63e+03 World StepLimiter - 6767 -3.64 13.5 35.9 5.42e-14 0 1 6.64e+03 World StepLimiter - 6768 -3.39 12.6 35.9 5.43e-14 0 1 6.64e+03 World StepLimiter - 6769 -3.14 11.6 35.9 5.44e-14 0 1 6.64e+03 World StepLimiter - 6770 -2.9 10.6 35.9 5.45e-14 0 1 6.64e+03 World StepLimiter - 6771 -2.65 9.64 35.9 5.46e-14 0 1 6.64e+03 World StepLimiter - 6772 -2.4 8.67 35.9 5.47e-14 0 1 6.64e+03 World StepLimiter - 6773 -2.16 7.71 35.9 5.48e-14 0 1 6.64e+03 World StepLimiter - 6774 -1.91 6.74 35.9 5.49e-14 0 1 6.64e+03 World StepLimiter - 6775 -1.67 5.77 35.9 5.5e-14 0 1 6.64e+03 World StepLimiter - 6776 -1.42 4.8 35.9 5.51e-14 0 1 6.64e+03 World StepLimiter - 6777 -1.18 3.83 35.9 5.52e-14 0 1 6.65e+03 World StepLimiter - 6778 -0.93 2.86 35.9 5.53e-14 0 1 6.65e+03 World StepLimiter - 6779 -0.685 1.89 35.9 5.54e-14 0 1 6.65e+03 World StepLimiter - 6780 -0.441 0.919 35.9 5.55e-14 0 1 6.65e+03 World StepLimiter - 6781 -0.196 -0.0502 36 5.56e-14 0 1 6.65e+03 World StepLimiter - 6782 0.0481 -1.02 36 5.57e-14 0 1 6.65e+03 World StepLimiter - 6783 0.292 -1.99 36 5.58e-14 0 1 6.65e+03 World StepLimiter - 6784 0.536 -2.96 36 5.59e-14 0 1 6.65e+03 World StepLimiter - 6785 0.779 -3.93 36 5.6e-14 0 1 6.65e+03 World StepLimiter - 6786 1.02 -4.9 36 5.61e-14 0 1 6.65e+03 World StepLimiter - 6787 1.27 -5.87 36 5.62e-14 0 1 6.66e+03 World StepLimiter - 6788 1.51 -6.84 36 5.63e-14 0 1 6.66e+03 World StepLimiter - 6789 1.75 -7.81 36 5.64e-14 0 1 6.66e+03 World StepLimiter - 6790 1.99 -8.78 36 5.65e-14 0 1 6.66e+03 World StepLimiter - 6791 2.24 -9.75 36 5.66e-14 0 1 6.66e+03 World StepLimiter - 6792 2.48 -10.7 36 5.67e-14 0 1 6.66e+03 World StepLimiter - 6793 2.72 -11.7 36 5.68e-14 0 1 6.66e+03 World StepLimiter - 6794 2.96 -12.7 36 5.69e-14 0 1 6.66e+03 World StepLimiter - 6795 3.2 -13.6 36 5.7e-14 0 1 6.66e+03 World StepLimiter - 6796 3.44 -14.6 36 5.71e-14 0 1 6.66e+03 World StepLimiter - 6797 3.69 -15.6 36 5.72e-14 0 1 6.67e+03 World StepLimiter - 6798 3.93 -16.5 36 5.73e-14 0 1 6.67e+03 World StepLimiter - 6799 4.17 -17.5 36 5.74e-14 0 1 6.67e+03 World StepLimiter - 6800 4.41 -18.5 36.1 5.75e-14 0 1 6.67e+03 World StepLimiter - 6801 4.65 -19.5 36.1 5.76e-14 0 1 6.67e+03 World StepLimiter - 6802 4.89 -20.4 36.1 5.77e-14 0 1 6.67e+03 World StepLimiter - 6803 5.13 -21.4 36.1 5.78e-14 0 1 6.67e+03 World StepLimiter - 6804 5.37 -22.4 36.1 5.79e-14 0 1 6.67e+03 World StepLimiter - 6805 5.61 -23.3 36.1 5.8e-14 0 1 6.67e+03 World StepLimiter - 6806 5.85 -24.3 36.1 5.81e-14 0 1 6.67e+03 World StepLimiter - 6807 6.08 -25.3 36.1 5.82e-14 0 1 6.68e+03 World StepLimiter - 6808 6.32 -26.3 36.1 5.83e-14 0 1 6.68e+03 World StepLimiter - 6809 6.56 -27.2 36.1 5.84e-14 0 1 6.68e+03 World StepLimiter - 6810 6.8 -28.2 36.1 5.85e-14 0 1 6.68e+03 World StepLimiter - 6811 7.04 -29.2 36.1 5.86e-14 0 1 6.68e+03 World StepLimiter - 6812 7.28 -30.1 36.1 5.87e-14 0 1 6.68e+03 World StepLimiter - 6813 7.51 -31.1 36.1 5.88e-14 0 1 6.68e+03 World StepLimiter - 6814 7.75 -32.1 36.1 5.89e-14 0 1 6.68e+03 World StepLimiter - 6815 7.99 -33 36.1 5.9e-14 0 1 6.68e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.094668847011neV MomDir: (0.2370097502771,-0.97149313486123,0.0052409150993295) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6816 8.22 -34 36.1 5.91e-14 0 0.998 6.68e+03 Guide Transportation *** StepTooSmall *** - 6817 8.22 -34 36.1 5.91e-14 0 0 6.68e+03 World Transportation - 6818 7.99 -33 36.1 5.9e-14 0 1 6.69e+03 World StepLimiter - 6819 7.76 -32.1 36.1 5.89e-14 0 1 6.69e+03 World StepLimiter - 6820 7.53 -31.1 36.2 5.88e-14 0 1 6.69e+03 World StepLimiter - 6821 7.29 -30.1 36.2 5.87e-14 0 1 6.69e+03 World StepLimiter - 6822 7.06 -29.2 36.2 5.86e-14 0 1 6.69e+03 World StepLimiter - 6823 6.82 -28.2 36.2 5.85e-14 0 1 6.69e+03 World StepLimiter - 6824 6.59 -27.2 36.2 5.84e-14 0 1 6.69e+03 World StepLimiter - 6825 6.35 -26.2 36.2 5.83e-14 0 1 6.69e+03 World StepLimiter - 6826 6.12 -25.3 36.2 5.82e-14 0 1 6.69e+03 World StepLimiter - 6827 5.89 -24.3 36.2 5.81e-14 0 1 6.69e+03 World StepLimiter - 6828 5.65 -23.3 36.2 5.8e-14 0 1 6.7e+03 World StepLimiter - 6829 5.41 -22.4 36.2 5.79e-14 0 1 6.7e+03 World StepLimiter - 6830 5.18 -21.4 36.2 5.78e-14 0 1 6.7e+03 World StepLimiter - 6831 4.94 -20.4 36.2 5.77e-14 0 1 6.7e+03 World StepLimiter - 6832 4.71 -19.4 36.2 5.76e-14 0 1 6.7e+03 World StepLimiter - 6833 4.47 -18.5 36.2 5.75e-14 0 1 6.7e+03 World StepLimiter - 6834 4.24 -17.5 36.2 5.74e-14 0 1 6.7e+03 World StepLimiter - 6835 4 -16.5 36.2 5.73e-14 0 1 6.7e+03 World StepLimiter - 6836 3.76 -15.6 36.2 5.72e-14 0 1 6.7e+03 World StepLimiter - 6837 3.53 -14.6 36.2 5.71e-14 0 1 6.7e+03 World StepLimiter - 6838 3.29 -13.6 36.2 5.7e-14 0 1 6.71e+03 World StepLimiter - 6839 3.05 -12.6 36.3 5.69e-14 0 1 6.71e+03 World StepLimiter - 6840 2.81 -11.7 36.3 5.68e-14 0 1 6.71e+03 World StepLimiter - 6841 2.58 -10.7 36.3 5.67e-14 0 1 6.71e+03 World StepLimiter - 6842 2.34 -9.72 36.3 5.66e-14 0 1 6.71e+03 World StepLimiter - 6843 2.1 -8.75 36.3 5.65e-14 0 1 6.71e+03 World StepLimiter - 6844 1.86 -7.78 36.3 5.64e-14 0 1 6.71e+03 World StepLimiter - 6845 1.62 -6.81 36.3 5.63e-14 0 1 6.71e+03 World StepLimiter - 6846 1.38 -5.84 36.3 5.62e-14 0 1 6.71e+03 World StepLimiter - 6847 1.14 -4.87 36.3 5.61e-14 0 1 6.71e+03 World StepLimiter - 6848 0.906 -3.9 36.3 5.6e-14 0 1 6.72e+03 World StepLimiter - 6849 0.666 -2.93 36.3 5.59e-14 0 1 6.72e+03 World StepLimiter - 6850 0.427 -1.96 36.3 5.58e-14 0 1 6.72e+03 World StepLimiter - 6851 0.187 -0.984 36.3 5.57e-14 0 1 6.72e+03 World StepLimiter - 6852 -0.0533 -0.0135 36.3 5.56e-14 0 1 6.72e+03 World StepLimiter - 6853 -0.294 0.957 36.3 5.55e-14 0 1 6.72e+03 World StepLimiter - 6854 -0.534 1.93 36.3 5.54e-14 0 1 6.72e+03 World StepLimiter - 6855 -0.775 2.9 36.3 5.53e-14 0 1 6.72e+03 World StepLimiter - 6856 -1.02 3.87 36.3 5.52e-14 0 1 6.72e+03 World StepLimiter - 6857 -1.26 4.84 36.4 5.51e-14 0 1 6.72e+03 World StepLimiter - 6858 -1.5 5.81 36.4 5.5e-14 0 1 6.73e+03 World StepLimiter - 6859 -1.74 6.78 36.4 5.49e-14 0 1 6.73e+03 World StepLimiter - 6860 -1.98 7.75 36.4 5.48e-14 0 1 6.73e+03 World StepLimiter - 6861 -2.22 8.72 36.4 5.47e-14 0 1 6.73e+03 World StepLimiter - 6862 -2.47 9.69 36.4 5.46e-14 0 1 6.73e+03 World StepLimiter - 6863 -2.71 10.7 36.4 5.45e-14 0 1 6.73e+03 World StepLimiter - 6864 -2.95 11.6 36.4 5.44e-14 0 1 6.73e+03 World StepLimiter - 6865 -3.19 12.6 36.4 5.43e-14 0 1 6.73e+03 World StepLimiter - 6866 -3.44 13.6 36.4 5.42e-14 0 1 6.73e+03 World StepLimiter - 6867 -3.68 14.5 36.4 5.41e-14 0 1 6.73e+03 World StepLimiter - 6868 -3.92 15.5 36.4 5.4e-14 0 1 6.74e+03 World StepLimiter - 6869 -4.17 16.5 36.4 5.39e-14 0 1 6.74e+03 World StepLimiter - 6870 -4.41 17.5 36.4 5.38e-14 0 1 6.74e+03 World StepLimiter - 6871 -4.66 18.4 36.4 5.37e-14 0 1 6.74e+03 World StepLimiter - 6872 -4.9 19.4 36.4 5.36e-14 0 1 6.74e+03 World StepLimiter - 6873 -5.15 20.4 36.4 5.35e-14 0 1 6.74e+03 World StepLimiter - 6874 -5.39 21.3 36.4 5.34e-14 0 1 6.74e+03 World StepLimiter - 6875 -5.64 22.3 36.4 5.33e-14 0 1 6.74e+03 World StepLimiter - 6876 -5.88 23.3 36.5 5.32e-14 0 1 6.74e+03 World StepLimiter - 6877 -6.13 24.2 36.5 5.31e-14 0 1 6.74e+03 World StepLimiter - 6878 -6.37 25.2 36.5 5.3e-14 0 1 6.75e+03 World StepLimiter - 6879 -6.62 26.2 36.5 5.29e-14 0 1 6.75e+03 World StepLimiter - 6880 -6.86 27.1 36.5 5.28e-14 0 1 6.75e+03 World StepLimiter - 6881 -7.11 28.1 36.5 5.27e-14 0 1 6.75e+03 World StepLimiter - 6882 -7.36 29.1 36.5 5.26e-14 0 1 6.75e+03 World StepLimiter - 6883 -7.6 30.1 36.5 5.25e-14 0 1 6.75e+03 World StepLimiter - 6884 -7.85 31 36.5 5.24e-14 0 1 6.75e+03 World StepLimiter - 6885 -8.1 32 36.5 5.23e-14 0 1 6.75e+03 World StepLimiter - 6886 -8.35 33 36.5 5.22e-14 0 1 6.75e+03 World StepLimiter - 6887 -8.6 33.9 36.5 5.21e-14 0 1 6.75e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.126293653147neV MomDir: (-0.24805958848303,0.96872870375908,0.0055802396788425) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6888 -8.6 33.9 36.5 5.21e-14 0 0.000686 6.75e+03 Guide Transportation *** StepTooSmall *** - 6889 -8.6 33.9 36.5 5.21e-14 0 0 6.75e+03 World Transportation - 6890 -8.35 33 36.5 5.22e-14 0 1 6.76e+03 World StepLimiter - 6891 -8.11 32 36.5 5.23e-14 0 1 6.76e+03 World StepLimiter - 6892 -7.87 31 36.5 5.24e-14 0 1 6.76e+03 World StepLimiter - 6893 -7.62 30 36.5 5.25e-14 0 1 6.76e+03 World StepLimiter - 6894 -7.38 29.1 36.5 5.26e-14 0 1 6.76e+03 World StepLimiter - 6895 -7.14 28.1 36.5 5.27e-14 0 1 6.76e+03 World StepLimiter - 6896 -6.9 27.1 36.6 5.28e-14 0 1 6.76e+03 World StepLimiter - 6897 -6.66 26.2 36.6 5.29e-14 0 1 6.76e+03 World StepLimiter - 6898 -6.42 25.2 36.6 5.3e-14 0 1 6.76e+03 World StepLimiter - 6899 -6.18 24.2 36.6 5.31e-14 0 1 6.76e+03 World StepLimiter - 6900 -5.94 23.3 36.6 5.32e-14 0 1 6.77e+03 World StepLimiter - 6901 -5.69 22.3 36.6 5.33e-14 0 1 6.77e+03 World StepLimiter - 6902 -5.45 21.3 36.6 5.34e-14 0 1 6.77e+03 World StepLimiter - 6903 -5.21 20.3 36.6 5.35e-14 0 1 6.77e+03 World StepLimiter - 6904 -4.97 19.4 36.6 5.36e-14 0 1 6.77e+03 World StepLimiter - 6905 -4.74 18.4 36.6 5.37e-14 0 1 6.77e+03 World StepLimiter - 6906 -4.5 17.4 36.6 5.38e-14 0 1 6.77e+03 World StepLimiter - 6907 -4.26 16.5 36.6 5.39e-14 0 1 6.77e+03 World StepLimiter - 6908 -4.02 15.5 36.6 5.4e-14 0 1 6.77e+03 World StepLimiter - 6909 -3.78 14.5 36.6 5.41e-14 0 1 6.77e+03 World StepLimiter - 6910 -3.54 13.5 36.6 5.42e-14 0 1 6.78e+03 World StepLimiter - 6911 -3.3 12.6 36.6 5.43e-14 0 1 6.78e+03 World StepLimiter - 6912 -3.06 11.6 36.6 5.44e-14 0 1 6.78e+03 World StepLimiter - 6913 -2.83 10.6 36.6 5.45e-14 0 1 6.78e+03 World StepLimiter - 6914 -2.59 9.66 36.7 5.46e-14 0 1 6.78e+03 World StepLimiter - 6915 -2.35 8.69 36.7 5.47e-14 0 1 6.78e+03 World StepLimiter - 6916 -2.11 7.72 36.7 5.48e-14 0 1 6.78e+03 World StepLimiter - 6917 -1.88 6.75 36.7 5.49e-14 0 1 6.78e+03 World StepLimiter - 6918 -1.64 5.77 36.7 5.5e-14 0 1 6.78e+03 World StepLimiter - 6919 -1.4 4.8 36.7 5.51e-14 0 1 6.78e+03 World StepLimiter - 6920 -1.17 3.83 36.7 5.52e-14 0 1 6.79e+03 World StepLimiter - 6921 -0.932 2.86 36.7 5.53e-14 0 1 6.79e+03 World StepLimiter - 6922 -0.696 1.89 36.7 5.54e-14 0 1 6.79e+03 World StepLimiter - 6923 -0.46 0.916 36.7 5.55e-14 0 1 6.79e+03 World StepLimiter - 6924 -0.225 -0.0555 36.7 5.56e-14 0 1 6.79e+03 World StepLimiter - 6925 0.0105 -1.03 36.7 5.57e-14 0 1 6.79e+03 World StepLimiter - 6926 0.246 -2 36.7 5.58e-14 0 1 6.79e+03 World StepLimiter - 6927 0.48 -2.97 36.7 5.59e-14 0 1 6.79e+03 World StepLimiter - 6928 0.715 -3.94 36.7 5.6e-14 0 1 6.79e+03 World StepLimiter - 6929 0.949 -4.92 36.7 5.61e-14 0 1 6.79e+03 World StepLimiter - 6930 1.18 -5.89 36.7 5.62e-14 0 1 6.8e+03 World StepLimiter - 6931 1.42 -6.86 36.7 5.63e-14 0 1 6.8e+03 World StepLimiter - 6932 1.65 -7.83 36.8 5.64e-14 0 1 6.8e+03 World StepLimiter - 6933 1.88 -8.8 36.8 5.65e-14 0 1 6.8e+03 World StepLimiter - 6934 2.12 -9.78 36.8 5.66e-14 0 1 6.8e+03 World StepLimiter - 6935 2.35 -10.7 36.8 5.67e-14 0 1 6.8e+03 World StepLimiter - 6936 2.58 -11.7 36.8 5.68e-14 0 1 6.8e+03 World StepLimiter - 6937 2.82 -12.7 36.8 5.69e-14 0 1 6.8e+03 World StepLimiter - 6938 3.05 -13.7 36.8 5.7e-14 0 1 6.8e+03 World StepLimiter - 6939 3.28 -14.6 36.8 5.71e-14 0 1 6.8e+03 World StepLimiter - 6940 3.51 -15.6 36.8 5.72e-14 0 1 6.81e+03 World StepLimiter - 6941 3.75 -16.6 36.8 5.73e-14 0 1 6.81e+03 World StepLimiter - 6942 3.98 -17.6 36.8 5.74e-14 0 1 6.81e+03 World StepLimiter - 6943 4.21 -18.5 36.8 5.75e-14 0 1 6.81e+03 World StepLimiter - 6944 4.44 -19.5 36.8 5.76e-14 0 1 6.81e+03 World StepLimiter - 6945 4.67 -20.5 36.8 5.77e-14 0 1 6.81e+03 World StepLimiter - 6946 4.9 -21.4 36.8 5.78e-14 0 1 6.81e+03 World StepLimiter - 6947 5.13 -22.4 36.8 5.79e-14 0 1 6.81e+03 World StepLimiter - 6948 5.36 -23.4 36.8 5.8e-14 0 1 6.81e+03 World StepLimiter - 6949 5.59 -24.4 36.8 5.81e-14 0 1 6.81e+03 World StepLimiter - 6950 5.82 -25.3 36.8 5.82e-14 0 1 6.82e+03 World StepLimiter - 6951 6.05 -26.3 36.9 5.83e-14 0 1 6.82e+03 World StepLimiter - 6952 6.28 -27.3 36.9 5.84e-14 0 1 6.82e+03 World StepLimiter - 6953 6.51 -28.3 36.9 5.85e-14 0 1 6.82e+03 World StepLimiter - 6954 6.74 -29.2 36.9 5.86e-14 0 1 6.82e+03 World StepLimiter - 6955 6.97 -30.2 36.9 5.87e-14 0 1 6.82e+03 World StepLimiter - 6956 7.2 -31.2 36.9 5.88e-14 0 1 6.82e+03 World StepLimiter - 6957 7.43 -32.2 36.9 5.89e-14 0 1 6.82e+03 World StepLimiter - 6958 7.66 -33.1 36.9 5.9e-14 0 1 6.82e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.102870721143neV MomDir: (0.22829359649444,-0.97357823025182,0.0052405514383359) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 6959 7.89 -34.1 36.9 5.91e-14 0 0.998 6.82e+03 Guide Transportation *** StepTooSmall *** - 6960 7.89 -34.1 36.9 5.91e-14 0 0 6.82e+03 World Transportation - 6961 7.66 -33.1 36.9 5.9e-14 0 1 6.83e+03 World StepLimiter - 6962 7.44 -32.2 36.9 5.89e-14 0 1 6.83e+03 World StepLimiter - 6963 7.22 -31.2 36.9 5.88e-14 0 1 6.83e+03 World StepLimiter - 6964 7 -30.2 36.9 5.87e-14 0 1 6.83e+03 World StepLimiter - 6965 6.77 -29.2 36.9 5.86e-14 0 1 6.83e+03 World StepLimiter - 6966 6.55 -28.3 36.9 5.85e-14 0 1 6.83e+03 World StepLimiter - 6967 6.33 -27.3 36.9 5.84e-14 0 1 6.83e+03 World StepLimiter - 6968 6.1 -26.3 36.9 5.83e-14 0 1 6.83e+03 World StepLimiter - 6969 5.88 -25.3 36.9 5.82e-14 0 1 6.83e+03 World StepLimiter - 6970 5.65 -24.4 36.9 5.81e-14 0 1 6.83e+03 World StepLimiter - 6971 5.43 -23.4 37 5.8e-14 0 1 6.84e+03 World StepLimiter - 6972 5.2 -22.4 37 5.79e-14 0 1 6.84e+03 World StepLimiter - 6973 4.98 -21.4 37 5.78e-14 0 1 6.84e+03 World StepLimiter - 6974 4.75 -20.5 37 5.77e-14 0 1 6.84e+03 World StepLimiter - 6975 4.53 -19.5 37 5.76e-14 0 1 6.84e+03 World StepLimiter - 6976 4.3 -18.5 37 5.75e-14 0 1 6.84e+03 World StepLimiter - 6977 4.08 -17.5 37 5.74e-14 0 1 6.84e+03 World StepLimiter - 6978 3.85 -16.6 37 5.73e-14 0 1 6.84e+03 World StepLimiter - 6979 3.63 -15.6 37 5.72e-14 0 1 6.84e+03 World StepLimiter - 6980 3.4 -14.6 37 5.71e-14 0 1 6.84e+03 World StepLimiter - 6981 3.17 -13.6 37 5.7e-14 0 1 6.85e+03 World StepLimiter - 6982 2.95 -12.7 37 5.69e-14 0 1 6.85e+03 World StepLimiter - 6983 2.72 -11.7 37 5.68e-14 0 1 6.85e+03 World StepLimiter - 6984 2.49 -10.7 37 5.67e-14 0 1 6.85e+03 World StepLimiter - 6985 2.27 -9.74 37 5.66e-14 0 1 6.85e+03 World StepLimiter - 6986 2.04 -8.77 37 5.65e-14 0 1 6.85e+03 World StepLimiter - 6987 1.81 -7.79 37 5.64e-14 0 1 6.85e+03 World StepLimiter - 6988 1.58 -6.82 37 5.63e-14 0 1 6.85e+03 World StepLimiter - 6989 1.36 -5.84 37 5.62e-14 0 1 6.85e+03 World StepLimiter - 6990 1.13 -4.87 37.1 5.61e-14 0 1 6.85e+03 World StepLimiter - 6991 0.901 -3.9 37.1 5.6e-14 0 1 6.86e+03 World StepLimiter - 6992 0.672 -2.92 37.1 5.59e-14 0 1 6.86e+03 World StepLimiter - 6993 0.443 -1.95 37.1 5.58e-14 0 1 6.86e+03 World StepLimiter - 6994 0.214 -0.977 37.1 5.57e-14 0 1 6.86e+03 World StepLimiter - 6995 -0.0149 -0.00402 37.1 5.56e-14 0 1 6.86e+03 World StepLimiter - 6996 -0.244 0.969 37.1 5.55e-14 0 1 6.86e+03 World StepLimiter - 6997 -0.474 1.94 37.1 5.54e-14 0 1 6.86e+03 World StepLimiter - 6998 -0.704 2.92 37.1 5.53e-14 0 1 6.86e+03 World StepLimiter - 6999 -0.934 3.89 37.1 5.52e-14 0 1 6.86e+03 World StepLimiter - 7000 -1.16 4.86 37.1 5.51e-14 0 1 6.86e+03 World StepLimiter - 7001 -1.39 5.84 37.1 5.5e-14 0 1 6.87e+03 World StepLimiter - 7002 -1.62 6.81 37.1 5.49e-14 0 1 6.87e+03 World StepLimiter - 7003 -1.86 7.78 37.1 5.48e-14 0 1 6.87e+03 World StepLimiter - 7004 -2.09 8.75 37.1 5.47e-14 0 1 6.87e+03 World StepLimiter - 7005 -2.32 9.73 37.1 5.46e-14 0 1 6.87e+03 World StepLimiter - 7006 -2.55 10.7 37.1 5.45e-14 0 1 6.87e+03 World StepLimiter - 7007 -2.78 11.7 37.1 5.44e-14 0 1 6.87e+03 World StepLimiter - 7008 -3.01 12.6 37.2 5.43e-14 0 1 6.87e+03 World StepLimiter - 7009 -3.24 13.6 37.2 5.42e-14 0 1 6.87e+03 World StepLimiter - 7010 -3.48 14.6 37.2 5.41e-14 0 1 6.87e+03 World StepLimiter - 7011 -3.71 15.6 37.2 5.4e-14 0 1 6.88e+03 World StepLimiter - 7012 -3.94 16.5 37.2 5.39e-14 0 1 6.88e+03 World StepLimiter - 7013 -4.18 17.5 37.2 5.38e-14 0 1 6.88e+03 World StepLimiter - 7014 -4.41 18.5 37.2 5.37e-14 0 1 6.88e+03 World StepLimiter - 7015 -4.64 19.5 37.2 5.36e-14 0 1 6.88e+03 World StepLimiter - 7016 -4.88 20.4 37.2 5.35e-14 0 1 6.88e+03 World StepLimiter - 7017 -5.11 21.4 37.2 5.34e-14 0 1 6.88e+03 World StepLimiter - 7018 -5.34 22.4 37.2 5.33e-14 0 1 6.88e+03 World StepLimiter - 7019 -5.58 23.3 37.2 5.32e-14 0 1 6.88e+03 World StepLimiter - 7020 -5.81 24.3 37.2 5.31e-14 0 1 6.88e+03 World StepLimiter - 7021 -6.05 25.3 37.2 5.3e-14 0 1 6.89e+03 World StepLimiter - 7022 -6.28 26.3 37.2 5.29e-14 0 1 6.89e+03 World StepLimiter - 7023 -6.52 27.2 37.2 5.28e-14 0 1 6.89e+03 World StepLimiter - 7024 -6.75 28.2 37.2 5.27e-14 0 1 6.89e+03 World StepLimiter - 7025 -6.99 29.2 37.2 5.26e-14 0 1 6.89e+03 World StepLimiter - 7026 -7.22 30.1 37.3 5.25e-14 0 1 6.89e+03 World StepLimiter - 7027 -7.46 31.1 37.3 5.24e-14 0 1 6.89e+03 World StepLimiter - 7028 -7.7 32.1 37.3 5.23e-14 0 1 6.89e+03 World StepLimiter - 7029 -7.93 33.1 37.3 5.22e-14 0 1 6.89e+03 World StepLimiter - 7030 -8.17 34 37.3 5.21e-14 0 1 6.89e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.115510800974neV MomDir: (-0.23680700520956,0.97154068199229,0.0055808169329705) G4UCNBoundaryProcess -> BELOW critical velocity *** MR Model Diffuse Reflection *** - 7031 -8.17 34 37.3 5.21e-14 0 0.00106 6.89e+03 Guide Transportation *** StepTooSmall *** - 7032 -8.17 34 37.3 5.21e-14 0 0 6.89e+03 World Transportation - 7033 -7.45 33.6 37.8 5.22e-14 0 1 6.9e+03 World StepLimiter - 7034 -6.74 33.2 38.4 5.22e-14 0 1 6.9e+03 World StepLimiter - 7035 -6.03 32.8 39 5.22e-14 0 1 6.9e+03 World StepLimiter - 7036 -5.31 32.4 39.5 5.23e-14 0 1 6.9e+03 World StepLimiter - 7037 -4.6 32 40.1 5.23e-14 0 1 6.9e+03 World StepLimiter - 7038 -3.89 31.6 40.7 5.24e-14 0 1 6.9e+03 World StepLimiter - 7039 -3.18 31.2 41.2 5.24e-14 0 1 6.9e+03 World StepLimiter - 7040 -2.46 30.7 41.8 5.25e-14 0 1 6.9e+03 World StepLimiter - 7041 -1.75 30.3 42.4 5.25e-14 0 1 6.9e+03 World StepLimiter - 7042 -1.04 29.9 42.9 5.25e-14 0 1 6.9e+03 World StepLimiter - 7043 -0.328 29.5 43.5 5.26e-14 0 1 6.91e+03 World StepLimiter - 7044 0.383 29.1 44.1 5.26e-14 0 1 6.91e+03 World StepLimiter - 7045 1.09 28.7 44.6 5.27e-14 0 1 6.91e+03 World StepLimiter - 7046 1.8 28.2 45.2 5.27e-14 0 1 6.91e+03 World StepLimiter - 7047 2.51 27.8 45.8 5.28e-14 0 1 6.91e+03 World StepLimiter - 7048 3.22 27.4 46.3 5.28e-14 0 1 6.91e+03 World StepLimiter - 7049 3.93 27 46.9 5.28e-14 0 1 6.91e+03 World StepLimiter - 7050 4.64 26.6 47.5 5.29e-14 0 1 6.91e+03 World StepLimiter - 7051 5.35 26.1 48 5.29e-14 0 1 6.91e+03 World StepLimiter - 7052 6.06 25.7 48.6 5.3e-14 0 1 6.91e+03 World StepLimiter - 7053 6.77 25.3 49.2 5.3e-14 0 1 6.92e+03 World StepLimiter - 7054 7.48 24.9 49.7 5.31e-14 0 1 6.92e+03 World StepLimiter - 7055 8.19 24.4 50.3 5.31e-14 0 1 6.92e+03 World StepLimiter - 7056 8.89 24 50.9 5.31e-14 0 1 6.92e+03 World StepLimiter - 7057 9.6 23.6 51.4 5.32e-14 0 1 6.92e+03 World StepLimiter - 7058 10.3 23.2 52 5.32e-14 0 1 6.92e+03 World StepLimiter - 7059 11 22.7 52.5 5.33e-14 0 1 6.92e+03 World StepLimiter - 7060 11.7 22.3 53.1 5.33e-14 0 1 6.92e+03 World StepLimiter - 7061 12.4 21.9 53.7 5.34e-14 0 1 6.92e+03 World StepLimiter - 7062 13.1 21.4 54.2 5.34e-14 0 1 6.92e+03 World StepLimiter - 7063 13.8 21 54.8 5.35e-14 0 1 6.93e+03 World StepLimiter - 7064 14.5 20.6 55.3 5.35e-14 0 1 6.93e+03 World StepLimiter - 7065 15.2 20.1 55.9 5.35e-14 0 1 6.93e+03 World StepLimiter - 7066 16 19.7 56.5 5.36e-14 0 1 6.93e+03 World StepLimiter - 7067 16.7 19.3 57 5.36e-14 0 1 6.93e+03 World StepLimiter - 7068 17.4 18.8 57.6 5.37e-14 0 1 6.93e+03 World StepLimiter - 7069 18.1 18.4 58.1 5.37e-14 0 1 6.93e+03 World StepLimiter - 7070 18.8 17.9 58.7 5.38e-14 0 1 6.93e+03 World StepLimiter - 7071 19.5 17.5 59.3 5.38e-14 0 1 6.93e+03 World StepLimiter - 7072 20.2 17.1 59.8 5.39e-14 0 1 6.93e+03 World StepLimiter - 7073 20.9 16.6 60.4 5.39e-14 0 1 6.94e+03 World StepLimiter - 7074 21.6 16.2 60.9 5.39e-14 0 1 6.94e+03 World StepLimiter - 7075 22.3 15.7 61.5 5.4e-14 0 1 6.94e+03 World StepLimiter - 7076 23 15.3 62.1 5.4e-14 0 1 6.94e+03 World StepLimiter - 7077 23.7 14.9 62.6 5.41e-14 0 1 6.94e+03 World StepLimiter - 7078 24.4 14.4 63.2 5.41e-14 0 1 6.94e+03 World StepLimiter - 7079 25.1 14 63.7 5.42e-14 0 1 6.94e+03 World StepLimiter - 7080 25.8 13.5 64.3 5.42e-14 0 1 6.94e+03 World StepLimiter - 7081 26.5 13.1 64.9 5.43e-14 0 1 6.94e+03 World StepLimiter - 7082 27.2 12.6 65.4 5.43e-14 0 1 6.94e+03 World StepLimiter - 7083 27.9 12.2 66 5.44e-14 0 1 6.95e+03 World StepLimiter - 7084 28.6 11.7 66.5 5.44e-14 0 1 6.95e+03 World StepLimiter - 7085 29.3 11.3 67.1 5.44e-14 0 1 6.95e+03 World StepLimiter - 7086 30 10.8 67.6 5.45e-14 0 1 6.95e+03 World StepLimiter - 7087 30.7 10.4 68.2 5.45e-14 0 1 6.95e+03 World StepLimiter - 7088 31.4 9.94 68.7 5.46e-14 0 1 6.95e+03 World StepLimiter - 7089 32.1 9.49 69.3 5.46e-14 0 1 6.95e+03 World StepLimiter - 7090 32.8 9.03 69.9 5.47e-14 0 1 6.95e+03 World StepLimiter - 7091 33.5 8.58 70.4 5.47e-14 0 1 6.95e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 54.76243652602neV MomDir: (0.69691111717517,-0.45468808563316,0.55459321988365) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7092 34 8.22 70.8 5.48e-14 0 0.784 6.95e+03 Guide Transportation *** StepTooSmall *** - 7093 34 8.22 70.8 5.48e-14 0 0 6.95e+03 World Transportation - 7094 33.6 7.5 71.4 5.48e-14 0 1 6.96e+03 World StepLimiter - 7095 33.2 6.78 72 5.49e-14 0 1 6.96e+03 World StepLimiter - 7096 32.8 6.05 72.5 5.5e-14 0 1 6.96e+03 World StepLimiter - 7097 32.4 5.33 73.1 5.51e-14 0 1 6.96e+03 World StepLimiter - 7098 32 4.6 73.6 5.51e-14 0 1 6.96e+03 World StepLimiter - 7099 31.6 3.88 74.2 5.52e-14 0 1 6.96e+03 World StepLimiter - 7100 31.1 3.15 74.7 5.53e-14 0 1 6.96e+03 World StepLimiter - 7101 30.7 2.43 75.3 5.54e-14 0 1 6.96e+03 World StepLimiter - 7102 30.3 1.7 75.8 5.54e-14 0 1 6.96e+03 World StepLimiter - 7103 29.9 0.973 76.4 5.55e-14 0 1 6.96e+03 World StepLimiter - 7104 29.5 0.246 76.9 5.56e-14 0 1 6.97e+03 World StepLimiter - 7105 29.1 -0.482 77.5 5.57e-14 0 1 6.97e+03 World StepLimiter - 7106 28.7 -1.21 78 5.57e-14 0 1 6.97e+03 World StepLimiter - 7107 28.3 -1.94 78.6 5.58e-14 0 1 6.97e+03 World StepLimiter - 7108 27.9 -2.67 79.1 5.59e-14 0 1 6.97e+03 World StepLimiter - 7109 27.5 -3.4 79.7 5.6e-14 0 1 6.97e+03 World StepLimiter - 7110 27.1 -4.13 80.2 5.6e-14 0 1 6.97e+03 World StepLimiter - 7111 26.6 -4.86 80.8 5.61e-14 0 1 6.97e+03 World StepLimiter - 7112 26.2 -5.59 81.3 5.62e-14 0 1 6.97e+03 World StepLimiter - 7113 25.8 -6.32 81.9 5.63e-14 0 1 6.97e+03 World StepLimiter - 7114 25.4 -7.05 82.4 5.63e-14 0 1 6.98e+03 World StepLimiter - 7115 25 -7.78 83 5.64e-14 0 1 6.98e+03 World StepLimiter - 7116 24.6 -8.52 83.5 5.65e-14 0 1 6.98e+03 World StepLimiter - 7117 24.2 -9.25 84.1 5.66e-14 0 1 6.98e+03 World StepLimiter - 7118 23.8 -9.98 84.6 5.66e-14 0 1 6.98e+03 World StepLimiter - 7119 23.4 -10.7 85.1 5.67e-14 0 1 6.98e+03 World StepLimiter - 7120 23 -11.5 85.7 5.68e-14 0 1 6.98e+03 World StepLimiter - 7121 22.6 -12.2 86.2 5.69e-14 0 1 6.98e+03 World StepLimiter - 7122 22.2 -12.9 86.8 5.69e-14 0 1 6.98e+03 World StepLimiter - 7123 21.8 -13.7 87.3 5.7e-14 0 1 6.98e+03 World StepLimiter - 7124 21.4 -14.4 87.9 5.71e-14 0 1 6.99e+03 World StepLimiter - 7125 21 -15.1 88.4 5.72e-14 0 1 6.99e+03 World StepLimiter - 7126 20.6 -15.9 88.9 5.72e-14 0 1 6.99e+03 World StepLimiter - 7127 20.2 -16.6 89.5 5.73e-14 0 1 6.99e+03 World StepLimiter - 7128 19.8 -17.3 90 5.74e-14 0 1 6.99e+03 World StepLimiter - 7129 19.4 -18.1 90.6 5.75e-14 0 1 6.99e+03 World StepLimiter - 7130 19 -18.8 91.1 5.75e-14 0 1 6.99e+03 World StepLimiter - 7131 18.6 -19.6 91.7 5.76e-14 0 1 6.99e+03 World StepLimiter - 7132 18.1 -20.3 92.2 5.77e-14 0 1 6.99e+03 World StepLimiter - 7133 17.7 -21 92.7 5.78e-14 0 1 6.99e+03 World StepLimiter - 7134 17.3 -21.8 93.3 5.78e-14 0 1 7e+03 World StepLimiter - 7135 16.9 -22.5 93.8 5.79e-14 0 1 7e+03 World StepLimiter - 7136 16.5 -23.3 94.4 5.8e-14 0 1 7e+03 World StepLimiter - 7137 16.1 -24 94.9 5.81e-14 0 1 7e+03 World StepLimiter - 7138 15.7 -24.7 95.4 5.81e-14 0 1 7e+03 World StepLimiter - 7139 15.3 -25.5 96 5.82e-14 0 1 7e+03 World StepLimiter - 7140 14.9 -26.2 96.5 5.83e-14 0 1 7e+03 World StepLimiter - 7141 14.5 -27 97 5.84e-14 0 1 7e+03 World StepLimiter - 7142 14.1 -27.7 97.6 5.84e-14 0 1 7e+03 World StepLimiter - 7143 13.7 -28.5 98.1 5.85e-14 0 1 7e+03 World StepLimiter - 7144 13.3 -29.2 98.7 5.86e-14 0 1 7.01e+03 World StepLimiter - 7145 12.9 -29.9 99.2 5.87e-14 0 1 7.01e+03 World StepLimiter - 7146 12.6 -30.7 99.7 5.88e-14 0 1 7.01e+03 World StepLimiter - 7147 12.2 -31.4 100 5.88e-14 0 1 7.01e+03 World StepLimiter - 7148 11.8 -32.2 101 5.89e-14 0 1 7.01e+03 World StepLimiter - 7149 11.4 -32.9 101 5.9e-14 0 1 7.01e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.005117192276neV MomDir: (-0.39719171284253,-0.74617743019563,0.53428268352611) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7150 11.2 -33.1 101 5.9e-14 0 0.303 7.01e+03 Guide Transportation *** StepTooSmall *** - 7151 11.2 -33.1 101 5.9e-14 0 0 7.01e+03 World Transportation - 7152 10.5 -32.8 102 5.9e-14 0 1 7.01e+03 World StepLimiter - 7153 9.7 -32.4 103 5.89e-14 0 1 7.01e+03 World StepLimiter - 7154 8.93 -32.1 103 5.89e-14 0 1 7.01e+03 World StepLimiter - 7155 8.16 -31.7 104 5.89e-14 0 1 7.01e+03 World StepLimiter - 7156 7.39 -31.4 104 5.88e-14 0 1 7.02e+03 World StepLimiter - 7157 6.62 -31.1 105 5.88e-14 0 1 7.02e+03 World StepLimiter - 7158 5.85 -30.7 105 5.88e-14 0 1 7.02e+03 World StepLimiter - 7159 5.08 -30.4 106 5.87e-14 0 1 7.02e+03 World StepLimiter - 7160 4.31 -30 106 5.87e-14 0 1 7.02e+03 World StepLimiter - 7161 3.54 -29.7 107 5.86e-14 0 1 7.02e+03 World StepLimiter - 7162 2.76 -29.3 107 5.86e-14 0 1 7.02e+03 World StepLimiter - 7163 1.99 -29 108 5.86e-14 0 1 7.02e+03 World StepLimiter - 7164 1.22 -28.7 108 5.85e-14 0 1 7.02e+03 World StepLimiter - 7165 0.448 -28.3 109 5.85e-14 0 1 7.02e+03 World StepLimiter - 7166 -0.325 -28 110 5.85e-14 0 1 7.03e+03 World StepLimiter - 7167 -1.1 -27.6 110 5.84e-14 0 1 7.03e+03 World StepLimiter - 7168 -1.87 -27.3 111 5.84e-14 0 1 7.03e+03 World StepLimiter - 7169 -2.64 -27 111 5.84e-14 0 1 7.03e+03 World StepLimiter - 7170 -3.42 -26.6 112 5.83e-14 0 1 7.03e+03 World StepLimiter - 7171 -4.19 -26.3 112 5.83e-14 0 1 7.03e+03 World StepLimiter - 7172 -4.96 -26 113 5.83e-14 0 1 7.03e+03 World StepLimiter - 7173 -5.74 -25.6 113 5.82e-14 0 1 7.03e+03 World StepLimiter - 7174 -6.51 -25.3 114 5.82e-14 0 1 7.03e+03 World StepLimiter - 7175 -7.29 -25 114 5.82e-14 0 1 7.03e+03 World StepLimiter - 7176 -8.06 -24.6 115 5.81e-14 0 1 7.04e+03 World StepLimiter - 7177 -8.84 -24.3 115 5.81e-14 0 1 7.04e+03 World StepLimiter - 7178 -9.61 -24 116 5.81e-14 0 1 7.04e+03 World StepLimiter - 7179 -10.4 -23.6 117 5.8e-14 0 1 7.04e+03 World StepLimiter - 7180 -11.2 -23.3 117 5.8e-14 0 1 7.04e+03 World StepLimiter - 7181 -11.9 -23 118 5.8e-14 0 1 7.04e+03 World StepLimiter - 7182 -12.7 -22.6 118 5.79e-14 0 1 7.04e+03 World StepLimiter - 7183 -13.5 -22.3 119 5.79e-14 0 1 7.04e+03 World StepLimiter - 7184 -14.3 -22 119 5.79e-14 0 1 7.04e+03 World StepLimiter - 7185 -15 -21.7 120 5.78e-14 0 1 7.04e+03 World StepLimiter - 7186 -15.8 -21.3 120 5.78e-14 0 1 7.05e+03 World StepLimiter - 7187 -16.6 -21 121 5.78e-14 0 1 7.05e+03 World StepLimiter - 7188 -17.4 -20.7 121 5.77e-14 0 1 7.05e+03 World StepLimiter - 7189 -18.2 -20.4 122 5.77e-14 0 1 7.05e+03 World StepLimiter - 7190 -18.9 -20.1 122 5.77e-14 0 1 7.05e+03 World StepLimiter - 7191 -19.7 -19.7 123 5.76e-14 0 1 7.05e+03 World StepLimiter - 7192 -20.5 -19.4 124 5.76e-14 0 1 7.05e+03 World StepLimiter - 7193 -21.3 -19.1 124 5.76e-14 0 1 7.05e+03 World StepLimiter - 7194 -22 -18.8 125 5.75e-14 0 1 7.05e+03 World StepLimiter - 7195 -22.8 -18.5 125 5.75e-14 0 1 7.05e+03 World StepLimiter - 7196 -23.6 -18.1 126 5.75e-14 0 1 7.06e+03 World StepLimiter - 7197 -24.4 -17.8 126 5.74e-14 0 1 7.06e+03 World StepLimiter - 7198 -25.2 -17.5 127 5.74e-14 0 1 7.06e+03 World StepLimiter - 7199 -25.9 -17.2 127 5.74e-14 0 1 7.06e+03 World StepLimiter - 7200 -26.7 -16.9 128 5.73e-14 0 1 7.06e+03 World StepLimiter - 7201 -27.5 -16.6 128 5.73e-14 0 1 7.06e+03 World StepLimiter - 7202 -28.3 -16.3 129 5.73e-14 0 1 7.06e+03 World StepLimiter - 7203 -29.1 -16 129 5.72e-14 0 1 7.06e+03 World StepLimiter - 7204 -29.8 -15.6 130 5.72e-14 0 1 7.06e+03 World StepLimiter - 7205 -30.6 -15.3 131 5.72e-14 0 1 7.06e+03 World StepLimiter - 7206 -31.4 -15 131 5.71e-14 0 1 7.07e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 57.137617146323neV MomDir: (-0.78156273055703,0.30719982535483,0.5429437958999) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7207 -31.7 -14.9 131 5.71e-14 0 0.313 7.07e+03 Guide Transportation *** StepTooSmall *** - 7208 -31.7 -14.9 131 5.71e-14 0 0 7.07e+03 World Transportation - 7209 -31.4 -14.1 132 5.71e-14 0 1 7.07e+03 World StepLimiter - 7210 -31.1 -13.3 132 5.7e-14 0 1 7.07e+03 World StepLimiter - 7211 -30.9 -12.5 133 5.69e-14 0 1 7.07e+03 World StepLimiter - 7212 -30.6 -11.7 133 5.68e-14 0 1 7.07e+03 World StepLimiter - 7213 -30.4 -10.9 134 5.67e-14 0 1 7.07e+03 World StepLimiter - 7214 -30.1 -10.2 135 5.66e-14 0 1 7.07e+03 World StepLimiter - 7215 -29.8 -9.35 135 5.66e-14 0 1 7.07e+03 World StepLimiter - 7216 -29.6 -8.56 136 5.65e-14 0 1 7.07e+03 World StepLimiter - 7217 -29.3 -7.76 136 5.64e-14 0 1 7.08e+03 World StepLimiter - 7218 -29 -6.97 137 5.63e-14 0 1 7.08e+03 World StepLimiter - 7219 -28.8 -6.17 137 5.62e-14 0 1 7.08e+03 World StepLimiter - 7220 -28.5 -5.38 138 5.62e-14 0 1 7.08e+03 World StepLimiter - 7221 -28.3 -4.58 138 5.61e-14 0 1 7.08e+03 World StepLimiter - 7222 -28 -3.79 139 5.6e-14 0 1 7.08e+03 World StepLimiter - 7223 -27.7 -3 139 5.59e-14 0 1 7.08e+03 World StepLimiter - 7224 -27.5 -2.2 140 5.58e-14 0 1 7.08e+03 World StepLimiter - 7225 -27.2 -1.41 141 5.58e-14 0 1 7.08e+03 World StepLimiter - 7226 -26.9 -0.616 141 5.57e-14 0 1 7.08e+03 World StepLimiter - 7227 -26.7 0.176 142 5.56e-14 0 1 7.09e+03 World StepLimiter - 7228 -26.4 0.969 142 5.55e-14 0 1 7.09e+03 World StepLimiter - 7229 -26.2 1.76 143 5.54e-14 0 1 7.09e+03 World StepLimiter - 7230 -25.9 2.55 143 5.53e-14 0 1 7.09e+03 World StepLimiter - 7231 -25.6 3.34 144 5.53e-14 0 1 7.09e+03 World StepLimiter - 7232 -25.4 4.13 144 5.52e-14 0 1 7.09e+03 World StepLimiter - 7233 -25.1 4.92 145 5.51e-14 0 1 7.09e+03 World StepLimiter - 7234 -24.8 5.71 146 5.5e-14 0 1 7.09e+03 World StepLimiter - 7235 -24.6 6.5 146 5.49e-14 0 1 7.09e+03 World StepLimiter - 7236 -24.3 7.29 147 5.49e-14 0 1 7.09e+03 World StepLimiter - 7237 -24 8.08 147 5.48e-14 0 1 7.1e+03 World StepLimiter - 7238 -23.8 8.87 148 5.47e-14 0 1 7.1e+03 World StepLimiter - 7239 -23.5 9.66 148 5.46e-14 0 1 7.1e+03 World StepLimiter - 7240 -23.2 10.4 149 5.45e-14 0 1 7.1e+03 World StepLimiter - 7241 -23 11.2 149 5.45e-14 0 1 7.1e+03 World StepLimiter - 7242 -22.7 12 150 5.44e-14 0 1 7.1e+03 World StepLimiter - 7243 -22.4 12.8 151 5.43e-14 0 1 7.1e+03 World StepLimiter - 7244 -22.2 13.6 151 5.42e-14 0 1 7.1e+03 World StepLimiter - 7245 -21.9 14.4 152 5.41e-14 0 1 7.1e+03 World StepLimiter - 7246 -21.6 15.2 152 5.41e-14 0 1 7.1e+03 World StepLimiter - 7247 -21.4 16 153 5.4e-14 0 1 7.11e+03 World StepLimiter - 7248 -21.1 16.7 153 5.39e-14 0 1 7.11e+03 World StepLimiter - 7249 -20.8 17.5 154 5.38e-14 0 1 7.11e+03 World StepLimiter - 7250 -20.6 18.3 154 5.37e-14 0 1 7.11e+03 World StepLimiter - 7251 -20.3 19.1 155 5.36e-14 0 1 7.11e+03 World StepLimiter - 7252 -20 19.9 156 5.36e-14 0 1 7.11e+03 World StepLimiter - 7253 -19.8 20.7 156 5.35e-14 0 1 7.11e+03 World StepLimiter - 7254 -19.5 21.4 157 5.34e-14 0 1 7.11e+03 World StepLimiter - 7255 -19.2 22.2 157 5.33e-14 0 1 7.11e+03 World StepLimiter - 7256 -19 23 158 5.32e-14 0 1 7.11e+03 World StepLimiter - 7257 -18.7 23.8 158 5.32e-14 0 1 7.12e+03 World StepLimiter - 7258 -18.4 24.6 159 5.31e-14 0 1 7.12e+03 World StepLimiter - 7259 -18.2 25.3 159 5.3e-14 0 1 7.12e+03 World StepLimiter - 7260 -17.9 26.1 160 5.29e-14 0 1 7.12e+03 World StepLimiter - 7261 -17.6 26.9 161 5.28e-14 0 1 7.12e+03 World StepLimiter - 7262 -17.3 27.7 161 5.28e-14 0 1 7.12e+03 World StepLimiter - 7263 -17.1 28.5 162 5.27e-14 0 1 7.12e+03 World StepLimiter - 7264 -16.8 29.2 162 5.26e-14 0 1 7.12e+03 World StepLimiter - 7265 -16.5 30 163 5.25e-14 0 1 7.12e+03 World StepLimiter - 7266 -16.3 30.8 163 5.24e-14 0 1 7.12e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.423097123577neV MomDir: (0.27116127345647,0.77792846260064,0.56683231281683) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7267 -16.2 31 164 5.24e-14 0 0.297 7.12e+03 Guide Transportation *** StepTooSmall *** - 7268 -16.2 31 164 5.24e-14 0 0 7.12e+03 World Transportation - 7269 -15.4 30.8 164 5.24e-14 0 1 7.13e+03 World StepLimiter - 7270 -14.6 30.6 165 5.25e-14 0 1 7.13e+03 World StepLimiter - 7271 -13.8 30.4 165 5.25e-14 0 1 7.13e+03 World StepLimiter - 7272 -13 30.1 166 5.25e-14 0 1 7.13e+03 World StepLimiter - 7273 -12.2 29.9 166 5.25e-14 0 1 7.13e+03 World StepLimiter - 7274 -11.4 29.7 167 5.26e-14 0 1 7.13e+03 World StepLimiter - 7275 -10.6 29.5 168 5.26e-14 0 1 7.13e+03 World StepLimiter - 7276 -9.84 29.2 168 5.26e-14 0 1 7.13e+03 World StepLimiter - 7277 -9.05 29 169 5.26e-14 0 1 7.13e+03 World StepLimiter - 7278 -8.26 28.8 169 5.27e-14 0 1 7.13e+03 World StepLimiter - 7279 -7.47 28.5 170 5.27e-14 0 1 7.14e+03 World StepLimiter - 7280 -6.68 28.3 170 5.27e-14 0 1 7.14e+03 World StepLimiter - 7281 -5.89 28.1 171 5.27e-14 0 1 7.14e+03 World StepLimiter - 7282 -5.1 27.8 172 5.28e-14 0 1 7.14e+03 World StepLimiter - 7283 -4.31 27.6 172 5.28e-14 0 1 7.14e+03 World StepLimiter - 7284 -3.52 27.3 173 5.28e-14 0 1 7.14e+03 World StepLimiter - 7285 -2.73 27.1 173 5.28e-14 0 1 7.14e+03 World StepLimiter - 7286 -1.94 26.9 174 5.29e-14 0 1 7.14e+03 World StepLimiter - 7287 -1.15 26.6 174 5.29e-14 0 1 7.14e+03 World StepLimiter - 7288 -0.357 26.4 175 5.29e-14 0 1 7.14e+03 World StepLimiter - 7289 0.433 26.1 176 5.29e-14 0 1 7.15e+03 World StepLimiter - 7290 1.22 25.9 176 5.29e-14 0 1 7.15e+03 World StepLimiter - 7291 2.01 25.7 177 5.3e-14 0 1 7.15e+03 World StepLimiter - 7292 2.8 25.4 177 5.3e-14 0 1 7.15e+03 World StepLimiter - 7293 3.59 25.2 178 5.3e-14 0 1 7.15e+03 World StepLimiter - 7294 4.38 24.9 178 5.3e-14 0 1 7.15e+03 World StepLimiter - 7295 5.17 24.7 179 5.31e-14 0 1 7.15e+03 World StepLimiter - 7296 5.95 24.4 179 5.31e-14 0 1 7.15e+03 World StepLimiter - 7297 6.74 24.2 180 5.31e-14 0 1 7.15e+03 World StepLimiter - 7298 7.53 23.9 181 5.32e-14 0 1 7.15e+03 World StepLimiter - 7299 8.32 23.7 181 5.32e-14 0 1 7.16e+03 World StepLimiter - 7300 9.1 23.4 182 5.32e-14 0 1 7.16e+03 World StepLimiter - 7301 9.89 23.2 182 5.32e-14 0 1 7.16e+03 World StepLimiter - 7302 10.7 22.9 183 5.33e-14 0 1 7.16e+03 World StepLimiter - 7303 11.5 22.7 183 5.33e-14 0 1 7.16e+03 World StepLimiter - 7304 12.3 22.4 184 5.33e-14 0 1 7.16e+03 World StepLimiter - 7305 13 22.2 185 5.33e-14 0 1 7.16e+03 World StepLimiter - 7306 13.8 21.9 185 5.34e-14 0 1 7.16e+03 World StepLimiter - 7307 14.6 21.6 186 5.34e-14 0 1 7.16e+03 World StepLimiter - 7308 15.4 21.4 186 5.34e-14 0 1 7.16e+03 World StepLimiter - 7309 16.2 21.1 187 5.34e-14 0 1 7.17e+03 World StepLimiter - 7310 17 20.9 187 5.35e-14 0 1 7.17e+03 World StepLimiter - 7311 17.8 20.6 188 5.35e-14 0 1 7.17e+03 World StepLimiter - 7312 18.5 20.3 188 5.35e-14 0 1 7.17e+03 World StepLimiter - 7313 19.3 20.1 189 5.35e-14 0 1 7.17e+03 World StepLimiter - 7314 20.1 19.8 190 5.36e-14 0 1 7.17e+03 World StepLimiter - 7315 20.9 19.5 190 5.36e-14 0 1 7.17e+03 World StepLimiter - 7316 21.7 19.3 191 5.36e-14 0 1 7.17e+03 World StepLimiter - 7317 22.5 19 191 5.37e-14 0 1 7.17e+03 World StepLimiter - 7318 23.2 18.7 192 5.37e-14 0 1 7.17e+03 World StepLimiter - 7319 24 18.5 192 5.37e-14 0 1 7.18e+03 World StepLimiter - 7320 24.8 18.2 193 5.37e-14 0 1 7.18e+03 World StepLimiter - 7321 25.6 17.9 193 5.38e-14 0 1 7.18e+03 World StepLimiter - 7322 26.4 17.7 194 5.38e-14 0 1 7.18e+03 World StepLimiter - 7323 27.2 17.4 195 5.38e-14 0 1 7.18e+03 World StepLimiter - 7324 27.9 17.1 195 5.39e-14 0 1 7.18e+03 World StepLimiter - 7325 28.7 16.8 196 5.39e-14 0 1 7.18e+03 World StepLimiter - 7326 29.5 16.6 196 5.39e-14 0 1 7.18e+03 World StepLimiter - 7327 30.3 16.3 197 5.39e-14 0 1 7.18e+03 World StepLimiter - 7328 31.1 16 197 5.4e-14 0 1 7.18e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.965712666774neV MomDir: (0.78167505135527,-0.27725368361377,0.55867209435529) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7329 31.1 16 197 5.4e-14 0 0.0805 7.18e+03 Guide Transportation *** StepTooSmall *** - 7330 31.1 16 197 5.4e-14 0 0 7.18e+03 World Transportation - 7331 30.9 15.2 198 5.4e-14 0 1 7.19e+03 World StepLimiter - 7332 30.7 14.4 199 5.41e-14 0 1 7.19e+03 World StepLimiter - 7333 30.4 13.6 199 5.42e-14 0 1 7.19e+03 World StepLimiter - 7334 30.2 12.8 200 5.43e-14 0 1 7.19e+03 World StepLimiter - 7335 30 12 200 5.44e-14 0 1 7.19e+03 World StepLimiter - 7336 29.8 11.2 201 5.45e-14 0 1 7.19e+03 World StepLimiter - 7337 29.5 10.4 201 5.45e-14 0 1 7.19e+03 World StepLimiter - 7338 29.3 9.61 202 5.46e-14 0 1 7.19e+03 World StepLimiter - 7339 29.1 8.81 202 5.47e-14 0 1 7.19e+03 World StepLimiter - 7340 28.8 8.01 203 5.48e-14 0 1 7.19e+03 World StepLimiter - 7341 28.6 7.21 204 5.49e-14 0 1 7.2e+03 World StepLimiter - 7342 28.4 6.4 204 5.49e-14 0 1 7.2e+03 World StepLimiter - 7343 28.2 5.6 205 5.5e-14 0 1 7.2e+03 World StepLimiter - 7344 27.9 4.8 205 5.51e-14 0 1 7.2e+03 World StepLimiter - 7345 27.7 4 206 5.52e-14 0 1 7.2e+03 World StepLimiter - 7346 27.5 3.2 206 5.53e-14 0 1 7.2e+03 World StepLimiter - 7347 27.2 2.4 207 5.54e-14 0 1 7.2e+03 World StepLimiter - 7348 27 1.59 207 5.54e-14 0 1 7.2e+03 World StepLimiter - 7349 26.8 0.79 208 5.55e-14 0 1 7.2e+03 World StepLimiter - 7350 26.6 -0.0137 209 5.56e-14 0 1 7.2e+03 World StepLimiter - 7351 26.3 -0.817 209 5.57e-14 0 1 7.21e+03 World StepLimiter - 7352 26.1 -1.62 210 5.58e-14 0 1 7.21e+03 World StepLimiter - 7353 25.9 -2.43 210 5.59e-14 0 1 7.21e+03 World StepLimiter - 7354 25.7 -3.23 211 5.59e-14 0 1 7.21e+03 World StepLimiter - 7355 25.4 -4.04 211 5.6e-14 0 1 7.21e+03 World StepLimiter - 7356 25.2 -4.84 212 5.61e-14 0 1 7.21e+03 World StepLimiter - 7357 25 -5.65 212 5.62e-14 0 1 7.21e+03 World StepLimiter - 7358 24.8 -6.45 213 5.63e-14 0 1 7.21e+03 World StepLimiter - 7359 24.5 -7.26 213 5.64e-14 0 1 7.21e+03 World StepLimiter - 7360 24.3 -8.07 214 5.64e-14 0 1 7.21e+03 World StepLimiter - 7361 24.1 -8.87 215 5.65e-14 0 1 7.22e+03 World StepLimiter - 7362 23.9 -9.68 215 5.66e-14 0 1 7.22e+03 World StepLimiter - 7363 23.6 -10.5 216 5.67e-14 0 1 7.22e+03 World StepLimiter - 7364 23.4 -11.3 216 5.68e-14 0 1 7.22e+03 World StepLimiter - 7365 23.2 -12.1 217 5.68e-14 0 1 7.22e+03 World StepLimiter - 7366 23 -12.9 217 5.69e-14 0 1 7.22e+03 World StepLimiter - 7367 22.7 -13.7 218 5.7e-14 0 1 7.22e+03 World StepLimiter - 7368 22.5 -14.5 218 5.71e-14 0 1 7.22e+03 World StepLimiter - 7369 22.3 -15.3 219 5.72e-14 0 1 7.22e+03 World StepLimiter - 7370 22.1 -16.1 219 5.73e-14 0 1 7.22e+03 World StepLimiter - 7371 21.8 -17 220 5.73e-14 0 1 7.23e+03 World StepLimiter - 7372 21.6 -17.8 221 5.74e-14 0 1 7.23e+03 World StepLimiter - 7373 21.4 -18.6 221 5.75e-14 0 1 7.23e+03 World StepLimiter - 7374 21.2 -19.4 222 5.76e-14 0 1 7.23e+03 World StepLimiter - 7375 21 -20.2 222 5.77e-14 0 1 7.23e+03 World StepLimiter - 7376 20.7 -21 223 5.78e-14 0 1 7.23e+03 World StepLimiter - 7377 20.5 -21.8 223 5.78e-14 0 1 7.23e+03 World StepLimiter - 7378 20.3 -22.6 224 5.79e-14 0 1 7.23e+03 World StepLimiter - 7379 20.1 -23.5 224 5.8e-14 0 1 7.23e+03 World StepLimiter - 7380 19.8 -24.3 225 5.81e-14 0 1 7.23e+03 World StepLimiter - 7381 19.6 -25.1 225 5.82e-14 0 1 7.24e+03 World StepLimiter - 7382 19.4 -25.9 226 5.83e-14 0 1 7.24e+03 World StepLimiter - 7383 19.2 -26.7 226 5.83e-14 0 1 7.24e+03 World StepLimiter - 7384 19 -27.5 227 5.84e-14 0 1 7.24e+03 World StepLimiter - 7385 18.7 -28.3 228 5.85e-14 0 1 7.24e+03 World StepLimiter - 7386 18.5 -29.1 228 5.86e-14 0 1 7.24e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.662795994311neV MomDir: (-0.22053347734605,-0.81500996090496,0.53583929400088) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7387 18.3 -29.8 229 5.87e-14 0 0.811 7.24e+03 Guide Transportation *** StepTooSmall *** - 7388 18.3 -29.8 229 5.87e-14 0 0 7.24e+03 World Transportation - 7389 17.5 -29.6 229 5.86e-14 0 1 7.24e+03 World StepLimiter - 7390 16.7 -29.5 230 5.86e-14 0 1 7.24e+03 World StepLimiter - 7391 15.9 -29.3 230 5.86e-14 0 1 7.24e+03 World StepLimiter - 7392 15 -29.1 231 5.86e-14 0 1 7.25e+03 World StepLimiter - 7393 14.2 -29 231 5.86e-14 0 1 7.25e+03 World StepLimiter - 7394 13.4 -28.8 232 5.86e-14 0 1 7.25e+03 World StepLimiter - 7395 12.6 -28.6 232 5.85e-14 0 1 7.25e+03 World StepLimiter - 7396 11.7 -28.5 233 5.85e-14 0 1 7.25e+03 World StepLimiter - 7397 10.9 -28.3 233 5.85e-14 0 1 7.25e+03 World StepLimiter - 7398 10.1 -28.1 234 5.85e-14 0 1 7.25e+03 World StepLimiter - 7399 9.24 -28 234 5.85e-14 0 1 7.25e+03 World StepLimiter - 7400 8.41 -27.8 235 5.85e-14 0 1 7.25e+03 World StepLimiter - 7401 7.58 -27.7 235 5.84e-14 0 1 7.25e+03 World StepLimiter - 7402 6.75 -27.5 236 5.84e-14 0 1 7.26e+03 World StepLimiter - 7403 5.92 -27.3 237 5.84e-14 0 1 7.26e+03 World StepLimiter - 7404 5.1 -27.2 237 5.84e-14 0 1 7.26e+03 World StepLimiter - 7405 4.27 -27 238 5.84e-14 0 1 7.26e+03 World StepLimiter - 7406 3.44 -26.9 238 5.84e-14 0 1 7.26e+03 World StepLimiter - 7407 2.61 -26.7 239 5.83e-14 0 1 7.26e+03 World StepLimiter - 7408 1.78 -26.6 239 5.83e-14 0 1 7.26e+03 World StepLimiter - 7409 0.95 -26.4 240 5.83e-14 0 1 7.26e+03 World StepLimiter - 7410 0.121 -26.3 240 5.83e-14 0 1 7.26e+03 World StepLimiter - 7411 -0.709 -26.1 241 5.83e-14 0 1 7.26e+03 World StepLimiter - 7412 -1.54 -26 241 5.83e-14 0 1 7.27e+03 World StepLimiter - 7413 -2.37 -25.8 242 5.83e-14 0 1 7.27e+03 World StepLimiter - 7414 -3.2 -25.7 242 5.82e-14 0 1 7.27e+03 World StepLimiter - 7415 -4.03 -25.5 243 5.82e-14 0 1 7.27e+03 World StepLimiter - 7416 -4.86 -25.4 244 5.82e-14 0 1 7.27e+03 World StepLimiter - 7417 -5.69 -25.2 244 5.82e-14 0 1 7.27e+03 World StepLimiter - 7418 -6.52 -25.1 245 5.82e-14 0 1 7.27e+03 World StepLimiter - 7419 -7.35 -24.9 245 5.82e-14 0 1 7.27e+03 World StepLimiter - 7420 -8.18 -24.8 246 5.81e-14 0 1 7.27e+03 World StepLimiter - 7421 -9.01 -24.6 246 5.81e-14 0 1 7.27e+03 World StepLimiter - 7422 -9.84 -24.5 247 5.81e-14 0 1 7.28e+03 World StepLimiter - 7423 -10.7 -24.4 247 5.81e-14 0 1 7.28e+03 World StepLimiter - 7424 -11.5 -24.2 248 5.81e-14 0 1 7.28e+03 World StepLimiter - 7425 -12.3 -24.1 248 5.81e-14 0 1 7.28e+03 World StepLimiter - 7426 -13.2 -23.9 249 5.81e-14 0 1 7.28e+03 World StepLimiter - 7427 -14 -23.8 249 5.8e-14 0 1 7.28e+03 World StepLimiter - 7428 -14.8 -23.7 250 5.8e-14 0 1 7.28e+03 World StepLimiter - 7429 -15.7 -23.5 251 5.8e-14 0 1 7.28e+03 World StepLimiter - 7430 -16.5 -23.4 251 5.8e-14 0 1 7.28e+03 World StepLimiter - 7431 -17.3 -23.3 252 5.8e-14 0 1 7.28e+03 World StepLimiter - 7432 -18.2 -23.1 252 5.8e-14 0 1 7.29e+03 World StepLimiter - 7433 -19 -23 253 5.8e-14 0 1 7.29e+03 World StepLimiter - 7434 -19.8 -22.9 253 5.8e-14 0 1 7.29e+03 World StepLimiter - 7435 -20.6 -22.7 254 5.79e-14 0 1 7.29e+03 World StepLimiter - 7436 -21.5 -22.6 254 5.79e-14 0 1 7.29e+03 World StepLimiter - 7437 -22.3 -22.5 255 5.79e-14 0 1 7.29e+03 World StepLimiter - 7438 -23.1 -22.4 255 5.79e-14 0 1 7.29e+03 World StepLimiter - 7439 -24 -22.2 256 5.79e-14 0 1 7.29e+03 World StepLimiter - 7440 -24.8 -22.1 256 5.79e-14 0 1 7.29e+03 World StepLimiter - 7441 -25.6 -22 257 5.79e-14 0 1 7.29e+03 World StepLimiter - 7442 -26.5 -21.9 258 5.78e-14 0 1 7.3e+03 World StepLimiter - 7443 -27.3 -21.7 258 5.78e-14 0 1 7.3e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 57.831912752223neV MomDir: (-0.8328459012966,0.12295848269298,0.53967482452612) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7444 -27.5 -21.7 258 5.78e-14 0 0.175 7.3e+03 Guide Transportation *** StepTooSmall *** - 7445 -27.5 -21.7 258 5.78e-14 0 0 7.3e+03 World Transportation - 7446 -27.4 -20.9 259 5.77e-14 0 1 7.3e+03 World StepLimiter - 7447 -27.3 -20 259 5.77e-14 0 1 7.3e+03 World StepLimiter - 7448 -27.2 -19.2 260 5.76e-14 0 1 7.3e+03 World StepLimiter - 7449 -27.2 -18.4 260 5.75e-14 0 1 7.3e+03 World StepLimiter - 7450 -27.1 -17.5 261 5.74e-14 0 1 7.3e+03 World StepLimiter - 7451 -27 -16.7 261 5.73e-14 0 1 7.3e+03 World StepLimiter - 7452 -26.9 -15.8 262 5.72e-14 0 1 7.3e+03 World StepLimiter - 7453 -26.9 -15 263 5.71e-14 0 1 7.3e+03 World StepLimiter - 7454 -26.8 -14.2 263 5.71e-14 0 1 7.31e+03 World StepLimiter - 7455 -26.7 -13.3 264 5.7e-14 0 1 7.31e+03 World StepLimiter - 7456 -26.7 -12.5 264 5.69e-14 0 1 7.31e+03 World StepLimiter - 7457 -26.6 -11.7 265 5.68e-14 0 1 7.31e+03 World StepLimiter - 7458 -26.5 -10.8 265 5.67e-14 0 1 7.31e+03 World StepLimiter - 7459 -26.4 -9.99 266 5.66e-14 0 1 7.31e+03 World StepLimiter - 7460 -26.4 -9.16 266 5.65e-14 0 1 7.31e+03 World StepLimiter - 7461 -26.3 -8.32 267 5.65e-14 0 1 7.31e+03 World StepLimiter - 7462 -26.2 -7.49 267 5.64e-14 0 1 7.31e+03 World StepLimiter - 7463 -26.1 -6.65 268 5.63e-14 0 1 7.31e+03 World StepLimiter - 7464 -26.1 -5.82 269 5.62e-14 0 1 7.32e+03 World StepLimiter - 7465 -26 -4.99 269 5.61e-14 0 1 7.32e+03 World StepLimiter - 7466 -25.9 -4.15 270 5.6e-14 0 1 7.32e+03 World StepLimiter - 7467 -25.8 -3.32 270 5.59e-14 0 1 7.32e+03 World StepLimiter - 7468 -25.8 -2.49 271 5.59e-14 0 1 7.32e+03 World StepLimiter - 7469 -25.7 -1.65 271 5.58e-14 0 1 7.32e+03 World StepLimiter - 7470 -25.6 -0.823 272 5.57e-14 0 1 7.32e+03 World StepLimiter - 7471 -25.6 0.00902 272 5.56e-14 0 1 7.32e+03 World StepLimiter - 7472 -25.5 0.841 273 5.55e-14 0 1 7.32e+03 World StepLimiter - 7473 -25.4 1.67 273 5.54e-14 0 1 7.32e+03 World StepLimiter - 7474 -25.3 2.5 274 5.53e-14 0 1 7.33e+03 World StepLimiter - 7475 -25.3 3.33 275 5.53e-14 0 1 7.33e+03 World StepLimiter - 7476 -25.2 4.16 275 5.52e-14 0 1 7.33e+03 World StepLimiter - 7477 -25.1 4.99 276 5.51e-14 0 1 7.33e+03 World StepLimiter - 7478 -25 5.82 276 5.5e-14 0 1 7.33e+03 World StepLimiter - 7479 -25 6.65 277 5.49e-14 0 1 7.33e+03 World StepLimiter - 7480 -24.9 7.48 277 5.48e-14 0 1 7.33e+03 World StepLimiter - 7481 -24.8 8.31 278 5.48e-14 0 1 7.33e+03 World StepLimiter - 7482 -24.7 9.14 278 5.47e-14 0 1 7.33e+03 World StepLimiter - 7483 -24.7 9.97 279 5.46e-14 0 1 7.33e+03 World StepLimiter - 7484 -24.6 10.8 280 5.45e-14 0 1 7.34e+03 World StepLimiter - 7485 -24.5 11.6 280 5.44e-14 0 1 7.34e+03 World StepLimiter - 7486 -24.4 12.5 281 5.43e-14 0 1 7.34e+03 World StepLimiter - 7487 -24.4 13.3 281 5.42e-14 0 1 7.34e+03 World StepLimiter - 7488 -24.3 14.1 282 5.42e-14 0 1 7.34e+03 World StepLimiter - 7489 -24.2 14.9 282 5.41e-14 0 1 7.34e+03 World StepLimiter - 7490 -24.1 15.8 283 5.4e-14 0 1 7.34e+03 World StepLimiter - 7491 -24.1 16.6 283 5.39e-14 0 1 7.34e+03 World StepLimiter - 7492 -24 17.4 284 5.38e-14 0 1 7.34e+03 World StepLimiter - 7493 -23.9 18.2 285 5.37e-14 0 1 7.34e+03 World StepLimiter - 7494 -23.8 19.1 285 5.37e-14 0 1 7.35e+03 World StepLimiter - 7495 -23.8 19.9 286 5.36e-14 0 1 7.35e+03 World StepLimiter - 7496 -23.7 20.7 286 5.35e-14 0 1 7.35e+03 World StepLimiter - 7497 -23.6 21.5 287 5.34e-14 0 1 7.35e+03 World StepLimiter - 7498 -23.5 22.4 287 5.33e-14 0 1 7.35e+03 World StepLimiter - 7499 -23.5 23.2 288 5.32e-14 0 1 7.35e+03 World StepLimiter - 7500 -23.4 24 289 5.31e-14 0 1 7.35e+03 World StepLimiter - 7501 -23.3 24.8 289 5.31e-14 0 1 7.35e+03 World StepLimiter - 7502 -23.2 25.6 290 5.3e-14 0 1 7.35e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.916341835235neV MomDir: (0.075779708494582,0.822163889662,0.5641843442673) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7503 -23.2 26.2 290 5.29e-14 0 0.7 7.35e+03 Guide Transportation *** StepTooSmall *** - 7504 -23.2 26.2 290 5.29e-14 0 0 7.35e+03 World Transportation - 7505 -22.4 26.2 291 5.29e-14 0 1 7.36e+03 World StepLimiter - 7506 -21.5 26.2 291 5.29e-14 0 1 7.36e+03 World StepLimiter - 7507 -20.7 26.1 292 5.29e-14 0 1 7.36e+03 World StepLimiter - 7508 -19.9 26.1 292 5.29e-14 0 1 7.36e+03 World StepLimiter - 7509 -19.1 26.1 293 5.29e-14 0 1 7.36e+03 World StepLimiter - 7510 -18.2 26.1 293 5.29e-14 0 1 7.36e+03 World StepLimiter - 7511 -17.4 26 294 5.29e-14 0 1 7.36e+03 World StepLimiter - 7512 -16.6 26 295 5.29e-14 0 1 7.36e+03 World StepLimiter - 7513 -15.8 26 295 5.29e-14 0 1 7.36e+03 World StepLimiter - 7514 -14.9 25.9 296 5.29e-14 0 1 7.36e+03 World StepLimiter - 7515 -14.1 25.9 296 5.3e-14 0 1 7.37e+03 World StepLimiter - 7516 -13.3 25.8 297 5.3e-14 0 1 7.37e+03 World StepLimiter - 7517 -12.5 25.8 297 5.3e-14 0 1 7.37e+03 World StepLimiter - 7518 -11.6 25.8 298 5.3e-14 0 1 7.37e+03 World StepLimiter - 7519 -10.8 25.7 298 5.3e-14 0 1 7.37e+03 World StepLimiter - 7520 -9.98 25.7 299 5.3e-14 0 1 7.37e+03 World StepLimiter - 7521 -9.15 25.6 300 5.3e-14 0 1 7.37e+03 World StepLimiter - 7522 -8.33 25.6 300 5.3e-14 0 1 7.37e+03 World StepLimiter - 7523 -7.5 25.6 301 5.3e-14 0 1 7.37e+03 World StepLimiter - 7524 -6.68 25.5 301 5.3e-14 0 1 7.37e+03 World StepLimiter - 7525 -5.86 25.5 302 5.3e-14 0 1 7.38e+03 World StepLimiter - 7526 -5.03 25.4 302 5.3e-14 0 1 7.38e+03 World StepLimiter - 7527 -4.21 25.4 303 5.3e-14 0 1 7.38e+03 World StepLimiter - 7528 -3.38 25.3 304 5.3e-14 0 1 7.38e+03 World StepLimiter - 7529 -2.56 25.3 304 5.3e-14 0 1 7.38e+03 World StepLimiter - 7530 -1.73 25.2 305 5.3e-14 0 1 7.38e+03 World StepLimiter - 7531 -0.908 25.2 305 5.3e-14 0 1 7.38e+03 World StepLimiter - 7532 -0.0836 25.1 306 5.3e-14 0 1 7.38e+03 World StepLimiter - 7533 0.741 25.1 306 5.3e-14 0 1 7.38e+03 World StepLimiter - 7534 1.57 25 307 5.3e-14 0 1 7.38e+03 World StepLimiter - 7535 2.39 25 308 5.3e-14 0 1 7.39e+03 World StepLimiter - 7536 3.21 24.9 308 5.31e-14 0 1 7.39e+03 World StepLimiter - 7537 4.04 24.8 309 5.31e-14 0 1 7.39e+03 World StepLimiter - 7538 4.86 24.8 309 5.31e-14 0 1 7.39e+03 World StepLimiter - 7539 5.69 24.7 310 5.31e-14 0 1 7.39e+03 World StepLimiter - 7540 6.51 24.7 310 5.31e-14 0 1 7.39e+03 World StepLimiter - 7541 7.33 24.6 311 5.31e-14 0 1 7.39e+03 World StepLimiter - 7542 8.16 24.5 311 5.31e-14 0 1 7.39e+03 World StepLimiter - 7543 8.98 24.5 312 5.31e-14 0 1 7.39e+03 World StepLimiter - 7544 9.81 24.4 313 5.31e-14 0 1 7.39e+03 World StepLimiter - 7545 10.6 24.4 313 5.31e-14 0 1 7.4e+03 World StepLimiter - 7546 11.5 24.3 314 5.31e-14 0 1 7.4e+03 World StepLimiter - 7547 12.3 24.2 314 5.31e-14 0 1 7.4e+03 World StepLimiter - 7548 13.1 24.2 315 5.31e-14 0 1 7.4e+03 World StepLimiter - 7549 13.9 24.1 315 5.31e-14 0 1 7.4e+03 World StepLimiter - 7550 14.7 24 316 5.31e-14 0 1 7.4e+03 World StepLimiter - 7551 15.6 23.9 317 5.31e-14 0 1 7.4e+03 World StepLimiter - 7552 16.4 23.9 317 5.32e-14 0 1 7.4e+03 World StepLimiter - 7553 17.2 23.8 318 5.32e-14 0 1 7.4e+03 World StepLimiter - 7554 18 23.7 318 5.32e-14 0 1 7.4e+03 World StepLimiter - 7555 18.9 23.7 319 5.32e-14 0 1 7.41e+03 World StepLimiter - 7556 19.7 23.6 319 5.32e-14 0 1 7.41e+03 World StepLimiter - 7557 20.5 23.5 320 5.32e-14 0 1 7.41e+03 World StepLimiter - 7558 21.3 23.4 320 5.32e-14 0 1 7.41e+03 World StepLimiter - 7559 22.2 23.3 321 5.32e-14 0 1 7.41e+03 World StepLimiter - 7560 23 23.3 322 5.32e-14 0 1 7.41e+03 World StepLimiter - 7561 23.8 23.2 322 5.32e-14 0 1 7.41e+03 World StepLimiter - 7562 24.6 23.1 323 5.32e-14 0 1 7.41e+03 World StepLimiter - 7563 25.4 23 323 5.32e-14 0 1 7.41e+03 World StepLimiter - 7564 26.3 22.9 324 5.33e-14 0 1 7.41e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.254779992neV MomDir: (0.82262110727232,-0.083745957498484,0.56238876986718) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7565 26.4 22.9 324 5.33e-14 0 0.216 7.41e+03 Guide Transportation *** StepTooSmall *** - 7566 26.4 22.9 324 5.33e-14 0 0 7.41e+03 World Transportation - 7567 26.4 22.1 325 5.33e-14 0 1 7.42e+03 World StepLimiter - 7568 26.4 21.3 325 5.34e-14 0 1 7.42e+03 World StepLimiter - 7569 26.3 20.4 326 5.35e-14 0 1 7.42e+03 World StepLimiter - 7570 26.3 19.6 326 5.36e-14 0 1 7.42e+03 World StepLimiter - 7571 26.3 18.8 327 5.37e-14 0 1 7.42e+03 World StepLimiter - 7572 26.2 18 327 5.38e-14 0 1 7.42e+03 World StepLimiter - 7573 26.2 17.1 328 5.38e-14 0 1 7.42e+03 World StepLimiter - 7574 26.2 16.3 328 5.39e-14 0 1 7.42e+03 World StepLimiter - 7575 26.1 15.5 329 5.4e-14 0 1 7.42e+03 World StepLimiter - 7576 26.1 14.6 330 5.41e-14 0 1 7.42e+03 World StepLimiter - 7577 26.1 13.8 330 5.42e-14 0 1 7.43e+03 World StepLimiter - 7578 26 13 331 5.43e-14 0 1 7.43e+03 World StepLimiter - 7579 26 12.2 331 5.44e-14 0 1 7.43e+03 World StepLimiter - 7580 26 11.3 332 5.44e-14 0 1 7.43e+03 World StepLimiter - 7581 25.9 10.5 332 5.45e-14 0 1 7.43e+03 World StepLimiter - 7582 25.9 9.67 333 5.46e-14 0 1 7.43e+03 World StepLimiter - 7583 25.9 8.84 333 5.47e-14 0 1 7.43e+03 World StepLimiter - 7584 25.8 8 334 5.48e-14 0 1 7.43e+03 World StepLimiter - 7585 25.8 7.17 335 5.49e-14 0 1 7.43e+03 World StepLimiter - 7586 25.8 6.34 335 5.5e-14 0 1 7.43e+03 World StepLimiter - 7587 25.7 5.51 336 5.5e-14 0 1 7.44e+03 World StepLimiter - 7588 25.7 4.68 336 5.51e-14 0 1 7.44e+03 World StepLimiter - 7589 25.7 3.84 337 5.52e-14 0 1 7.44e+03 World StepLimiter - 7590 25.6 3.01 337 5.53e-14 0 1 7.44e+03 World StepLimiter - 7591 25.6 2.18 338 5.54e-14 0 1 7.44e+03 World StepLimiter - 7592 25.6 1.34 338 5.55e-14 0 1 7.44e+03 World StepLimiter - 7593 25.5 0.509 339 5.56e-14 0 1 7.44e+03 World StepLimiter - 7594 25.5 -0.325 340 5.56e-14 0 1 7.44e+03 World StepLimiter - 7595 25.5 -1.16 340 5.57e-14 0 1 7.44e+03 World StepLimiter - 7596 25.4 -1.99 341 5.58e-14 0 1 7.44e+03 World StepLimiter - 7597 25.4 -2.83 341 5.59e-14 0 1 7.45e+03 World StepLimiter - 7598 25.4 -3.67 342 5.6e-14 0 1 7.45e+03 World StepLimiter - 7599 25.3 -4.5 342 5.61e-14 0 1 7.45e+03 World StepLimiter - 7600 25.3 -5.34 343 5.62e-14 0 1 7.45e+03 World StepLimiter - 7601 25.3 -6.17 343 5.62e-14 0 1 7.45e+03 World StepLimiter - 7602 25.2 -7.01 344 5.63e-14 0 1 7.45e+03 World StepLimiter - 7603 25.2 -7.85 344 5.64e-14 0 1 7.45e+03 World StepLimiter - 7604 25.2 -8.68 345 5.65e-14 0 1 7.45e+03 World StepLimiter - 7605 25.1 -9.52 346 5.66e-14 0 1 7.45e+03 World StepLimiter - 7606 25.1 -10.4 346 5.67e-14 0 1 7.45e+03 World StepLimiter - 7607 25.1 -11.2 347 5.68e-14 0 1 7.46e+03 World StepLimiter - 7608 25 -12 347 5.68e-14 0 1 7.46e+03 World StepLimiter - 7609 25 -12.9 348 5.69e-14 0 1 7.46e+03 World StepLimiter - 7610 25 -13.7 348 5.7e-14 0 1 7.46e+03 World StepLimiter - 7611 24.9 -14.5 349 5.71e-14 0 1 7.46e+03 World StepLimiter - 7612 24.9 -15.4 349 5.72e-14 0 1 7.46e+03 World StepLimiter - 7613 24.9 -16.2 350 5.73e-14 0 1 7.46e+03 World StepLimiter - 7614 24.8 -17.1 350 5.74e-14 0 1 7.46e+03 World StepLimiter - 7615 24.8 -17.9 351 5.74e-14 0 1 7.46e+03 World StepLimiter - 7616 24.8 -18.7 352 5.75e-14 0 1 7.46e+03 World StepLimiter - 7617 24.8 -19.6 352 5.76e-14 0 1 7.47e+03 World StepLimiter - 7618 24.7 -20.4 353 5.77e-14 0 1 7.47e+03 World StepLimiter - 7619 24.7 -21.3 353 5.78e-14 0 1 7.47e+03 World StepLimiter - 7620 24.7 -22.1 354 5.79e-14 0 1 7.47e+03 World StepLimiter - 7621 24.6 -23 354 5.8e-14 0 1 7.47e+03 World StepLimiter - 7622 24.6 -23.8 355 5.8e-14 0 1 7.47e+03 World StepLimiter - 7623 24.6 -24.6 355 5.81e-14 0 1 7.47e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.164704566985neV MomDir: (-0.032475783046279,-0.84223678396774,0.53812872367791) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7624 24.5 -25 356 5.82e-14 0 0.375 7.47e+03 Guide Transportation *** StepTooSmall *** - 7625 24.5 -25 356 5.82e-14 0 0 7.47e+03 World Transportation - 7626 23.7 -25 356 5.82e-14 0 1 7.47e+03 World StepLimiter - 7627 22.9 -25 357 5.82e-14 0 1 7.47e+03 World StepLimiter - 7628 22 -25 357 5.82e-14 0 1 7.47e+03 World StepLimiter - 7629 21.2 -25 358 5.82e-14 0 1 7.48e+03 World StepLimiter - 7630 20.3 -25.1 358 5.82e-14 0 1 7.48e+03 World StepLimiter - 7631 19.5 -25.1 359 5.82e-14 0 1 7.48e+03 World StepLimiter - 7632 18.6 -25.1 359 5.82e-14 0 1 7.48e+03 World StepLimiter - 7633 17.8 -25.1 360 5.82e-14 0 1 7.48e+03 World StepLimiter - 7634 17 -25.2 360 5.82e-14 0 1 7.48e+03 World StepLimiter - 7635 16.1 -25.2 361 5.82e-14 0 1 7.48e+03 World StepLimiter - 7636 15.3 -25.2 361 5.82e-14 0 1 7.48e+03 World StepLimiter - 7637 14.4 -25.2 362 5.82e-14 0 1 7.48e+03 World StepLimiter - 7638 13.6 -25.3 363 5.82e-14 0 1 7.48e+03 World StepLimiter - 7639 12.7 -25.3 363 5.82e-14 0 1 7.49e+03 World StepLimiter - 7640 11.9 -25.3 364 5.82e-14 0 1 7.49e+03 World StepLimiter - 7641 11.1 -25.4 364 5.82e-14 0 1 7.49e+03 World StepLimiter - 7642 10.2 -25.4 365 5.82e-14 0 1 7.49e+03 World StepLimiter - 7643 9.38 -25.4 365 5.82e-14 0 1 7.49e+03 World StepLimiter - 7644 8.54 -25.5 366 5.82e-14 0 1 7.49e+03 World StepLimiter - 7645 7.69 -25.5 366 5.82e-14 0 1 7.49e+03 World StepLimiter - 7646 6.85 -25.5 367 5.82e-14 0 1 7.49e+03 World StepLimiter - 7647 6.01 -25.6 367 5.82e-14 0 1 7.49e+03 World StepLimiter - 7648 5.17 -25.6 368 5.82e-14 0 1 7.49e+03 World StepLimiter - 7649 4.33 -25.7 368 5.82e-14 0 1 7.5e+03 World StepLimiter - 7650 3.48 -25.7 369 5.82e-14 0 1 7.5e+03 World StepLimiter - 7651 2.64 -25.7 370 5.82e-14 0 1 7.5e+03 World StepLimiter - 7652 1.8 -25.8 370 5.82e-14 0 1 7.5e+03 World StepLimiter - 7653 0.957 -25.8 371 5.83e-14 0 1 7.5e+03 World StepLimiter - 7654 0.115 -25.9 371 5.83e-14 0 1 7.5e+03 World StepLimiter - 7655 -0.727 -25.9 372 5.83e-14 0 1 7.5e+03 World StepLimiter - 7656 -1.57 -26 372 5.83e-14 0 1 7.5e+03 World StepLimiter - 7657 -2.41 -26 373 5.83e-14 0 1 7.5e+03 World StepLimiter - 7658 -3.25 -26 373 5.83e-14 0 1 7.5e+03 World StepLimiter - 7659 -4.09 -26.1 374 5.83e-14 0 1 7.51e+03 World StepLimiter - 7660 -4.94 -26.1 374 5.83e-14 0 1 7.51e+03 World StepLimiter - 7661 -5.78 -26.2 375 5.83e-14 0 1 7.51e+03 World StepLimiter - 7662 -6.62 -26.2 375 5.83e-14 0 1 7.51e+03 World StepLimiter - 7663 -7.46 -26.3 376 5.83e-14 0 1 7.51e+03 World StepLimiter - 7664 -8.3 -26.3 376 5.83e-14 0 1 7.51e+03 World StepLimiter - 7665 -9.14 -26.4 377 5.83e-14 0 1 7.51e+03 World StepLimiter - 7666 -9.99 -26.5 378 5.83e-14 0 1 7.51e+03 World StepLimiter - 7667 -10.8 -26.5 378 5.83e-14 0 1 7.51e+03 World StepLimiter - 7668 -11.7 -26.6 379 5.83e-14 0 1 7.51e+03 World StepLimiter - 7669 -12.5 -26.6 379 5.83e-14 0 1 7.52e+03 World StepLimiter - 7670 -13.4 -26.7 380 5.83e-14 0 1 7.52e+03 World StepLimiter - 7671 -14.2 -26.7 380 5.83e-14 0 1 7.52e+03 World StepLimiter - 7672 -15 -26.8 381 5.84e-14 0 1 7.52e+03 World StepLimiter - 7673 -15.9 -26.9 381 5.84e-14 0 1 7.52e+03 World StepLimiter - 7674 -16.7 -26.9 382 5.84e-14 0 1 7.52e+03 World StepLimiter - 7675 -17.6 -27 382 5.84e-14 0 1 7.52e+03 World StepLimiter - 7676 -18.4 -27 383 5.84e-14 0 1 7.52e+03 World StepLimiter - 7677 -19.2 -27.1 383 5.84e-14 0 1 7.52e+03 World StepLimiter - 7678 -20.1 -27.2 384 5.84e-14 0 1 7.52e+03 World StepLimiter - 7679 -20.9 -27.2 385 5.84e-14 0 1 7.53e+03 World StepLimiter - 7680 -21.8 -27.3 385 5.84e-14 0 1 7.53e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.406791703815neV MomDir: (-0.84091024227638,-0.066990417604168,0.5370123354113) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7681 -21.9 -27.3 385 5.84e-14 0 0.145 7.53e+03 Guide Transportation *** StepTooSmall *** - 7682 -21.9 -27.3 385 5.84e-14 0 0 7.53e+03 World Transportation - 7683 -22 -26.5 386 5.83e-14 0 1 7.53e+03 World StepLimiter - 7684 -22.1 -25.6 386 5.82e-14 0 1 7.53e+03 World StepLimiter - 7685 -22.2 -24.8 387 5.81e-14 0 1 7.53e+03 World StepLimiter - 7686 -22.4 -24 387 5.81e-14 0 1 7.53e+03 World StepLimiter - 7687 -22.5 -23.1 388 5.8e-14 0 1 7.53e+03 World StepLimiter - 7688 -22.6 -22.3 388 5.79e-14 0 1 7.53e+03 World StepLimiter - 7689 -22.7 -21.5 389 5.78e-14 0 1 7.53e+03 World StepLimiter - 7690 -22.8 -20.6 389 5.77e-14 0 1 7.54e+03 World StepLimiter - 7691 -23 -19.8 390 5.76e-14 0 1 7.54e+03 World StepLimiter - 7692 -23.1 -19 391 5.76e-14 0 1 7.54e+03 World StepLimiter - 7693 -23.2 -18.1 391 5.75e-14 0 1 7.54e+03 World StepLimiter - 7694 -23.3 -17.3 392 5.74e-14 0 1 7.54e+03 World StepLimiter - 7695 -23.4 -16.5 392 5.73e-14 0 1 7.54e+03 World StepLimiter - 7696 -23.5 -15.6 393 5.72e-14 0 1 7.54e+03 World StepLimiter - 7697 -23.7 -14.8 393 5.71e-14 0 1 7.54e+03 World StepLimiter - 7698 -23.8 -14 394 5.7e-14 0 1 7.54e+03 World StepLimiter - 7699 -23.9 -13.2 394 5.7e-14 0 1 7.54e+03 World StepLimiter - 7700 -24 -12.3 395 5.69e-14 0 1 7.55e+03 World StepLimiter - 7701 -24.1 -11.5 395 5.68e-14 0 1 7.55e+03 World StepLimiter - 7702 -24.3 -10.7 396 5.67e-14 0 1 7.55e+03 World StepLimiter - 7703 -24.4 -9.83 397 5.66e-14 0 1 7.55e+03 World StepLimiter - 7704 -24.5 -9 397 5.65e-14 0 1 7.55e+03 World StepLimiter - 7705 -24.6 -8.17 398 5.64e-14 0 1 7.55e+03 World StepLimiter - 7706 -24.7 -7.34 398 5.64e-14 0 1 7.55e+03 World StepLimiter - 7707 -24.9 -6.52 399 5.63e-14 0 1 7.55e+03 World StepLimiter - 7708 -25 -5.69 399 5.62e-14 0 1 7.55e+03 World StepLimiter - 7709 -25.1 -4.86 400 5.61e-14 0 1 7.55e+03 World StepLimiter - 7710 -25.2 -4.03 400 5.6e-14 0 1 7.56e+03 World StepLimiter - 7711 -25.3 -3.2 401 5.59e-14 0 1 7.56e+03 World StepLimiter - 7712 -25.5 -2.38 401 5.58e-14 0 1 7.56e+03 World StepLimiter - 7713 -25.6 -1.55 402 5.58e-14 0 1 7.56e+03 World StepLimiter - 7714 -25.7 -0.724 403 5.57e-14 0 1 7.56e+03 World StepLimiter - 7715 -25.8 0.102 403 5.56e-14 0 1 7.56e+03 World StepLimiter - 7716 -25.9 0.928 404 5.55e-14 0 1 7.56e+03 World StepLimiter - 7717 -26.1 1.75 404 5.54e-14 0 1 7.56e+03 World StepLimiter - 7718 -26.2 2.58 405 5.53e-14 0 1 7.56e+03 World StepLimiter - 7719 -26.3 3.4 405 5.53e-14 0 1 7.56e+03 World StepLimiter - 7720 -26.4 4.23 406 5.52e-14 0 1 7.57e+03 World StepLimiter - 7721 -26.6 5.05 406 5.51e-14 0 1 7.57e+03 World StepLimiter - 7722 -26.7 5.88 407 5.5e-14 0 1 7.57e+03 World StepLimiter - 7723 -26.8 6.7 408 5.49e-14 0 1 7.57e+03 World StepLimiter - 7724 -26.9 7.53 408 5.48e-14 0 1 7.57e+03 World StepLimiter - 7725 -27 8.35 409 5.47e-14 0 1 7.57e+03 World StepLimiter - 7726 -27.2 9.17 409 5.47e-14 0 1 7.57e+03 World StepLimiter - 7727 -27.3 9.99 410 5.46e-14 0 1 7.57e+03 World StepLimiter - 7728 -27.4 10.8 410 5.45e-14 0 1 7.57e+03 World StepLimiter - 7729 -27.5 11.6 411 5.44e-14 0 1 7.57e+03 World StepLimiter - 7730 -27.6 12.5 411 5.43e-14 0 1 7.58e+03 World StepLimiter - 7731 -27.8 13.3 412 5.42e-14 0 1 7.58e+03 World StepLimiter - 7732 -27.9 14.1 413 5.42e-14 0 1 7.58e+03 World StepLimiter - 7733 -28 14.9 413 5.41e-14 0 1 7.58e+03 World StepLimiter - 7734 -28.1 15.7 414 5.4e-14 0 1 7.58e+03 World StepLimiter - 7735 -28.3 16.6 414 5.39e-14 0 1 7.58e+03 World StepLimiter - 7736 -28.4 17.4 415 5.38e-14 0 1 7.58e+03 World StepLimiter - 7737 -28.5 18.2 415 5.37e-14 0 1 7.58e+03 World StepLimiter - 7738 -28.6 19 416 5.37e-14 0 1 7.58e+03 World StepLimiter - 7739 -28.8 19.8 416 5.36e-14 0 1 7.58e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.561084390874neV MomDir: (-0.12312095835213,0.81876055434135,0.56077837357471) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7740 -28.8 19.9 417 5.36e-14 0 0.116 7.58e+03 Guide Transportation *** StepTooSmall *** - 7741 -28.8 19.9 417 5.36e-14 0 0 7.58e+03 World Transportation - 7742 -28 20.1 417 5.35e-14 0 1 7.59e+03 World StepLimiter - 7743 -27.1 20.3 418 5.35e-14 0 1 7.59e+03 World StepLimiter - 7744 -26.3 20.4 418 5.35e-14 0 1 7.59e+03 World StepLimiter - 7745 -25.5 20.6 419 5.35e-14 0 1 7.59e+03 World StepLimiter - 7746 -24.7 20.8 419 5.35e-14 0 1 7.59e+03 World StepLimiter - 7747 -23.9 21 420 5.35e-14 0 1 7.59e+03 World StepLimiter - 7748 -23.1 21.1 420 5.34e-14 0 1 7.59e+03 World StepLimiter - 7749 -22.3 21.3 421 5.34e-14 0 1 7.59e+03 World StepLimiter - 7750 -21.5 21.4 422 5.34e-14 0 1 7.59e+03 World StepLimiter - 7751 -20.7 21.6 422 5.34e-14 0 1 7.59e+03 World StepLimiter - 7752 -19.8 21.8 423 5.34e-14 0 1 7.6e+03 World StepLimiter - 7753 -19 21.9 423 5.34e-14 0 1 7.6e+03 World StepLimiter - 7754 -18.2 22.1 424 5.33e-14 0 1 7.6e+03 World StepLimiter - 7755 -17.4 22.3 424 5.33e-14 0 1 7.6e+03 World StepLimiter - 7756 -16.6 22.4 425 5.33e-14 0 1 7.6e+03 World StepLimiter - 7757 -15.8 22.6 425 5.33e-14 0 1 7.6e+03 World StepLimiter - 7758 -15 22.7 426 5.33e-14 0 1 7.6e+03 World StepLimiter - 7759 -14.2 22.9 427 5.33e-14 0 1 7.6e+03 World StepLimiter - 7760 -13.4 23 427 5.32e-14 0 1 7.6e+03 World StepLimiter - 7761 -12.5 23.2 428 5.32e-14 0 1 7.6e+03 World StepLimiter - 7762 -11.7 23.3 428 5.32e-14 0 1 7.61e+03 World StepLimiter - 7763 -10.9 23.5 429 5.32e-14 0 1 7.61e+03 World StepLimiter - 7764 -10.1 23.6 429 5.32e-14 0 1 7.61e+03 World StepLimiter - 7765 -9.29 23.8 430 5.32e-14 0 1 7.61e+03 World StepLimiter - 7766 -8.48 23.9 431 5.31e-14 0 1 7.61e+03 World StepLimiter - 7767 -7.67 24.1 431 5.31e-14 0 1 7.61e+03 World StepLimiter - 7768 -6.85 24.2 432 5.31e-14 0 1 7.61e+03 World StepLimiter - 7769 -6.04 24.4 432 5.31e-14 0 1 7.61e+03 World StepLimiter - 7770 -5.23 24.5 433 5.31e-14 0 1 7.61e+03 World StepLimiter - 7771 -4.41 24.7 433 5.31e-14 0 1 7.61e+03 World StepLimiter - 7772 -3.6 24.8 434 5.31e-14 0 1 7.62e+03 World StepLimiter - 7773 -2.79 25 434 5.3e-14 0 1 7.62e+03 World StepLimiter - 7774 -1.97 25.1 435 5.3e-14 0 1 7.62e+03 World StepLimiter - 7775 -1.16 25.2 436 5.3e-14 0 1 7.62e+03 World StepLimiter - 7776 -0.344 25.4 436 5.3e-14 0 1 7.62e+03 World StepLimiter - 7777 0.47 25.5 437 5.3e-14 0 1 7.62e+03 World StepLimiter - 7778 1.28 25.7 437 5.3e-14 0 1 7.62e+03 World StepLimiter - 7779 2.1 25.8 438 5.3e-14 0 1 7.62e+03 World StepLimiter - 7780 2.91 25.9 438 5.29e-14 0 1 7.62e+03 World StepLimiter - 7781 3.73 26.1 439 5.29e-14 0 1 7.62e+03 World StepLimiter - 7782 4.54 26.2 440 5.29e-14 0 1 7.63e+03 World StepLimiter - 7783 5.36 26.3 440 5.29e-14 0 1 7.63e+03 World StepLimiter - 7784 6.17 26.5 441 5.29e-14 0 1 7.63e+03 World StepLimiter - 7785 6.99 26.6 441 5.29e-14 0 1 7.63e+03 World StepLimiter - 7786 7.8 26.7 442 5.29e-14 0 1 7.63e+03 World StepLimiter - 7787 8.62 26.9 442 5.29e-14 0 1 7.63e+03 World StepLimiter - 7788 9.43 27 443 5.28e-14 0 1 7.63e+03 World StepLimiter - 7789 10.2 27.1 444 5.28e-14 0 1 7.63e+03 World StepLimiter - 7790 11.1 27.2 444 5.28e-14 0 1 7.63e+03 World StepLimiter - 7791 11.9 27.4 445 5.28e-14 0 1 7.63e+03 World StepLimiter - 7792 12.7 27.5 445 5.28e-14 0 1 7.64e+03 World StepLimiter - 7793 13.5 27.6 446 5.28e-14 0 1 7.64e+03 World StepLimiter - 7794 14.3 27.7 446 5.28e-14 0 1 7.64e+03 World StepLimiter - 7795 15.1 27.9 447 5.27e-14 0 1 7.64e+03 World StepLimiter - 7796 16 28 447 5.27e-14 0 1 7.64e+03 World StepLimiter - 7797 16.8 28.1 448 5.27e-14 0 1 7.64e+03 World StepLimiter - 7798 17.6 28.2 449 5.27e-14 0 1 7.64e+03 World StepLimiter - 7799 18.4 28.3 449 5.27e-14 0 1 7.64e+03 World StepLimiter - 7800 19.2 28.5 450 5.27e-14 0 1 7.64e+03 World StepLimiter - 7801 20 28.6 450 5.27e-14 0 1 7.64e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.673415210915neV MomDir: (0.81667080451867,0.11522510115781,0.56548383983099) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7802 20.2 28.6 450 5.27e-14 0 0.176 7.64e+03 Guide Transportation *** StepTooSmall *** - 7803 20.2 28.6 450 5.27e-14 0 0 7.64e+03 World Transportation - 7804 20.4 27.8 451 5.28e-14 0 1 7.65e+03 World StepLimiter - 7805 20.5 27 452 5.28e-14 0 1 7.65e+03 World StepLimiter - 7806 20.7 26.2 452 5.29e-14 0 1 7.65e+03 World StepLimiter - 7807 20.8 25.4 453 5.3e-14 0 1 7.65e+03 World StepLimiter - 7808 21 24.5 453 5.31e-14 0 1 7.65e+03 World StepLimiter - 7809 21.2 23.7 454 5.32e-14 0 1 7.65e+03 World StepLimiter - 7810 21.3 22.9 454 5.33e-14 0 1 7.65e+03 World StepLimiter - 7811 21.5 22.1 455 5.33e-14 0 1 7.65e+03 World StepLimiter - 7812 21.7 21.3 455 5.34e-14 0 1 7.65e+03 World StepLimiter - 7813 21.8 20.5 456 5.35e-14 0 1 7.65e+03 World StepLimiter - 7814 22 19.7 457 5.36e-14 0 1 7.66e+03 World StepLimiter - 7815 22.2 18.9 457 5.37e-14 0 1 7.66e+03 World StepLimiter - 7816 22.3 18.1 458 5.38e-14 0 1 7.66e+03 World StepLimiter - 7817 22.5 17.2 458 5.38e-14 0 1 7.66e+03 World StepLimiter - 7818 22.6 16.4 459 5.39e-14 0 1 7.66e+03 World StepLimiter - 7819 22.8 15.6 459 5.4e-14 0 1 7.66e+03 World StepLimiter - 7820 23 14.8 460 5.41e-14 0 1 7.66e+03 World StepLimiter - 7821 23.1 14 461 5.42e-14 0 1 7.66e+03 World StepLimiter - 7822 23.3 13.2 461 5.43e-14 0 1 7.66e+03 World StepLimiter - 7823 23.5 12.4 462 5.43e-14 0 1 7.66e+03 World StepLimiter - 7824 23.6 11.5 462 5.44e-14 0 1 7.67e+03 World StepLimiter - 7825 23.8 10.7 463 5.45e-14 0 1 7.67e+03 World StepLimiter - 7826 23.9 9.92 463 5.46e-14 0 1 7.67e+03 World StepLimiter - 7827 24.1 9.1 464 5.47e-14 0 1 7.67e+03 World StepLimiter - 7828 24.3 8.29 464 5.48e-14 0 1 7.67e+03 World StepLimiter - 7829 24.4 7.47 465 5.48e-14 0 1 7.67e+03 World StepLimiter - 7830 24.6 6.65 466 5.49e-14 0 1 7.67e+03 World StepLimiter - 7831 24.8 5.84 466 5.5e-14 0 1 7.67e+03 World StepLimiter - 7832 24.9 5.02 467 5.51e-14 0 1 7.67e+03 World StepLimiter - 7833 25.1 4.2 467 5.52e-14 0 1 7.67e+03 World StepLimiter - 7834 25.2 3.38 468 5.53e-14 0 1 7.68e+03 World StepLimiter - 7835 25.4 2.57 468 5.53e-14 0 1 7.68e+03 World StepLimiter - 7836 25.6 1.75 469 5.54e-14 0 1 7.68e+03 World StepLimiter - 7837 25.7 0.928 469 5.55e-14 0 1 7.68e+03 World StepLimiter - 7838 25.9 0.109 470 5.56e-14 0 1 7.68e+03 World StepLimiter - 7839 26 -0.711 470 5.57e-14 0 1 7.68e+03 World StepLimiter - 7840 26.2 -1.53 471 5.58e-14 0 1 7.68e+03 World StepLimiter - 7841 26.4 -2.35 472 5.58e-14 0 1 7.68e+03 World StepLimiter - 7842 26.5 -3.17 472 5.59e-14 0 1 7.68e+03 World StepLimiter - 7843 26.7 -3.99 473 5.6e-14 0 1 7.68e+03 World StepLimiter - 7844 26.8 -4.81 473 5.61e-14 0 1 7.69e+03 World StepLimiter - 7845 27 -5.63 474 5.62e-14 0 1 7.69e+03 World StepLimiter - 7846 27.2 -6.46 474 5.63e-14 0 1 7.69e+03 World StepLimiter - 7847 27.3 -7.28 475 5.64e-14 0 1 7.69e+03 World StepLimiter - 7848 27.5 -8.1 475 5.64e-14 0 1 7.69e+03 World StepLimiter - 7849 27.6 -8.92 476 5.65e-14 0 1 7.69e+03 World StepLimiter - 7850 27.8 -9.74 477 5.66e-14 0 1 7.69e+03 World StepLimiter - 7851 28 -10.6 477 5.67e-14 0 1 7.69e+03 World StepLimiter - 7852 28.1 -11.4 478 5.68e-14 0 1 7.69e+03 World StepLimiter - 7853 28.3 -12.2 478 5.69e-14 0 1 7.69e+03 World StepLimiter - 7854 28.4 -13 479 5.69e-14 0 1 7.7e+03 World StepLimiter - 7855 28.6 -13.9 479 5.7e-14 0 1 7.7e+03 World StepLimiter - 7856 28.7 -14.7 480 5.71e-14 0 1 7.7e+03 World StepLimiter - 7857 28.9 -15.5 480 5.72e-14 0 1 7.7e+03 World StepLimiter - 7858 29.1 -16.3 481 5.73e-14 0 1 7.7e+03 World StepLimiter - 7859 29.2 -17.2 481 5.74e-14 0 1 7.7e+03 World StepLimiter - 7860 29.4 -18 482 5.75e-14 0 1 7.7e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 57.532573228277neV MomDir: (0.15769332730476,-0.82605601663018,0.54107695562889) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7861 29.5 -18.8 482 5.75e-14 0 0.969 7.7e+03 Guide Transportation *** StepTooSmall *** - 7862 29.5 -18.8 482 5.75e-14 0 0 7.7e+03 World Transportation - 7863 28.7 -19 483 5.76e-14 0 1 7.7e+03 World StepLimiter - 7864 27.9 -19.2 484 5.76e-14 0 1 7.7e+03 World StepLimiter - 7865 27.1 -19.4 484 5.76e-14 0 1 7.71e+03 World StepLimiter - 7866 26.3 -19.6 485 5.76e-14 0 1 7.71e+03 World StepLimiter - 7867 25.5 -19.8 485 5.76e-14 0 1 7.71e+03 World StepLimiter - 7868 24.6 -20 486 5.77e-14 0 1 7.71e+03 World StepLimiter - 7869 23.8 -20.3 486 5.77e-14 0 1 7.71e+03 World StepLimiter - 7870 23 -20.5 487 5.77e-14 0 1 7.71e+03 World StepLimiter - 7871 22.2 -20.7 487 5.77e-14 0 1 7.71e+03 World StepLimiter - 7872 21.4 -20.9 488 5.77e-14 0 1 7.71e+03 World StepLimiter - 7873 20.6 -21.1 488 5.78e-14 0 1 7.71e+03 World StepLimiter - 7874 19.8 -21.3 489 5.78e-14 0 1 7.71e+03 World StepLimiter - 7875 18.9 -21.6 489 5.78e-14 0 1 7.72e+03 World StepLimiter - 7876 18.1 -21.8 490 5.78e-14 0 1 7.72e+03 World StepLimiter - 7877 17.3 -22 491 5.79e-14 0 1 7.72e+03 World StepLimiter - 7878 16.5 -22.2 491 5.79e-14 0 1 7.72e+03 World StepLimiter - 7879 15.7 -22.4 492 5.79e-14 0 1 7.72e+03 World StepLimiter - 7880 14.9 -22.7 492 5.79e-14 0 1 7.72e+03 World StepLimiter - 7881 14.1 -22.9 493 5.8e-14 0 1 7.72e+03 World StepLimiter - 7882 13.3 -23.1 493 5.8e-14 0 1 7.72e+03 World StepLimiter - 7883 12.4 -23.3 494 5.8e-14 0 1 7.72e+03 World StepLimiter - 7884 11.6 -23.6 494 5.8e-14 0 1 7.72e+03 World StepLimiter - 7885 10.8 -23.8 495 5.8e-14 0 1 7.73e+03 World StepLimiter - 7886 10 -24 495 5.81e-14 0 1 7.73e+03 World StepLimiter - 7887 9.2 -24.2 496 5.81e-14 0 1 7.73e+03 World StepLimiter - 7888 8.39 -24.5 496 5.81e-14 0 1 7.73e+03 World StepLimiter - 7889 7.58 -24.7 497 5.81e-14 0 1 7.73e+03 World StepLimiter - 7890 6.77 -24.9 498 5.82e-14 0 1 7.73e+03 World StepLimiter - 7891 5.96 -25.2 498 5.82e-14 0 1 7.73e+03 World StepLimiter - 7892 5.15 -25.4 499 5.82e-14 0 1 7.73e+03 World StepLimiter - 7893 4.34 -25.6 499 5.82e-14 0 1 7.73e+03 World StepLimiter - 7894 3.53 -25.8 500 5.83e-14 0 1 7.73e+03 World StepLimiter - 7895 2.72 -26.1 500 5.83e-14 0 1 7.74e+03 World StepLimiter - 7896 1.91 -26.3 501 5.83e-14 0 1 7.74e+03 World StepLimiter - 7897 1.1 -26.6 501 5.83e-14 0 1 7.74e+03 World StepLimiter - 7898 0.288 -26.8 502 5.84e-14 0 1 7.74e+03 World StepLimiter - 7899 -0.521 -27 502 5.84e-14 0 1 7.74e+03 World StepLimiter - 7900 -1.33 -27.3 503 5.84e-14 0 1 7.74e+03 World StepLimiter - 7901 -2.14 -27.5 503 5.84e-14 0 1 7.74e+03 World StepLimiter - 7902 -2.95 -27.7 504 5.85e-14 0 1 7.74e+03 World StepLimiter - 7903 -3.76 -28 505 5.85e-14 0 1 7.74e+03 World StepLimiter - 7904 -4.56 -28.2 505 5.85e-14 0 1 7.74e+03 World StepLimiter - 7905 -5.37 -28.5 506 5.85e-14 0 1 7.75e+03 World StepLimiter - 7906 -6.18 -28.7 506 5.86e-14 0 1 7.75e+03 World StepLimiter - 7907 -6.99 -29 507 5.86e-14 0 1 7.75e+03 World StepLimiter - 7908 -7.8 -29.2 507 5.86e-14 0 1 7.75e+03 World StepLimiter - 7909 -8.6 -29.5 508 5.86e-14 0 1 7.75e+03 World StepLimiter - 7910 -9.41 -29.7 508 5.87e-14 0 1 7.75e+03 World StepLimiter - 7911 -10.2 -29.9 509 5.87e-14 0 1 7.75e+03 World StepLimiter - 7912 -11 -30.2 509 5.87e-14 0 1 7.75e+03 World StepLimiter - 7913 -11.8 -30.4 510 5.87e-14 0 1 7.75e+03 World StepLimiter - 7914 -12.6 -30.7 510 5.88e-14 0 1 7.75e+03 World StepLimiter - 7915 -13.4 -30.9 511 5.88e-14 0 1 7.76e+03 World StepLimiter - 7916 -14.3 -31.2 512 5.88e-14 0 1 7.76e+03 World StepLimiter - 7917 -15.1 -31.5 512 5.88e-14 0 1 7.76e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.837083921079neV MomDir: (-0.80598297096922,-0.25321576368663,0.53504507055783) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7918 -15.2 -31.5 512 5.88e-14 0 0.224 7.76e+03 Guide Transportation *** StepTooSmall *** - 7919 -15.2 -31.5 512 5.88e-14 0 0 7.76e+03 World Transportation - 7920 -15.5 -30.7 513 5.88e-14 0 1 7.76e+03 World StepLimiter - 7921 -15.8 -29.9 513 5.87e-14 0 1 7.76e+03 World StepLimiter - 7922 -16.1 -29.1 514 5.86e-14 0 1 7.76e+03 World StepLimiter - 7923 -16.4 -28.4 514 5.85e-14 0 1 7.76e+03 World StepLimiter - 7924 -16.8 -27.6 515 5.84e-14 0 1 7.76e+03 World StepLimiter - 7925 -17.1 -26.8 515 5.84e-14 0 1 7.76e+03 World StepLimiter - 7926 -17.4 -26 516 5.83e-14 0 1 7.76e+03 World StepLimiter - 7927 -17.7 -25.2 516 5.82e-14 0 1 7.77e+03 World StepLimiter - 7928 -18 -24.4 517 5.81e-14 0 1 7.77e+03 World StepLimiter - 7929 -18.3 -23.6 518 5.8e-14 0 1 7.77e+03 World StepLimiter - 7930 -18.6 -22.8 518 5.79e-14 0 1 7.77e+03 World StepLimiter - 7931 -18.9 -22.1 519 5.79e-14 0 1 7.77e+03 World StepLimiter - 7932 -19.2 -21.3 519 5.78e-14 0 1 7.77e+03 World StepLimiter - 7933 -19.5 -20.5 520 5.77e-14 0 1 7.77e+03 World StepLimiter - 7934 -19.8 -19.7 520 5.76e-14 0 1 7.77e+03 World StepLimiter - 7935 -20.1 -18.9 521 5.75e-14 0 1 7.77e+03 World StepLimiter - 7936 -20.4 -18.1 521 5.75e-14 0 1 7.77e+03 World StepLimiter - 7937 -20.7 -17.4 522 5.74e-14 0 1 7.78e+03 World StepLimiter - 7938 -21 -16.6 522 5.73e-14 0 1 7.78e+03 World StepLimiter - 7939 -21.3 -15.8 523 5.72e-14 0 1 7.78e+03 World StepLimiter - 7940 -21.6 -15 523 5.71e-14 0 1 7.78e+03 World StepLimiter - 7941 -21.9 -14.2 524 5.71e-14 0 1 7.78e+03 World StepLimiter - 7942 -22.2 -13.5 525 5.7e-14 0 1 7.78e+03 World StepLimiter - 7943 -22.5 -12.7 525 5.69e-14 0 1 7.78e+03 World StepLimiter - 7944 -22.9 -11.9 526 5.68e-14 0 1 7.78e+03 World StepLimiter - 7945 -23.2 -11.1 526 5.67e-14 0 1 7.78e+03 World StepLimiter - 7946 -23.5 -10.3 527 5.67e-14 0 1 7.78e+03 World StepLimiter - 7947 -23.8 -9.55 527 5.66e-14 0 1 7.79e+03 World StepLimiter - 7948 -24.1 -8.77 528 5.65e-14 0 1 7.79e+03 World StepLimiter - 7949 -24.4 -7.99 528 5.64e-14 0 1 7.79e+03 World StepLimiter - 7950 -24.7 -7.21 529 5.63e-14 0 1 7.79e+03 World StepLimiter - 7951 -25 -6.43 529 5.63e-14 0 1 7.79e+03 World StepLimiter - 7952 -25.3 -5.66 530 5.62e-14 0 1 7.79e+03 World StepLimiter - 7953 -25.6 -4.88 531 5.61e-14 0 1 7.79e+03 World StepLimiter - 7954 -25.9 -4.1 531 5.6e-14 0 1 7.79e+03 World StepLimiter - 7955 -26.2 -3.32 532 5.59e-14 0 1 7.79e+03 World StepLimiter - 7956 -26.6 -2.55 532 5.59e-14 0 1 7.79e+03 World StepLimiter - 7957 -26.9 -1.77 533 5.58e-14 0 1 7.8e+03 World StepLimiter - 7958 -27.2 -0.997 533 5.57e-14 0 1 7.8e+03 World StepLimiter - 7959 -27.5 -0.221 534 5.56e-14 0 1 7.8e+03 World StepLimiter - 7960 -27.8 0.554 534 5.55e-14 0 1 7.8e+03 World StepLimiter - 7961 -28.1 1.33 535 5.55e-14 0 1 7.8e+03 World StepLimiter - 7962 -28.4 2.1 536 5.54e-14 0 1 7.8e+03 World StepLimiter - 7963 -28.7 2.88 536 5.53e-14 0 1 7.8e+03 World StepLimiter - 7964 -29 3.65 537 5.52e-14 0 1 7.8e+03 World StepLimiter - 7965 -29.4 4.42 537 5.52e-14 0 1 7.8e+03 World StepLimiter - 7966 -29.7 5.2 538 5.51e-14 0 1 7.8e+03 World StepLimiter - 7967 -30 5.97 538 5.5e-14 0 1 7.81e+03 World StepLimiter - 7968 -30.3 6.74 539 5.49e-14 0 1 7.81e+03 World StepLimiter - 7969 -30.6 7.51 539 5.48e-14 0 1 7.81e+03 World StepLimiter - 7970 -30.9 8.28 540 5.48e-14 0 1 7.81e+03 World StepLimiter - 7971 -31.2 9.05 541 5.47e-14 0 1 7.81e+03 World StepLimiter - 7972 -31.5 9.82 541 5.46e-14 0 1 7.81e+03 World StepLimiter - 7973 -31.9 10.6 542 5.45e-14 0 1 7.81e+03 World StepLimiter - 7974 -32.2 11.4 542 5.44e-14 0 1 7.81e+03 World StepLimiter - 7975 -32.5 12.1 543 5.44e-14 0 1 7.81e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 54.316224098313neV MomDir: (-0.31427112894496,0.76885191955868,0.55686657585332) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 7976 -32.7 12.6 543 5.43e-14 0 0.574 7.81e+03 Guide Transportation *** StepTooSmall *** - 7977 -32.7 12.6 543 5.43e-14 0 0 7.81e+03 World Transportation - 7978 -31.9 12.9 544 5.43e-14 0 1 7.82e+03 World StepLimiter - 7979 -31.2 13.3 544 5.42e-14 0 1 7.82e+03 World StepLimiter - 7980 -30.4 13.6 545 5.42e-14 0 1 7.82e+03 World StepLimiter - 7981 -29.7 14 545 5.42e-14 0 1 7.82e+03 World StepLimiter - 7982 -28.9 14.4 546 5.41e-14 0 1 7.82e+03 World StepLimiter - 7983 -28.2 14.7 546 5.41e-14 0 1 7.82e+03 World StepLimiter - 7984 -27.4 15.1 547 5.41e-14 0 1 7.82e+03 World StepLimiter - 7985 -26.7 15.4 548 5.4e-14 0 1 7.82e+03 World StepLimiter - 7986 -25.9 15.8 548 5.4e-14 0 1 7.82e+03 World StepLimiter - 7987 -25.2 16.1 549 5.4e-14 0 1 7.82e+03 World StepLimiter - 7988 -24.4 16.5 549 5.39e-14 0 1 7.83e+03 World StepLimiter - 7989 -23.7 16.8 550 5.39e-14 0 1 7.83e+03 World StepLimiter - 7990 -22.9 17.2 550 5.38e-14 0 1 7.83e+03 World StepLimiter - 7991 -22.2 17.5 551 5.38e-14 0 1 7.83e+03 World StepLimiter - 7992 -21.4 17.9 551 5.38e-14 0 1 7.83e+03 World StepLimiter - 7993 -20.7 18.2 552 5.37e-14 0 1 7.83e+03 World StepLimiter - 7994 -19.9 18.6 553 5.37e-14 0 1 7.83e+03 World StepLimiter - 7995 -19.1 18.9 553 5.37e-14 0 1 7.83e+03 World StepLimiter - 7996 -18.4 19.3 554 5.36e-14 0 1 7.83e+03 World StepLimiter - 7997 -17.6 19.6 554 5.36e-14 0 1 7.83e+03 World StepLimiter - 7998 -16.9 19.9 555 5.36e-14 0 1 7.84e+03 World StepLimiter - 7999 -16.1 20.3 555 5.35e-14 0 1 7.84e+03 World StepLimiter - 8000 -15.4 20.6 556 5.35e-14 0 1 7.84e+03 World StepLimiter - 8001 -14.6 21 556 5.35e-14 0 1 7.84e+03 World StepLimiter - 8002 -13.9 21.3 557 5.34e-14 0 1 7.84e+03 World StepLimiter - 8003 -13.1 21.6 558 5.34e-14 0 1 7.84e+03 World StepLimiter - 8004 -12.4 22 558 5.34e-14 0 1 7.84e+03 World StepLimiter - 8005 -11.6 22.3 559 5.33e-14 0 1 7.84e+03 World StepLimiter - 8006 -10.8 22.7 559 5.33e-14 0 1 7.84e+03 World StepLimiter - 8007 -10.1 23 560 5.32e-14 0 1 7.84e+03 World StepLimiter - 8008 -9.33 23.3 560 5.32e-14 0 1 7.85e+03 World StepLimiter - 8009 -8.58 23.7 561 5.32e-14 0 1 7.85e+03 World StepLimiter - 8010 -7.82 24 562 5.31e-14 0 1 7.85e+03 World StepLimiter - 8011 -7.06 24.3 562 5.31e-14 0 1 7.85e+03 World StepLimiter - 8012 -6.31 24.7 563 5.31e-14 0 1 7.85e+03 World StepLimiter - 8013 -5.55 25 563 5.3e-14 0 1 7.85e+03 World StepLimiter - 8014 -4.79 25.3 564 5.3e-14 0 1 7.85e+03 World StepLimiter - 8015 -4.03 25.6 564 5.3e-14 0 1 7.85e+03 World StepLimiter - 8016 -3.27 26 565 5.29e-14 0 1 7.85e+03 World StepLimiter - 8017 -2.52 26.3 565 5.29e-14 0 1 7.85e+03 World StepLimiter - 8018 -1.76 26.6 566 5.29e-14 0 1 7.86e+03 World StepLimiter - 8019 -0.999 26.9 567 5.28e-14 0 1 7.86e+03 World StepLimiter - 8020 -0.239 27.3 567 5.28e-14 0 1 7.86e+03 World StepLimiter - 8021 0.52 27.6 568 5.28e-14 0 1 7.86e+03 World StepLimiter - 8022 1.28 27.9 568 5.27e-14 0 1 7.86e+03 World StepLimiter - 8023 2.04 28.2 569 5.27e-14 0 1 7.86e+03 World StepLimiter - 8024 2.8 28.6 569 5.27e-14 0 1 7.86e+03 World StepLimiter - 8025 3.56 28.9 570 5.26e-14 0 1 7.86e+03 World StepLimiter - 8026 4.32 29.2 571 5.26e-14 0 1 7.86e+03 World StepLimiter - 8027 5.08 29.5 571 5.26e-14 0 1 7.86e+03 World StepLimiter - 8028 5.84 29.8 572 5.25e-14 0 1 7.87e+03 World StepLimiter - 8029 6.6 30.1 572 5.25e-14 0 1 7.87e+03 World StepLimiter - 8030 7.37 30.5 573 5.25e-14 0 1 7.87e+03 World StepLimiter - 8031 8.13 30.8 573 5.25e-14 0 1 7.87e+03 World StepLimiter - 8032 8.89 31.1 574 5.24e-14 0 1 7.87e+03 World StepLimiter - 8033 9.65 31.4 575 5.24e-14 0 1 7.87e+03 World StepLimiter - 8034 10.4 31.7 575 5.24e-14 0 1 7.87e+03 World StepLimiter - 8035 11.2 32 576 5.23e-14 0 1 7.87e+03 World StepLimiter - 8036 11.9 32.3 576 5.23e-14 0 1 7.87e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.259979729989neV MomDir: (0.7632758417899,0.30839626887638,0.56771624134161) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8037 12.7 32.6 577 5.23e-14 0 0.965 7.87e+03 Guide Transportation *** StepTooSmall *** - 8038 12.7 32.6 577 5.23e-14 0 0 7.87e+03 World Transportation - 8039 13 31.9 577 5.23e-14 0 1 7.88e+03 World StepLimiter - 8040 13.4 31.1 578 5.24e-14 0 1 7.88e+03 World StepLimiter - 8041 13.7 30.4 578 5.25e-14 0 1 7.88e+03 World StepLimiter - 8042 14.1 29.6 579 5.26e-14 0 1 7.88e+03 World StepLimiter - 8043 14.4 28.9 580 5.26e-14 0 1 7.88e+03 World StepLimiter - 8044 14.8 28.2 580 5.27e-14 0 1 7.88e+03 World StepLimiter - 8045 15.2 27.4 581 5.28e-14 0 1 7.88e+03 World StepLimiter - 8046 15.5 26.7 581 5.29e-14 0 1 7.88e+03 World StepLimiter - 8047 15.9 25.9 582 5.29e-14 0 1 7.88e+03 World StepLimiter - 8048 16.2 25.2 582 5.3e-14 0 1 7.88e+03 World StepLimiter - 8049 16.6 24.4 583 5.31e-14 0 1 7.89e+03 World StepLimiter - 8050 16.9 23.7 584 5.32e-14 0 1 7.89e+03 World StepLimiter - 8051 17.3 22.9 584 5.33e-14 0 1 7.89e+03 World StepLimiter - 8052 17.6 22.2 585 5.33e-14 0 1 7.89e+03 World StepLimiter - 8053 18 21.4 585 5.34e-14 0 1 7.89e+03 World StepLimiter - 8054 18.3 20.7 586 5.35e-14 0 1 7.89e+03 World StepLimiter - 8055 18.7 19.9 586 5.36e-14 0 1 7.89e+03 World StepLimiter - 8056 19 19.2 587 5.36e-14 0 1 7.89e+03 World StepLimiter - 8057 19.4 18.4 587 5.37e-14 0 1 7.89e+03 World StepLimiter - 8058 19.7 17.7 588 5.38e-14 0 1 7.89e+03 World StepLimiter - 8059 20.1 16.9 589 5.39e-14 0 1 7.9e+03 World StepLimiter - 8060 20.4 16.2 589 5.39e-14 0 1 7.9e+03 World StepLimiter - 8061 20.8 15.4 590 5.4e-14 0 1 7.9e+03 World StepLimiter - 8062 21.1 14.7 590 5.41e-14 0 1 7.9e+03 World StepLimiter - 8063 21.5 13.9 591 5.42e-14 0 1 7.9e+03 World StepLimiter - 8064 21.8 13.2 591 5.43e-14 0 1 7.9e+03 World StepLimiter - 8065 22.2 12.4 592 5.43e-14 0 1 7.9e+03 World StepLimiter - 8066 22.5 11.7 593 5.44e-14 0 1 7.9e+03 World StepLimiter - 8067 22.9 10.9 593 5.45e-14 0 1 7.9e+03 World StepLimiter - 8068 23.2 10.1 594 5.46e-14 0 1 7.9e+03 World StepLimiter - 8069 23.6 9.39 594 5.46e-14 0 1 7.91e+03 World StepLimiter - 8070 23.9 8.63 595 5.47e-14 0 1 7.91e+03 World StepLimiter - 8071 24.2 7.88 595 5.48e-14 0 1 7.91e+03 World StepLimiter - 8072 24.6 7.12 596 5.49e-14 0 1 7.91e+03 World StepLimiter - 8073 24.9 6.36 596 5.5e-14 0 1 7.91e+03 World StepLimiter - 8074 25.3 5.61 597 5.5e-14 0 1 7.91e+03 World StepLimiter - 8075 25.6 4.85 598 5.51e-14 0 1 7.91e+03 World StepLimiter - 8076 26 4.09 598 5.52e-14 0 1 7.91e+03 World StepLimiter - 8077 26.3 3.33 599 5.53e-14 0 1 7.91e+03 World StepLimiter - 8078 26.7 2.57 599 5.53e-14 0 1 7.91e+03 World StepLimiter - 8079 27 1.81 600 5.54e-14 0 1 7.92e+03 World StepLimiter - 8080 27.4 1.05 600 5.55e-14 0 1 7.92e+03 World StepLimiter - 8081 27.7 0.292 601 5.56e-14 0 1 7.92e+03 World StepLimiter - 8082 28 -0.469 601 5.57e-14 0 1 7.92e+03 World StepLimiter - 8083 28.4 -1.23 602 5.57e-14 0 1 7.92e+03 World StepLimiter - 8084 28.7 -1.99 602 5.58e-14 0 1 7.92e+03 World StepLimiter - 8085 29.1 -2.75 603 5.59e-14 0 1 7.92e+03 World StepLimiter - 8086 29.4 -3.52 604 5.6e-14 0 1 7.92e+03 World StepLimiter - 8087 29.8 -4.28 604 5.6e-14 0 1 7.92e+03 World StepLimiter - 8088 30.1 -5.04 605 5.61e-14 0 1 7.92e+03 World StepLimiter - 8089 30.4 -5.81 605 5.62e-14 0 1 7.93e+03 World StepLimiter - 8090 30.8 -6.57 606 5.63e-14 0 1 7.93e+03 World StepLimiter - 8091 31.1 -7.33 606 5.64e-14 0 1 7.93e+03 World StepLimiter - 8092 31.5 -8.1 607 5.64e-14 0 1 7.93e+03 World StepLimiter - 8093 31.8 -8.86 607 5.65e-14 0 1 7.93e+03 World StepLimiter - 8094 32.2 -9.63 608 5.66e-14 0 1 7.93e+03 World StepLimiter - 8095 32.5 -10.4 608 5.67e-14 0 1 7.93e+03 World StepLimiter - 8096 32.8 -11.2 609 5.68e-14 0 1 7.93e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.794462346316neV MomDir: (0.34035512841242,-0.76654373545856,0.54458157166086) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8097 33 -11.6 609 5.68e-14 0 0.562 7.93e+03 Guide Transportation *** StepTooSmall *** - 8098 33 -11.6 609 5.68e-14 0 0 7.93e+03 World Transportation - 8099 32.3 -12 610 5.68e-14 0 1 7.93e+03 World StepLimiter - 8100 31.5 -12.4 610 5.69e-14 0 1 7.93e+03 World StepLimiter - 8101 30.8 -12.8 611 5.69e-14 0 1 7.94e+03 World StepLimiter - 8102 30 -13.1 612 5.7e-14 0 1 7.94e+03 World StepLimiter - 8103 29.3 -13.5 612 5.7e-14 0 1 7.94e+03 World StepLimiter - 8104 28.6 -13.9 613 5.7e-14 0 1 7.94e+03 World StepLimiter - 8105 27.8 -14.3 613 5.71e-14 0 1 7.94e+03 World StepLimiter - 8106 27.1 -14.7 614 5.71e-14 0 1 7.94e+03 World StepLimiter - 8107 26.3 -15.1 614 5.72e-14 0 1 7.94e+03 World StepLimiter - 8108 25.6 -15.5 615 5.72e-14 0 1 7.94e+03 World StepLimiter - 8109 24.8 -15.9 615 5.72e-14 0 1 7.94e+03 World StepLimiter - 8110 24.1 -16.3 616 5.73e-14 0 1 7.94e+03 World StepLimiter - 8111 23.4 -16.7 616 5.73e-14 0 1 7.95e+03 World StepLimiter - 8112 22.6 -17.1 617 5.74e-14 0 1 7.95e+03 World StepLimiter - 8113 21.9 -17.5 617 5.74e-14 0 1 7.95e+03 World StepLimiter - 8114 21.1 -17.9 618 5.74e-14 0 1 7.95e+03 World StepLimiter - 8115 20.4 -18.3 619 5.75e-14 0 1 7.95e+03 World StepLimiter - 8116 19.7 -18.7 619 5.75e-14 0 1 7.95e+03 World StepLimiter - 8117 18.9 -19.1 620 5.76e-14 0 1 7.95e+03 World StepLimiter - 8118 18.2 -19.5 620 5.76e-14 0 1 7.95e+03 World StepLimiter - 8119 17.4 -19.9 621 5.76e-14 0 1 7.95e+03 World StepLimiter - 8120 16.7 -20.3 621 5.77e-14 0 1 7.95e+03 World StepLimiter - 8121 16 -20.7 622 5.77e-14 0 1 7.96e+03 World StepLimiter - 8122 15.2 -21.1 622 5.78e-14 0 1 7.96e+03 World StepLimiter - 8123 14.5 -21.5 623 5.78e-14 0 1 7.96e+03 World StepLimiter - 8124 13.7 -21.9 623 5.78e-14 0 1 7.96e+03 World StepLimiter - 8125 13 -22.3 624 5.79e-14 0 1 7.96e+03 World StepLimiter - 8126 12.3 -22.7 625 5.79e-14 0 1 7.96e+03 World StepLimiter - 8127 11.5 -23.1 625 5.8e-14 0 1 7.96e+03 World StepLimiter - 8128 10.8 -23.5 626 5.8e-14 0 1 7.96e+03 World StepLimiter - 8129 10.1 -23.9 626 5.81e-14 0 1 7.96e+03 World StepLimiter - 8130 9.33 -24.3 627 5.81e-14 0 1 7.96e+03 World StepLimiter - 8131 8.59 -24.7 627 5.81e-14 0 1 7.97e+03 World StepLimiter - 8132 7.85 -25.1 628 5.82e-14 0 1 7.97e+03 World StepLimiter - 8133 7.12 -25.6 628 5.82e-14 0 1 7.97e+03 World StepLimiter - 8134 6.38 -26 629 5.83e-14 0 1 7.97e+03 World StepLimiter - 8135 5.65 -26.4 629 5.83e-14 0 1 7.97e+03 World StepLimiter - 8136 4.91 -26.8 630 5.84e-14 0 1 7.97e+03 World StepLimiter - 8137 4.18 -27.2 630 5.84e-14 0 1 7.97e+03 World StepLimiter - 8138 3.44 -27.6 631 5.84e-14 0 1 7.97e+03 World StepLimiter - 8139 2.71 -28 632 5.85e-14 0 1 7.97e+03 World StepLimiter - 8140 1.98 -28.5 632 5.85e-14 0 1 7.97e+03 World StepLimiter - 8141 1.24 -28.9 633 5.86e-14 0 1 7.98e+03 World StepLimiter - 8142 0.509 -29.3 633 5.86e-14 0 1 7.98e+03 World StepLimiter - 8143 -0.224 -29.7 634 5.87e-14 0 1 7.98e+03 World StepLimiter - 8144 -0.957 -30.1 634 5.87e-14 0 1 7.98e+03 World StepLimiter - 8145 -1.69 -30.5 635 5.87e-14 0 1 7.98e+03 World StepLimiter - 8146 -2.42 -31 635 5.88e-14 0 1 7.98e+03 World StepLimiter - 8147 -3.15 -31.4 636 5.88e-14 0 1 7.98e+03 World StepLimiter - 8148 -3.89 -31.8 636 5.89e-14 0 1 7.98e+03 World StepLimiter - 8149 -4.62 -32.2 637 5.89e-14 0 1 7.98e+03 World StepLimiter - 8150 -5.35 -32.7 637 5.9e-14 0 1 7.98e+03 World StepLimiter - 8151 -6.08 -33.1 638 5.9e-14 0 1 7.99e+03 World StepLimiter - 8152 -6.81 -33.5 638 5.9e-14 0 1 7.99e+03 World StepLimiter - 8153 -7.54 -33.9 639 5.91e-14 0 1 7.99e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.103913935893neV MomDir: (-0.73008065187246,-0.42661624541457,0.53383594943565) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8154 -7.84 -34.1 639 5.91e-14 0 0.41 7.99e+03 Guide Transportation *** StepTooSmall *** - 8155 -7.84 -34.1 639 5.91e-14 0 0 7.99e+03 World Transportation - 8156 -8.31 -33.4 640 5.9e-14 0 1 7.99e+03 World StepLimiter - 8157 -8.78 -32.7 640 5.9e-14 0 1 7.99e+03 World StepLimiter - 8158 -9.25 -32 641 5.89e-14 0 1 7.99e+03 World StepLimiter - 8159 -9.72 -31.3 641 5.88e-14 0 1 7.99e+03 World StepLimiter - 8160 -10.2 -30.6 642 5.87e-14 0 1 7.99e+03 World StepLimiter - 8161 -10.7 -29.9 642 5.87e-14 0 1 7.99e+03 World StepLimiter - 8162 -11.1 -29.2 643 5.86e-14 0 1 8e+03 World StepLimiter - 8163 -11.6 -28.5 643 5.85e-14 0 1 8e+03 World StepLimiter - 8164 -12.1 -27.8 644 5.85e-14 0 1 8e+03 World StepLimiter - 8165 -12.6 -27.1 645 5.84e-14 0 1 8e+03 World StepLimiter - 8166 -13 -26.4 645 5.83e-14 0 1 8e+03 World StepLimiter - 8167 -13.5 -25.7 646 5.82e-14 0 1 8e+03 World StepLimiter - 8168 -14 -25 646 5.82e-14 0 1 8e+03 World StepLimiter - 8169 -14.5 -24.3 647 5.81e-14 0 1 8e+03 World StepLimiter - 8170 -14.9 -23.6 647 5.8e-14 0 1 8e+03 World StepLimiter - 8171 -15.4 -22.9 648 5.8e-14 0 1 8e+03 World StepLimiter - 8172 -15.9 -22.2 648 5.79e-14 0 1 8.01e+03 World StepLimiter - 8173 -16.4 -21.5 649 5.78e-14 0 1 8.01e+03 World StepLimiter - 8174 -16.8 -20.8 649 5.77e-14 0 1 8.01e+03 World StepLimiter - 8175 -17.3 -20.1 650 5.77e-14 0 1 8.01e+03 World StepLimiter - 8176 -17.8 -19.5 651 5.76e-14 0 1 8.01e+03 World StepLimiter - 8177 -18.3 -18.8 651 5.75e-14 0 1 8.01e+03 World StepLimiter - 8178 -18.7 -18.1 652 5.75e-14 0 1 8.01e+03 World StepLimiter - 8179 -19.2 -17.4 652 5.74e-14 0 1 8.01e+03 World StepLimiter - 8180 -19.7 -16.7 653 5.73e-14 0 1 8.01e+03 World StepLimiter - 8181 -20.2 -16 653 5.72e-14 0 1 8.01e+03 World StepLimiter - 8182 -20.7 -15.3 654 5.72e-14 0 1 8.02e+03 World StepLimiter - 8183 -21.1 -14.6 654 5.71e-14 0 1 8.02e+03 World StepLimiter - 8184 -21.6 -13.9 655 5.7e-14 0 1 8.02e+03 World StepLimiter - 8185 -22.1 -13.2 655 5.7e-14 0 1 8.02e+03 World StepLimiter - 8186 -22.6 -12.5 656 5.69e-14 0 1 8.02e+03 World StepLimiter - 8187 -23 -11.9 656 5.68e-14 0 1 8.02e+03 World StepLimiter - 8188 -23.5 -11.2 657 5.68e-14 0 1 8.02e+03 World StepLimiter - 8189 -24 -10.5 658 5.67e-14 0 1 8.02e+03 World StepLimiter - 8190 -24.5 -9.8 658 5.66e-14 0 1 8.02e+03 World StepLimiter - 8191 -25 -9.11 659 5.65e-14 0 1 8.02e+03 World StepLimiter - 8192 -25.5 -8.43 659 5.65e-14 0 1 8.03e+03 World StepLimiter - 8193 -25.9 -7.74 660 5.64e-14 0 1 8.03e+03 World StepLimiter - 8194 -26.4 -7.06 660 5.63e-14 0 1 8.03e+03 World StepLimiter - 8195 -26.9 -6.37 661 5.63e-14 0 1 8.03e+03 World StepLimiter - 8196 -27.4 -5.69 661 5.62e-14 0 1 8.03e+03 World StepLimiter - 8197 -27.9 -5.01 662 5.61e-14 0 1 8.03e+03 World StepLimiter - 8198 -28.3 -4.32 662 5.6e-14 0 1 8.03e+03 World StepLimiter - 8199 -28.8 -3.64 663 5.6e-14 0 1 8.03e+03 World StepLimiter - 8200 -29.3 -2.96 664 5.59e-14 0 1 8.03e+03 World StepLimiter - 8201 -29.8 -2.28 664 5.58e-14 0 1 8.03e+03 World StepLimiter - 8202 -30.3 -1.6 665 5.58e-14 0 1 8.04e+03 World StepLimiter - 8203 -30.8 -0.916 665 5.57e-14 0 1 8.04e+03 World StepLimiter - 8204 -31.2 -0.236 666 5.56e-14 0 1 8.04e+03 World StepLimiter - 8205 -31.7 0.443 666 5.56e-14 0 1 8.04e+03 World StepLimiter - 8206 -32.2 1.12 667 5.55e-14 0 1 8.04e+03 World StepLimiter - 8207 -32.7 1.8 667 5.54e-14 0 1 8.04e+03 World StepLimiter - 8208 -33.2 2.48 668 5.54e-14 0 1 8.04e+03 World StepLimiter - 8209 -33.7 3.16 669 5.53e-14 0 1 8.04e+03 World StepLimiter - 8210 -34.2 3.83 669 5.52e-14 0 1 8.04e+03 World StepLimiter - 8211 -34.7 4.51 670 5.51e-14 0 1 8.04e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 55.136497730931neV MomDir: (-0.4872390081429,0.67609997322097,0.55270876160463) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8212 -34.7 4.57 670 5.51e-14 0 0.0972 8.04e+03 Guide Transportation *** StepTooSmall *** - 8213 -34.7 4.57 670 5.51e-14 0 0 8.04e+03 World Transportation - 8214 -34.1 5.1 670 5.51e-14 0 1 8.05e+03 World StepLimiter - 8215 -33.4 5.63 671 5.5e-14 0 1 8.05e+03 World StepLimiter - 8216 -32.8 6.15 671 5.5e-14 0 1 8.05e+03 World StepLimiter - 8217 -32.1 6.68 672 5.49e-14 0 1 8.05e+03 World StepLimiter - 8218 -31.5 7.2 672 5.49e-14 0 1 8.05e+03 World StepLimiter - 8219 -30.8 7.72 673 5.48e-14 0 1 8.05e+03 World StepLimiter - 8220 -30.2 8.25 674 5.48e-14 0 1 8.05e+03 World StepLimiter - 8221 -29.5 8.77 674 5.47e-14 0 1 8.05e+03 World StepLimiter - 8222 -28.9 9.29 675 5.47e-14 0 1 8.05e+03 World StepLimiter - 8223 -28.2 9.81 675 5.46e-14 0 1 8.05e+03 World StepLimiter - 8224 -27.6 10.3 676 5.45e-14 0 1 8.06e+03 World StepLimiter - 8225 -26.9 10.8 676 5.45e-14 0 1 8.06e+03 World StepLimiter - 8226 -26.3 11.4 677 5.44e-14 0 1 8.06e+03 World StepLimiter - 8227 -25.6 11.9 677 5.44e-14 0 1 8.06e+03 World StepLimiter - 8228 -25 12.4 678 5.43e-14 0 1 8.06e+03 World StepLimiter - 8229 -24.3 12.9 679 5.43e-14 0 1 8.06e+03 World StepLimiter - 8230 -23.7 13.4 679 5.42e-14 0 1 8.06e+03 World StepLimiter - 8231 -23 13.9 680 5.42e-14 0 1 8.06e+03 World StepLimiter - 8232 -22.4 14.5 680 5.41e-14 0 1 8.06e+03 World StepLimiter - 8233 -21.7 15 681 5.41e-14 0 1 8.06e+03 World StepLimiter - 8234 -21.1 15.5 681 5.4e-14 0 1 8.07e+03 World StepLimiter - 8235 -20.4 16 682 5.4e-14 0 1 8.07e+03 World StepLimiter - 8236 -19.8 16.5 682 5.39e-14 0 1 8.07e+03 World StepLimiter - 8237 -19.1 17 683 5.39e-14 0 1 8.07e+03 World StepLimiter - 8238 -18.5 17.5 684 5.38e-14 0 1 8.07e+03 World StepLimiter - 8239 -17.8 18 684 5.38e-14 0 1 8.07e+03 World StepLimiter - 8240 -17.1 18.5 685 5.37e-14 0 1 8.07e+03 World StepLimiter - 8241 -16.5 19.1 685 5.37e-14 0 1 8.07e+03 World StepLimiter - 8242 -15.8 19.6 686 5.36e-14 0 1 8.07e+03 World StepLimiter - 8243 -15.2 20.1 686 5.35e-14 0 1 8.07e+03 World StepLimiter - 8244 -14.5 20.6 687 5.35e-14 0 1 8.08e+03 World StepLimiter - 8245 -13.9 21.1 688 5.34e-14 0 1 8.08e+03 World StepLimiter - 8246 -13.2 21.6 688 5.34e-14 0 1 8.08e+03 World StepLimiter - 8247 -12.6 22.1 689 5.33e-14 0 1 8.08e+03 World StepLimiter - 8248 -11.9 22.6 689 5.33e-14 0 1 8.08e+03 World StepLimiter - 8249 -11.2 23.1 690 5.32e-14 0 1 8.08e+03 World StepLimiter - 8250 -10.6 23.6 690 5.32e-14 0 1 8.08e+03 World StepLimiter - 8251 -9.93 24.1 691 5.31e-14 0 1 8.08e+03 World StepLimiter - 8252 -9.27 24.6 691 5.31e-14 0 1 8.08e+03 World StepLimiter - 8253 -8.61 25.1 692 5.3e-14 0 1 8.08e+03 World StepLimiter - 8254 -7.95 25.6 693 5.3e-14 0 1 8.09e+03 World StepLimiter - 8255 -7.3 26.1 693 5.29e-14 0 1 8.09e+03 World StepLimiter - 8256 -6.64 26.6 694 5.29e-14 0 1 8.09e+03 World StepLimiter - 8257 -5.98 27.1 694 5.28e-14 0 1 8.09e+03 World StepLimiter - 8258 -5.32 27.6 695 5.28e-14 0 1 8.09e+03 World StepLimiter - 8259 -4.66 28.1 695 5.27e-14 0 1 8.09e+03 World StepLimiter - 8260 -4 28.6 696 5.27e-14 0 1 8.09e+03 World StepLimiter - 8261 -3.33 29.1 697 5.26e-14 0 1 8.09e+03 World StepLimiter - 8262 -2.67 29.6 697 5.26e-14 0 1 8.09e+03 World StepLimiter - 8263 -2.01 30 698 5.25e-14 0 1 8.09e+03 World StepLimiter - 8264 -1.35 30.5 698 5.25e-14 0 1 8.1e+03 World StepLimiter - 8265 -0.688 31 699 5.24e-14 0 1 8.1e+03 World StepLimiter - 8266 -0.0257 31.5 699 5.24e-14 0 1 8.1e+03 World StepLimiter - 8267 0.637 32 700 5.23e-14 0 1 8.1e+03 World StepLimiter - 8268 1.3 32.5 700 5.23e-14 0 1 8.1e+03 World StepLimiter - 8269 1.96 33 701 5.22e-14 0 1 8.1e+03 World StepLimiter - 8270 2.63 33.5 702 5.22e-14 0 1 8.1e+03 World StepLimiter - 8271 3.29 34 702 5.21e-14 0 1 8.1e+03 World StepLimiter - 8272 3.96 34.4 703 5.21e-14 0 1 8.1e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.044193826052neV MomDir: (0.66473378113082,0.48424264625099,0.56889195791061) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8273 4.36 34.7 703 5.2e-14 0 0.604 8.1e+03 Guide Transportation *** StepTooSmall *** - 8274 4.36 34.7 703 5.2e-14 0 0 8.1e+03 World Transportation - 8275 4.88 34.1 704 5.21e-14 0 1 8.1e+03 World StepLimiter - 8276 5.41 33.5 704 5.22e-14 0 1 8.11e+03 World StepLimiter - 8277 5.93 32.8 705 5.22e-14 0 1 8.11e+03 World StepLimiter - 8278 6.45 32.2 705 5.23e-14 0 1 8.11e+03 World StepLimiter - 8279 6.98 31.6 706 5.24e-14 0 1 8.11e+03 World StepLimiter - 8280 7.5 30.9 707 5.24e-14 0 1 8.11e+03 World StepLimiter - 8281 8.02 30.3 707 5.25e-14 0 1 8.11e+03 World StepLimiter - 8282 8.54 29.6 708 5.26e-14 0 1 8.11e+03 World StepLimiter - 8283 9.06 29 708 5.26e-14 0 1 8.11e+03 World StepLimiter - 8284 9.59 28.4 709 5.27e-14 0 1 8.11e+03 World StepLimiter - 8285 10.1 27.7 709 5.28e-14 0 1 8.11e+03 World StepLimiter - 8286 10.6 27.1 710 5.28e-14 0 1 8.12e+03 World StepLimiter - 8287 11.1 26.4 710 5.29e-14 0 1 8.12e+03 World StepLimiter - 8288 11.7 25.8 711 5.3e-14 0 1 8.12e+03 World StepLimiter - 8289 12.2 25.2 712 5.3e-14 0 1 8.12e+03 World StepLimiter - 8290 12.7 24.5 712 5.31e-14 0 1 8.12e+03 World StepLimiter - 8291 13.2 23.9 713 5.32e-14 0 1 8.12e+03 World StepLimiter - 8292 13.7 23.2 713 5.32e-14 0 1 8.12e+03 World StepLimiter - 8293 14.3 22.6 714 5.33e-14 0 1 8.12e+03 World StepLimiter - 8294 14.8 21.9 714 5.34e-14 0 1 8.12e+03 World StepLimiter - 8295 15.3 21.3 715 5.34e-14 0 1 8.12e+03 World StepLimiter - 8296 15.8 20.7 716 5.35e-14 0 1 8.13e+03 World StepLimiter - 8297 16.3 20 716 5.36e-14 0 1 8.13e+03 World StepLimiter - 8298 16.9 19.4 717 5.36e-14 0 1 8.13e+03 World StepLimiter - 8299 17.4 18.7 717 5.37e-14 0 1 8.13e+03 World StepLimiter - 8300 17.9 18.1 718 5.38e-14 0 1 8.13e+03 World StepLimiter - 8301 18.4 17.4 718 5.38e-14 0 1 8.13e+03 World StepLimiter - 8302 18.9 16.8 719 5.39e-14 0 1 8.13e+03 World StepLimiter - 8303 19.4 16.1 719 5.4e-14 0 1 8.13e+03 World StepLimiter - 8304 19.9 15.5 720 5.4e-14 0 1 8.13e+03 World StepLimiter - 8305 20.5 14.8 721 5.41e-14 0 1 8.13e+03 World StepLimiter - 8306 21 14.2 721 5.42e-14 0 1 8.14e+03 World StepLimiter - 8307 21.5 13.5 722 5.42e-14 0 1 8.14e+03 World StepLimiter - 8308 22 12.9 722 5.43e-14 0 1 8.14e+03 World StepLimiter - 8309 22.5 12.2 723 5.44e-14 0 1 8.14e+03 World StepLimiter - 8310 23 11.6 723 5.44e-14 0 1 8.14e+03 World StepLimiter - 8311 23.5 10.9 724 5.45e-14 0 1 8.14e+03 World StepLimiter - 8312 24.1 10.2 724 5.46e-14 0 1 8.14e+03 World StepLimiter - 8313 24.6 9.59 725 5.46e-14 0 1 8.14e+03 World StepLimiter - 8314 25.1 8.93 726 5.47e-14 0 1 8.14e+03 World StepLimiter - 8315 25.6 8.28 726 5.48e-14 0 1 8.14e+03 World StepLimiter - 8316 26.1 7.62 727 5.48e-14 0 1 8.15e+03 World StepLimiter - 8317 26.6 6.96 727 5.49e-14 0 1 8.15e+03 World StepLimiter - 8318 27.1 6.3 728 5.5e-14 0 1 8.15e+03 World StepLimiter - 8319 27.6 5.65 728 5.5e-14 0 1 8.15e+03 World StepLimiter - 8320 28.1 4.99 729 5.51e-14 0 1 8.15e+03 World StepLimiter - 8321 28.7 4.33 729 5.52e-14 0 1 8.15e+03 World StepLimiter - 8322 29.2 3.67 730 5.52e-14 0 1 8.15e+03 World StepLimiter - 8323 29.7 3.01 731 5.53e-14 0 1 8.15e+03 World StepLimiter - 8324 30.2 2.35 731 5.54e-14 0 1 8.15e+03 World StepLimiter - 8325 30.7 1.69 732 5.54e-14 0 1 8.15e+03 World StepLimiter - 8326 31.2 1.02 732 5.55e-14 0 1 8.16e+03 World StepLimiter - 8327 31.7 0.361 733 5.56e-14 0 1 8.16e+03 World StepLimiter - 8328 32.2 -0.302 733 5.56e-14 0 1 8.16e+03 World StepLimiter - 8329 32.7 -0.965 734 5.57e-14 0 1 8.16e+03 World StepLimiter - 8330 33.2 -1.63 734 5.58e-14 0 1 8.16e+03 World StepLimiter - 8331 33.7 -2.29 735 5.58e-14 0 1 8.16e+03 World StepLimiter - 8332 34.2 -2.96 736 5.59e-14 0 1 8.16e+03 World StepLimiter - 8333 34.7 -3.62 736 5.6e-14 0 1 8.16e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 55.985500062994neV MomDir: (0.50569492755579,-0.66589659713088,0.54850192540579) G4UCNBoundaryProcess -> BELOW critical velocity *** MR Model Diffuse Reflection *** - 8334 34.8 -3.7 736 5.6e-14 0 0.119 8.16e+03 Guide Transportation *** StepTooSmall *** - 8335 34.8 -3.7 736 5.6e-14 0 0 8.16e+03 World Transportation - 8336 34 -3.44 736 5.6e-14 0 1 8.16e+03 World StepLimiter - 8337 33.3 -3.18 735 5.59e-14 0 1 8.16e+03 World StepLimiter - 8338 32.5 -2.92 734 5.59e-14 0 1 8.17e+03 World StepLimiter - 8339 31.8 -2.67 734 5.59e-14 0 1 8.17e+03 World StepLimiter - 8340 31 -2.41 733 5.59e-14 0 1 8.17e+03 World StepLimiter - 8341 30.2 -2.15 733 5.58e-14 0 1 8.17e+03 World StepLimiter - 8342 29.5 -1.9 732 5.58e-14 0 1 8.17e+03 World StepLimiter - 8343 28.7 -1.64 731 5.58e-14 0 1 8.17e+03 World StepLimiter - 8344 27.9 -1.39 731 5.57e-14 0 1 8.17e+03 World StepLimiter - 8345 27.2 -1.14 730 5.57e-14 0 1 8.17e+03 World StepLimiter - 8346 26.4 -0.883 730 5.57e-14 0 1 8.17e+03 World StepLimiter - 8347 25.7 -0.632 729 5.57e-14 0 1 8.17e+03 World StepLimiter - 8348 24.9 -0.382 728 5.56e-14 0 1 8.18e+03 World StepLimiter - 8349 24.1 -0.132 728 5.56e-14 0 1 8.18e+03 World StepLimiter - 8350 23.4 0.117 727 5.56e-14 0 1 8.18e+03 World StepLimiter - 8351 22.6 0.364 727 5.56e-14 0 1 8.18e+03 World StepLimiter - 8352 21.8 0.611 726 5.55e-14 0 1 8.18e+03 World StepLimiter - 8353 21.1 0.857 725 5.55e-14 0 1 8.18e+03 World StepLimiter - 8354 20.3 1.1 725 5.55e-14 0 1 8.18e+03 World StepLimiter - 8355 19.6 1.35 724 5.55e-14 0 1 8.18e+03 World StepLimiter - 8356 18.8 1.59 724 5.54e-14 0 1 8.18e+03 World StepLimiter - 8357 18 1.83 723 5.54e-14 0 1 8.18e+03 World StepLimiter - 8358 17.3 2.07 722 5.54e-14 0 1 8.19e+03 World StepLimiter - 8359 16.5 2.32 722 5.54e-14 0 1 8.19e+03 World StepLimiter - 8360 15.7 2.56 721 5.53e-14 0 1 8.19e+03 World StepLimiter - 8361 15 2.79 721 5.53e-14 0 1 8.19e+03 World StepLimiter - 8362 14.2 3.03 720 5.53e-14 0 1 8.19e+03 World StepLimiter - 8363 13.4 3.27 719 5.53e-14 0 1 8.19e+03 World StepLimiter - 8364 12.7 3.51 719 5.52e-14 0 1 8.19e+03 World StepLimiter - 8365 11.9 3.74 718 5.52e-14 0 1 8.19e+03 World StepLimiter - 8366 11.1 3.98 718 5.52e-14 0 1 8.19e+03 World StepLimiter - 8367 10.4 4.21 717 5.52e-14 0 1 8.19e+03 World StepLimiter - 8368 9.6 4.44 716 5.51e-14 0 1 8.2e+03 World StepLimiter - 8369 8.83 4.68 716 5.51e-14 0 1 8.2e+03 World StepLimiter - 8370 8.07 4.91 715 5.51e-14 0 1 8.2e+03 World StepLimiter - 8371 7.3 5.14 715 5.51e-14 0 1 8.2e+03 World StepLimiter - 8372 6.53 5.37 714 5.51e-14 0 1 8.2e+03 World StepLimiter - 8373 5.77 5.6 713 5.5e-14 0 1 8.2e+03 World StepLimiter - 8374 5 5.82 713 5.5e-14 0 1 8.2e+03 World StepLimiter - 8375 4.23 6.05 712 5.5e-14 0 1 8.2e+03 World StepLimiter - 8376 3.46 6.28 712 5.5e-14 0 1 8.2e+03 World StepLimiter - 8377 2.69 6.5 711 5.49e-14 0 1 8.2e+03 World StepLimiter - 8378 1.93 6.72 710 5.49e-14 0 1 8.21e+03 World StepLimiter - 8379 1.16 6.95 710 5.49e-14 0 1 8.21e+03 World StepLimiter - 8380 0.389 7.17 709 5.49e-14 0 1 8.21e+03 World StepLimiter - 8381 -0.379 7.39 709 5.48e-14 0 1 8.21e+03 World StepLimiter - 8382 -1.15 7.61 708 5.48e-14 0 1 8.21e+03 World StepLimiter - 8383 -1.92 7.83 707 5.48e-14 0 1 8.21e+03 World StepLimiter - 8384 -2.69 8.05 707 5.48e-14 0 1 8.21e+03 World StepLimiter - 8385 -3.46 8.27 706 5.48e-14 0 1 8.21e+03 World StepLimiter - 8386 -4.22 8.49 706 5.47e-14 0 1 8.21e+03 World StepLimiter - 8387 -4.99 8.7 705 5.47e-14 0 1 8.21e+03 World StepLimiter - 8388 -5.76 8.92 704 5.47e-14 0 1 8.22e+03 World StepLimiter - 8389 -6.53 9.13 704 5.47e-14 0 1 8.22e+03 World StepLimiter - 8390 -7.3 9.34 703 5.46e-14 0 1 8.22e+03 World StepLimiter - 8391 -8.07 9.56 703 5.46e-14 0 1 8.22e+03 World StepLimiter - 8392 -8.84 9.77 702 5.46e-14 0 1 8.22e+03 World StepLimiter - 8393 -9.61 9.98 701 5.46e-14 0 1 8.22e+03 World StepLimiter - 8394 -10.4 10.2 701 5.46e-14 0 1 8.22e+03 World StepLimiter - 8395 -11.2 10.4 700 5.45e-14 0 1 8.22e+03 World StepLimiter - 8396 -11.9 10.6 700 5.45e-14 0 1 8.22e+03 World StepLimiter - 8397 -12.7 10.8 699 5.45e-14 0 1 8.22e+03 World StepLimiter - 8398 -13.5 11 698 5.45e-14 0 1 8.23e+03 World StepLimiter - 8399 -14.2 11.2 698 5.45e-14 0 1 8.23e+03 World StepLimiter - 8400 -15 11.4 697 5.44e-14 0 1 8.23e+03 World StepLimiter - 8401 -15.8 11.6 697 5.44e-14 0 1 8.23e+03 World StepLimiter - 8402 -16.6 11.8 696 5.44e-14 0 1 8.23e+03 World StepLimiter - 8403 -17.3 12 695 5.44e-14 0 1 8.23e+03 World StepLimiter - 8404 -18.1 12.2 695 5.44e-14 0 1 8.23e+03 World StepLimiter - 8405 -18.9 12.4 694 5.43e-14 0 1 8.23e+03 World StepLimiter - 8406 -19.6 12.6 694 5.43e-14 0 1 8.23e+03 World StepLimiter - 8407 -20.4 12.8 693 5.43e-14 0 1 8.23e+03 World StepLimiter - 8408 -21.2 13 692 5.43e-14 0 1 8.24e+03 World StepLimiter - 8409 -22 13.2 692 5.42e-14 0 1 8.24e+03 World StepLimiter - 8410 -22.7 13.4 691 5.42e-14 0 1 8.24e+03 World StepLimiter - 8411 -23.5 13.6 691 5.42e-14 0 1 8.24e+03 World StepLimiter - 8412 -24.3 13.8 690 5.42e-14 0 1 8.24e+03 World StepLimiter - 8413 -25.1 14 689 5.42e-14 0 1 8.24e+03 World StepLimiter - 8414 -25.8 14.2 689 5.41e-14 0 1 8.24e+03 World StepLimiter - 8415 -26.6 14.4 688 5.41e-14 0 1 8.24e+03 World StepLimiter - 8416 -27.4 14.6 688 5.41e-14 0 1 8.24e+03 World StepLimiter - 8417 -28.2 14.8 687 5.41e-14 0 1 8.24e+03 World StepLimiter - 8418 -28.9 15 686 5.41e-14 0 1 8.25e+03 World StepLimiter - 8419 -29.7 15.1 686 5.41e-14 0 1 8.25e+03 World StepLimiter - 8420 -30.5 15.3 685 5.4e-14 0 1 8.25e+03 World StepLimiter - 8421 -31.2 15.5 685 5.4e-14 0 1 8.25e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 54.011922469468neV MomDir: (-0.77460153473416,0.18475062595859,-0.60486334704245) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8422 -31.4 15.5 684 5.4e-14 0 0.146 8.25e+03 Guide Transportation *** StepTooSmall *** - 8423 -31.4 15.5 684 5.4e-14 0 0 8.25e+03 World Transportation - 8424 -30.7 15 684 5.41e-14 0 1 8.25e+03 World StepLimiter - 8425 -30.1 14.5 683 5.41e-14 0 1 8.25e+03 World StepLimiter - 8426 -29.5 14 683 5.42e-14 0 1 8.25e+03 World StepLimiter - 8427 -28.9 13.5 682 5.42e-14 0 1 8.25e+03 World StepLimiter - 8428 -28.3 13 681 5.43e-14 0 1 8.25e+03 World StepLimiter - 8429 -27.7 12.5 681 5.43e-14 0 1 8.26e+03 World StepLimiter - 8430 -27.1 12 680 5.44e-14 0 1 8.26e+03 World StepLimiter - 8431 -26.4 11.5 680 5.44e-14 0 1 8.26e+03 World StepLimiter - 8432 -25.8 11 679 5.45e-14 0 1 8.26e+03 World StepLimiter - 8433 -25.2 10.5 678 5.45e-14 0 1 8.26e+03 World StepLimiter - 8434 -24.6 9.95 678 5.46e-14 0 1 8.26e+03 World StepLimiter - 8435 -24 9.44 677 5.46e-14 0 1 8.26e+03 World StepLimiter - 8436 -23.4 8.92 677 5.47e-14 0 1 8.26e+03 World StepLimiter - 8437 -22.8 8.41 676 5.47e-14 0 1 8.26e+03 World StepLimiter - 8438 -22.2 7.9 675 5.48e-14 0 1 8.26e+03 World StepLimiter - 8439 -21.5 7.38 675 5.48e-14 0 1 8.27e+03 World StepLimiter - 8440 -20.9 6.86 674 5.49e-14 0 1 8.27e+03 World StepLimiter - 8441 -20.3 6.35 674 5.5e-14 0 1 8.27e+03 World StepLimiter - 8442 -19.7 5.83 673 5.5e-14 0 1 8.27e+03 World StepLimiter - 8443 -19.1 5.31 672 5.51e-14 0 1 8.27e+03 World StepLimiter - 8444 -18.5 4.79 672 5.51e-14 0 1 8.27e+03 World StepLimiter - 8445 -17.9 4.27 671 5.52e-14 0 1 8.27e+03 World StepLimiter - 8446 -17.3 3.75 671 5.52e-14 0 1 8.27e+03 World StepLimiter - 8447 -16.7 3.23 670 5.53e-14 0 1 8.27e+03 World StepLimiter - 8448 -16 2.71 669 5.53e-14 0 1 8.27e+03 World StepLimiter - 8449 -15.4 2.19 669 5.54e-14 0 1 8.28e+03 World StepLimiter - 8450 -14.8 1.67 668 5.54e-14 0 1 8.28e+03 World StepLimiter - 8451 -14.2 1.14 668 5.55e-14 0 1 8.28e+03 World StepLimiter - 8452 -13.6 0.62 667 5.55e-14 0 1 8.28e+03 World StepLimiter - 8453 -13 0.0948 666 5.56e-14 0 1 8.28e+03 World StepLimiter - 8454 -12.4 -0.431 666 5.56e-14 0 1 8.28e+03 World StepLimiter - 8455 -11.8 -0.957 665 5.57e-14 0 1 8.28e+03 World StepLimiter - 8456 -11.2 -1.48 665 5.58e-14 0 1 8.28e+03 World StepLimiter - 8457 -10.6 -2.01 664 5.58e-14 0 1 8.28e+03 World StepLimiter - 8458 -9.97 -2.54 663 5.59e-14 0 1 8.28e+03 World StepLimiter - 8459 -9.37 -3.07 663 5.59e-14 0 1 8.29e+03 World StepLimiter - 8460 -8.76 -3.6 662 5.6e-14 0 1 8.29e+03 World StepLimiter - 8461 -8.16 -4.13 662 5.6e-14 0 1 8.29e+03 World StepLimiter - 8462 -7.55 -4.66 661 5.61e-14 0 1 8.29e+03 World StepLimiter - 8463 -6.95 -5.19 661 5.61e-14 0 1 8.29e+03 World StepLimiter - 8464 -6.34 -5.72 660 5.62e-14 0 1 8.29e+03 World StepLimiter - 8465 -5.74 -6.25 659 5.62e-14 0 1 8.29e+03 World StepLimiter - 8466 -5.14 -6.79 659 5.63e-14 0 1 8.29e+03 World StepLimiter - 8467 -4.53 -7.32 658 5.64e-14 0 1 8.29e+03 World StepLimiter - 8468 -3.93 -7.86 658 5.64e-14 0 1 8.29e+03 World StepLimiter - 8469 -3.33 -8.39 657 5.65e-14 0 1 8.3e+03 World StepLimiter - 8470 -2.73 -8.93 656 5.65e-14 0 1 8.3e+03 World StepLimiter - 8471 -2.12 -9.46 656 5.66e-14 0 1 8.3e+03 World StepLimiter - 8472 -1.52 -10 655 5.66e-14 0 1 8.3e+03 World StepLimiter - 8473 -0.92 -10.5 655 5.67e-14 0 1 8.3e+03 World StepLimiter - 8474 -0.318 -11.1 654 5.67e-14 0 1 8.3e+03 World StepLimiter - 8475 0.283 -11.6 653 5.68e-14 0 1 8.3e+03 World StepLimiter - 8476 0.883 -12.2 653 5.69e-14 0 1 8.3e+03 World StepLimiter - 8477 1.48 -12.7 652 5.69e-14 0 1 8.3e+03 World StepLimiter - 8478 2.08 -13.2 652 5.7e-14 0 1 8.3e+03 World StepLimiter - 8479 2.68 -13.8 651 5.7e-14 0 1 8.31e+03 World StepLimiter - 8480 3.28 -14.3 650 5.71e-14 0 1 8.31e+03 World StepLimiter - 8481 3.88 -14.9 650 5.71e-14 0 1 8.31e+03 World StepLimiter - 8482 4.48 -15.4 649 5.72e-14 0 1 8.31e+03 World StepLimiter - 8483 5.08 -16 649 5.72e-14 0 1 8.31e+03 World StepLimiter - 8484 5.68 -16.5 648 5.73e-14 0 1 8.31e+03 World StepLimiter - 8485 6.28 -17 648 5.74e-14 0 1 8.31e+03 World StepLimiter - 8486 6.87 -17.6 647 5.74e-14 0 1 8.31e+03 World StepLimiter - 8487 7.47 -18.1 646 5.75e-14 0 1 8.31e+03 World StepLimiter - 8488 8.07 -18.7 646 5.75e-14 0 1 8.31e+03 World StepLimiter - 8489 8.67 -19.2 645 5.76e-14 0 1 8.32e+03 World StepLimiter - 8490 9.26 -19.8 645 5.76e-14 0 1 8.32e+03 World StepLimiter - 8491 9.86 -20.3 644 5.77e-14 0 1 8.32e+03 World StepLimiter - 8492 10.5 -20.9 643 5.77e-14 0 1 8.32e+03 World StepLimiter - 8493 11.1 -21.4 643 5.78e-14 0 1 8.32e+03 World StepLimiter - 8494 11.6 -22 642 5.79e-14 0 1 8.32e+03 World StepLimiter - 8495 12.2 -22.5 642 5.79e-14 0 1 8.32e+03 World StepLimiter - 8496 12.8 -23.1 641 5.8e-14 0 1 8.32e+03 World StepLimiter - 8497 13.4 -23.6 641 5.8e-14 0 1 8.32e+03 World StepLimiter - 8498 14 -24.2 640 5.81e-14 0 1 8.32e+03 World StepLimiter - 8499 14.6 -24.7 639 5.81e-14 0 1 8.33e+03 World StepLimiter - 8500 15.2 -25.3 639 5.82e-14 0 1 8.33e+03 World StepLimiter - 8501 15.8 -25.9 638 5.83e-14 0 1 8.33e+03 World StepLimiter - 8502 16.4 -26.4 638 5.83e-14 0 1 8.33e+03 World StepLimiter - 8503 17 -27 637 5.84e-14 0 1 8.33e+03 World StepLimiter - 8504 17.6 -27.5 636 5.84e-14 0 1 8.33e+03 World StepLimiter - 8505 18.2 -28.1 636 5.85e-14 0 1 8.33e+03 World StepLimiter - 8506 18.8 -28.6 635 5.85e-14 0 1 8.33e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.597654048491neV MomDir: (0.59158200288944,-0.55928748290413,-0.58071356564496) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8507 19.3 -29.2 635 5.86e-14 0 0.955 8.33e+03 Guide Transportation *** StepTooSmall *** - 8508 19.3 -29.2 635 5.86e-14 0 0 8.33e+03 World Transportation - 8509 19.1 -28.4 634 5.85e-14 0 1 8.33e+03 World StepLimiter - 8510 18.8 -27.6 634 5.84e-14 0 1 8.34e+03 World StepLimiter - 8511 18.5 -26.9 633 5.84e-14 0 1 8.34e+03 World StepLimiter - 8512 18.2 -26.1 632 5.83e-14 0 1 8.34e+03 World StepLimiter - 8513 17.9 -25.4 632 5.82e-14 0 1 8.34e+03 World StepLimiter - 8514 17.6 -24.6 631 5.81e-14 0 1 8.34e+03 World StepLimiter - 8515 17.3 -23.8 631 5.81e-14 0 1 8.34e+03 World StepLimiter - 8516 17.1 -23.1 630 5.8e-14 0 1 8.34e+03 World StepLimiter - 8517 16.8 -22.3 629 5.79e-14 0 1 8.34e+03 World StepLimiter - 8518 16.5 -21.6 629 5.78e-14 0 1 8.34e+03 World StepLimiter - 8519 16.2 -20.8 628 5.77e-14 0 1 8.34e+03 World StepLimiter - 8520 15.9 -20 628 5.77e-14 0 1 8.35e+03 World StepLimiter - 8521 15.6 -19.3 627 5.76e-14 0 1 8.35e+03 World StepLimiter - 8522 15.3 -18.5 627 5.75e-14 0 1 8.35e+03 World StepLimiter - 8523 15 -17.8 626 5.74e-14 0 1 8.35e+03 World StepLimiter - 8524 14.8 -17 625 5.74e-14 0 1 8.35e+03 World StepLimiter - 8525 14.5 -16.3 625 5.73e-14 0 1 8.35e+03 World StepLimiter - 8526 14.2 -15.5 624 5.72e-14 0 1 8.35e+03 World StepLimiter - 8527 13.9 -14.7 624 5.71e-14 0 1 8.35e+03 World StepLimiter - 8528 13.6 -14 623 5.7e-14 0 1 8.35e+03 World StepLimiter - 8529 13.3 -13.2 622 5.7e-14 0 1 8.35e+03 World StepLimiter - 8530 13 -12.5 622 5.69e-14 0 1 8.36e+03 World StepLimiter - 8531 12.7 -11.7 621 5.68e-14 0 1 8.36e+03 World StepLimiter - 8532 12.4 -11 621 5.67e-14 0 1 8.36e+03 World StepLimiter - 8533 12.2 -10.2 620 5.67e-14 0 1 8.36e+03 World StepLimiter - 8534 11.9 -9.47 619 5.66e-14 0 1 8.36e+03 World StepLimiter - 8535 11.6 -8.72 619 5.65e-14 0 1 8.36e+03 World StepLimiter - 8536 11.3 -7.96 618 5.64e-14 0 1 8.36e+03 World StepLimiter - 8537 11 -7.21 618 5.63e-14 0 1 8.36e+03 World StepLimiter - 8538 10.7 -6.46 617 5.63e-14 0 1 8.36e+03 World StepLimiter - 8539 10.4 -5.71 617 5.62e-14 0 1 8.36e+03 World StepLimiter - 8540 10.1 -4.96 616 5.61e-14 0 1 8.37e+03 World StepLimiter - 8541 9.84 -4.21 615 5.6e-14 0 1 8.37e+03 World StepLimiter - 8542 9.55 -3.46 615 5.6e-14 0 1 8.37e+03 World StepLimiter - 8543 9.26 -2.71 614 5.59e-14 0 1 8.37e+03 World StepLimiter - 8544 8.96 -1.96 614 5.58e-14 0 1 8.37e+03 World StepLimiter - 8545 8.67 -1.21 613 5.57e-14 0 1 8.37e+03 World StepLimiter - 8546 8.38 -0.464 612 5.57e-14 0 1 8.37e+03 World StepLimiter - 8547 8.09 0.284 612 5.56e-14 0 1 8.37e+03 World StepLimiter - 8548 7.8 1.03 611 5.55e-14 0 1 8.37e+03 World StepLimiter - 8549 7.5 1.78 611 5.54e-14 0 1 8.37e+03 World StepLimiter - 8550 7.21 2.53 610 5.53e-14 0 1 8.38e+03 World StepLimiter - 8551 6.92 3.27 609 5.53e-14 0 1 8.38e+03 World StepLimiter - 8552 6.63 4.02 609 5.52e-14 0 1 8.38e+03 World StepLimiter - 8553 6.33 4.76 608 5.51e-14 0 1 8.38e+03 World StepLimiter - 8554 6.04 5.51 608 5.5e-14 0 1 8.38e+03 World StepLimiter - 8555 5.75 6.25 607 5.5e-14 0 1 8.38e+03 World StepLimiter - 8556 5.45 7 606 5.49e-14 0 1 8.38e+03 World StepLimiter - 8557 5.16 7.74 606 5.48e-14 0 1 8.38e+03 World StepLimiter - 8558 4.86 8.48 605 5.47e-14 0 1 8.38e+03 World StepLimiter - 8559 4.57 9.23 605 5.47e-14 0 1 8.38e+03 World StepLimiter - 8560 4.27 9.97 604 5.46e-14 0 1 8.39e+03 World StepLimiter - 8561 3.98 10.7 603 5.45e-14 0 1 8.39e+03 World StepLimiter - 8562 3.68 11.5 603 5.44e-14 0 1 8.39e+03 World StepLimiter - 8563 3.39 12.2 602 5.44e-14 0 1 8.39e+03 World StepLimiter - 8564 3.09 12.9 602 5.43e-14 0 1 8.39e+03 World StepLimiter - 8565 2.8 13.7 601 5.42e-14 0 1 8.39e+03 World StepLimiter - 8566 2.5 14.4 600 5.41e-14 0 1 8.39e+03 World StepLimiter - 8567 2.2 15.2 600 5.41e-14 0 1 8.39e+03 World StepLimiter - 8568 1.91 15.9 599 5.4e-14 0 1 8.39e+03 World StepLimiter - 8569 1.61 16.6 599 5.39e-14 0 1 8.39e+03 World StepLimiter - 8570 1.31 17.4 598 5.38e-14 0 1 8.4e+03 World StepLimiter - 8571 1.02 18.1 597 5.37e-14 0 1 8.4e+03 World StepLimiter - 8572 0.72 18.8 597 5.37e-14 0 1 8.4e+03 World StepLimiter - 8573 0.423 19.6 596 5.36e-14 0 1 8.4e+03 World StepLimiter - 8574 0.125 20.3 596 5.35e-14 0 1 8.4e+03 World StepLimiter - 8575 -0.173 21.1 595 5.34e-14 0 1 8.4e+03 World StepLimiter - 8576 -0.471 21.8 594 5.34e-14 0 1 8.4e+03 World StepLimiter - 8577 -0.769 22.5 594 5.33e-14 0 1 8.4e+03 World StepLimiter - 8578 -1.07 23.3 593 5.32e-14 0 1 8.4e+03 World StepLimiter - 8579 -1.37 24 592 5.31e-14 0 1 8.4e+03 World StepLimiter - 8580 -1.67 24.7 592 5.31e-14 0 1 8.41e+03 World StepLimiter - 8581 -1.96 25.5 591 5.3e-14 0 1 8.41e+03 World StepLimiter - 8582 -2.26 26.2 591 5.29e-14 0 1 8.41e+03 World StepLimiter - 8583 -2.56 26.9 590 5.28e-14 0 1 8.41e+03 World StepLimiter - 8584 -2.86 27.7 589 5.28e-14 0 1 8.41e+03 World StepLimiter - 8585 -3.16 28.4 589 5.27e-14 0 1 8.41e+03 World StepLimiter - 8586 -3.46 29.1 588 5.26e-14 0 1 8.41e+03 World StepLimiter - 8587 -3.76 29.9 588 5.25e-14 0 1 8.41e+03 World StepLimiter - 8588 -4.06 30.6 587 5.25e-14 0 1 8.41e+03 World StepLimiter - 8589 -4.37 31.3 586 5.24e-14 0 1 8.41e+03 World StepLimiter - 8590 -4.67 32 586 5.23e-14 0 1 8.42e+03 World StepLimiter - 8591 -4.97 32.8 585 5.22e-14 0 1 8.42e+03 World StepLimiter - 8592 -5.27 33.5 584 5.22e-14 0 1 8.42e+03 World StepLimiter - 8593 -5.57 34.2 584 5.21e-14 0 1 8.42e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.064121217246neV MomDir: (-0.30190338093235,0.72753507833418,-0.61607390658499) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8594 -5.7 34.5 584 5.21e-14 0 0.418 8.42e+03 Guide Transportation *** StepTooSmall *** - 8595 -5.7 34.5 584 5.21e-14 0 0 8.42e+03 World Transportation - 8596 -5.75 33.7 583 5.21e-14 0 1 8.42e+03 World StepLimiter - 8597 -5.8 33 582 5.22e-14 0 1 8.42e+03 World StepLimiter - 8598 -5.85 32.2 582 5.23e-14 0 1 8.42e+03 World StepLimiter - 8599 -5.91 31.4 581 5.24e-14 0 1 8.42e+03 World StepLimiter - 8600 -5.96 30.6 581 5.25e-14 0 1 8.42e+03 World StepLimiter - 8601 -6.01 29.8 580 5.25e-14 0 1 8.42e+03 World StepLimiter - 8602 -6.06 29 579 5.26e-14 0 1 8.43e+03 World StepLimiter - 8603 -6.11 28.2 579 5.27e-14 0 1 8.43e+03 World StepLimiter - 8604 -6.17 27.4 578 5.28e-14 0 1 8.43e+03 World StepLimiter - 8605 -6.22 26.7 577 5.29e-14 0 1 8.43e+03 World StepLimiter - 8606 -6.27 25.9 577 5.3e-14 0 1 8.43e+03 World StepLimiter - 8607 -6.32 25.1 576 5.3e-14 0 1 8.43e+03 World StepLimiter - 8608 -6.37 24.3 576 5.31e-14 0 1 8.43e+03 World StepLimiter - 8609 -6.42 23.5 575 5.32e-14 0 1 8.43e+03 World StepLimiter - 8610 -6.48 22.7 574 5.33e-14 0 1 8.43e+03 World StepLimiter - 8611 -6.53 21.9 574 5.34e-14 0 1 8.43e+03 World StepLimiter - 8612 -6.58 21.1 573 5.34e-14 0 1 8.44e+03 World StepLimiter - 8613 -6.63 20.3 573 5.35e-14 0 1 8.44e+03 World StepLimiter - 8614 -6.68 19.5 572 5.36e-14 0 1 8.44e+03 World StepLimiter - 8615 -6.73 18.7 571 5.37e-14 0 1 8.44e+03 World StepLimiter - 8616 -6.78 17.9 571 5.38e-14 0 1 8.44e+03 World StepLimiter - 8617 -6.84 17.2 570 5.38e-14 0 1 8.44e+03 World StepLimiter - 8618 -6.89 16.4 570 5.39e-14 0 1 8.44e+03 World StepLimiter - 8619 -6.94 15.6 569 5.4e-14 0 1 8.44e+03 World StepLimiter - 8620 -6.99 14.8 568 5.41e-14 0 1 8.44e+03 World StepLimiter - 8621 -7.04 14 568 5.42e-14 0 1 8.44e+03 World StepLimiter - 8622 -7.09 13.2 567 5.43e-14 0 1 8.45e+03 World StepLimiter - 8623 -7.14 12.4 567 5.43e-14 0 1 8.45e+03 World StepLimiter - 8624 -7.19 11.6 566 5.44e-14 0 1 8.45e+03 World StepLimiter - 8625 -7.25 10.8 565 5.45e-14 0 1 8.45e+03 World StepLimiter - 8626 -7.3 9.99 565 5.46e-14 0 1 8.45e+03 World StepLimiter - 8627 -7.35 9.2 564 5.47e-14 0 1 8.45e+03 World StepLimiter - 8628 -7.4 8.4 564 5.47e-14 0 1 8.45e+03 World StepLimiter - 8629 -7.45 7.6 563 5.48e-14 0 1 8.45e+03 World StepLimiter - 8630 -7.5 6.8 562 5.49e-14 0 1 8.45e+03 World StepLimiter - 8631 -7.55 6 562 5.5e-14 0 1 8.45e+03 World StepLimiter - 8632 -7.6 5.2 561 5.51e-14 0 1 8.46e+03 World StepLimiter - 8633 -7.65 4.41 561 5.52e-14 0 1 8.46e+03 World StepLimiter - 8634 -7.7 3.61 560 5.52e-14 0 1 8.46e+03 World StepLimiter - 8635 -7.75 2.81 559 5.53e-14 0 1 8.46e+03 World StepLimiter - 8636 -7.8 2.01 559 5.54e-14 0 1 8.46e+03 World StepLimiter - 8637 -7.86 1.2 558 5.55e-14 0 1 8.46e+03 World StepLimiter - 8638 -7.91 0.404 558 5.56e-14 0 1 8.46e+03 World StepLimiter - 8639 -7.96 -0.397 557 5.56e-14 0 1 8.46e+03 World StepLimiter - 8640 -8.01 -1.2 556 5.57e-14 0 1 8.46e+03 World StepLimiter - 8641 -8.06 -2 556 5.58e-14 0 1 8.46e+03 World StepLimiter - 8642 -8.11 -2.8 555 5.59e-14 0 1 8.47e+03 World StepLimiter - 8643 -8.16 -3.61 555 5.6e-14 0 1 8.47e+03 World StepLimiter - 8644 -8.21 -4.41 554 5.61e-14 0 1 8.47e+03 World StepLimiter - 8645 -8.26 -5.21 553 5.61e-14 0 1 8.47e+03 World StepLimiter - 8646 -8.31 -6.02 553 5.62e-14 0 1 8.47e+03 World StepLimiter - 8647 -8.36 -6.82 552 5.63e-14 0 1 8.47e+03 World StepLimiter - 8648 -8.41 -7.62 552 5.64e-14 0 1 8.47e+03 World StepLimiter - 8649 -8.46 -8.43 551 5.65e-14 0 1 8.47e+03 World StepLimiter - 8650 -8.51 -9.23 550 5.66e-14 0 1 8.47e+03 World StepLimiter - 8651 -8.56 -10 550 5.66e-14 0 1 8.47e+03 World StepLimiter - 8652 -8.61 -10.8 549 5.67e-14 0 1 8.48e+03 World StepLimiter - 8653 -8.66 -11.6 549 5.68e-14 0 1 8.48e+03 World StepLimiter - 8654 -8.71 -12.5 548 5.69e-14 0 1 8.48e+03 World StepLimiter - 8655 -8.76 -13.3 547 5.7e-14 0 1 8.48e+03 World StepLimiter - 8656 -8.81 -14.1 547 5.7e-14 0 1 8.48e+03 World StepLimiter - 8657 -8.86 -14.9 546 5.71e-14 0 1 8.48e+03 World StepLimiter - 8658 -8.91 -15.7 546 5.72e-14 0 1 8.48e+03 World StepLimiter - 8659 -8.96 -16.5 545 5.73e-14 0 1 8.48e+03 World StepLimiter - 8660 -9.01 -17.3 545 5.74e-14 0 1 8.48e+03 World StepLimiter - 8661 -9.06 -18.1 544 5.75e-14 0 1 8.48e+03 World StepLimiter - 8662 -9.11 -18.9 543 5.75e-14 0 1 8.49e+03 World StepLimiter - 8663 -9.16 -19.7 543 5.76e-14 0 1 8.49e+03 World StepLimiter - 8664 -9.21 -20.5 542 5.77e-14 0 1 8.49e+03 World StepLimiter - 8665 -9.26 -21.3 542 5.78e-14 0 1 8.49e+03 World StepLimiter - 8666 -9.31 -22.2 541 5.79e-14 0 1 8.49e+03 World StepLimiter - 8667 -9.36 -23 540 5.8e-14 0 1 8.49e+03 World StepLimiter - 8668 -9.41 -23.8 540 5.8e-14 0 1 8.49e+03 World StepLimiter - 8669 -9.46 -24.6 539 5.81e-14 0 1 8.49e+03 World StepLimiter - 8670 -9.5 -25.4 539 5.82e-14 0 1 8.49e+03 World StepLimiter - 8671 -9.55 -26.2 538 5.83e-14 0 1 8.49e+03 World StepLimiter - 8672 -9.6 -27 538 5.84e-14 0 1 8.5e+03 World StepLimiter - 8673 -9.65 -27.8 537 5.85e-14 0 1 8.5e+03 World StepLimiter - 8674 -9.7 -28.6 536 5.85e-14 0 1 8.5e+03 World StepLimiter - 8675 -9.75 -29.5 536 5.86e-14 0 1 8.5e+03 World StepLimiter - 8676 -9.8 -30.3 535 5.87e-14 0 1 8.5e+03 World StepLimiter - 8677 -9.85 -31.1 535 5.88e-14 0 1 8.5e+03 World StepLimiter - 8678 -9.9 -31.9 534 5.89e-14 0 1 8.5e+03 World StepLimiter - 8679 -9.95 -32.7 533 5.9e-14 0 1 8.5e+03 World StepLimiter - 8680 -10 -33.5 533 5.9e-14 0 1 8.5e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.045495593442neV MomDir: (-0.049038228705248,-0.81420192652629,-0.57850710882956) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8681 -10 -33.5 533 5.9e-14 0 0.0222 8.5e+03 Guide Transportation *** StepTooSmall *** - 8682 -10 -33.5 533 5.9e-14 0 0 8.5e+03 World Transportation - 8683 -9.59 -32.8 532 5.9e-14 0 1 8.5e+03 World StepLimiter - 8684 -9.19 -32.1 532 5.89e-14 0 1 8.51e+03 World StepLimiter - 8685 -8.78 -31.4 531 5.88e-14 0 1 8.51e+03 World StepLimiter - 8686 -8.38 -30.7 531 5.88e-14 0 1 8.51e+03 World StepLimiter - 8687 -7.97 -30 530 5.87e-14 0 1 8.51e+03 World StepLimiter - 8688 -7.57 -29.3 529 5.86e-14 0 1 8.51e+03 World StepLimiter - 8689 -7.16 -28.6 529 5.85e-14 0 1 8.51e+03 World StepLimiter - 8690 -6.75 -27.9 528 5.85e-14 0 1 8.51e+03 World StepLimiter - 8691 -6.35 -27.2 528 5.84e-14 0 1 8.51e+03 World StepLimiter - 8692 -5.94 -26.5 527 5.83e-14 0 1 8.51e+03 World StepLimiter - 8693 -5.53 -25.8 526 5.82e-14 0 1 8.51e+03 World StepLimiter - 8694 -5.12 -25.1 526 5.82e-14 0 1 8.52e+03 World StepLimiter - 8695 -4.72 -24.4 525 5.81e-14 0 1 8.52e+03 World StepLimiter - 8696 -4.31 -23.7 525 5.8e-14 0 1 8.52e+03 World StepLimiter - 8697 -3.9 -23 524 5.8e-14 0 1 8.52e+03 World StepLimiter - 8698 -3.49 -22.3 524 5.79e-14 0 1 8.52e+03 World StepLimiter - 8699 -3.08 -21.6 523 5.78e-14 0 1 8.52e+03 World StepLimiter - 8700 -2.67 -20.9 522 5.77e-14 0 1 8.52e+03 World StepLimiter - 8701 -2.26 -20.2 522 5.77e-14 0 1 8.52e+03 World StepLimiter - 8702 -1.85 -19.5 521 5.76e-14 0 1 8.52e+03 World StepLimiter - 8703 -1.44 -18.8 521 5.75e-14 0 1 8.52e+03 World StepLimiter - 8704 -1.03 -18.1 520 5.75e-14 0 1 8.53e+03 World StepLimiter - 8705 -0.622 -17.4 519 5.74e-14 0 1 8.53e+03 World StepLimiter - 8706 -0.212 -16.7 519 5.73e-14 0 1 8.53e+03 World StepLimiter - 8707 0.199 -16 518 5.72e-14 0 1 8.53e+03 World StepLimiter - 8708 0.61 -15.3 518 5.72e-14 0 1 8.53e+03 World StepLimiter - 8709 1.02 -14.6 517 5.71e-14 0 1 8.53e+03 World StepLimiter - 8710 1.43 -13.9 517 5.7e-14 0 1 8.53e+03 World StepLimiter - 8711 1.85 -13.2 516 5.7e-14 0 1 8.53e+03 World StepLimiter - 8712 2.26 -12.5 515 5.69e-14 0 1 8.53e+03 World StepLimiter - 8713 2.67 -11.8 515 5.68e-14 0 1 8.53e+03 World StepLimiter - 8714 3.08 -11.1 514 5.67e-14 0 1 8.54e+03 World StepLimiter - 8715 3.5 -10.4 514 5.67e-14 0 1 8.54e+03 World StepLimiter - 8716 3.91 -9.72 513 5.66e-14 0 1 8.54e+03 World StepLimiter - 8717 4.32 -9.03 512 5.65e-14 0 1 8.54e+03 World StepLimiter - 8718 4.74 -8.34 512 5.65e-14 0 1 8.54e+03 World StepLimiter - 8719 5.15 -7.64 511 5.64e-14 0 1 8.54e+03 World StepLimiter - 8720 5.57 -6.95 511 5.63e-14 0 1 8.54e+03 World StepLimiter - 8721 5.98 -6.26 510 5.62e-14 0 1 8.54e+03 World StepLimiter - 8722 6.39 -5.57 509 5.62e-14 0 1 8.54e+03 World StepLimiter - 8723 6.81 -4.88 509 5.61e-14 0 1 8.54e+03 World StepLimiter - 8724 7.22 -4.19 508 5.6e-14 0 1 8.55e+03 World StepLimiter - 8725 7.64 -3.51 508 5.6e-14 0 1 8.55e+03 World StepLimiter - 8726 8.06 -2.82 507 5.59e-14 0 1 8.55e+03 World StepLimiter - 8727 8.47 -2.13 506 5.58e-14 0 1 8.55e+03 World StepLimiter - 8728 8.89 -1.44 506 5.58e-14 0 1 8.55e+03 World StepLimiter - 8729 9.31 -0.755 505 5.57e-14 0 1 8.55e+03 World StepLimiter - 8730 9.72 -0.0686 505 5.56e-14 0 1 8.55e+03 World StepLimiter - 8731 10.1 0.617 504 5.55e-14 0 1 8.55e+03 World StepLimiter - 8732 10.6 1.3 504 5.55e-14 0 1 8.55e+03 World StepLimiter - 8733 11 1.99 503 5.54e-14 0 1 8.55e+03 World StepLimiter - 8734 11.4 2.67 502 5.53e-14 0 1 8.56e+03 World StepLimiter - 8735 11.8 3.36 502 5.53e-14 0 1 8.56e+03 World StepLimiter - 8736 12.2 4.04 501 5.52e-14 0 1 8.56e+03 World StepLimiter - 8737 12.6 4.72 501 5.51e-14 0 1 8.56e+03 World StepLimiter - 8738 13.1 5.4 500 5.51e-14 0 1 8.56e+03 World StepLimiter - 8739 13.5 6.09 499 5.5e-14 0 1 8.56e+03 World StepLimiter - 8740 13.9 6.77 499 5.49e-14 0 1 8.56e+03 World StepLimiter - 8741 14.3 7.45 498 5.48e-14 0 1 8.56e+03 World StepLimiter - 8742 14.7 8.13 498 5.48e-14 0 1 8.56e+03 World StepLimiter - 8743 15.2 8.81 497 5.47e-14 0 1 8.56e+03 World StepLimiter - 8744 15.6 9.49 496 5.46e-14 0 1 8.57e+03 World StepLimiter - 8745 16 10.2 496 5.46e-14 0 1 8.57e+03 World StepLimiter - 8746 16.4 10.8 495 5.45e-14 0 1 8.57e+03 World StepLimiter - 8747 16.9 11.5 495 5.44e-14 0 1 8.57e+03 World StepLimiter - 8748 17.3 12.2 494 5.44e-14 0 1 8.57e+03 World StepLimiter - 8749 17.7 12.9 493 5.43e-14 0 1 8.57e+03 World StepLimiter - 8750 18.1 13.6 493 5.42e-14 0 1 8.57e+03 World StepLimiter - 8751 18.5 14.2 492 5.41e-14 0 1 8.57e+03 World StepLimiter - 8752 19 14.9 491 5.41e-14 0 1 8.57e+03 World StepLimiter - 8753 19.4 15.6 491 5.4e-14 0 1 8.57e+03 World StepLimiter - 8754 19.8 16.3 490 5.39e-14 0 1 8.58e+03 World StepLimiter - 8755 20.2 16.9 490 5.39e-14 0 1 8.58e+03 World StepLimiter - 8756 20.7 17.6 489 5.38e-14 0 1 8.58e+03 World StepLimiter - 8757 21.1 18.3 488 5.37e-14 0 1 8.58e+03 World StepLimiter - 8758 21.5 18.9 488 5.37e-14 0 1 8.58e+03 World StepLimiter - 8759 21.9 19.6 487 5.36e-14 0 1 8.58e+03 World StepLimiter - 8760 22.4 20.3 487 5.35e-14 0 1 8.58e+03 World StepLimiter - 8761 22.8 21 486 5.35e-14 0 1 8.58e+03 World StepLimiter - 8762 23.2 21.6 485 5.34e-14 0 1 8.58e+03 World StepLimiter - 8763 23.6 22.3 485 5.33e-14 0 1 8.58e+03 World StepLimiter - 8764 24.1 23 484 5.33e-14 0 1 8.59e+03 World StepLimiter - 8765 24.5 23.6 484 5.32e-14 0 1 8.59e+03 World StepLimiter - 8766 24.9 24.3 483 5.31e-14 0 1 8.59e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.095600704987neV MomDir: (0.42683244416324,0.6675630340349,-0.61006037422517) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8767 25 24.5 483 5.31e-14 0 0.255 8.59e+03 Guide Transportation *** StepTooSmall *** - 8768 25 24.5 483 5.31e-14 0 0 8.59e+03 World Transportation - 8769 24.3 24.1 482 5.31e-14 0 1 8.59e+03 World StepLimiter - 8770 23.7 23.6 482 5.32e-14 0 1 8.59e+03 World StepLimiter - 8771 23 23.2 481 5.32e-14 0 1 8.59e+03 World StepLimiter - 8772 22.3 22.8 480 5.33e-14 0 1 8.59e+03 World StepLimiter - 8773 21.6 22.4 480 5.33e-14 0 1 8.59e+03 World StepLimiter - 8774 21 22 479 5.34e-14 0 1 8.59e+03 World StepLimiter - 8775 20.3 21.6 479 5.34e-14 0 1 8.59e+03 World StepLimiter - 8776 19.6 21.2 478 5.34e-14 0 1 8.6e+03 World StepLimiter - 8777 18.9 20.7 477 5.35e-14 0 1 8.6e+03 World StepLimiter - 8778 18.3 20.3 477 5.35e-14 0 1 8.6e+03 World StepLimiter - 8779 17.6 19.9 476 5.36e-14 0 1 8.6e+03 World StepLimiter - 8780 16.9 19.5 476 5.36e-14 0 1 8.6e+03 World StepLimiter - 8781 16.2 19.1 475 5.37e-14 0 1 8.6e+03 World StepLimiter - 8782 15.6 18.6 474 5.37e-14 0 1 8.6e+03 World StepLimiter - 8783 14.9 18.2 474 5.37e-14 0 1 8.6e+03 World StepLimiter - 8784 14.2 17.8 473 5.38e-14 0 1 8.6e+03 World StepLimiter - 8785 13.6 17.4 472 5.38e-14 0 1 8.6e+03 World StepLimiter - 8786 12.9 16.9 472 5.39e-14 0 1 8.61e+03 World StepLimiter - 8787 12.2 16.5 471 5.39e-14 0 1 8.61e+03 World StepLimiter - 8788 11.5 16.1 471 5.4e-14 0 1 8.61e+03 World StepLimiter - 8789 10.9 15.6 470 5.4e-14 0 1 8.61e+03 World StepLimiter - 8790 10.2 15.2 469 5.4e-14 0 1 8.61e+03 World StepLimiter - 8791 9.52 14.8 469 5.41e-14 0 1 8.61e+03 World StepLimiter - 8792 8.85 14.4 468 5.41e-14 0 1 8.61e+03 World StepLimiter - 8793 8.18 13.9 468 5.42e-14 0 1 8.61e+03 World StepLimiter - 8794 7.51 13.5 467 5.42e-14 0 1 8.61e+03 World StepLimiter - 8795 6.84 13.1 466 5.43e-14 0 1 8.61e+03 World StepLimiter - 8796 6.18 12.6 466 5.43e-14 0 1 8.62e+03 World StepLimiter - 8797 5.51 12.2 465 5.44e-14 0 1 8.62e+03 World StepLimiter - 8798 4.84 11.8 465 5.44e-14 0 1 8.62e+03 World StepLimiter - 8799 4.17 11.3 464 5.44e-14 0 1 8.62e+03 World StepLimiter - 8800 3.5 10.9 463 5.45e-14 0 1 8.62e+03 World StepLimiter - 8801 2.83 10.4 463 5.45e-14 0 1 8.62e+03 World StepLimiter - 8802 2.17 10 462 5.46e-14 0 1 8.62e+03 World StepLimiter - 8803 1.5 9.57 462 5.46e-14 0 1 8.62e+03 World StepLimiter - 8804 0.831 9.13 461 5.47e-14 0 1 8.62e+03 World StepLimiter - 8805 0.164 8.69 460 5.47e-14 0 1 8.62e+03 World StepLimiter - 8806 -0.502 8.25 460 5.48e-14 0 1 8.63e+03 World StepLimiter - 8807 -1.17 7.81 459 5.48e-14 0 1 8.63e+03 World StepLimiter - 8808 -1.83 7.37 459 5.49e-14 0 1 8.63e+03 World StepLimiter - 8809 -2.5 6.92 458 5.49e-14 0 1 8.63e+03 World StepLimiter - 8810 -3.17 6.48 457 5.49e-14 0 1 8.63e+03 World StepLimiter - 8811 -3.83 6.03 457 5.5e-14 0 1 8.63e+03 World StepLimiter - 8812 -4.5 5.59 456 5.5e-14 0 1 8.63e+03 World StepLimiter - 8813 -5.16 5.14 456 5.51e-14 0 1 8.63e+03 World StepLimiter - 8814 -5.82 4.69 455 5.51e-14 0 1 8.63e+03 World StepLimiter - 8815 -6.49 4.24 454 5.52e-14 0 1 8.63e+03 World StepLimiter - 8816 -7.15 3.8 454 5.52e-14 0 1 8.64e+03 World StepLimiter - 8817 -7.82 3.35 453 5.53e-14 0 1 8.64e+03 World StepLimiter - 8818 -8.48 2.9 453 5.53e-14 0 1 8.64e+03 World StepLimiter - 8819 -9.14 2.45 452 5.54e-14 0 1 8.64e+03 World StepLimiter - 8820 -9.81 1.99 451 5.54e-14 0 1 8.64e+03 World StepLimiter - 8821 -10.5 1.54 451 5.54e-14 0 1 8.64e+03 World StepLimiter - 8822 -11.1 1.09 450 5.55e-14 0 1 8.64e+03 World StepLimiter - 8823 -11.8 0.634 450 5.55e-14 0 1 8.64e+03 World StepLimiter - 8824 -12.5 0.18 449 5.56e-14 0 1 8.64e+03 World StepLimiter - 8825 -13.1 -0.276 448 5.56e-14 0 1 8.64e+03 World StepLimiter - 8826 -13.8 -0.732 448 5.57e-14 0 1 8.65e+03 World StepLimiter - 8827 -14.4 -1.19 447 5.57e-14 0 1 8.65e+03 World StepLimiter - 8828 -15.1 -1.65 447 5.58e-14 0 1 8.65e+03 World StepLimiter - 8829 -15.8 -2.1 446 5.58e-14 0 1 8.65e+03 World StepLimiter - 8830 -16.4 -2.56 445 5.59e-14 0 1 8.65e+03 World StepLimiter - 8831 -17.1 -3.02 445 5.59e-14 0 1 8.65e+03 World StepLimiter - 8832 -17.7 -3.48 444 5.6e-14 0 1 8.65e+03 World StepLimiter - 8833 -18.4 -3.94 444 5.6e-14 0 1 8.65e+03 World StepLimiter - 8834 -19.1 -4.41 443 5.61e-14 0 1 8.65e+03 World StepLimiter - 8835 -19.7 -4.87 443 5.61e-14 0 1 8.65e+03 World StepLimiter - 8836 -20.4 -5.33 442 5.62e-14 0 1 8.66e+03 World StepLimiter - 8837 -21 -5.8 441 5.62e-14 0 1 8.66e+03 World StepLimiter - 8838 -21.7 -6.26 441 5.62e-14 0 1 8.66e+03 World StepLimiter - 8839 -22.3 -6.73 440 5.63e-14 0 1 8.66e+03 World StepLimiter - 8840 -23 -7.19 440 5.63e-14 0 1 8.66e+03 World StepLimiter - 8841 -23.7 -7.66 439 5.64e-14 0 1 8.66e+03 World StepLimiter - 8842 -24.3 -8.13 438 5.64e-14 0 1 8.66e+03 World StepLimiter - 8843 -25 -8.6 438 5.65e-14 0 1 8.66e+03 World StepLimiter - 8844 -25.6 -9.06 437 5.65e-14 0 1 8.66e+03 World StepLimiter - 8845 -26.3 -9.53 437 5.66e-14 0 1 8.66e+03 World StepLimiter - 8846 -26.9 -10 436 5.66e-14 0 1 8.67e+03 World StepLimiter - 8847 -27.6 -10.5 435 5.67e-14 0 1 8.67e+03 World StepLimiter - 8848 -28.2 -10.9 435 5.67e-14 0 1 8.67e+03 World StepLimiter - 8849 -28.9 -11.4 434 5.68e-14 0 1 8.67e+03 World StepLimiter - 8850 -29.6 -11.9 434 5.68e-14 0 1 8.67e+03 World StepLimiter - 8851 -30.2 -12.4 433 5.69e-14 0 1 8.67e+03 World StepLimiter - 8852 -30.9 -12.8 432 5.69e-14 0 1 8.67e+03 World StepLimiter - 8853 -31.5 -13.3 432 5.7e-14 0 1 8.67e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 57.020012663859neV MomDir: (-0.65307598755806,-0.47637486186345,-0.5886924030932) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8854 -32.2 -13.8 431 5.7e-14 0 0.996 8.67e+03 Guide Transportation *** StepTooSmall *** - 8855 -32.2 -13.8 431 5.7e-14 0 0 8.67e+03 World Transportation - 8856 -31.4 -13.6 431 5.7e-14 0 1 8.67e+03 World StepLimiter - 8857 -30.6 -13.5 430 5.7e-14 0 1 8.68e+03 World StepLimiter - 8858 -29.8 -13.4 430 5.7e-14 0 1 8.68e+03 World StepLimiter - 8859 -29 -13.2 429 5.7e-14 0 1 8.68e+03 World StepLimiter - 8860 -28.2 -13.1 428 5.69e-14 0 1 8.68e+03 World StepLimiter - 8861 -27.4 -12.9 428 5.69e-14 0 1 8.68e+03 World StepLimiter - 8862 -26.6 -12.8 427 5.69e-14 0 1 8.68e+03 World StepLimiter - 8863 -25.8 -12.7 427 5.69e-14 0 1 8.68e+03 World StepLimiter - 8864 -25 -12.5 426 5.69e-14 0 1 8.68e+03 World StepLimiter - 8865 -24.2 -12.4 425 5.69e-14 0 1 8.68e+03 World StepLimiter - 8866 -23.4 -12.3 425 5.69e-14 0 1 8.68e+03 World StepLimiter - 8867 -22.6 -12.1 424 5.68e-14 0 1 8.69e+03 World StepLimiter - 8868 -21.8 -12 424 5.68e-14 0 1 8.69e+03 World StepLimiter - 8869 -21 -11.9 423 5.68e-14 0 1 8.69e+03 World StepLimiter - 8870 -20.2 -11.7 422 5.68e-14 0 1 8.69e+03 World StepLimiter - 8871 -19.4 -11.6 422 5.68e-14 0 1 8.69e+03 World StepLimiter - 8872 -18.6 -11.5 421 5.68e-14 0 1 8.69e+03 World StepLimiter - 8873 -17.8 -11.3 421 5.68e-14 0 1 8.69e+03 World StepLimiter - 8874 -17 -11.2 420 5.68e-14 0 1 8.69e+03 World StepLimiter - 8875 -16.2 -11.1 419 5.67e-14 0 1 8.69e+03 World StepLimiter - 8876 -15.4 -10.9 419 5.67e-14 0 1 8.69e+03 World StepLimiter - 8877 -14.6 -10.8 418 5.67e-14 0 1 8.7e+03 World StepLimiter - 8878 -13.8 -10.7 418 5.67e-14 0 1 8.7e+03 World StepLimiter - 8879 -13.1 -10.6 417 5.67e-14 0 1 8.7e+03 World StepLimiter - 8880 -12.3 -10.5 417 5.67e-14 0 1 8.7e+03 World StepLimiter - 8881 -11.5 -10.3 416 5.67e-14 0 1 8.7e+03 World StepLimiter - 8882 -10.7 -10.2 415 5.67e-14 0 1 8.7e+03 World StepLimiter - 8883 -9.86 -10.1 415 5.66e-14 0 1 8.7e+03 World StepLimiter - 8884 -9.06 -9.97 414 5.66e-14 0 1 8.7e+03 World StepLimiter - 8885 -8.26 -9.85 414 5.66e-14 0 1 8.7e+03 World StepLimiter - 8886 -7.47 -9.73 413 5.66e-14 0 1 8.7e+03 World StepLimiter - 8887 -6.67 -9.62 412 5.66e-14 0 1 8.71e+03 World StepLimiter - 8888 -5.87 -9.5 412 5.66e-14 0 1 8.71e+03 World StepLimiter - 8889 -5.07 -9.39 411 5.66e-14 0 1 8.71e+03 World StepLimiter - 8890 -4.27 -9.27 411 5.66e-14 0 1 8.71e+03 World StepLimiter - 8891 -3.47 -9.16 410 5.65e-14 0 1 8.71e+03 World StepLimiter - 8892 -2.68 -9.05 409 5.65e-14 0 1 8.71e+03 World StepLimiter - 8893 -1.88 -8.94 409 5.65e-14 0 1 8.71e+03 World StepLimiter - 8894 -1.08 -8.83 408 5.65e-14 0 1 8.71e+03 World StepLimiter - 8895 -0.279 -8.72 408 5.65e-14 0 1 8.71e+03 World StepLimiter - 8896 0.52 -8.61 407 5.65e-14 0 1 8.71e+03 World StepLimiter - 8897 1.32 -8.5 406 5.65e-14 0 1 8.72e+03 World StepLimiter - 8898 2.12 -8.39 406 5.65e-14 0 1 8.72e+03 World StepLimiter - 8899 2.92 -8.29 405 5.65e-14 0 1 8.72e+03 World StepLimiter - 8900 3.72 -8.18 405 5.64e-14 0 1 8.72e+03 World StepLimiter - 8901 4.52 -8.08 404 5.64e-14 0 1 8.72e+03 World StepLimiter - 8902 5.32 -7.98 404 5.64e-14 0 1 8.72e+03 World StepLimiter - 8903 6.12 -7.87 403 5.64e-14 0 1 8.72e+03 World StepLimiter - 8904 6.91 -7.77 402 5.64e-14 0 1 8.72e+03 World StepLimiter - 8905 7.71 -7.67 402 5.64e-14 0 1 8.72e+03 World StepLimiter - 8906 8.51 -7.57 401 5.64e-14 0 1 8.72e+03 World StepLimiter - 8907 9.31 -7.47 401 5.64e-14 0 1 8.73e+03 World StepLimiter - 8908 10.1 -7.38 400 5.64e-14 0 1 8.73e+03 World StepLimiter - 8909 10.9 -7.28 399 5.64e-14 0 1 8.73e+03 World StepLimiter - 8910 11.7 -7.18 399 5.63e-14 0 1 8.73e+03 World StepLimiter - 8911 12.5 -7.09 398 5.63e-14 0 1 8.73e+03 World StepLimiter - 8912 13.3 -6.99 398 5.63e-14 0 1 8.73e+03 World StepLimiter - 8913 14.1 -6.9 397 5.63e-14 0 1 8.73e+03 World StepLimiter - 8914 14.9 -6.81 396 5.63e-14 0 1 8.73e+03 World StepLimiter - 8915 15.7 -6.72 396 5.63e-14 0 1 8.73e+03 World StepLimiter - 8916 16.5 -6.63 395 5.63e-14 0 1 8.73e+03 World StepLimiter - 8917 17.3 -6.54 395 5.63e-14 0 1 8.74e+03 World StepLimiter - 8918 18.1 -6.45 394 5.63e-14 0 1 8.74e+03 World StepLimiter - 8919 18.9 -6.36 393 5.63e-14 0 1 8.74e+03 World StepLimiter - 8920 19.7 -6.27 393 5.62e-14 0 1 8.74e+03 World StepLimiter - 8921 20.5 -6.19 392 5.62e-14 0 1 8.74e+03 World StepLimiter - 8922 21.3 -6.1 392 5.62e-14 0 1 8.74e+03 World StepLimiter - 8923 22.1 -6.02 391 5.62e-14 0 1 8.74e+03 World StepLimiter - 8924 22.9 -5.93 391 5.62e-14 0 1 8.74e+03 World StepLimiter - 8925 23.7 -5.85 390 5.62e-14 0 1 8.74e+03 World StepLimiter - 8926 24.5 -5.77 389 5.62e-14 0 1 8.74e+03 World StepLimiter - 8927 25.3 -5.69 389 5.62e-14 0 1 8.75e+03 World StepLimiter - 8928 26.1 -5.61 388 5.62e-14 0 1 8.75e+03 World StepLimiter - 8929 26.9 -5.53 388 5.62e-14 0 1 8.75e+03 World StepLimiter - 8930 27.7 -5.45 387 5.62e-14 0 1 8.75e+03 World StepLimiter - 8931 28.5 -5.38 386 5.62e-14 0 1 8.75e+03 World StepLimiter - 8932 29.3 -5.3 386 5.61e-14 0 1 8.75e+03 World StepLimiter - 8933 30.1 -5.22 385 5.61e-14 0 1 8.75e+03 World StepLimiter - 8934 30.9 -5.15 385 5.61e-14 0 1 8.75e+03 World StepLimiter - 8935 31.7 -5.08 384 5.61e-14 0 1 8.75e+03 World StepLimiter - 8936 32.5 -5 383 5.61e-14 0 1 8.75e+03 World StepLimiter - 8937 33.3 -4.93 383 5.61e-14 0 1 8.76e+03 World StepLimiter - 8938 34.1 -4.86 382 5.61e-14 0 1 8.76e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.099582321991neV MomDir: (0.80181924520163,0.069578268601082,-0.59350211672981) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 8939 34.7 -4.82 382 5.61e-14 0 0.655 8.76e+03 Guide Transportation *** StepTooSmall *** - 8940 34.7 -4.82 382 5.61e-14 0 0 8.76e+03 World Transportation - 8941 33.9 -4.53 381 5.61e-14 0 1 8.76e+03 World StepLimiter - 8942 33.2 -4.25 381 5.6e-14 0 1 8.76e+03 World StepLimiter - 8943 32.4 -3.96 380 5.6e-14 0 1 8.76e+03 World StepLimiter - 8944 31.7 -3.68 379 5.6e-14 0 1 8.76e+03 World StepLimiter - 8945 30.9 -3.4 379 5.6e-14 0 1 8.76e+03 World StepLimiter - 8946 30.1 -3.12 378 5.59e-14 0 1 8.76e+03 World StepLimiter - 8947 29.4 -2.84 378 5.59e-14 0 1 8.76e+03 World StepLimiter - 8948 28.6 -2.56 377 5.59e-14 0 1 8.77e+03 World StepLimiter - 8949 27.9 -2.28 376 5.58e-14 0 1 8.77e+03 World StepLimiter - 8950 27.1 -2 376 5.58e-14 0 1 8.77e+03 World StepLimiter - 8951 26.4 -1.73 375 5.58e-14 0 1 8.77e+03 World StepLimiter - 8952 25.6 -1.45 375 5.58e-14 0 1 8.77e+03 World StepLimiter - 8953 24.9 -1.18 374 5.57e-14 0 1 8.77e+03 World StepLimiter - 8954 24.1 -0.902 373 5.57e-14 0 1 8.77e+03 World StepLimiter - 8955 23.4 -0.628 373 5.57e-14 0 1 8.77e+03 World StepLimiter - 8956 22.6 -0.356 372 5.56e-14 0 1 8.77e+03 World StepLimiter - 8957 21.8 -0.0845 372 5.56e-14 0 1 8.77e+03 World StepLimiter - 8958 21.1 0.186 371 5.56e-14 0 1 8.78e+03 World StepLimiter - 8959 20.3 0.456 371 5.56e-14 0 1 8.78e+03 World StepLimiter - 8960 19.6 0.725 370 5.55e-14 0 1 8.78e+03 World StepLimiter - 8961 18.8 0.993 369 5.55e-14 0 1 8.78e+03 World StepLimiter - 8962 18.1 1.26 369 5.55e-14 0 1 8.78e+03 World StepLimiter - 8963 17.3 1.53 368 5.54e-14 0 1 8.78e+03 World StepLimiter - 8964 16.6 1.79 368 5.54e-14 0 1 8.78e+03 World StepLimiter - 8965 15.8 2.06 367 5.54e-14 0 1 8.78e+03 World StepLimiter - 8966 15 2.32 366 5.54e-14 0 1 8.78e+03 World StepLimiter - 8967 14.3 2.58 366 5.53e-14 0 1 8.78e+03 World StepLimiter - 8968 13.5 2.85 365 5.53e-14 0 1 8.79e+03 World StepLimiter - 8969 12.8 3.11 365 5.53e-14 0 1 8.79e+03 World StepLimiter - 8970 12 3.37 364 5.53e-14 0 1 8.79e+03 World StepLimiter - 8971 11.2 3.63 363 5.52e-14 0 1 8.79e+03 World StepLimiter - 8972 10.5 3.89 363 5.52e-14 0 1 8.79e+03 World StepLimiter - 8973 9.73 4.14 362 5.52e-14 0 1 8.79e+03 World StepLimiter - 8974 8.97 4.4 362 5.52e-14 0 1 8.79e+03 World StepLimiter - 8975 8.21 4.66 361 5.51e-14 0 1 8.79e+03 World StepLimiter - 8976 7.45 4.91 360 5.51e-14 0 1 8.79e+03 World StepLimiter - 8977 6.69 5.17 360 5.51e-14 0 1 8.79e+03 World StepLimiter - 8978 5.93 5.42 359 5.5e-14 0 1 8.8e+03 World StepLimiter - 8979 5.18 5.67 359 5.5e-14 0 1 8.8e+03 World StepLimiter - 8980 4.42 5.92 358 5.5e-14 0 1 8.8e+03 World StepLimiter - 8981 3.66 6.17 357 5.5e-14 0 1 8.8e+03 World StepLimiter - 8982 2.89 6.42 357 5.49e-14 0 1 8.8e+03 World StepLimiter - 8983 2.13 6.67 356 5.49e-14 0 1 8.8e+03 World StepLimiter - 8984 1.37 6.92 356 5.49e-14 0 1 8.8e+03 World StepLimiter - 8985 0.613 7.17 355 5.49e-14 0 1 8.8e+03 World StepLimiter - 8986 -0.148 7.42 354 5.48e-14 0 1 8.8e+03 World StepLimiter - 8987 -0.909 7.66 354 5.48e-14 0 1 8.8e+03 World StepLimiter - 8988 -1.67 7.91 353 5.48e-14 0 1 8.81e+03 World StepLimiter - 8989 -2.43 8.15 353 5.48e-14 0 1 8.81e+03 World StepLimiter - 8990 -3.19 8.39 352 5.47e-14 0 1 8.81e+03 World StepLimiter - 8991 -3.96 8.63 351 5.47e-14 0 1 8.81e+03 World StepLimiter - 8992 -4.72 8.88 351 5.47e-14 0 1 8.81e+03 World StepLimiter - 8993 -5.48 9.12 350 5.47e-14 0 1 8.81e+03 World StepLimiter - 8994 -6.24 9.36 350 5.46e-14 0 1 8.81e+03 World StepLimiter - 8995 -7 9.59 349 5.46e-14 0 1 8.81e+03 World StepLimiter - 8996 -7.77 9.83 348 5.46e-14 0 1 8.81e+03 World StepLimiter - 8997 -8.53 10.1 348 5.46e-14 0 1 8.81e+03 World StepLimiter - 8998 -9.29 10.3 347 5.45e-14 0 1 8.82e+03 World StepLimiter - 8999 -10.1 10.5 347 5.45e-14 0 1 8.82e+03 World StepLimiter - 9000 -10.8 10.8 346 5.45e-14 0 1 8.82e+03 World StepLimiter - 9001 -11.6 11 345 5.45e-14 0 1 8.82e+03 World StepLimiter - 9002 -12.3 11.2 345 5.45e-14 0 1 8.82e+03 World StepLimiter - 9003 -13.1 11.5 344 5.44e-14 0 1 8.82e+03 World StepLimiter - 9004 -13.9 11.7 344 5.44e-14 0 1 8.82e+03 World StepLimiter - 9005 -14.6 11.9 343 5.44e-14 0 1 8.82e+03 World StepLimiter - 9006 -15.4 12.2 342 5.44e-14 0 1 8.82e+03 World StepLimiter - 9007 -16.2 12.4 342 5.43e-14 0 1 8.82e+03 World StepLimiter - 9008 -16.9 12.6 341 5.43e-14 0 1 8.83e+03 World StepLimiter - 9009 -17.7 12.8 341 5.43e-14 0 1 8.83e+03 World StepLimiter - 9010 -18.5 13.1 340 5.43e-14 0 1 8.83e+03 World StepLimiter - 9011 -19.2 13.3 339 5.42e-14 0 1 8.83e+03 World StepLimiter - 9012 -20 13.5 339 5.42e-14 0 1 8.83e+03 World StepLimiter - 9013 -20.8 13.7 338 5.42e-14 0 1 8.83e+03 World StepLimiter - 9014 -21.5 14 337 5.42e-14 0 1 8.83e+03 World StepLimiter - 9015 -22.3 14.2 337 5.42e-14 0 1 8.83e+03 World StepLimiter - 9016 -23.1 14.4 336 5.41e-14 0 1 8.83e+03 World StepLimiter - 9017 -23.8 14.6 336 5.41e-14 0 1 8.83e+03 World StepLimiter - 9018 -24.6 14.8 335 5.41e-14 0 1 8.84e+03 World StepLimiter - 9019 -25.4 15.1 334 5.41e-14 0 1 8.84e+03 World StepLimiter - 9020 -26.1 15.3 334 5.4e-14 0 1 8.84e+03 World StepLimiter - 9021 -26.9 15.5 333 5.4e-14 0 1 8.84e+03 World StepLimiter - 9022 -27.7 15.7 333 5.4e-14 0 1 8.84e+03 World StepLimiter - 9023 -28.4 15.9 332 5.4e-14 0 1 8.84e+03 World StepLimiter - 9024 -29.2 16.1 331 5.4e-14 0 1 8.84e+03 World StepLimiter - 9025 -30 16.3 331 5.39e-14 0 1 8.84e+03 World StepLimiter - 9026 -30.7 16.5 330 5.39e-14 0 1 8.84e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.906049063668neV MomDir: (-0.76764194488317,0.21011333704346,-0.60545704228496) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9027 -30.8 16.6 330 5.39e-14 0 0.135 8.84e+03 Guide Transportation *** StepTooSmall *** - 9028 -30.8 16.6 330 5.39e-14 0 0 8.84e+03 World Transportation - 9029 -30.2 16 330 5.4e-14 0 1 8.84e+03 World StepLimiter - 9030 -29.6 15.5 329 5.4e-14 0 1 8.85e+03 World StepLimiter - 9031 -29 15 328 5.41e-14 0 1 8.85e+03 World StepLimiter - 9032 -28.4 14.5 328 5.41e-14 0 1 8.85e+03 World StepLimiter - 9033 -27.8 13.9 327 5.42e-14 0 1 8.85e+03 World StepLimiter - 9034 -27.2 13.4 327 5.42e-14 0 1 8.85e+03 World StepLimiter - 9035 -26.6 12.9 326 5.43e-14 0 1 8.85e+03 World StepLimiter - 9036 -26 12.4 325 5.43e-14 0 1 8.85e+03 World StepLimiter - 9037 -25.5 11.8 325 5.44e-14 0 1 8.85e+03 World StepLimiter - 9038 -24.9 11.3 324 5.44e-14 0 1 8.85e+03 World StepLimiter - 9039 -24.3 10.8 324 5.45e-14 0 1 8.85e+03 World StepLimiter - 9040 -23.7 10.2 323 5.46e-14 0 1 8.86e+03 World StepLimiter - 9041 -23.1 9.7 322 5.46e-14 0 1 8.86e+03 World StepLimiter - 9042 -22.5 9.16 322 5.47e-14 0 1 8.86e+03 World StepLimiter - 9043 -21.9 8.63 321 5.47e-14 0 1 8.86e+03 World StepLimiter - 9044 -21.3 8.09 321 5.48e-14 0 1 8.86e+03 World StepLimiter - 9045 -20.7 7.56 320 5.48e-14 0 1 8.86e+03 World StepLimiter - 9046 -20.1 7.02 319 5.49e-14 0 1 8.86e+03 World StepLimiter - 9047 -19.5 6.49 319 5.49e-14 0 1 8.86e+03 World StepLimiter - 9048 -18.9 5.95 318 5.5e-14 0 1 8.86e+03 World StepLimiter - 9049 -18.3 5.41 318 5.51e-14 0 1 8.86e+03 World StepLimiter - 9050 -17.7 4.87 317 5.51e-14 0 1 8.87e+03 World StepLimiter - 9051 -17.1 4.33 316 5.52e-14 0 1 8.87e+03 World StepLimiter - 9052 -16.5 3.79 316 5.52e-14 0 1 8.87e+03 World StepLimiter - 9053 -16 3.25 315 5.53e-14 0 1 8.87e+03 World StepLimiter - 9054 -15.4 2.71 315 5.53e-14 0 1 8.87e+03 World StepLimiter - 9055 -14.8 2.17 314 5.54e-14 0 1 8.87e+03 World StepLimiter - 9056 -14.2 1.62 313 5.54e-14 0 1 8.87e+03 World StepLimiter - 9057 -13.6 1.08 313 5.55e-14 0 1 8.87e+03 World StepLimiter - 9058 -13 0.536 312 5.56e-14 0 1 8.87e+03 World StepLimiter - 9059 -12.4 -0.00859 312 5.56e-14 0 1 8.87e+03 World StepLimiter - 9060 -11.8 -0.554 311 5.57e-14 0 1 8.88e+03 World StepLimiter - 9061 -11.2 -1.1 310 5.57e-14 0 1 8.88e+03 World StepLimiter - 9062 -10.6 -1.65 310 5.58e-14 0 1 8.88e+03 World StepLimiter - 9063 -10.1 -2.19 309 5.58e-14 0 1 8.88e+03 World StepLimiter - 9064 -9.47 -2.74 309 5.59e-14 0 1 8.88e+03 World StepLimiter - 9065 -8.88 -3.29 308 5.59e-14 0 1 8.88e+03 World StepLimiter - 9066 -8.29 -3.84 307 5.6e-14 0 1 8.88e+03 World StepLimiter - 9067 -7.71 -4.39 307 5.61e-14 0 1 8.88e+03 World StepLimiter - 9068 -7.12 -4.94 306 5.61e-14 0 1 8.88e+03 World StepLimiter - 9069 -6.53 -5.49 306 5.62e-14 0 1 8.88e+03 World StepLimiter - 9070 -5.95 -6.04 305 5.62e-14 0 1 8.89e+03 World StepLimiter - 9071 -5.36 -6.6 304 5.63e-14 0 1 8.89e+03 World StepLimiter - 9072 -4.77 -7.15 304 5.63e-14 0 1 8.89e+03 World StepLimiter - 9073 -4.19 -7.7 303 5.64e-14 0 1 8.89e+03 World StepLimiter - 9074 -3.6 -8.26 303 5.65e-14 0 1 8.89e+03 World StepLimiter - 9075 -3.02 -8.81 302 5.65e-14 0 1 8.89e+03 World StepLimiter - 9076 -2.43 -9.37 301 5.66e-14 0 1 8.89e+03 World StepLimiter - 9077 -1.85 -9.92 301 5.66e-14 0 1 8.89e+03 World StepLimiter - 9078 -1.27 -10.5 300 5.67e-14 0 1 8.89e+03 World StepLimiter - 9079 -0.682 -11 300 5.67e-14 0 1 8.89e+03 World StepLimiter - 9080 -0.0983 -11.6 299 5.68e-14 0 1 8.9e+03 World StepLimiter - 9081 0.485 -12.2 298 5.69e-14 0 1 8.9e+03 World StepLimiter - 9082 1.07 -12.7 298 5.69e-14 0 1 8.9e+03 World StepLimiter - 9083 1.65 -13.3 297 5.7e-14 0 1 8.9e+03 World StepLimiter - 9084 2.23 -13.8 297 5.7e-14 0 1 8.9e+03 World StepLimiter - 9085 2.81 -14.4 296 5.71e-14 0 1 8.9e+03 World StepLimiter - 9086 3.4 -15 296 5.71e-14 0 1 8.9e+03 World StepLimiter - 9087 3.98 -15.5 295 5.72e-14 0 1 8.9e+03 World StepLimiter - 9088 4.56 -16.1 294 5.73e-14 0 1 8.9e+03 World StepLimiter - 9089 5.14 -16.6 294 5.73e-14 0 1 8.9e+03 World StepLimiter - 9090 5.72 -17.2 293 5.74e-14 0 1 8.91e+03 World StepLimiter - 9091 6.3 -17.8 293 5.74e-14 0 1 8.91e+03 World StepLimiter - 9092 6.88 -18.3 292 5.75e-14 0 1 8.91e+03 World StepLimiter - 9093 7.46 -18.9 291 5.75e-14 0 1 8.91e+03 World StepLimiter - 9094 8.04 -19.5 291 5.76e-14 0 1 8.91e+03 World StepLimiter - 9095 8.62 -20 290 5.77e-14 0 1 8.91e+03 World StepLimiter - 9096 9.2 -20.6 290 5.77e-14 0 1 8.91e+03 World StepLimiter - 9097 9.77 -21.2 289 5.78e-14 0 1 8.91e+03 World StepLimiter - 9098 10.4 -21.7 289 5.78e-14 0 1 8.91e+03 World StepLimiter - 9099 10.9 -22.3 288 5.79e-14 0 1 8.91e+03 World StepLimiter - 9100 11.5 -22.9 287 5.8e-14 0 1 8.92e+03 World StepLimiter - 9101 12.1 -23.5 287 5.8e-14 0 1 8.92e+03 World StepLimiter - 9102 12.7 -24 286 5.81e-14 0 1 8.92e+03 World StepLimiter - 9103 13.2 -24.6 286 5.81e-14 0 1 8.92e+03 World StepLimiter - 9104 13.8 -25.2 285 5.82e-14 0 1 8.92e+03 World StepLimiter - 9105 14.4 -25.7 284 5.82e-14 0 1 8.92e+03 World StepLimiter - 9106 15 -26.3 284 5.83e-14 0 1 8.92e+03 World StepLimiter - 9107 15.5 -26.9 283 5.84e-14 0 1 8.92e+03 World StepLimiter - 9108 16.1 -27.5 283 5.84e-14 0 1 8.92e+03 World StepLimiter - 9109 16.7 -28 282 5.85e-14 0 1 8.92e+03 World StepLimiter - 9110 17.3 -28.6 282 5.85e-14 0 1 8.93e+03 World StepLimiter - 9111 17.8 -29.2 281 5.86e-14 0 1 8.93e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.65861433138neV MomDir: (0.57391913069326,-0.57770152036587,-0.58041173729625) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9112 18.4 -29.8 280 5.87e-14 0 0.983 8.93e+03 Guide Transportation *** StepTooSmall *** - 9113 18.4 -29.8 280 5.87e-14 0 0 8.93e+03 World Transportation - 9114 18.1 -29 280 5.86e-14 0 1 8.93e+03 World StepLimiter - 9115 17.9 -28.2 279 5.85e-14 0 1 8.93e+03 World StepLimiter - 9116 17.6 -27.5 279 5.84e-14 0 1 8.93e+03 World StepLimiter - 9117 17.4 -26.7 278 5.83e-14 0 1 8.93e+03 World StepLimiter - 9118 17.1 -25.9 277 5.83e-14 0 1 8.93e+03 World StepLimiter - 9119 16.8 -25.1 277 5.82e-14 0 1 8.93e+03 World StepLimiter - 9120 16.6 -24.4 276 5.81e-14 0 1 8.93e+03 World StepLimiter - 9121 16.3 -23.6 276 5.8e-14 0 1 8.94e+03 World StepLimiter - 9122 16.1 -22.8 275 5.79e-14 0 1 8.94e+03 World StepLimiter - 9123 15.8 -22.1 275 5.79e-14 0 1 8.94e+03 World StepLimiter - 9124 15.5 -21.3 274 5.78e-14 0 1 8.94e+03 World StepLimiter - 9125 15.3 -20.5 273 5.77e-14 0 1 8.94e+03 World StepLimiter - 9126 15 -19.8 273 5.76e-14 0 1 8.94e+03 World StepLimiter - 9127 14.7 -19 272 5.76e-14 0 1 8.94e+03 World StepLimiter - 9128 14.5 -18.2 272 5.75e-14 0 1 8.94e+03 World StepLimiter - 9129 14.2 -17.5 271 5.74e-14 0 1 8.94e+03 World StepLimiter - 9130 14 -16.7 270 5.73e-14 0 1 8.94e+03 World StepLimiter - 9131 13.7 -15.9 270 5.72e-14 0 1 8.95e+03 World StepLimiter - 9132 13.4 -15.2 269 5.72e-14 0 1 8.95e+03 World StepLimiter - 9133 13.2 -14.4 269 5.71e-14 0 1 8.95e+03 World StepLimiter - 9134 12.9 -13.6 268 5.7e-14 0 1 8.95e+03 World StepLimiter - 9135 12.6 -12.9 268 5.69e-14 0 1 8.95e+03 World StepLimiter - 9136 12.4 -12.1 267 5.68e-14 0 1 8.95e+03 World StepLimiter - 9137 12.1 -11.4 266 5.68e-14 0 1 8.95e+03 World StepLimiter - 9138 11.8 -10.6 266 5.67e-14 0 1 8.95e+03 World StepLimiter - 9139 11.6 -9.83 265 5.66e-14 0 1 8.95e+03 World StepLimiter - 9140 11.3 -9.07 265 5.65e-14 0 1 8.95e+03 World StepLimiter - 9141 11 -8.31 264 5.65e-14 0 1 8.96e+03 World StepLimiter - 9142 10.8 -7.55 263 5.64e-14 0 1 8.96e+03 World StepLimiter - 9143 10.5 -6.79 263 5.63e-14 0 1 8.96e+03 World StepLimiter - 9144 10.2 -6.02 262 5.62e-14 0 1 8.96e+03 World StepLimiter - 9145 9.98 -5.27 262 5.61e-14 0 1 8.96e+03 World StepLimiter - 9146 9.72 -4.51 261 5.61e-14 0 1 8.96e+03 World StepLimiter - 9147 9.45 -3.75 260 5.6e-14 0 1 8.96e+03 World StepLimiter - 9148 9.18 -2.99 260 5.59e-14 0 1 8.96e+03 World StepLimiter - 9149 8.92 -2.23 259 5.58e-14 0 1 8.96e+03 World StepLimiter - 9150 8.65 -1.47 259 5.58e-14 0 1 8.96e+03 World StepLimiter - 9151 8.38 -0.713 258 5.57e-14 0 1 8.97e+03 World StepLimiter - 9152 8.12 0.0438 257 5.56e-14 0 1 8.97e+03 World StepLimiter - 9153 7.85 0.801 257 5.55e-14 0 1 8.97e+03 World StepLimiter - 9154 7.58 1.56 256 5.54e-14 0 1 8.97e+03 World StepLimiter - 9155 7.31 2.31 256 5.54e-14 0 1 8.97e+03 World StepLimiter - 9156 7.05 3.07 255 5.53e-14 0 1 8.97e+03 World StepLimiter - 9157 6.78 3.82 254 5.52e-14 0 1 8.97e+03 World StepLimiter - 9158 6.51 4.58 254 5.51e-14 0 1 8.97e+03 World StepLimiter - 9159 6.24 5.33 253 5.51e-14 0 1 8.97e+03 World StepLimiter - 9160 5.97 6.09 253 5.5e-14 0 1 8.97e+03 World StepLimiter - 9161 5.7 6.84 252 5.49e-14 0 1 8.98e+03 World StepLimiter - 9162 5.43 7.59 251 5.48e-14 0 1 8.98e+03 World StepLimiter - 9163 5.16 8.35 251 5.47e-14 0 1 8.98e+03 World StepLimiter - 9164 4.89 9.1 250 5.47e-14 0 1 8.98e+03 World StepLimiter - 9165 4.62 9.85 250 5.46e-14 0 1 8.98e+03 World StepLimiter - 9166 4.35 10.6 249 5.45e-14 0 1 8.98e+03 World StepLimiter - 9167 4.08 11.4 248 5.44e-14 0 1 8.98e+03 World StepLimiter - 9168 3.81 12.1 248 5.44e-14 0 1 8.98e+03 World StepLimiter - 9169 3.54 12.9 247 5.43e-14 0 1 8.98e+03 World StepLimiter - 9170 3.27 13.6 247 5.42e-14 0 1 8.98e+03 World StepLimiter - 9171 3 14.4 246 5.41e-14 0 1 8.99e+03 World StepLimiter - 9172 2.73 15.1 245 5.41e-14 0 1 8.99e+03 World StepLimiter - 9173 2.46 15.9 245 5.4e-14 0 1 8.99e+03 World StepLimiter - 9174 2.19 16.6 244 5.39e-14 0 1 8.99e+03 World StepLimiter - 9175 1.92 17.3 244 5.38e-14 0 1 8.99e+03 World StepLimiter - 9176 1.64 18.1 243 5.37e-14 0 1 8.99e+03 World StepLimiter - 9177 1.37 18.8 242 5.37e-14 0 1 8.99e+03 World StepLimiter - 9178 1.1 19.6 242 5.36e-14 0 1 8.99e+03 World StepLimiter - 9179 0.828 20.3 241 5.35e-14 0 1 8.99e+03 World StepLimiter - 9180 0.555 21.1 241 5.34e-14 0 1 8.99e+03 World StepLimiter - 9181 0.282 21.8 240 5.34e-14 0 1 9e+03 World StepLimiter - 9182 0.00939 22.6 239 5.33e-14 0 1 9e+03 World StepLimiter - 9183 -0.264 23.3 239 5.32e-14 0 1 9e+03 World StepLimiter - 9184 -0.537 24.1 238 5.31e-14 0 1 9e+03 World StepLimiter - 9185 -0.811 24.8 238 5.31e-14 0 1 9e+03 World StepLimiter - 9186 -1.08 25.5 237 5.3e-14 0 1 9e+03 World StepLimiter - 9187 -1.36 26.3 236 5.29e-14 0 1 9e+03 World StepLimiter - 9188 -1.63 27 236 5.28e-14 0 1 9e+03 World StepLimiter - 9189 -1.91 27.8 235 5.28e-14 0 1 9e+03 World StepLimiter - 9190 -2.18 28.5 234 5.27e-14 0 1 9e+03 World StepLimiter - 9191 -2.46 29.3 234 5.26e-14 0 1 9.01e+03 World StepLimiter - 9192 -2.73 30 233 5.25e-14 0 1 9.01e+03 World StepLimiter - 9193 -3.01 30.7 233 5.25e-14 0 1 9.01e+03 World StepLimiter - 9194 -3.28 31.5 232 5.24e-14 0 1 9.01e+03 World StepLimiter - 9195 -3.56 32.2 231 5.23e-14 0 1 9.01e+03 World StepLimiter - 9196 -3.83 33 231 5.22e-14 0 1 9.01e+03 World StepLimiter - 9197 -4.11 33.7 230 5.22e-14 0 1 9.01e+03 World StepLimiter - 9198 -4.39 34.4 230 5.21e-14 0 1 9.01e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.045890252409neV MomDir: (-0.27638161286355,0.73751826793849,-0.61618179827706) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9199 -4.49 34.7 229 5.2e-14 0 0.378 9.01e+03 Guide Transportation *** StepTooSmall *** - 9200 -4.49 34.7 229 5.2e-14 0 0 9.01e+03 World Transportation - 9201 -4.57 33.9 229 5.21e-14 0 1 9.01e+03 World StepLimiter - 9202 -4.65 33.1 228 5.22e-14 0 1 9.01e+03 World StepLimiter - 9203 -4.73 32.4 227 5.23e-14 0 1 9.02e+03 World StepLimiter - 9204 -4.81 31.6 227 5.24e-14 0 1 9.02e+03 World StepLimiter - 9205 -4.89 30.8 226 5.24e-14 0 1 9.02e+03 World StepLimiter - 9206 -4.97 30 226 5.25e-14 0 1 9.02e+03 World StepLimiter - 9207 -5.05 29.2 225 5.26e-14 0 1 9.02e+03 World StepLimiter - 9208 -5.13 28.4 224 5.27e-14 0 1 9.02e+03 World StepLimiter - 9209 -5.2 27.6 224 5.28e-14 0 1 9.02e+03 World StepLimiter - 9210 -5.28 26.9 223 5.29e-14 0 1 9.02e+03 World StepLimiter - 9211 -5.36 26.1 223 5.29e-14 0 1 9.02e+03 World StepLimiter - 9212 -5.44 25.3 222 5.3e-14 0 1 9.02e+03 World StepLimiter - 9213 -5.52 24.5 221 5.31e-14 0 1 9.03e+03 World StepLimiter - 9214 -5.6 23.7 221 5.32e-14 0 1 9.03e+03 World StepLimiter - 9215 -5.68 22.9 220 5.33e-14 0 1 9.03e+03 World StepLimiter - 9216 -5.76 22.1 220 5.33e-14 0 1 9.03e+03 World StepLimiter - 9217 -5.83 21.3 219 5.34e-14 0 1 9.03e+03 World StepLimiter - 9218 -5.91 20.5 218 5.35e-14 0 1 9.03e+03 World StepLimiter - 9219 -5.99 19.8 218 5.36e-14 0 1 9.03e+03 World StepLimiter - 9220 -6.07 19 217 5.37e-14 0 1 9.03e+03 World StepLimiter - 9221 -6.15 18.2 216 5.37e-14 0 1 9.03e+03 World StepLimiter - 9222 -6.23 17.4 216 5.38e-14 0 1 9.03e+03 World StepLimiter - 9223 -6.31 16.6 215 5.39e-14 0 1 9.04e+03 World StepLimiter - 9224 -6.38 15.8 215 5.4e-14 0 1 9.04e+03 World StepLimiter - 9225 -6.46 15 214 5.41e-14 0 1 9.04e+03 World StepLimiter - 9226 -6.54 14.2 213 5.41e-14 0 1 9.04e+03 World StepLimiter - 9227 -6.62 13.4 213 5.42e-14 0 1 9.04e+03 World StepLimiter - 9228 -6.7 12.6 212 5.43e-14 0 1 9.04e+03 World StepLimiter - 9229 -6.77 11.8 212 5.44e-14 0 1 9.04e+03 World StepLimiter - 9230 -6.85 11 211 5.45e-14 0 1 9.04e+03 World StepLimiter - 9231 -6.93 10.2 210 5.46e-14 0 1 9.04e+03 World StepLimiter - 9232 -7.01 9.45 210 5.46e-14 0 1 9.04e+03 World StepLimiter - 9233 -7.08 8.65 209 5.47e-14 0 1 9.05e+03 World StepLimiter - 9234 -7.16 7.86 209 5.48e-14 0 1 9.05e+03 World StepLimiter - 9235 -7.24 7.06 208 5.49e-14 0 1 9.05e+03 World StepLimiter - 9236 -7.32 6.26 207 5.5e-14 0 1 9.05e+03 World StepLimiter - 9237 -7.39 5.47 207 5.5e-14 0 1 9.05e+03 World StepLimiter - 9238 -7.47 4.67 206 5.51e-14 0 1 9.05e+03 World StepLimiter - 9239 -7.55 3.87 206 5.52e-14 0 1 9.05e+03 World StepLimiter - 9240 -7.63 3.08 205 5.53e-14 0 1 9.05e+03 World StepLimiter - 9241 -7.7 2.28 204 5.54e-14 0 1 9.05e+03 World StepLimiter - 9242 -7.78 1.48 204 5.55e-14 0 1 9.05e+03 World StepLimiter - 9243 -7.86 0.68 203 5.55e-14 0 1 9.06e+03 World StepLimiter - 9244 -7.93 -0.119 203 5.56e-14 0 1 9.06e+03 World StepLimiter - 9245 -8.01 -0.918 202 5.57e-14 0 1 9.06e+03 World StepLimiter - 9246 -8.09 -1.72 201 5.58e-14 0 1 9.06e+03 World StepLimiter - 9247 -8.17 -2.52 201 5.59e-14 0 1 9.06e+03 World StepLimiter - 9248 -8.24 -3.32 200 5.59e-14 0 1 9.06e+03 World StepLimiter - 9249 -8.32 -4.12 200 5.6e-14 0 1 9.06e+03 World StepLimiter - 9250 -8.4 -4.92 199 5.61e-14 0 1 9.06e+03 World StepLimiter - 9251 -8.47 -5.72 198 5.62e-14 0 1 9.06e+03 World StepLimiter - 9252 -8.55 -6.52 198 5.63e-14 0 1 9.06e+03 World StepLimiter - 9253 -8.63 -7.33 197 5.64e-14 0 1 9.07e+03 World StepLimiter - 9254 -8.7 -8.13 197 5.64e-14 0 1 9.07e+03 World StepLimiter - 9255 -8.78 -8.93 196 5.65e-14 0 1 9.07e+03 World StepLimiter - 9256 -8.85 -9.73 196 5.66e-14 0 1 9.07e+03 World StepLimiter - 9257 -8.93 -10.5 195 5.67e-14 0 1 9.07e+03 World StepLimiter - 9258 -9.01 -11.3 194 5.68e-14 0 1 9.07e+03 World StepLimiter - 9259 -9.08 -12.1 194 5.69e-14 0 1 9.07e+03 World StepLimiter - 9260 -9.16 -12.9 193 5.69e-14 0 1 9.07e+03 World StepLimiter - 9261 -9.24 -13.8 193 5.7e-14 0 1 9.07e+03 World StepLimiter - 9262 -9.31 -14.6 192 5.71e-14 0 1 9.07e+03 World StepLimiter - 9263 -9.39 -15.4 191 5.72e-14 0 1 9.08e+03 World StepLimiter - 9264 -9.46 -16.2 191 5.73e-14 0 1 9.08e+03 World StepLimiter - 9265 -9.54 -17 190 5.73e-14 0 1 9.08e+03 World StepLimiter - 9266 -9.62 -17.8 190 5.74e-14 0 1 9.08e+03 World StepLimiter - 9267 -9.69 -18.6 189 5.75e-14 0 1 9.08e+03 World StepLimiter - 9268 -9.77 -19.4 188 5.76e-14 0 1 9.08e+03 World StepLimiter - 9269 -9.84 -20.2 188 5.77e-14 0 1 9.08e+03 World StepLimiter - 9270 -9.92 -21 187 5.78e-14 0 1 9.08e+03 World StepLimiter - 9271 -9.99 -21.8 187 5.78e-14 0 1 9.08e+03 World StepLimiter - 9272 -10.1 -22.6 186 5.79e-14 0 1 9.08e+03 World StepLimiter - 9273 -10.1 -23.4 186 5.8e-14 0 1 9.09e+03 World StepLimiter - 9274 -10.2 -24.2 185 5.81e-14 0 1 9.09e+03 World StepLimiter - 9275 -10.3 -25.1 184 5.82e-14 0 1 9.09e+03 World StepLimiter - 9276 -10.4 -25.9 184 5.83e-14 0 1 9.09e+03 World StepLimiter - 9277 -10.4 -26.7 183 5.83e-14 0 1 9.09e+03 World StepLimiter - 9278 -10.5 -27.5 183 5.84e-14 0 1 9.09e+03 World StepLimiter - 9279 -10.6 -28.3 182 5.85e-14 0 1 9.09e+03 World StepLimiter - 9280 -10.7 -29.1 181 5.86e-14 0 1 9.09e+03 World StepLimiter - 9281 -10.7 -29.9 181 5.87e-14 0 1 9.09e+03 World StepLimiter - 9282 -10.8 -30.7 180 5.88e-14 0 1 9.09e+03 World StepLimiter - 9283 -10.9 -31.5 180 5.88e-14 0 1 9.1e+03 World StepLimiter - 9284 -11 -32.3 179 5.89e-14 0 1 9.1e+03 World StepLimiter - 9285 -11 -33.2 179 5.9e-14 0 1 9.1e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 59.011441307493neV MomDir: (-0.074754509097579,-0.81212570269209,-0.57867400701643) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9286 -11.1 -33.2 179 5.9e-14 0 0.0659 9.1e+03 Guide Transportation *** StepTooSmall *** - 9287 -11.1 -33.2 179 5.9e-14 0 0 9.1e+03 World Transportation - 9288 -10.6 -32.5 178 5.89e-14 0 1 9.1e+03 World StepLimiter - 9289 -10.2 -31.8 177 5.89e-14 0 1 9.1e+03 World StepLimiter - 9290 -9.77 -31.1 177 5.88e-14 0 1 9.1e+03 World StepLimiter - 9291 -9.34 -30.4 176 5.87e-14 0 1 9.1e+03 World StepLimiter - 9292 -8.91 -29.7 176 5.87e-14 0 1 9.1e+03 World StepLimiter - 9293 -8.49 -29 175 5.86e-14 0 1 9.1e+03 World StepLimiter - 9294 -8.06 -28.4 174 5.85e-14 0 1 9.1e+03 World StepLimiter - 9295 -7.63 -27.7 174 5.84e-14 0 1 9.11e+03 World StepLimiter - 9296 -7.2 -27 173 5.84e-14 0 1 9.11e+03 World StepLimiter - 9297 -6.77 -26.3 173 5.83e-14 0 1 9.11e+03 World StepLimiter - 9298 -6.34 -25.6 172 5.82e-14 0 1 9.11e+03 World StepLimiter - 9299 -5.91 -24.9 172 5.82e-14 0 1 9.11e+03 World StepLimiter - 9300 -5.48 -24.2 171 5.81e-14 0 1 9.11e+03 World StepLimiter - 9301 -5.05 -23.5 170 5.8e-14 0 1 9.11e+03 World StepLimiter - 9302 -4.62 -22.8 170 5.79e-14 0 1 9.11e+03 World StepLimiter - 9303 -4.19 -22.1 169 5.79e-14 0 1 9.11e+03 World StepLimiter - 9304 -3.76 -21.5 169 5.78e-14 0 1 9.11e+03 World StepLimiter - 9305 -3.33 -20.8 168 5.77e-14 0 1 9.12e+03 World StepLimiter - 9306 -2.9 -20.1 167 5.77e-14 0 1 9.12e+03 World StepLimiter - 9307 -2.46 -19.4 167 5.76e-14 0 1 9.12e+03 World StepLimiter - 9308 -2.03 -18.7 166 5.75e-14 0 1 9.12e+03 World StepLimiter - 9309 -1.6 -18 166 5.75e-14 0 1 9.12e+03 World StepLimiter - 9310 -1.17 -17.3 165 5.74e-14 0 1 9.12e+03 World StepLimiter - 9311 -0.734 -16.7 165 5.73e-14 0 1 9.12e+03 World StepLimiter - 9312 -0.301 -16 164 5.72e-14 0 1 9.12e+03 World StepLimiter - 9313 0.133 -15.3 163 5.72e-14 0 1 9.12e+03 World StepLimiter - 9314 0.566 -14.6 163 5.71e-14 0 1 9.12e+03 World StepLimiter - 9315 1 -13.9 162 5.7e-14 0 1 9.13e+03 World StepLimiter - 9316 1.43 -13.2 162 5.7e-14 0 1 9.13e+03 World StepLimiter - 9317 1.87 -12.6 161 5.69e-14 0 1 9.13e+03 World StepLimiter - 9318 2.3 -11.9 160 5.68e-14 0 1 9.13e+03 World StepLimiter - 9319 2.74 -11.2 160 5.68e-14 0 1 9.13e+03 World StepLimiter - 9320 3.17 -10.5 159 5.67e-14 0 1 9.13e+03 World StepLimiter - 9321 3.61 -9.85 159 5.66e-14 0 1 9.13e+03 World StepLimiter - 9322 4.05 -9.17 158 5.65e-14 0 1 9.13e+03 World StepLimiter - 9323 4.48 -8.49 157 5.65e-14 0 1 9.13e+03 World StepLimiter - 9324 4.92 -7.81 157 5.64e-14 0 1 9.13e+03 World StepLimiter - 9325 5.35 -7.13 156 5.63e-14 0 1 9.14e+03 World StepLimiter - 9326 5.79 -6.46 156 5.63e-14 0 1 9.14e+03 World StepLimiter - 9327 6.23 -5.78 155 5.62e-14 0 1 9.14e+03 World StepLimiter - 9328 6.67 -5.1 155 5.61e-14 0 1 9.14e+03 World StepLimiter - 9329 7.1 -4.43 154 5.61e-14 0 1 9.14e+03 World StepLimiter - 9330 7.54 -3.75 153 5.6e-14 0 1 9.14e+03 World StepLimiter - 9331 7.98 -3.08 153 5.59e-14 0 1 9.14e+03 World StepLimiter - 9332 8.42 -2.41 152 5.59e-14 0 1 9.14e+03 World StepLimiter - 9333 8.86 -1.73 152 5.58e-14 0 1 9.14e+03 World StepLimiter - 9334 9.3 -1.06 151 5.57e-14 0 1 9.14e+03 World StepLimiter - 9335 9.74 -0.388 150 5.56e-14 0 1 9.15e+03 World StepLimiter - 9336 10.2 0.284 150 5.56e-14 0 1 9.15e+03 World StepLimiter - 9337 10.6 0.956 149 5.55e-14 0 1 9.15e+03 World StepLimiter - 9338 11.1 1.63 149 5.54e-14 0 1 9.15e+03 World StepLimiter - 9339 11.5 2.3 148 5.54e-14 0 1 9.15e+03 World StepLimiter - 9340 11.9 2.97 147 5.53e-14 0 1 9.15e+03 World StepLimiter - 9341 12.4 3.64 147 5.52e-14 0 1 9.15e+03 World StepLimiter - 9342 12.8 4.3 146 5.52e-14 0 1 9.15e+03 World StepLimiter - 9343 13.3 4.97 146 5.51e-14 0 1 9.15e+03 World StepLimiter - 9344 13.7 5.64 145 5.5e-14 0 1 9.15e+03 World StepLimiter - 9345 14.1 6.31 144 5.5e-14 0 1 9.16e+03 World StepLimiter - 9346 14.6 6.97 144 5.49e-14 0 1 9.16e+03 World StepLimiter - 9347 15 7.64 143 5.48e-14 0 1 9.16e+03 World StepLimiter - 9348 15.5 8.31 143 5.48e-14 0 1 9.16e+03 World StepLimiter - 9349 15.9 8.97 142 5.47e-14 0 1 9.16e+03 World StepLimiter - 9350 16.4 9.64 141 5.46e-14 0 1 9.16e+03 World StepLimiter - 9351 16.8 10.3 141 5.45e-14 0 1 9.16e+03 World StepLimiter - 9352 17.2 11 140 5.45e-14 0 1 9.16e+03 World StepLimiter - 9353 17.7 11.6 140 5.44e-14 0 1 9.16e+03 World StepLimiter - 9354 18.1 12.3 139 5.43e-14 0 1 9.16e+03 World StepLimiter - 9355 18.6 13 138 5.43e-14 0 1 9.17e+03 World StepLimiter - 9356 19 13.6 138 5.42e-14 0 1 9.17e+03 World StepLimiter - 9357 19.5 14.3 137 5.41e-14 0 1 9.17e+03 World StepLimiter - 9358 19.9 14.9 137 5.41e-14 0 1 9.17e+03 World StepLimiter - 9359 20.4 15.6 136 5.4e-14 0 1 9.17e+03 World StepLimiter - 9360 20.8 16.3 135 5.39e-14 0 1 9.17e+03 World StepLimiter - 9361 21.3 16.9 135 5.39e-14 0 1 9.17e+03 World StepLimiter - 9362 21.7 17.6 134 5.38e-14 0 1 9.17e+03 World StepLimiter - 9363 22.1 18.2 134 5.37e-14 0 1 9.17e+03 World StepLimiter - 9364 22.6 18.9 133 5.37e-14 0 1 9.17e+03 World StepLimiter - 9365 23 19.5 132 5.36e-14 0 1 9.18e+03 World StepLimiter - 9366 23.5 20.2 132 5.35e-14 0 1 9.18e+03 World StepLimiter - 9367 23.9 20.9 131 5.35e-14 0 1 9.18e+03 World StepLimiter - 9368 24.4 21.5 130 5.34e-14 0 1 9.18e+03 World StepLimiter - 9369 24.8 22.2 130 5.33e-14 0 1 9.18e+03 World StepLimiter - 9370 25.3 22.8 129 5.33e-14 0 1 9.18e+03 World StepLimiter - 9371 25.7 23.5 129 5.32e-14 0 1 9.18e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.183827137997neV MomDir: (0.44950838225025,0.65298235155904,-0.609554150867) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9372 25.8 23.6 129 5.32e-14 0 0.219 9.18e+03 Guide Transportation *** StepTooSmall *** - 9373 25.8 23.6 129 5.32e-14 0 0 9.18e+03 World Transportation - 9374 25.1 23.2 128 5.32e-14 0 1 9.18e+03 World StepLimiter - 9375 24.5 22.8 127 5.33e-14 0 1 9.18e+03 World StepLimiter - 9376 23.8 22.4 127 5.33e-14 0 1 9.19e+03 World StepLimiter - 9377 23.1 22.1 126 5.33e-14 0 1 9.19e+03 World StepLimiter - 9378 22.4 21.7 125 5.34e-14 0 1 9.19e+03 World StepLimiter - 9379 21.7 21.3 125 5.34e-14 0 1 9.19e+03 World StepLimiter - 9380 21 20.9 124 5.35e-14 0 1 9.19e+03 World StepLimiter - 9381 20.3 20.5 124 5.35e-14 0 1 9.19e+03 World StepLimiter - 9382 19.6 20.1 123 5.35e-14 0 1 9.19e+03 World StepLimiter - 9383 18.9 19.7 122 5.36e-14 0 1 9.19e+03 World StepLimiter - 9384 18.3 19.3 122 5.36e-14 0 1 9.19e+03 World StepLimiter - 9385 17.6 18.9 121 5.37e-14 0 1 9.19e+03 World StepLimiter - 9386 16.9 18.5 121 5.37e-14 0 1 9.2e+03 World StepLimiter - 9387 16.2 18.1 120 5.38e-14 0 1 9.2e+03 World StepLimiter - 9388 15.5 17.7 119 5.38e-14 0 1 9.2e+03 World StepLimiter - 9389 14.8 17.3 119 5.38e-14 0 1 9.2e+03 World StepLimiter - 9390 14.1 16.9 118 5.39e-14 0 1 9.2e+03 World StepLimiter - 9391 13.4 16.5 118 5.39e-14 0 1 9.2e+03 World StepLimiter - 9392 12.8 16.1 117 5.4e-14 0 1 9.2e+03 World StepLimiter - 9393 12.1 15.7 116 5.4e-14 0 1 9.2e+03 World StepLimiter - 9394 11.4 15.3 116 5.4e-14 0 1 9.2e+03 World StepLimiter - 9395 10.7 14.9 115 5.41e-14 0 1 9.2e+03 World StepLimiter - 9396 10 14.4 115 5.41e-14 0 1 9.21e+03 World StepLimiter - 9397 9.33 14 114 5.42e-14 0 1 9.21e+03 World StepLimiter - 9398 8.65 13.6 113 5.42e-14 0 1 9.21e+03 World StepLimiter - 9399 7.97 13.2 113 5.42e-14 0 1 9.21e+03 World StepLimiter - 9400 7.28 12.8 112 5.43e-14 0 1 9.21e+03 World StepLimiter - 9401 6.6 12.4 112 5.43e-14 0 1 9.21e+03 World StepLimiter - 9402 5.92 12 111 5.44e-14 0 1 9.21e+03 World StepLimiter - 9403 5.23 11.6 110 5.44e-14 0 1 9.21e+03 World StepLimiter - 9404 4.55 11.2 110 5.45e-14 0 1 9.21e+03 World StepLimiter - 9405 3.87 10.7 109 5.45e-14 0 1 9.21e+03 World StepLimiter - 9406 3.19 10.3 109 5.45e-14 0 1 9.22e+03 World StepLimiter - 9407 2.5 9.92 108 5.46e-14 0 1 9.22e+03 World StepLimiter - 9408 1.82 9.5 107 5.46e-14 0 1 9.22e+03 World StepLimiter - 9409 1.14 9.08 107 5.47e-14 0 1 9.22e+03 World StepLimiter - 9410 0.46 8.66 106 5.47e-14 0 1 9.22e+03 World StepLimiter - 9411 -0.221 8.24 106 5.48e-14 0 1 9.22e+03 World StepLimiter - 9412 -0.901 7.82 105 5.48e-14 0 1 9.22e+03 World StepLimiter - 9413 -1.58 7.4 104 5.48e-14 0 1 9.22e+03 World StepLimiter - 9414 -2.26 6.98 104 5.49e-14 0 1 9.22e+03 World StepLimiter - 9415 -2.94 6.56 103 5.49e-14 0 1 9.22e+03 World StepLimiter - 9416 -3.62 6.14 103 5.5e-14 0 1 9.23e+03 World StepLimiter - 9417 -4.3 5.71 102 5.5e-14 0 1 9.23e+03 World StepLimiter - 9418 -4.98 5.29 101 5.51e-14 0 1 9.23e+03 World StepLimiter - 9419 -5.66 4.86 101 5.51e-14 0 1 9.23e+03 World StepLimiter - 9420 -6.34 4.44 100 5.52e-14 0 1 9.23e+03 World StepLimiter - 9421 -7.01 4.01 99.5 5.52e-14 0 1 9.23e+03 World StepLimiter - 9422 -7.69 3.58 98.9 5.52e-14 0 1 9.23e+03 World StepLimiter - 9423 -8.37 3.16 98.3 5.53e-14 0 1 9.23e+03 World StepLimiter - 9424 -9.05 2.73 97.7 5.53e-14 0 1 9.23e+03 World StepLimiter - 9425 -9.72 2.3 97.1 5.54e-14 0 1 9.23e+03 World StepLimiter - 9426 -10.4 1.87 96.5 5.54e-14 0 1 9.24e+03 World StepLimiter - 9427 -11.1 1.44 95.9 5.55e-14 0 1 9.24e+03 World StepLimiter - 9428 -11.8 1 95.3 5.55e-14 0 1 9.24e+03 World StepLimiter - 9429 -12.4 0.571 94.8 5.55e-14 0 1 9.24e+03 World StepLimiter - 9430 -13.1 0.137 94.2 5.56e-14 0 1 9.24e+03 World StepLimiter - 9431 -13.8 -0.297 93.6 5.56e-14 0 1 9.24e+03 World StepLimiter - 9432 -14.5 -0.732 93 5.57e-14 0 1 9.24e+03 World StepLimiter - 9433 -15.1 -1.17 92.4 5.57e-14 0 1 9.24e+03 World StepLimiter - 9434 -15.8 -1.6 91.8 5.58e-14 0 1 9.24e+03 World StepLimiter - 9435 -16.5 -2.04 91.2 5.58e-14 0 1 9.24e+03 World StepLimiter - 9436 -17.2 -2.48 90.6 5.59e-14 0 1 9.25e+03 World StepLimiter - 9437 -17.8 -2.92 90 5.59e-14 0 1 9.25e+03 World StepLimiter - 9438 -18.5 -3.36 89.4 5.59e-14 0 1 9.25e+03 World StepLimiter - 9439 -19.2 -3.8 88.8 5.6e-14 0 1 9.25e+03 World StepLimiter - 9440 -19.8 -4.24 88.2 5.6e-14 0 1 9.25e+03 World StepLimiter - 9441 -20.5 -4.68 87.6 5.61e-14 0 1 9.25e+03 World StepLimiter - 9442 -21.2 -5.12 87 5.61e-14 0 1 9.25e+03 World StepLimiter - 9443 -21.9 -5.57 86.4 5.62e-14 0 1 9.25e+03 World StepLimiter - 9444 -22.5 -6.01 85.8 5.62e-14 0 1 9.25e+03 World StepLimiter - 9445 -23.2 -6.45 85.2 5.63e-14 0 1 9.25e+03 World StepLimiter - 9446 -23.9 -6.9 84.6 5.63e-14 0 1 9.26e+03 World StepLimiter - 9447 -24.5 -7.35 84.1 5.64e-14 0 1 9.26e+03 World StepLimiter - 9448 -25.2 -7.79 83.5 5.64e-14 0 1 9.26e+03 World StepLimiter - 9449 -25.9 -8.24 82.9 5.65e-14 0 1 9.26e+03 World StepLimiter - 9450 -26.6 -8.69 82.3 5.65e-14 0 1 9.26e+03 World StepLimiter - 9451 -27.2 -9.14 81.7 5.65e-14 0 1 9.26e+03 World StepLimiter - 9452 -27.9 -9.59 81.1 5.66e-14 0 1 9.26e+03 World StepLimiter - 9453 -28.6 -10 80.5 5.66e-14 0 1 9.26e+03 World StepLimiter - 9454 -29.2 -10.5 79.9 5.67e-14 0 1 9.26e+03 World StepLimiter - 9455 -29.9 -10.9 79.3 5.67e-14 0 1 9.26e+03 World StepLimiter - 9456 -30.6 -11.4 78.7 5.68e-14 0 1 9.27e+03 World StepLimiter - 9457 -31.2 -11.8 78.1 5.68e-14 0 1 9.27e+03 World StepLimiter - 9458 -31.9 -12.3 77.6 5.69e-14 0 1 9.27e+03 World StepLimiter - 9459 -32.6 -12.8 77 5.69e-14 0 1 9.27e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.914534933965neV MomDir: (-0.66759040396224,-0.45510662684404,-0.58923765217455) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9460 -32.6 -12.8 77 5.69e-14 0 0.0168 9.27e+03 Guide Transportation *** StepTooSmall *** - 9461 -32.6 -12.8 77 5.69e-14 0 0 9.27e+03 World Transportation - 9462 -31.8 -12.6 76.4 5.69e-14 0 1 9.27e+03 World StepLimiter - 9463 -31 -12.5 75.8 5.69e-14 0 1 9.27e+03 World StepLimiter - 9464 -30.2 -12.4 75.2 5.69e-14 0 1 9.27e+03 World StepLimiter - 9465 -29.4 -12.3 74.6 5.69e-14 0 1 9.27e+03 World StepLimiter - 9466 -28.6 -12.2 74 5.69e-14 0 1 9.27e+03 World StepLimiter - 9467 -27.8 -12.1 73.4 5.68e-14 0 1 9.27e+03 World StepLimiter - 9468 -27 -11.9 72.8 5.68e-14 0 1 9.28e+03 World StepLimiter - 9469 -26.2 -11.8 72.2 5.68e-14 0 1 9.28e+03 World StepLimiter - 9470 -25.4 -11.7 71.7 5.68e-14 0 1 9.28e+03 World StepLimiter - 9471 -24.6 -11.6 71.1 5.68e-14 0 1 9.28e+03 World StepLimiter - 9472 -23.8 -11.5 70.5 5.68e-14 0 1 9.28e+03 World StepLimiter - 9473 -23 -11.4 69.9 5.68e-14 0 1 9.28e+03 World StepLimiter - 9474 -22.2 -11.3 69.3 5.68e-14 0 1 9.28e+03 World StepLimiter - 9475 -21.4 -11.2 68.7 5.68e-14 0 1 9.28e+03 World StepLimiter - 9476 -20.6 -11.1 68.1 5.67e-14 0 1 9.28e+03 World StepLimiter - 9477 -19.8 -11 67.5 5.67e-14 0 1 9.28e+03 World StepLimiter - 9478 -19 -10.9 66.9 5.67e-14 0 1 9.29e+03 World StepLimiter - 9479 -18.2 -10.8 66.3 5.67e-14 0 1 9.29e+03 World StepLimiter - 9480 -17.4 -10.7 65.8 5.67e-14 0 1 9.29e+03 World StepLimiter - 9481 -16.6 -10.6 65.2 5.67e-14 0 1 9.29e+03 World StepLimiter - 9482 -15.8 -10.5 64.6 5.67e-14 0 1 9.29e+03 World StepLimiter - 9483 -15 -10.4 64 5.67e-14 0 1 9.29e+03 World StepLimiter - 9484 -14.2 -10.3 63.4 5.67e-14 0 1 9.29e+03 World StepLimiter - 9485 -13.4 -10.2 62.8 5.66e-14 0 1 9.29e+03 World StepLimiter - 9486 -12.6 -10.1 62.2 5.66e-14 0 1 9.29e+03 World StepLimiter - 9487 -11.8 -9.96 61.6 5.66e-14 0 1 9.29e+03 World StepLimiter - 9488 -11 -9.87 61 5.66e-14 0 1 9.3e+03 World StepLimiter - 9489 -10.2 -9.77 60.4 5.66e-14 0 1 9.3e+03 World StepLimiter - 9490 -9.38 -9.68 59.8 5.66e-14 0 1 9.3e+03 World StepLimiter - 9491 -8.58 -9.59 59.3 5.66e-14 0 1 9.3e+03 World StepLimiter - 9492 -7.78 -9.49 58.7 5.66e-14 0 1 9.3e+03 World StepLimiter - 9493 -6.98 -9.4 58.1 5.66e-14 0 1 9.3e+03 World StepLimiter - 9494 -6.18 -9.31 57.5 5.66e-14 0 1 9.3e+03 World StepLimiter - 9495 -5.37 -9.22 56.9 5.66e-14 0 1 9.3e+03 World StepLimiter - 9496 -4.57 -9.13 56.3 5.65e-14 0 1 9.3e+03 World StepLimiter - 9497 -3.77 -9.05 55.7 5.65e-14 0 1 9.3e+03 World StepLimiter - 9498 -2.97 -8.96 55.1 5.65e-14 0 1 9.31e+03 World StepLimiter - 9499 -2.17 -8.87 54.5 5.65e-14 0 1 9.31e+03 World StepLimiter - 9500 -1.37 -8.79 53.9 5.65e-14 0 1 9.31e+03 World StepLimiter - 9501 -0.564 -8.71 53.3 5.65e-14 0 1 9.31e+03 World StepLimiter - 9502 0.238 -8.62 52.7 5.65e-14 0 1 9.31e+03 World StepLimiter - 9503 1.04 -8.54 52.2 5.65e-14 0 1 9.31e+03 World StepLimiter - 9504 1.84 -8.46 51.6 5.65e-14 0 1 9.31e+03 World StepLimiter - 9505 2.65 -8.38 51 5.65e-14 0 1 9.31e+03 World StepLimiter - 9506 3.45 -8.3 50.4 5.65e-14 0 1 9.31e+03 World StepLimiter - 9507 4.25 -8.22 49.8 5.64e-14 0 1 9.31e+03 World StepLimiter - 9508 5.05 -8.14 49.2 5.64e-14 0 1 9.32e+03 World StepLimiter - 9509 5.85 -8.07 48.6 5.64e-14 0 1 9.32e+03 World StepLimiter - 9510 6.66 -7.99 48 5.64e-14 0 1 9.32e+03 World StepLimiter - 9511 7.46 -7.92 47.4 5.64e-14 0 1 9.32e+03 World StepLimiter - 9512 8.26 -7.84 46.8 5.64e-14 0 1 9.32e+03 World StepLimiter - 9513 9.07 -7.77 46.2 5.64e-14 0 1 9.32e+03 World StepLimiter - 9514 9.87 -7.7 45.6 5.64e-14 0 1 9.32e+03 World StepLimiter - 9515 10.7 -7.63 45.1 5.64e-14 0 1 9.32e+03 World StepLimiter - 9516 11.5 -7.56 44.5 5.64e-14 0 1 9.32e+03 World StepLimiter - 9517 12.3 -7.49 43.9 5.64e-14 0 1 9.32e+03 World StepLimiter - 9518 13.1 -7.42 43.3 5.64e-14 0 1 9.33e+03 World StepLimiter - 9519 13.9 -7.35 42.7 5.64e-14 0 1 9.33e+03 World StepLimiter - 9520 14.7 -7.28 42.1 5.64e-14 0 1 9.33e+03 World StepLimiter - 9521 15.5 -7.22 41.5 5.63e-14 0 1 9.33e+03 World StepLimiter - 9522 16.3 -7.15 40.9 5.63e-14 0 1 9.33e+03 World StepLimiter - 9523 17.1 -7.09 40.3 5.63e-14 0 1 9.33e+03 World StepLimiter - 9524 17.9 -7.02 39.7 5.63e-14 0 1 9.33e+03 World StepLimiter - 9525 18.7 -6.96 39.1 5.63e-14 0 1 9.33e+03 World StepLimiter - 9526 19.5 -6.9 38.5 5.63e-14 0 1 9.33e+03 World StepLimiter - 9527 20.3 -6.84 38 5.63e-14 0 1 9.33e+03 World StepLimiter - 9528 21.1 -6.78 37.4 5.63e-14 0 1 9.34e+03 World StepLimiter - 9529 21.9 -6.72 36.8 5.63e-14 0 1 9.34e+03 World StepLimiter - 9530 22.7 -6.66 36.2 5.63e-14 0 1 9.34e+03 World StepLimiter - 9531 23.5 -6.61 35.6 5.63e-14 0 1 9.34e+03 World StepLimiter - 9532 24.3 -6.55 35 5.63e-14 0 1 9.34e+03 World StepLimiter - 9533 25.1 -6.5 34.4 5.63e-14 0 1 9.34e+03 World StepLimiter - 9534 25.9 -6.44 33.8 5.63e-14 0 1 9.34e+03 World StepLimiter - 9535 26.7 -6.39 33.2 5.63e-14 0 1 9.34e+03 World StepLimiter - 9536 27.5 -6.34 32.6 5.63e-14 0 1 9.34e+03 World StepLimiter - 9537 28.3 -6.29 32 5.63e-14 0 1 9.34e+03 World StepLimiter - 9538 29.1 -6.24 31.4 5.62e-14 0 1 9.35e+03 World StepLimiter - 9539 30 -6.19 30.8 5.62e-14 0 1 9.35e+03 World StepLimiter - 9540 30.8 -6.14 30.2 5.62e-14 0 1 9.35e+03 World StepLimiter - 9541 31.6 -6.09 29.7 5.62e-14 0 1 9.35e+03 World StepLimiter - 9542 32.4 -6.04 29.1 5.62e-14 0 1 9.35e+03 World StepLimiter - 9543 33.2 -6 28.5 5.62e-14 0 1 9.35e+03 World StepLimiter - 9544 34 -5.95 27.9 5.62e-14 0 1 9.35e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.213105380855neV MomDir: (0.80407531766739,0.043925887503716,-0.59290252143594) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9545 34.5 -5.92 27.5 5.62e-14 0 0.651 9.35e+03 Guide Transportation *** StepTooSmall *** - 9546 34.5 -5.92 27.5 5.62e-14 0 0 9.35e+03 World Transportation - 9547 33.8 -5.61 26.9 5.62e-14 0 1 9.35e+03 World StepLimiter - 9548 33 -5.31 26.3 5.61e-14 0 1 9.35e+03 World StepLimiter - 9549 32.3 -5 25.7 5.61e-14 0 1 9.35e+03 World StepLimiter - 9550 31.5 -4.69 25.1 5.61e-14 0 1 9.36e+03 World StepLimiter - 9551 30.8 -4.39 24.5 5.61e-14 0 1 9.36e+03 World StepLimiter - 9552 30 -4.08 23.9 5.6e-14 0 1 9.36e+03 World StepLimiter - 9553 29.3 -3.78 23.3 5.6e-14 0 1 9.36e+03 World StepLimiter - 9554 28.5 -3.47 22.7 5.6e-14 0 1 9.36e+03 World StepLimiter - 9555 27.8 -3.17 22.1 5.59e-14 0 1 9.36e+03 World StepLimiter - 9556 27.1 -2.87 21.6 5.59e-14 0 1 9.36e+03 World StepLimiter - 9557 26.3 -2.57 21 5.59e-14 0 1 9.36e+03 World StepLimiter - 9558 25.6 -2.27 20.4 5.58e-14 0 1 9.36e+03 World StepLimiter - 9559 24.8 -1.97 19.8 5.58e-14 0 1 9.36e+03 World StepLimiter - 9560 24.1 -1.67 19.2 5.58e-14 0 1 9.37e+03 World StepLimiter - 9561 23.3 -1.37 18.6 5.57e-14 0 1 9.37e+03 World StepLimiter - 9562 22.6 -1.08 18 5.57e-14 0 1 9.37e+03 World StepLimiter - 9563 21.8 -0.779 17.4 5.57e-14 0 1 9.37e+03 World StepLimiter - 9564 21.1 -0.484 16.8 5.57e-14 0 1 9.37e+03 World StepLimiter - 9565 20.3 -0.19 16.2 5.56e-14 0 1 9.37e+03 World StepLimiter - 9566 19.6 0.103 15.6 5.56e-14 0 1 9.37e+03 World StepLimiter - 9567 18.8 0.396 15 5.56e-14 0 1 9.37e+03 World StepLimiter - 9568 18.1 0.688 14.4 5.55e-14 0 1 9.37e+03 World StepLimiter - 9569 17.3 0.978 13.8 5.55e-14 0 1 9.37e+03 World StepLimiter - 9570 16.6 1.27 13.2 5.55e-14 0 1 9.38e+03 World StepLimiter - 9571 15.8 1.56 12.6 5.54e-14 0 1 9.38e+03 World StepLimiter - 9572 15.1 1.85 12 5.54e-14 0 1 9.38e+03 World StepLimiter - 9573 14.3 2.13 11.4 5.54e-14 0 1 9.38e+03 World StepLimiter - 9574 13.6 2.42 10.8 5.54e-14 0 1 9.38e+03 World StepLimiter - 9575 12.9 2.71 10.2 5.53e-14 0 1 9.38e+03 World StepLimiter - 9576 12.1 2.99 9.63 5.53e-14 0 1 9.38e+03 World StepLimiter - 9577 11.4 3.27 9.03 5.53e-14 0 1 9.38e+03 World StepLimiter - 9578 10.6 3.56 8.43 5.52e-14 0 1 9.38e+03 World StepLimiter - 9579 9.85 3.84 7.83 5.52e-14 0 1 9.38e+03 World StepLimiter - 9580 9.1 4.12 7.24 5.52e-14 0 1 9.39e+03 World StepLimiter - 9581 8.35 4.4 6.64 5.52e-14 0 1 9.39e+03 World StepLimiter - 9582 7.6 4.68 6.04 5.51e-14 0 1 9.39e+03 World StepLimiter - 9583 6.85 4.96 5.44 5.51e-14 0 1 9.39e+03 World StepLimiter - 9584 6.1 5.24 4.84 5.51e-14 0 1 9.39e+03 World StepLimiter - 9585 5.35 5.52 4.24 5.5e-14 0 1 9.39e+03 World StepLimiter - 9586 4.6 5.79 3.64 5.5e-14 0 1 9.39e+03 World StepLimiter - 9587 3.85 6.07 3.04 5.5e-14 0 1 9.39e+03 World StepLimiter - 9588 3.09 6.34 2.44 5.5e-14 0 1 9.39e+03 World StepLimiter - 9589 2.34 6.62 1.84 5.49e-14 0 1 9.39e+03 World StepLimiter - 9590 1.59 6.89 1.24 5.49e-14 0 1 9.4e+03 World StepLimiter - 9591 0.838 7.16 0.645 5.49e-14 0 1 9.4e+03 World StepLimiter - 9592 0.085 7.43 0.0445 5.48e-14 0 1 9.4e+03 World StepLimiter - 9593 -0.668 7.7 -0.556 5.48e-14 0 1 9.4e+03 World StepLimiter - 9594 -1.42 7.97 -1.16 5.48e-14 0 1 9.4e+03 World StepLimiter - 9595 -2.17 8.24 -1.76 5.48e-14 0 1 9.4e+03 World StepLimiter - 9596 -2.93 8.51 -2.36 5.47e-14 0 1 9.4e+03 World StepLimiter - 9597 -3.68 8.78 -2.96 5.47e-14 0 1 9.4e+03 World StepLimiter - 9598 -4.43 9.04 -3.56 5.47e-14 0 1 9.4e+03 World StepLimiter - 9599 -5.19 9.31 -4.16 5.47e-14 0 1 9.4e+03 World StepLimiter - 9600 -5.94 9.57 -4.76 5.46e-14 0 1 9.41e+03 World StepLimiter - 9601 -6.7 9.83 -5.36 5.46e-14 0 1 9.41e+03 World StepLimiter - 9602 -7.45 10.1 -5.97 5.46e-14 0 1 9.41e+03 World StepLimiter - 9603 -8.2 10.4 -6.57 5.45e-14 0 1 9.41e+03 World StepLimiter - 9604 -8.96 10.6 -7.17 5.45e-14 0 1 9.41e+03 World StepLimiter - 9605 -9.71 10.9 -7.77 5.45e-14 0 1 9.41e+03 World StepLimiter - 9606 -10.5 11.1 -8.37 5.45e-14 0 1 9.41e+03 World StepLimiter - 9607 -11.2 11.4 -8.98 5.44e-14 0 1 9.41e+03 World StepLimiter - 9608 -12 11.7 -9.58 5.44e-14 0 1 9.41e+03 World StepLimiter - 9609 -12.7 11.9 -10.2 5.44e-14 0 1 9.41e+03 World StepLimiter - 9610 -13.5 12.2 -10.8 5.44e-14 0 1 9.42e+03 World StepLimiter - 9611 -14.2 12.4 -11.4 5.43e-14 0 1 9.42e+03 World StepLimiter - 9612 -15 12.7 -12 5.43e-14 0 1 9.42e+03 World StepLimiter - 9613 -15.8 12.9 -12.6 5.43e-14 0 1 9.42e+03 World StepLimiter - 9614 -16.5 13.2 -13.2 5.43e-14 0 1 9.42e+03 World StepLimiter - 9615 -17.3 13.4 -13.8 5.42e-14 0 1 9.42e+03 World StepLimiter - 9616 -18 13.7 -14.4 5.42e-14 0 1 9.42e+03 World StepLimiter - 9617 -18.8 13.9 -15 5.42e-14 0 1 9.42e+03 World StepLimiter - 9618 -19.5 14.2 -15.6 5.42e-14 0 1 9.42e+03 World StepLimiter - 9619 -20.3 14.4 -16.2 5.41e-14 0 1 9.42e+03 World StepLimiter - 9620 -21.1 14.7 -16.8 5.41e-14 0 1 9.43e+03 World StepLimiter - 9621 -21.8 14.9 -17.4 5.41e-14 0 1 9.43e+03 World StepLimiter - 9622 -22.6 15.2 -18 5.41e-14 0 1 9.43e+03 World StepLimiter - 9623 -23.3 15.4 -18.6 5.4e-14 0 1 9.43e+03 World StepLimiter - 9624 -24.1 15.6 -19.2 5.4e-14 0 1 9.43e+03 World StepLimiter - 9625 -24.9 15.9 -19.8 5.4e-14 0 1 9.43e+03 World StepLimiter - 9626 -25.6 16.1 -20.4 5.4e-14 0 1 9.43e+03 World StepLimiter - 9627 -26.4 16.4 -21.1 5.39e-14 0 1 9.43e+03 World StepLimiter - 9628 -27.1 16.6 -21.7 5.39e-14 0 1 9.43e+03 World StepLimiter - 9629 -27.9 16.9 -22.3 5.39e-14 0 1 9.43e+03 World StepLimiter - 9630 -28.6 17.1 -22.9 5.39e-14 0 1 9.44e+03 World StepLimiter - 9631 -29.4 17.3 -23.5 5.38e-14 0 1 9.44e+03 World StepLimiter - 9632 -30.2 17.6 -24.1 5.38e-14 0 1 9.44e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.801721681838neV MomDir: (-0.75983341100009,0.2352958190721,-0.60604378146727) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9633 -30.3 17.6 -24.2 5.38e-14 0 0.123 9.44e+03 Guide Transportation *** StepTooSmall *** - 9634 -30.3 17.6 -24.2 5.38e-14 0 0 9.44e+03 World Transportation - 9635 -29.7 17 -24.8 5.39e-14 0 1 9.44e+03 World StepLimiter - 9636 -29.1 16.5 -25.4 5.39e-14 0 1 9.44e+03 World StepLimiter - 9637 -28.5 16 -26 5.4e-14 0 1 9.44e+03 World StepLimiter - 9638 -27.9 15.4 -26.6 5.4e-14 0 1 9.44e+03 World StepLimiter - 9639 -27.4 14.9 -27.2 5.41e-14 0 1 9.44e+03 World StepLimiter - 9640 -26.8 14.3 -27.8 5.41e-14 0 1 9.44e+03 World StepLimiter - 9641 -26.2 13.8 -28.4 5.42e-14 0 1 9.44e+03 World StepLimiter - 9642 -25.6 13.2 -29 5.43e-14 0 1 9.45e+03 World StepLimiter - 9643 -25 12.7 -29.6 5.43e-14 0 1 9.45e+03 World StepLimiter - 9644 -24.5 12.1 -30.2 5.44e-14 0 1 9.45e+03 World StepLimiter - 9645 -23.9 11.6 -30.8 5.44e-14 0 1 9.45e+03 World StepLimiter - 9646 -23.3 11 -31.4 5.45e-14 0 1 9.45e+03 World StepLimiter - 9647 -22.7 10.5 -32 5.45e-14 0 1 9.45e+03 World StepLimiter - 9648 -22.2 9.91 -32.6 5.46e-14 0 1 9.45e+03 World StepLimiter - 9649 -21.6 9.36 -33.2 5.46e-14 0 1 9.45e+03 World StepLimiter - 9650 -21 8.8 -33.8 5.47e-14 0 1 9.45e+03 World StepLimiter - 9651 -20.4 8.25 -34.4 5.48e-14 0 1 9.45e+03 World StepLimiter - 9652 -19.9 7.69 -35 5.48e-14 0 1 9.46e+03 World StepLimiter - 9653 -19.3 7.14 -35.6 5.49e-14 0 1 9.46e+03 World StepLimiter - 9654 -18.7 6.58 -36.2 5.49e-14 0 1 9.46e+03 World StepLimiter - 9655 -18.1 6.02 -36.8 5.5e-14 0 1 9.46e+03 World StepLimiter - 9656 -17.6 5.47 -37.4 5.5e-14 0 1 9.46e+03 World StepLimiter - 9657 -17 4.91 -38 5.51e-14 0 1 9.46e+03 World StepLimiter - 9658 -16.4 4.35 -38.6 5.52e-14 0 1 9.46e+03 World StepLimiter - 9659 -15.8 3.79 -39.2 5.52e-14 0 1 9.46e+03 World StepLimiter - 9660 -15.3 3.23 -39.8 5.53e-14 0 1 9.46e+03 World StepLimiter - 9661 -14.7 2.67 -40.4 5.53e-14 0 1 9.46e+03 World StepLimiter - 9662 -14.1 2.1 -41 5.54e-14 0 1 9.47e+03 World StepLimiter - 9663 -13.6 1.54 -41.6 5.54e-14 0 1 9.47e+03 World StepLimiter - 9664 -13 0.979 -42.2 5.55e-14 0 1 9.47e+03 World StepLimiter - 9665 -12.4 0.415 -42.8 5.56e-14 0 1 9.47e+03 World StepLimiter - 9666 -11.8 -0.149 -43.4 5.56e-14 0 1 9.47e+03 World StepLimiter - 9667 -11.3 -0.714 -44 5.57e-14 0 1 9.47e+03 World StepLimiter - 9668 -10.7 -1.28 -44.6 5.57e-14 0 1 9.47e+03 World StepLimiter - 9669 -10.1 -1.85 -45.2 5.58e-14 0 1 9.47e+03 World StepLimiter - 9670 -9.56 -2.41 -45.8 5.59e-14 0 1 9.47e+03 World StepLimiter - 9671 -8.99 -2.98 -46.4 5.59e-14 0 1 9.47e+03 World StepLimiter - 9672 -8.42 -3.55 -47 5.6e-14 0 1 9.48e+03 World StepLimiter - 9673 -7.85 -4.12 -47.6 5.6e-14 0 1 9.48e+03 World StepLimiter - 9674 -7.28 -4.69 -48.1 5.61e-14 0 1 9.48e+03 World StepLimiter - 9675 -6.71 -5.26 -48.7 5.61e-14 0 1 9.48e+03 World StepLimiter - 9676 -6.14 -5.83 -49.3 5.62e-14 0 1 9.48e+03 World StepLimiter - 9677 -5.57 -6.4 -49.9 5.63e-14 0 1 9.48e+03 World StepLimiter - 9678 -5.01 -6.97 -50.5 5.63e-14 0 1 9.48e+03 World StepLimiter - 9679 -4.44 -7.54 -51.1 5.64e-14 0 1 9.48e+03 World StepLimiter - 9680 -3.87 -8.11 -51.7 5.64e-14 0 1 9.48e+03 World StepLimiter - 9681 -3.31 -8.69 -52.3 5.65e-14 0 1 9.48e+03 World StepLimiter - 9682 -2.74 -9.26 -52.9 5.66e-14 0 1 9.49e+03 World StepLimiter - 9683 -2.17 -9.84 -53.5 5.66e-14 0 1 9.49e+03 World StepLimiter - 9684 -1.61 -10.4 -54.1 5.67e-14 0 1 9.49e+03 World StepLimiter - 9685 -1.04 -11 -54.7 5.67e-14 0 1 9.49e+03 World StepLimiter - 9686 -0.478 -11.6 -55.3 5.68e-14 0 1 9.49e+03 World StepLimiter - 9687 0.0868 -12.1 -55.8 5.69e-14 0 1 9.49e+03 World StepLimiter - 9688 0.651 -12.7 -56.4 5.69e-14 0 1 9.49e+03 World StepLimiter - 9689 1.22 -13.3 -57 5.7e-14 0 1 9.49e+03 World StepLimiter - 9690 1.78 -13.9 -57.6 5.7e-14 0 1 9.49e+03 World StepLimiter - 9691 2.34 -14.5 -58.2 5.71e-14 0 1 9.49e+03 World StepLimiter - 9692 2.91 -15 -58.8 5.71e-14 0 1 9.5e+03 World StepLimiter - 9693 3.47 -15.6 -59.4 5.72e-14 0 1 9.5e+03 World StepLimiter - 9694 4.03 -16.2 -60 5.73e-14 0 1 9.5e+03 World StepLimiter - 9695 4.59 -16.8 -60.5 5.73e-14 0 1 9.5e+03 World StepLimiter - 9696 5.16 -17.4 -61.1 5.74e-14 0 1 9.5e+03 World StepLimiter - 9697 5.72 -17.9 -61.7 5.74e-14 0 1 9.5e+03 World StepLimiter - 9698 6.28 -18.5 -62.3 5.75e-14 0 1 9.5e+03 World StepLimiter - 9699 6.84 -19.1 -62.9 5.76e-14 0 1 9.5e+03 World StepLimiter - 9700 7.4 -19.7 -63.5 5.76e-14 0 1 9.5e+03 World StepLimiter - 9701 7.96 -20.3 -64.1 5.77e-14 0 1 9.5e+03 World StepLimiter - 9702 8.52 -20.9 -64.6 5.77e-14 0 1 9.51e+03 World StepLimiter - 9703 9.08 -21.5 -65.2 5.78e-14 0 1 9.51e+03 World StepLimiter - 9704 9.64 -22 -65.8 5.79e-14 0 1 9.51e+03 World StepLimiter - 9705 10.2 -22.6 -66.4 5.79e-14 0 1 9.51e+03 World StepLimiter - 9706 10.8 -23.2 -67 5.8e-14 0 1 9.51e+03 World StepLimiter - 9707 11.3 -23.8 -67.6 5.8e-14 0 1 9.51e+03 World StepLimiter - 9708 11.9 -24.4 -68.2 5.81e-14 0 1 9.51e+03 World StepLimiter - 9709 12.4 -25 -68.7 5.82e-14 0 1 9.51e+03 World StepLimiter - 9710 13 -25.6 -69.3 5.82e-14 0 1 9.51e+03 World StepLimiter - 9711 13.6 -26.2 -69.9 5.83e-14 0 1 9.51e+03 World StepLimiter - 9712 14.1 -26.8 -70.5 5.84e-14 0 1 9.52e+03 World StepLimiter - 9713 14.7 -27.4 -71.1 5.84e-14 0 1 9.52e+03 World StepLimiter - 9714 15.2 -28 -71.6 5.85e-14 0 1 9.52e+03 World StepLimiter - 9715 15.8 -28.5 -72.2 5.85e-14 0 1 9.52e+03 World StepLimiter - 9716 16.3 -29.1 -72.8 5.86e-14 0 1 9.52e+03 World StepLimiter - 9717 16.9 -29.7 -73.4 5.87e-14 0 1 9.52e+03 World StepLimiter - 9718 17.5 -30.3 -74 5.87e-14 0 1 9.52e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.71659168475neV MomDir: (0.55565701730796,-0.59556706661731,-0.58012511433075) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9719 17.5 -30.3 -74 5.87e-14 0 0.0114 9.52e+03 Guide Transportation *** StepTooSmall *** - 9720 17.5 -30.3 -74 5.87e-14 0 0 9.52e+03 World Transportation - 9721 17.2 -29.6 -74.6 5.86e-14 0 1 9.52e+03 World StepLimiter - 9722 17 -28.8 -75.1 5.86e-14 0 1 9.52e+03 World StepLimiter - 9723 16.8 -28 -75.7 5.85e-14 0 1 9.52e+03 World StepLimiter - 9724 16.5 -27.2 -76.3 5.84e-14 0 1 9.53e+03 World StepLimiter - 9725 16.3 -26.4 -76.9 5.83e-14 0 1 9.53e+03 World StepLimiter - 9726 16 -25.7 -77.5 5.82e-14 0 1 9.53e+03 World StepLimiter - 9727 15.8 -24.9 -78 5.82e-14 0 1 9.53e+03 World StepLimiter - 9728 15.6 -24.1 -78.6 5.81e-14 0 1 9.53e+03 World StepLimiter - 9729 15.3 -23.3 -79.2 5.8e-14 0 1 9.53e+03 World StepLimiter - 9730 15.1 -22.6 -79.8 5.79e-14 0 1 9.53e+03 World StepLimiter - 9731 14.9 -21.8 -80.4 5.78e-14 0 1 9.53e+03 World StepLimiter - 9732 14.6 -21 -81 5.78e-14 0 1 9.53e+03 World StepLimiter - 9733 14.4 -20.2 -81.6 5.77e-14 0 1 9.53e+03 World StepLimiter - 9734 14.1 -19.5 -82.1 5.76e-14 0 1 9.54e+03 World StepLimiter - 9735 13.9 -18.7 -82.7 5.75e-14 0 1 9.54e+03 World StepLimiter - 9736 13.7 -17.9 -83.3 5.74e-14 0 1 9.54e+03 World StepLimiter - 9737 13.4 -17.1 -83.9 5.74e-14 0 1 9.54e+03 World StepLimiter - 9738 13.2 -16.4 -84.5 5.73e-14 0 1 9.54e+03 World StepLimiter - 9739 12.9 -15.6 -85.1 5.72e-14 0 1 9.54e+03 World StepLimiter - 9740 12.7 -14.8 -85.7 5.71e-14 0 1 9.54e+03 World StepLimiter - 9741 12.5 -14 -86.2 5.7e-14 0 1 9.54e+03 World StepLimiter - 9742 12.2 -13.3 -86.8 5.7e-14 0 1 9.54e+03 World StepLimiter - 9743 12 -12.5 -87.4 5.69e-14 0 1 9.54e+03 World StepLimiter - 9744 11.8 -11.7 -88 5.68e-14 0 1 9.55e+03 World StepLimiter - 9745 11.5 -11 -88.6 5.67e-14 0 1 9.55e+03 World StepLimiter - 9746 11.3 -10.2 -89.2 5.66e-14 0 1 9.55e+03 World StepLimiter - 9747 11 -9.41 -89.8 5.66e-14 0 1 9.55e+03 World StepLimiter - 9748 10.8 -8.64 -90.4 5.65e-14 0 1 9.55e+03 World StepLimiter - 9749 10.6 -7.87 -91 5.64e-14 0 1 9.55e+03 World StepLimiter - 9750 10.3 -7.1 -91.6 5.63e-14 0 1 9.55e+03 World StepLimiter - 9751 10.1 -6.34 -92.2 5.63e-14 0 1 9.55e+03 World StepLimiter - 9752 9.83 -5.57 -92.7 5.62e-14 0 1 9.55e+03 World StepLimiter - 9753 9.59 -4.8 -93.3 5.61e-14 0 1 9.55e+03 World StepLimiter - 9754 9.35 -4.03 -93.9 5.6e-14 0 1 9.56e+03 World StepLimiter - 9755 9.1 -3.26 -94.5 5.59e-14 0 1 9.56e+03 World StepLimiter - 9756 8.86 -2.5 -95.1 5.59e-14 0 1 9.56e+03 World StepLimiter - 9757 8.62 -1.73 -95.7 5.58e-14 0 1 9.56e+03 World StepLimiter - 9758 8.38 -0.964 -96.3 5.57e-14 0 1 9.56e+03 World StepLimiter - 9759 8.14 -0.199 -96.9 5.56e-14 0 1 9.56e+03 World StepLimiter - 9760 7.89 0.567 -97.5 5.55e-14 0 1 9.56e+03 World StepLimiter - 9761 7.65 1.33 -98.1 5.55e-14 0 1 9.56e+03 World StepLimiter - 9762 7.41 2.1 -98.7 5.54e-14 0 1 9.56e+03 World StepLimiter - 9763 7.17 2.86 -99.3 5.53e-14 0 1 9.56e+03 World StepLimiter - 9764 6.92 3.62 -99.9 5.52e-14 0 1 9.57e+03 World StepLimiter - 9765 6.68 4.39 -100 5.52e-14 0 1 9.57e+03 World StepLimiter - 9766 6.44 5.15 -101 5.51e-14 0 1 9.57e+03 World StepLimiter - 9767 6.19 5.91 -102 5.5e-14 0 1 9.57e+03 World StepLimiter - 9768 5.95 6.68 -102 5.49e-14 0 1 9.57e+03 World StepLimiter - 9769 5.71 7.44 -103 5.48e-14 0 1 9.57e+03 World StepLimiter - 9770 5.46 8.2 -103 5.48e-14 0 1 9.57e+03 World StepLimiter - 9771 5.22 8.96 -104 5.47e-14 0 1 9.57e+03 World StepLimiter - 9772 4.97 9.72 -105 5.46e-14 0 1 9.57e+03 World StepLimiter - 9773 4.73 10.5 -105 5.45e-14 0 1 9.57e+03 World StepLimiter - 9774 4.48 11.2 -106 5.45e-14 0 1 9.58e+03 World StepLimiter - 9775 4.24 12 -106 5.44e-14 0 1 9.58e+03 World StepLimiter - 9776 3.99 12.8 -107 5.43e-14 0 1 9.58e+03 World StepLimiter - 9777 3.75 13.5 -108 5.42e-14 0 1 9.58e+03 World StepLimiter - 9778 3.5 14.3 -108 5.41e-14 0 1 9.58e+03 World StepLimiter - 9779 3.26 15 -109 5.41e-14 0 1 9.58e+03 World StepLimiter - 9780 3.01 15.8 -110 5.4e-14 0 1 9.58e+03 World StepLimiter - 9781 2.77 16.5 -110 5.39e-14 0 1 9.58e+03 World StepLimiter - 9782 2.52 17.3 -111 5.38e-14 0 1 9.58e+03 World StepLimiter - 9783 2.27 18.1 -111 5.38e-14 0 1 9.58e+03 World StepLimiter - 9784 2.03 18.8 -112 5.37e-14 0 1 9.59e+03 World StepLimiter - 9785 1.78 19.6 -113 5.36e-14 0 1 9.59e+03 World StepLimiter - 9786 1.53 20.3 -113 5.35e-14 0 1 9.59e+03 World StepLimiter - 9787 1.29 21.1 -114 5.34e-14 0 1 9.59e+03 World StepLimiter - 9788 1.04 21.8 -114 5.34e-14 0 1 9.59e+03 World StepLimiter - 9789 0.791 22.6 -115 5.33e-14 0 1 9.59e+03 World StepLimiter - 9790 0.543 23.3 -116 5.32e-14 0 1 9.59e+03 World StepLimiter - 9791 0.296 24.1 -116 5.31e-14 0 1 9.59e+03 World StepLimiter - 9792 0.0477 24.8 -117 5.31e-14 0 1 9.59e+03 World StepLimiter - 9793 -0.2 25.6 -117 5.3e-14 0 1 9.59e+03 World StepLimiter - 9794 -0.449 26.4 -118 5.29e-14 0 1 9.6e+03 World StepLimiter - 9795 -0.697 27.1 -119 5.28e-14 0 1 9.6e+03 World StepLimiter - 9796 -0.946 27.9 -119 5.27e-14 0 1 9.6e+03 World StepLimiter - 9797 -1.19 28.6 -120 5.27e-14 0 1 9.6e+03 World StepLimiter - 9798 -1.44 29.4 -120 5.26e-14 0 1 9.6e+03 World StepLimiter - 9799 -1.69 30.1 -121 5.25e-14 0 1 9.6e+03 World StepLimiter - 9800 -1.94 30.9 -122 5.24e-14 0 1 9.6e+03 World StepLimiter - 9801 -2.19 31.6 -122 5.24e-14 0 1 9.6e+03 World StepLimiter - 9802 -2.44 32.4 -123 5.23e-14 0 1 9.6e+03 World StepLimiter - 9803 -2.69 33.1 -124 5.22e-14 0 1 9.6e+03 World StepLimiter - 9804 -2.94 33.8 -124 5.21e-14 0 1 9.61e+03 World StepLimiter - 9805 -3.19 34.6 -125 5.21e-14 0 1 9.61e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 52.031965069857neV MomDir: (-0.25049393960282,0.74663991649169,-0.6162642463453) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9806 -3.28 34.8 -125 5.2e-14 0 0.337 9.61e+03 Guide Transportation *** StepTooSmall *** - 9807 -3.28 34.8 -125 5.2e-14 0 0 9.61e+03 World Transportation - 9808 -3.38 34.1 -126 5.21e-14 0 1 9.61e+03 World StepLimiter - 9809 -3.49 33.3 -126 5.22e-14 0 1 9.61e+03 World StepLimiter - 9810 -3.6 32.5 -127 5.23e-14 0 1 9.61e+03 World StepLimiter - 9811 -3.7 31.7 -127 5.24e-14 0 1 9.61e+03 World StepLimiter - 9812 -3.81 30.9 -128 5.24e-14 0 1 9.61e+03 World StepLimiter - 9813 -3.92 30.2 -129 5.25e-14 0 1 9.61e+03 World StepLimiter - 9814 -4.02 29.4 -129 5.26e-14 0 1 9.61e+03 World StepLimiter - 9815 -4.13 28.6 -130 5.27e-14 0 1 9.62e+03 World StepLimiter - 9816 -4.24 27.8 -131 5.28e-14 0 1 9.62e+03 World StepLimiter - 9817 -4.34 27 -131 5.28e-14 0 1 9.62e+03 World StepLimiter - 9818 -4.45 26.2 -132 5.29e-14 0 1 9.62e+03 World StepLimiter - 9819 -4.55 25.5 -132 5.3e-14 0 1 9.62e+03 World StepLimiter - 9820 -4.66 24.7 -133 5.31e-14 0 1 9.62e+03 World StepLimiter - 9821 -4.77 23.9 -134 5.32e-14 0 1 9.62e+03 World StepLimiter - 9822 -4.87 23.1 -134 5.32e-14 0 1 9.62e+03 World StepLimiter - 9823 -4.98 22.3 -135 5.33e-14 0 1 9.62e+03 World StepLimiter - 9824 -5.08 21.5 -135 5.34e-14 0 1 9.62e+03 World StepLimiter - 9825 -5.19 20.7 -136 5.35e-14 0 1 9.63e+03 World StepLimiter - 9826 -5.29 20 -137 5.36e-14 0 1 9.63e+03 World StepLimiter - 9827 -5.4 19.2 -137 5.36e-14 0 1 9.63e+03 World StepLimiter - 9828 -5.5 18.4 -138 5.37e-14 0 1 9.63e+03 World StepLimiter - 9829 -5.61 17.6 -138 5.38e-14 0 1 9.63e+03 World StepLimiter - 9830 -5.71 16.8 -139 5.39e-14 0 1 9.63e+03 World StepLimiter - 9831 -5.82 16 -140 5.4e-14 0 1 9.63e+03 World StepLimiter - 9832 -5.92 15.2 -140 5.4e-14 0 1 9.63e+03 World StepLimiter - 9833 -6.03 14.4 -141 5.41e-14 0 1 9.63e+03 World StepLimiter - 9834 -6.13 13.6 -141 5.42e-14 0 1 9.63e+03 World StepLimiter - 9835 -6.24 12.9 -142 5.43e-14 0 1 9.64e+03 World StepLimiter - 9836 -6.34 12.1 -143 5.44e-14 0 1 9.64e+03 World StepLimiter - 9837 -6.45 11.3 -143 5.44e-14 0 1 9.64e+03 World StepLimiter - 9838 -6.55 10.5 -144 5.45e-14 0 1 9.64e+03 World StepLimiter - 9839 -6.66 9.69 -144 5.46e-14 0 1 9.64e+03 World StepLimiter - 9840 -6.76 8.89 -145 5.47e-14 0 1 9.64e+03 World StepLimiter - 9841 -6.87 8.1 -146 5.48e-14 0 1 9.64e+03 World StepLimiter - 9842 -6.97 7.31 -146 5.49e-14 0 1 9.64e+03 World StepLimiter - 9843 -7.07 6.52 -147 5.49e-14 0 1 9.64e+03 World StepLimiter - 9844 -7.18 5.72 -147 5.5e-14 0 1 9.64e+03 World StepLimiter - 9845 -7.28 4.93 -148 5.51e-14 0 1 9.65e+03 World StepLimiter - 9846 -7.39 4.13 -149 5.52e-14 0 1 9.65e+03 World StepLimiter - 9847 -7.49 3.34 -149 5.53e-14 0 1 9.65e+03 World StepLimiter - 9848 -7.59 2.55 -150 5.53e-14 0 1 9.65e+03 World StepLimiter - 9849 -7.7 1.75 -150 5.54e-14 0 1 9.65e+03 World StepLimiter - 9850 -7.8 0.954 -151 5.55e-14 0 1 9.65e+03 World StepLimiter - 9851 -7.9 0.158 -152 5.56e-14 0 1 9.65e+03 World StepLimiter - 9852 -8.01 -0.638 -152 5.57e-14 0 1 9.65e+03 World StepLimiter - 9853 -8.11 -1.43 -153 5.58e-14 0 1 9.65e+03 World StepLimiter - 9854 -8.21 -2.23 -153 5.58e-14 0 1 9.65e+03 World StepLimiter - 9855 -8.32 -3.03 -154 5.59e-14 0 1 9.66e+03 World StepLimiter - 9856 -8.42 -3.83 -155 5.6e-14 0 1 9.66e+03 World StepLimiter - 9857 -8.52 -4.62 -155 5.61e-14 0 1 9.66e+03 World StepLimiter - 9858 -8.63 -5.42 -156 5.62e-14 0 1 9.66e+03 World StepLimiter - 9859 -8.73 -6.22 -156 5.62e-14 0 1 9.66e+03 World StepLimiter - 9860 -8.83 -7.02 -157 5.63e-14 0 1 9.66e+03 World StepLimiter - 9861 -8.93 -7.82 -158 5.64e-14 0 1 9.66e+03 World StepLimiter - 9862 -9.04 -8.62 -158 5.65e-14 0 1 9.66e+03 World StepLimiter - 9863 -9.14 -9.42 -159 5.66e-14 0 1 9.66e+03 World StepLimiter - 9864 -9.24 -10.2 -159 5.67e-14 0 1 9.66e+03 World StepLimiter - 9865 -9.34 -11 -160 5.67e-14 0 1 9.67e+03 World StepLimiter - 9866 -9.45 -11.8 -161 5.68e-14 0 1 9.67e+03 World StepLimiter - 9867 -9.55 -12.6 -161 5.69e-14 0 1 9.67e+03 World StepLimiter - 9868 -9.65 -13.4 -162 5.7e-14 0 1 9.67e+03 World StepLimiter - 9869 -9.75 -14.2 -162 5.71e-14 0 1 9.67e+03 World StepLimiter - 9870 -9.85 -15 -163 5.71e-14 0 1 9.67e+03 World StepLimiter - 9871 -9.96 -15.8 -163 5.72e-14 0 1 9.67e+03 World StepLimiter - 9872 -10.1 -16.6 -164 5.73e-14 0 1 9.67e+03 World StepLimiter - 9873 -10.2 -17.4 -165 5.74e-14 0 1 9.67e+03 World StepLimiter - 9874 -10.3 -18.2 -165 5.75e-14 0 1 9.67e+03 World StepLimiter - 9875 -10.4 -19 -166 5.76e-14 0 1 9.68e+03 World StepLimiter - 9876 -10.5 -19.8 -166 5.76e-14 0 1 9.68e+03 World StepLimiter - 9877 -10.6 -20.7 -167 5.77e-14 0 1 9.68e+03 World StepLimiter - 9878 -10.7 -21.5 -168 5.78e-14 0 1 9.68e+03 World StepLimiter - 9879 -10.8 -22.3 -168 5.79e-14 0 1 9.68e+03 World StepLimiter - 9880 -10.9 -23.1 -169 5.8e-14 0 1 9.68e+03 World StepLimiter - 9881 -11 -23.9 -169 5.81e-14 0 1 9.68e+03 World StepLimiter - 9882 -11.1 -24.7 -170 5.81e-14 0 1 9.68e+03 World StepLimiter - 9883 -11.2 -25.5 -171 5.82e-14 0 1 9.68e+03 World StepLimiter - 9884 -11.3 -26.3 -171 5.83e-14 0 1 9.68e+03 World StepLimiter - 9885 -11.4 -27.1 -172 5.84e-14 0 1 9.69e+03 World StepLimiter - 9886 -11.5 -27.9 -172 5.85e-14 0 1 9.69e+03 World StepLimiter - 9887 -11.6 -28.7 -173 5.86e-14 0 1 9.69e+03 World StepLimiter - 9888 -11.7 -29.5 -173 5.86e-14 0 1 9.69e+03 World StepLimiter - 9889 -11.8 -30.3 -174 5.87e-14 0 1 9.69e+03 World StepLimiter - 9890 -11.9 -31.1 -175 5.88e-14 0 1 9.69e+03 World StepLimiter - 9891 -12 -31.9 -175 5.89e-14 0 1 9.69e+03 World StepLimiter - 9892 -12.1 -32.8 -176 5.9e-14 0 1 9.69e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.9739707652neV MomDir: (-0.10041613297376,-0.80922199063683,-0.57885781510519) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9893 -12.1 -32.8 -176 5.9e-14 0 0.109 9.69e+03 Guide Transportation *** StepTooSmall *** - 9894 -12.1 -32.8 -176 5.9e-14 0 0 9.69e+03 World Transportation - 9895 -11.6 -32.2 -176 5.89e-14 0 1 9.69e+03 World StepLimiter - 9896 -11.2 -31.5 -177 5.88e-14 0 1 9.69e+03 World StepLimiter - 9897 -10.7 -30.8 -178 5.88e-14 0 1 9.7e+03 World StepLimiter - 9898 -10.3 -30.1 -178 5.87e-14 0 1 9.7e+03 World StepLimiter - 9899 -9.85 -29.4 -179 5.86e-14 0 1 9.7e+03 World StepLimiter - 9900 -9.4 -28.8 -179 5.86e-14 0 1 9.7e+03 World StepLimiter - 9901 -8.95 -28.1 -180 5.85e-14 0 1 9.7e+03 World StepLimiter - 9902 -8.5 -27.4 -180 5.84e-14 0 1 9.7e+03 World StepLimiter - 9903 -8.05 -26.7 -181 5.83e-14 0 1 9.7e+03 World StepLimiter - 9904 -7.6 -26.1 -182 5.83e-14 0 1 9.7e+03 World StepLimiter - 9905 -7.15 -25.4 -182 5.82e-14 0 1 9.7e+03 World StepLimiter - 9906 -6.69 -24.7 -183 5.81e-14 0 1 9.7e+03 World StepLimiter - 9907 -6.24 -24 -183 5.81e-14 0 1 9.71e+03 World StepLimiter - 9908 -5.79 -23.4 -184 5.8e-14 0 1 9.71e+03 World StepLimiter - 9909 -5.34 -22.7 -185 5.79e-14 0 1 9.71e+03 World StepLimiter - 9910 -4.89 -22 -185 5.79e-14 0 1 9.71e+03 World StepLimiter - 9911 -4.43 -21.3 -186 5.78e-14 0 1 9.71e+03 World StepLimiter - 9912 -3.98 -20.7 -186 5.77e-14 0 1 9.71e+03 World StepLimiter - 9913 -3.53 -20 -187 5.77e-14 0 1 9.71e+03 World StepLimiter - 9914 -3.07 -19.3 -187 5.76e-14 0 1 9.71e+03 World StepLimiter - 9915 -2.62 -18.6 -188 5.75e-14 0 1 9.71e+03 World StepLimiter - 9916 -2.17 -18 -189 5.74e-14 0 1 9.71e+03 World StepLimiter - 9917 -1.71 -17.3 -189 5.74e-14 0 1 9.72e+03 World StepLimiter - 9918 -1.26 -16.6 -190 5.73e-14 0 1 9.72e+03 World StepLimiter - 9919 -0.801 -16 -190 5.72e-14 0 1 9.72e+03 World StepLimiter - 9920 -0.346 -15.3 -191 5.72e-14 0 1 9.72e+03 World StepLimiter - 9921 0.109 -14.6 -192 5.71e-14 0 1 9.72e+03 World StepLimiter - 9922 0.565 -14 -192 5.7e-14 0 1 9.72e+03 World StepLimiter - 9923 1.02 -13.3 -193 5.7e-14 0 1 9.72e+03 World StepLimiter - 9924 1.48 -12.6 -193 5.69e-14 0 1 9.72e+03 World StepLimiter - 9925 1.93 -12 -194 5.68e-14 0 1 9.72e+03 World StepLimiter - 9926 2.39 -11.3 -195 5.68e-14 0 1 9.72e+03 World StepLimiter - 9927 2.85 -10.6 -195 5.67e-14 0 1 9.73e+03 World StepLimiter - 9928 3.3 -9.96 -196 5.66e-14 0 1 9.73e+03 World StepLimiter - 9929 3.76 -9.3 -196 5.66e-14 0 1 9.73e+03 World StepLimiter - 9930 4.22 -8.63 -197 5.65e-14 0 1 9.73e+03 World StepLimiter - 9931 4.68 -7.97 -197 5.64e-14 0 1 9.73e+03 World StepLimiter - 9932 5.14 -7.31 -198 5.64e-14 0 1 9.73e+03 World StepLimiter - 9933 5.6 -6.65 -199 5.63e-14 0 1 9.73e+03 World StepLimiter - 9934 6.05 -5.98 -199 5.62e-14 0 1 9.73e+03 World StepLimiter - 9935 6.51 -5.32 -200 5.62e-14 0 1 9.73e+03 World StepLimiter - 9936 6.97 -4.66 -200 5.61e-14 0 1 9.73e+03 World StepLimiter - 9937 7.43 -4 -201 5.6e-14 0 1 9.74e+03 World StepLimiter - 9938 7.89 -3.34 -202 5.59e-14 0 1 9.74e+03 World StepLimiter - 9939 8.35 -2.68 -202 5.59e-14 0 1 9.74e+03 World StepLimiter - 9940 8.81 -2.02 -203 5.58e-14 0 1 9.74e+03 World StepLimiter - 9941 9.28 -1.37 -203 5.57e-14 0 1 9.74e+03 World StepLimiter - 9942 9.74 -0.708 -204 5.57e-14 0 1 9.74e+03 World StepLimiter - 9943 10.2 -0.0506 -205 5.56e-14 0 1 9.74e+03 World StepLimiter - 9944 10.7 0.606 -205 5.55e-14 0 1 9.74e+03 World StepLimiter - 9945 11.1 1.26 -206 5.55e-14 0 1 9.74e+03 World StepLimiter - 9946 11.6 1.92 -206 5.54e-14 0 1 9.74e+03 World StepLimiter - 9947 12 2.57 -207 5.53e-14 0 1 9.75e+03 World StepLimiter - 9948 12.5 3.23 -208 5.53e-14 0 1 9.75e+03 World StepLimiter - 9949 13 3.88 -208 5.52e-14 0 1 9.75e+03 World StepLimiter - 9950 13.4 4.53 -209 5.51e-14 0 1 9.75e+03 World StepLimiter - 9951 13.9 5.19 -209 5.51e-14 0 1 9.75e+03 World StepLimiter - 9952 14.4 5.84 -210 5.5e-14 0 1 9.75e+03 World StepLimiter - 9953 14.8 6.49 -211 5.49e-14 0 1 9.75e+03 World StepLimiter - 9954 15.3 7.14 -211 5.49e-14 0 1 9.75e+03 World StepLimiter - 9955 15.8 7.79 -212 5.48e-14 0 1 9.75e+03 World StepLimiter - 9956 16.2 8.44 -212 5.47e-14 0 1 9.75e+03 World StepLimiter - 9957 16.7 9.09 -213 5.47e-14 0 1 9.76e+03 World StepLimiter - 9958 17.2 9.74 -214 5.46e-14 0 1 9.76e+03 World StepLimiter - 9959 17.6 10.4 -214 5.45e-14 0 1 9.76e+03 World StepLimiter - 9960 18.1 11 -215 5.45e-14 0 1 9.76e+03 World StepLimiter - 9961 18.6 11.7 -215 5.44e-14 0 1 9.76e+03 World StepLimiter - 9962 19 12.3 -216 5.43e-14 0 1 9.76e+03 World StepLimiter - 9963 19.5 13 -217 5.43e-14 0 1 9.76e+03 World StepLimiter - 9964 20 13.6 -217 5.42e-14 0 1 9.76e+03 World StepLimiter - 9965 20.4 14.3 -218 5.41e-14 0 1 9.76e+03 World StepLimiter - 9966 20.9 14.9 -218 5.41e-14 0 1 9.76e+03 World StepLimiter - 9967 21.4 15.6 -219 5.4e-14 0 1 9.77e+03 World StepLimiter - 9968 21.8 16.2 -220 5.39e-14 0 1 9.77e+03 World StepLimiter - 9969 22.3 16.8 -220 5.39e-14 0 1 9.77e+03 World StepLimiter - 9970 22.8 17.5 -221 5.38e-14 0 1 9.77e+03 World StepLimiter - 9971 23.2 18.1 -221 5.37e-14 0 1 9.77e+03 World StepLimiter - 9972 23.7 18.8 -222 5.37e-14 0 1 9.77e+03 World StepLimiter - 9973 24.2 19.4 -223 5.36e-14 0 1 9.77e+03 World StepLimiter - 9974 24.6 20.1 -223 5.35e-14 0 1 9.77e+03 World StepLimiter - 9975 25.1 20.7 -224 5.35e-14 0 1 9.77e+03 World StepLimiter - 9976 25.6 21.3 -224 5.34e-14 0 1 9.77e+03 World StepLimiter - 9977 26.1 22 -225 5.34e-14 0 1 9.78e+03 World StepLimiter - 9978 26.5 22.6 -226 5.33e-14 0 1 9.78e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.274702801819neV MomDir: (0.47166343144587,0.63766068015008,-0.60903404209227) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** - 9979 26.6 22.7 -226 5.33e-14 0 0.184 9.78e+03 Guide Transportation *** StepTooSmall *** - 9980 26.6 22.7 -226 5.33e-14 0 0 9.78e+03 World Transportation - 9981 25.9 22.4 -226 5.33e-14 0 1 9.78e+03 World StepLimiter - 9982 25.2 22 -227 5.33e-14 0 1 9.78e+03 World StepLimiter - 9983 24.5 21.6 -228 5.34e-14 0 1 9.78e+03 World StepLimiter - 9984 23.8 21.3 -228 5.34e-14 0 1 9.78e+03 World StepLimiter - 9985 23.1 20.9 -229 5.35e-14 0 1 9.78e+03 World StepLimiter - 9986 22.4 20.5 -229 5.35e-14 0 1 9.78e+03 World StepLimiter - 9987 21.7 20.1 -230 5.35e-14 0 1 9.78e+03 World StepLimiter - 9988 21 19.8 -231 5.36e-14 0 1 9.78e+03 World StepLimiter - 9989 20.3 19.4 -231 5.36e-14 0 1 9.79e+03 World StepLimiter - 9990 19.6 19 -232 5.37e-14 0 1 9.79e+03 World StepLimiter - 9991 18.9 18.7 -232 5.37e-14 0 1 9.79e+03 World StepLimiter - 9992 18.2 18.3 -233 5.37e-14 0 1 9.79e+03 World StepLimiter - 9993 17.5 17.9 -234 5.38e-14 0 1 9.79e+03 World StepLimiter - 9994 16.8 17.5 -234 5.38e-14 0 1 9.79e+03 World StepLimiter - 9995 16.1 17.1 -235 5.38e-14 0 1 9.79e+03 World StepLimiter - 9996 15.4 16.8 -236 5.39e-14 0 1 9.79e+03 World StepLimiter - 9997 14.7 16.4 -236 5.39e-14 0 1 9.79e+03 World StepLimiter - 9998 14 16 -237 5.4e-14 0 1 9.79e+03 World StepLimiter - 9999 13.3 15.6 -237 5.4e-14 0 1 9.8e+03 World StepLimiter -10000 12.6 15.2 -238 5.4e-14 0 1 9.8e+03 World StepLimiter -10001 11.9 14.9 -239 5.41e-14 0 1 9.8e+03 World StepLimiter -10002 11.2 14.5 -239 5.41e-14 0 1 9.8e+03 World StepLimiter -10003 10.5 14.1 -240 5.42e-14 0 1 9.8e+03 World StepLimiter -10004 9.8 13.7 -240 5.42e-14 0 1 9.8e+03 World StepLimiter -10005 9.1 13.3 -241 5.42e-14 0 1 9.8e+03 World StepLimiter -10006 8.41 12.9 -242 5.43e-14 0 1 9.8e+03 World StepLimiter -10007 7.71 12.5 -242 5.43e-14 0 1 9.8e+03 World StepLimiter -10008 7.01 12.2 -243 5.44e-14 0 1 9.8e+03 World StepLimiter -10009 6.32 11.8 -243 5.44e-14 0 1 9.81e+03 World StepLimiter -10010 5.62 11.4 -244 5.44e-14 0 1 9.81e+03 World StepLimiter -10011 4.92 11 -245 5.45e-14 0 1 9.81e+03 World StepLimiter -10012 4.23 10.6 -245 5.45e-14 0 1 9.81e+03 World StepLimiter -10013 3.53 10.2 -246 5.46e-14 0 1 9.81e+03 World StepLimiter -10014 2.84 9.81 -246 5.46e-14 0 1 9.81e+03 World StepLimiter -10015 2.14 9.42 -247 5.46e-14 0 1 9.81e+03 World StepLimiter -10016 1.45 9.02 -248 5.47e-14 0 1 9.81e+03 World StepLimiter -10017 0.753 8.63 -248 5.47e-14 0 1 9.81e+03 World StepLimiter -10018 0.0587 8.23 -249 5.48e-14 0 1 9.81e+03 World StepLimiter -10019 -0.635 7.83 -249 5.48e-14 0 1 9.82e+03 World StepLimiter -10020 -1.33 7.43 -250 5.48e-14 0 1 9.82e+03 World StepLimiter -10021 -2.02 7.04 -251 5.49e-14 0 1 9.82e+03 World StepLimiter -10022 -2.72 6.64 -251 5.49e-14 0 1 9.82e+03 World StepLimiter -10023 -3.41 6.24 -252 5.5e-14 0 1 9.82e+03 World StepLimiter -10024 -4.1 5.83 -252 5.5e-14 0 1 9.82e+03 World StepLimiter -10025 -4.79 5.43 -253 5.5e-14 0 1 9.82e+03 World StepLimiter -10026 -5.49 5.03 -254 5.51e-14 0 1 9.82e+03 World StepLimiter -10027 -6.18 4.63 -254 5.51e-14 0 1 9.82e+03 World StepLimiter -10028 -6.87 4.22 -255 5.52e-14 0 1 9.82e+03 World StepLimiter -10029 -7.56 3.82 -255 5.52e-14 0 1 9.83e+03 World StepLimiter -10030 -8.25 3.41 -256 5.53e-14 0 1 9.83e+03 World StepLimiter -10031 -8.94 3.01 -257 5.53e-14 0 1 9.83e+03 World StepLimiter -10032 -9.63 2.6 -257 5.53e-14 0 1 9.83e+03 World StepLimiter -10033 -10.3 2.19 -258 5.54e-14 0 1 9.83e+03 World StepLimiter -10034 -11 1.78 -258 5.54e-14 0 1 9.83e+03 World StepLimiter -10035 -11.7 1.37 -259 5.55e-14 0 1 9.83e+03 World StepLimiter -10036 -12.4 0.961 -260 5.55e-14 0 1 9.83e+03 World StepLimiter -10037 -13.1 0.55 -260 5.55e-14 0 1 9.83e+03 World StepLimiter -10038 -13.8 0.138 -261 5.56e-14 0 1 9.83e+03 World StepLimiter -10039 -14.5 -0.275 -261 5.56e-14 0 1 9.84e+03 World StepLimiter -10040 -15.1 -0.689 -262 5.57e-14 0 1 9.84e+03 World StepLimiter -10041 -15.8 -1.1 -263 5.57e-14 0 1 9.84e+03 World StepLimiter -10042 -16.5 -1.52 -263 5.58e-14 0 1 9.84e+03 World StepLimiter -10043 -17.2 -1.93 -264 5.58e-14 0 1 9.84e+03 World StepLimiter -10044 -17.9 -2.35 -264 5.58e-14 0 1 9.84e+03 World StepLimiter -10045 -18.6 -2.77 -265 5.59e-14 0 1 9.84e+03 World StepLimiter -10046 -19.3 -3.19 -266 5.59e-14 0 1 9.84e+03 World StepLimiter -10047 -20 -3.6 -266 5.6e-14 0 1 9.84e+03 World StepLimiter -10048 -20.6 -4.02 -267 5.6e-14 0 1 9.84e+03 World StepLimiter -10049 -21.3 -4.44 -267 5.61e-14 0 1 9.85e+03 World StepLimiter -10050 -22 -4.87 -268 5.61e-14 0 1 9.85e+03 World StepLimiter -10051 -22.7 -5.29 -268 5.61e-14 0 1 9.85e+03 World StepLimiter -10052 -23.4 -5.71 -269 5.62e-14 0 1 9.85e+03 World StepLimiter -10053 -24.1 -6.13 -270 5.62e-14 0 1 9.85e+03 World StepLimiter -10054 -24.8 -6.56 -270 5.63e-14 0 1 9.85e+03 World StepLimiter -10055 -25.4 -6.98 -271 5.63e-14 0 1 9.85e+03 World StepLimiter -10056 -26.1 -7.41 -271 5.64e-14 0 1 9.85e+03 World StepLimiter -10057 -26.8 -7.83 -272 5.64e-14 0 1 9.85e+03 World StepLimiter -10058 -27.5 -8.26 -273 5.65e-14 0 1 9.85e+03 World StepLimiter -10059 -28.2 -8.69 -273 5.65e-14 0 1 9.86e+03 World StepLimiter -10060 -28.9 -9.12 -274 5.65e-14 0 1 9.86e+03 World StepLimiter -10061 -29.5 -9.55 -274 5.66e-14 0 1 9.86e+03 World StepLimiter -10062 -30.2 -9.98 -275 5.66e-14 0 1 9.86e+03 World StepLimiter -10063 -30.9 -10.4 -276 5.67e-14 0 1 9.86e+03 World StepLimiter -10064 -31.6 -10.8 -276 5.67e-14 0 1 9.86e+03 World StepLimiter -10065 -32.3 -11.3 -277 5.68e-14 0 1 9.86e+03 World StepLimiter -10066 -33 -11.7 -277 5.68e-14 0 1 9.86e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.807551134646neV MomDir: (-0.68142670215336,-0.43336216559291,-0.58979223716917) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** -10067 -33 -11.7 -277 5.68e-14 0 0.0367 9.86e+03 Guide Transportation *** StepTooSmall *** -10068 -33 -11.7 -277 5.68e-14 0 0 9.86e+03 World Transportation -10069 -32.2 -11.6 -278 5.68e-14 0 1 9.86e+03 World StepLimiter -10070 -31.4 -11.5 -279 5.68e-14 0 1 9.86e+03 World StepLimiter -10071 -30.6 -11.4 -279 5.68e-14 0 1 9.87e+03 World StepLimiter -10072 -29.8 -11.4 -280 5.68e-14 0 1 9.87e+03 World StepLimiter -10073 -29 -11.3 -280 5.68e-14 0 1 9.87e+03 World StepLimiter -10074 -28.2 -11.2 -281 5.68e-14 0 1 9.87e+03 World StepLimiter -10075 -27.4 -11.1 -282 5.67e-14 0 1 9.87e+03 World StepLimiter -10076 -26.6 -11 -282 5.67e-14 0 1 9.87e+03 World StepLimiter -10077 -25.8 -10.9 -283 5.67e-14 0 1 9.87e+03 World StepLimiter -10078 -25 -10.8 -283 5.67e-14 0 1 9.87e+03 World StepLimiter -10079 -24.2 -10.7 -284 5.67e-14 0 1 9.87e+03 World StepLimiter -10080 -23.3 -10.7 -284 5.67e-14 0 1 9.87e+03 World StepLimiter -10081 -22.5 -10.6 -285 5.67e-14 0 1 9.88e+03 World StepLimiter -10082 -21.7 -10.5 -286 5.67e-14 0 1 9.88e+03 World StepLimiter -10083 -20.9 -10.4 -286 5.67e-14 0 1 9.88e+03 World StepLimiter -10084 -20.1 -10.3 -287 5.67e-14 0 1 9.88e+03 World StepLimiter -10085 -19.3 -10.3 -287 5.67e-14 0 1 9.88e+03 World StepLimiter -10086 -18.5 -10.2 -288 5.66e-14 0 1 9.88e+03 World StepLimiter -10087 -17.7 -10.1 -289 5.66e-14 0 1 9.88e+03 World StepLimiter -10088 -16.9 -10 -289 5.66e-14 0 1 9.88e+03 World StepLimiter -10089 -16.1 -9.95 -290 5.66e-14 0 1 9.88e+03 World StepLimiter -10090 -15.3 -9.87 -290 5.66e-14 0 1 9.88e+03 World StepLimiter -10091 -14.5 -9.8 -291 5.66e-14 0 1 9.89e+03 World StepLimiter -10092 -13.7 -9.73 -292 5.66e-14 0 1 9.89e+03 World StepLimiter -10093 -12.9 -9.65 -292 5.66e-14 0 1 9.89e+03 World StepLimiter -10094 -12.1 -9.58 -293 5.66e-14 0 1 9.89e+03 World StepLimiter -10095 -11.3 -9.51 -293 5.66e-14 0 1 9.89e+03 World StepLimiter -10096 -10.5 -9.44 -294 5.66e-14 0 1 9.89e+03 World StepLimiter -10097 -9.69 -9.38 -294 5.66e-14 0 1 9.89e+03 World StepLimiter -10098 -8.89 -9.31 -295 5.66e-14 0 1 9.89e+03 World StepLimiter -10099 -8.09 -9.24 -296 5.66e-14 0 1 9.89e+03 World StepLimiter -10100 -7.28 -9.18 -296 5.65e-14 0 1 9.89e+03 World StepLimiter -10101 -6.48 -9.11 -297 5.65e-14 0 1 9.9e+03 World StepLimiter -10102 -5.67 -9.05 -297 5.65e-14 0 1 9.9e+03 World StepLimiter -10103 -4.87 -8.99 -298 5.65e-14 0 1 9.9e+03 World StepLimiter -10104 -4.07 -8.92 -299 5.65e-14 0 1 9.9e+03 World StepLimiter -10105 -3.26 -8.86 -299 5.65e-14 0 1 9.9e+03 World StepLimiter -10106 -2.46 -8.8 -300 5.65e-14 0 1 9.9e+03 World StepLimiter -10107 -1.65 -8.74 -300 5.65e-14 0 1 9.9e+03 World StepLimiter -10108 -0.848 -8.69 -301 5.65e-14 0 1 9.9e+03 World StepLimiter -10109 -0.0441 -8.63 -302 5.65e-14 0 1 9.9e+03 World StepLimiter -10110 0.76 -8.57 -302 5.65e-14 0 1 9.9e+03 World StepLimiter -10111 1.56 -8.52 -303 5.65e-14 0 1 9.91e+03 World StepLimiter -10112 2.37 -8.46 -303 5.65e-14 0 1 9.91e+03 World StepLimiter -10113 3.17 -8.41 -304 5.65e-14 0 1 9.91e+03 World StepLimiter -10114 3.98 -8.35 -305 5.65e-14 0 1 9.91e+03 World StepLimiter -10115 4.78 -8.3 -305 5.65e-14 0 1 9.91e+03 World StepLimiter -10116 5.59 -8.25 -306 5.65e-14 0 1 9.91e+03 World StepLimiter -10117 6.39 -8.2 -306 5.64e-14 0 1 9.91e+03 World StepLimiter -10118 7.2 -8.15 -307 5.64e-14 0 1 9.91e+03 World StepLimiter -10119 8 -8.1 -308 5.64e-14 0 1 9.91e+03 World StepLimiter -10120 8.81 -8.06 -308 5.64e-14 0 1 9.91e+03 World StepLimiter -10121 9.61 -8.01 -309 5.64e-14 0 1 9.92e+03 World StepLimiter -10122 10.4 -7.96 -309 5.64e-14 0 1 9.92e+03 World StepLimiter -10123 11.2 -7.92 -310 5.64e-14 0 1 9.92e+03 World StepLimiter -10124 12 -7.88 -310 5.64e-14 0 1 9.92e+03 World StepLimiter -10125 12.8 -7.83 -311 5.64e-14 0 1 9.92e+03 World StepLimiter -10126 13.6 -7.79 -312 5.64e-14 0 1 9.92e+03 World StepLimiter -10127 14.4 -7.75 -312 5.64e-14 0 1 9.92e+03 World StepLimiter -10128 15.2 -7.71 -313 5.64e-14 0 1 9.92e+03 World StepLimiter -10129 16 -7.67 -313 5.64e-14 0 1 9.92e+03 World StepLimiter -10130 16.9 -7.63 -314 5.64e-14 0 1 9.92e+03 World StepLimiter -10131 17.7 -7.59 -315 5.64e-14 0 1 9.93e+03 World StepLimiter -10132 18.5 -7.56 -315 5.64e-14 0 1 9.93e+03 World StepLimiter -10133 19.3 -7.52 -316 5.64e-14 0 1 9.93e+03 World StepLimiter -10134 20.1 -7.49 -316 5.64e-14 0 1 9.93e+03 World StepLimiter -10135 20.9 -7.45 -317 5.64e-14 0 1 9.93e+03 World StepLimiter -10136 21.7 -7.42 -318 5.64e-14 0 1 9.93e+03 World StepLimiter -10137 22.5 -7.39 -318 5.64e-14 0 1 9.93e+03 World StepLimiter -10138 23.3 -7.36 -319 5.64e-14 0 1 9.93e+03 World StepLimiter -10139 24.1 -7.33 -319 5.64e-14 0 1 9.93e+03 World StepLimiter -10140 24.9 -7.3 -320 5.64e-14 0 1 9.93e+03 World StepLimiter -10141 25.7 -7.27 -321 5.64e-14 0 1 9.94e+03 World StepLimiter -10142 26.5 -7.24 -321 5.63e-14 0 1 9.94e+03 World StepLimiter -10143 27.3 -7.22 -322 5.63e-14 0 1 9.94e+03 World StepLimiter -10144 28.1 -7.19 -322 5.63e-14 0 1 9.94e+03 World StepLimiter -10145 28.9 -7.17 -323 5.63e-14 0 1 9.94e+03 World StepLimiter -10146 29.7 -7.14 -323 5.63e-14 0 1 9.94e+03 World StepLimiter -10147 30.5 -7.12 -324 5.63e-14 0 1 9.94e+03 World StepLimiter -10148 31.3 -7.1 -325 5.63e-14 0 1 9.94e+03 World StepLimiter -10149 32.2 -7.08 -325 5.63e-14 0 1 9.94e+03 World StepLimiter -10150 33 -7.06 -326 5.63e-14 0 1 9.94e+03 World StepLimiter -10151 33.8 -7.04 -326 5.63e-14 0 1 9.95e+03 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 56.325951853812neV MomDir: (0.80550534228983,0.018221545895131,-0.59230829709513) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** -10152 34.3 -7.02 -327 5.63e-14 0 0.647 9.95e+03 Guide Transportation *** StepTooSmall *** -10153 34.3 -7.02 -327 5.63e-14 0 0 9.95e+03 World Transportation -10154 33.6 -6.69 -327 5.63e-14 0 1 9.95e+03 World StepLimiter -10155 32.8 -6.36 -328 5.63e-14 0 1 9.95e+03 World StepLimiter -10156 32.1 -6.03 -329 5.62e-14 0 1 9.95e+03 World StepLimiter -10157 31.4 -5.7 -329 5.62e-14 0 1 9.95e+03 World StepLimiter -10158 30.6 -5.37 -330 5.62e-14 0 1 9.95e+03 World StepLimiter -10159 29.9 -5.04 -330 5.61e-14 0 1 9.95e+03 World StepLimiter -10160 29.1 -4.71 -331 5.61e-14 0 1 9.95e+03 World StepLimiter -10161 28.4 -4.38 -332 5.61e-14 0 1 9.95e+03 World StepLimiter -10162 27.7 -4.06 -332 5.6e-14 0 1 9.96e+03 World StepLimiter -10163 26.9 -3.73 -333 5.6e-14 0 1 9.96e+03 World StepLimiter -10164 26.2 -3.4 -333 5.6e-14 0 1 9.96e+03 World StepLimiter -10165 25.5 -3.08 -334 5.59e-14 0 1 9.96e+03 World StepLimiter -10166 24.7 -2.76 -335 5.59e-14 0 1 9.96e+03 World StepLimiter -10167 24 -2.44 -335 5.59e-14 0 1 9.96e+03 World StepLimiter -10168 23.3 -2.11 -336 5.58e-14 0 1 9.96e+03 World StepLimiter -10169 22.5 -1.79 -336 5.58e-14 0 1 9.96e+03 World StepLimiter -10170 21.8 -1.47 -337 5.58e-14 0 1 9.96e+03 World StepLimiter -10171 21.1 -1.15 -338 5.57e-14 0 1 9.96e+03 World StepLimiter -10172 20.3 -0.835 -338 5.57e-14 0 1 9.97e+03 World StepLimiter -10173 19.6 -0.517 -339 5.57e-14 0 1 9.97e+03 World StepLimiter -10174 18.8 -0.201 -339 5.56e-14 0 1 9.97e+03 World StepLimiter -10175 18.1 0.115 -340 5.56e-14 0 1 9.97e+03 World StepLimiter -10176 17.4 0.43 -341 5.56e-14 0 1 9.97e+03 World StepLimiter -10177 16.6 0.744 -341 5.55e-14 0 1 9.97e+03 World StepLimiter -10178 15.9 1.06 -342 5.55e-14 0 1 9.97e+03 World StepLimiter -10179 15.1 1.37 -342 5.55e-14 0 1 9.97e+03 World StepLimiter -10180 14.4 1.68 -343 5.54e-14 0 1 9.97e+03 World StepLimiter -10181 13.7 1.99 -343 5.54e-14 0 1 9.97e+03 World StepLimiter -10182 12.9 2.3 -344 5.54e-14 0 1 9.98e+03 World StepLimiter -10183 12.2 2.61 -345 5.53e-14 0 1 9.98e+03 World StepLimiter -10184 11.4 2.92 -345 5.53e-14 0 1 9.98e+03 World StepLimiter -10185 10.7 3.23 -346 5.53e-14 0 1 9.98e+03 World StepLimiter -10186 9.96 3.53 -346 5.52e-14 0 1 9.98e+03 World StepLimiter -10187 9.22 3.84 -347 5.52e-14 0 1 9.98e+03 World StepLimiter -10188 8.48 4.15 -348 5.52e-14 0 1 9.98e+03 World StepLimiter -10189 7.74 4.45 -348 5.51e-14 0 1 9.98e+03 World StepLimiter -10190 7 4.75 -349 5.51e-14 0 1 9.98e+03 World StepLimiter -10191 6.26 5.06 -349 5.51e-14 0 1 9.98e+03 World StepLimiter -10192 5.52 5.36 -350 5.51e-14 0 1 9.99e+03 World StepLimiter -10193 4.78 5.66 -351 5.5e-14 0 1 9.99e+03 World StepLimiter -10194 4.03 5.96 -351 5.5e-14 0 1 9.99e+03 World StepLimiter -10195 3.29 6.26 -352 5.5e-14 0 1 9.99e+03 World StepLimiter -10196 2.55 6.56 -352 5.49e-14 0 1 9.99e+03 World StepLimiter -10197 1.81 6.85 -353 5.49e-14 0 1 9.99e+03 World StepLimiter -10198 1.06 7.15 -354 5.49e-14 0 1 9.99e+03 World StepLimiter -10199 0.319 7.44 -354 5.48e-14 0 1 9.99e+03 World StepLimiter -10200 -0.424 7.74 -355 5.48e-14 0 1 9.99e+03 World StepLimiter -10201 -1.17 8.03 -355 5.48e-14 0 1 9.99e+03 World StepLimiter -10202 -1.91 8.33 -356 5.48e-14 0 1 1e+04 World StepLimiter -10203 -2.66 8.62 -357 5.47e-14 0 1 1e+04 World StepLimiter -10204 -3.4 8.91 -357 5.47e-14 0 1 1e+04 World StepLimiter -10205 -4.14 9.2 -358 5.47e-14 0 1 1e+04 World StepLimiter -10206 -4.89 9.49 -358 5.46e-14 0 1 1e+04 World StepLimiter -10207 -5.63 9.78 -359 5.46e-14 0 1 1e+04 World StepLimiter -10208 -6.38 10.1 -360 5.46e-14 0 1 1e+04 World StepLimiter -10209 -7.12 10.4 -360 5.45e-14 0 1 1e+04 World StepLimiter -10210 -7.87 10.6 -361 5.45e-14 0 1 1e+04 World StepLimiter -10211 -8.62 10.9 -361 5.45e-14 0 1 1e+04 World StepLimiter -10212 -9.36 11.2 -362 5.45e-14 0 1 1e+04 World StepLimiter -10213 -10.1 11.5 -363 5.44e-14 0 1 1e+04 World StepLimiter -10214 -10.9 11.8 -363 5.44e-14 0 1 1e+04 World StepLimiter -10215 -11.6 12.1 -364 5.44e-14 0 1 1e+04 World StepLimiter -10216 -12.3 12.3 -364 5.43e-14 0 1 1e+04 World StepLimiter -10217 -13.1 12.6 -365 5.43e-14 0 1 1e+04 World StepLimiter -10218 -13.8 12.9 -366 5.43e-14 0 1 1e+04 World StepLimiter -10219 -14.6 13.2 -366 5.43e-14 0 1 1e+04 World StepLimiter -10220 -15.3 13.5 -367 5.42e-14 0 1 1e+04 World StepLimiter -10221 -16.1 13.7 -368 5.42e-14 0 1 1e+04 World StepLimiter -10222 -16.8 14 -368 5.42e-14 0 1 1e+04 World StepLimiter -10223 -17.6 14.3 -369 5.41e-14 0 1 1e+04 World StepLimiter -10224 -18.3 14.6 -369 5.41e-14 0 1 1e+04 World StepLimiter -10225 -19.1 14.8 -370 5.41e-14 0 1 1e+04 World StepLimiter -10226 -19.8 15.1 -371 5.41e-14 0 1 1e+04 World StepLimiter -10227 -20.6 15.4 -371 5.4e-14 0 1 1e+04 World StepLimiter -10228 -21.3 15.6 -372 5.4e-14 0 1 1e+04 World StepLimiter -10229 -22.1 15.9 -372 5.4e-14 0 1 1e+04 World StepLimiter -10230 -22.8 16.2 -373 5.39e-14 0 1 1e+04 World StepLimiter -10231 -23.6 16.5 -374 5.39e-14 0 1 1e+04 World StepLimiter -10232 -24.3 16.7 -374 5.39e-14 0 1 1e+04 World StepLimiter -10233 -25.1 17 -375 5.39e-14 0 1 1e+04 World StepLimiter -10234 -25.8 17.2 -375 5.38e-14 0 1 1e+04 World StepLimiter -10235 -26.6 17.5 -376 5.38e-14 0 1 1e+04 World StepLimiter -10236 -27.3 17.8 -377 5.38e-14 0 1 1e+04 World StepLimiter -10237 -28.1 18 -377 5.38e-14 0 1 1e+04 World StepLimiter -10238 -28.8 18.3 -378 5.37e-14 0 1 1e+04 World StepLimiter -10239 -29.6 18.6 -378 5.37e-14 0 1 1e+04 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 53.699079150679neV MomDir: (-0.75117866535004,0.2602681250331,-0.60662271290703) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** -10240 -29.7 18.6 -378 5.37e-14 0 0.109 1e+04 Guide Transportation *** StepTooSmall *** -10241 -29.7 18.6 -378 5.37e-14 0 0 1e+04 World Transportation -10242 -29.1 18 -379 5.38e-14 0 1 1e+04 World StepLimiter -10243 -28.5 17.5 -380 5.38e-14 0 1 1e+04 World StepLimiter -10244 -28 16.9 -380 5.39e-14 0 1 1e+04 World StepLimiter -10245 -27.4 16.3 -381 5.39e-14 0 1 1e+04 World StepLimiter -10246 -26.9 15.8 -382 5.4e-14 0 1 1e+04 World StepLimiter -10247 -26.3 15.2 -382 5.4e-14 0 1 1e+04 World StepLimiter -10248 -25.7 14.6 -383 5.41e-14 0 1 1e+04 World StepLimiter -10249 -25.2 14.1 -383 5.42e-14 0 1 1e+04 World StepLimiter -10250 -24.6 13.5 -384 5.42e-14 0 1 1e+04 World StepLimiter -10251 -24.1 12.9 -385 5.43e-14 0 1 1e+04 World StepLimiter -10252 -23.5 12.4 -385 5.43e-14 0 1 1e+04 World StepLimiter -10253 -22.9 11.8 -386 5.44e-14 0 1 1e+04 World StepLimiter -10254 -22.4 11.2 -386 5.45e-14 0 1 1e+04 World StepLimiter -10255 -21.8 10.6 -387 5.45e-14 0 1 1e+04 World StepLimiter -10256 -21.3 10.1 -388 5.46e-14 0 1 1e+04 World StepLimiter -10257 -20.7 9.5 -388 5.46e-14 0 1 1e+04 World StepLimiter -10258 -20.2 8.93 -389 5.47e-14 0 1 1e+04 World StepLimiter -10259 -19.6 8.36 -389 5.47e-14 0 1 1.01e+04 World StepLimiter -10260 -19 7.78 -390 5.48e-14 0 1 1.01e+04 World StepLimiter -10261 -18.5 7.21 -391 5.49e-14 0 1 1.01e+04 World StepLimiter -10262 -17.9 6.63 -391 5.49e-14 0 1 1.01e+04 World StepLimiter -10263 -17.4 6.06 -392 5.5e-14 0 1 1.01e+04 World StepLimiter -10264 -16.8 5.48 -392 5.5e-14 0 1 1.01e+04 World StepLimiter -10265 -16.3 4.9 -393 5.51e-14 0 1 1.01e+04 World StepLimiter -10266 -15.7 4.32 -394 5.52e-14 0 1 1.01e+04 World StepLimiter -10267 -15.2 3.74 -394 5.52e-14 0 1 1.01e+04 World StepLimiter -10268 -14.6 3.16 -395 5.53e-14 0 1 1.01e+04 World StepLimiter -10269 -14 2.58 -395 5.53e-14 0 1 1.01e+04 World StepLimiter -10270 -13.5 2 -396 5.54e-14 0 1 1.01e+04 World StepLimiter -10271 -12.9 1.42 -397 5.55e-14 0 1 1.01e+04 World StepLimiter -10272 -12.4 0.84 -397 5.55e-14 0 1 1.01e+04 World StepLimiter -10273 -11.8 0.257 -398 5.56e-14 0 1 1.01e+04 World StepLimiter -10274 -11.3 -0.326 -398 5.56e-14 0 1 1.01e+04 World StepLimiter -10275 -10.7 -0.909 -399 5.57e-14 0 1 1.01e+04 World StepLimiter -10276 -10.2 -1.49 -400 5.58e-14 0 1 1.01e+04 World StepLimiter -10277 -9.63 -2.08 -400 5.58e-14 0 1 1.01e+04 World StepLimiter -10278 -9.08 -2.66 -401 5.59e-14 0 1 1.01e+04 World StepLimiter -10279 -8.53 -3.25 -401 5.59e-14 0 1 1.01e+04 World StepLimiter -10280 -7.98 -3.84 -402 5.6e-14 0 1 1.01e+04 World StepLimiter -10281 -7.43 -4.42 -402 5.61e-14 0 1 1.01e+04 World StepLimiter -10282 -6.88 -5.01 -403 5.61e-14 0 1 1.01e+04 World StepLimiter -10283 -6.33 -5.6 -404 5.62e-14 0 1 1.01e+04 World StepLimiter -10284 -5.78 -6.19 -404 5.62e-14 0 1 1.01e+04 World StepLimiter -10285 -5.23 -6.78 -405 5.63e-14 0 1 1.01e+04 World StepLimiter -10286 -4.69 -7.37 -405 5.64e-14 0 1 1.01e+04 World StepLimiter -10287 -4.14 -7.96 -406 5.64e-14 0 1 1.01e+04 World StepLimiter -10288 -3.59 -8.55 -407 5.65e-14 0 1 1.01e+04 World StepLimiter -10289 -3.04 -9.15 -407 5.65e-14 0 1 1.01e+04 World StepLimiter -10290 -2.5 -9.74 -408 5.66e-14 0 1 1.01e+04 World StepLimiter -10291 -1.95 -10.3 -408 5.67e-14 0 1 1.01e+04 World StepLimiter -10292 -1.4 -10.9 -409 5.67e-14 0 1 1.01e+04 World StepLimiter -10293 -0.856 -11.5 -410 5.68e-14 0 1 1.01e+04 World StepLimiter -10294 -0.31 -12.1 -410 5.68e-14 0 1 1.01e+04 World StepLimiter -10295 0.235 -12.7 -411 5.69e-14 0 1 1.01e+04 World StepLimiter -10296 0.781 -13.3 -411 5.7e-14 0 1 1.01e+04 World StepLimiter -10297 1.33 -13.9 -412 5.7e-14 0 1 1.01e+04 World StepLimiter -10298 1.87 -14.5 -413 5.71e-14 0 1 1.01e+04 World StepLimiter -10299 2.42 -15.1 -413 5.72e-14 0 1 1.01e+04 World StepLimiter -10300 2.96 -15.7 -414 5.72e-14 0 1 1.01e+04 World StepLimiter -10301 3.5 -16.3 -414 5.73e-14 0 1 1.01e+04 World StepLimiter -10302 4.05 -16.9 -415 5.73e-14 0 1 1.01e+04 World StepLimiter -10303 4.59 -17.5 -415 5.74e-14 0 1 1.01e+04 World StepLimiter -10304 5.13 -18.1 -416 5.75e-14 0 1 1.01e+04 World StepLimiter -10305 5.68 -18.7 -417 5.75e-14 0 1 1.01e+04 World StepLimiter -10306 6.22 -19.3 -417 5.76e-14 0 1 1.01e+04 World StepLimiter -10307 6.76 -19.9 -418 5.76e-14 0 1 1.01e+04 World StepLimiter -10308 7.3 -20.5 -418 5.77e-14 0 1 1.01e+04 World StepLimiter -10309 7.84 -21.1 -419 5.78e-14 0 1 1.01e+04 World StepLimiter -10310 8.39 -21.7 -420 5.78e-14 0 1 1.01e+04 World StepLimiter -10311 8.93 -22.3 -420 5.79e-14 0 1 1.01e+04 World StepLimiter -10312 9.47 -22.9 -421 5.8e-14 0 1 1.01e+04 World StepLimiter -10313 10 -23.5 -421 5.8e-14 0 1 1.01e+04 World StepLimiter -10314 10.5 -24.1 -422 5.81e-14 0 1 1.01e+04 World StepLimiter -10315 11.1 -24.7 -422 5.81e-14 0 1 1.01e+04 World StepLimiter -10316 11.6 -25.4 -423 5.82e-14 0 1 1.01e+04 World StepLimiter -10317 12.2 -26 -424 5.83e-14 0 1 1.01e+04 World StepLimiter -10318 12.7 -26.6 -424 5.83e-14 0 1 1.01e+04 World StepLimiter -10319 13.2 -27.2 -425 5.84e-14 0 1 1.01e+04 World StepLimiter -10320 13.8 -27.8 -425 5.85e-14 0 1 1.01e+04 World StepLimiter -10321 14.3 -28.4 -426 5.85e-14 0 1 1.01e+04 World StepLimiter -10322 14.9 -29 -427 5.86e-14 0 1 1.01e+04 World StepLimiter -10323 15.4 -29.6 -427 5.86e-14 0 1 1.01e+04 World StepLimiter -10324 15.9 -30.2 -428 5.87e-14 0 1 1.01e+04 World StepLimiter -10325 16.5 -30.8 -428 5.88e-14 0 1 1.01e+04 World StepLimiter UCN at Boundary! vol1: World, vol2: Guide Ekin: 58.77151692277neV MomDir: (0.53681290260033,-0.61286318163798,-0.57985397143969) G4UCNBoundaryProcess -> BELOW critical velocity *** Specular Reflection *** -10326 16.5 -30.9 -428 5.88e-14 0 0.0412 1.01e+04 Guide Transportation *** StepTooSmall *** -10327 16.5 -30.9 -428 5.88e-14 0 0 1.01e+04 World Transportation -10328 16.3 -30.1 -429 5.87e-14 0 1 1.01e+04 World StepLimiter -10329 16.1 -29.3 -429 5.86e-14 0 1 1.01e+04 World StepLimiter -10330 15.9 -28.5 -430 5.85e-14 0 1 1.01e+04 World StepLimiter -10331 15.6 -27.7 -431 5.84e-14 0 1 1.01e+04 World StepLimiter -10332 15.4 -26.9 -431 5.84e-14 0 1 1.01e+04 World StepLimiter -10333 15.2 -26.2 -432 5.83e-14 0 1 1.01e+04 World StepLimiter -10334 15 -25.4 -432 5.82e-14 0 1 1.01e+04 World StepLimiter -10335 14.8 -24.6 -433 5.81e-14 0 1 1.01e+04 World StepLimiter -10336 14.6 -23.8 -434 5.8e-14 0 1 1.01e+04 World StepLimiter -10337 14.4 -23 -434 5.8e-14 0 1 1.01e+04 World StepLimiter -10338 14.2 -22.2 -435 5.79e-14 0 1 1.01e+04 World StepLimiter -10339 13.9 -21.5 -435 5.78e-14 0 1 1.01e+04 World StepLimiter -10340 13.7 -20.7 -436 5.77e-14 0 1 1.01e+04 World StepLimiter -10341 13.5 -19.9 -436 5.76e-14 0 1 1.01e+04 World StepLimiter -10342 13.3 -19.1 -437 5.76e-14 0 1 1.01e+04 World StepLimiter -10343 13.1 -18.3 -438 5.75e-14 0 1 1.01e+04 World StepLimiter -10344 12.9 -17.5 -438 5.74e-14 0 1 1.01e+04 World StepLimiter -10345 12.7 -16.8 -439 5.73e-14 0 1 1.01e+04 World StepLimiter -10346 12.5 -16 -439 5.72e-14 0 1 1.01e+04 World StepLimiter -10347 12.2 -15.2 -440 5.72e-14 0 1 1.01e+04 World StepLimiter -10348 12 -14.4 -441 5.71e-14 0 1 1.01e+04 World StepLimiter -10349 11.8 -13.6 -441 5.7e-14 0 1 1.01e+04 World StepLimiter -10350 11.6 -12.9 -442 5.69e-14 0 1 1.01e+04 World StepLimiter -10351 11.4 -12.1 -442 5.68e-14 0 1 1.01e+04 World StepLimiter -10352 11.2 -11.3 -443 5.68e-14 0 1 1.01e+04 World StepLimiter -10353 11 -10.5 -444 -============================================================================================ -================= lines above cut to keep file within limits =============================== -============================================================================================ - + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.022380481869neV + MomDir: (-0.22427315225699,0.75488407123189,-0.61632101390191) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.933113755089neV + MomDir: (-0.12599423050126,-0.80549164043859,-0.57905843493032) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.368105763219neV + MomDir: (0.49327207680952,0.62161834683609,-0.60850085383406) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.699157426581neV + MomDir: (-0.69456864984997,-0.41116237863798,-0.59035573092699) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.438012938538neV + MomDir: (0.80610860505657,-0.0075093580831249,-0.59171997295589) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.598252411986neV + MomDir: (-0.74168087192281,0.28500196362533,-0.60719302116669) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.823329458813neV + MomDir: (0.51740319288343,-0.62957085792829,-0.57959854282207) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.017164090947neV + MomDir: (-0.1977510010712,0.76223674608317,-0.61635191611276) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.888903082549neV + MomDir: (-0.15146142253109,-0.80093634853984,-0.5792757573665) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.463916867025neV + MomDir: (0.51431071811674,0.6048758152887,-0.60795537114913) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.589450702507neV + MomDir: (-0.70700104459362,-0.38852796344059,-0.59092769825779) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.549181911615neV + MomDir: (0.80588508957129,-0.033241765291323,-0.59113806124034) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.499375703819neV + MomDir: (-0.73134424492677,0.30946863433775,-0.60775386446622) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.871969870353neV + MomDir: (0.49744551057156,-0.64567100326416,-0.57935905926813) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.016336108182neV + MomDir: (-0.17096067646976,0.76868505619536,-0.6163568215595) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.841376171549neV + MomDir: (-0.17678967047644,-0.79555890607253,-0.57950965426083) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.562012743857neV + MomDir: (0.534756130643,0.58745473638727,-0.60739839762374) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.47853267532neV + MomDir: (-0.71870895066309,-0.36548066371172,-0.59150767424405) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.659350119859neV + MomDir: (0.80483547851426,-0.058950003927447,-0.59056307839355) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.402585832584neV + MomDir: (-0.72017430629705,0.33363865358326,-0.60830437889654) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.917380545977neV + MomDir: (0.47695872151447,-0.66114458825714,-0.57913574521832) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.019908667796neV + MomDir: (-0.1439367117614,0.77421739940306,-0.61633565649643) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.790575329124neV + MomDir: (-0.20195039783332,-0.78936329153441,-0.57975997688089) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.662266006238neV + MomDir: (0.55458560776869,0.56937794148018,-0.60683075351504) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.3665097567neV + MomDir: (-0.72967782523941,-0.34204325425975,-0.59209516428467) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.76840740553neV + MomDir: (0.80296124983629,-0.084607863566003,-0.58999554293583) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.308021414617neV + MomDir: (-0.70817799371647,0.35748188622442,-0.60884368292456) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.959506312436neV + MomDir: (0.45596294372901,-0.67597279532758,-0.57892881593767) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.02788523571neV + MomDir: (-0.1167148630626,0.77882362467249,-0.61628840845199) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.736547938959neV + MomDir: (-0.22691462166163,-0.78235474712365,-0.58002655467594) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.764545515728neV + MomDir: (0.57377710074218,0.55066941716428,-0.60625327352836) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.253492879222neV + MomDir: (-0.7398936399151,-0.31823951198272,-0.5926896444398) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.876242558706neV + MomDir: (0.80026476160869,-0.11018867814116,-0.5894359732294) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.215822082603neV + MomDir: (-0.69536375341332,0.38096768674391,-0.60937088221865) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.998295028559neV + MomDir: (0.43447953996646,-0.69013716539735,-0.57873847486395) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.040260121042neV + MomDir: (-0.089331971411992,0.78249518435393,-0.61621512911204) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.679346589357neV + MomDir: (-0.25165308909341,-0.7745398386978,-0.58030919432638) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.868716666965neV + MomDir: (0.59230935148441,0.53135426413473,-0.60566680454682) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.139595134914neV + MomDir: (-0.74934307562703,-0.29409394861667,-0.59329057332548) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.982745774146neV + MomDir: (0.79674925115292,-0.13566589420335,-0.58888487494353) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.126124211953neV + MomDir: (-0.68174121264226,0.40406570060733,-0.60988509456928) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 59.033699047957neV + MomDir: (0.41253025991092,-0.70362023378353,-0.57856490670299) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.057018551261neV + MomDir: (-0.061824506112232,0.78522537313944,-0.61611593375111) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 58.619024850448neV + MomDir: (-0.27613777996999,-0.76592599173755,-0.58060770030555) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.974648782862neV + MomDir: (0.61016316565071,0.51145731803761,-0.60507216355479) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 56.02492196455neV + MomDir: (-0.7580142029965,-0.26962992118714,-0.5938974437192) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 57.087817567332neV + MomDir: (0.79241842785692,-0.161015241175,-0.58834269546084) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 53.03905148113neV + MomDir: (-0.66731977180714,0.42674800234569,-0.61038550494686) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 59.065674971092neV + MomDir: (0.39013544396177,-0.71640644765521,-0.57840827891966) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** + UCN at Boundary! + vol1: World, vol2: Guide + Ekin: 52.078136374571neV + MomDir: (-0.034226845711855,0.78700928047579,-0.61599100275701) +G4UCNBoundaryProcess -> BELOW critical velocity + *** Specular Reflection *** + *** StepTooSmall *** +Track (trackID 1, parentID 0) is processed with stopping code 2 +NULL returned from G4StackManager. +Terminate current event processing. + Run terminated. +Run Summary + Number of events processed : 1 + User=0.06s Real=0.06s Sys=0s +Sum NoMT: 0 +Sum NoMRT: 0 Sum NoMRCondition: 0 Sum No. E < V Loss: 0 Sum No. E > V Ezero: 0 diff --git a/examples/extended/exoticphysics/ucn/History b/examples/extended/exoticphysics/ucn/History index b588a5c989..d8179bf35e 100644 --- a/examples/extended/exoticphysics/ucn/History +++ b/examples/extended/exoticphysics/ucn/History @@ -15,6 +15,9 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 14th, 2016 Gunter Folger (ExUCN-V10-02-03) +- ExUCN.in: reduce verbosity. + November 2, 2016 L.Garnier (ExUCN-V10-02-02) - remove icons.mac. Automatically include since interfaces-V10-02-07 diff --git a/examples/extended/field/field01/field01.out b/examples/extended/field/field01/field01.out index 36035f9876..9849bf8e77 100644 --- a/examples/extended/field/field01/field01.out +++ b/examples/extended/field/field01/field01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -204,16 +204,6 @@ F01FieldSetup::CreateStepperAndChordFinder() called to reset Stepper. G4ClassicalRK4 (default) is chosen The minimal step is equal to 1 mm -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -949,6 +939,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -1037,7 +1040,7 @@ Step# X Y Z Direction x dir y dir Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. ========= Table of registered couples ============================== diff --git a/examples/extended/field/field02/field02.out b/examples/extended/field/field02/field02.out index c16ea1788b..504e11e6ba 100644 --- a/examples/extended/field/field02/field02.out +++ b/examples/extended/field/field02/field02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -202,16 +202,6 @@ G4ClassicalRK4 (default) is called The minimal step is equal to 0.01 mm -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -946,6 +936,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -5088,7 +5091,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne Run terminated. Run Summary Number of events processed : 100 - User=0.09s Real=0.12s Sys=0.02s + User=0.03s Real=0.03s Sys=0.01s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/field/field03/field03.out b/examples/extended/field/field03/field03.out index 45dd24266e..5284b98b6b 100644 --- a/examples/extended/field/field03/field03.out +++ b/examples/extended/field/field03/field03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -209,16 +209,6 @@ zModule = 21790 mm 21790 mm G4ClassicalRK4 (default) is called The minimal step is equal to 0.25 mm -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -953,6 +943,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -987,7 +990,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0s Sys=0s + User=0.01s Real=0.01s Sys=0s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. ========= Table of registered couples ============================== @@ -1009,7 +1012,7 @@ WARNING: Scene "none" not found. Run terminated. Run Summary Number of events processed : 100 - User=0.03s Real=0.03s Sys=0s + User=0.01s Real=0.01s Sys=0s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. Set field value to (0,0,1000) Gauss @@ -1031,7 +1034,7 @@ WARNING: Scene "none" not found. Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0s Sys=0s + User=0.01s Real=0.01s Sys=0s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/field/field04/field04.out b/examples/extended/field/field04/field04.out index b5812b3fab..95d3d393ec 100644 --- a/examples/extended/field/field04/field04.out +++ b/examples/extended/field/field04/field04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -231,16 +231,6 @@ G4NistMaterialBuilder::FindOrBuildMaterial G4_W G4ClassicalRK4 (default) is called Accuracy Parameters: MinStep=0.01 DeltaChord=3 DeltaOneStep=0.01 DeltaIntersection=0.1 EpsMin=2.5e-07 EpsMax=0.05 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 ### Birks coeffitients used in run time F04PhysicsList::SetCuts:CutLength : 1 mm @@ -969,6 +959,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== diff --git a/examples/extended/field/field05/field05.out b/examples/extended/field/field05/field05.out index 78285320e4..f25e5ea49c 100644 --- a/examples/extended/field/field05/field05.out +++ b/examples/extended/field/field05/field05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/field/field06/field06.out b/examples/extended/field/field06/field06.out index 4680d3a608..cea0755f30 100644 --- a/examples/extended/field/field06/field06.out +++ b/examples/extended/field/field06/field06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -2301,7 +2301,7 @@ Terminate current event processing. Run terminated. Run Summary Number of events processed : 1 - User=0.05s Real=0.06s Sys=0s + User=0.02s Real=0.02s Sys=0s # Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/g3tog4/clGeometry/clGeometry.out b/examples/extended/g3tog4/clGeometry/clGeometry.out index 55a9c3517a..8232d9a7b8 100644 --- a/examples/extended/g3tog4/clGeometry/clGeometry.out +++ b/examples/extended/g3tog4/clGeometry/clGeometry.out @@ -1,5 +1,5 @@ argc 4 -Geometry data file: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat +Geometry data file: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat evaluating -m ############################################ @@ -7,17 +7,17 @@ evaluating -m ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 ************************************************************* -Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat" +Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat" <<< Geant4 Physics List simulation engine: FTFP_BERT 2.0 Instantiated unit rotation matrix irot=0 -Reading the call List file /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat... +Reading the call List file /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/g3tog4/clGeometry/data/testmodel.dat... G4ggclos: setting top-level VolTableEntry Dump of VTD - 26 entries: Instantiated 26 volume table entries @@ -62,16 +62,6 @@ Top-level G3toG4 logical volume HALL G4VisAttributes: invisible, daughters visib line segments per circle: not forced. time range: (-1.79769e+308,1.79769e+308) G4AttValue pointer is zero, G4AttDef pointer is zero -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -804,6 +794,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -863,7 +866,7 @@ WARNING: Scene "none" not found. Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s WARNING: command "/vis/viewer/update" could not be applied: no current viewer. Region -- -- appears in world volume diff --git a/examples/extended/geometry/transforms/batch.out b/examples/extended/geometry/transforms/batch.out index 21b0e0c4f2..544488beef 100644 --- a/examples/extended/geometry/transforms/batch.out +++ b/examples/extended/geometry/transforms/batch.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -91,7 +91,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0.01s Real=0s Sys=0s + User=0s Real=0s Sys=0s G4 kernel has come to Quit state. UserDetectorConstruction deleted. UserPhysicsList deleted. diff --git a/examples/extended/hadronic/FissionFragment/FissionFragment.out b/examples/extended/hadronic/FissionFragment/FissionFragment.out index 3ce42ab572..c067e000e0 100644 --- a/examples/extended/hadronic/FissionFragment/FissionFragment.out +++ b/examples/extended/hadronic/FissionFragment/FissionFragment.out @@ -1,4 +1,4 @@ -#### Starting: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment #### +#### Starting: /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment #### MT RNG Seed: 62737819 ############################################ @@ -6,7 +6,7 @@ MT RNG Seed: 62737819 ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -336,28 +336,18 @@ Checking overlaps for volume NeutronSource ... OK! Checking overlaps for volume Poly ... OK! Checking overlaps for volume Detector_Shell ... OK! Checking overlaps for volume Detector_BF3_Core ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... Registering graphics systems... @@ -703,22 +693,22 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 100 TeV -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen Fission fragment production is now activated in HP package for Z = 92, A = 235 As currently modeled this option precludes production of delayed neutrons from fission fragments. Fission fragment production is now activated in HP package for Z = 92, A = 238 @@ -1126,6 +1116,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Shooting event 1 Emission Location: r: (3.9412,0,444.628) Emission Direction: r: (-0.720729,0.12139,-0.682506) diff --git a/examples/extended/hadronic/Hadr00/hadr00.out b/examples/extended/hadronic/Hadr00/hadr00.out index 7be1aa11d9..894e6c2477 100644 --- a/examples/extended/hadronic/Hadr00/hadr00.out +++ b/examples/extended/hadronic/Hadr00/hadr00.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -48,16 +48,6 @@ G4PhysListFactory::GetReferencePhysList EMoption= 0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -746,6 +736,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -772,7 +775,7 @@ EventAction: Event # 0 started Run terminated. Run Summary Number of events processed : 10 - User=0.09s Real=0.09s Sys=0s + User=0.02s Real=0.01s Sys=0s RunAction: End of run actions are started HistoManager: End of run actions are started ### Fill Cross Sections for proton off Al @@ -1584,6 +1587,6 @@ HistoManager: End of run actions are started G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 11 of which, static: 0 -Dynamic pools deleted: 11 / Total memory freed: 0.039 MB +Dynamic pools deleted: 11 / Total memory freed: 0.037 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/extended/hadronic/Hadr01/hadr01.out b/examples/extended/hadronic/Hadr01/hadr01.out index 275c2adf52..61a4d173ea 100644 --- a/examples/extended/hadronic/Hadr01/hadr01.out +++ b/examples/extended/hadronic/Hadr01/hadr01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -51,16 +51,6 @@ userDetector->Construct() start. World is registered to the default region. physicsList->Construct() start. -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 physicsList->CheckParticleList() start. physicsList->setCut() start. @@ -740,6 +730,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -789,7 +792,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics 100.00 10k 1 197 200 0.00 Check ### Run 0 starts. ### Run 0 start -RunAction::BeginOfRunAction: User=1.17s Real=1.19s Sys=0.01s +RunAction::BeginOfRunAction: User=1.04s Real=1.08s Sys=0.02s NuclearData: User=0s Real=0s Sys=0s EventAction: Event # 0 started EventAction: Event # 10 started @@ -804,33 +807,33 @@ EventAction: Event # 90 started Run terminated. Run Summary Number of events processed : 100 - User=0.28s Real=0.3s Sys=0.01s + User=0.11s Real=0.1s Sys=0s RunAction: End of run actions are started HistoManager: End of run actions are started ======================================================== Beam particle proton Beam Energy(MeV) 3000 Number of events 100 -Average energy deposit (MeV) 69.25 RMS(MeV) 57.7 -Average number of steps 219.8 -Average number of gamma 2.16 -Average number of e- 3.93 -Average number of e+ 0.1 -Average number of neutrons 1.3 -Average number of protons 1.14 +Average energy deposit (MeV) 67.12 RMS(MeV) 62.35 +Average number of steps 206.6 +Average number of gamma 1.57 +Average number of e- 3.69 +Average number of e+ 0.04 +Average number of neutrons 1.15 +Average number of protons 1.18 Average number of antiprotons 0 -Average number of pi+ & pi- 0.36 -Average number of pi0 0.19 +Average number of pi+ & pi- 0.21 +Average number of pi0 0.12 Average number of kaons 0 -Average number of muons 0.02 -Average number of deuterons+tritons 0.27 -Average number of He3+alpha 0.29 -Average number of ions 0.46 -Average number of forward neutrons 0.15 -Average number of reflected neutrons 1.02 -Average number of leaked neutrons 0.04 -Average number of proton leak 0.54 -Average number of pion leak 0.3 +Average number of muons 0.01 +Average number of deuterons+tritons 0.24 +Average number of He3+alpha 0.23 +Average number of ions 0.48 +Average number of forward neutrons 0.1 +Average number of reflected neutrons 0.96 +Average number of leaked neutrons 0.02 +Average number of proton leak 0.52 +Average number of pion leak 0.18 ======================================================== # @@ -843,22 +846,22 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -Total navigation history collections cleaned: 14 +Total navigation history collections cleaned: 15 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.0192 MB +Pool ID '20G4NavigationLevelRep', size : 0.0211 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.00481 MB +Pool ID '17G4DynamicParticle', size : 0.00577 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB -Pool ID '7G4Track', size : 0.00961 MB +Pool ID '7G4Track', size : 0.0115 MB Pool ID '18G4TouchableHistory', size : 0.00192 MB Pool ID '15G4CountedObjectIvE', size : 0.000961 MB Pool ID '10G4Fragment', size : 0.00192 MB -Pool ID '17G4ReactionProduct', size : 0.00288 MB +Pool ID '17G4ReactionProduct', size : 0.00192 MB Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 0.046 MB +Dynamic pools deleted: 12 / Total memory freed: 0.05 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/extended/hadronic/Hadr02/hadr02.out b/examples/extended/hadronic/Hadr02/hadr02.out index 56d8c7e3b3..81185e67ee 100644 --- a/examples/extended/hadronic/Hadr02/hadr02.out +++ b/examples/extended/hadronic/Hadr02/hadr02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -46,16 +46,6 @@ G4PhysListFactory::GetReferencePhysList EMoption= 0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 /run/setCut 1 km /gun/particle ion @@ -736,6 +726,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -771,33 +774,33 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100 - User=0.37s Real=0.42s Sys=0.01s + User=0.19s Real=0.19s Sys=0s RunAction: End of run action is starting HistoManager: End of run actions are started ======================================================== Beam particle S32 Beam Energy(GeV) 200 Number of events 100 -Average energy deposit (GeV) 7.106 RMS(GeV) 4.248 -Average number of steps 60.42 -Average number of gamma 1.01 +Average energy deposit (GeV) 6.185 RMS(GeV) 4.665 +Average number of steps 52.62 +Average number of gamma 0.54 Average number of e- 0 Average number of e+ 0 -Average number of neutrons 11.65 -Average number of protons 11.88 +Average number of neutrons 14.72 +Average number of protons 14.12 Average number of antiprotons 0 -Average number of pi+ & pi- 6.28 -Average number of pi0 3.31 -Average number of kaons 0.38 +Average number of pi+ & pi- 9.97 +Average number of pi0 4.69 +Average number of kaons 0.43 Average number of muons 0 -Average number of deuterons+tritons 2.38 -Average number of He3+alpha 1.19 -Average number of ions 0.45 +Average number of deuterons+tritons 1.86 +Average number of He3+alpha 1.04 +Average number of ions 0.27 ======================================================== 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.089 MB +Dynamic pools deleted: 12 / Total memory freed: 0.086 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/extended/hadronic/Hadr03/hadr03.out b/examples/extended/hadronic/Hadr03/hadr03.out index 0b67980d66..84c7f89f0c 100644 --- a/examples/extended/hadronic/Hadr03/hadr03.out +++ b/examples/extended/hadronic/Hadr03/hadr03.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -29,25 +29,15 @@ Command is ignored. ---> Isotope: Mo98 Z = 42 N = 98 A = 97.91 g/mole abundance: 100.000 % ElmMassFraction: 100.00 % ElmAbundance 100.00 % -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon # /process/list Transportation, hadElastic, neutronInelastic, nCapture @@ -67,17 +57,17 @@ anti_protonInelastic,anti_neutronInelastic,anti_deuteronInelastic,anti_tritonIne /run/printProgress 1000 # /run/beamOn 10000 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon ==================================================================== HADRONIC PROCESSES SUMMARY (verbose level 1) @@ -375,6 +365,19 @@ NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use / Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -406,17 +409,17 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=0.43s Real=0.43s Sys=0s + User=0.19s Real=0.2s Sys=0s The run is 10000 proton of 10 MeV through 10 m of Molybdenum98 (density: 10.28 g/cm3 ) Process calls frequency: - hadElastic= 7789 protonInelastic= 2211 + hadElastic= 7729 protonInelastic= 2271 - MeanFreePath: 4.852 cm +- 4.8232 cm massic: 49.879 g/cm2 - CrossSection: 0.2061 cm^-1 massic: 2.0049 mm2/g - crossSection per atom: 3.2594 barn + MeanFreePath: 4.8448 cm +- 4.8149 cm massic: 49.804 g/cm2 + CrossSection: 0.20641 cm^-1 massic: 2.0079 mm2/g + crossSection per atom: 3.2643 barn Verification: crossSections from G4HadronicProcessStore: hadElastic= 1.5534 mm2/g 2.5254 barn @@ -425,28 +428,38 @@ Run Summary List of nuclear reactions: - proton + Mo98 --> N gamma + alpha + Nb95: 1 Q = 3.5405 MeV - proton + Mo98 --> N gamma + neutron + Tc98: 2203 Q = -2.4725 MeV - proton + Mo98 --> N gamma + proton + Mo98: 7 Q = -2.0522e-07 eV - proton + Mo98 --> proton + Mo98: 7789 Q = 2.0641e-06 eV + proton + Mo98 --> N gamma + 2 e- + neutron + Tc98: 22 Q = -2.4725 MeV + proton + Mo98 --> N gamma + 3 e- + neutron + Tc98: 3 Q = -2.4725 MeV + proton + Mo98 --> N gamma + 4 e- + neutron + Tc98: 1 Q = -2.4725 MeV + proton + Mo98 --> N gamma + Tc99: 1 Q = 6.4945 MeV + proton + Mo98 --> N gamma + Tc99[142.683]: 3 Q = 6.3518 MeV + proton + Mo98 --> N gamma + alpha + Nb95: 2 Q = 3.5405 MeV + proton + Mo98 --> N gamma + e- + Tc99: 1 Q = 6.4945 MeV + proton + Mo98 --> N gamma + e- + neutron + Tc98: 603 Q = -2.4725 MeV + proton + Mo98 --> N gamma + neutron + Tc98: 1630 Q = -2.4725 MeV + proton + Mo98 --> N gamma + proton + Mo98: 5 Q = -4.6925e-06 eV + proton + Mo98 --> proton + Mo98: 7729 Q = 2.1698e-06 eV - Number of gamma: N = 2 --> 11 + Number of gamma: N = 1 --> 11 List of generated particles: - Mo98: 7796 Emean = 32.512 keV ( 0.53171 eV --> 404.47 keV) - Nb95: 1 Emean = 281.32 keV ( 281.32 keV --> 281.32 keV) - Tc98: 2203 Emean = 115.81 keV ( 15.303 keV --> 292.92 keV) - alpha: 1 Emean = 9.0654 MeV ( 9.0654 MeV --> 9.0654 MeV) - gamma: 12909 Emean = 1.0216 MeV ( 21.762 keV --> 6.3379 MeV) - neutron: 2203 Emean = 1.4355 MeV ( 31.863 keV --> 6.2376 MeV) - proton: 7 Emean = 7.2196 MeV ( 6.2599 MeV --> 8.5901 MeV) + Mo98: 7734 Emean = 31.785 keV ( 0.70945 eV --> 403.15 keV) + Nb95: 2 Emean = 423.8 keV ( 280.25 keV --> 567.35 keV) + Tc98: 2259 Emean = 115.5 keV ( 7.0797 keV --> 301.34 keV) + Tc99: 2 Emean = 89.668 keV ( 87.766 keV --> 91.571 keV) + Tc99[142.683]: 3 Emean = 102.28 keV ( 92.434 keV --> 113.06 keV) + alpha: 2 Emean = 8.9207 MeV ( 8.776 MeV --> 9.0654 MeV) + e-: 661 Emean = 138.93 keV ( 21.552 keV --> 3.9586 MeV) + gamma: 14853 Emean = 907.97 keV ( 7.8448 keV --> 9.8141 MeV) + neutron: 2259 Emean = 1.4436 MeV ( 31.735 keV --> 7.155 MeV) + proton: 5 Emean = 8.8341 MeV ( 6.8497 MeV --> 9.8175 MeV) - Momentum balance: Pmean = 0.0096208 eV ( 4.0755e-07 eV --> 2.1298 eV ) + Momentum balance: Pmean = 52.336 eV ( 3.8404e-07 eV --> 3.5559 keV) --------- Ranecu engine status --------- Initial seed (index) = 0 - Current couple of seeds = 1964074411, 807412498 + Current couple of seeds = 1078086851, 1295236255 ---------------------------------------- G4 kernel has come to Quit state. ================== Deleting memory pools =================== diff --git a/examples/extended/hadronic/Hadr04/hadr04.out b/examples/extended/hadronic/Hadr04/hadr04.out index 63a0645ca6..84e1c8b52a 100644 --- a/examples/extended/hadronic/Hadr04/hadr04.out +++ b/examples/extended/hadronic/Hadr04/hadr04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -37,15 +37,15 @@ userDetector->Construct() start. Water_ts is registered to the default region. physicsList->Construct() start. -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic physicsList->CheckParticleList() start. physicsList->setCut() start. # @@ -59,20 +59,20 @@ physicsList->setCut() start. /run/printProgress 100 # /run/beamOn 1000 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon Neutron HP Thermal Scattering Data: Following material-element pairs and/or elements are registered. Element TS_H_of_Water, internal thermal scattering id 0 Element TS_D_of_Heavy_Water, internal thermal scattering id 1 Element TS_C_of_Graphite, internal thermal scattering id 2 -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon Neutron HP Thermal Scattering: Following material-element pairs or elements are registered. Element TS_H_of_Water, internal thermal scattering id 0 @@ -115,9 +115,9 @@ Element TS_C_of_Graphite, internal thermal scattering id 2 Cr_sctns: GheishaFissionXS: 0 meV ---> 100 TeV ================================================================ -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon Region -- -- appears in world volume This region is in the mass world. @@ -167,7 +167,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 1000 - User=23.81s Real=23.89s Sys=0.01s + User=18.4s Real=18.5s Sys=0s The run is 1000 neutron of 2 MeV through 50 cm of Water_ts (density: 1 g/cm3 ) diff --git a/examples/extended/hadronic/Hadr05/hadr05.out b/examples/extended/hadronic/Hadr05/hadr05.out index 74ac03aebf..9c063ff2ca 100644 --- a/examples/extended/hadronic/Hadr05/hadr05.out +++ b/examples/extended/hadronic/Hadr05/hadr05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -44,16 +44,6 @@ -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -382,6 +372,19 @@ Correlated gamma emission flag 0 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -408,7 +411,7 @@ EventAction: Event # 0 started Run terminated. Run Summary Number of events processed : 10 - User=0.15s Real=0.15s Sys=0s + User=0.03s Real=0.02s Sys=0.01s RunAction: End of run actions are started HistoManager: End of run actions are started ### Fill Cross Sections for proton off Al @@ -1219,6 +1222,6 @@ HistoManager: End of run actions are started G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 11 of which, static: 0 -Dynamic pools deleted: 11 / Total memory freed: 0.039 MB +Dynamic pools deleted: 11 / Total memory freed: 0.037 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/extended/hadronic/Hadr06/hadr06.out b/examples/extended/hadronic/Hadr06/hadr06.out index a99e0ba3cb..fb262ce743 100644 --- a/examples/extended/hadronic/Hadr06/hadr06.out +++ b/examples/extended/hadronic/Hadr06/hadr06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -36,29 +36,19 @@ for proton : 3 to 12 GeV for neutron : 3 to 12 GeV -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon ### === Deexcitation model UAtomDeexcitation is activated for 1 region: ### === Auger cascade flag: 1 -### === Ignore cuts flag: 1 +### === Ignore cuts flag: 0 # /process/list Transportation, hadElastic, neutronInelastic, nCapture @@ -82,17 +72,17 @@ hBertiniCaptureAtRest,muMinusCaptureAtRest, photonNuclear, m /run/printProgress 1000 # /run/beamOn 10000 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon ==================================================================== HADRONIC PROCESSES SUMMARY (verbose level 1) @@ -390,6 +380,19 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use / Cr_sctns: GheishaInelastic: 0 meV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -428,7 +431,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=15.54s Real=15.65s Sys=0s + User=10.47s Real=10.5s Sys=0s The run is 10000 neutron of 14.1 MeV through 30 cm of Li7 (density: 1.85 g/cm3 ) diff --git a/examples/extended/medical/DICOM/run.out b/examples/extended/medical/DICOM/run.out index 7787a23220..7ac05307fc 100644 --- a/examples/extended/medical/DICOM/run.out +++ b/examples/extended/medical/DICOM/run.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -50,48 +50,29 @@ DicomRegularDetectorConstruction::ConstructPhantom SET SCORER : VoxelLogical CONSTRUCT SD AND FIELD -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +Number of de-excitation channels is changed to 68 Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... Registering graphics systems... @@ -450,22 +431,22 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 100 TeV -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen msc: for pi+ SubType= 10 RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180 @@ -866,6 +847,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -1040,7 +1034,7 @@ EV: 99 Run terminated. Run Summary Number of events processed : 100 - User=0.03s Real=0.03s Sys=0s + User=0.03s Real=0.03s Sys=0.01s --------------------End of Global Run----------------------- The run was 200 events diff --git a/examples/extended/medical/GammaTherapy/GammaTherapy.out b/examples/extended/medical/GammaTherapy/GammaTherapy.out index f53dab2590..5c5ef9d6cd 100644 --- a/examples/extended/medical/GammaTherapy/GammaTherapy.out +++ b/examples/extended/medical/GammaTherapy/GammaTherapy.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -572,7 +572,7 @@ Index : 5 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=6.38s Real=6.38s Sys=0s + User=3.8s Real=3.81s Sys=0.01s RunAction: End of run actions are started Histo: End of run actions are started ======================================================== diff --git a/examples/extended/medical/dna/chem1/.settings/.svn/entries b/examples/extended/medical/dna/chem1/.settings/.svn/entries index 536e70d03f..8f3fe5004a 100644 --- a/examples/extended/medical/dna/chem1/.settings/.svn/entries +++ b/examples/extended/medical/dna/chem1/.settings/.svn/entries @@ -1,8 +1,8 @@ 10 dir -101938 -svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03_branch/examples/extended/medical/dna/chem1/.settings +102874 +svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-03-patch-01_branch/examples/extended/medical/dna/chem1/.settings svn+ssh://svn.cern.ch/reps/geant4 diff --git a/examples/extended/medical/dna/chem1/chem1.out b/examples/extended/medical/dna/chem1/chem1.out index 800c61b964..feb769de60 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/chem2/chem2.out b/examples/extended/medical/dna/chem2/chem2.out index 0c7c5a33e1..1ef02e83af 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/chem3/chem3.out b/examples/extended/medical/dna/chem3/chem3.out index 05ed5dc8e4..871a01f647 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/clustering/clustering.out b/examples/extended/medical/dna/clustering/clustering.out index 277319b4fb..ebd55ac1db 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/dnaphysics/dnaphysics.out b/examples/extended/medical/dna/dnaphysics/dnaphysics.out index dd09c2dddf..edf6b99537 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -646,13 +646,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 0 kByte Total CPU time elapsed for geometry optimisation: 0 seconds ### Run 0 starts. -##### Create analysis manager 0x16bdb50 +##### Create analysis manager 0x282eea0 Using Root analysis manager ... open Root analysis file : dna.root - done Run terminated. Run Summary Number of events processed : 100 - User=14.71s Real=15.12s Sys=0.37s + User=5.9s Real=6.19s Sys=0.21s ... write Root file : dna.root - done ... close Root file : dna.root - done Graphics systems deleted. diff --git a/examples/extended/medical/dna/microdosimetry/microdosimetry.out b/examples/extended/medical/dna/microdosimetry/microdosimetry.out index 516552c16b..59cfe901f5 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -243,7 +243,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 2 - User=75.2s Real=75.48s Sys=0.02s + User=36.93s Real=37.11s Sys=0.01s Number and type of particles created outside region "Target" : N e- : 5111 _______________________ diff --git a/examples/extended/medical/dna/microyz/microyz.out b/examples/extended/medical/dna/microyz/microyz.out index ff2ed8db44..20dd48dd7d 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -203,7 +203,7 @@ alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0 ===== EM models for the G4Region DefaultRegionForTheWorld ====== DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV ### Run 0 starts. -##### Create analysis manager 0x1dd3170 +##### Create analysis manager 0x12ab4b0 Using Root analysis manager ... open Root analysis file : yz.root - done --> Event 0 starts. diff --git a/examples/extended/medical/dna/pdb4dna/History b/examples/extended/medical/dna/pdb4dna/History index 144d644c8c..31e9fe408e 100644 --- a/examples/extended/medical/dna/pdb4dna/History +++ b/examples/extended/medical/dna/pdb4dna/History @@ -17,6 +17,9 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +23.02.2017 I. Hrivnacova tag pdb4dna-V10-02-03 +- fixed compilation (G4UIQt.hh include) + 09.07.2016 S.Incerti tag pdb4dna-V10-02-02 - updated README diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.cc b/examples/extended/medical/dna/pdb4dna/pdb4dna.cc index d8c19e3ce0..8b2e95a22b 100644 --- a/examples/extended/medical/dna/pdb4dna/pdb4dna.cc +++ b/examples/extended/medical/dna/pdb4dna/pdb4dna.cc @@ -51,7 +51,9 @@ #include "Randomize.hh" #include "G4VisExecutive.hh" #include "G4UIExecutive.hh" +#ifdef G4UI_USE_QT #include "G4UIQt.hh" +#endif #include "CommandLineParser.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.out b/examples/extended/medical/dna/pdb4dna/pdb4dna.out index a65ed6523e..e4592efb4b 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/range/range.out b/examples/extended/medical/dna/range/range.out index 5e82bd57b9..480aee1c3d 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/svalue/svalue.out b/examples/extended/medical/dna/svalue/svalue.out index 13efa2a28a..fa3ef92f5a 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/wholeNuclearDNA/History b/examples/extended/medical/dna/wholeNuclearDNA/History index 33c047dd99..7123bdb400 100755 --- a/examples/extended/medical/dna/wholeNuclearDNA/History +++ b/examples/extended/medical/dna/wholeNuclearDNA/History @@ -5,6 +5,9 @@ Package History file -------------------- +23 February 2017 - I. Hrivnacova - wholeNuclearDNA-V10-02-02 +- fixed compilation (G4UIQt.hh include) + 09 July 2016 - S. Incerti - tag wholeNuclearDNA-V10-02-01 - Updated README diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.cc b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.cc index c90ee5f74d..7a05facfca 100755 --- a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.cc +++ b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.cc @@ -46,12 +46,14 @@ #include "G4UIterminal.hh" #include "G4UItcsh.hh" #include "G4VisExecutive.hh" +#ifdef G4UI_USE_QT +#include "G4UIQt.hh" +#endif #include "ActionInitialization.hh" #include "DetectorConstruction.hh" #include "PhysicsList.hh" #include "CommandLineParser.hh" -#include "G4UIQt.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out index d1c66adbaf..6361209034 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/dna/wvalue/wvalue.out b/examples/extended/medical/dna/wvalue/wvalue.out index 933ca9fb00..f83e9f848e 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/electronScattering/electronScattering.out b/examples/extended/medical/electronScattering/electronScattering.out index 1074e2b875..1999eab9f4 100644 --- a/examples/extended/medical/electronScattering/electronScattering.out +++ b/examples/extended/medical/electronScattering/electronScattering.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -288,7 +288,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 100000 - User=15.83s Real=15.89s Sys=0s + User=6.69s Real=6.71s Sys=0.01s ======================== run summary ====================== diff --git a/examples/extended/medical/electronScattering2/electronScattering2.out b/examples/extended/medical/electronScattering2/electronScattering2.out index 8bf370b094..9fc0880254 100644 --- a/examples/extended/medical/electronScattering2/electronScattering2.out +++ b/examples/extended/medical/electronScattering2/electronScattering2.out @@ -1,5 +1,5 @@ Starting run with -Macro File : /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/medical/electronScattering2/electronScattering2.in +Macro File : /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/medical/electronScattering2/electronScattering2.in Starting Seed : 1 Output File : output.csv @@ -8,7 +8,7 @@ Output File : output.csv ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 diff --git a/examples/extended/medical/fanoCavity/fanoCavity.out b/examples/extended/medical/fanoCavity/fanoCavity.out index b09bcb6f5f..33c3c4968a 100644 --- a/examples/extended/medical/fanoCavity/fanoCavity.out +++ b/examples/extended/medical/fanoCavity/fanoCavity.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -234,7 +234,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 4000 - User=27.75s Real=27.78s Sys=0s + User=17.15s Real=17.2s Sys=0s ======================== run summary ====================== diff --git a/examples/extended/medical/fanoCavity2/fanoCavity2.out b/examples/extended/medical/fanoCavity2/fanoCavity2.out index 06bce4b002..3485661538 100644 --- a/examples/extended/medical/fanoCavity2/fanoCavity2.out +++ b/examples/extended/medical/fanoCavity2/fanoCavity2.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -282,7 +282,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 40000 - User=6.39s Real=6.42s Sys=0s + User=4.76s Real=4.77s Sys=0.01s Process calls frequency ---> msc= 607654 eIoni= 602184 Transportation= 22901 diff --git a/examples/extended/optical/LXe/LXe.out b/examples/extended/optical/LXe/LXe.out index ac6d99fcdb..28d17fe684 100644 --- a/examples/extended/optical/LXe/LXe.out +++ b/examples/extended/optical/LXe/LXe.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -61,16 +61,6 @@ Available colours: Construction /LXeDet/pmtSD Construction /LXeDet/scintSD -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Birks coeffitients used in run time LXe 0.126 mm/MeV 0.038052 g/cm^2/MeV massFactor= 7.14643 effCharge= 2916 Polystyrene 0.126 mm/MeV 0.012978 g/cm^2/MeV massFactor= 101.167 effCharge= 0.027027 @@ -199,6 +189,19 @@ muPairProd: for mu- SubType= 4 Process: muMinusCaptureAtRest ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -252,7 +255,7 @@ Unacounted for photons in this event : 0 Run terminated. Run Summary Number of events processed : 1 - User=0.32s Real=0.32s Sys=0s + User=0.1s Real=0.1s Sys=0s ========= Table of registered couples ============================== @@ -300,7 +303,7 @@ Unacounted for photons in this event : 0 Run terminated. Run Summary Number of events processed : 1 - User=0.42s Real=0.42s Sys=0s + User=0.09s Real=0.09s Sys=0s Graphics systems deleted. Visualization Manager deleting... G4 kernel has come to Quit state. diff --git a/examples/extended/optical/OpNovice/OpNovice.out b/examples/extended/optical/OpNovice/OpNovice.out index f37a645c5f..f587f14a1e 100644 --- a/examples/extended/optical/OpNovice/OpNovice.out +++ b/examples/extended/optical/OpNovice/OpNovice.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -583,7 +583,7 @@ Index : 1 used in the geometry : Yes ### Run 0 start. Number of Scintillation photons produced in this event : 71 Number of Cerenkov photons produced in this event : 25 -number of event = 1 User=0.01s Real=0s Sys=0s +number of event = 1 User=0.01s Real=0.01s Sys=0s # Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/optical/wls/wls.out b/examples/extended/optical/wls/wls.out index b3fdbb95bc..e5ed95753e 100644 --- a/examples/extended/optical/wls/wls.out +++ b/examples/extended/optical/wls/wls.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -116,28 +116,18 @@ New material TiO2 is prepeared nMaterials= 314 nComponents= 788 nCurrent= 2 G4NistMaterialBuilder: BuildMaterial #313 New material nComponents= 2 G4NistElementBuilder: Build Element Z= 22 Aeff= 47.8667 with natural isotope composition -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen WLSExtraPhysics:: Add Extra Physics Processes WLSOpticalPhysics:: Add Optical Physics Processes ### Birks coeffitients used in run time @@ -443,22 +433,22 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 100 TeV -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Inelastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen msc: for pi+ SubType= 10 RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180 @@ -862,6 +852,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. --------- Ranecu engine status --------- diff --git a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out index 6b10e4ea3f..b7757bd997 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-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -135,22 +135,12 @@ Checking overlaps for volume Target_1_4_4 ... OK! Checking overlaps for volume Target_2_4_4 ... OK! Checking overlaps for volume Target_3_4_4 ... OK! Checking overlaps for volume Target_4_4_4 ... OK! -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... Registering graphics systems... @@ -545,12 +535,12 @@ CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1 180 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531 ===== EM models for the G4Region DefaultRegionForTheWorld ====== eCoulombScattering : Emin= 0 eV Emax= 10 TeV -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen msc: for pi+ SubType= 10 RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180 @@ -904,6 +894,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -1036,7 +1039,7 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=38.61s Real=39.27s Sys=0.46s + User=29.38s Real=29.87s Sys=0.34s ###### EndOfTSRunAction ###### ============================================================ opened file mfd_tl_EnergyDeposit.out for output diff --git a/examples/extended/parameterisations/Par01/examplePar01.out b/examples/extended/parameterisations/Par01/examplePar01.out index 5815747a8c..e226c40f81 100644 --- a/examples/extended/parameterisations/Par01/examplePar01.out +++ b/examples/extended/parameterisations/Par01/examplePar01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -23,16 +23,6 @@ Declaring region... ... succes. G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -771,6 +761,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 1, Parent ID = 0 @@ -3542,87 +3545,63 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 1.32 0 0 0 Tower initStep - 1 107 792 2.25e+03 1.1 0 54.1 54.1 Tower compt - 2 111 786 2.27e+03 0.432 0 20.1 74.2 Tower compt - 3 113 792 2.27e+03 0.325 0 6.59 80.8 Tower compt - 4 103 800 2.28e+03 0.177 0 18.7 99.5 Tower compt - 5 100 797 2.28e+03 0.126 0 4.46 104 Tower compt - 6 96.1 802 2.28e+03 0.0896 0 6.73 111 Tower compt - 7 96.6 801 2.29e+03 0.0778 0 1.65 112 Tower compt - 8 95.8 799 2.28e+03 0.071 0 2.35 115 Tower compt - 9 95.3 798 2.28e+03 0 0.00711 1.32 116 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 120, Parent ID = 110 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 95.3 798 2.28e+03 0.0639 0 0 0 Tower initStep - 1 95.3 798 2.28e+03 0 0.0639 0.0128 0.0128 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 119, Parent ID = 110 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 95.8 799 2.28e+03 0.00683 0 0 0 Tower initStep - 1 95.8 799 2.28e+03 0 0.00683 0.000299 0.000299 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 118, Parent ID = 110 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 96.6 801 2.29e+03 0.0118 0 0 0 Tower initStep - 1 96.6 801 2.29e+03 0 0.0118 0.000727 0.000727 Tower eIoni + 1 50 792 2.24e+03 1.32 0 61.2 61.2 Tower CoupledTransportation + 2 49.2 791 2.24e+03 0.601 0 1.29 62.5 Tower compt + 3 50 790 2.25e+03 0.601 0 3.38 65.9 Tower CoupledTransportation + 4 53.4 784 2.26e+03 0.439 0 13.9 79.8 Tower compt + 5 50.9 783 2.26e+03 0.351 0 4.96 84.7 Tower compt + 6 50 776 2.27e+03 0.351 0 8.79 93.5 Tower CoupledTransportation + 7 49 767 2.27e+03 0.189 0 10.5 104 Tower compt + 8 40.1 771 2.27e+03 0.152 0 9.5 114 Tower compt + 9 40.1 771 2.27e+03 0 0.00711 0.936 114 Tower phot ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 117, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 96.1 802 2.28e+03 0.0367 0 0 0 Tower initStep - 1 96.1 802 2.28e+03 0 0.0367 0.00497 0.00497 Tower eIoni + 0 40.1 771 2.27e+03 0.144 0 0 0 Tower initStep + 1 40.2 771 2.27e+03 0 0.144 0.0497 0.0497 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 116, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 100 797 2.28e+03 0.051 0 0 0 Tower initStep - 1 100 797 2.28e+03 0 0.051 0.00873 0.00873 Tower eIoni + 0 40.1 771 2.27e+03 0.0375 0 0 0 Tower initStep + 1 40.1 771 2.27e+03 0 0.0375 0.00518 0.00518 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 115, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 103 800 2.28e+03 0.148 0 0 0 Tower initStep - 1 103 800 2.28e+03 0 0.148 0.0518 0.0518 Tower eIoni + 0 49 767 2.27e+03 0.162 0 0 0 Tower initStep + 1 49 767 2.27e+03 0 0.162 0.0598 0.0598 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 114, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 113 792 2.27e+03 0.107 0 0 0 Tower initStep - 1 113 792 2.27e+03 0 0.107 0.0302 0.0302 Tower eIoni + 0 50.9 783 2.26e+03 0.0882 0 0 0 Tower initStep + 1 50.9 783 2.26e+03 0 0.0882 0.022 0.022 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 113, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 111 786 2.27e+03 0.664 0 0 0 Tower initStep - 1 111 786 2.27e+03 0 0.664 0.472 0.472 Tower eIoni + 0 53.4 784 2.26e+03 0.162 0 0 0 Tower initStep + 1 53.5 784 2.26e+03 0 0.162 0.0595 0.0595 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 112, Parent ID = 110 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 107 792 2.25e+03 0.221 0 0 0 Tower initStep - 1 107 792 2.25e+03 0 0.221 0.0976 0.0976 Tower eIoni + 0 49.2 791 2.24e+03 0.716 0 0 0 Tower initStep + 1 49.1 791 2.24e+03 0 0.716 0.521 0.521 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 109, Parent ID = 101 @@ -3630,51 +3609,42 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 1.22 0 0 0 Tower initStep - 1 89.3 828 2.21e+03 0.331 0 5.34 5.34 Tower compt - 2 76.4 808 2.24e+03 0.233 0 36.8 42.2 Tower compt - 3 78.1 808 2.24e+03 0.129 0 3.34 45.5 Tower compt - 4 79.7 807 2.23e+03 0.113 0 12.4 58 Tower compt - 5 79.2 806 2.23e+03 0 0.00711 1.31 59.3 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 125, Parent ID = 109 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 79.2 806 2.23e+03 0.106 0 0 0 Tower initStep - 1 79.2 806 2.23e+03 0 0.106 0.0297 0.0297 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 124, Parent ID = 109 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 79.7 807 2.23e+03 0.0158 0 0 0 Tower initStep - 1 79.7 807 2.23e+03 0 0.0158 0.0012 0.0012 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 123, Parent ID = 109 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 78.1 808 2.24e+03 0.104 0 0 0 Tower initStep - 1 78.1 808 2.24e+03 0 0.104 0.0292 0.0292 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 122, Parent ID = 109 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 76.4 808 2.24e+03 0.0978 0 0 0 Tower initStep - 1 76.4 808 2.24e+03 0 0.0978 0.0262 0.0262 Tower eIoni + 1 89 823 2.21e+03 0.355 0 0.873 0.873 Tower compt + 2 85.1 815 2.22e+03 0.211 0 16 16.9 Tower compt + 3 67.3 799 2.21e+03 0.191 0 27.9 44.8 Tower compt + 4 67.1 798 2.2e+03 0 0.00711 3.7 48.5 Tower phot ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 121, Parent ID = 109 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.3 828 2.21e+03 0.892 0 0 0 Tower initStep - 1 89.3 828 2.21e+03 0 0.892 0.689 0.689 Tower eIoni + 0 67.1 798 2.2e+03 0.184 0 0 0 Tower initStep + 1 67.1 798 2.2e+03 0 0.184 0.0731 0.0731 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 120, Parent ID = 109 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 67.3 799 2.21e+03 0.0201 0 0 0 Tower initStep + 1 67.3 799 2.21e+03 0 0.0201 0.00179 0.00179 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 119, Parent ID = 109 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 85.1 815 2.22e+03 0.144 0 0 0 Tower initStep + 1 85.1 815 2.22e+03 0 0.144 0.0496 0.0496 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 118, Parent ID = 109 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 89 823 2.21e+03 0.867 0 0 0 Tower initStep + 1 88.8 823 2.21e+03 0 0.867 0.665 0.665 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 108, Parent ID = 101 @@ -3682,42 +3652,42 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 0.275 0 0 0 Tower initStep - 1 94 818 2.2e+03 0.203 0 11.1 11.1 Tower compt - 2 86.3 820 2.19e+03 0.197 0 13 24.1 Tower compt - 3 84.4 822 2.18e+03 0.159 0 6.29 30.4 Tower compt - 4 91.3 826 2.18e+03 0 0.00711 9.19 39.6 Tower phot + 1 88.7 803 2.22e+03 0.168 0 21.9 21.9 Tower compt + 2 78.2 811 2.23e+03 0.133 0 16.1 37.9 Tower compt + 3 75.2 804 2.23e+03 0.0898 0 9.11 47 Tower compt + 4 77.7 808 2.23e+03 0 0.00711 4.9 51.9 Tower phot ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 129, Parent ID = 108 +* G4Track Information: Particle = e-, Track ID = 125, Parent ID = 108 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 91.3 826 2.18e+03 0.152 0 0 0 Tower initStep - 1 91.3 826 2.18e+03 0 0.152 0.0538 0.0538 Tower eIoni + 0 77.7 808 2.23e+03 0.0827 0 0 0 Tower initStep + 1 77.7 808 2.23e+03 0 0.0827 0.0198 0.0198 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 128, Parent ID = 108 +* G4Track Information: Particle = e-, Track ID = 124, Parent ID = 108 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 84.4 822 2.18e+03 0.0381 0 0 0 Tower initStep - 1 84.4 822 2.18e+03 0 0.0381 0.00532 0.00532 Tower eIoni + 0 75.2 804 2.23e+03 0.043 0 0 0 Tower initStep + 1 75.2 804 2.23e+03 0 0.043 0.00654 0.00654 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 127, Parent ID = 108 +* G4Track Information: Particle = e-, Track ID = 123, Parent ID = 108 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 86.3 820 2.19e+03 0.00584 0 0 0 Tower initStep - 1 86.3 820 2.19e+03 0 0.00584 0.000233 0.000233 Tower eIoni + 0 78.2 811 2.23e+03 0.0347 0 0 0 Tower initStep + 1 78.2 811 2.23e+03 0 0.0347 0.00452 0.00452 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 126, Parent ID = 108 +* G4Track Information: Particle = e-, Track ID = 122, Parent ID = 108 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 94 818 2.2e+03 0.0719 0 0 0 Tower initStep - 1 94 818 2.2e+03 0 0.0719 0.0156 0.0156 Tower eIoni + 0 88.7 803 2.22e+03 0.107 0 0 0 Tower initStep + 1 88.7 803 2.22e+03 0 0.107 0.0305 0.0305 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 107, Parent ID = 101 @@ -3725,52 +3695,80 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 0.605 0 0 0 Tower initStep - 1 90.9 827 2.21e+03 0.482 0 6.21 6.21 Tower compt - 2 79 837 2.24e+03 0.447 0 33.3 39.5 Tower compt - 3 79.4 842 2.25e+03 0.411 0 13.4 52.9 Tower compt - 4 73.2 850 2.27e+03 0.411 0 15.5 68.4 Tower CoupledTransportation - 5 61.3 865 2.29e+03 0.18 0 29.9 98.2 Tower compt - 6 60.6 861 2.29e+03 0 0.00711 3.89 102 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 134, Parent ID = 107 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 60.6 861 2.29e+03 0.173 0 0 0 Tower initStep - 1 60.6 861 2.29e+03 0 0.173 0.0664 0.0664 Tower eIoni + 1 89 824 2.21e+03 0.595 0 0.989 0.989 Tower compt + 2 62.6 847 2.22e+03 0.505 0 36.9 37.9 Tower compt + 3 58 848 2.22e+03 0.441 0 4.74 42.7 Tower compt + 4 55.5 850 2.22e+03 0.441 0 3.39 46 Tower CoupledTransportation + 5 50 855 2.22e+03 0.441 0 7.64 53.7 Tower CoupledTransportation + 6 47.6 857 2.22e+03 0.345 0 3.32 57 Tower compt + 7 47 862 2.22e+03 0.285 0 5.36 62.4 Tower compt + 8 45.6 863 2.22e+03 0.225 0 1.93 64.3 Tower compt + 9 45.9 864 2.22e+03 0.133 0 1.41 65.7 Tower compt + 10 42.5 856 2.22e+03 0 0.00711 9.29 75 Tower phot ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 133, Parent ID = 107 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 61.3 865 2.29e+03 0.231 0 0 0 Tower initStep - 1 61.2 865 2.29e+03 0 0.231 0.104 0.104 Tower eIoni + 0 42.5 856 2.22e+03 0.126 0 0 0 Tower initStep + 1 42.5 856 2.22e+03 0 0.126 0.0396 0.0396 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 132, Parent ID = 107 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 79.4 842 2.25e+03 0.0359 0 0 0 Tower initStep - 1 79.4 842 2.25e+03 0 0.0359 0.00479 0.00479 Tower eIoni + 0 45.9 864 2.22e+03 0.0922 0 0 0 Tower initStep + 1 45.9 864 2.22e+03 0 0.0922 0.0237 0.0237 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 131, Parent ID = 107 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 79 837 2.24e+03 0.036 0 0 0 Tower initStep - 1 79 837 2.24e+03 0 0.036 0.00481 0.00481 Tower eIoni + 0 45.6 863 2.22e+03 0.0603 0 0 0 Tower initStep + 1 45.6 863 2.22e+03 0 0.0603 0.0116 0.0116 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 130, Parent ID = 107 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 90.9 827 2.21e+03 0.123 0 0 0 Tower initStep - 1 90.9 827 2.21e+03 0 0.123 0.0381 0.0381 Tower eIoni + 0 47 862 2.22e+03 0.0594 0 0 0 Tower initStep + 1 47 862 2.22e+03 0 0.0594 0.0113 0.0113 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 129, Parent ID = 107 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 47.6 857 2.22e+03 0.0966 0 0 0 Tower initStep + 1 47.6 857 2.22e+03 0 0.0966 0.0256 0.0256 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 128, Parent ID = 107 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 58 848 2.22e+03 0.0635 0 0 0 Tower initStep + 1 58 848 2.22e+03 0 0.0635 0.0127 0.0127 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 127, Parent ID = 107 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 62.6 847 2.22e+03 0.0898 0 0 0 Tower initStep + 1 62.6 847 2.22e+03 0 0.0898 0.0227 0.0227 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 126, Parent ID = 107 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 89 824 2.21e+03 0.0106 0 0 0 Tower initStep + 1 89 824 2.21e+03 0 0.0106 0.00061 0.00061 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 106, Parent ID = 101 @@ -3778,60 +3776,90 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 1.68 0 0 0 Tower initStep - 1 89.1 825 2.21e+03 0.72 0 2.12 2.12 Tower compt - 2 93.5 835 2.21e+03 0.364 0 11.3 13.4 Tower compt - 3 94.8 836 2.22e+03 0.292 0 7.57 21 Tower compt - 4 95 837 2.22e+03 0.152 0 0.38 21.4 Tower compt - 5 93.3 834 2.2e+03 0.106 0 15.9 37.3 Tower compt - 6 98 836 2.2e+03 0 0.00711 5.44 42.7 Tower phot + 1 54.1 827 2.22e+03 1.66 0 38.8 38.8 Tower compt + 2 50 828 2.22e+03 1.66 0 4.27 43.1 Tower CoupledTransportation + 3 -37.2 834 2.25e+03 0.812 0 91.5 135 Tower compt + 4 -50 850 2.25e+03 0.812 0 20.2 155 Tower CoupledTransportation + 5 -50 850 2.25e+03 0.812 0 0.0428 155 Tower CoupledTransportation + 6 -62.6 865 2.25e+03 0.537 0 19.9 175 Tower compt + 7 -65.5 865 2.25e+03 0.504 0 2.84 177 Tower compt + 8 -145 870 2.3e+03 0.179 0 89.8 267 Tower compt + 9 -140 866 2.29e+03 0.128 0 7.85 275 Tower compt + 10 -140 866 2.29e+03 0.12 0 0.589 276 Tower compt + 11 -142 864 2.3e+03 0.116 0 7.03 283 Tower compt + 12 -142 864 2.3e+03 0 0.00711 2.1 285 Tower phot + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 142, Parent ID = 106 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -142 864 2.3e+03 0.109 0 0 0 Tower initStep + 1 -142 864 2.3e+03 0 0.109 0.0314 0.0314 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 141, Parent ID = 106 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -142 864 2.3e+03 0.00409 0 0 0 Tower initStep + 1 -142 864 2.3e+03 0 0.00409 0.000134 0.000134 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 140, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 98 836 2.2e+03 0.0985 0 0 0 Tower initStep - 1 98 836 2.2e+03 0 0.0985 0.0265 0.0265 Tower eIoni + 0 -140 866 2.29e+03 0.00793 0 0 0 Tower initStep + 1 -140 866 2.29e+03 0 0.00793 0.000381 0.000381 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 139, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 93.3 834 2.2e+03 0.0466 0 0 0 Tower initStep - 1 93.3 834 2.2e+03 0 0.0466 0.00749 0.00749 Tower eIoni + 0 -140 866 2.29e+03 0.0503 0 0 0 Tower initStep + 1 -140 866 2.29e+03 0 0.0503 0.00853 0.00853 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 138, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 95 837 2.22e+03 0.14 0 0 0 Tower initStep - 1 95 837 2.22e+03 0 0.14 0.047 0.047 Tower eIoni + 0 -145 870 2.3e+03 0.326 0 0 0 Tower initStep + 1 -145 870 2.3e+03 0 0.326 0.175 0.175 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 137, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 94.8 836 2.22e+03 0.0725 0 0 0 Tower initStep - 1 94.8 836 2.22e+03 0 0.0725 0.0159 0.0159 Tower eIoni + 0 -65.5 865 2.25e+03 0.033 0 0 0 Tower initStep + 1 -65.5 865 2.25e+03 0 0.033 0.00415 0.00415 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 136, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 93.5 835 2.21e+03 0.356 0 0 0 Tower initStep - 1 93.5 835 2.21e+03 0 0.356 0.2 0.2 Tower eIoni + 0 -62.6 865 2.25e+03 0.275 0 0 0 Tower initStep + 1 -62.6 865 2.25e+03 0 0.275 0.136 0.136 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 135, Parent ID = 106 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.1 825 2.21e+03 0.96 0 0 0 Tower initStep - 1 88.9 825 2.21e+03 0 0.96 0.755 0.755 Tower eIoni + 0 -37.2 834 2.25e+03 0.844 0 0 0 Tower initStep + 1 -37.3 834 2.25e+03 0 0.844 0.643 0.643 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 134, Parent ID = 106 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 54.1 827 2.22e+03 0.0242 0 0 0 Tower initStep + 1 54.1 827 2.22e+03 0 0.0242 0.00244 0.00244 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 105, Parent ID = 101 @@ -3839,217 +3867,218 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 89.8 823 2.21e+03 1.43 0 0 0 Tower initStep - 1 90.1 819 2.21e+03 0.261 0 3.84 3.84 Tower compt - 2 93.4 823 2.21e+03 0.169 0 5.09 8.93 Tower compt - 3 88.7 827 2.21e+03 0.13 0 6.8 15.7 Tower compt - 4 87.4 826 2.21e+03 0.0962 0 1.73 17.5 Tower compt - 5 87.3 827 2.21e+03 0.0819 0 0.417 17.9 Tower compt - 6 89.6 826 2.21e+03 0.0667 0 3.78 21.7 Tower compt - 7 89.6 826 2.21e+03 0 0.00711 0.0403 21.7 Tower phot + 1 85.1 816 2.19e+03 0.827 0 19.3 19.3 Tower compt + 2 82 811 2.19e+03 0.749 0 5.98 25.3 Tower compt + 3 81.8 811 2.19e+03 0.69 0 0.281 25.5 Tower compt + 4 74.7 777 2.19e+03 0.474 0 35.1 60.7 Tower compt + 5 73.2 767 2.19e+03 0.343 0 13.2 73.8 Tower compt + 6 73.9 767 2.2e+03 0.336 0 0.958 74.8 Tower compt + 7 78.2 764 2.2e+03 0.303 0 6.62 81.4 Tower compt + 8 82.9 765 2.21e+03 0.278 0 9.29 90.7 Tower compt + 9 103 752 2.23e+03 0.253 0 30.3 121 Tower compt + 10 103 751 2.23e+03 0.15 0 2.3 123 Tower compt + 11 86.5 758 2.23e+03 0.128 0 18 141 Tower compt + 12 86.3 763 2.23e+03 0 0.00711 4.98 146 Tower phot + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 154, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 86.3 763 2.23e+03 0.121 0 0 0 Tower initStep + 1 86.3 763 2.23e+03 0 0.121 0.0374 0.0374 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 153, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 86.5 758 2.23e+03 0.0219 0 0 0 Tower initStep + 1 86.5 758 2.23e+03 0 0.0219 0.00207 0.00207 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 152, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 103 751 2.23e+03 0.103 0 0 0 Tower initStep + 1 103 750 2.23e+03 0 0.103 0.0284 0.0284 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 151, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 103 752 2.23e+03 0.0247 0 0 0 Tower initStep + 1 103 752 2.23e+03 0 0.0247 0.00254 0.00254 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 150, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 82.9 765 2.21e+03 0.0249 0 0 0 Tower initStep + 1 82.9 765 2.21e+03 0 0.0249 0.00257 0.00257 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 149, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 78.2 764 2.2e+03 0.0338 0 0 0 Tower initStep + 1 78.2 764 2.2e+03 0 0.0338 0.00432 0.00432 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 148, Parent ID = 105 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 73.9 767 2.2e+03 0.00636 0 0 0 Tower initStep + 1 73.9 767 2.2e+03 0 0.00636 0.000267 0.000267 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 147, Parent ID = 105 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.6 826 2.21e+03 0.0596 0 0 0 Tower initStep - 1 89.6 826 2.21e+03 0 0.0596 0.0114 0.0114 Tower eIoni + 0 73.2 767 2.19e+03 0.131 0 0 0 Tower initStep + 1 73.2 767 2.19e+03 0 0.131 0.0423 0.0423 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 146, Parent ID = 105 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.6 826 2.21e+03 0.0152 0 0 0 Tower initStep - 1 89.6 826 2.21e+03 0 0.0152 0.00112 0.00112 Tower eIoni + 0 74.7 777 2.19e+03 0.216 0 0 0 Tower initStep + 1 74.7 777 2.19e+03 0 0.216 0.0941 0.0941 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 145, Parent ID = 105 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 87.3 827 2.21e+03 0.0143 0 0 0 Tower initStep - 1 87.3 827 2.21e+03 0 0.0143 0.00101 0.00101 Tower eIoni + 0 81.8 811 2.19e+03 0.0597 0 0 0 Tower initStep + 1 81.8 811 2.19e+03 0 0.0597 0.0114 0.0114 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 144, Parent ID = 105 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 87.4 826 2.21e+03 0.0343 0 0 0 Tower initStep - 1 87.4 826 2.21e+03 0 0.0343 0.00443 0.00443 Tower eIoni + 0 82 811 2.19e+03 0.0779 0 0 0 Tower initStep + 1 82 811 2.19e+03 0 0.0779 0.0179 0.0179 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 143, Parent ID = 105 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 88.7 827 2.21e+03 0.0387 0 0 0 Tower initStep - 1 88.7 827 2.21e+03 0 0.0387 0.00544 0.00544 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 142, Parent ID = 105 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 93.4 823 2.21e+03 0.0923 0 0 0 Tower initStep - 1 93.5 823 2.21e+03 0 0.0923 0.0238 0.0238 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 141, Parent ID = 105 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 90.1 819 2.21e+03 1.17 0 0 0 Tower initStep - 1 90.1 819 2.21e+03 0.85 0.106 0.114 0.114 Tower eBrem - 2 90.2 819 2.21e+03 0 0.85 0.649 0.763 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 148, Parent ID = 141 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 90.1 819 2.21e+03 0.212 0 0 0 Tower initStep - 1 92.5 819 2.21e+03 0.196 0 2.56 2.56 Tower compt - 2 93.9 817 2.21e+03 0.126 0 2.14 4.7 Tower compt - 3 78 814 2.21e+03 0.11 0 17.2 21.9 Tower compt - 4 73.4 821 2.21e+03 0 0.00711 7.84 29.8 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 152, Parent ID = 148 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 73.4 821 2.21e+03 0.103 0 0 0 Tower initStep - 1 73.4 821 2.21e+03 0 0.103 0.0284 0.0284 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 151, Parent ID = 148 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 78 814 2.21e+03 0.0161 0 0 0 Tower initStep - 1 78 814 2.21e+03 0 0.0161 0.00122 0.00122 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 150, Parent ID = 148 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 93.9 817 2.21e+03 0.0704 0 0 0 Tower initStep - 1 93.9 817 2.21e+03 0 0.0704 0.0151 0.0151 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 149, Parent ID = 148 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 92.5 819 2.21e+03 0.0156 0 0 0 Tower initStep - 1 92.5 819 2.21e+03 0 0.0156 0.00117 0.00117 Tower eIoni + 0 85.1 816 2.19e+03 0.602 0 0 0 Tower initStep + 1 85.1 816 2.19e+03 0 0.602 0.415 0.415 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 104, Parent ID = 101 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.8 823 2.21e+03 1.39 0 0 0 Tower initStep - 1 91.1 828 2.21e+03 0.607 0 5.44 5.44 Tower compt - 2 89.2 830 2.21e+03 0.427 0 2.81 8.25 Tower compt - 3 60.1 827 2.22e+03 0.167 0 30.5 38.8 Tower compt - 4 62.9 828 2.22e+03 0 0.00711 3.11 41.9 Tower phot + 0 89.8 823 2.21e+03 1.08 0 0 0 Tower initStep + 1 96.6 821 2.21e+03 0.402 0 7.15 7.15 Tower compt + 2 99.8 807 2.25e+03 0.19 0 40.8 47.9 Tower compt + 3 109 818 2.24e+03 0.163 0 14.1 62 Tower compt + 4 108 824 2.23e+03 0.101 0 11.3 73.3 Tower compt + 5 108 822 2.24e+03 0.0939 0 2.39 75.7 Tower compt + 6 108 822 2.24e+03 0 0.00711 0.351 76 Tower phot + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 160, Parent ID = 104 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 108 822 2.24e+03 0.0868 0 0 0 Tower initStep + 1 108 822 2.24e+03 0 0.0868 0.0214 0.0214 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 159, Parent ID = 104 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 108 822 2.24e+03 0.00722 0 0 0 Tower initStep + 1 108 822 2.24e+03 0 0.00722 0.000327 0.000327 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 158, Parent ID = 104 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 108 824 2.23e+03 0.0614 0 0 0 Tower initStep + 1 108 824 2.23e+03 0 0.0614 0.012 0.012 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 157, Parent ID = 104 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 109 818 2.24e+03 0.0277 0 0 0 Tower initStep + 1 109 818 2.24e+03 0 0.0277 0.00308 0.00308 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 156, Parent ID = 104 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 62.9 828 2.22e+03 0.16 0 0 0 Tower initStep - 1 62.9 828 2.22e+03 0 0.16 0.0588 0.0588 Tower eIoni + 0 99.8 807 2.25e+03 0.212 0 0 0 Tower initStep + 1 99.8 807 2.25e+03 0 0.212 0.0913 0.0913 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 155, Parent ID = 104 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 60.1 827 2.22e+03 0.26 0 0 0 Tower initStep - 1 60.1 827 2.22e+03 0 0.26 0.125 0.125 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 154, Parent ID = 104 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.2 830 2.21e+03 0.18 0 0 0 Tower initStep - 1 89.2 830 2.21e+03 0 0.18 0.0708 0.0708 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 153, Parent ID = 104 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 91.1 828 2.21e+03 0.783 0 0 0 Tower initStep - 1 91.2 828 2.21e+03 0 0.783 0.585 0.585 Tower eIoni + 0 96.6 821 2.21e+03 0.676 0 0 0 Tower initStep + 1 96.7 821 2.21e+03 0 0.676 0.484 0.484 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 103, Parent ID = 101 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.8 823 2.21e+03 1.4 0 0 0 Tower initStep - 1 118 788 2.17e+03 0.231 0 59 59 Tower compt - 2 116 790 2.17e+03 0.2 0 2.93 61.9 Tower compt - 3 116 793 2.17e+03 0.159 0 2.65 64.6 Tower compt - 4 119 795 2.17e+03 0.128 0 4.16 68.7 Tower compt - 5 119 798 2.17e+03 0.0947 0 5.58 74.3 Tower compt - 6 120 797 2.17e+03 0 0.00711 1.92 76.2 Tower phot + 0 89.8 823 2.21e+03 1.71 0 0 0 Tower initStep + 1 99.8 842 2.23e+03 0.695 0 30.1 30.1 Tower compt + 2 89.2 850 2.24e+03 0.301 0 18.2 48.3 Tower compt + 3 71.5 844 2.23e+03 0.219 0 21.2 69.5 Tower compt + 4 75.7 829 2.22e+03 0 0.00711 21.8 91.3 Tower phot + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 164, Parent ID = 103 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 75.7 829 2.22e+03 0.212 0 0 0 Tower initStep + 1 75.7 829 2.22e+03 0 0.212 0.0916 0.0916 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 163, Parent ID = 103 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 71.5 844 2.23e+03 0.0817 0 0 0 Tower initStep + 1 71.5 844 2.23e+03 0 0.0817 0.0194 0.0194 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 162, Parent ID = 103 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 120 797 2.17e+03 0.0875 0 0 0 Tower initStep - 1 120 797 2.17e+03 0 0.0875 0.0218 0.0218 Tower eIoni + 0 89.2 850 2.24e+03 0.394 0 0 0 Tower initStep + 1 89.2 850 2.24e+03 0 0.394 0.232 0.232 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 161, Parent ID = 103 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 119 798 2.17e+03 0.0336 0 0 0 Tower initStep - 1 119 798 2.17e+03 0 0.0336 0.00428 0.00428 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 160, Parent ID = 103 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 119 795 2.17e+03 0.0307 0 0 0 Tower initStep - 1 119 795 2.17e+03 0 0.0307 0.00366 0.00366 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 159, Parent ID = 103 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 116 793 2.17e+03 0.0414 0 0 0 Tower initStep - 1 116 793 2.17e+03 0 0.0414 0.00613 0.00613 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 158, Parent ID = 103 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 116 790 2.17e+03 0.0308 0 0 0 Tower initStep - 1 116 790 2.17e+03 0 0.0308 0.0037 0.0037 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 157, Parent ID = 103 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 118 788 2.17e+03 1.17 0 0 0 Tower initStep - 1 118 788 2.17e+03 0 1.17 0.958 0.958 Tower eIoni + 0 99.8 842 2.23e+03 1.02 0 0 0 Tower initStep + 1 99.9 842 2.23e+03 0 1.02 0.811 0.811 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 100, Parent ID = 34 @@ -4057,24 +4086,52 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 -17.8 831 2.09e+03 0.69 0 0 0 Tower initStep - 1 -19.1 841 2.09e+03 0.242 0 9.49 9.49 Tower compt - 2 -28.8 835 2.09e+03 0 0.00711 11.5 21 Tower phot + 1 -17.8 832 2.09e+03 0.571 0 0.258 0.258 Tower compt + 2 -10.6 850 2.09e+03 0.571 0 20 20.2 Tower CoupledTransportation + 3 0.241 877 2.1e+03 0.312 0 29.8 50 Tower compt + 4 3.92 877 2.1e+03 0.148 0 5.14 55.2 Tower compt + 5 -8.21 875 2.1e+03 0.13 0 12.6 67.7 Tower compt + 6 -9.23 875 2.1e+03 0 0.00711 1.4 69.1 Tower phot ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 164, Parent ID = 100 +* G4Track Information: Particle = e-, Track ID = 169, Parent ID = 100 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -28.8 835 2.09e+03 0.235 0 0 0 Tower initStep - 1 -28.8 835 2.09e+03 0 0.235 0.108 0.108 Tower eIoni + 0 -9.23 875 2.1e+03 0.123 0 0 0 Tower initStep + 1 -9.23 875 2.1e+03 0 0.123 0.0381 0.0381 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 163, Parent ID = 100 +* G4Track Information: Particle = e-, Track ID = 168, Parent ID = 100 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -19.1 841 2.09e+03 0.447 0 0 0 Tower initStep - 1 -19.1 841 2.09e+03 0 0.447 0.277 0.277 Tower eIoni + 0 -8.21 875 2.1e+03 0.0178 0 0 0 Tower initStep + 1 -8.21 875 2.1e+03 0 0.0178 0.00145 0.00145 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 167, Parent ID = 100 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 3.92 877 2.1e+03 0.165 0 0 0 Tower initStep + 1 3.93 877 2.1e+03 0 0.165 0.0615 0.0615 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 166, Parent ID = 100 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.241 877 2.1e+03 0.258 0 0 0 Tower initStep + 1 0.24 877 2.1e+03 0 0.258 0.124 0.124 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 165, Parent ID = 100 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -17.8 832 2.09e+03 0.119 0 0 0 Tower initStep + 1 -17.8 832 2.09e+03 0 0.119 0.0361 0.0361 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 99, Parent ID = 34 @@ -4082,9 +4139,42 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 -17.8 831 2.09e+03 1.15 0 0 0 Tower initStep - 1 -17.5 828 2.08e+03 0.307 0 8.94 8.94 Tower compt - 2 -9.66 826 2.09e+03 0.142 0 8.5 17.4 Tower compt - 3 -12.7 826 2.09e+03 0 0.00711 3.08 20.5 Tower phot + 1 -17.5 827 2.08e+03 0.87 0 11.3 11.3 Tower compt + 2 -15 821 2.08e+03 0.481 0 8.34 19.7 Tower compt + 3 -19.3 789 2.08e+03 0.226 0 33 52.7 Tower compt + 4 -21.5 790 2.08e+03 0 0.00711 2.32 55 Tower phot + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 173, Parent ID = 99 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -21.5 790 2.08e+03 0.219 0 0 0 Tower initStep + 1 -21.5 790 2.08e+03 0 0.219 0.0964 0.0964 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 172, Parent ID = 99 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -19.3 789 2.08e+03 0.255 0 0 0 Tower initStep + 1 -19.3 789 2.08e+03 0 0.255 0.121 0.121 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 171, Parent ID = 99 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -15 821 2.08e+03 0.389 0 0 0 Tower initStep + 1 -15 821 2.08e+03 0 0.389 0.227 0.227 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 170, Parent ID = 99 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -17.5 827 2.08e+03 0.282 0 0 0 Tower initStep + 1 -17.5 827 2.08e+03 0 0.282 0.142 0.142 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 98, Parent ID = 80 @@ -4092,9 +4182,11 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 -9.05 618 2.13e+03 0.511 0 0 0 Tower initStep - 1 -14.6 609 2.12e+03 0.202 0 17.3 17.3 Tower compt - 2 -13.5 608 2.12e+03 0.129 0 1.41 18.7 Tower compt - 3 -27.9 601 2.12e+03 0 0.00711 16.4 35.2 Tower phot + 1 -16.2 606 2.12e+03 0.228 0 22.5 22.5 Tower compt + 2 -20.6 608 2.12e+03 0.223 0 5.38 27.9 Tower compt + 3 -21.8 610 2.12e+03 0.147 0 1.65 29.5 Tower compt + 4 -18.9 612 2.12e+03 0.0941 0 3.57 33.1 Tower compt + 5 -20.5 610 2.12e+03 0 0.00711 2.31 35.4 Tower phot ********************************************************************************************************* * G4Track Information: Particle = gamma, Track ID = 97, Parent ID = 80 @@ -4102,17 +4194,22 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 -9.05 618 2.13e+03 0.511 0 0 0 Tower initStep - 1 -7.19 621 2.14e+03 0.23 0 5.81 5.81 Tower compt - 2 -0.0223 609 2.14e+03 0.179 0 13.3 19.1 Tower compt - 3 5.39 610 2.14e+03 0 0.00711 5.71 24.8 Tower phot + 1 -1.62 630 2.15e+03 0.477 0 23.3 23.3 Tower compt + 2 -1.13 631 2.16e+03 0.344 0 5.45 28.8 Tower compt + 3 -2.05 634 2.16e+03 0.201 0 3.35 32.1 Tower compt + 4 -15.7 628 2.16e+03 0.167 0 15.2 47.3 Tower compt + 5 -17.2 611 2.17e+03 0.149 0 20.6 67.9 Tower compt + 6 -17.1 609 2.17e+03 0.126 0 1.54 69.5 Tower compt + 7 -26 606 2.17e+03 0.0867 0 11.7 81.2 Tower compt + 8 -25.5 606 2.17e+03 0 0.00711 1.51 82.7 Tower phot ********************************************************************************************************* * G4Track Information: Particle = Fe55, Track ID = 111, Parent ID = 101 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 89.8 823 2.21e+03 0.000384 0 0 0 Tower initStep - 1 89.8 823 2.21e+03 0 0.000384 5.81e-06 5.81e-06 Tower ionIoni + 0 89.8 823 2.21e+03 0.000854 0 0 0 Tower initStep + 1 89.8 823 2.21e+03 0 0.000854 8.66e-06 8.66e-06 Tower ionIoni ********************************************************************************************************* * G4Track Information: Particle = Fe56, Track ID = 102, Parent ID = 34 @@ -4123,76 +4220,108 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu 1 -17.8 831 2.09e+03 0 0.0352 5.65e-05 5.65e-05 Tower ionIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 173, Parent ID = 97 +* G4Track Information: Particle = e-, Track ID = 186, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 5.39 610 2.14e+03 0.172 0 0 0 Tower initStep - 1 5.4 610 2.14e+03 0 0.172 0.0655 0.0655 Tower eIoni + 0 -25.5 606 2.17e+03 0.0796 0 0 0 Tower initStep + 1 -25.5 606 2.17e+03 0 0.0796 0.0185 0.0185 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 172, Parent ID = 97 +* G4Track Information: Particle = e-, Track ID = 185, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0223 609 2.14e+03 0.0509 0 0 0 Tower initStep - 1 -0.0226 609 2.14e+03 0 0.0509 0.0087 0.0087 Tower eIoni + 0 -26 606 2.17e+03 0.0394 0 0 0 Tower initStep + 1 -26 606 2.17e+03 0 0.0394 0.00562 0.00562 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 171, Parent ID = 97 +* G4Track Information: Particle = e-, Track ID = 184, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -7.19 621 2.14e+03 0.281 0 0 0 Tower initStep - 1 -7.19 621 2.14e+03 0 0.281 0.141 0.141 Tower eIoni + 0 -17.1 609 2.17e+03 0.0225 0 0 0 Tower initStep + 1 -17.1 609 2.17e+03 0 0.0225 0.00217 0.00217 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 170, Parent ID = 98 +* G4Track Information: Particle = e-, Track ID = 183, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -27.9 601 2.12e+03 0.122 0 0 0 Tower initStep - 1 -27.9 601 2.12e+03 0 0.122 0.0377 0.0377 Tower eIoni + 0 -17.2 611 2.17e+03 0.0184 0 0 0 Tower initStep + 1 -17.2 611 2.17e+03 0 0.0184 0.00154 0.00154 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 169, Parent ID = 98 +* G4Track Information: Particle = e-, Track ID = 182, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -13.5 608 2.12e+03 0.0729 0 0 0 Tower initStep - 1 -13.5 608 2.12e+03 0 0.0729 0.016 0.016 Tower eIoni + 0 -15.7 628 2.16e+03 0.0342 0 0 0 Tower initStep + 1 -15.7 628 2.16e+03 0 0.0342 0.00441 0.00441 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 168, Parent ID = 98 +* G4Track Information: Particle = e-, Track ID = 181, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -14.6 609 2.12e+03 0.309 0 0 0 Tower initStep - 1 -14.6 609 2.12e+03 0 0.309 0.162 0.162 Tower eIoni + 0 -2.05 634 2.16e+03 0.143 0 0 0 Tower initStep + 1 -2.05 634 2.16e+03 0 0.143 0.049 0.049 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 167, Parent ID = 99 +* G4Track Information: Particle = e-, Track ID = 180, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -12.7 826 2.09e+03 0.135 0 0 0 Tower initStep - 1 -12.7 826 2.09e+03 0 0.135 0.0447 0.0447 Tower eIoni + 0 -1.13 631 2.16e+03 0.132 0 0 0 Tower initStep + 1 -1.12 631 2.16e+03 0 0.132 0.043 0.043 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 166, Parent ID = 99 +* G4Track Information: Particle = e-, Track ID = 179, Parent ID = 97 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -9.66 826 2.09e+03 0.165 0 0 0 Tower initStep - 1 -9.65 826 2.09e+03 0 0.165 0.0616 0.0616 Tower eIoni + 0 -1.62 630 2.15e+03 0.0343 0 0 0 Tower initStep + 1 -1.61 630 2.15e+03 0 0.0343 0.00444 0.00444 Tower eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 165, Parent ID = 99 +* G4Track Information: Particle = e-, Track ID = 178, Parent ID = 98 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -17.5 828 2.08e+03 0.845 0 0 0 Tower initStep - 1 -17.6 828 2.08e+03 0 0.845 0.644 0.644 Tower eIoni + 0 -20.5 610 2.12e+03 0.087 0 0 0 Tower initStep + 1 -20.5 610 2.12e+03 0 0.087 0.0215 0.0215 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 177, Parent ID = 98 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -18.9 612 2.12e+03 0.0525 0 0 0 Tower initStep + 1 -18.9 612 2.12e+03 0 0.0525 0.00917 0.00917 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 176, Parent ID = 98 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -21.8 610 2.12e+03 0.0765 0 0 0 Tower initStep + 1 -21.8 610 2.12e+03 0 0.0765 0.0173 0.0173 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 175, Parent ID = 98 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -20.6 608 2.12e+03 0.00453 0 0 0 Tower initStep + 1 -20.6 608 2.12e+03 0 0.00453 0.000157 0.000157 Tower eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 174, Parent ID = 98 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -16.2 606 2.12e+03 0.283 0 0 0 Tower initStep + 1 -16.2 606 2.12e+03 0 0.283 0.143 0.143 Tower eIoni ********************************************************************************************************* * G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 @@ -4200,115 +4329,331 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 30 100 1e+03 0.0147 104 104 DriftChamberPhysical CoupledTransportation - 2 0.0433 158 527 1e+03 0.00814 446 550 DriftChamberPhysical hIoni - 3 0.0701 197 655 1e+03 0.00283 134 684 DriftChamberPhysical hIoni - 4 0.116 270 900 1e+03 0.0052 255 940 WorldPhysical CoupledTransportation - 5 0.126 285 950 1e+03 0.0085 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 6 0.126 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.0701 197 655 0.00348 0 0 0 DriftChamberPhysical initStep - 1 0.945 195 656 0.0011 0.00238 1.74 1.74 DriftChamberPhysical eIoni - 2 1.19 195 656 0 0.0011 0.347 2.08 DriftChamberPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.0433 158 527 0.00127 0 0 0 DriftChamberPhysical initStep - 1 -0.233 158 527 0 0.00127 0.434 0.434 DriftChamberPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 2.36e-05 1.77 5.91 1e+03 0.000701 6.17 6.17 WorldPhysical hIoni - 2 0.00521 30 100 1e+03 0.0107 98.2 104 DriftChamberPhysical CoupledTransportation - 3 -0.0105 72.6 242 1e+03 0.00385 148 253 DriftChamberPhysical hIoni - 4 -0.0653 270 900 1e+03 0.0129 687 940 WorldPhysical CoupledTransportation - 5 -0.0681 285 950 1e+03 0.00617 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 6 -0.0681 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0105 72.6 242 0.00241 0 0 0 DriftChamberPhysical initStep - 1 -0.00606 71.8 242 0 0.00241 1.06 1.06 DriftChamberPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 2.36e-05 1.77 5.91 0.00494 0 0 0 WorldPhysical initStep - 1 -0.274 1.96 5.88 0 0.00494 0.75 0.75 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 4.11e-06 0.177 0.591 1e+03 0.000519 0.617 0.617 WorldPhysical hIoni - 2 0.00188 22.1 73.7 1e+03 0.0096 76.4 77 WorldPhysical hIoni - 3 0.00186 30 100 1e+03 0.00284 27.4 104 DriftChamberPhysical CoupledTransportation - 4 -0.00862 96.8 323 1e+03 0.00582 233 337 DriftChamberPhysical hIoni - 5 -0.0342 180 601 1e+03 0.00785 290 627 DriftChamberPhysical hIoni - 6 -0.0362 186 622 1e+03 0.000139 22.1 649 DriftChamberPhysical hIoni - 7 -0.0732 270 900 1e+03 0.00547 290 940 WorldPhysical CoupledTransportation - 8 -0.104 285 950 1e+03 0.00662 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 9 -0.104 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 6, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0362 186 622 0.00305 0 0 0 DriftChamberPhysical initStep - 1 1 187 622 0 0.00305 1.55 1.55 DriftChamberPhysical eIoni + 1 5.17e-05 4.02 13.4 1e+03 0.00222 14 14 WorldPhysical hIoni + 2 0.00336 20 66.6 1e+03 0.00761 55.5 69.5 WorldPhysical hIoni + 3 0.00354 30 100 1e+03 0.00605 34.9 104 DriftChamberPhysical CoupledTransportation + 4 0.0037 39.2 131 1e+03 0.00106 31.9 136 DriftChamberPhysical hIoni + 5 0.0298 270 900 1e+03 0.0194 803 940 WorldPhysical CoupledTransportation + 6 0.0328 280 933 1e+03 0.00552 34.4 974 WorldPhysical hIoni + 7 0.0426 285 950 1e+03 0.00215 17.8 992 WorldPhysical fastSimProcess_parallelGeom + 8 0.0426 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0342 180 601 0.0014 0 0 0 DriftChamberPhysical initStep - 1 0.285 180 601 0 0.0014 0.506 0.506 DriftChamberPhysical eIoni + 0 0.0328 280 933 0.446 0 0 0 WorldPhysical initStep + 1 -9.19 275 943 0.436 0.00194 14.7 14.7 WorldPhysical eIoni + 2 -15.7 271 953 0.434 0.00137 12.5 27.2 WorldPhysical eIoni + 3 -36.4 262 977 0.424 0.00724 33.6 60.8 WorldPhysical eIoni + 4 -40.5 261 982 0.422 0.00087 6.62 67.4 WorldPhysical eIoni + 5 -52.7 254 1e+03 0.418 0.00366 22.6 90 Crystal CoupledTransportation + 6 -52.7 254 1e+03 0.407 0.0111 0.0191 90 Crystal msc + 7 -52.7 254 1e+03 0.397 0.0103 0.0237 90 Crystal msc + 8 -52.7 254 1e+03 0.39 0.0069 0.0135 90 WorldPhysical CoupledTransportation + 9 -105 197 972 0.377 0.0122 82.4 172 WorldPhysical eIoni + 10 -139 165 953 0.364 0.00955 50.5 223 WorldPhysical eIoni + 11 -139 164 953 0.364 1.47e-05 1.43 224 WorldPhysical eIoni + 12 -144 156 948 0.36 0.00131 10.8 235 WorldPhysical eIoni + 13 -143 150 943 0.357 0.000794 7.09 242 WorldPhysical eIoni + 14 -137 129 924 0.351 0.00551 29.8 272 WorldPhysical eIoni + 15 -134 114 908 0.346 0.00406 22.4 294 WorldPhysical eIoni + 16 -131 103 900 0.344 0.00214 13.4 308 DriftChamberPhysical CoupledTransportation + 17 129 -612 149 0.314 0.0288 1.07e+03 1.38e+03 DriftChamberPhysical eIoni + 18 155 -694 100 0.311 0.00268 98.6 1.48e+03 WorldPhysical CoupledTransportation + 19 232 -779 14.7 0.282 0.028 144 1.63e+03 WorldPhysical eIoni + 20 308 -769 100 0.263 0.0193 126 1.75e+03 DriftChamberPhysical CoupledTransportation + 21 399 -628 501 0.248 0.0144 439 2.19e+03 DriftChamberPhysical eIoni + 22 435 -520 661 0.241 0.00613 197 2.39e+03 DriftChamberPhysical eIoni + 23 177 -334 767 0.21 0.0134 338 2.73e+03 DriftChamberPhysical eIoni + 24 -149 112 900 0.189 0.0208 584 3.31e+03 WorldPhysical CoupledTransportation + 25 -163 134 914 0.18 0.00762 30 3.34e+03 WorldPhysical eIoni + 26 -175 147 919 0.166 0.00518 18.3 3.36e+03 WorldPhysical eIoni + 27 -177 151 924 0.164 0.000853 6.78 3.37e+03 WorldPhysical eIoni + 28 -178 153 926 0.159 0.000496 2.87 3.37e+03 WorldPhysical eIoni + 29 -181 161 932 0.156 0.00184 10.9 3.38e+03 WorldPhysical eIoni + 30 -226 207 954 0.134 0.018 71.5 3.45e+03 WorldPhysical eIoni + 31 -255 208 972 0.124 0.00792 36.9 3.49e+03 WorldPhysical eIoni + 32 -262 206 973 0.119 0.00198 6.72 3.49e+03 WorldPhysical eIoni + 33 -262 206 973 0.117 0.000145 0.842 3.49e+03 WorldPhysical eIoni + 34 -275 208 979 0.111 0.00554 14 3.51e+03 WorldPhysical eIoni + 35 -306 206 999 0.0994 0.012 43.6 3.55e+03 WorldPhysical eIoni + 36 -328 207 973 0.086 0.0134 36.1 3.59e+03 WorldPhysical eIoni + 37 -340 204 954 0.0776 0.00836 24.4 3.61e+03 WorldPhysical eIoni + 38 -351 203 939 0.0651 0.00638 19.8 3.63e+03 WorldPhysical eIoni + 39 -348 217 931 0.0575 0.00761 17.9 3.65e+03 WorldPhysical eIoni + 40 -339 224 922 0.0509 0.0066 14.6 3.67e+03 WorldPhysical eIoni + 41 -340 225 921 0.0496 0.000187 1.71 3.67e+03 WorldPhysical eIoni + 42 -345 226 911 0.0432 0.00637 11.6 3.68e+03 WorldPhysical eIoni + 43 -346 228 906 0.0368 0.00282 6.1 3.68e+03 WorldPhysical eIoni + 44 -351 232 905 0.0322 0.00454 7.37 3.69e+03 WorldPhysical eIoni + 45 -351 232 905 0.0219 0.000375 0.548 3.69e+03 WorldPhysical eIoni + 46 -352 231 906 0.0168 0.00328 2.21 3.69e+03 WorldPhysical eIoni + 47 -352 231 903 0.0111 0.00578 2.87 3.7e+03 WorldPhysical eIoni + 48 -351 231 903 0.00722 0.00383 1.99 3.7e+03 WorldPhysical eIoni + 49 -351 231 902 0.00256 0.00466 1.36 3.7e+03 WorldPhysical eIoni + 50 -351 231 902 0 0.00256 0.241 3.7e+03 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 31, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -352 231 906 0.00174 0 0 0 WorldPhysical initStep + 1 -352 231 906 0 0.00174 0.13 0.13 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 30, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -351 232 905 0.01 0 0 0 WorldPhysical initStep + 1 -351 233 905 0.00717 0.000997 0.781 0.781 WorldPhysical eIoni + 2 -351 233 904 0.00235 0.00482 1.34 2.13 WorldPhysical eIoni + 3 -351 233 904 0 0.00235 0.21 2.34 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 32, Parent ID = 30 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -351 233 905 0.00185 0 0 0 WorldPhysical initStep + 1 -351 233 905 0 0.00185 0.144 0.144 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 29, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -346 228 906 0.00359 0 0 0 WorldPhysical initStep + 1 -346 228 906 0 0.00359 0.427 0.427 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 28, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -340 225 921 0.00111 0 0 0 WorldPhysical initStep + 1 -340 225 921 0 0.00111 0.0664 0.0664 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 27, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -351 203 939 0.00614 0 0 0 WorldPhysical initStep + 1 -351 203 940 0 0.00614 1.1 1.1 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 26, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -262 206 973 0.00207 0 0 0 WorldPhysical initStep + 1 -262 206 973 0 0.00207 0.171 0.171 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 25, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -262 206 973 0.00266 0 0 0 WorldPhysical initStep + 1 -262 206 972 0 0.00266 0.257 0.257 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 24, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -255 208 972 0.00266 0 0 0 WorldPhysical initStep + 1 -255 208 972 0 0.00266 0.258 0.258 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 23, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -226 207 954 0.00337 0 0 0 WorldPhysical initStep + 1 -227 207 954 0 0.00337 0.384 0.384 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 22, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -181 161 932 0.001 0 0 0 WorldPhysical initStep + 1 -181 161 932 0 0.001 0.0572 0.0572 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 21, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -178 153 926 0.00457 0 0 0 WorldPhysical initStep + 1 -179 153 926 0 0.00457 0.654 0.654 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 20, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -177 151 924 0.00126 0 0 0 WorldPhysical initStep + 1 -177 151 924 0 0.00126 0.0801 0.0801 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 19, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -175 147 919 0.0094 0 0 0 WorldPhysical initStep + 1 -175 147 919 0.00468 0.000521 0.376 0.376 WorldPhysical eIoni + 2 -175 146 919 0 0.00468 0.683 1.06 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 33, Parent ID = 19 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -175 147 919 0.00419 0 0 0 WorldPhysical initStep + 1 -175 147 919 0 0.00419 0.562 0.562 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 18, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -163 134 914 0.00114 0 0 0 WorldPhysical initStep + 1 -163 134 914 0 0.00114 0.069 0.069 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 17, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 177 -334 767 0.0176 0 0 0 DriftChamberPhysical initStep + 1 174 -338 776 0.0151 0.00245 10.8 10.8 DriftChamberPhysical eIoni + 2 170 -340 782 0.013 0.00214 8.59 19.4 DriftChamberPhysical eIoni + 3 169 -344 788 0.0104 0.00261 6.85 26.3 DriftChamberPhysical eIoni + 4 168 -345 792 0.00943 0.000936 5.04 31.3 DriftChamberPhysical eIoni + 5 168 -347 796 0.00856 0.000878 4.47 35.8 DriftChamberPhysical eIoni + 6 169 -349 799 0.00592 0.00264 3.98 39.8 DriftChamberPhysical eIoni + 7 170 -350 801 0.00439 0.00153 2.71 42.5 DriftChamberPhysical eIoni + 8 170 -351 803 0.00243 0.00195 2.1 44.6 DriftChamberPhysical eIoni + 9 170 -352 803 0 0.00243 1.23 45.8 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 16, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 435 -520 661 0.00118 0 0 0 DriftChamberPhysical initStep + 1 436 -520 661 0 0.00118 0.389 0.389 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 15, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 232 -779 14.7 0.00147 0 0 0 WorldPhysical initStep + 1 232 -779 14.6 0 0.00147 0.1 0.1 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 14, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 129 -612 149 0.00158 0 0 0 DriftChamberPhysical initStep + 1 128 -612 148 0 0.00158 0.616 0.616 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 13, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -137 129 924 0.00123 0 0 0 WorldPhysical initStep + 1 -137 129 924 0 0.00123 0.0766 0.0766 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 12, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -143 150 943 0.00197 0 0 0 WorldPhysical initStep + 1 -143 150 943 0 0.00197 0.157 0.157 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 11, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -144 156 948 0.00216 0 0 0 WorldPhysical initStep + 1 -144 156 948 0 0.00216 0.183 0.183 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 10, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -139 165 953 0.00433 0 0 0 WorldPhysical initStep + 1 -139 165 953 0 0.00433 0.594 0.594 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 9, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -40.5 261 982 0.00186 0 0 0 WorldPhysical initStep + 1 -40.5 261 982 0 0.00186 0.144 0.144 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 8, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -36.4 262 977 0.0023 0 0 0 WorldPhysical initStep + 1 -36.5 262 977 0 0.0023 0.203 0.203 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 7, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -15.7 271 953 0.00105 0 0 0 WorldPhysical initStep + 1 -15.6 271 953 0 0.00105 0.0612 0.0612 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 6, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -9.19 275 943 0.00803 0 0 0 WorldPhysical initStep + 1 -9.88 275 943 0.00378 0.00425 1.51 1.51 WorldPhysical eIoni + 2 -9.94 275 942 0 0.00378 0.469 1.98 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.00862 96.8 323 0.00212 0 0 0 DriftChamberPhysical initStep - 1 0.427 97.3 323 0.00136 0.000761 0.957 0.957 DriftChamberPhysical eIoni - 2 0.765 97.4 323 0 0.00136 0.487 1.44 DriftChamberPhysical eIoni + 0 0.0037 39.2 131 0.00165 0 0 0 DriftChamberPhysical initStep + 1 -0.423 39 131 0 0.00165 0.665 0.665 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.00188 22.1 73.7 0.00365 0 0 0 WorldPhysical initStep - 1 -0.184 22.2 73.7 0 0.00365 0.441 0.441 WorldPhysical eIoni + 0 0.00336 20 66.6 0.00226 0 0 0 WorldPhysical initStep + 1 0.0217 19.9 66.6 0 0.00226 0.197 0.197 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 4.11e-06 0.177 0.591 0.00103 0 0 0 WorldPhysical initStep - 1 -0.00546 0.155 0.598 0 0.00103 0.0597 0.0597 WorldPhysical eIoni + 0 5.17e-05 4.02 13.4 0.00124 0 0 0 WorldPhysical initStep + 1 -0.0315 4.02 13.4 0 0.00124 0.0777 0.0777 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 @@ -4316,183 +4661,449 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 30 100 1e+03 0.0129 104 104 DriftChamberPhysical CoupledTransportation - 2 0.165 270 900 1e+03 0.0204 835 940 WorldPhysical CoupledTransportation - 3 0.169 276 920 1e+03 0.00278 20.8 960 WorldPhysical hIoni - 4 0.173 285 950 1e+03 0.00494 31.4 992 WorldPhysical fastSimProcess_parallelGeom - 5 0.173 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + 1 0.000979 2.53 8.44 1e+03 0.0023 8.81 8.81 WorldPhysical hIoni + 2 0.0291 30 100 1e+03 0.0151 95.6 104 DriftChamberPhysical CoupledTransportation + 3 0.111 105 351 1e+03 0.00438 262 366 DriftChamberPhysical hIoni + 4 0.195 183 611 1e+03 0.00509 272 638 DriftChamberPhysical hIoni + 5 0.219 214 713 1e+03 0.00139 106 744 DriftChamberPhysical hIoni + 6 0.24 236 788 1e+03 0.00117 78.3 822 DriftChamberPhysical hIoni + 7 0.276 270 900 1e+03 0.00279 117 940 WorldPhysical CoupledTransportation + 8 0.284 278 927 1e+03 0.00249 28.7 968 WorldPhysical hIoni + 9 0.292 285 950 1e+03 0.00464 23.5 992 WorldPhysical fastSimProcess_parallelGeom + 10 0.292 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +* G4Track Information: Particle = e-, Track ID = 7, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.169 276 920 0.00126 0 0 0 WorldPhysical initStep - 1 0.179 276 920 0 0.00126 0.0794 0.0794 WorldPhysical eIoni + 0 0.284 278 927 0.00154 0 0 0 WorldPhysical initStep + 1 0.274 278 927 0 0.00154 0.108 0.108 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +* G4Track Information: Particle = e-, Track ID = 6, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -30 100 1e+03 0.0131 104 104 DriftChamberPhysical CoupledTransportation - 2 -0.0191 -270 900 1e+03 0.0168 835 940 WorldPhysical CoupledTransportation - 3 -0.0239 -285 950 1e+03 0.0075 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 4 -0.0239 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + 0 0.24 236 788 0.00207 0 0 0 DriftChamberPhysical initStep + 1 -0.31 236 788 0 0.00207 0.968 0.968 DriftChamberPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -30 100 1e+03 0.0149 104 104 DriftChamberPhysical CoupledTransportation - 2 0.0526 -69.9 233 1e+03 0.00278 139 243 DriftChamberPhysical hIoni - 3 0.232 -220 734 1e+03 0.0102 523 766 DriftChamberPhysical hIoni - 4 0.273 -270 900 1e+03 0.00344 174 940 WorldPhysical CoupledTransportation - 5 0.285 -285 950 1e+03 0.00673 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 6 0.285 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.232 -220 734 0.00292 0 0 0 DriftChamberPhysical initStep - 1 1.42 -220 734 0.00119 0.00174 1.49 1.49 DriftChamberPhysical eIoni - 2 1.35 -220 734 0 0.00119 0.391 1.88 DriftChamberPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.0526 -69.9 233 0.00572 0 0 0 DriftChamberPhysical initStep - 1 2.32 -69.2 233 0.00423 0.00149 2.63 2.63 DriftChamberPhysical eIoni - 2 4.02 -68.6 233 0.0028 0.00142 2.04 4.67 DriftChamberPhysical eIoni - 3 4.44 -67.6 234 0.00153 0.00128 1.43 6.1 DriftChamberPhysical eIoni - 4 4.52 -67.7 233 0 0.00153 0.586 6.68 DriftChamberPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -12.7 42.2 1e+03 0.00685 44.1 44.1 WorldPhysical hIoni - 2 0.00256 -30 100 1e+03 0.0086 60.3 104 DriftChamberPhysical CoupledTransportation - 3 -0.016 -270 900 1e+03 0.0173 835 940 WorldPhysical CoupledTransportation - 4 -0.018 -285 950 1e+03 0.00534 52.2 992 WorldPhysical fastSimProcess_parallelGeom - 5 -0.018 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 -12.7 42.2 0.00375 0 0 0 WorldPhysical initStep - 1 -0.0312 -12.5 42.3 0 0.00375 0.457 0.457 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -13.5 45 1e+03 0.00619 47 47 WorldPhysical hIoni - 2 0.0052 -30 100 1e+03 0.00561 57.4 104 DriftChamberPhysical CoupledTransportation - 3 -0.0155 -270 900 1e+03 0.0181 835 940 WorldPhysical CoupledTransportation - 4 -0.0155 -273 911 1e+03 0.00108 11.1 951 WorldPhysical hIoni - 5 -0.0171 -285 950 1e+03 0.0049 41.1 992 WorldPhysical fastSimProcess_parallelGeom - 6 -0.0171 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0155 -273 911 0.00165 0 0 0 WorldPhysical initStep - 1 0.0216 -273 911 0 0.00165 0.12 0.12 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 -13.5 45 0.00268 0 0 0 WorldPhysical initStep - 1 -0.0829 -13.4 45.1 0 0.00268 0.26 0.26 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -30 100 1e+03 0.0162 104 104 DriftChamberPhysical CoupledTransportation - 2 -0.0365 -270 900 1e+03 0.0195 835 940 WorldPhysical CoupledTransportation - 3 -0.0359 -277 922 1e+03 0.00274 23.2 963 WorldPhysical hIoni - 4 -0.0356 -285 948 1e+03 0.00338 27.2 990 WorldPhysical hIoni - 5 -0.0357 -285 950 1e+03 0.000871 1.81 992 WorldPhysical fastSimProcess_parallelGeom - 6 -0.0357 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0356 -285 948 0.00186 0 0 0 WorldPhysical initStep - 1 0.00265 -285 948 0 0.00186 0.144 0.144 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0359 -277 922 0.00167 0 0 0 WorldPhysical initStep - 1 -0.083 -277 922 0 0.00167 0.122 0.122 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -25.7 42.9 1e+03 0.00709 50 50 WorldPhysical hIoni - 2 0.00514 -60 100 1e+03 0.00993 66.6 117 DriftChamberPhysical CoupledTransportation - 3 -0.0249 -454 757 1e+03 0.0145 766 882 DriftChamberPhysical hIoni - 4 -0.025 -465 776 1e+03 0.000227 22.4 905 DriftChamberPhysical hIoni - 5 -0.0287 -540 900 1e+03 0.00425 145 1.05e+03 WorldPhysical CoupledTransportation - 6 -0.0315 -570 950 1e+03 0.00885 58.3 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - 7 -0.0315 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 0 0.219 214 713 0.00243 0 0 0 DriftChamberPhysical initStep + 1 -0.599 214 712 0 0.00243 1.23 1.23 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.025 -465 776 0.00853 0 0 0 DriftChamberPhysical initStep - 1 0.945 -469 774 0.00609 0.00243 3.96 3.96 DriftChamberPhysical eIoni - 2 0.878 -471 774 0.00512 0.000977 2.79 6.75 DriftChamberPhysical eIoni - 3 0.68 -473 774 0.00274 0.00237 2.38 9.13 DriftChamberPhysical eIoni - 4 -0.365 -474 774 0 0.00274 1.4 10.5 DriftChamberPhysical eIoni + 0 0.195 183 611 0.00214 0 0 0 DriftChamberPhysical initStep + 1 -0.338 183 611 0 0.00214 1.02 1.02 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0249 -454 757 0.00279 0 0 0 DriftChamberPhysical initStep - 1 0.834 -454 756 0.00146 0.00133 1.43 1.43 DriftChamberPhysical eIoni - 2 0.73 -454 756 0 0.00146 0.545 1.97 DriftChamberPhysical eIoni + 0 0.111 105 351 0.00284 0 0 0 DriftChamberPhysical initStep + 1 -1 106 351 0 0.00284 1.45 1.45 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 -25.7 42.9 0.00197 0 0 0 WorldPhysical initStep - 1 0.0213 -25.8 42.9 0 0.00197 0.158 0.158 WorldPhysical eIoni + 0 0.000979 2.53 8.44 0.00248 0 0 0 WorldPhysical initStep + 1 -0.0156 2.63 8.41 0 0.00248 0.23 0.23 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 -0.00051 4.61 15.4 1e+03 0.00169 16.1 16.1 WorldPhysical hIoni + 2 -0.00201 30 100 1e+03 0.0126 88.4 104 DriftChamberPhysical CoupledTransportation + 3 -0.209 271 900 1e+03 0.0187 835 940 WorldPhysical CoupledTransportation + 4 -0.211 272 905 1e+03 0.000641 5.12 945 WorldPhysical hIoni + 5 -0.233 286 950 1e+03 0.00783 47.1 992 WorldPhysical fastSimProcess_parallelGeom + 6 -0.233 286 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.211 272 905 0.00341 0 0 0 WorldPhysical initStep + 1 -0.0392 272 905 0 0.00341 0.392 0.392 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.00051 4.61 15.4 0.0106 0 0 0 WorldPhysical initStep + 1 0.032 3.52 15.8 0.00535 0.00521 1.92 1.92 WorldPhysical eIoni + 2 -0.309 3.34 15.8 0 0.00535 0.865 2.78 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 29.4 98 1e+03 0.0138 102 102 WorldPhysical hIoni + 2 0.000418 30 100 1e+03 0.000454 2.1 104 DriftChamberPhysical CoupledTransportation + 3 0.0156 53.4 178 1e+03 0.0017 81.6 186 DriftChamberPhysical hIoni + 4 0.0672 141 469 1e+03 0.00599 304 490 DriftChamberPhysical hIoni + 5 0.114 270 900 1e+03 0.00947 450 940 WorldPhysical CoupledTransportation + 6 0.119 285 950 1e+03 0.00646 52.2 992 WorldPhysical fastSimProcess_parallelGeom + 7 0.119 285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0672 141 469 0.00507 0 0 0 DriftChamberPhysical initStep + 1 0.314 139 470 0.00363 0.00144 2.37 2.37 DriftChamberPhysical eIoni + 2 0.661 138 471 0.00171 0.00192 1.8 4.17 DriftChamberPhysical eIoni + 3 0.816 137 471 0 0.00171 0.702 4.87 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0156 53.4 178 0.00178 0 0 0 DriftChamberPhysical initStep + 1 0.352 53 178 0 0.00178 0.749 0.749 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 29.4 98 0.00537 0 0 0 WorldPhysical initStep + 1 -0.367 29.5 98 0 0.00537 0.87 0.87 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 1.93e-05 -0.279 0.929 1e+03 0.000116 0.97 0.97 WorldPhysical hIoni + 2 0.00551 -30 100 1e+03 0.0131 103 104 DriftChamberPhysical CoupledTransportation + 3 0.0906 -176 586 1e+03 0.0113 508 612 DriftChamberPhysical hIoni + 4 0.117 -228 761 1e+03 0.00392 182 795 DriftChamberPhysical hIoni + 5 0.135 -270 900 1e+03 0.00368 145 940 WorldPhysical CoupledTransportation + 6 0.141 -285 950 1e+03 0.0051 52.2 992 WorldPhysical fastSimProcess_parallelGeom + 7 0.141 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.117 -228 761 0.0104 0 0 0 DriftChamberPhysical initStep + 1 0.717 -226 762 0.00611 0.000588 2.95 2.95 DriftChamberPhysical eIoni + 2 1.96 -225 764 0.0046 0.00151 2.79 5.75 DriftChamberPhysical eIoni + 3 3.49 -224 765 0.00311 0.00149 2.18 7.93 DriftChamberPhysical eIoni + 4 4.37 -224 766 0 0.00311 1.58 9.5 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 4 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.717 -226 762 0.00372 0 0 0 DriftChamberPhysical initStep + 1 -0.111 -224 762 0.00177 0.00195 1.84 1.84 DriftChamberPhysical eIoni + 2 -0.424 -224 763 0 0.00177 0.744 2.58 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0906 -176 586 0.00146 0 0 0 DriftChamberPhysical initStep + 1 0.416 -176 586 0 0.00146 0.545 0.545 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 1.93e-05 -0.279 0.929 0.00103 0 0 0 WorldPhysical initStep + 1 -0.0216 -0.269 0.933 0 0.00103 0.0594 0.0594 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 -4.36e-06 -0.693 2.31 1e+03 0.000202 2.41 2.41 WorldPhysical hIoni + 2 -0.00013 -2.36 7.86 1e+03 0.000509 5.79 8.2 WorldPhysical hIoni + 3 -0.000666 -5.02 16.8 1e+03 0.000792 9.28 17.5 WorldPhysical hIoni + 4 -0.0027 -19.5 65 1e+03 0.0066 50.4 67.9 WorldPhysical hIoni + 5 -0.0021 -30 100 1e+03 0.00508 36.5 104 DriftChamberPhysical CoupledTransportation + 6 0.045 -135 451 1e+03 0.00849 367 471 DriftChamberPhysical hIoni + 7 0.0665 -210 701 1e+03 0.00543 261 732 DriftChamberPhysical hIoni + 8 0.0676 -215 715 1e+03 0.000221 15 747 DriftChamberPhysical hIoni + 9 0.0767 -270 900 1e+03 0.00329 193 940 WorldPhysical CoupledTransportation + 10 0.0781 -280 935 1e+03 0.00715 36.4 976 WorldPhysical hIoni + 11 0.0798 -285 950 1e+03 0.00255 15.8 992 WorldPhysical fastSimProcess_parallelGeom + 12 0.0798 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 9, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0781 -280 935 0.00133 0 0 0 WorldPhysical initStep + 1 0.11 -280 935 0 0.00133 0.0865 0.0865 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 8, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0676 -215 715 0.00115 0 0 0 DriftChamberPhysical initStep + 1 0.284 -215 715 0 0.00115 0.37 0.37 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 7, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0665 -210 701 0.00109 0 0 0 DriftChamberPhysical initStep + 1 -0.0614 -210 701 0 0.00109 0.344 0.344 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 6, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.045 -135 451 0.00111 0 0 0 DriftChamberPhysical initStep + 1 -0.167 -135 451 0 0.00111 0.354 0.354 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.0027 -19.5 65 0.00488 0 0 0 WorldPhysical initStep + 1 0.0267 -19.8 64.9 0.00181 0.00207 0.496 0.496 WorldPhysical eIoni + 2 0.0803 -19.8 64.9 0 0.00181 0.138 0.634 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 10, Parent ID = 5 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0267 -19.8 64.9 0.001 0 0 0 WorldPhysical initStep + 1 0.0331 -19.8 65 0 0.001 0.0573 0.0573 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.000666 -5.02 16.8 0.0016 0 0 0 WorldPhysical initStep + 1 -0.0452 -5.01 16.8 0 0.0016 0.114 0.114 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.00013 -2.36 7.86 0.00139 0 0 0 WorldPhysical initStep + 1 0.024 -2.39 7.85 0 0.00139 0.0929 0.0929 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -4.36e-06 -0.693 2.31 0.00152 0 0 0 WorldPhysical initStep + 1 0.00934 -0.736 2.3 0 0.00152 0.105 0.105 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 -8.24 27.5 1e+03 0.00431 28.7 28.7 WorldPhysical hIoni + 2 0.00462 -30 100 1e+03 0.0108 75.7 104 DriftChamberPhysical CoupledTransportation + 3 0.105 -199 665 1e+03 0.011 590 694 DriftChamberPhysical hIoni + 4 0.175 -266 886 1e+03 0.0065 230 924 DriftChamberPhysical hIoni + 5 0.18 -270 900 1e+03 0.000307 15.1 940 WorldPhysical CoupledTransportation + 6 0.187 -277 923 1e+03 0.00357 23.9 964 WorldPhysical hIoni + 7 0.195 -285 950 1e+03 0.00469 28.3 992 WorldPhysical fastSimProcess_parallelGeom + 8 0.195 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.187 -277 923 0.00351 0 0 0 WorldPhysical initStep + 1 0.0539 -277 923 0 0.00351 0.412 0.412 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.175 -266 886 0.00107 0 0 0 DriftChamberPhysical initStep + 1 0.27 -265 886 0 0.00107 0.334 0.334 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.105 -199 665 0.0012 0 0 0 DriftChamberPhysical initStep + 1 -0.000344 -200 665 0 0.0012 0.398 0.398 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 -8.24 27.5 0.00103 0 0 0 WorldPhysical initStep + 1 -0.0192 -8.25 27.5 0 0.00103 0.0593 0.0593 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 -9.57 31.9 1e+03 0.00515 33.3 33.3 WorldPhysical hIoni + 2 -0.00129 -30 100 1e+03 0.00795 71.1 104 DriftChamberPhysical CoupledTransportation + 3 0.0109 -55.3 184 1e+03 0.00117 87.9 192 DriftChamberPhysical hIoni + 4 0.0629 -157 525 1e+03 0.00759 355 548 DriftChamberPhysical hIoni + 5 0.0844 -270 900 1e+03 0.00792 392 940 WorldPhysical CoupledTransportation + 6 0.0831 -285 950 1e+03 0.00618 52.2 992 WorldPhysical fastSimProcess_parallelGeom + 7 0.0831 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0629 -157 525 0.00165 0 0 0 DriftChamberPhysical initStep + 1 0.549 -157 525 0 0.00165 0.663 0.663 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0109 -55.3 184 0.00308 0 0 0 DriftChamberPhysical initStep + 1 0.241 -56.5 184 0.00132 0.00176 1.56 1.56 DriftChamberPhysical eIoni + 2 0.207 -56.7 184 0 0.00132 0.462 2.03 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 -9.57 31.9 0.00124 0 0 0 WorldPhysical initStep + 1 -0.0256 -9.59 31.9 0 0.00124 0.0778 0.0778 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 -30 100 1e+03 0.0177 104 104 DriftChamberPhysical CoupledTransportation + 2 0.102 -270 900 1e+03 0.0188 835 940 WorldPhysical CoupledTransportation + 3 0.112 -285 950 1e+03 0.00661 52.2 992 WorldPhysical fastSimProcess_parallelGeom + 4 0.112 -285 950 0 1e+03 0 992 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 -44.8 74.7 1e+03 0.0114 87.2 87.2 WorldPhysical hIoni + 2 -0.00114 -58.2 97 1e+03 0.00292 26 113 WorldPhysical hIoni + 3 -0.00149 -60 100 1e+03 0.000305 3.44 117 DriftChamberPhysical CoupledTransportation + 4 -0.0313 -216 360 1e+03 0.00663 303 420 DriftChamberPhysical hIoni + 5 -0.0732 -424 706 1e+03 0.00617 404 823 DriftChamberPhysical hIoni + 6 -0.0881 -540 900 1e+03 0.00507 226 1.05e+03 WorldPhysical CoupledTransportation + 7 -0.0913 -570 950 1e+03 0.00651 58.3 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 8 -0.0913 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.0732 -424 706 0.00101 0 0 0 DriftChamberPhysical initStep + 1 0.126 -424 706 0 0.00101 0.306 0.306 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.0313 -216 360 0.00157 0 0 0 DriftChamberPhysical initStep + 1 -0.236 -216 360 0 0.00157 0.611 0.611 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 -0.00114 -58.2 97 0.00114 0 0 0 WorldPhysical initStep + 1 -0.0235 -58.3 97 0 0.00114 0.0686 0.0686 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 -44.8 74.7 0.00158 0 0 0 WorldPhysical initStep + 1 -0.00619 -44.8 74.8 0 0.00158 0.112 0.112 WorldPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep + 1 0 -38.4 64 1e+03 0.00938 74.6 74.6 WorldPhysical hIoni + 2 0.00248 -60 100 1e+03 0.00483 42 117 DriftChamberPhysical CoupledTransportation + 3 0.0166 -301 502 1e+03 0.0146 469 586 DriftChamberPhysical hIoni + 4 0.0533 -540 900 1e+03 0.0109 464 1.05e+03 WorldPhysical CoupledTransportation + 5 0.055 -570 950 1e+03 0.00748 58.3 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 6 0.055 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0.0166 -301 502 0.00106 0 0 0 DriftChamberPhysical initStep + 1 0.179 -301 502 0 0.00106 0.326 0.326 DriftChamberPhysical eIoni + +********************************************************************************************************* +* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 +********************************************************************************************************* + +Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName + 0 0 -38.4 64 0.00282 0 0 0 WorldPhysical initStep + 1 -0.0595 -38.3 64.1 0 0.00282 0.283 0.283 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 @@ -4501,38 +5112,36 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep 1 0 -60 100 1e+03 0.0161 117 117 DriftChamberPhysical CoupledTransportation - 2 -0.0385 -304 506 1e+03 0.00893 474 590 DriftChamberPhysical hIoni - 3 -0.0642 -469 781 1e+03 0.00678 320 911 DriftChamberPhysical hIoni - 4 -0.0687 -540 900 1e+03 0.00268 139 1.05e+03 WorldPhysical CoupledTransportation - 5 -0.0689 -542 903 1e+03 0.000346 3.8 1.05e+03 WorldPhysical hIoni - 6 -0.0695 -570 950 1e+03 0.0108 54.5 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - 7 -0.0695 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 2 -0.00445 -264 439 1e+03 0.00804 396 512 DriftChamberPhysical hIoni + 3 0.0184 -416 693 1e+03 0.00519 296 808 DriftChamberPhysical hIoni + 4 0.051 -540 900 1e+03 0.00485 242 1.05e+03 WorldPhysical CoupledTransportation + 5 0.0555 -562 937 1e+03 0.00519 43.5 1.09e+03 WorldPhysical hIoni + 6 0.0564 -570 950 1e+03 0.00181 14.8 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 7 0.0564 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0689 -542 903 0.00158 0 0 0 WorldPhysical initStep - 1 -0.0945 -542 903 0 0.00158 0.112 0.112 WorldPhysical eIoni + 0 0.0555 -562 937 0.00152 0 0 0 WorldPhysical initStep + 1 0.0264 -562 937 0 0.00152 0.106 0.106 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0642 -469 781 0.0064 0 0 0 DriftChamberPhysical initStep - 1 -0.984 -471 780 0.005 0.0014 2.92 2.92 DriftChamberPhysical eIoni - 2 -1.44 -472 778 0.00268 0.00233 2.34 5.26 DriftChamberPhysical eIoni - 3 -1.75 -472 778 0 0.00268 1.36 6.62 DriftChamberPhysical eIoni + 0 0.0184 -416 693 0.00157 0 0 0 DriftChamberPhysical initStep + 1 -0.144 -415 693 0 0.00157 0.611 0.611 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0385 -304 506 0.0021 0 0 0 DriftChamberPhysical initStep - 1 -0.422 -303 507 0 0.0021 0.989 0.989 DriftChamberPhysical eIoni + 0 -0.00445 -264 439 0.00144 0 0 0 DriftChamberPhysical initStep + 1 -0.39 -264 439 0 0.00144 0.531 0.531 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 @@ -4540,28 +5149,19 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0.00391 -53.8 89.7 1e+03 0.0147 105 105 WorldPhysical hIoni - 2 0.00963 -60 100 1e+03 0.00262 12.1 117 DriftChamberPhysical CoupledTransportation - 3 0.456 -541 900 1e+03 0.0174 933 1.05e+03 WorldPhysical CoupledTransportation - 4 0.463 -547 910 1e+03 0.00111 12.2 1.06e+03 WorldPhysical hIoni - 5 0.491 -571 950 1e+03 0.00732 46.1 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - 6 0.491 -571 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.463 -547 910 0.00225 0 0 0 WorldPhysical initStep - 1 0.431 -547 911 0 0.00225 0.195 0.195 WorldPhysical eIoni + 1 0 -60 100 1e+03 0.0166 117 117 DriftChamberPhysical CoupledTransportation + 2 0.154 -540 900 1e+03 0.0203 933 1.05e+03 WorldPhysical CoupledTransportation + 3 0.155 -544 907 1e+03 0.00149 8.39 1.06e+03 WorldPhysical hIoni + 4 0.163 -570 950 1e+03 0.00772 49.9 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 5 0.163 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0.00391 -53.8 89.7 0.00208 0 0 0 WorldPhysical initStep - 1 0.041 -53.9 89.6 0 0.00208 0.172 0.172 WorldPhysical eIoni + 0 0.155 -544 907 0.00282 0 0 0 WorldPhysical initStep + 1 0.0533 -544 907 0 0.00282 0.283 0.283 WorldPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 @@ -4569,1191 +5169,76 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -56.9 94.9 1e+03 0.0167 111 111 WorldPhysical hIoni - 2 -0.00149 -60 100 1e+03 0.000608 5.94 117 DriftChamberPhysical CoupledTransportation - 3 -0.0292 -124 207 1e+03 0.00212 125 241 DriftChamberPhysical hIoni - 4 -0.11 -290 483 1e+03 0.00712 322 563 DriftChamberPhysical hIoni - 5 -0.14 -350 584 1e+03 0.00193 118 681 DriftChamberPhysical Decay - -********************************************************************************************************* -* G4Track Information: Particle = mu-, Track ID = 6, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.14 -350 584 872 0 0 0 DriftChamberPhysical initStep - 1 -8.83 -548 900 872 0.0098 373 373 WorldPhysical CoupledTransportation - 2 -11.6 -610 1e+03 872 0.0184 118 491 Crystal CoupledTransportation - 3 -11.7 -614 1.01e+03 866 3.86 7.43 498 Crystal muIoni - 4 -11.8 -616 1.01e+03 863 2.12 4.43 503 Crystal muIoni - 5 -11.9 -635 1.04e+03 844 17.7 35.3 538 Crystal muIoni - 6 -11.8 -650 1.06e+03 830 13.7 26.8 565 Crystal CoupledTransportation - 7 -11.8 -652 1.07e+03 827 2 3.88 569 Crystal muIoni - 8 -11.3 -663 1.08e+03 815 9.24 19.5 588 Crystal muIoni - 9 -9.12 -681 1.11e+03 800 14.3 29.9 618 Crystal muIoni - 10 -5.36 -700 1.13e+03 783 17.1 33.7 652 Crystal CoupledTransportation - 11 -5.14 -701 1.13e+03 781 0.981 1.98 654 Crystal muIoni - 12 -1.2 -722 1.16e+03 758 18.9 37.2 691 Crystal muIoni - 13 -0.656 -726 1.17e+03 755 2.91 5.32 696 Crystal muIoni - 14 -0.0575 -729 1.17e+03 750 3.22 6.43 703 Crystal muIoni - 15 -9.92e-16 -730 1.17e+03 750 0.263 0.623 703 Crystal CoupledTransportation - 16 2.71 -747 1.2e+03 733 14.5 29.5 733 Crystal muIoni - 17 3.21 -750 1.2e+03 730 2.3 4.73 737 Crystal CoupledTransportation - 18 3.91 -754 1.21e+03 724 3.22 7.12 745 Crystal muIoni - 19 5.86 -766 1.22e+03 715 9.16 18.2 763 Crystal CoulombScat - 20 9.81 -794 1.25e+03 692 20.7 41.6 804 Crystal muIoni - 21 10.8 -800 1.26e+03 688 4.12 8.56 813 Crystal CoupledTransportation - 22 17.2 -835 1.3e+03 661 25.7 52.4 865 Crystal muIoni - 23 19.6 -850 1.31e+03 651 10.8 22.1 887 Crystal CoupledTransportation - 24 23.4 -883 1.35e+03 625 24.3 49 936 Crystal muIoni - 25 23.6 -885 1.35e+03 622 1.23 1.83 938 Crystal muIoni - 26 25.3 -896 1.36e+03 612 8.26 16.2 954 Crystal muIoni - 27 25.9 -900 1.37e+03 609 3.02 6.54 961 Crystal CoupledTransportation - 28 26.3 -904 1.37e+03 605 2.54 5.59 967 Crystal muIoni - 29 30 -930 1.4e+03 586 19.1 38.8 1.01e+03 Crystal muIoni - 30 30.2 -932 1.4e+03 584 1.18 2.62 1.01e+03 WorldPhysical CoupledTransportation - 31 33.9 -961 1.43e+03 584 0.00489 42.4 1.05e+03 WorldPhysical muIoni - 32 41.8 -1.02e+03 1.49e+03 584 0.0109 89.2 1.14e+03 WorldPhysical muIoni - 33 42.4 -1.03e+03 1.5e+03 584 0.0016 7.17 1.15e+03 HadCaloPhysical CoupledTransportation - 34 48.4 -1.08e+03 1.55e+03 584 0.0165 69.4 1.22e+03 Tower CoupledTransportation - 35 50 -1.09e+03 1.56e+03 567 17.7 17.8 1.23e+03 Tower CoupledTransportation - 36 54.7 -1.12e+03 1.6e+03 496 53.9 47.9 1.28e+03 Tower muIoni - 37 58 -1.15e+03 1.63e+03 435 61.1 43.9 1.33e+03 HadCaloPhysical CoupledTransportation - 38 67.6 -1.25e+03 1.74e+03 435 0.0225 149 1.48e+03 WorldPhysical CoupledTransportation - 39 70.3 -1.28e+03 1.77e+03 435 0.00457 41.5 1.52e+03 WorldPhysical muIoni - 40 88.2 -1.47e+03 1.98e+03 435 0.0363 282 1.8e+03 WorldPhysical muIoni - 41 96.5 -1.55e+03 2.08e+03 435 0.0182 131 1.93e+03 WorldPhysical muIoni - 42 99.9 -1.59e+03 2.12e+03 435 0.00726 55.2 1.98e+03 WorldPhysical muIoni - 43 106 -1.66e+03 2.19e+03 435 0.0128 98.9 2.08e+03 WorldPhysical muIoni - 44 107 -1.67e+03 2.2e+03 435 0.00212 13.6 2.1e+03 WorldPhysical muIoni - 45 110 -1.7e+03 2.24e+03 435 0.00641 45.5 2.14e+03 WorldPhysical muIoni - 46 139 -2.01e+03 2.58e+03 435 0.0604 469 2.61e+03 WorldPhysical muIoni - 47 142 -2.04e+03 2.62e+03 435 0.00753 49 2.66e+03 WorldPhysical muIoni - 48 143 -2.05e+03 2.62e+03 435 0.00053 3.55 2.66e+03 WorldPhysical muIoni - 49 145 -2.07e+03 2.65e+03 435 0.0064 43.4 2.71e+03 WorldPhysical muIoni - 50 150 -2.13e+03 2.71e+03 435 0.0125 77.1 2.79e+03 WorldPhysical muIoni - 51 164 -2.27e+03 2.87e+03 435 0.027 213 3e+03 WorldPhysical muIoni - 52 167 -2.31e+03 2.91e+03 435 0.00813 56.8 3.05e+03 WorldPhysical muIoni - 53 171 -2.34e+03 2.95e+03 435 0.00582 56 3.11e+03 WorldPhysical muIoni - 54 176 -2.4e+03 3.01e+03 435 0.00857 84.9 3.2e+03 WorldPhysical muIoni - 55 182 -2.46e+03 3.08e+03 435 0.0122 91.7 3.29e+03 WorldPhysical muIoni - 56 184 -2.48e+03 3.1e+03 435 0.00488 22.5 3.31e+03 WorldPhysical muIoni - 57 184 -2.48e+03 3.1e+03 435 0.00101 6.64 3.32e+03 WorldPhysical muIoni - 58 193 -2.57e+03 3.2e+03 435 0.0137 136 3.45e+03 WorldPhysical muIoni - 59 194 -2.59e+03 3.22e+03 435 0.00295 20.1 3.47e+03 WorldPhysical muIoni - 60 195 -2.59e+03 3.23e+03 435 0.00144 8.02 3.48e+03 WorldPhysical muIoni - 61 198 -2.62e+03 3.26e+03 435 0.00616 40.7 3.52e+03 WorldPhysical muIoni - 62 198 -2.62e+03 3.26e+03 435 0.000541 1.9 3.52e+03 WorldPhysical muIoni - 63 202 -2.66e+03 3.3e+03 435 0.00792 62.7 3.59e+03 WorldPhysical muIoni - 64 210 -2.75e+03 3.4e+03 435 0.0197 126 3.71e+03 WorldPhysical muIoni - 65 214 -2.78e+03 3.44e+03 435 0.00611 55.9 3.77e+03 WorldPhysical muIoni - 66 214 -2.79e+03 3.44e+03 435 0.000534 7.55 3.78e+03 WorldPhysical muIoni - 67 218 -2.83e+03 3.49e+03 435 0.00558 55.8 3.83e+03 WorldPhysical muIoni - 68 231 -2.96e+03 3.64e+03 435 0.0246 203 4.03e+03 WorldPhysical muIoni - 69 233 -2.98e+03 3.66e+03 435 0.00379 29.9 4.06e+03 WorldPhysical muIoni - 70 238 -3.03e+03 3.72e+03 435 0.00993 78.4 4.14e+03 WorldPhysical muIoni - 71 248 -3.13e+03 3.82e+03 435 0.0171 147 4.29e+03 WorldPhysical muIoni - 72 248 -3.14e+03 3.83e+03 435 0.00102 5.76 4.3e+03 WorldPhysical muIoni - 73 259 -3.24e+03 3.94e+03 434 0.0205 152 4.45e+03 WorldPhysical muIoni - 74 259 -3.24e+03 3.94e+03 434 0.000649 4.37 4.45e+03 WorldPhysical muIoni - 75 264 -3.29e+03 4e+03 434 0.0102 74.7 4.53e+03 OutOfWorld CoupledTransportation - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 62, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 259 -3.24e+03 3.94e+03 0.00165 0 0 0 WorldPhysical initStep - 1 259 -3.24e+03 3.94e+03 0 0.00165 0.12 0.12 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 61, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 259 -3.24e+03 3.94e+03 0.00165 0 0 0 WorldPhysical initStep - 1 259 -3.24e+03 3.94e+03 0 0.00165 0.12 0.12 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 60, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 248 -3.14e+03 3.83e+03 0.00598 0 0 0 WorldPhysical initStep - 1 248 -3.14e+03 3.83e+03 0 0.00598 1.05 1.05 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 59, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 248 -3.13e+03 3.82e+03 0.00129 0 0 0 WorldPhysical initStep - 1 248 -3.13e+03 3.82e+03 0 0.00129 0.0824 0.0824 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 58, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 238 -3.03e+03 3.72e+03 0.00248 0 0 0 WorldPhysical initStep - 1 238 -3.03e+03 3.72e+03 0 0.00248 0.229 0.229 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 57, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 231 -2.96e+03 3.64e+03 0.0269 0 0 0 WorldPhysical initStep - 1 230 -2.96e+03 3.64e+03 0.0189 0.00193 1.97 1.97 WorldPhysical eIoni - 2 228 -2.96e+03 3.64e+03 0.0157 0.0032 3.23 5.2 WorldPhysical eIoni - 3 226 -2.97e+03 3.63e+03 0.0123 0.00343 2.69 7.89 WorldPhysical eIoni - 4 225 -2.97e+03 3.64e+03 0.00852 0.00379 2.18 10.1 WorldPhysical eIoni - 5 224 -2.97e+03 3.63e+03 0.00338 0.00514 1.6 11.7 WorldPhysical eIoni - 6 224 -2.97e+03 3.63e+03 0 0.00338 0.386 12 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 63, Parent ID = 57 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 230 -2.96e+03 3.64e+03 0.00601 0 0 0 WorldPhysical initStep - 1 230 -2.96e+03 3.63e+03 0.00141 0.0046 1.06 1.06 WorldPhysical eIoni - 2 230 -2.96e+03 3.63e+03 0 0.00141 0.0945 1.15 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 56, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 218 -2.83e+03 3.49e+03 0.00122 0 0 0 WorldPhysical initStep - 1 218 -2.83e+03 3.49e+03 0 0.00122 0.0757 0.0757 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 55, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 214 -2.79e+03 3.44e+03 0.00356 0 0 0 WorldPhysical initStep - 1 214 -2.79e+03 3.44e+03 0 0.00356 0.422 0.422 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 54, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 214 -2.78e+03 3.44e+03 0.00132 0 0 0 WorldPhysical initStep - 1 214 -2.78e+03 3.44e+03 0 0.00132 0.0854 0.0854 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 53, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 210 -2.75e+03 3.4e+03 0.0012 0 0 0 WorldPhysical initStep - 1 210 -2.75e+03 3.4e+03 0 0.0012 0.0747 0.0747 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 52, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 202 -2.66e+03 3.3e+03 0.00114 0 0 0 WorldPhysical initStep - 1 202 -2.66e+03 3.3e+03 0 0.00114 0.0687 0.0687 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 51, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 198 -2.62e+03 3.26e+03 0.00186 0 0 0 WorldPhysical initStep - 1 198 -2.62e+03 3.26e+03 0 0.00186 0.144 0.144 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 50, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 198 -2.62e+03 3.26e+03 0.00135 0 0 0 WorldPhysical initStep - 1 197 -2.62e+03 3.26e+03 0 0.00135 0.088 0.088 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 49, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 195 -2.59e+03 3.23e+03 0.0012 0 0 0 WorldPhysical initStep - 1 195 -2.59e+03 3.23e+03 0 0.0012 0.0744 0.0744 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 48, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 194 -2.59e+03 3.22e+03 0.0013 0 0 0 WorldPhysical initStep - 1 194 -2.59e+03 3.22e+03 0 0.0013 0.0839 0.0839 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 47, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 193 -2.57e+03 3.2e+03 0.00167 0 0 0 WorldPhysical initStep - 1 193 -2.57e+03 3.21e+03 0 0.00167 0.123 0.123 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 46, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 184 -2.48e+03 3.1e+03 0.00213 0 0 0 WorldPhysical initStep - 1 184 -2.48e+03 3.1e+03 0 0.00213 0.179 0.179 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 45, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 184 -2.48e+03 3.1e+03 0.004 0 0 0 WorldPhysical initStep - 1 184 -2.48e+03 3.1e+03 0 0.004 0.517 0.517 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 44, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 176 -2.4e+03 3.01e+03 0.00158 0 0 0 WorldPhysical initStep - 1 176 -2.4e+03 3.01e+03 0 0.00158 0.112 0.112 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 43, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 171 -2.34e+03 2.95e+03 0.00202 0 0 0 WorldPhysical initStep - 1 171 -2.34e+03 2.95e+03 0 0.00202 0.164 0.164 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 42, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 167 -2.31e+03 2.91e+03 0.00142 0 0 0 WorldPhysical initStep - 1 167 -2.31e+03 2.91e+03 0 0.00142 0.0958 0.0958 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 41, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 164 -2.27e+03 2.87e+03 0.00307 0 0 0 WorldPhysical initStep - 1 164 -2.27e+03 2.87e+03 0 0.00307 0.327 0.327 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 40, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 150 -2.13e+03 2.71e+03 0.00466 0 0 0 WorldPhysical initStep - 1 150 -2.13e+03 2.71e+03 0 0.00466 0.677 0.677 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 39, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 145 -2.07e+03 2.65e+03 0.00653 0 0 0 WorldPhysical initStep - 1 145 -2.07e+03 2.65e+03 0.00126 0.00527 1.2 1.2 WorldPhysical eIoni - 2 145 -2.07e+03 2.65e+03 0 0.00126 0.0795 1.28 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 38, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 143 -2.05e+03 2.62e+03 0.00199 0 0 0 WorldPhysical initStep - 1 143 -2.05e+03 2.62e+03 0 0.00199 0.16 0.16 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 37, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 142 -2.04e+03 2.62e+03 0.00132 0 0 0 WorldPhysical initStep - 1 142 -2.04e+03 2.62e+03 0 0.00132 0.0853 0.0853 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 36, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 139 -2.01e+03 2.58e+03 0.134 0 0 0 WorldPhysical initStep - 1 100 -2.01e+03 2.61e+03 0.117 0.0138 52.3 52.3 WorldPhysical eIoni - 2 90.4 -2.03e+03 2.62e+03 0.111 0.00595 24.7 77 WorldPhysical eIoni - 3 80 -2.06e+03 2.64e+03 0.0971 0.0142 43.6 121 WorldPhysical eIoni - 4 79.3 -2.08e+03 2.64e+03 0.0875 0.00856 26.1 147 WorldPhysical eIoni - 5 76 -2.09e+03 2.65e+03 0.0818 0.00471 12.1 159 WorldPhysical eIoni - 6 77 -2.1e+03 2.65e+03 0.0756 0.0046 16 175 WorldPhysical eIoni - 7 71.6 -2.12e+03 2.67e+03 0.0662 0.0094 22.9 198 WorldPhysical eIoni - 8 78.5 -2.12e+03 2.67e+03 0.0571 0.00398 9.16 207 WorldPhysical eIoni - 9 82 -2.12e+03 2.67e+03 0.0482 0.00273 3.96 211 WorldPhysical eIoni - 10 90.1 -2.12e+03 2.67e+03 0.0431 0.00507 11.1 222 WorldPhysical eIoni - 11 95.6 -2.13e+03 2.67e+03 0.0381 0.00501 9.33 231 WorldPhysical eIoni - 12 101 -2.13e+03 2.67e+03 0.0303 0.00785 7.77 239 WorldPhysical eIoni - 13 104 -2.13e+03 2.67e+03 0.0286 0.00172 5.62 245 WorldPhysical eIoni - 14 104 -2.12e+03 2.66e+03 0.0238 0.0048 5.21 250 WorldPhysical eIoni - 15 104 -2.12e+03 2.66e+03 0.0215 0.00115 2.01 252 WorldPhysical eIoni - 16 105 -2.12e+03 2.66e+03 0.0159 0.00555 3.69 256 WorldPhysical eIoni - 17 103 -2.12e+03 2.66e+03 0.0126 0.00338 2.73 258 WorldPhysical eIoni - 18 103 -2.12e+03 2.66e+03 0.00903 0.00352 2.21 260 WorldPhysical eIoni - 19 103 -2.12e+03 2.66e+03 0.00479 0.00424 1.68 262 WorldPhysical eIoni - 20 103 -2.12e+03 2.66e+03 0 0.00479 0.71 263 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 70, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 104 -2.12e+03 2.66e+03 0.00112 0 0 0 WorldPhysical initStep - 1 104 -2.12e+03 2.66e+03 0 0.00112 0.0671 0.0671 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 69, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 82 -2.12e+03 2.67e+03 0.00612 0 0 0 WorldPhysical initStep - 1 82.1 -2.12e+03 2.67e+03 0.00306 0.00198 0.353 0.353 WorldPhysical eIoni - 2 82 -2.12e+03 2.67e+03 0 0.00306 0.327 0.679 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 71, Parent ID = 69 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 82.1 -2.12e+03 2.67e+03 0.00108 0 0 0 WorldPhysical initStep - 1 82.1 -2.12e+03 2.67e+03 0 0.00108 0.0634 0.0634 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 68, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 78.5 -2.12e+03 2.67e+03 0.0052 0 0 0 WorldPhysical initStep - 1 78.5 -2.12e+03 2.67e+03 0.00312 0.000693 0.115 0.115 WorldPhysical eIoni - 2 78.5 -2.12e+03 2.67e+03 0 0.00312 0.337 0.452 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 72, Parent ID = 68 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 78.5 -2.12e+03 2.67e+03 0.00139 0 0 0 WorldPhysical initStep - 1 78.5 -2.12e+03 2.67e+03 0 0.00139 0.0923 0.0923 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 67, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 77 -2.1e+03 2.65e+03 0.00157 0 0 0 WorldPhysical initStep - 1 77 -2.1e+03 2.65e+03 0 0.00157 0.111 0.111 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 66, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 76 -2.09e+03 2.65e+03 0.000992 0 0 0 WorldPhysical initStep - 1 76 -2.09e+03 2.65e+03 0 0.000992 0.0564 0.0564 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 65, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 79.3 -2.08e+03 2.64e+03 0.00103 0 0 0 WorldPhysical initStep - 1 79.3 -2.08e+03 2.64e+03 0 0.00103 0.0596 0.0596 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 64, Parent ID = 36 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 100 -2.01e+03 2.61e+03 0.00293 0 0 0 WorldPhysical initStep - 1 100 -2.01e+03 2.61e+03 0 0.00293 0.302 0.302 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 35, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 110 -1.7e+03 2.24e+03 0.00171 0 0 0 WorldPhysical initStep - 1 110 -1.7e+03 2.23e+03 0 0.00171 0.126 0.126 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 34, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 107 -1.67e+03 2.2e+03 0.00466 0 0 0 WorldPhysical initStep - 1 107 -1.67e+03 2.2e+03 0 0.00466 0.676 0.676 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 33, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 106 -1.66e+03 2.19e+03 0.00135 0 0 0 WorldPhysical initStep - 1 106 -1.66e+03 2.19e+03 0 0.00135 0.0886 0.0886 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 32, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 99.9 -1.59e+03 2.12e+03 0.0042 0 0 0 WorldPhysical initStep - 1 100 -1.59e+03 2.12e+03 0 0.0042 0.564 0.564 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 31, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 96.5 -1.55e+03 2.08e+03 0.00163 0 0 0 WorldPhysical initStep - 1 96.4 -1.55e+03 2.08e+03 0 0.00163 0.117 0.117 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 30, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 88.2 -1.47e+03 1.98e+03 0.0034 0 0 0 WorldPhysical initStep - 1 88.2 -1.47e+03 1.98e+03 0 0.0034 0.391 0.391 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 29, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 70.3 -1.28e+03 1.77e+03 0.00443 0 0 0 WorldPhysical initStep - 1 70.5 -1.28e+03 1.77e+03 0 0.00443 0.62 0.62 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 28, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 54.7 -1.12e+03 1.6e+03 16.5 0 0 0 Tower initStep - 1 54.6 -1.12e+03 1.6e+03 12.5 1.88 2.03 2.03 Tower eBrem - 2 54.5 -1.12e+03 1.6e+03 9.5 1.13 1.13 3.16 Tower eBrem - 3 54.4 -1.12e+03 1.6e+03 1.56 0.51 0.637 3.8 Tower eBrem - 4 54.6 -1.12e+03 1.6e+03 0.0656 1.49 1.27 5.06 Tower eIoni - 5 54.6 -1.12e+03 1.6e+03 0 0.0656 0.0134 5.08 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 27, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 41.8 -1.02e+03 1.49e+03 0.00158 0 0 0 WorldPhysical initStep - 1 41.7 -1.02e+03 1.49e+03 0 0.00158 0.112 0.112 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 26, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 33.9 -961 1.43e+03 0.0013 0 0 0 WorldPhysical initStep - 1 34 -961 1.43e+03 0 0.0013 0.0839 0.0839 WorldPhysical eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 25, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 30 -930 1.4e+03 0.759 0 0 0 Crystal initStep - 1 30.1 -931 1.4e+03 0 0.759 1.16 1.16 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 24, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 26.3 -904 1.37e+03 0.967 0 0 0 Crystal initStep - 1 26.4 -904 1.37e+03 0.306 0.661 1.42 1.42 Crystal eIoni - 2 26.5 -904 1.37e+03 0 0.306 0.346 1.77 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 23, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 25.3 -896 1.36e+03 1.97 0 0 0 Crystal initStep - 1 25.3 -896 1.36e+03 1.07 0.00278 0.012 0.012 Crystal eBrem - 2 25.5 -896 1.36e+03 0.382 0.685 1.51 1.53 Crystal eIoni - 3 25.5 -896 1.36e+03 0 0.382 0.475 2 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 22, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 23.6 -885 1.35e+03 1.86 0 0 0 Crystal initStep - 1 23.9 -885 1.35e+03 0.981 0.878 2.04 2.04 Crystal eIoni - 2 23.9 -885 1.35e+03 0.288 0.693 1.43 3.47 Crystal eIoni - 3 23.9 -885 1.35e+03 0 0.288 0.317 3.79 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 21, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 23.4 -883 1.35e+03 1.03 0 0 0 Crystal initStep - 1 23.3 -884 1.35e+03 0.382 0.652 1.48 1.48 Crystal eIoni - 2 23.3 -884 1.35e+03 0 0.382 0.477 1.96 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 20, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 17.2 -835 1.3e+03 0.865 0 0 0 Crystal initStep - 1 17.3 -835 1.3e+03 0.083 0.782 1.31 1.31 Crystal eIoni - 2 17.3 -835 1.3e+03 0 0.083 0.0445 1.35 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 19, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 9.81 -794 1.25e+03 2.34 0 0 0 Crystal initStep - 1 10.1 -795 1.25e+03 2.06 0.282 0.683 0.683 Crystal eIoni - 2 10.3 -794 1.25e+03 1.31 0.638 1.06 1.74 Crystal eBrem - 3 10.4 -794 1.25e+03 0.591 0.715 1.7 3.44 Crystal eIoni - 4 10.4 -794 1.25e+03 0.312 0.233 0.521 3.96 Crystal eBrem - 5 10.4 -794 1.25e+03 0 0.312 0.356 4.32 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 18, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 3.91 -754 1.21e+03 2.98 0 0 0 Crystal initStep - 1 3.92 -755 1.21e+03 1.65 1.32 2.58 2.58 Crystal eIoni - 2 4.19 -755 1.21e+03 0.405 1.25 1.92 4.5 Crystal eIoni - 3 4.2 -755 1.21e+03 0.0419 0.309 0.486 4.99 Crystal eBrem - 4 4.2 -755 1.21e+03 0 0.0419 0.0143 5 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 17, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 2.71 -747 1.2e+03 2.28 0 0 0 Crystal initStep - 1 3.03 -747 1.2e+03 1.24 1.04 2.25 2.25 Crystal eIoni - 2 3.24 -747 1.2e+03 0.306 0.933 1.65 3.9 Crystal eIoni - 3 3.2 -747 1.2e+03 0 0.306 0.346 4.25 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 16, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0575 -729 1.17e+03 1.48 0 0 0 Crystal initStep - 1 -0.00324 -729 1.17e+03 1.44 0.0344 0.107 0.107 Crystal msc - 2 4.65e-16 -729 1.17e+03 1.44 0.00369 0.00705 0.114 Crystal CoupledTransportation - 3 0.0597 -729 1.17e+03 1.38 0.0539 0.104 0.217 Crystal msc - 4 0.0847 -729 1.17e+03 1.35 0.0378 0.0954 0.313 Crystal msc - 5 0.0955 -729 1.17e+03 1.29 0.0516 0.0954 0.408 Crystal msc - 6 0.162 -729 1.17e+03 1.26 0.0386 0.101 0.509 Crystal msc - 7 0.218 -729 1.17e+03 1.23 0.0263 0.0756 0.585 Crystal msc - 8 0.292 -730 1.17e+03 1.18 0.0494 0.134 0.718 Crystal msc - 9 0.301 -729 1.17e+03 1.11 0.0715 0.182 0.9 Crystal msc - 10 0.412 -729 1.17e+03 1.03 0.0744 0.186 1.09 Crystal msc - 11 0.291 -729 1.17e+03 0.937 0.0967 0.248 1.33 Crystal msc - 12 0.142 -729 1.17e+03 0.847 0.0901 0.2 1.53 Crystal msc - 13 0.0765 -729 1.17e+03 0.817 0.0299 0.0949 1.63 Crystal msc - 14 0.0361 -729 1.17e+03 0.765 0.0523 0.114 1.74 Crystal msc - 15 0.0281 -729 1.17e+03 0.717 0.048 0.0939 1.84 Crystal msc - 16 0.00116 -729 1.17e+03 0.681 0.0359 0.0824 1.92 Crystal msc - 17 0.0013 -729 1.17e+03 0.649 0.0327 0.105 2.02 Crystal msc - 18 0.00304 -729 1.17e+03 0.612 0.037 0.11 2.13 Crystal msc - 19 1.29e-15 -729 1.17e+03 0.605 0.00702 0.0243 2.16 CalorimeterPhysical CoupledTransportation - 20 1.29e-15 -729 1.17e+03 0.605 0 0 2.16 Crystal CoupledTransportation - 21 0.00486 -729 1.17e+03 0.584 0.0205 0.0406 2.2 Crystal msc - 22 5.74e-16 -730 1.17e+03 0.573 0.0112 0.025 2.22 CalorimeterPhysical CoupledTransportation - 23 5.74e-16 -730 1.17e+03 0.573 0 0 2.22 Crystal CoupledTransportation - 24 0.00668 -730 1.17e+03 0.56 0.0126 0.0309 2.25 Crystal msc - 25 0.002 -730 1.17e+03 0.548 0.0124 0.0292 2.28 Crystal msc - 26 0.00529 -730 1.17e+03 0.536 0.0119 0.0266 2.31 Crystal msc - 27 -1.25e-15 -730 1.17e+03 0.534 0.00234 0.008 2.32 Crystal CoupledTransportation - 28 -0.0155 -730 1.17e+03 0.519 0.0149 0.0293 2.35 Crystal msc - 29 -0.0405 -730 1.17e+03 0.508 0.0107 0.0275 2.37 Crystal msc - 30 -0.0563 -730 1.17e+03 0.487 0.0209 0.0304 2.41 Crystal msc - 31 -0.0509 -730 1.17e+03 0.403 0.0835 0.0352 2.44 Crystal msc - 32 -0.0343 -730 1.17e+03 0.392 0.0112 0.0273 2.47 Crystal msc - 33 -0.064 -730 1.17e+03 0.355 0.0374 0.0353 2.5 Crystal msc - 34 -0.0881 -730 1.17e+03 0.343 0.0115 0.0336 2.54 Crystal msc - 35 -0.0623 -730 1.17e+03 0.321 0.022 0.0599 2.6 Crystal msc - 36 -0.0397 -730 1.17e+03 0.302 0.0192 0.0377 2.63 Crystal msc - 37 -0.0266 -730 1.17e+03 0.283 0.0192 0.0317 2.67 Crystal msc - 38 -0.0168 -730 1.17e+03 0.265 0.0175 0.0319 2.7 Crystal msc - 39 1.19e-15 -730 1.17e+03 0.262 0.00352 0.026 2.72 CalorimeterPhysical CoupledTransportation - 40 1.19e-15 -730 1.17e+03 0.262 0 0 2.72 Crystal CoupledTransportation - 41 -0.00693 -730 1.17e+03 0.255 0.00642 0.013 2.74 Crystal msc - 42 -0.0158 -730 1.17e+03 0.249 0.00622 0.0122 2.75 Crystal msc - 43 -0.0179 -730 1.17e+03 0.243 0.00581 0.012 2.76 Crystal msc - 44 -0.0209 -730 1.17e+03 0.237 0.00684 0.0129 2.77 Crystal msc - 45 -0.0103 -730 1.17e+03 0.231 0.00513 0.0119 2.79 Crystal msc - 46 -0.0104 -730 1.17e+03 0.223 0.00827 0.011 2.8 Crystal msc - 47 -0.0106 -730 1.17e+03 0.215 0.008 0.0107 2.81 Crystal msc - 48 -0.0101 -730 1.17e+03 0.206 0.00901 0.0115 2.82 Crystal msc - 49 -0.0107 -730 1.17e+03 0.189 0.0175 0.0113 2.83 Crystal msc - 50 -0.0101 -730 1.17e+03 0.184 0.00444 0.0104 2.84 Crystal msc - 51 -0.0155 -730 1.17e+03 0.178 0.00673 0.00961 2.85 Crystal msc - 52 -0.0112 -730 1.17e+03 0.172 0.00544 0.0115 2.86 Crystal msc - 53 -0.00662 -730 1.17e+03 0.165 0.00756 0.0104 2.87 Crystal msc - 54 -0.0016 -730 1.17e+03 0.156 0.00874 0.0118 2.88 Crystal msc - 55 -8.89e-17 -730 1.17e+03 0.154 0.00172 0.00823 2.89 Crystal CoupledTransportation - 56 0.0028 -730 1.17e+03 0.151 0.00349 0.00579 2.9 Crystal msc - 57 0.00424 -730 1.17e+03 0.146 0.00451 0.0054 2.9 Crystal msc - 58 0.00144 -730 1.17e+03 0.144 0.00192 0.00493 2.91 Crystal msc - 59 -7.18e-16 -730 1.17e+03 0.144 0.00052 0.00174 2.91 Crystal CoupledTransportation - 60 -0.00237 -730 1.17e+03 0.142 0.00197 0.00377 2.91 Crystal msc - 61 -0.00378 -730 1.17e+03 0.138 0.00352 0.00489 2.92 Crystal msc - 62 -0.000616 -730 1.17e+03 0.136 0.00194 0.00372 2.92 Crystal msc - 63 1.3e-15 -730 1.17e+03 0.136 0.000478 0.0011 2.92 Crystal CoupledTransportation - 64 0.00296 -730 1.17e+03 0.133 0.00239 0.00429 2.93 Crystal msc - 65 0.00181 -730 1.17e+03 0.133 0.00082 0.00382 2.93 Crystal msc - 66 4.74e-16 -730 1.17e+03 0.131 0.00126 0.00208 2.93 Crystal CoupledTransportation - 67 -0.00113 -730 1.17e+03 0.123 0.00862 0.00406 2.94 Crystal msc - 68 -1.56e-05 -730 1.17e+03 0.119 0.00357 0.00427 2.94 Crystal msc - 69 2.47e-16 -730 1.17e+03 0.119 5.37e-05 8.87e-05 2.94 Crystal CoupledTransportation - 70 0.000206 -730 1.17e+03 0.116 0.00265 0.00341 2.95 Crystal msc - 71 0.000353 -730 1.17e+03 0.113 0.00359 0.00349 2.95 Crystal msc - 72 4.62e-16 -730 1.17e+03 0.112 0.00128 0.00125 2.95 CalorimeterPhysical CoupledTransportation - 73 4.62e-16 -730 1.17e+03 0.112 0 0 2.95 Crystal CoupledTransportation - 74 0.00168 -730 1.17e+03 0.109 0.00296 0.00301 2.95 Crystal msc - 75 0.00332 -730 1.17e+03 0.106 0.003 0.00321 2.96 Crystal msc - 76 0.00578 -730 1.17e+03 0.103 0.00229 0.0026 2.96 Crystal msc - 77 0.00714 -730 1.17e+03 0.0992 0.00404 0.00356 2.96 Crystal msc - 78 0.00497 -730 1.17e+03 0.0954 0.00386 0.00473 2.97 Crystal msc - 79 0.00386 -730 1.17e+03 0.0916 0.00375 0.00317 2.97 Crystal msc - 80 0.00281 -730 1.17e+03 0.0903 0.00131 0.0026 2.97 Crystal msc - 81 0.00312 -730 1.17e+03 0.0613 0.029 0.00335 2.98 Crystal msc - 82 0.00225 -730 1.17e+03 0.0573 0.004 0.00284 2.98 Crystal msc - 83 0.00194 -730 1.17e+03 0.0559 0.00141 0.00258 2.98 Crystal msc - 84 0.00395 -730 1.17e+03 0.0534 0.00247 0.00247 2.98 Crystal msc - 85 0.00505 -730 1.17e+03 0.0482 0.00522 0.00256 2.99 Crystal msc - 86 0.00663 -730 1.17e+03 0.0457 0.00247 0.00301 2.99 Crystal msc - 87 0.0042 -730 1.17e+03 0.0377 0.00802 0.00435 2.99 Crystal msc - 88 0.00464 -730 1.17e+03 0.0333 0.00442 0.00284 3 Crystal msc - 89 0.00214 -730 1.17e+03 0.0295 0.00384 0.00284 3 Crystal msc - 90 0.0014 -730 1.17e+03 0.0231 0.00632 0.0032 3 Crystal msc - 91 0.00115 -730 1.17e+03 0.02 0.00314 0.00306 3.01 Crystal msc - 92 0.00187 -730 1.17e+03 0.00684 0.0132 0.00317 3.01 Crystal msc - 93 0.00194 -730 1.17e+03 0 0.00684 0.000781 3.01 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 15, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.656 -726 1.17e+03 0.693 0 0 0 Crystal initStep - 1 -0.607 -725 1.17e+03 0.0355 0.657 1.06 1.06 Crystal eIoni - 2 -0.607 -725 1.17e+03 0 0.0355 0.0109 1.07 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 14, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -1.2 -722 1.16e+03 3.7 0 0 0 Crystal initStep - 1 -0.908 -723 1.17e+03 3.44 0.256 0.646 0.646 Crystal msc - 2 -0.579 -723 1.17e+03 3.17 0.269 0.596 1.24 Crystal msc - 3 -0.445 -723 1.17e+03 2.91 0.256 0.383 1.62 Crystal msc - 4 -0.201 -723 1.17e+03 2.77 0.143 0.335 1.96 Crystal msc - 5 -0.235 -723 1.17e+03 2.65 0.12 0.306 2.27 Crystal msc - 6 -0.353 -723 1.17e+03 2.52 0.134 0.321 2.59 Crystal msc - 7 -0.482 -723 1.17e+03 2.38 0.138 0.303 2.89 Crystal msc - 8 -0.379 -723 1.17e+03 2.19 0.185 0.301 3.19 Crystal msc - 9 -0.417 -724 1.17e+03 1.63 0.564 0.303 3.5 Crystal msc - 10 -0.625 -723 1.17e+03 1.49 0.143 0.306 3.8 Crystal msc - 11 -0.755 -723 1.17e+03 1.37 0.116 0.337 4.14 Crystal msc - 12 -0.95 -723 1.17e+03 1.25 0.126 0.33 4.47 Crystal msc - 13 -1.14 -723 1.17e+03 0.94 0.306 0.602 5.07 Crystal msc - 14 -1.25 -723 1.17e+03 0.65 0.152 0.451 5.52 Crystal eBrem - 15 -1.19 -723 1.17e+03 0 0.65 0.976 6.5 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 13, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -5.14 -701 1.13e+03 0.972 0 0 0 Crystal initStep - 1 -5.08 -701 1.13e+03 0 0.972 1.42 1.42 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 12, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -9.12 -681 1.11e+03 1.03 0 0 0 Crystal initStep - 1 -8.97 -681 1.11e+03 0.257 0.772 1.48 1.48 Crystal eIoni - 2 -9 -681 1.11e+03 0 0.257 0.267 1.75 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 11, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.3 -663 1.08e+03 2.25 0 0 0 Crystal initStep - 1 -11.1 -663 1.08e+03 1.45 0.286 0.588 0.588 Crystal eBrem - 2 -11.1 -663 1.08e+03 1.16 0.295 0.723 1.31 Crystal eBrem - 3 -11.1 -664 1.08e+03 0.11 1.05 1.59 2.9 Crystal eIoni - 4 -11.1 -664 1.08e+03 0 0.11 0.0705 2.97 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 10, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.8 -652 1.07e+03 1.92 0 0 0 Crystal initStep - 1 -12.1 -652 1.07e+03 0.847 1.07 2.07 2.07 Crystal eIoni - 2 -12.1 -653 1.07e+03 0.131 0.473 1.06 3.13 Crystal eBrem - 3 -12.1 -653 1.07e+03 0 0.131 0.0939 3.23 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 9, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.9 -635 1.04e+03 0.975 0 0 0 Crystal initStep - 1 -12.1 -635 1.04e+03 0.681 0.234 0.368 0.368 Crystal eBrem - 2 -12.1 -635 1.04e+03 0.156 0.525 1.04 1.4 Crystal eIoni - 3 -12.1 -635 1.04e+03 0 0.156 0.123 1.53 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 8, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.8 -616 1.01e+03 1.06 0 0 0 Crystal initStep - 1 -11.7 -616 1.01e+03 0.411 0.653 1.51 1.51 Crystal eIoni - 2 -11.7 -616 1.01e+03 0 0.411 0.528 2.04 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 7, Parent ID = 6 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.7 -614 1.01e+03 1.91 0 0 0 Crystal initStep - 1 -12 -614 1.01e+03 0.956 0.958 2.07 2.07 Crystal eIoni - 2 -12.1 -614 1.01e+03 0.311 0.646 1.41 3.48 Crystal eIoni - 3 -12.2 -614 1.01e+03 0 0.311 0.354 3.83 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.11 -290 483 0.0014 0 0 0 DriftChamberPhysical initStep - 1 0.14 -289 483 0 0.0014 0.506 0.506 DriftChamberPhysical eIoni + 1 0 -28.9 48.1 1e+03 0.00813 56.1 56.1 WorldPhysical hIoni + 2 -0.0152 -60 100 1e+03 0.00847 60.5 117 DriftChamberPhysical CoupledTransportation + 3 -0.0566 -128 213 1e+03 0.00232 132 249 DriftChamberPhysical hIoni + 4 -0.278 -540 900 1e+03 0.0139 801 1.05e+03 WorldPhysical CoupledTransportation + 5 -0.294 -570 950 1e+03 0.00945 58.3 1.11e+03 WorldPhysical fastSimProcess_parallelGeom + 6 -0.294 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 3, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.0292 -124 207 0.00104 0 0 0 DriftChamberPhysical initStep - 1 0.182 -124 207 0 0.00104 0.32 0.32 DriftChamberPhysical eIoni + 0 -0.0566 -128 213 0.00132 0 0 0 DriftChamberPhysical initStep + 1 -0.28 -128 213 0 0.00132 0.463 0.463 DriftChamberPhysical eIoni ********************************************************************************************************* * G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 -56.9 94.9 0.00166 0 0 0 WorldPhysical initStep - 1 -0.052 -56.9 94.9 0 0.00166 0.121 0.121 WorldPhysical eIoni + 0 0 -28.9 48.1 0.0461 0 0 0 WorldPhysical initStep + 1 4.99 -27.2 50.5 0.0413 0.00479 6.38 6.38 WorldPhysical eIoni + 2 8.63 -21.5 52.5 0.034 0.00569 8.26 14.6 WorldPhysical eIoni + 3 10.8 -16.7 54 0.0276 0.00632 6.58 21.2 WorldPhysical eIoni + 4 8.47 -14.8 51.3 0.0219 0.0057 4.99 26.2 WorldPhysical eIoni + 5 8.56 -13.2 51 0.018 0.00222 1.84 28.1 WorldPhysical eIoni + 6 8.55 -11.2 49.8 0.013 0.00503 3.06 31.1 WorldPhysical eIoni + 7 8.51 -11.3 49.8 0.0116 0.000145 0.163 31.3 WorldPhysical eIoni + 8 8.21 -12.2 49.3 0.00807 0.00213 1.34 32.6 WorldPhysical eIoni + 9 7.78 -12.4 49.9 0.00253 0.00406 1.32 33.9 WorldPhysical eIoni + 10 7.75 -12.4 49.9 0 0.00253 0.237 34.2 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 83, Parent ID = 9 +* G4Track Information: Particle = e-, Track ID = 8, Parent ID = 2 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -12.1 -635 1.04e+03 0.0595 0 0 0 Crystal initStep - 1 -12.1 -635 1.04e+03 0 0.0332 0.0361 0.0361 Crystal phot + 0 7.78 -12.4 49.9 0.00147 0 0 0 WorldPhysical initStep + 1 7.77 -12.5 49.9 0 0.00147 0.101 0.101 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 84, Parent ID = 83 +* G4Track Information: Particle = e-, Track ID = 7, Parent ID = 2 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -12.1 -635 1.04e+03 0.0263 0 0 0 Crystal initStep - 1 -12.1 -635 1.04e+03 0 0.0263 0.00663 0.00663 Crystal eIoni + 0 8.21 -12.2 49.3 0.00139 0 0 0 WorldPhysical initStep + 1 8.24 -12.2 49.3 0 0.00139 0.0928 0.0928 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 82, Parent ID = 10 +* G4Track Information: Particle = e-, Track ID = 6, Parent ID = 2 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -12.1 -653 1.07e+03 0.243 0 0 0 Crystal initStep - 1 -10.6 -653 1.06e+03 0.234 0 2.09 2.09 Crystal compt - 2 0 -659 1.06e+03 0.234 0 15.1 17.2 Crystal CoupledTransportation - 3 7.64 -664 1.05e+03 0 0.036 10.9 28.1 Crystal phot + 0 8.51 -11.3 49.8 0.00124 0 0 0 WorldPhysical initStep + 1 8.51 -11.3 49.8 0 0.00124 0.0778 0.0778 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 86, Parent ID = 82 +* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 2 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 7.64 -664 1.05e+03 0.198 0 0 0 Crystal initStep - 1 7.65 -664 1.05e+03 0 0.198 0.18 0.18 Crystal eIoni + 0 8.56 -13.2 51 0.00172 0 0 0 WorldPhysical initStep + 1 8.6 -13.2 50.9 0 0.00172 0.128 0.128 WorldPhysical eIoni ********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 85, Parent ID = 82 +* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 2 ********************************************************************************************************* Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -10.6 -653 1.06e+03 0.00873 0 0 0 Crystal initStep - 1 -10.6 -653 1.06e+03 0 0.00873 0.00113 0.00113 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 81, Parent ID = 11 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.1 -663 1.08e+03 0.51 0 0 0 Crystal initStep - 1 -11.4 -665 1.08e+03 0.239 0 1.75 1.75 Crystal compt - 2 -20.7 -650 1.09e+03 0.239 0 19 20.8 Crystal CoupledTransportation - 3 -24.2 -645 1.09e+03 0 0.036 6.96 27.7 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 88, Parent ID = 81 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -24.2 -645 1.09e+03 0.203 0 0 0 Crystal initStep - 1 -24.1 -645 1.09e+03 0 0.203 0.187 0.187 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 87, Parent ID = 81 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -11.4 -665 1.08e+03 0.271 0 0 0 Crystal initStep - 1 -11.4 -665 1.08e+03 0 0.271 0.282 0.282 Crystal eBrem - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 80, Parent ID = 14 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -1.25 -723 1.17e+03 0.138 0 0 0 Crystal initStep - 1 1.33e-15 -723 1.17e+03 0.138 0 1.56 1.56 Crystal CoupledTransportation - 2 1.39 -723 1.17e+03 0 0.0332 1.73 3.3 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 89, Parent ID = 80 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 1.39 -723 1.17e+03 0.104 0 0 0 Crystal initStep - 1 1.39 -723 1.17e+03 0 0.104 0.0648 0.0648 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 79, Parent ID = 18 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 4.2 -755 1.21e+03 0.0538 0 0 0 Crystal initStep - 1 4.21 -755 1.21e+03 0 0.0332 0.179 0.179 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 90, Parent ID = 79 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 4.21 -755 1.21e+03 0.0206 0 0 0 Crystal initStep - 1 4.21 -755 1.21e+03 0 0.0206 0.00445 0.00445 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 78, Parent ID = 19 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 10.4 -794 1.25e+03 0.0456 0 0 0 Crystal initStep - 1 10.3 -794 1.25e+03 0 0.036 0.127 0.127 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 91, Parent ID = 78 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 10.3 -794 1.25e+03 0.00958 0 0 0 Crystal initStep - 1 10.3 -794 1.25e+03 0 0.00958 0.00131 0.00131 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 77, Parent ID = 19 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 10.3 -794 1.25e+03 0.114 0 0 0 Crystal initStep - 1 10.3 -794 1.25e+03 0 0.036 1.24 1.24 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 92, Parent ID = 77 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 10.3 -794 1.25e+03 0.0785 0 0 0 Crystal initStep - 1 10.3 -794 1.25e+03 0 0.0785 0.0406 0.0406 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 76, Parent ID = 23 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 25.3 -896 1.36e+03 0.904 0 0 0 Crystal initStep - 1 27.4 -898 1.36e+03 0.263 0 3.27 3.27 Crystal compt - 2 28.6 -897 1.35e+03 0 0.036 8.13 11.4 Crystal phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 94, Parent ID = 76 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 28.6 -897 1.35e+03 0.227 0 0 0 Crystal initStep - 1 28.6 -897 1.35e+03 0 0.227 0.222 0.222 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 93, Parent ID = 76 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 27.4 -898 1.36e+03 0.641 0 0 0 Crystal initStep - 1 27.5 -898 1.36e+03 0 0.641 0.957 0.957 Crystal eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 75, Parent ID = 28 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 54.4 -1.12e+03 1.6e+03 7.43 0 0 0 Tower initStep - 1 50 -1.13e+03 1.62e+03 7.43 0 19.8 19.8 Tower CoupledTransportation - 2 39.4 -1.14e+03 1.66e+03 0 0 47.5 67.3 Tower conv - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 74, Parent ID = 28 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 54.5 -1.12e+03 1.6e+03 1.86 0 0 0 Tower initStep - 1 50 -1.12e+03 1.62e+03 1.86 0 24.7 24.7 Tower CoupledTransportation - 2 48.1 -1.12e+03 1.64e+03 0.439 0 10.5 35.2 Tower compt - 3 41.8 -1.12e+03 1.63e+03 0.211 0 6.46 41.7 Tower compt - 4 46.4 -1.11e+03 1.64e+03 0.133 0 11.4 53 Tower compt - 5 41.3 -1.11e+03 1.63e+03 0 0.00711 7.49 60.5 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 73, Parent ID = 28 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 54.6 -1.12e+03 1.6e+03 2.18 0 0 0 Tower initStep - 1 53.4 -1.12e+03 1.61e+03 0.305 0 8.18 8.18 Tower compt - 2 69.8 -1.12e+03 1.6e+03 0.267 0 18.4 26.6 Tower compt - 3 81.6 -1.09e+03 1.59e+03 0.132 0 30.3 56.9 Tower compt - 4 81.3 -1.09e+03 1.59e+03 0.0899 0 0.968 57.9 Tower compt - 5 80.2 -1.09e+03 1.59e+03 0 0.00711 3.29 61.2 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e+, Track ID = 96, Parent ID = 75 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.4 -1.14e+03 1.66e+03 2.19 0 0 0 Tower initStep - 1 39.3 -1.14e+03 1.66e+03 0.559 1.63 1.59 1.59 Tower eIoni - 2 39.2 -1.14e+03 1.66e+03 0 0.559 0.373 1.97 Tower eIoni - 3 39.2 -1.14e+03 1.66e+03 0 0 0 1.97 Tower annihil - -********************************************************************************************************* -* G4Track Information: Particle = anti_nu_mu, Track ID = 5, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.14 -350 584 162 0 0 0 DriftChamberPhysical initStep - 1 48.5 -497 900 162 0 352 352 WorldPhysical CoupledTransportation - 2 63.8 -544 1e+03 162 0 111 463 Crystal CoupledTransportation - 3 65.9 -550 1.01e+03 162 0 15.1 479 Crystal CoupledTransportation - 4 82.5 -600 1.12e+03 162 0 120 598 Crystal CoupledTransportation - 5 99 -650 1.23e+03 162 0 120 718 Crystal CoupledTransportation - 6 100 -653 1.24e+03 162 0 7.19 725 Crystal CoupledTransportation - 7 116 -700 1.34e+03 162 0 113 838 Crystal CoupledTransportation - 8 125 -730 1.4e+03 162 0 70.9 909 WorldPhysical CoupledTransportation - 9 141 -776 1.5e+03 162 0 111 1.02e+03 HadCaloPhysical CoupledTransportation - 10 148 -799 1.55e+03 162 0 55.7 1.08e+03 Tower CoupledTransportation - 11 150 -804 1.56e+03 162 0 11.6 1.09e+03 Tower CoupledTransportation - 12 165 -850 1.66e+03 162 0 110 1.2e+03 Tower CoupledTransportation - 13 198 -950 1.87e+03 162 0 240 1.44e+03 Tower CoupledTransportation - 14 231 -1.05e+03 2.09e+03 162 0 240 1.68e+03 Tower CoupledTransportation - 15 250 -1.11e+03 2.21e+03 162 0 135 1.81e+03 Tower CoupledTransportation - 16 264 -1.15e+03 2.3e+03 162 0 104 1.92e+03 HadCaloPhysical CoupledTransportation - 17 294 -1.24e+03 2.5e+03 162 0 218 2.13e+03 WorldPhysical CoupledTransportation - 18 525 -1.94e+03 4e+03 162 0 1.67e+03 3.8e+03 OutOfWorld CoupledTransportation - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 105, Parent ID = 73 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 80.2 -1.09e+03 1.59e+03 0.0827 0 0 0 Tower initStep - 1 80.2 -1.09e+03 1.59e+03 0 0.0827 0.0198 0.0198 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 104, Parent ID = 73 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 81.3 -1.09e+03 1.59e+03 0.0419 0 0 0 Tower initStep - 1 81.3 -1.09e+03 1.59e+03 0 0.0419 0.00624 0.00624 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 103, Parent ID = 73 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 81.6 -1.09e+03 1.59e+03 0.135 0 0 0 Tower initStep - 1 81.6 -1.09e+03 1.59e+03 0 0.135 0.0445 0.0445 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 102, Parent ID = 73 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 69.8 -1.12e+03 1.6e+03 0.0385 0 0 0 Tower initStep - 1 69.8 -1.12e+03 1.6e+03 0 0.0385 0.00541 0.00541 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 101, Parent ID = 73 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 53.4 -1.12e+03 1.61e+03 1.87 0 0 0 Tower initStep - 1 53.3 -1.12e+03 1.61e+03 0.184 1.69 1.44 1.44 Tower eIoni - 2 53.3 -1.12e+03 1.61e+03 0 0.184 0.0731 1.51 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 100, Parent ID = 74 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 41.3 -1.11e+03 1.63e+03 0.126 0 0 0 Tower initStep - 1 41.3 -1.11e+03 1.63e+03 0 0.126 0.0397 0.0397 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 99, Parent ID = 74 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 46.4 -1.11e+03 1.64e+03 0.0784 0 0 0 Tower initStep - 1 46.4 -1.11e+03 1.64e+03 0 0.0784 0.0181 0.0181 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 98, Parent ID = 74 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 41.8 -1.12e+03 1.63e+03 0.228 0 0 0 Tower initStep - 1 41.8 -1.12e+03 1.63e+03 0 0.228 0.102 0.102 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 97, Parent ID = 74 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 48.1 -1.12e+03 1.64e+03 1.42 0 0 0 Tower initStep - 1 48.1 -1.12e+03 1.64e+03 0.0475 1.37 1.17 1.17 Tower eIoni - 2 48.1 -1.12e+03 1.64e+03 0 0.0475 0.00773 1.18 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 95, Parent ID = 75 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.4 -1.14e+03 1.66e+03 4.22 0 0 0 Tower initStep - 1 39.2 -1.14e+03 1.67e+03 1.97 2.25 2.16 2.16 Tower eIoni - 2 39 -1.14e+03 1.67e+03 0.635 1.34 1.49 3.64 Tower eIoni - 3 39 -1.14e+03 1.67e+03 0 0.635 0.446 4.09 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 107, Parent ID = 96 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.2 -1.14e+03 1.66e+03 0.511 0 0 0 Tower initStep - 1 39.4 -1.14e+03 1.66e+03 0.317 0 0.235 0.235 Tower compt - 2 39.4 -1.14e+03 1.66e+03 0 0.00711 0.115 0.35 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = gamma, Track ID = 106, Parent ID = 96 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.2 -1.14e+03 1.66e+03 0.511 0 0 0 Tower initStep - 1 32 -1.14e+03 1.67e+03 0.255 0 9.13 9.13 Tower compt - 2 32 -1.14e+03 1.67e+03 0 0.00711 0.229 9.36 Tower phot - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 111, Parent ID = 106 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 32 -1.14e+03 1.67e+03 0.248 0 0 0 Tower initStep - 1 32 -1.14e+03 1.67e+03 0 0.248 0.117 0.117 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 110, Parent ID = 106 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 32 -1.14e+03 1.67e+03 0.256 0 0 0 Tower initStep - 1 32 -1.14e+03 1.67e+03 0 0.256 0.122 0.122 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 109, Parent ID = 107 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.4 -1.14e+03 1.66e+03 0.31 0 0 0 Tower initStep - 1 39.3 -1.14e+03 1.66e+03 0 0.31 0.163 0.163 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 108, Parent ID = 107 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 39.4 -1.14e+03 1.66e+03 0.194 0 0 0 Tower initStep - 1 39.4 -1.14e+03 1.66e+03 0 0.194 0.0795 0.0795 Tower eIoni - -********************************************************************************************************* -* G4Track Information: Particle = pi-, Track ID = 1, Parent ID = 0 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 0 0 0 1e+03 0 0 0 WorldPhysical initStep - 1 0 -60 100 1e+03 0.0162 117 117 DriftChamberPhysical CoupledTransportation - 2 -0.00378 -226 376 1e+03 0.00521 322 439 DriftChamberPhysical hIoni - 3 -0.0157 -540 900 1e+03 0.0124 611 1.05e+03 WorldPhysical CoupledTransportation - 4 -0.024 -570 950 1e+03 0.00691 58.3 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - 5 -0.024 -570 950 0 1e+03 0 1.11e+03 WorldPhysical fastSimProcess_parallelGeom - -********************************************************************************************************* -* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1 -********************************************************************************************************* - -Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName - 0 -0.00378 -226 376 0.00358 0 0 0 DriftChamberPhysical initStep - 1 -1.16 -227 376 0.0022 0.00138 1.78 1.78 DriftChamberPhysical eIoni - 2 -1.89 -226 376 0 0.0022 1.06 2.84 DriftChamberPhysical eIoni + 0 8.63 -21.5 52.5 0.00168 0 0 0 WorldPhysical initStep + 1 8.62 -21.6 52.6 0 0.00168 0.123 0.123 WorldPhysical eIoni Graphics systems deleted. Visualization Manager deleting... diff --git a/examples/extended/parameterisations/Par02/examplePar02.out b/examples/extended/parameterisations/Par02/examplePar02.out index 612a7d98c9..84e5614d1d 100644 --- a/examples/extended/parameterisations/Par02/examplePar02.out +++ b/examples/extended/parameterisations/Par02/examplePar02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -44,6 +44,12 @@ hcal !!! hcal !!! hcal !!! +Warning : Region does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. +Warning : Region does not have specific production cuts, +even though it appears in the current tracking world. +Default cuts are used for this region. Warning : Region does not have specific production cuts, even though it appears in the current tracking world. Default cuts are used for this region. @@ -74,12 +80,6 @@ Default cuts are used for this region. Warning : Region does not have specific production cuts, even though it appears in the current tracking world. Default cuts are used for this region. -Warning : Region does not have specific production cuts, -even though it appears in the current tracking world. -Default cuts are used for this region. -Warning : Region does not have specific production cuts, -even though it appears in the current tracking world. -Default cuts are used for this region. Instantiating Visualization Manager....... Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... diff --git a/examples/extended/parameterisations/gflash/test.out b/examples/extended/parameterisations/gflash/test.out index 93b5236709..2138d2c5eb 100644 --- a/examples/extended/parameterisations/gflash/test.out +++ b/examples/extended/parameterisations/gflash/test.out @@ -9,7 +9,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -111,16 +111,6 @@ Creating shower parameterization models - GFlashHomoShowerParameterisation::Constructor - /********************************************/ end shower parameterization. -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -808,6 +798,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. ------ Start ExGflashEventAction ----- Start generating event Nr 0 @@ -828,9 +831,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.02 +Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.02 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 1 ----- 11927 hits are stored in ExGflashHitsCollection @@ -856,7 +859,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.02 +Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -872,7 +875,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.02 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 4 ----- 11925 hits are stored in ExGflashHitsCollection @@ -886,7 +889,7 @@ Internal GetUserElapsed Time: 0.02 ****************************************** Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.01 +Internal GetUserElapsed Time: 0 ****************************************** ------ ExGflashEventAction::End of event nr. 5 ----- 11948 hits are stored in ExGflashHitsCollection @@ -898,7 +901,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.01 +Internal Real Elapsed Time is: 0 Internal System Elapsed Time: 0 Internal GetUserElapsed Time: 0.01 ****************************************** @@ -914,7 +917,7 @@ Internal GetUserElapsed Time: 0.01 ****************************************** Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.02 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 7 ----- 11976 hits are stored in ExGflashHitsCollection @@ -940,9 +943,9 @@ Internal GetUserElapsed Time: 0.01 ****************************************** -Internal Real Elapsed Time is: 0.02 +Internal Real Elapsed Time is: 0.01 Internal System Elapsed Time: 0 -Internal GetUserElapsed Time: 0.02 +Internal GetUserElapsed Time: 0.01 ****************************************** ------ ExGflashEventAction::End of event nr. 9 ----- 11961 hits are stored in ExGflashHitsCollection @@ -952,10 +955,10 @@ Internal GetUserElapsed Time: 0.02 number of event = 10 Graphics systems deleted. Visualization Manager deleting... -Internal Real Elapsed Time /event is: 0.0144444 +Internal Real Elapsed Time /event is: 0.01 ****************************************** -Total Real Elapsed Time is: 1.51 +Total Real Elapsed Time is: 1.24 Total System Elapsed Time: 0.02 -Total GetUserElapsed Time: 1.49 +Total GetUserElapsed Time: 1.2 ****************************************** diff --git a/examples/extended/persistency/P03/batch.out b/examples/extended/persistency/P03/batch.out index e334550fb1..a21e62f757 100644 --- a/examples/extended/persistency/P03/batch.out +++ b/examples/extended/persistency/P03/batch.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -158,7 +158,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10 - User=0s Real=0.01s Sys=0.01s + User=0s Real=0s Sys=0s WARNING: 10 events have been kept for refreshing and/or reviewing. "/vis/reviewKeptEvents" to review them one by one. diff --git a/examples/extended/persistency/gdml/G01/g01.out b/examples/extended/persistency/gdml/G01/g01.out index 0f5859ea4d..8b2c782d5e 100644 --- a/examples/extended/persistency/gdml/G01/g01.out +++ b/examples/extended/persistency/gdml/G01/g01.out @@ -1,13 +1,13 @@ Usage: load_gdml -G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/persistency/gdml/G01/solids.gdml'... +G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/persistency/gdml/G01/solids.gdml'... G4GDML: Reading definitions... G4GDML: Reading materials... G4GDML: Reading solids... G4GDML: Reading structure... G4GDML: Reading setup... -G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/persistency/gdml/G01/solids.gdml' done! +G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/persistency/gdml/G01/solids.gdml' done! Stripping off GDML names of materials, solids and volumes ... ############################################ @@ -15,7 +15,7 @@ Stripping off GDML names of materials, solids and volumes ... ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -23,16 +23,6 @@ Stripping off GDML names of materials, solids and volumes ... <<< Geant4 Physics List simulation engine: FTFP_BERT 2.0 -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -732,6 +722,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -768,17 +771,17 @@ Start closing geometry. G4GeometryManager::ReportVoxelStats -- Voxel Statistics Total memory consumed for geometry optimisation: 3 kByte - Total CPU time elapsed for geometry optimisation: 0.01 seconds + Total CPU time elapsed for geometry optimisation: 0 seconds Voxelisation: top CPU users: Percent Total CPU System CPU Memory Volume ------- ---------- ---------- -------- ---------- - 100.00 0.01 0.00 3k World + 0.00 0.00 0.00 3k World Voxelisation: top memory users: Percent Memory Heads Nodes Pointers Total CPU Volume ------- -------- ------ ------ -------- ---------- ---------- - 100.00 3k 9 37 106 0.01 World + 100.00 3k 9 37 106 0.00 World ### Run 0 starts. ********************************************************************************************************* @@ -1111,7 +1114,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=0s Real=0s Sys=0s + User=0.01s Real=0.01s Sys=0s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1478,7 +1481,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu Run terminated. Run Summary Number of events processed : 20 - User=0.01s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 @@ -1518,7 +1521,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0s Real=0s Sys=0s + User=0s Real=0.01s Sys=0s /gun/direction 0.3 -0.2 1 /run/beamOn 20 @@ -1557,7 +1560,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0s Real=0.01s Sys=0s + User=0.01s Real=0s Sys=0s /gun/direction -0.3 0.2 0.6 /run/beamOn 20 @@ -1596,7 +1599,7 @@ Index : 1 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 20 - User=0.01s Real=0s Sys=0s + User=0s Real=0s Sys=0s G4 kernel has come to Quit state. UserDetectorConstruction deleted. UserPhysicsList deleted. diff --git a/examples/extended/persistency/gdml/G04/g04.out b/examples/extended/persistency/gdml/G04/g04.out index f89d5ca716..3af7aaabef 100644 --- a/examples/extended/persistency/gdml/G04/g04.out +++ b/examples/extended/persistency/gdml/G04/g04.out @@ -1,13 +1,13 @@ Usage: gdml_det -G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml'... +G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml'... G4GDML: Reading definitions... G4GDML: Reading materials... G4GDML: Reading solids... G4GDML: Reading structure... G4GDML: Reading setup... -G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/10-03-ref-00_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml' done! +G4GDML: Reading '/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/geant4-10-03-patches_branch/examples/extended/persistency/gdml/G04/auxiliary.gdml' done! Stripping off GDML names of materials, solids and volumes ... ############################################ @@ -15,7 +15,7 @@ Stripping off GDML names of materials, solids and volumes ... ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -34,16 +34,6 @@ Volume Boxvol has the following list of auxiliary information: Attaching sensitive detector Tracker to volume Boxvol -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -778,6 +768,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -1032,7 +1035,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0s Real=0s Sys=0s + User=0s Real=0.01s Sys=0s /gun/direction 0 0 -1 /run/beamOn 20 @@ -1284,7 +1287,7 @@ Processing hits .... Run terminated. Run Summary Number of events processed : 20 - User=0.01s Real=0s Sys=0s + User=0s Real=0s Sys=0s /tracking/verbose 0 /gun/direction 0.3 0.2 1 /run/beamOn 20 diff --git a/examples/extended/polarisation/Pol01/pol01.out b/examples/extended/polarisation/Pol01/pol01.out index 46b1ca4048..4c866694d6 100644 --- a/examples/extended/polarisation/Pol01/pol01.out +++ b/examples/extended/polarisation/Pol01/pol01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -149,7 +149,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics Run terminated. Run Summary Number of events processed : 10000 - User=0.26s Real=0.25s Sys=0s + User=0.08s Real=0.08s Sys=0s The run consists of 10000 gamma of 10 MeV through 1.75 mm of G4_Fe (density: 7.874 g/cm3 ) diff --git a/examples/extended/radioactivedecay/rdecay01/rdecay01.out b/examples/extended/radioactivedecay/rdecay01/rdecay01.out index 52cc4efd49..974e82b9ad 100644 --- a/examples/extended/radioactivedecay/rdecay01/rdecay01.out +++ b/examples/extended/radioactivedecay/rdecay01/rdecay01.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -131,7 +131,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Run terminated. Run Summary Number of events processed : 1 - User=0s Real=0.34s Sys=0s + User=0s Real=0s Sys=0s ======================== run summary ====================== The run was 1 Co60 of 0 eV @@ -206,7 +206,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=1.77s Real=1.77s Sys=0s + User=0.86s Real=0.86s Sys=0s ======================== run summary ====================== The run was 100000 Co60 of 0 eV @@ -280,7 +280,7 @@ Index : 0 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 100000 - User=4.86s Real=4.87s Sys=0s + User=1.99s Real=1.99s Sys=0s ======================== run summary ====================== The run was 100000 Co60 of 0 eV @@ -293,7 +293,7 @@ Run Summary Ni60[2158.632]: 8 Emean = 3.024 eV ( 0.3664 eV --> 5.569 eV ) Ni60[2505.753]: 99868 Emean = 1.47 eV ( 0.001884 eV --> 3.791 eV ) anti_nu_e: 100000 Emean = 222.7 keV ( 1.032 keV --> 1.485 MeV) - e-: 100035 Emean = 96.27 keV ( 5.686 eV --> 1.436 MeV) + e-: 100035 Emean = 96.28 keV ( 5.686 eV --> 1.436 MeV) gamma: 199840 Emean = 1.253 MeV ( 347.1 keV --> 2.159 MeV) Ekin Total (Q single decay): mean = 941.3 keV ( 317.1 keV --> 2.159 MeV) diff --git a/examples/extended/radioactivedecay/rdecay02/rdecay02.out b/examples/extended/radioactivedecay/rdecay02/rdecay02.out index f9b3119727..1bffd5c9cc 100644 --- a/examples/extended/radioactivedecay/rdecay02/rdecay02.out +++ b/examples/extended/radioactivedecay/rdecay02/rdecay02.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -52,22 +52,12 @@ Command is ignored. for proton : 3 to 12 GeV for neutron : 3 to 12 GeV -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= -/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5 -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +/mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +@@@ G4ParticleHPInelasticData instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5 +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen # /process/list Transportation, msc, hIoni, ionIoni @@ -99,7 +89,7 @@ Set file name: rdecay02 ### === Deexcitation model UAtomDeexcitation is activated for 1 region: DefaultRegionForTheWorld 1 1 0 ### === Auger cascade flag: 1 -### === Ignore cuts flag: 1 +### === Ignore cuts flag: 0 phot: for gamma SubType= 12 BuildTable= 0 LambdaPrime table from 200 keV to 100 TeV in 61 bins @@ -300,12 +290,12 @@ muPairProd: for mu- SubType= 4 Sampling table 21x1001 from 1 GeV to 100 TeV ===== EM models for the G4Region DefaultRegionForTheWorld ====== muPairProd : Emin= 0 meV Emax= 100 TeV -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen -NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen -@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Inelastic -NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/10-03-ref-00_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen +NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen +@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Inelastic +NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /mnt/build/jenkins/workspace/g4-slc6/COMPILER/gcc49/LABEL/slc6/THREAD/Seq/release/RelWithDebInfo/geant4-10-03-patches_branch/build/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen msc: for pi+ SubType= 10 RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0 @@ -615,6 +605,19 @@ hIoni: for pi- SubType= 2 Cr_sctns: GheishaInelastic: 0 meV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 1 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -661,55 +664,55 @@ Index : 2 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10000 - User=5.4s Real=5.46s Sys=0s + User=1.17s Real=1.18s Sys=0s The run is 10000 Ne24 of 0 meV through : Target : Length = 1 cm Radius = 5 mm Material = G4_CESIUM_IODIDE Detector : Length = 5 cm Thickness = 2 cm Material = Germanium - Mean energy deposit in target, in time window = 803.72 keV rms = 418.96 keV - Mean energy deposit in detector, in time window = 19.263 keV rms = 111.16 keV + Mean energy deposit in target, in time window = 811.47 keV rms = 424.76 keV + Mean energy deposit in detector, in time window = 18.94 keV rms = 108.4 keV Process calls frequency in target : - RadioactiveDecay= 60755 Transportation= 50221 annihil= 163 - compt= 4202 conv= 170 eIoni= 64941 - ionIoni= 29993 msc= 4085 phot= 3340 + RadioactiveDecay= 60798 Transportation= 50217 annihil= 157 + compt= 4288 conv= 161 eIoni= 26011 + ionIoni= 29996 msc= 3404 phot= 1543 Process calls frequency in detector: - Transportation= 45942 annihil= 357 compt= 22588 - conv= 352 eIoni= 78168 msc= 6894 - phot= 6592 + Transportation= 45844 annihil= 352 compt= 22683 + conv= 354 eIoni= 27696 msc= 6940 + phot= 4357 List of generated particles in target: - Mg24: 10000 Emean = 42.262 eV ( 41.932 eV --> 847.29 eV ) - Mg24[1368.672]: 9993 Emean = 169.94 eV ( 6.8912 eV --> 397.5 eV ) - Mg24[4122.889]: 9981 Emean = 39.271 eV ( 183.91 meV --> 74.671 eV ) - Mg24[5235.120]: 8 Emean = 3.3687 eV ( 822.49 meV --> 5.5987 eV ) - Na24: 9993 Emean = 4.9933 eV ( 4.9901 eV --> 15.742 eV ) - Na24[1346.621]: 771 Emean = 27.117 eV ( 169.83 meV --> 52.419 eV ) - Na24[472.207]: 10000 Emean = 67.894 eV ( 185.29 meV --> 134.27 eV ) - Na24[563.199]: 9 Emean = 13.735 eV ( 13.735 eV --> 13.735 eV ) - anti_nu_e: 20000 Emean = 983.65 keV ( 14.585 keV --> 5.0747 MeV) - e+: 170 Emean = 776.09 keV ( 75.45 keV --> 1.6009 MeV) - e-: 64930 Emean = 254.76 keV ( 550 meV --> 4.152 MeV) - gamma: 32886 Emean = 1.4233 MeV ( 240.5 eV --> 3.8661 MeV) + Mg24: 10000 Emean = 42.123 eV ( 41.932 eV --> 815.8 eV ) + Mg24[1368.672]: 9996 Emean = 170.05 eV ( 133.97 eV --> 431.48 eV ) + Mg24[4122.889]: 9979 Emean = 39.088 eV ( 36.02 meV --> 74.642 eV ) + Mg24[5235.120]: 12 Emean = 3.6436 eV ( 731.32 meV --> 6.8699 eV ) + Na24: 9996 Emean = 4.9944 eV ( 4.9901 eV --> 15.742 eV ) + Na24[1346.621]: 809 Emean = 28.556 eV ( 240.28 meV --> 53.094 eV ) + Na24[472.207]: 10000 Emean = 67.665 eV ( 185.29 meV --> 133.78 eV ) + Na24[563.199]: 6 Emean = 13.735 eV ( 13.735 eV --> 13.735 eV ) + anti_nu_e: 20000 Emean = 976.8 keV ( 30.073 keV --> 4.5508 MeV) + e+: 161 Emean = 788.9 keV ( 1.0566 keV --> 1.6036 MeV) + e-: 26004 Emean = 639.74 keV ( 72.339 eV --> 5.4715 MeV) + gamma: 31106 Emean = 1.5044 MeV ( 90.991 keV --> 3.8661 MeV) List of generated particles in detector: - e+: 352 Emean = 828.5 keV ( 7.8341 keV --> 1.6461 MeV) - e-: 77831 Emean = 133.13 keV ( 8.63 eV --> 3.0333 MeV) - gamma: 3037 Emean = 128.69 keV ( 1.0435 keV --> 1.2958 MeV) + e+: 354 Emean = 796.27 keV ( 20.294 keV --> 1.6471 MeV) + e-: 27383 Emean = 379.92 keV ( 101.6 eV --> 3.5685 MeV) + gamma: 704 Emean = 514.44 keV ( 393.5 keV --> 1.0468 MeV) ... write Root file : rdecay02.root - done ... close Root file : rdecay02.root - done --------- Ranecu engine status --------- Initial seed (index) = 0 - Current couple of seeds = 1285882861, 577866048 + Current couple of seeds = 846327058, 881305136 ---------------------------------------- G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 10 of which, static: 0 -Dynamic pools deleted: 10 / Total memory freed: 0.052 MB +Dynamic pools deleted: 10 / Total memory freed: 0.028 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/examples/extended/runAndEvent/RE01/sample.out b/examples/extended/runAndEvent/RE01/sample.out index d245b9194f..5ddad0f753 100644 --- a/examples/extended/runAndEvent/RE01/sample.out +++ b/examples/extended/runAndEvent/RE01/sample.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -63,16 +63,6 @@ Available colours: I'm World. G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 Warning : Region does not have specific production cuts, even though it appears in the current tracking world. @@ -771,6 +761,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ### Run 0 start. Tracks in tracking region have been processed. -- Stage 0 over. @@ -2154,3121 +2157,2872 @@ Cell[9,25] 0.0010991355408059 [GeV] Source track ID 4913 (neutron,1.4783692592721[GeV]) at (458.5309876774,199.3723484829,-606.56000985403) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[5,0] 0.0056188532404578 [GeV] -Cell[6,47] 0.00023267184528106 [GeV] -Cell[5,3] 0.047317580008508 [GeV] -Cell[5,2] 0.0012463361243295 [GeV] -Cell[6,1] 0.0025320327907694 [GeV] -Cell[6,0] 0.0003919878375393 [GeV] -Cell[4,2] 0.0022547514465739 [GeV] -Cell[4,1] 0.00027216173018871 [GeV] -Cell[3,1] 4.8048764460873e-07 [GeV] -Cell[6,4] 0.0024095146134759 [GeV] -Cell[3,0] 0.0016212710947134 [GeV] -Cell[6,46] 8.6839286268514e-09 [GeV] -Cell[6,3] 0.13817774996484 [GeV] -Cell[5,4] 0.047712200889077 [GeV] -Cell[6,2] 0.0065647509569623 [GeV] -Cell[5,1] 0.14604646517571 [GeV] -Cell[4,3] 0.00030322355938824 [GeV] -Cell[4,0] 0.0064588412579015 [GeV] -Cell[3,47] 1.1423821888457e-11 [GeV] -### Total energy deposition in calorimeter by a source track in 19 cells : 0.40916088171872 (GeV) +Cell[5,3] 0.070398694448174 [GeV] +Cell[5,2] 0.00040715638820234 [GeV] +Cell[3,46] 0.0029883866092796 [GeV] +Cell[6,1] 0.0016585238560428 [GeV] +Cell[2,45] 3.3232954592677e-09 [GeV] +Cell[4,46] 0.0047651558150716 [GeV] +Cell[4,2] 0.0020587642994564 [GeV] +Cell[4,1] 0.011949982472807 [GeV] +Cell[3,1] 0.0020446784547081 [GeV] +Cell[3,2] 3.3288509939666e-08 [GeV] +Cell[6,4] 0.00049661554316003 [GeV] +Cell[3,0] 0.0018347180815136 [GeV] +Cell[2,47] 4.4320741183128e-05 [GeV] +Cell[6,3] 0.11949444267396 [GeV] +Cell[5,4] 0.046250570092746 [GeV] +Cell[6,2] 0.0065124148919784 [GeV] +Cell[4,0] 0.028630440622301 [GeV] +Cell[5,1] 0.0017905720283334 [GeV] +Cell[4,47] 0.03964567736609 [GeV] +Cell[3,47] 0.0016008831069455 [GeV] +Cell[3,7] 1.8387705495115e-06 [GeV] +Cell[2,2] 5.711567155231e-09 [GeV] +Cell[4,3] 1.1614884897426e-08 [GeV] +Cell[2,0] 0.00088094103630419 [GeV] +Cell[3,45] 0.00033148350886518 [GeV] +### Total energy deposition in calorimeter by a source track in 25 cells : 0.34378631474593 (GeV) Source track ID 3696 (neutron,1.3736529283299[GeV]) at (-320.80010889178,-383.51960854045,-221.13070173861) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[8,29] 8.4615244806855e-05 [GeV] -Cell[9,31] 0.0012977158967924 [GeV] -Cell[9,28] 2.8703529962513e-05 [GeV] -Cell[7,45] 8.1096703183903e-08 [GeV] -Cell[7,37] 3.4146578691434e-06 [GeV] -Cell[7,28] 0.00015869012476333 [GeV] -Cell[14,42] 4.1105417019139e-05 [GeV] -Cell[8,32] 0.04620860833609 [GeV] -Cell[7,31] 0.00019469354688238 [GeV] -Cell[13,43] 0.00062415321177843 [GeV] -Cell[13,41] 2.7066562324762e-12 [GeV] -Cell[9,29] 0.00067221013098504 [GeV] -Cell[9,32] 5.5997670278884e-07 [GeV] -Cell[7,20] 0.00013819844678051 [GeV] -Cell[7,35] 8.8180829464704e-05 [GeV] -Cell[7,33] 8.1409971086259e-06 [GeV] -Cell[7,19] 7.530664540127e-05 [GeV] -Cell[7,32] 0.00036709984287324 [GeV] -Cell[8,33] 0.10487935412936 [GeV] -Cell[8,35] 1.2761597754434e-06 [GeV] -Cell[8,30] 0.046262705251472 [GeV] -Cell[7,29] 0.0019898455727172 [GeV] -Cell[9,30] 4.712645226391e-05 [GeV] -Cell[8,24] 1.5476953412872e-06 [GeV] -Cell[8,23] 3.1085900001358e-05 [GeV] -Cell[13,42] 3.6421238783078e-05 [GeV] -Cell[8,31] 0.02077167094973 [GeV] -Cell[8,40] 0.0001587820500331 [GeV] -Cell[8,34] 4.3360275516534e-05 [GeV] -Cell[11,37] 0.0010361340044293 [GeV] -### Total energy deposition in calorimeter by a source track in 30 cells : 0.22525078761411 (GeV) +Cell[8,31] 0.42981533519299 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.42981533519299 (GeV) Source track ID 209 (pi+,1.0810871086048[GeV]) at (389.77507755181,-313.16990423648,505.43484913548) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[15,3] 3.4008378861472e-08 [GeV] -Cell[8,10] 0.00045476694059846 [GeV] -Cell[9,10] 0.0011574142642552 [GeV] -Cell[8,29] 3.5736726886171e-05 [GeV] -Cell[7,42] 2.0393076760229e-05 [GeV] -Cell[9,31] 9.6914967580233e-06 [GeV] -Cell[13,35] 1.6343111085007e-05 [GeV] -Cell[8,28] 0.000854239004909 [GeV] -Cell[5,13] 3.7613657332258e-06 [GeV] -Cell[7,45] 6.8426644429564e-07 [GeV] -Cell[9,6] 2.4422631540801e-06 [GeV] -Cell[7,34] 2.9894119477831e-05 [GeV] -Cell[5,41] 1.3497323379852e-05 [GeV] -Cell[4,13] 0.00028393155382264 [GeV] -Cell[2,19] 4.1850824491121e-06 [GeV] -Cell[6,38] 2.1329082665034e-07 [GeV] -Cell[14,40] 0.00036619519644807 [GeV] -Cell[14,42] 2.7459805096441e-11 [GeV] -Cell[14,39] 0.0028540292776313 [GeV] -Cell[11,33] 0.00050086722579681 [GeV] -Cell[13,24] 0.00011300876805228 [GeV] -Cell[12,24] 0.00084722266957704 [GeV] -Cell[13,28] 0.00029472308203617 [GeV] -Cell[12,3] 0.0022243743951364 [GeV] -Cell[13,25] 0.0061397588174782 [GeV] -Cell[12,44] 0.0034619670316567 [GeV] -Cell[14,28] 2.6165673016294e-06 [GeV] -Cell[12,5] 0.00087559031476462 [GeV] -Cell[15,47] 2.0187597556287e-08 [GeV] -Cell[15,24] 0.00044046866716766 [GeV] -Cell[11,31] 1.8281404380787e-06 [GeV] -Cell[11,32] 1.1454977709491e-07 [GeV] -Cell[10,34] 9.6769072115421e-09 [GeV] -Cell[3,40] 7.2031998715829e-06 [GeV] -Cell[0,7] 8.2542639574967e-08 [GeV] -Cell[10,30] 6.9688693620265e-06 [GeV] -Cell[14,36] 0.0014757763019575 [GeV] -Cell[5,12] 0.0025821619575348 [GeV] -Cell[14,0] 2.592163334657e-05 [GeV] -Cell[15,38] 0.00033653858428147 [GeV] -Cell[15,39] 7.4791279303099e-09 [GeV] -Cell[4,14] 7.9848264661564e-05 [GeV] -Cell[4,45] 3.6384619306773e-08 [GeV] -Cell[11,42] 0.0032329212816803 [GeV] -Cell[11,43] 3.0613155367178e-05 [GeV] -Cell[12,41] 0.0054083538530259 [GeV] -Cell[12,42] 0.36368104597457 [GeV] -Cell[11,41] 0.0019636541449951 [GeV] -Cell[12,39] 4.5836255378617e-07 [GeV] -Cell[12,43] 0.003440921724657 [GeV] -Cell[12,40] 0.002189592509866 [GeV] -Cell[11,7] 7.4499412336081e-05 [GeV] -Cell[11,6] 0.00030933034885118 [GeV] -Cell[13,43] 0.0019436394464245 [GeV] -Cell[12,35] 0.00018625657122141 [GeV] -Cell[12,23] 1.5812098743027e-06 [GeV] -Cell[12,21] 2.0239659897925e-06 [GeV] -Cell[13,41] 0.0020561487363353 [GeV] -Cell[14,25] 0.0028550404991716 [GeV] -Cell[14,24] 1.9389453882468e-09 [GeV] -Cell[12,1] 0.0028563016799565 [GeV] -Cell[13,30] 0.00048156198870716 [GeV] -Cell[19,42] 0.00047019358880061 [GeV] -Cell[3,41] 9.6699365822133e-06 [GeV] -Cell[2,31] 0.0016981146225304 [GeV] -Cell[4,12] 0.0011849030717268 [GeV] -Cell[11,12] 6.2928652596383e-08 [GeV] -Cell[12,20] 3.6921119317412e-10 [GeV] -Cell[5,9] 5.6342690434803e-05 [GeV] -Cell[12,34] 0.0010361175140755 [GeV] -Cell[11,2] 2.5360534345964e-05 [GeV] -Cell[8,19] 2.1820478577865e-05 [GeV] -Cell[7,36] 1.0262030496961e-05 [GeV] -Cell[7,33] 0.00010225455447835 [GeV] -Cell[6,15] 1.1278865218628e-05 [GeV] -Cell[1,5] 9.389070328325e-09 [GeV] -Cell[2,20] 0.0012449578651575 [GeV] -Cell[2,16] 0.0018900651791512 [GeV] -Cell[4,35] 0.0022999548215635 [GeV] -Cell[10,39] 3.1428528018296e-08 [GeV] -Cell[9,23] 0.00073278745025118 [GeV] -Cell[9,22] 0.0012241905547317 [GeV] -Cell[11,5] 0.0008353672927974 [GeV] -Cell[15,15] 0.000497199843168 [GeV] -Cell[12,6] 0.001588271804594 [GeV] -Cell[10,11] 3.3072428777814e-08 [GeV] -Cell[8,23] 4.8837173607239e-05 [GeV] -Cell[13,42] 0.0043731740990433 [GeV] -Cell[15,6] 0.11745989290084 [GeV] -Cell[13,5] 0.16981274139032 [GeV] -Cell[13,34] 4.5024541206658e-05 [GeV] -Cell[5,22] 8.1336624571122e-06 [GeV] -Cell[12,4] 0.00098513043586001 [GeV] -Cell[14,3] 2.3175352107501e-05 [GeV] -Cell[14,2] 1.3547235168517e-05 [GeV] -Cell[19,17] 4.5990027138032e-05 [GeV] -Cell[1,7] 2.6842652005143e-07 [GeV] -Cell[1,6] 1.4557603515414e-05 [GeV] -Cell[0,5] 1.9250030163676e-08 [GeV] -Cell[0,6] 1.0701401492952e-08 [GeV] -Cell[15,46] 3.5084842693323e-09 [GeV] -Cell[5,11] 0.0045516313264664 [GeV] -Cell[12,45] 0.00039425238090234 [GeV] -Cell[12,14] 0.00067839906155496 [GeV] -Cell[12,15] 3.8612456914962e-06 [GeV] -Cell[13,15] 2.7870901249116e-09 [GeV] -Cell[8,18] 7.6656986493617e-06 [GeV] -Cell[4,15] 1.979535872124e-06 [GeV] -Cell[15,25] 0.004148050764871 [GeV] -Cell[13,47] 0.0034061621346796 [GeV] -Cell[12,13] 0.0013268196968944 [GeV] -Cell[12,25] 0.00046965709339713 [GeV] -Cell[3,45] 0.00011687367830405 [GeV] -Cell[8,37] 8.2378086364884e-05 [GeV] -Cell[19,43] 9.2718944069929e-06 [GeV] -Cell[12,7] 1.2480790639529e-05 [GeV] -Cell[14,38] 0.001501153708042 [GeV] -Cell[16,10] 0.00017943957175089 [GeV] -Cell[15,14] 0.00056500207173917 [GeV] -Cell[15,13] 1.2913369573653e-10 [GeV] -Cell[16,14] 9.0254910674048e-09 [GeV] -Cell[14,37] 2.0481209503487e-08 [GeV] -Cell[15,22] 3.1877076253295e-08 [GeV] -Cell[10,12] 1.5623059314294e-06 [GeV] -Cell[10,23] 5.2902346651535e-06 [GeV] -Cell[10,24] 1.071788975969e-05 [GeV] -Cell[1,32] 0.00085094036276379 [GeV] -Cell[0,26] 0.00025499985719872 [GeV] -Cell[0,9] 0.0011547856046571 [GeV] -Cell[11,11] 0.0018305183657027 [GeV] -### Total energy deposition in calorimeter by a source track in 130 cells : 0.74557222836726 (GeV) +Cell[9,20] 0.0046360784610942 [GeV] +Cell[6,17] 6.1764267738909e-06 [GeV] +Cell[9,19] 0.0066096149244694 [GeV] +Cell[11,35] 4.7007885586936e-06 [GeV] +Cell[7,34] 0.00013710530931382 [GeV] +Cell[9,18] 0.032187947681455 [GeV] +Cell[10,17] 0.00083327509054985 [GeV] +Cell[10,19] 0.00065670224494545 [GeV] +Cell[10,18] 0.0026069296934154 [GeV] +Cell[10,20] 0.001672659826308 [GeV] +Cell[14,41] 3.6276156354802e-05 [GeV] +Cell[15,41] 0.00032351798583898 [GeV] +Cell[14,42] 0.0093539407287538 [GeV] +Cell[15,42] 0.0047290388102432 [GeV] +Cell[12,38] 0.002817119234727 [GeV] +Cell[12,24] 0.00014747119166714 [GeV] +Cell[13,28] 0.0012075857092269 [GeV] +Cell[16,0] 4.2879700195044e-06 [GeV] +Cell[12,44] 0.0021972619502363 [GeV] +Cell[13,45] 0.008162279543251 [GeV] +Cell[14,28] 0.006632971480336 [GeV] +Cell[14,29] 0.00013293982288974 [GeV] +Cell[10,29] 0.002046880643399 [GeV] +Cell[10,28] 0.00034233869097784 [GeV] +Cell[6,16] 5.1558810810093e-05 [GeV] +Cell[11,44] 1.0228602357529e-05 [GeV] +Cell[12,41] 0.0018858364747675 [GeV] +Cell[12,42] 0.30836407088152 [GeV] +Cell[12,43] 0.0084551054144942 [GeV] +Cell[12,40] 0.0014852561305298 [GeV] +Cell[13,37] 0.0033157786562098 [GeV] +Cell[13,43] 0.012899718160559 [GeV] +Cell[13,44] 0.0011761905034783 [GeV] +Cell[14,20] 0.0014707071198705 [GeV] +Cell[14,21] 4.4954108602724e-08 [GeV] +Cell[13,20] 0.0057009419740512 [GeV] +Cell[13,41] 0.00027942741577465 [GeV] +Cell[18,39] 4.4825677739368e-05 [GeV] +Cell[17,8] 0.00010538829659185 [GeV] +Cell[16,43] 0.048921342993437 [GeV] +Cell[19,39] 5.7789438869804e-09 [GeV] +Cell[18,38] 0.00024655264447642 [GeV] +Cell[18,40] 1.4494996003123e-07 [GeV] +Cell[9,29] 2.1624777145917e-05 [GeV] +Cell[9,15] 5.0125990528613e-06 [GeV] +Cell[9,16] 0.0023327076375904 [GeV] +Cell[7,35] 5.4891812472761e-05 [GeV] +Cell[7,33] 0.0010355365566327 [GeV] +Cell[6,14] 0.00037622185110649 [GeV] +Cell[6,15] 0.0009092175820175 [GeV] +Cell[10,16] 3.8049322711231e-07 [GeV] +Cell[14,30] 2.2559811157407e-05 [GeV] +Cell[9,26] 5.9722363948822e-06 [GeV] +Cell[10,27] 5.9253709332552e-06 [GeV] +Cell[13,40] 0.0021904225305005 [GeV] +Cell[13,18] 0.00019721330605228 [GeV] +Cell[13,42] 0.00017545361700411 [GeV] +Cell[5,16] 0.00014598142372961 [GeV] +Cell[5,15] 7.5976632069796e-06 [GeV] +Cell[18,41] 1.2036395787618e-08 [GeV] +Cell[12,17] 0.0010508248535713 [GeV] +Cell[12,16] 8.4401108324528e-13 [GeV] +Cell[14,43] 0.013235284072737 [GeV] +Cell[13,19] 0.0021874726013469 [GeV] +Cell[13,17] 0.0023983432136185 [GeV] +Cell[13,46] 0.0016584964332729 [GeV] +Cell[14,44] 0.0048233528839796 [GeV] +Cell[13,39] 0.0085790518980414 [GeV] +Cell[13,38] 0.01227723321927 [GeV] +Cell[12,13] 1.694329775637e-05 [GeV] +Cell[12,14] 0.0008287258550788 [GeV] +Cell[14,31] 0.00027119841671765 [GeV] +Cell[14,32] 6.5370644442737e-06 [GeV] +Cell[11,24] 1.3772193342447e-05 [GeV] +Cell[11,25] 2.3561252804939e-05 [GeV] +Cell[16,6] 2.6949931323543e-05 [GeV] +Cell[9,17] 3.4680905955611e-05 [GeV] +Cell[15,43] 0.0027060559234016 [GeV] +Cell[17,7] 0.00012836278756549 [GeV] +Cell[17,6] 0.00011771874220176 [GeV] +Cell[16,44] 0.023694225796681 [GeV] +Cell[16,45] 0.00013248359256716 [GeV] +Cell[17,43] 0.0027925013840871 [GeV] +Cell[17,44] 0.00093323886956068 [GeV] +Cell[17,42] 7.2824805101845e-09 [GeV] +Cell[12,37] 0.0010373340085445 [GeV] +### Total energy deposition in calorimeter by a source track in 86 cells : 0.5683593135903 (GeV) Source track ID 6619 (mu+,97.449141801513[GeV]) at (421.37370144076,269.15460934956,1659.1421377616) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[18,4] 0.20836025659047 [GeV] -Cell[19,4] 0.3819036772331 [GeV] -Cell[19,3] 0.0018433613426546 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.59210729516622 (GeV) +Cell[18,4] 0.17723935700653 [GeV] +Cell[19,4] 0.26784816896911 [GeV] +Cell[19,3] 0.0048273979145534 [GeV] +Cell[19,5] 0.0011089632337973 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.45102388712399 (GeV) Source track ID 256 (mu-,0.17371209318861[GeV]) at (467.37389727359,-177.6559600669,-1309.0915012141) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[0,16] 8.8369997683913e-09 [GeV] -Cell[1,17] 3.2648389264978e-08 [GeV] -Cell[0,18] 8.1026978970044e-05 [GeV] -Cell[3,45] 0.081559952013754 [GeV] -Cell[2,35] 7.08786395262e-06 [GeV] -Cell[0,14] 1.1904941289686e-05 [GeV] -Cell[0,15] 0.00015280724884451 [GeV] -Cell[0,17] 6.6084903944557e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 8 cells : 0.081819429022594 (GeV) +Cell[3,46] 1.1927285742445e-05 [GeV] +Cell[4,45] 0.0028936273341411 [GeV] +Cell[3,45] 0.076857105419942 [GeV] +Cell[2,13] 1.2961099855602e-09 [GeV] +Cell[3,44] 0.00038569257095663 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.080148353906892 (GeV) Source track ID 6620 (mu-,49.169022155518[GeV]) at (-250.06319838177,-432.97620813975,234.28710530191) Original primary track ID 1 (unknown,305.48142430119[GeV]) -Cell[12,32] 0.52722652578179 [GeV] -Cell[15,31] 0.027974712450026 [GeV] -Cell[13,31] 0.0042931615133099 [GeV] -Cell[11,31] 0.090362294912701 [GeV] -Cell[11,32] 0.40476734799199 [GeV] -Cell[12,31] 0.0069661398077079 [GeV] -Cell[17,32] 0.012362447638589 [GeV] -Cell[13,32] 0.45217250695457 [GeV] -Cell[14,32] 0.75717980133124 [GeV] -Cell[15,32] 0.47771371680018 [GeV] -Cell[16,32] 0.53485292475929 [GeV] -Cell[16,31] 0.0011378684577758 [GeV] -Cell[14,31] 0.042353998015219 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 3.3393634464144 (GeV) +Cell[12,32] 0.52606375324695 [GeV] +Cell[15,31] 0.0095586431796421 [GeV] +Cell[13,31] 0.016619774868162 [GeV] +Cell[11,31] 0.046111889726518 [GeV] +Cell[11,32] 0.38229292727823 [GeV] +Cell[12,31] 0.01646655006431 [GeV] +Cell[14,32] 0.52850177096867 [GeV] +Cell[13,32] 0.53215896574132 [GeV] +Cell[15,32] 0.65684305321874 [GeV] +Cell[16,32] 0.48673848233978 [GeV] +### Total energy deposition in calorimeter by a source track in 10 cells : 3.2013558106323 (GeV) Source track ID 6128 (proton,1.6973986698138[GeV]) at (-499.99943629599,0.75080202947157,255.42048846636) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[9,8] 0.0015387289560365 [GeV] -Cell[9,9] 1.7068635068767e-05 [GeV] -Cell[8,5] 1.3067619875073e-11 [GeV] -Cell[7,22] 0.00011517619150146 [GeV] -Cell[7,42] 0.0066584497583402 [GeV] -Cell[9,28] 4.0419918252155e-05 [GeV] -Cell[6,24] 5.4376435643917e-06 [GeV] -Cell[9,5] 5.3768077066252e-07 [GeV] -Cell[7,41] 2.1645482629538e-05 [GeV] -Cell[6,1] 8.942816052695e-07 [GeV] -Cell[6,0] 0.00053545494574757 [GeV] -Cell[11,20] 0.001449662735035 [GeV] -Cell[11,21] 0.00023386704526911 [GeV] -Cell[19,11] 0.003412548620024 [GeV] -Cell[14,46] 0.0018944348968763 [GeV] -Cell[12,24] 0.00045320153401974 [GeV] -Cell[13,28] 7.950744475238e-08 [GeV] -Cell[12,3] 0.0019392910371747 [GeV] -Cell[13,45] 5.0480312260788e-05 [GeV] -Cell[14,1] 0.00058156529749647 [GeV] -Cell[9,3] 0.00092441000877212 [GeV] -Cell[5,27] 0.00011102238505695 [GeV] -Cell[2,44] 6.5473762057877e-05 [GeV] -Cell[11,44] 0.0010192225521086 [GeV] -Cell[10,8] 0.00040498526590309 [GeV] -Cell[11,14] 2.1940153441392e-05 [GeV] -Cell[12,23] 4.9154998828271e-07 [GeV] -Cell[15,21] 1.1811376316473e-07 [GeV] -Cell[16,39] 0.003169953221689 [GeV] -Cell[16,5] 0.0015774859727208 [GeV] -Cell[11,46] 0.0003691764602836 [GeV] -Cell[12,47] 0.00075946087032526 [GeV] -Cell[12,0] 2.3879351705546e-05 [GeV] -Cell[16,43] 0.0017412612755902 [GeV] -Cell[14,8] 1.2349265743978e-06 [GeV] -Cell[9,29] 8.1035523506216e-05 [GeV] -Cell[13,12] 6.862792361062e-10 [GeV] -Cell[12,19] 0.0002918475307068 [GeV] -Cell[11,45] 0.000370422914291 [GeV] -Cell[10,9] 3.9051120199929e-07 [GeV] -Cell[7,19] 4.3129718108048e-07 [GeV] -Cell[4,7] 0.0024700036800224 [GeV] -Cell[6,25] 6.5780627437562e-08 [GeV] -Cell[10,41] 6.1361108353594e-05 [GeV] -Cell[10,42] 0.00024986278465756 [GeV] -Cell[10,26] 0.00079646808127222 [GeV] -Cell[10,27] 2.5953504180848e-05 [GeV] -Cell[13,40] 0.00064342632856631 [GeV] -Cell[2,15] 0.00095913585657695 [GeV] -Cell[8,22] 4.4773214816814e-05 [GeV] -Cell[11,22] 0.0013030007728296 [GeV] -Cell[6,3] 0.0010652145240017 [GeV] -Cell[15,46] 1.3193331100183e-06 [GeV] -Cell[12,45] 3.369165933691e-07 [GeV] -Cell[12,14] 0.00050123295099866 [GeV] -Cell[12,13] 5.0593651146755e-06 [GeV] -Cell[12,25] 1.978385981829e-07 [GeV] -Cell[15,22] 2.6950918623925e-06 [GeV] -Cell[10,23] 6.7324429737141e-05 [GeV] -Cell[10,24] 0.0033144789630436 [GeV] -Cell[13,32] 0.0015912161926744 [GeV] -Cell[11,23] 0.3295306651818 [GeV] -Cell[11,24] 0.064788108299129 [GeV] -Cell[16,42] 1.8090101570124e-05 [GeV] -Cell[12,11] 6.2555019383581e-05 [GeV] -Cell[13,11] 0.00063575709979648 [GeV] -Cell[14,5] 0.00070838743551064 [GeV] -Cell[13,39] 1.0564690455794e-11 [GeV] -Cell[18,11] 0.002032539732399 [GeV] -Cell[18,10] 1.1741066863465e-05 [GeV] -Cell[19,10] 5.4062427292365e-06 [GeV] -Cell[15,44] 0.0030955354023342 [GeV] -Cell[15,43] 0.00059662071250716 [GeV] -Cell[17,42] 1.9134230300551e-05 [GeV] -Cell[17,43] 2.464369070367e-05 [GeV] -Cell[16,44] 0.0015578875314922 [GeV] -Cell[16,45] 0.00050447964041462 [GeV] -Cell[15,45] 0.00060433837661549 [GeV] -Cell[16,46] 1.3619765795511e-05 [GeV] -Cell[6,23] 0.00011851567859196 [GeV] -Cell[11,8] 1.6498273820616e-05 [GeV] -Cell[11,13] 7.0202059267103e-05 [GeV] -Cell[10,22] 0.00050448299708786 [GeV] -Cell[18,12] 7.3302129521835e-09 [GeV] -Cell[19,9] 8.0323156435043e-06 [GeV] -Cell[11,25] 0.0019522468897491 [GeV] -Cell[12,26] 7.4354065873194e-09 [GeV] -Cell[9,4] 0.0023835280959787 [GeV] -Cell[13,33] 8.9138881094186e-09 [GeV] -Cell[10,25] 0.0014723500573989 [GeV] -Cell[11,26] 6.540888989548e-09 [GeV] -Cell[11,27] 3.21824245475e-10 [GeV] -Cell[15,7] 0.0046896911102138 [GeV] -Cell[15,8] 1.0146378266427e-06 [GeV] -Cell[16,8] 8.3898640923508e-09 [GeV] -Cell[16,9] 3.5727543945541e-10 [GeV] -Cell[12,2] 0.00013177621612705 [GeV] -Cell[6,22] 0.001190263783321 [GeV] -Cell[14,7] 0.0013720970815162 [GeV] -Cell[9,17] 0.002587795253913 [GeV] -### Total energy deposition in calorimeter by a source track in 100 cells : 0.4636943588227 (GeV) +Cell[12,22] 0.13502301789638 [GeV] +Cell[12,23] 0.30963721046121 [GeV] +Cell[11,23] 0.31443843145624 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.75909865981383 (GeV) Source track ID 6129 (anti_proton,1.0343836158254[GeV]) at (-277.12985224218,-416.1718935683,-341.55685990147) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[8,9] 1.1775925346342e-05 [GeV] -Cell[8,10] 0.0018425565900785 [GeV] -Cell[9,9] 5.2391813665054e-07 [GeV] -Cell[8,29] 0.0018479409776551 [GeV] -Cell[6,21] 0.00026552952181794 [GeV] -Cell[7,22] 2.5082842436518e-05 [GeV] -Cell[9,31] 0.0095370821924823 [GeV] -Cell[6,31] 0.0012699923574094 [GeV] -Cell[9,28] 0.00028868018159441 [GeV] -Cell[6,13] 5.1465135766193e-07 [GeV] -Cell[6,12] 4.0164936217479e-07 [GeV] -Cell[6,30] 0.00022770104155813 [GeV] -Cell[6,47] 0.00041426539184511 [GeV] -Cell[5,26] 7.8978357296705e-05 [GeV] -Cell[6,37] 4.1304048500024e-07 [GeV] -Cell[5,21] 0.28513106210537 [GeV] -Cell[4,21] 3.8636890995917e-05 [GeV] -Cell[4,20] 0.0018829006542244 [GeV] -Cell[5,20] 0.012430721491865 [GeV] -Cell[7,34] 0.00085579785097832 [GeV] -Cell[4,22] 0.00011883462893434 [GeV] -Cell[6,0] 7.0366107945574e-07 [GeV] -Cell[9,18] 0.00036066564859368 [GeV] -Cell[5,31] 2.1784460113849e-06 [GeV] -Cell[11,38] 4.0996406971317e-05 [GeV] -Cell[16,33] 0.00044859760948802 [GeV] -Cell[8,32] 0.007311348916365 [GeV] -Cell[16,37] 0.0072299735831048 [GeV] -Cell[10,29] 0.00012784411245002 [GeV] -Cell[10,30] 1.7043197766043e-05 [GeV] -Cell[10,31] 1.6215735463447e-06 [GeV] -Cell[0,24] 3.2213923987001e-08 [GeV] -Cell[5,18] 5.1993753178976e-05 [GeV] -Cell[5,27] 0.0005684387267903 [GeV] -Cell[5,19] 0.0025232841124699 [GeV] -Cell[10,8] 0.00015958935814456 [GeV] -Cell[11,14] 5.0136042948452e-06 [GeV] -Cell[7,31] 0.11492041068358 [GeV] -Cell[13,43] 0.0033439337079049 [GeV] -Cell[11,46] 2.0165762543911e-07 [GeV] -Cell[18,40] 1.9991793378722e-06 [GeV] -Cell[9,29] 0.0068457953277517 [GeV] -Cell[9,32] 0.00090613680469146 [GeV] -Cell[7,20] 0.013112440756131 [GeV] -Cell[10,46] 2.0227663895298e-05 [GeV] -Cell[9,42] 3.5013759043068e-07 [GeV] -Cell[9,16] 0.00056830730527309 [GeV] -Cell[11,2] 3.685256553581e-06 [GeV] -Cell[7,35] 0.00088994221009602 [GeV] -Cell[10,9] 5.0735558033921e-06 [GeV] -Cell[7,33] 0.011892666999959 [GeV] -Cell[7,19] 0.00097432703111303 [GeV] -Cell[7,32] 0.0055603855288424 [GeV] -Cell[8,33] 0.0037407747442697 [GeV] -Cell[8,35] 0.00091245760017648 [GeV] -Cell[11,15] 8.7723179831301e-09 [GeV] -Cell[0,16] 5.4551430626361e-05 [GeV] -Cell[5,47] 9.2550180852413e-12 [GeV] -Cell[9,33] 1.127612495111e-08 [GeV] -Cell[6,25] 2.1099501555e-06 [GeV] -Cell[7,25] 8.7269693216285e-06 [GeV] -Cell[9,26] 0.00010081124219793 [GeV] -Cell[8,30] 0.10445082694354 [GeV] -Cell[7,29] 8.1316447904101e-09 [GeV] -Cell[9,30] 0.015360758415616 [GeV] -Cell[6,29] 0.00079687398011924 [GeV] -Cell[5,28] 0.0040182249049471 [GeV] -Cell[6,46] 1.594191417098e-09 [GeV] -Cell[7,21] 0.0034632821104275 [GeV] -Cell[8,31] 0.68641542442301 [GeV] -Cell[8,34] 0.00057262899707359 [GeV] -Cell[11,37] 7.2316450171002e-06 [GeV] -Cell[5,22] 0.0012054734363185 [GeV] -Cell[0,6] 0.0008112226339739 [GeV] -Cell[8,37] 1.3579244841821e-07 [GeV] -Cell[10,12] 5.1446096351242e-05 [GeV] -Cell[0,17] 1.0355142876506e-10 [GeV] -Cell[17,43] 0.0092046522739347 [GeV] -Cell[6,22] 9.3002200196679e-07 [GeV] -Cell[15,37] 0.017455230226045 [GeV] -Cell[17,19] 0.0016753850938153 [GeV] -Cell[16,13] 0.00043457169126036 [GeV] -Cell[17,1] 0.00040511936568533 [GeV] -Cell[5,29] 8.7496067862958e-08 [GeV] -Cell[11,10] 2.0158098777756e-07 [GeV] -Cell[2,11] 8.1598205724731e-07 [GeV] -Cell[8,42] 2.8896119329147e-07 [GeV] -Cell[5,30] 3.6872923895999e-05 [GeV] -Cell[1,36] 0.0006255969423409 [GeV] -Cell[14,34] 2.8958641576082e-07 [GeV] -Cell[10,14] 0.00023073206901631 [GeV] -Cell[10,15] 1.8077374988934e-08 [GeV] -Cell[7,30] 0.0023934194076993 [GeV] -Cell[5,23] 2.7244354514551e-05 [GeV] -Cell[5,24] 2.8931764973095e-07 [GeV] -Cell[4,24] 1.5514661754423e-08 [GeV] -Cell[6,20] 0.0076814864007344 [GeV] -Cell[7,18] 3.0368087577699e-06 [GeV] -Cell[6,32] 0.00050453850871588 [GeV] -Cell[10,1] 0.0027105962465384 [GeV] -Cell[10,0] 2.2503024309799e-06 [GeV] -Cell[10,32] 9.2567768660956e-08 [GeV] -Cell[17,16] 6.3189315842465e-06 [GeV] -Cell[18,41] 5.4240999161266e-06 [GeV] -Cell[13,10] 3.4634008188732e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 105 cells : 1.3595465603481 (GeV) +Cell[8,29] 1.6299637994962e-05 [GeV] +Cell[9,27] 0.0014059852745104 [GeV] +Cell[5,45] 0.0016888929618574 [GeV] +Cell[5,0] 0.052818655185289 [GeV] +Cell[5,46] 0.002862568602073 [GeV] +Cell[5,32] 0.0053078554683552 [GeV] +Cell[5,43] 0.00027111042473643 [GeV] +Cell[5,44] 5.7828742035781e-05 [GeV] +Cell[7,7] 0.00071692683040626 [GeV] +Cell[6,31] 0.001003364667798 [GeV] +Cell[8,28] 0.00062869570187907 [GeV] +Cell[4,34] 4.8622896429151e-09 [GeV] +Cell[7,2] 2.9461931250694e-05 [GeV] +Cell[7,26] 0.00027202840530663 [GeV] +Cell[6,7] 3.9829737669379e-06 [GeV] +Cell[6,47] 0.0019943641513103 [GeV] +Cell[8,26] 0.0022180343814406 [GeV] +Cell[8,25] 1.5386520999527e-09 [GeV] +Cell[5,33] 1.0309342542314e-07 [GeV] +Cell[4,32] 1.6378501325789e-05 [GeV] +Cell[7,17] 0.00056194184573848 [GeV] +Cell[4,31] 6.4402149547504e-06 [GeV] +Cell[1,45] 1.8422724679112e-11 [GeV] +Cell[1,23] 0.0060399204197044 [GeV] +Cell[6,0] 0.001410949248723 [GeV] +Cell[2,45] 0.0072888720444527 [GeV] +Cell[1,22] 2.2843717015348e-06 [GeV] +Cell[1,24] 0.0021264773687066 [GeV] +Cell[4,46] 2.5029294192791e-12 [GeV] +Cell[7,27] 6.3300184345167e-05 [GeV] +Cell[10,18] 8.8383624964841e-05 [GeV] +Cell[10,21] 0.013971183381895 [GeV] +Cell[5,31] 0.013420227825873 [GeV] +Cell[12,5] 0.00048021232973288 [GeV] +Cell[8,32] 0.013654938240351 [GeV] +Cell[14,47] 0.00031585002897835 [GeV] +Cell[3,17] 0.00047069042494695 [GeV] +Cell[1,25] 0.0022449049961269 [GeV] +Cell[7,3] 4.6478254732506e-05 [GeV] +Cell[2,44] 6.5641391527379e-05 [GeV] +Cell[3,28] 4.8369121332144e-05 [GeV] +Cell[3,27] 0.00078707529976691 [GeV] +Cell[4,45] 2.5287123207818e-08 [GeV] +Cell[7,31] 0.0090239556819486 [GeV] +Cell[9,29] 1.0913936421275e-10 [GeV] +Cell[6,34] 0.0014138550815368 [GeV] +Cell[6,35] 0.0022238619603677 [GeV] +Cell[6,33] 3.0186262796633e-05 [GeV] +Cell[7,33] 2.8696609189296e-05 [GeV] +Cell[7,32] 0.0017404869556962 [GeV] +Cell[8,33] 0.04474872645994 [GeV] +Cell[0,23] 3.8505279081733e-05 [GeV] +Cell[3,25] 0.00016556837273504 [GeV] +Cell[2,16] 1.5154499269556e-05 [GeV] +Cell[5,47] 0.18706070235235 [GeV] +Cell[5,35] 3.4516994992373e-07 [GeV] +Cell[9,33] 0.00037365749503211 [GeV] +Cell[10,2] 1.8816514284481e-09 [GeV] +Cell[7,4] 0.00093515288088736 [GeV] +Cell[7,25] 4.2722041437628e-05 [GeV] +Cell[8,4] 0.0048132791275802 [GeV] +Cell[10,26] 0.021653919457051 [GeV] +Cell[10,27] 0.0030065018094242 [GeV] +Cell[8,30] 0.040658258563003 [GeV] +Cell[4,33] 9.5125123380058e-08 [GeV] +Cell[7,29] 0.0028859610977117 [GeV] +Cell[6,46] 0.0014784080621752 [GeV] +Cell[11,22] 0.046169056941185 [GeV] +Cell[10,11] 0.00045486512050413 [GeV] +Cell[8,24] 2.1961134453932e-06 [GeV] +Cell[3,7] 1.8897789195762e-06 [GeV] +Cell[8,31] 0.85281821979332 [GeV] +Cell[11,23] 0.00077929203514049 [GeV] +Cell[13,10] 0.003631652332156 [GeV] +Cell[9,40] 0.00010778166070607 [GeV] +Cell[9,46] 0.011753458400832 [GeV] +Cell[9,0] 0.0011805698189618 [GeV] +Cell[13,11] 0.0010962362836528 [GeV] +Cell[10,1] 0.0015187288716294 [GeV] +Cell[8,37] 0.0028266834034629 [GeV] +Cell[12,12] 0.00018874108607339 [GeV] +Cell[10,23] 0.038500097753082 [GeV] +Cell[10,22] 0.24794261386886 [GeV] +Cell[10,25] 0.00042761123323827 [GeV] +Cell[6,22] 0.0017873953993957 [GeV] +Cell[5,11] 0.00035651272645655 [GeV] +Cell[10,38] 0.00012820025723866 [GeV] +Cell[8,27] 0.0020972008007347 [GeV] +Cell[8,34] 1.8425417074468e-06 [GeV] +Cell[7,24] 2.1632979945707e-06 [GeV] +Cell[5,7] 3.7989930353888e-06 [GeV] +Cell[6,8] 3.5015833307284e-05 [GeV] +Cell[4,42] 7.4142588664472e-07 [GeV] +Cell[3,6] 0.00014515957571632 [GeV] +Cell[1,44] 3.9872247725725e-12 [GeV] +Cell[6,32] 0.0022600157520797 [GeV] +Cell[5,30] 0.0026950077556035 [GeV] +Cell[4,30] 0.0011625711395779 [GeV] +Cell[2,27] 2.0442689128686e-06 [GeV] +Cell[10,3] 0.00012050503954367 [GeV] +Cell[8,3] 0.0012575755946411 [GeV] +### Total energy deposition in calorimeter by a source track in 101 cells : 1.6782001564984 (GeV) Source track ID 827 (pi+,0.23559097571531[GeV]) at (55.726713365407,496.88482912793,-1620.1344370014) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[1,11] 0.11878193114581 [GeV] -Cell[2,12] 0.00035651831354734 [GeV] -Cell[1,13] 0.00051099891 [GeV] -Cell[1,12] 0.023667512155845 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.14331696052521 (GeV) +Cell[1,11] 0.12647728911884 [GeV] +Cell[2,12] 0.0021352396749657 [GeV] +Cell[2,11] 0.022461693524654 [GeV] +### Total energy deposition in calorimeter by a source track in 3 cells : 0.15107422231846 (GeV) Source track ID 6132 (pi+,0.39606762734349[GeV]) at (-476.41300199325,-151.7585303427,242.91103998831) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[13,26] 6.6648398842517e-08 [GeV] -Cell[12,18] 2.0139020714396e-06 [GeV] -Cell[14,25] 9.4674760475755e-10 [GeV] -Cell[12,19] 0.00044074356053954 [GeV] -Cell[13,18] 7.1324757300317e-10 [GeV] -Cell[12,25] 0.00059206608192744 [GeV] -Cell[11,24] 0.0048150018988517 [GeV] -Cell[11,25] 0.28294663882739 [GeV] -Cell[11,26] 0.056622832517318 [GeV] -Cell[11,27] 5.190127296828e-08 [GeV] -Cell[14,26] 1.653464141782e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 11 cells : 0.34541943353241 (GeV) +Cell[8,7] 6.6618702021515e-10 [GeV] +Cell[7,9] 3.1101372296689e-05 [GeV] +Cell[7,8] 7.3355680797249e-08 [GeV] +Cell[9,27] 8.3186448130164e-06 [GeV] +Cell[7,14] 6.4858392984206e-06 [GeV] +Cell[11,4] 1.3706292975257e-08 [GeV] +Cell[6,12] 0.0022230567925701 [GeV] +Cell[9,6] 0.00012082929848191 [GeV] +Cell[9,5] 0.00095180496865794 [GeV] +Cell[10,17] 1.3040711194776e-05 [GeV] +Cell[10,18] 4.1072972526308e-06 [GeV] +Cell[10,20] 1.511793845566e-05 [GeV] +Cell[11,3] 6.6280339607601e-05 [GeV] +Cell[12,3] 0.0038625357316614 [GeV] +Cell[10,33] 7.6376600190997e-08 [GeV] +Cell[10,28] 0.00029987524713147 [GeV] +Cell[11,46] 0.0035409147388441 [GeV] +Cell[11,16] 1.2414954181736e-05 [GeV] +Cell[11,45] 0.0017851471020648 [GeV] +Cell[6,14] 1.3252053615815e-06 [GeV] +Cell[7,15] 9.8640943178907e-08 [GeV] +Cell[11,17] 0.0016568582470371 [GeV] +Cell[10,16] 2.2031339841419e-05 [GeV] +Cell[10,26] 0.0022695115034165 [GeV] +Cell[9,26] 8.8874367065728e-10 [GeV] +Cell[10,27] 0.0039664420853989 [GeV] +Cell[11,24] 4.5675012415813e-08 [GeV] +Cell[11,25] 0.0035147791234187 [GeV] +Cell[11,23] 0.0019225060179554 [GeV] +Cell[10,22] 2.2064489981858e-05 [GeV] +Cell[11,26] 0.26164272279968 [GeV] +Cell[15,2] 0.0010141841408016 [GeV] +Cell[10,5] 0.00033179865721979 [GeV] +Cell[10,4] 1.1963686614763e-05 [GeV] +Cell[12,2] 7.775114508695e-05 [GeV] +Cell[12,4] 1.217159024236e-09 [GeV] +Cell[11,27] 0.0028039828119877 [GeV] +Cell[11,28] 0.00020287630177154 [GeV] +Cell[10,45] 0.0013558394450716 [GeV] +### Total energy deposition in calorimeter by a source track in 39 cells : 0.29375797850378 (GeV) Source track ID 1462 (pi-,1.7947138067875[GeV]) at (441.99621945971,-233.75059782453,-1861.8508244154) Original primary track ID 43 (unknown,52.984237098069[GeV]) -Cell[0,44] 0.15655156455114 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.15655156455114 (GeV) +Cell[0,44] 0.16202028863994 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.16202028863994 (GeV) Source track ID 6133 (pi-,0.89337876076774[GeV]) at (-155.0732034455,-475.34440311542,413.80964958985) Original primary track ID 2 (unknown,2.8798399642419[GeV]) -Cell[8,7] 0.00024939439033017 [GeV] -Cell[8,8] 2.5733436234532e-07 [GeV] -Cell[7,16] 2.690918534654e-06 [GeV] -Cell[8,6] 3.5874082532246e-06 [GeV] -Cell[6,10] 8.1051100278273e-07 [GeV] -Cell[9,31] 0.010332648302282 [GeV] -Cell[13,35] 1.4757766621187e-08 [GeV] -Cell[8,28] 1.771276049567e-08 [GeV] -Cell[4,34] 1.2647563358769e-05 [GeV] -Cell[9,28] 0.0011845522692311 [GeV] -Cell[6,9] 0.0012298635652684 [GeV] -Cell[7,17] 1.6044601290673e-05 [GeV] -Cell[3,34] 6.2405969074462e-06 [GeV] -Cell[15,47] 0.0037078305577276 [GeV] -Cell[3,38] 0.0015014500123597 [GeV] -Cell[3,39] 1.0118362622848e-05 [GeV] -Cell[10,30] 1.5221303328872e-10 [GeV] -Cell[10,31] 0.00062536118570995 [GeV] -Cell[3,29] 2.7744083927246e-05 [GeV] -Cell[6,18] 3.499585983036e-06 [GeV] -Cell[3,28] 1.4642864116468e-06 [GeV] -Cell[16,26] 0.00027892683660605 [GeV] -Cell[15,38] 7.0349576617446e-09 [GeV] -Cell[12,35] 7.2592132047362e-05 [GeV] -Cell[11,0] 0.00031071057207237 [GeV] -Cell[11,1] 6.6341376282253e-07 [GeV] -Cell[9,29] 0.00013461632431608 [GeV] -Cell[9,32] 9.9249170808207e-05 [GeV] -Cell[7,20] 0.0062224136255103 [GeV] -Cell[12,33] 0.1463184418202 [GeV] -Cell[12,34] 0.23227912409594 [GeV] -Cell[8,19] 6.9200268626446e-11 [GeV] -Cell[7,36] 5.7393917813897e-09 [GeV] -Cell[7,19] 0.035570722848007 [GeV] -Cell[8,20] 0.00062314750608493 [GeV] -Cell[9,1] 2.4115401407471e-05 [GeV] -Cell[5,35] 0.0034957652478683 [GeV] -Cell[4,35] 3.1135851459112e-06 [GeV] -Cell[6,19] 3.8854223248563e-08 [GeV] -Cell[3,35] 0.00071007772142229 [GeV] -Cell[9,30] 0.0001189522981914 [GeV] -Cell[5,28] 7.7769447234459e-06 [GeV] -Cell[3,37] 6.8461257615127e-06 [GeV] -Cell[6,3] 0.00027754826125797 [GeV] -Cell[13,34] 0.23724023660168 [GeV] -Cell[5,11] 5.2883031254169e-05 [GeV] -Cell[13,33] 3.7548479917859e-07 [GeV] -Cell[15,37] 4.7726340085319e-08 [GeV] -Cell[7,18] 0.0061271839981014 [GeV] -Cell[10,1] 7.0822163455887e-05 [GeV] -Cell[10,0] 0.001353312097509 [GeV] -Cell[16,2] 3.1410450901603e-08 [GeV] -Cell[9,47] 6.5642197354464e-05 [GeV] -Cell[5,34] 0.0048422592294847 [GeV] -### Total energy deposition in calorimeter by a source track in 54 cells : 0.69522388772764 (GeV) +Cell[8,9] 0.00015588180789892 [GeV] +Cell[9,20] 0.0017562189801288 [GeV] +Cell[13,35] 1.104543671363e-05 [GeV] +Cell[9,19] 0.00060807391353978 [GeV] +Cell[12,32] 0.039655113424806 [GeV] +Cell[7,2] 5.1657821131812e-10 [GeV] +Cell[11,35] 0.00326509544623 [GeV] +Cell[9,18] 9.3242204457056e-06 [GeV] +Cell[15,1] 0.0025412051701688 [GeV] +Cell[11,33] 0.00078772960867639 [GeV] +Cell[11,38] 0.00077107157083431 [GeV] +Cell[8,32] 3.7220451340545e-05 [GeV] +Cell[11,34] 0.0047215143038771 [GeV] +Cell[13,16] 0.00023748960844227 [GeV] +Cell[12,35] 0.028887999688281 [GeV] +Cell[12,23] 3.9492551295552e-06 [GeV] +Cell[10,37] 0.00048768920128509 [GeV] +Cell[14,19] 0.002039457507169 [GeV] +Cell[11,1] 0.0013259114737157 [GeV] +Cell[13,12] 0.0029200049499933 [GeV] +Cell[9,32] 0.00012833170548402 [GeV] +Cell[12,33] 0.35939061707014 [GeV] +Cell[12,36] 0.00030698057800949 [GeV] +Cell[12,34] 0.043001415901868 [GeV] +Cell[11,2] 2.3912274243003e-05 [GeV] +Cell[8,33] 0.00089176724741037 [GeV] +Cell[9,33] 0.00030210419511025 [GeV] +Cell[10,2] 0.0030890931293997 [GeV] +Cell[10,40] 0.00091932494549292 [GeV] +Cell[10,39] 0.00048566320365853 [GeV] +Cell[12,16] 0.00029292078554613 [GeV] +Cell[12,14] 4.3569307308644e-09 [GeV] +Cell[15,32] 2.2316382001009e-08 [GeV] +Cell[16,32] 0.0002794807002557 [GeV] +Cell[9,40] 0.0059671886887835 [GeV] +Cell[10,1] 0.0036114466867931 [GeV] +Cell[10,38] 0.00091822748109063 [GeV] +Cell[10,3] 0.00033888434149977 [GeV] +Cell[13,13] 0.0058836294939641 [GeV] +Cell[16,13] 0.0026048182716492 [GeV] +Cell[13,34] 0.038972615611221 [GeV] +Cell[13,33] 1.4157322993924e-09 [GeV] +Cell[10,14] 0.0016198611526244 [GeV] +Cell[9,21] 8.5420712130144e-06 [GeV] +Cell[8,2] 0.0001417055717227 [GeV] +Cell[13,15] 1.1350921183407e-05 [GeV] +Cell[13,14] 6.1850838619648e-08 [GeV] +Cell[11,36] 0.0011389345220312 [GeV] +Cell[8,40] 0.00011334344388126 [GeV] +Cell[9,39] 0.00077652010631095 [GeV] +Cell[12,8] 2.5789195206016e-09 [GeV] +Cell[12,9] 3.1953095458448e-10 [GeV] +Cell[11,37] 0.005735032712761 [GeV] +Cell[15,13] 8.2869335074975e-05 [GeV] +Cell[13,36] 2.9954499375435e-06 [GeV] +Cell[15,11] 0.0019363295069797 [GeV] +Cell[16,9] 0.0011701733039462 [GeV] +### Total energy deposition in calorimeter by a source track in 57 cells : 0.57036816978287 (GeV) Source track ID 1654 (pi-,0.65426366060437[GeV]) at (-92.033160415394,-491.45691304931,1124.6352967117) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[15,4] 0.00052159363682381 [GeV] -Cell[12,27] 4.9404936056817e-05 [GeV] -Cell[11,21] 0.001208702328347 [GeV] -Cell[14,40] 0.0010433299041075 [GeV] -Cell[14,41] 0.0037946392458351 [GeV] -Cell[17,5] 0.00035001928973361 [GeV] -Cell[14,45] 1.3310596114025e-07 [GeV] -Cell[16,0] 0.00039253681354057 [GeV] -Cell[14,35] 5.7249381328916e-05 [GeV] -Cell[15,35] 0.0096215381097523 [GeV] -Cell[16,33] 0.0020845650221481 [GeV] -Cell[14,23] 7.6999695373502e-05 [GeV] -Cell[14,16] 0.0011064344427842 [GeV] -Cell[14,36] 0.00066944587106218 [GeV] -Cell[16,15] 0.0012490101329137 [GeV] -Cell[11,42] 1.3594972004967e-06 [GeV] -Cell[11,44] 1.5387003218507e-05 [GeV] -Cell[12,42] 2.3669365145906e-07 [GeV] -Cell[13,43] 9.0367230877746e-06 [GeV] -Cell[13,16] 3.5201732123369e-07 [GeV] -Cell[12,23] 7.1282818098553e-06 [GeV] -Cell[14,20] 0.0003389787356864 [GeV] -Cell[14,19] 0.0018090281783248 [GeV] -Cell[15,18] 0.00047904319720328 [GeV] -Cell[16,47] 8.2981941551111e-05 [GeV] -Cell[14,22] 0.0040448243635 [GeV] -Cell[13,41] 1.1465260118939e-06 [GeV] -Cell[16,5] 0.00012457704631663 [GeV] -Cell[11,47] 1.9565679979223e-06 [GeV] -Cell[11,46] 0.0030428372547442 [GeV] -Cell[11,0] 5.1162679825211e-05 [GeV] -Cell[11,1] 4.153431384475e-05 [GeV] -Cell[17,15] 0.0012899396997348 [GeV] -Cell[17,14] 6.8961240176577e-06 [GeV] -Cell[17,13] 0.0024867407036647 [GeV] -Cell[17,10] 0.0011663616862661 [GeV] -Cell[17,11] 0.00054417858407623 [GeV] -Cell[18,13] 3.6892226574992e-06 [GeV] -Cell[16,43] 0.00032373295629361 [GeV] -Cell[14,8] 0.00014224724232918 [GeV] -Cell[13,12] 0.0018360379236807 [GeV] -Cell[10,46] 0.015601813962791 [GeV] -Cell[16,11] 0.00070070033925549 [GeV] -Cell[11,45] 0.0034576831923983 [GeV] -Cell[8,19] 0.0038895953094554 [GeV] -Cell[10,26] 0.000250672260491 [GeV] -Cell[10,27] 0.00046284077168025 [GeV] -Cell[15,15] 6.7470172200501e-07 [GeV] -Cell[13,42] 0.00086960200327633 [GeV] -Cell[13,34] 0.004520728287222 [GeV] -Cell[14,3] 5.8852525626207e-09 [GeV] -Cell[16,10] 1.3011565420129e-07 [GeV] -Cell[15,14] 7.8473181208096e-05 [GeV] -Cell[16,14] 0.00066570032871807 [GeV] -Cell[15,32] 0.0034191060016119 [GeV] -Cell[12,11] 0.00010453267419291 [GeV] -Cell[13,11] 0.00071487868950123 [GeV] -Cell[14,5] 1.273237839257e-05 [GeV] -Cell[19,10] 0.00063098017945129 [GeV] -Cell[15,44] 0.0019174170207958 [GeV] -Cell[15,43] 2.9851798899472e-09 [GeV] -Cell[16,44] 0.0014668704955168 [GeV] -Cell[15,45] 0.0013900362482855 [GeV] -Cell[19,9] 3.7094079600593e-06 [GeV] -Cell[11,25] 6.7481403220881e-10 [GeV] -Cell[13,33] 0.00068192351841503 [GeV] -Cell[11,26] 4.444605475328e-06 [GeV] -Cell[11,27] 0.00013805005112408 [GeV] -Cell[15,8] 2.9904726485256e-05 [GeV] -Cell[17,1] 0.0010459210613158 [GeV] -Cell[14,34] 0.0029219864200393 [GeV] -Cell[7,18] 9.3972199305426e-05 [GeV] -Cell[10,1] 0.012147994596524 [GeV] -Cell[10,0] 0.00012164019373461 [GeV] -Cell[13,10] 0.001113834625419 [GeV] -Cell[15,34] 0.12074929519631 [GeV] -Cell[16,25] 0.00072056163907533 [GeV] -Cell[17,3] 0.00028555585364757 [GeV] -Cell[17,6] 6.7310203051193e-05 [GeV] -Cell[12,10] 1.6980741212365e-06 [GeV] -Cell[13,9] 2.5628389721533e-10 [GeV] -Cell[12,9] 4.2027761537611e-09 [GeV] -Cell[17,12] 0.0023364433255257 [GeV] -Cell[17,34] 0.00018541760774417 [GeV] -Cell[17,35] 0.0019024818927668 [GeV] -Cell[16,29] 0.0031344334486661 [GeV] -Cell[11,9] 2.1576728468062e-05 [GeV] -Cell[15,33] 0.0092166721941179 [GeV] -Cell[15,36] 0.0016356426433971 [GeV] -Cell[14,4] 0.00041216679120805 [GeV] -Cell[16,35] 0.0033916855848169 [GeV] -Cell[17,4] 1.2556753063109e-06 [GeV] -Cell[18,35] 4.3757172160326e-05 [GeV] -Cell[19,7] 5.7162982033333e-05 [GeV] -Cell[19,8] 4.1195437166607e-05 [GeV] -Cell[13,36] 0.00081777359502807 [GeV] -Cell[15,5] 2.0316304289736e-07 [GeV] -Cell[16,34] 0.0045133543729995 [GeV] -Cell[16,36] 0.00029261932578765 [GeV] -Cell[15,19] 1.4444156241098e-05 [GeV] -Cell[14,33] 0.00013154009159189 [GeV] -Cell[19,27] 0.00023391098557602 [GeV] -Cell[10,47] 0.0023406157066049 [GeV] -Cell[10,45] 0.0025427824640327 [GeV] -Cell[16,12] 9.8555951776802e-05 [GeV] -Cell[13,17] 8.7097777709459e-06 [GeV] -Cell[12,17] 0.0024906555405369 [GeV] -Cell[14,17] 0.0017633082736379 [GeV] -Cell[18,17] 0.0027075687218114 [GeV] -Cell[14,18] 0.0015151650169969 [GeV] -Cell[16,23] 0.0013252343545049 [GeV] -Cell[16,28] 0.00036091966936142 [GeV] -### Total energy deposition in calorimeter by a source track in 112 cells : 0.2638972342484 (GeV) +Cell[15,35] 0.00042702425528374 [GeV] +Cell[18,36] 0.044453845319366 [GeV] +Cell[17,44] 0.00063676711983283 [GeV] +Cell[15,34] 0.10131501837905 [GeV] +Cell[16,35] 0.13359036430461 [GeV] +Cell[17,35] 0.023286188555931 [GeV] +Cell[17,36] 0.18705398694781 [GeV] +Cell[16,36] 0.010674087630627 [GeV] +Cell[18,37] 0.00073623531393889 [GeV] +Cell[18,35] 0.0577540150355 [GeV] +Cell[18,34] 0.032790780655802 [GeV] +Cell[17,45] 1.3008112815442e-05 [GeV] +Cell[18,43] 0.00044548694178002 [GeV] +Cell[17,37] 0.0025838941857923 [GeV] +Cell[17,38] 2.3037899723022e-08 [GeV] +Cell[18,33] 0.0010559506999169 [GeV] +Cell[17,34] 2.1473062572221e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 17 cells : 0.59683814955853 (GeV) Source track ID 6091 (pi+,0.777044546073[GeV]) at (-480.85795487096,137.0241848628,-1796.9066429573) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[1,21] 0.0045439823397373 [GeV] -Cell[0,21] 0.20456169304681 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.20910567538655 (GeV) +Cell[4,26] 2.8249652532395e-06 [GeV] +Cell[2,42] 1.6390235366998e-05 [GeV] +Cell[5,33] 2.6082545518875e-06 [GeV] +Cell[1,23] 2.5640474632382e-11 [GeV] +Cell[1,22] 0.00064889640407828 [GeV] +Cell[2,21] 9.1487366403612e-05 [GeV] +Cell[0,2] 0.0025143479179309 [GeV] +Cell[4,13] 0.00059069039191909 [GeV] +Cell[2,12] 0.00093809170633619 [GeV] +Cell[1,19] 0.00030008221034996 [GeV] +Cell[2,32] 1.3915760791861e-07 [GeV] +Cell[0,31] 0.0022767886751795 [GeV] +Cell[3,38] 0.00015189982895436 [GeV] +Cell[0,28] 3.2251166761853e-05 [GeV] +Cell[3,10] 1.7636921256781e-11 [GeV] +Cell[2,14] 1.09983375296e-10 [GeV] +Cell[3,14] 0.0049233693628507 [GeV] +Cell[3,13] 0.0072227489269397 [GeV] +Cell[4,12] 0.0011083354775734 [GeV] +Cell[1,14] 4.0362801373703e-05 [GeV] +Cell[0,23] 0.00065456209937452 [GeV] +Cell[0,1] 0.00012686476410397 [GeV] +Cell[1,13] 0.00024751619156893 [GeV] +Cell[0,20] 0.0058696887113822 [GeV] +Cell[1,33] 0.0033579065215417 [GeV] +Cell[1,15] 0.00033238280693899 [GeV] +Cell[3,35] 3.4682025163875e-06 [GeV] +Cell[2,15] 6.266707985219e-06 [GeV] +Cell[1,30] 0.00018560944574358 [GeV] +Cell[2,41] 2.011697071714e-05 [GeV] +Cell[3,37] 1.4590061197168e-06 [GeV] +Cell[2,13] 0.0034605953042488 [GeV] +Cell[1,21] 0.0081339837311011 [GeV] +Cell[0,21] 0.13845566656748 [GeV] +Cell[0,22] 0.0094319030171158 [GeV] +Cell[0,15] 6.2487102695741e-06 [GeV] +Cell[2,35] 0.00070620170223538 [GeV] +Cell[1,20] 0.00079174902186332 [GeV] +Cell[1,31] 0.0001360924921355 [GeV] +Cell[1,32] 2.0021179467335e-05 [GeV] +Cell[3,12] 0.0032372777671587 [GeV] +Cell[3,11] 2.3116377217207e-05 [GeV] +Cell[2,43] 0.0025736957729974 [GeV] +Cell[0,10] 1.7134350666311e-05 [GeV] +Cell[0,19] 0.00010980282398998 [GeV] +Cell[0,11] 0.00040809918645914 [GeV] +Cell[0,0] 8.1777616287582e-09 [GeV] +Cell[1,16] 0.00068107819097031 [GeV] +Cell[0,14] 0.0022230524844737 [GeV] +### Total energy deposition in calorimeter by a source track in 49 cells : 0.20208288328829 (GeV) Source track ID 1588 (pi+,0.88668544564139[GeV]) at (5.7053983746905,499.96744736971,749.79975520314) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[14,14] 0.0019962770303205 [GeV] -Cell[16,26] 3.0792725738138e-09 [GeV] -Cell[14,15] 8.787640126684e-11 [GeV] -Cell[15,12] 0.0026190701123109 [GeV] -Cell[14,11] 0.29634958891191 [GeV] -Cell[18,30] 2.8344521990675e-07 [GeV] -Cell[14,9] 0.0029229375351414 [GeV] -Cell[14,8] 0.00039381394359191 [GeV] -Cell[13,12] 1.9764411263168e-10 [GeV] -Cell[15,15] 0.00073276838956832 [GeV] -Cell[14,12] 0.10772682937727 [GeV] -Cell[16,10] 9.7414686024422e-06 [GeV] -Cell[15,14] 0.0016598569016092 [GeV] -Cell[15,13] 0.00075963741908182 [GeV] -Cell[13,11] 0.078532340303609 [GeV] -Cell[15,8] 1.7021115127136e-08 [GeV] -Cell[16,9] 1.4122574020803e-07 [GeV] -Cell[18,41] 3.7248472888905e-05 [GeV] -Cell[13,9] 6.2175184139051e-06 [GeV] -Cell[14,10] 0.12325949623681 [GeV] -Cell[15,9] 0.00031908001645184 [GeV] -Cell[14,13] 0.0034935801109681 [GeV] -Cell[18,42] 0.0016019569274866 [GeV] -Cell[18,29] 2.6619934942573e-08 [GeV] -Cell[18,31] 2.0138457784924e-07 [GeV] -Cell[15,10] 0.0091913110472862 [GeV] -Cell[15,11] 0.0047416611233247 [GeV] -### Total energy deposition in calorimeter by a source track in 27 cells : 0.63635408590803 (GeV) +Cell[15,4] 1.6537934425287e-06 [GeV] +Cell[13,35] 4.3073669075966e-12 [GeV] +Cell[5,44] 0.00034225310199906 [GeV] +Cell[11,35] 5.5652629761312e-05 [GeV] +Cell[8,47] 0.00033173284966917 [GeV] +Cell[8,38] 1.5519719745498e-06 [GeV] +Cell[4,21] 7.4408302133406e-06 [GeV] +Cell[3,4] 8.7754719424993e-07 [GeV] +Cell[6,44] 1.2400655163219e-05 [GeV] +Cell[11,40] 1.944190348695e-06 [GeV] +Cell[15,1] 5.8585186798155e-06 [GeV] +Cell[13,6] 0.0048401915520948 [GeV] +Cell[15,0] 0.0030294055654253 [GeV] +Cell[14,39] 4.7150605823845e-06 [GeV] +Cell[12,38] 0.00010935309247941 [GeV] +Cell[13,24] 1.4255683548981e-05 [GeV] +Cell[12,24] 8.0434051342309e-06 [GeV] +Cell[16,0] 0.0071984058720594 [GeV] +Cell[13,25] 1.3673587469384e-05 [GeV] +Cell[12,44] 0.0030946799316699 [GeV] +Cell[15,35] 2.3640485840588e-05 [GeV] +Cell[14,1] 2.4177498073186e-05 [GeV] +Cell[12,28] 0.00046785891858497 [GeV] +Cell[14,14] 0.001623919519619 [GeV] +Cell[14,47] 0.0011544813262143 [GeV] +Cell[17,33] 0.010571726698877 [GeV] +Cell[15,47] 0.0047481606829981 [GeV] +Cell[15,24] 6.5991132687941e-05 [GeV] +Cell[10,34] 0.0015129869791296 [GeV] +Cell[11,34] 3.6386771636899e-05 [GeV] +Cell[14,16] 0.010182739786008 [GeV] +Cell[3,3] 4.4721964222845e-06 [GeV] +Cell[16,15] 0.00025514890165789 [GeV] +Cell[14,0] 1.5237718037042e-07 [GeV] +Cell[11,43] 2.0604930792615e-05 [GeV] +Cell[11,44] 0.00048884882458754 [GeV] +Cell[12,41] 0.00067384214218851 [GeV] +Cell[11,41] 1.9032740965486e-07 [GeV] +Cell[12,43] 0.0005970076621935 [GeV] +Cell[12,40] 7.5650512214452e-05 [GeV] +Cell[17,31] 6.3370049967943e-06 [GeV] +Cell[13,37] 1.5215393356129e-06 [GeV] +Cell[11,6] 1.8551038228907e-06 [GeV] +Cell[13,16] 0.00017835476045047 [GeV] +Cell[14,15] 2.9450709272282e-05 [GeV] +Cell[12,22] 0.0054447711069019 [GeV] +Cell[12,23] 0.0012538028888396 [GeV] +Cell[13,22] 4.8054328965918e-05 [GeV] +Cell[12,21] 0.0028441227891453 [GeV] +Cell[13,7] 0.020500810337151 [GeV] +Cell[15,17] 1.7216079868376e-09 [GeV] +Cell[16,39] 0.00066159691619449 [GeV] +Cell[16,47] 0.0087070194233291 [GeV] +Cell[19,33] 0.0028407332992733 [GeV] +Cell[14,11] 0.17200799150441 [GeV] +Cell[16,5] 1.084830032778e-05 [GeV] +Cell[12,47] 0.00050839195697791 [GeV] +Cell[12,0] 0.001667665317093 [GeV] +Cell[17,15] 0.00017500347223097 [GeV] +Cell[17,27] 0.00082204719197068 [GeV] +Cell[17,46] 0.0017608046580245 [GeV] +Cell[18,32] 0.0040290163751446 [GeV] +Cell[16,4] 1.0950345778838e-05 [GeV] +Cell[13,30] 0.0016456777752471 [GeV] +Cell[16,43] 0.00029781476375544 [GeV] +Cell[18,30] 2.93564085041e-10 [GeV] +Cell[14,9] 3.4401591379947e-06 [GeV] +Cell[14,8] 0.0032145254843496 [GeV] +Cell[13,12] 0.0015456501589429 [GeV] +Cell[12,20] 6.0751955228625e-05 [GeV] +Cell[12,34] 8.1840878701769e-06 [GeV] +Cell[11,45] 0.0024216018559864 [GeV] +Cell[13,21] 0.00015586380611524 [GeV] +Cell[17,32] 0.0025969791127831 [GeV] +Cell[9,24] 0.0027876154811195 [GeV] +Cell[5,10] 5.7264964270871e-06 [GeV] +Cell[5,35] 2.6536228997429e-05 [GeV] +Cell[14,30] 0.0015166153909343 [GeV] +Cell[11,39] 3.100711182924e-06 [GeV] +Cell[9,23] 2.4595133197636e-07 [GeV] +Cell[5,37] 4.6951024925647e-05 [GeV] +Cell[9,22] 1.0651216143742e-08 [GeV] +Cell[14,12] 0.015906069793498 [GeV] +Cell[9,25] 0.0025195657137605 [GeV] +Cell[13,19] 0.00075256299040748 [GeV] +Cell[13,38] 1.4581717550755e-08 [GeV] +Cell[14,31] 4.6594665150224e-07 [GeV] +Cell[14,32] 0.002439611217589 [GeV] +Cell[16,44] 2.817611334649e-08 [GeV] +Cell[16,45] 8.147039550181e-06 [GeV] +Cell[17,42] 0.00088726051722697 [GeV] +Cell[11,23] 1.9796716514975e-06 [GeV] +Cell[13,10] 0.0024192175318732 [GeV] +Cell[13,11] 0.071929752764647 [GeV] +Cell[10,23] 9.2645183599416e-08 [GeV] +Cell[10,22] 1.2166914530098e-08 [GeV] +Cell[10,3] 1.7087918822654e-05 [GeV] +Cell[10,45] 3.1504273531027e-05 [GeV] +Cell[13,13] 0.00041270698926826 [GeV] +Cell[13,34] 2.099818276065e-06 [GeV] +Cell[10,14] 1.2089487723529e-05 [GeV] +Cell[13,15] 1.982489367947e-06 [GeV] +Cell[13,14] 0.00058281814393558 [GeV] +Cell[12,8] 0.00054811501366294 [GeV] +Cell[12,9] 9.7802407399286e-06 [GeV] +Cell[15,11] 1.9399664015509e-06 [GeV] +Cell[15,34] 0.0012216382018069 [GeV] +Cell[18,34] 1.3507811249042e-05 [GeV] +Cell[17,45] 0.00021813713842482 [GeV] +Cell[18,33] 0.0026016768034362 [GeV] +Cell[17,34] 0.00067948332904803 [GeV] +Cell[14,10] 0.0088847394107315 [GeV] +Cell[13,9] 0.00026153499221505 [GeV] +Cell[14,13] 0.0019759506815263 [GeV] +Cell[14,6] 0.00035046831860575 [GeV] +Cell[15,6] 0.0017857413545998 [GeV] +Cell[17,16] 1.0196095609444e-05 [GeV] +Cell[16,16] 1.6206999032306e-05 [GeV] +Cell[15,46] 0.0040663556870918 [GeV] +Cell[16,46] 0.0025926636351553 [GeV] +Cell[15,45] 0.00042493780716622 [GeV] +Cell[16,24] 0.0034956077577531 [GeV] +Cell[16,23] 0.00042896828711093 [GeV] +Cell[16,25] 1.688206630206e-07 [GeV] +Cell[14,5] 7.3055096424923e-06 [GeV] +Cell[13,8] 0.0038133896719423 [GeV] +Cell[12,7] 0.00029209064124029 [GeV] +Cell[12,10] 0.00021908579520232 [GeV] +Cell[12,11] 0.0003594314492866 [GeV] +Cell[9,37] 4.9319252197165e-05 [GeV] +Cell[8,36] 0.0025233179940691 [GeV] +Cell[14,7] 0.015888594260636 [GeV] +Cell[13,23] 0.0001690420959967 [GeV] +Cell[15,44] 2.0801396167371e-06 [GeV] +Cell[17,25] 4.9908429384232e-05 [GeV] +Cell[10,13] 1.4756992459297e-06 [GeV] +Cell[5,36] 3.0248128168751e-06 [GeV] +Cell[5,38] 1.7472481004233e-05 [GeV] +Cell[17,24] 6.2968209202495e-05 [GeV] +Cell[17,40] 0.001546230812772 [GeV] +Cell[13,29] 7.3398085078225e-08 [GeV] +Cell[15,14] 1.5655009832699e-05 [GeV] +Cell[18,27] 2.9359632671571e-05 [GeV] +Cell[18,26] 3.9818065649456e-05 [GeV] +Cell[16,42] 3.3786638523452e-06 [GeV] +Cell[15,36] 3.7027795042377e-06 [GeV] +Cell[15,33] 0.0017772293079808 [GeV] +Cell[14,17] 0.00061096867113918 [GeV] +Cell[15,16] 6.4072082750499e-10 [GeV] +Cell[13,1] 0.00023390488751181 [GeV] +Cell[13,0] 3.358797130204e-09 [GeV] +Cell[18,31] 0.0013127108113941 [GeV] +Cell[16,22] 0.00026730527598261 [GeV] +Cell[17,23] 1.2799697287846e-08 [GeV] +Cell[16,1] 5.4891994222999e-05 [GeV] +Cell[17,47] 0.0015730050477072 [GeV] +Cell[15,9] 0.0013098245529621 [GeV] +Cell[17,0] 0.0010741626721802 [GeV] +### Total energy deposition in calorimeter by a source track in 158 cells : 0.45227415301178 (GeV) Source track ID 6069 (pi-,4.4323437747786[GeV]) at (-407.15431227475,290.21606777722,-1899.1844734567) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[0,19] 0.14527089992054 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.14527089992054 (GeV) +Cell[0,19] 0.1497373704167 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.1497373704167 (GeV) Source track ID 1771 (pi-,0.58450657226991[GeV]) at (-386.36354422777,-317.36920406958,1133.6096349555) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[9,27] 9.268424793845e-06 [GeV] -Cell[9,28] 0.00029058928021891 [GeV] -Cell[5,13] 3.1591854058206e-06 [GeV] -Cell[4,13] 1.9274791120552e-06 [GeV] -Cell[17,28] 2.1065157904218e-05 [GeV] -Cell[19,11] 1.0561481467448e-05 [GeV] -Cell[14,35] 9.4417407581204e-10 [GeV] -Cell[15,29] 0.086786348665596 [GeV] -Cell[15,28] 0.0022861282320479 [GeV] -Cell[16,33] 6.5832864493132e-11 [GeV] -Cell[8,32] 9.9881725276646e-05 [GeV] -Cell[11,31] 0.00036176423076063 [GeV] -Cell[11,32] 0.00015409654196026 [GeV] -Cell[17,30] 9.8418226176591e-06 [GeV] -Cell[4,14] 0.0001923677462155 [GeV] -Cell[17,31] 0.00092556930092019 [GeV] -Cell[13,2] 0.00016811654573485 [GeV] -Cell[14,20] 8.1293206312694e-06 [GeV] -Cell[14,21] 8.5446250450332e-06 [GeV] -Cell[19,33] 0.0019444473680124 [GeV] -Cell[18,16] 2.1551386453211e-10 [GeV] -Cell[19,30] 0.00026651344860647 [GeV] -Cell[19,29] 0.00016841330081616 [GeV] -Cell[17,10] 2.819811925292e-09 [GeV] -Cell[17,11] 0.00016611465812116 [GeV] -Cell[18,32] 7.7872911174836e-05 [GeV] -Cell[19,31] 0.0015186393818958 [GeV] -Cell[18,30] 1.0135740740225e-07 [GeV] -Cell[19,42] 7.7959803456906e-06 [GeV] -Cell[9,32] 1.6152759804072e-05 [GeV] -Cell[17,32] 0.0022249045318801 [GeV] -Cell[11,37] 3.1550339394016e-05 [GeV] -Cell[15,6] 8.3883967599832e-06 [GeV] -Cell[14,3] 0.00077781337087231 [GeV] -Cell[15,46] 0.00019744275462961 [GeV] -Cell[16,10] 4.8822890744304e-07 [GeV] -Cell[13,32] 3.603743610438e-05 [GeV] -Cell[14,32] 0.00063938811271214 [GeV] -Cell[16,32] 2.4839880370564e-07 [GeV] -Cell[16,31] 0.00068277153530107 [GeV] -Cell[14,5] 1.0210510481556e-10 [GeV] -Cell[18,11] 0.00011704544136046 [GeV] -Cell[16,45] 0.0012137419030885 [GeV] -Cell[15,45] 0.00021746176722195 [GeV] -Cell[16,46] 0.0014757357167084 [GeV] -Cell[18,12] 0.00023416003582554 [GeV] -Cell[13,33] 1.1120763170766e-05 [GeV] -Cell[16,9] 1.7366940505781e-07 [GeV] -Cell[14,34] 0.00019848039452586 [GeV] -Cell[10,1] 3.0791507859249e-05 [GeV] -Cell[13,10] 8.3770051015335e-05 [GeV] -Cell[12,10] 3.2083637513551e-06 [GeV] -Cell[12,9] 1.0538543574512e-07 [GeV] -Cell[17,12] 2.8365954669084e-05 [GeV] -Cell[16,29] 0.08604413312561 [GeV] -Cell[14,33] 0.00015480134852533 [GeV] -Cell[16,28] 0.011511978553047 [GeV] -Cell[18,31] 0.00021000408779025 [GeV] -Cell[16,30] 0.028086014489462 [GeV] -Cell[2,0] 7.5677118438762e-06 [GeV] -Cell[5,14] 1.4749085759263e-05 [GeV] -Cell[15,27] 1.8139253068398e-05 [GeV] -Cell[17,29] 0.00015686983325509 [GeV] -Cell[19,12] 5.773937835329e-05 [GeV] -Cell[13,3] 9.5450884569686e-05 [GeV] -Cell[13,4] 0.058077053132681 [GeV] -Cell[18,9] 9.5909184310585e-06 [GeV] -Cell[19,32] 0.001906154075874 [GeV] -Cell[17,25] 0.00019417550223852 [GeV] -Cell[17,26] 0.00023283966936503 [GeV] -Cell[18,25] 4.7484616175097e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 71 cells : 0.29049391767322 (GeV) +Cell[15,29] 0.089150979506423 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.089150979506423 (GeV) Source track ID 5984 (pi+,1.212524508381[GeV]) at (-437.06086863377,242.85344780154,-1930.8673498377) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[7,22] 0.0014977467716787 [GeV] -Cell[2,1] 0.00051871719240701 [GeV] -Cell[3,33] 0.00026029810883665 [GeV] -Cell[3,40] 0.00051099891 [GeV] -Cell[0,7] 0.0028280357016685 [GeV] -Cell[0,8] 0.00093847577268473 [GeV] -Cell[7,23] 1.7152903196802e-05 [GeV] -Cell[1,26] 0.00069211638008389 [GeV] -Cell[6,41] 0.0017071808547922 [GeV] -Cell[0,20] 0.23935683842669 [GeV] -Cell[4,6] 0.00030918657136601 [GeV] -Cell[4,7] 0.0013780978045337 [GeV] -Cell[0,18] 0.0024295506422729 [GeV] -Cell[2,41] 0.00051099891 [GeV] -Cell[0,26] 0.072456503883681 [GeV] -Cell[1,21] 2.9994196738699e-06 [GeV] -Cell[0,21] 0.00011647626246395 [GeV] -Cell[0,19] 0.52016415284044 [GeV] -Cell[0,22] 5.3811390898773e-12 [GeV] -Cell[0,42] 1.6164046246558e-07 [GeV] -Cell[5,7] 2.7312620336261e-05 [GeV] -Cell[2,2] 0.0021899631098881 [GeV] -Cell[0,11] 0.00070083156948955 [GeV] -Cell[0,27] 0.00050677442555762 [GeV] -Cell[0,10] 0.0032646058967058 [GeV] -### Total energy deposition in calorimeter by a source track in 25 cells : 0.85238517662429 (GeV) +Cell[0,20] 0.089124891819418 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.089124891819418 (GeV) Source track ID 1842 (pi+,0.1971652742687[GeV]) at (331.80516689551,374.03921080743,1564.1883665881) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[17,6] 0.10242917309983 [GeV] -Cell[18,35] 0.0033286517632176 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.10575782486304 (GeV) +Cell[17,6] 0.084205913049455 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.084205913049455 (GeV) Source track ID 5985 (anti_proton,5.3580222212706[GeV]) at (-480.20385511655,139.29916557972,-1702.9371855788) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[5,25] 1.2280361261219e-09 [GeV] -Cell[12,27] 0.00060820506908971 [GeV] -Cell[7,9] 3.8220612168516e-09 [GeV] -Cell[2,28] 0.0001150217497443 [GeV] -Cell[5,0] 0.0057089277772316 [GeV] -Cell[7,13] 4.1845522791846e-05 [GeV] -Cell[5,32] 0.00012003620658322 [GeV] -Cell[5,13] 2.4712914068914e-08 [GeV] -Cell[6,9] 0.00041397889242717 [GeV] -Cell[7,43] 0.023174172815917 [GeV] -Cell[6,47] 0.0011330562982272 [GeV] -Cell[7,37] 2.9797820449176e-06 [GeV] -Cell[5,3] 0.0040239666639497 [GeV] -Cell[2,42] 0.0023443505467121 [GeV] -Cell[6,27] 2.8368689858894e-05 [GeV] -Cell[4,11] 0.011166357083596 [GeV] -Cell[5,2] 0.0026926784493859 [GeV] -Cell[5,33] 0.00039177609992146 [GeV] -Cell[4,39] 0.00035100235820983 [GeV] -Cell[2,46] 2.3424784827512e-05 [GeV] -Cell[3,32] 0.00070491441259545 [GeV] -Cell[1,11] 9.0281292796135e-07 [GeV] -Cell[5,41] 3.4021999454126e-08 [GeV] -Cell[2,6] 0.0013914126539317 [GeV] -Cell[2,23] 4.3742014415329e-05 [GeV] -Cell[2,22] 0.0097194866370553 [GeV] -Cell[1,45] 1.5772593878864e-06 [GeV] -Cell[1,23] 0.028064655922455 [GeV] -Cell[6,1] 4.0682702092454e-08 [GeV] -Cell[0,43] 0.0022189463685535 [GeV] -Cell[2,45] 9.1523767332546e-06 [GeV] -Cell[1,22] 0.16120729093903 [GeV] -Cell[2,21] 0.001392463145486 [GeV] -Cell[1,24] 0.015076289230027 [GeV] -Cell[4,13] 0.00029746579253435 [GeV] -Cell[0,35] 0.0095705165217595 [GeV] -Cell[2,4] 0.0038975434532764 [GeV] -Cell[0,34] 0.00049365469360532 [GeV] -Cell[2,12] 4.2478819849521e-06 [GeV] -Cell[1,19] 0.0096730829161661 [GeV] -Cell[2,32] 1.0038927197456e-05 [GeV] -Cell[2,19] 0.0021361504076804 [GeV] -Cell[6,28] 0.00042376380045016 [GeV] -Cell[7,28] 6.4448699345121e-06 [GeV] -Cell[5,31] 9.0674438979477e-07 [GeV] -Cell[4,2] 8.754081439406e-06 [GeV] -Cell[4,1] 3.8689388602506e-06 [GeV] -Cell[3,1] 0.0010208446777536 [GeV] -Cell[3,2] 0.0007466527893256 [GeV] -Cell[4,9] 3.4099702024832e-05 [GeV] -Cell[2,24] 1.361560892974e-05 [GeV] -Cell[4,40] 5.5087344888989e-06 [GeV] -Cell[2,1] 1.6279738803632e-05 [GeV] -Cell[3,38] 8.1070461601485e-06 [GeV] -Cell[3,33] 0.001237071144049 [GeV] -Cell[3,39] 0.0011929146646263 [GeV] -Cell[0,7] 4.9230770438271e-06 [GeV] -Cell[4,41] 0.00050730779882701 [GeV] -Cell[3,20] 0.084171416561334 [GeV] -Cell[0,8] 8.561409518677e-05 [GeV] -Cell[9,2] 0.0046743527374619 [GeV] -Cell[0,24] 0.00019767981879238 [GeV] -Cell[1,25] 0.00082193836703618 [GeV] -Cell[3,10] 0.00015221397729874 [GeV] -Cell[2,8] 0.0014358221272572 [GeV] -Cell[2,14] 3.668850673057e-05 [GeV] -Cell[0,44] 0.0017041129299782 [GeV] -Cell[1,29] 3.9212908455738e-05 [GeV] -Cell[4,18] 6.7235513415653e-06 [GeV] -Cell[4,17] 1.4103425201029e-08 [GeV] -Cell[3,16] 0.00018721648717826 [GeV] -Cell[0,41] 4.698265317711e-05 [GeV] -Cell[1,41] 0.0011251662185967 [GeV] -Cell[4,16] 1.6206589282319e-07 [GeV] -Cell[2,36] 0.00018560811703333 [GeV] -Cell[2,44] 0.0010510554128807 [GeV] -Cell[6,18] 1.3078118732665e-05 [GeV] -Cell[5,12] 1.5334230564577e-05 [GeV] -Cell[3,18] 0.00015690785006052 [GeV] -Cell[2,18] 4.1531857277732e-09 [GeV] -Cell[1,46] 0.0089773868650761 [GeV] -Cell[1,47] 7.4546733931015e-05 [GeV] -Cell[2,33] 0.045447767197526 [GeV] -Cell[0,39] 0.0023406217761952 [GeV] -Cell[3,27] 0.0001887371555141 [GeV] -Cell[3,42] 0.0087323071630608 [GeV] -Cell[6,26] 9.4111281669029e-08 [GeV] -Cell[0,38] 0.0036088127166416 [GeV] -Cell[0,37] 1.1820522822745e-05 [GeV] -Cell[4,14] 0.00019676401936226 [GeV] -Cell[3,13] 0.0020879015718683 [GeV] -Cell[3,15] 2.2398752043955e-06 [GeV] -Cell[4,45] 2.0365777018014e-06 [GeV] -Cell[11,0] 5.2262430472183e-10 [GeV] -Cell[3,41] 0.00032486993391365 [GeV] -Cell[2,31] 6.2025542632455e-05 [GeV] -Cell[8,44] 0.00071792535658962 [GeV] -Cell[4,12] 0.0014398399779288 [GeV] -Cell[7,20] 5.722785834223e-06 [GeV] -Cell[8,45] 0.00071554456767512 [GeV] -Cell[6,4] 0.0007231369699283 [GeV] -Cell[7,36] 9.0141640315551e-06 [GeV] -Cell[6,35] 0.00019014584056669 [GeV] -Cell[6,15] 6.3514395151287e-07 [GeV] -Cell[3,26] 9.2918188237832e-05 [GeV] -Cell[2,25] 0.001787987777784 [GeV] -Cell[2,26] 0.00094390889182273 [GeV] -Cell[1,26] 0.003133784974563 [GeV] -Cell[2,10] 0.012178592181249 [GeV] -Cell[2,34] 0.0025380612392435 [GeV] -Cell[6,5] 0.00016294243306402 [GeV] -Cell[3,0] 7.3525612824596e-06 [GeV] -Cell[2,3] 0.0010891072761122 [GeV] -Cell[1,42] 6.8967906916441e-05 [GeV] -Cell[1,14] 0.0011238389946162 [GeV] -Cell[1,5] 1.8493775860406e-07 [GeV] -Cell[0,23] 0.01048211932528 [GeV] -Cell[0,25] 0.0012294413097497 [GeV] -Cell[0,16] 0.0055318300167475 [GeV] -Cell[2,20] 0.0052320017261554 [GeV] -Cell[5,10] 0.001966231902836 [GeV] -Cell[3,25] 4.8565561883152e-10 [GeV] -Cell[0,1] 0.0035451899045949 [GeV] -Cell[0,4] 0.00037610628238849 [GeV] -Cell[1,13] 0.0035090020508862 [GeV] -Cell[1,8] 0.00030184943425854 [GeV] -Cell[1,18] 0.00132748308406 [GeV] -Cell[0,20] 0.022211448489735 [GeV] -Cell[1,34] 2.8858750883956e-06 [GeV] -Cell[1,17] 4.3123263751227e-05 [GeV] -Cell[1,33] 5.7818457268581e-05 [GeV] -Cell[0,33] 8.4876664914191e-09 [GeV] -Cell[1,15] 0.0010568531458611 [GeV] -Cell[4,6] 0.0013293983316702 [GeV] -Cell[4,7] 0.00031966743049816 [GeV] -Cell[4,5] 0.0015238396109297 [GeV] -Cell[1,12] 5.622899448872e-05 [GeV] -Cell[7,5] 3.7688029988203e-06 [GeV] -Cell[10,2] 0.0029731104085475 [GeV] -Cell[7,25] 3.2133384729605e-06 [GeV] -Cell[4,4] 0.00051537351716127 [GeV] -Cell[4,37] 0.0043022541541348 [GeV] -Cell[3,35] 9.9379324303866e-05 [GeV] -Cell[7,29] 0.0001992787498707 [GeV] -Cell[1,30] 0.0045448024583844 [GeV] -Cell[6,46] 0.0015077110697723 [GeV] -Cell[1,3] 0.00045187662879755 [GeV] -Cell[0,18] 8.7455999279086e-05 [GeV] -Cell[2,38] 0.0061785681633461 [GeV] -Cell[7,21] 1.6064121882664e-05 [GeV] -Cell[2,41] 0.0062472177169096 [GeV] -Cell[6,3] 8.2578173896763e-06 [GeV] -Cell[6,2] 0.00019633963326271 [GeV] -Cell[5,1] 0.0023161870559827 [GeV] -Cell[4,3] 0.0024245246392164 [GeV] -Cell[4,0] 0.002017034814648 [GeV] -Cell[3,47] 3.0308559857076e-05 [GeV] -Cell[1,7] 2.1121073837094e-07 [GeV] -Cell[5,11] 0.00031607436769309 [GeV] -Cell[1,32] 0.0011901573412538 [GeV] -Cell[0,26] 0.0020672309515256 [GeV] -Cell[2,35] 0.00061957639547416 [GeV] -Cell[0,14] 0.00035257017483088 [GeV] -Cell[0,15] 0.00042749242656726 [GeV] -Cell[0,17] 0.02137669744841 [GeV] -Cell[5,29] 5.9555615052886e-09 [GeV] -Cell[2,11] 2.3440889799531e-07 [GeV] -Cell[5,30] 8.4361127278498e-08 [GeV] -Cell[1,36] 6.8407107050916e-08 [GeV] -Cell[7,30] 0.00067370189240507 [GeV] -Cell[4,24] 6.0132184007671e-06 [GeV] -Cell[10,1] 0.00029856528316475 [GeV] -Cell[9,47] 0.0016185345063536 [GeV] -Cell[5,34] 1.3213951024227e-07 [GeV] -Cell[1,21] 2.3545874226344 [GeV] -Cell[0,21] 0.19351560723749 [GeV] -Cell[0,19] 0.0008677672551139 [GeV] -Cell[2,0] 0.0011596340273185 [GeV] -Cell[5,14] 1.080062120991e-06 [GeV] -Cell[0,22] 0.015507898394267 [GeV] -Cell[2,2] 0.00031961993009611 [GeV] -Cell[0,11] 4.0829873178154e-06 [GeV] -Cell[0,27] 1.3659341202583e-06 [GeV] -Cell[0,10] 6.1651110590901e-06 [GeV] -Cell[1,20] 0.035470981730579 [GeV] -Cell[10,4] 0.00084802496031299 [GeV] -Cell[0,12] 0.0030131979616135 [GeV] -Cell[2,30] 1.5968440720826e-09 [GeV] -Cell[2,29] 4.7858348625596e-07 [GeV] -Cell[1,31] 0.0051207483300648 [GeV] -Cell[0,46] 0.00059834006368669 [GeV] -Cell[0,45] 5.5616651798118e-05 [GeV] -Cell[1,16] 0.0010409684864366 [GeV] -Cell[3,19] 0.0010251058064858 [GeV] -Cell[3,21] 0.0018174442483244 [GeV] -Cell[3,22] 0.0053298494881108 [GeV] -Cell[2,39] 0.0094841485803309 [GeV] -Cell[2,13] 0.00030398855641772 [GeV] -Cell[2,37] 1.8499828694303e-06 [GeV] -Cell[4,42] 2.7003844122646e-06 [GeV] -Cell[10,3] 0.0060311026733445 [GeV] -Cell[0,3] 0.00047086976140906 [GeV] -Cell[1,4] 0.00010539995043825 [GeV] -Cell[2,43] 3.3683733972225e-05 [GeV] -Cell[1,0] 7.0572634664131e-05 [GeV] -Cell[0,47] 0.0026701435642889 [GeV] -Cell[0,0] 0.00078862790263406 [GeV] -Cell[0,40] 0.0014730925583327 [GeV] -Cell[7,47] 0.00094632400090633 [GeV] -Cell[1,39] 0.012660706836431 [GeV] -Cell[1,40] 0.0046423826278788 [GeV] -Cell[2,40] 0.0028244525075686 [GeV] -Cell[0,36] 0.041465998463041 [GeV] -Cell[3,36] 0.0015228154774797 [GeV] -Cell[2,7] 0.0016580650385895 [GeV] -Cell[1,43] 0.0003114111966388 [GeV] -Cell[5,15] 2.1218044566922e-06 [GeV] -Cell[5,16] 3.7583379658145e-05 [GeV] -Cell[6,8] 4.7019674278999e-05 [GeV] -Cell[4,36] 0.0060757691556477 [GeV] -Cell[1,27] 0.0065704956047567 [GeV] -Cell[1,1] 0.00069633969717961 [GeV] -Cell[2,9] 0.00023978745145098 [GeV] -Cell[1,44] 0.00013716470853853 [GeV] -Cell[7,24] 1.3090675913645e-06 [GeV] -Cell[3,7] 5.3070054411819e-07 [GeV] -Cell[3,6] 1.5904753341829e-06 [GeV] -Cell[1,10] 6.9751062837895e-06 [GeV] -Cell[0,32] 6.614257581532e-06 [GeV] -Cell[5,42] 3.8244935858529e-06 [GeV] -Cell[2,27] 1.3416817236475e-05 [GeV] -Cell[1,35] 4.8084204900078e-07 [GeV] -Cell[1,2] 0.0034935865143839 [GeV] -Cell[1,28] 2.4075173093593e-05 [GeV] -Cell[2,5] 0.00077299457174308 [GeV] -Cell[3,12] 0.0003211317114459 [GeV] -Cell[4,10] 0.0075225760560096 [GeV] -Cell[3,11] 3.6787550106965e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 238 cells : 3.3554877986121 (GeV) +Cell[8,5] 0.00042449515987948 [GeV] +Cell[7,26] 0.00032832465345986 [GeV] +Cell[5,3] 4.4680965649491e-05 [GeV] +Cell[5,2] 1.1745784111554e-05 [GeV] +Cell[1,23] 0.0063207829035951 [GeV] +Cell[1,22] 0.0092262235870466 [GeV] +Cell[1,24] 0.0033447973767731 [GeV] +Cell[9,3] 0.0003492076107101 [GeV] +Cell[3,33] 7.0004203766075e-05 [GeV] +Cell[0,24] 0.0060685137164645 [GeV] +Cell[1,25] 0.0058058290203532 [GeV] +Cell[0,30] 0.0008559657275114 [GeV] +Cell[9,12] 7.1206772699952e-06 [GeV] +Cell[8,45] 1.0299931571353e-05 [GeV] +Cell[0,23] 0.19181061604956 [GeV] +Cell[0,25] 9.6381739922435e-09 [GeV] +Cell[1,18] 0.0067963499909197 [GeV] +Cell[0,20] 0.54684837549756 [GeV] +Cell[8,4] 0.00035080046562518 [GeV] +Cell[4,4] 1.9499566406012e-12 [GeV] +Cell[5,4] 0.00032397723289034 [GeV] +Cell[5,1] 2.1018481551437e-05 [GeV] +Cell[3,45] 0.0030119786341654 [GeV] +Cell[1,21] 0.15836566717724 [GeV] +Cell[0,21] 1.3977507505729 [GeV] +Cell[0,22] 1.7447499246114 [GeV] +Cell[1,20] 0.0028168450818639 [GeV] +Cell[0,19] 0.019258310443451 [GeV] +Cell[0,42] 0.00050144671456801 [GeV] +Cell[0,40] 1.2149290796515e-08 [GeV] +Cell[9,4] 3.7760844221339e-05 [GeV] +Cell[3,36] 0.0016468555438759 [GeV] +### Total energy deposition in calorimeter by a source track in 32 cells : 4.1071586904494 (GeV) Source track ID 1879 (kaon-,1.1687003586585[GeV]) at (474.27199886411,-158.32268028757,-19.774127538074) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[10,43] 0.025002186757274 [GeV] -Cell[8,47] 1.4370829914697e-05 [GeV] -Cell[9,41] 0.00023523090661956 [GeV] -Cell[9,45] 0.17317854794378 [GeV] -Cell[8,46] 2.2200651983439e-11 [GeV] -Cell[15,28] 2.3253308609128e-06 [GeV] -Cell[16,15] 5.9118384169778e-05 [GeV] -Cell[11,43] 0.00082505667960856 [GeV] -Cell[11,44] 0.00073122202783225 [GeV] -Cell[9,12] 0.0083126733524006 [GeV] -Cell[11,46] 3.9996325540415e-09 [GeV] -Cell[14,8] 1.3997652742546e-05 [GeV] -Cell[9,43] 0.041937968558241 [GeV] -Cell[8,43] 5.0810073071261e-07 [GeV] -Cell[9,44] 0.013984790353661 [GeV] -Cell[8,45] 0.00011388816280726 [GeV] -Cell[10,46] 0.019889408592422 [GeV] -Cell[9,42] 0.0081820110891764 [GeV] -Cell[11,45] 0.0016934879376702 [GeV] -Cell[8,0] 4.1551497815817e-08 [GeV] -Cell[10,16] 0.00063212645647923 [GeV] -Cell[9,1] 2.7460571051279e-06 [GeV] -Cell[10,41] 1.0209885513177e-05 [GeV] -Cell[10,42] 1.0805260774305e-07 [GeV] -Cell[15,15] 3.697362379171e-06 [GeV] -Cell[14,32] 1.2803579352294e-08 [GeV] -Cell[15,32] 0.00012452737612455 [GeV] -Cell[14,7] 3.856582188746e-06 [GeV] -Cell[17,19] 1.2631076679099e-05 [GeV] -Cell[8,42] 0.0022981050458488 [GeV] -Cell[10,15] 2.0934385247529e-10 [GeV] -Cell[10,0] 5.7602746997645e-05 [GeV] -Cell[9,47] 0.0094775125851348 [GeV] -Cell[15,33] 5.3838419546537e-07 [GeV] -Cell[14,33] 5.8402974900673e-11 [GeV] -Cell[10,47] 0.015690870327036 [GeV] -Cell[10,45] 0.13596444791879 [GeV] -Cell[9,46] 0.24689603793405 [GeV] -Cell[10,44] 0.025744190835651 [GeV] -Cell[15,16] 3.4769932099152e-06 [GeV] -Cell[17,22] 7.4137827905361e-06 [GeV] -Cell[9,0] 0.00029682079496263 [GeV] -### Total energy deposition in calorimeter by a source track in 42 cells : 0.73140377150231 (GeV) +Cell[8,9] 0.0012510465988248 [GeV] +Cell[10,43] 8.3673512563109e-11 [GeV] +Cell[4,26] 8.4118703477998e-07 [GeV] +Cell[8,47] 0.043531708520026 [GeV] +Cell[9,45] 0.32685005757202 [GeV] +Cell[8,46] 0.0019059808586643 [GeV] +Cell[10,18] 0.0035028600285076 [GeV] +Cell[19,11] 0.00092901746657179 [GeV] +Cell[14,46] 5.3291780402901e-05 [GeV] +Cell[12,44] 2.0411493605934e-06 [GeV] +Cell[9,3] 3.3731139602423e-05 [GeV] +Cell[13,31] 0.0027418384731956 [GeV] +Cell[9,2] 0.0027646624066831 [GeV] +Cell[4,18] 7.0073045208119e-07 [GeV] +Cell[4,19] 0.0008237501458442 [GeV] +Cell[11,44] 0.0016090469759848 [GeV] +Cell[9,36] 7.873437833041e-06 [GeV] +Cell[12,21] 0.000160755727278 [GeV] +Cell[11,46] 2.899527316913e-09 [GeV] +Cell[12,46] 0.0025992042596032 [GeV] +Cell[14,8] 0.0016584700349639 [GeV] +Cell[9,43] 5.8404510809851e-09 [GeV] +Cell[8,44] 1.848082212382e-05 [GeV] +Cell[9,44] 0.0039601915712311 [GeV] +Cell[8,45] 0.00025917352060446 [GeV] +Cell[10,46] 0.0061439964300055 [GeV] +Cell[11,45] 0.023665941471418 [GeV] +Cell[8,0] 0.0011197464955972 [GeV] +Cell[10,2] 0.00018789309983049 [GeV] +Cell[11,5] 9.4364804681391e-09 [GeV] +Cell[13,46] 0.014329272974198 [GeV] +Cell[11,24] 5.3831992962728e-05 [GeV] +Cell[11,25] 0.00054329574961321 [GeV] +Cell[9,46] 0.35380527403872 [GeV] +Cell[9,0] 0.0011963977264397 [GeV] +Cell[10,22] 0.0050992351546844 [GeV] +Cell[10,3] 6.1661297346973e-05 [GeV] +Cell[10,5] 2.5499148591734e-07 [GeV] +Cell[10,45] 0.0068006456697478 [GeV] +Cell[9,37] 0.0004323467696477 [GeV] +Cell[10,47] 0.00046912501846259 [GeV] +Cell[9,47] 0.012177250455551 [GeV] +Cell[4,25] 2.296170765419e-05 [GeV] +Cell[10,44] 0.0063677146992219 [GeV] +Cell[10,24] 8.3231716416776e-09 [GeV] +Cell[17,19] 0.0004303025578814 [GeV] +Cell[7,47] 0.0006703792435705 [GeV] +Cell[12,45] 0.0011159699661167 [GeV] +Cell[7,0] 0.0002009950383582 [GeV] +### Total energy deposition in calorimeter by a source track in 49 cells : 0.82955924353863 (GeV) Source track ID 5854 (proton,2.1151425227783[GeV]) at (-168.31632807122,470.81802610417,-1671.4934398352) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[5,25] 8.2609769597184e-06 [GeV] -Cell[2,28] 0.00050644197498866 [GeV] -Cell[5,45] 3.6813085898757e-08 [GeV] -Cell[5,46] 0.00054834388035692 [GeV] -Cell[5,32] 0.0053528906941385 [GeV] -Cell[6,37] 0.00049165139867783 [GeV] -Cell[5,33] 0.002509194260381 [GeV] -Cell[3,46] 1.5864792076172e-05 [GeV] -Cell[4,31] 1.3095644506393e-05 [GeV] -Cell[2,6] 1.6822673565002e-06 [GeV] -Cell[0,29] 2.3699582110339e-06 [GeV] -Cell[4,13] 7.8250641346358e-06 [GeV] -Cell[2,12] 6.3947611980552e-05 [GeV] -Cell[3,34] 0.00012028211751567 [GeV] -Cell[10,17] 3.5269884392619e-08 [GeV] -Cell[10,19] 0.0023001773363823 [GeV] -Cell[10,18] 0.0026052939501337 [GeV] -Cell[5,31] 1.1868761475853e-08 [GeV] -Cell[12,44] 4.1856749652652e-05 [GeV] -Cell[2,24] 3.0152198412452e-06 [GeV] -Cell[4,8] 1.4352907840021e-07 [GeV] -Cell[3,39] 0.00012957726912362 [GeV] -Cell[0,28] 4.2140732137227e-05 [GeV] -Cell[2,14] 7.6391137287942e-05 [GeV] -Cell[1,29] 9.9621502158698e-10 [GeV] -Cell[2,36] 0.00025785525589163 [GeV] -Cell[3,29] 0.0029288031932597 [GeV] -Cell[3,28] 0.002389878166435 [GeV] -Cell[3,27] 0.0042224289425388 [GeV] -Cell[4,14] 0.00024970872402662 [GeV] -Cell[11,44] 7.6291858567856e-07 [GeV] -Cell[12,41] 2.0272481779102e-06 [GeV] -Cell[12,42] 3.8299981679302e-06 [GeV] -Cell[12,43] 5.6072533479892e-06 [GeV] -Cell[0,13] 5.8203302160109e-09 [GeV] -Cell[4,12] 5.0211798534292e-06 [GeV] -Cell[6,33] 0.0019603037237578 [GeV] -Cell[3,26] 0.00129545493823 [GeV] -Cell[2,25] 5.8239063384235e-05 [GeV] -Cell[2,26] 0.00021424393877658 [GeV] -Cell[2,34] 0.0010616050440137 [GeV] -Cell[3,0] 1.0230705491267e-05 [GeV] -Cell[1,14] 0.3881640001779 [GeV] -Cell[0,16] 0.0013401501912522 [GeV] -Cell[7,6] 1.2656689999858e-05 [GeV] -Cell[1,13] 0.00051053106158292 [GeV] -Cell[2,16] 0.0014476733644248 [GeV] -Cell[5,47] 7.5154964870308e-06 [GeV] -Cell[1,17] 0.00023149245833849 [GeV] -Cell[1,15] 0.010833165132261 [GeV] -Cell[3,35] 0.00086338238730332 [GeV] -Cell[2,15] 0.0053175424303059 [GeV] -Cell[3,47] 0.00028817739286148 [GeV] -Cell[0,5] 3.3780524972826e-09 [GeV] -Cell[0,6] 1.3360113371164e-09 [GeV] -Cell[4,15] 3.3267835145239e-05 [GeV] -Cell[3,45] 0.0051650870470859 [GeV] -Cell[1,32] 5.6751977130261e-05 [GeV] -Cell[2,35] 0.0022243832605703 [GeV] -Cell[0,14] 0.003085701764812 [GeV] -Cell[0,15] 0.0051090446351247 [GeV] -Cell[0,17] 2.624449413247e-06 [GeV] -Cell[2,11] 1.0545566255928e-05 [GeV] -Cell[1,36] 8.0069788964465e-08 [GeV] -Cell[10,14] 6.028576171957e-08 [GeV] -Cell[6,32] 0.0027745561458911 [GeV] -Cell[1,21] 1.6819607745788e-05 [GeV] -Cell[1,20] 5.7804000867691e-05 [GeV] -Cell[2,29] 7.9291659176306e-09 [GeV] -Cell[1,31] 0.00067177396505429 [GeV] -Cell[1,16] 0.011129633811332 [GeV] -Cell[2,39] 1.3106596074067e-05 [GeV] -Cell[2,13] 0.00046734799704768 [GeV] -Cell[2,7] 1.7000449588522e-08 [GeV] -Cell[2,27] 3.8729671062583e-05 [GeV] -Cell[1,28] 0.00020750084030465 [GeV] -Cell[2,5] 1.7710806446303e-08 [GeV] -Cell[4,10] 2.3802470228702e-06 [GeV] -Cell[8,3] 8.1233926466666e-06 [GeV] -Cell[4,30] 3.0375920177903e-06 [GeV] -Cell[4,47] 0.002223055760658 [GeV] -### Total energy deposition in calorimeter by a source track in 81 cells : 0.47182428828316 (GeV) +Cell[5,0] 0.00016419952956664 [GeV] +Cell[5,46] 0.00169543979581 [GeV] +Cell[7,45] 3.6638610763475e-06 [GeV] +Cell[7,43] 0.0017898438240686 [GeV] +Cell[7,44] 0.00019420439216083 [GeV] +Cell[4,21] 0.00053305778877554 [GeV] +Cell[7,17] 0.0012587048000573 [GeV] +Cell[4,31] 1.4147371985018e-10 [GeV] +Cell[2,6] 5.2312232437544e-06 [GeV] +Cell[1,23] 0.00081446411362094 [GeV] +Cell[0,43] 3.4749889164232e-07 [GeV] +Cell[0,2] 3.5186062493722e-06 [GeV] +Cell[0,35] 0.0015870525603714 [GeV] +Cell[2,4] 4.2088345833236e-06 [GeV] +Cell[2,12] 4.8403120890725e-05 [GeV] +Cell[3,34] 0.00083338884156836 [GeV] +Cell[11,21] 1.9570003246372e-08 [GeV] +Cell[14,1] 7.9701363574713e-08 [GeV] +Cell[6,43] 0.0010093854985134 [GeV] +Cell[3,1] 0.0011897020778445 [GeV] +Cell[2,1] 0.0040913249456673 [GeV] +Cell[1,25] 0.00061634227495242 [GeV] +Cell[0,28] 0.0005297157663972 [GeV] +Cell[2,14] 0.0026775581588056 [GeV] +Cell[0,41] 0.0004446717963717 [GeV] +Cell[0,39] 0.00020721399029617 [GeV] +Cell[3,42] 0.0024569183386241 [GeV] +Cell[0,38] 1.042543357471e-05 [GeV] +Cell[0,37] 0.0027306685051937 [GeV] +Cell[14,0] 1.4526359154843e-07 [GeV] +Cell[3,14] 0.0012022481310255 [GeV] +Cell[3,15] 0.00072378473154583 [GeV] +Cell[11,43] 0.00040123234216162 [GeV] +Cell[11,44] 0.0013224618713392 [GeV] +Cell[12,22] 1.2655404094971e-05 [GeV] +Cell[12,23] 0.00018299692125549 [GeV] +Cell[12,21] 3.7773146223117e-06 [GeV] +Cell[0,13] 0.17327223688755 [GeV] +Cell[1,26] 0.0038324622988571 [GeV] +Cell[2,3] 0.001322688276036 [GeV] +Cell[1,14] 0.35019237790808 [GeV] +Cell[0,16] 0.0024147561263651 [GeV] +Cell[0,1] 7.4534993700581e-08 [GeV] +Cell[2,47] 0.00019633213469202 [GeV] +Cell[1,13] 0.01794544359599 [GeV] +Cell[1,18] 0.0003832974530709 [GeV] +Cell[5,47] 0.0010002381868488 [GeV] +Cell[1,17] 0.01762470424448 [GeV] +Cell[1,15] 0.012519086672685 [GeV] +Cell[1,12] 0.0061473592714228 [GeV] +Cell[10,26] 4.8985375932489e-06 [GeV] +Cell[2,15] 3.0801160988858e-06 [GeV] +Cell[0,18] 1.6589183360338e-11 [GeV] +Cell[2,2] 9.6440962515771e-06 [GeV] +Cell[2,0] 6.0817760072496e-07 [GeV] +Cell[11,24] 0.0071083905739123 [GeV] +Cell[11,25] 5.2901155625023e-06 [GeV] +Cell[2,13] 0.0023630891344416 [GeV] +Cell[3,44] 6.6026729997247e-05 [GeV] +Cell[11,23] 0.00044678219462355 [GeV] +Cell[9,40] 2.0512371789664e-05 [GeV] +Cell[10,25] 3.0105477410416e-06 [GeV] +Cell[10,38] 0.00097886405061146 [GeV] +Cell[1,44] 3.8172584027052e-09 [GeV] +Cell[5,30] 0.00033879011452488 [GeV] +Cell[4,30] 3.676343128609e-05 [GeV] +Cell[11,26] 1.4893370098434e-07 [GeV] +Cell[1,21] 0.0017455000667559 [GeV] +Cell[0,15] 8.9186651166528e-08 [GeV] +Cell[0,11] 7.0722308009863e-12 [GeV] +Cell[0,0] 0.0008556763257429 [GeV] +Cell[1,16] 0.0066249850302562 [GeV] +Cell[0,14] 0.031696707394209 [GeV] +Cell[0,42] 0.0018057749608731 [GeV] +Cell[0,40] 0.0033489920561051 [GeV] +Cell[10,44] 8.8098122983752e-05 [GeV] +Cell[10,24] 8.2850543549284e-08 [GeV] +Cell[4,29] 5.1181316609927e-07 [GeV] +Cell[8,41] 1.0152365837712e-05 [GeV] +Cell[19,34] 1.2769998284057e-07 [GeV] +Cell[12,25] 4.1310448432341e-07 [GeV] +Cell[12,26] 9.4496789165532e-07 [GeV] +Cell[0,12] 0.00039890718088941 [GeV] +Cell[4,15] 5.8048793448506e-08 [GeV] +Cell[0,45] 2.1342420950532e-09 [GeV] +Cell[0,17] 2.5695278304738e-07 [GeV] +Cell[1,2] 3.5444481443733e-05 [GeV] +Cell[1,1] 0.016065924984927 [GeV] +Cell[2,5] 4.7068973566638e-05 [GeV] +Cell[3,43] 9.9223698200262e-05 [GeV] +Cell[1,27] 0.0011873478126831 [GeV] +Cell[0,26] 0.00090919119586539 [GeV] +Cell[0,47] 0.00080759009354334 [GeV] +Cell[1,35] 5.740691189726e-05 [GeV] +Cell[1,36] 0.0013996370686265 [GeV] +Cell[1,39] 0.0063109037845981 [GeV] +Cell[1,38] 0.0011272317418502 [GeV] +Cell[1,40] 0.0010562907213285 [GeV] +Cell[1,0] 0.00017532854647584 [GeV] +### Total energy deposition in calorimeter by a source track in 99 cells : 0.70284188780458 (GeV) Source track ID 1583 (pi+,0.27778557088959[GeV]) at (258.86824250604,427.77007027355,28.847569498818) Original primary track ID 41 (unknown,2.6699951779791[GeV]) -Cell[10,7] 0.097146070787871 [GeV] -Cell[10,6] 0.089385422489966 [GeV] -Cell[10,5] 0.001616398022282 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.18814789130012 (GeV) +Cell[10,7] 0.07735644321784 [GeV] +Cell[10,6] 0.075498256954425 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.15285470017226 (GeV) Source track ID 5167 (pi+,0.78155341366804[GeV]) at (-497.87755393675,46.021096096892,-1139.6081019656) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[2,22] 0.18648932595738 [GeV] -Cell[1,22] 0.20372745026726 [GeV] -Cell[3,22] 0.17419541150623 [GeV] -Cell[4,23] 0.072766978929026 [GeV] -Cell[3,23] 0.059628876195127 [GeV] -### Total energy deposition in calorimeter by a source track in 5 cells : 0.69680804285502 (GeV) +Cell[7,37] 0.00055285117071583 [GeV] +Cell[6,37] 0.015162946603997 [GeV] +Cell[2,23] 0.0016664666875539 [GeV] +Cell[2,22] 0.24662156026299 [GeV] +Cell[1,23] 0.00049105193929529 [GeV] +Cell[1,22] 0.019476676252062 [GeV] +Cell[2,21] 0.0020153785969232 [GeV] +Cell[1,24] 0.0018729495356342 [GeV] +Cell[2,19] 0.00028719145775347 [GeV] +Cell[6,38] 0.007562343303323 [GeV] +Cell[4,8] 1.7299549654126e-08 [GeV] +Cell[3,20] 3.1423958716914e-08 [GeV] +Cell[7,38] 0.0027875489900851 [GeV] +Cell[1,25] 3.5229404462484e-05 [GeV] +Cell[3,42] 1.7228099750355e-08 [GeV] +Cell[10,7] 1.9794853869826e-08 [GeV] +Cell[11,45] 1.4857056604569e-06 [GeV] +Cell[2,25] 9.6611535396733e-05 [GeV] +Cell[2,26] 2.0677060774688e-09 [GeV] +Cell[1,26] 1.9224319203204e-10 [GeV] +Cell[2,20] 0.00095913502525616 [GeV] +Cell[5,37] 0.00025915627101995 [GeV] +Cell[1,21] 0.00037000100730893 [GeV] +Cell[1,20] 0.0016674740718133 [GeV] +Cell[5,36] 6.3953135395423e-08 [GeV] +Cell[4,23] 0.078889612384436 [GeV] +Cell[3,23] 0.025860216244812 [GeV] +Cell[3,22] 0.1692081514342 [GeV] +Cell[3,21] 3.5286309166622e-06 [GeV] +Cell[5,23] 0.00073722736938415 [GeV] +Cell[6,39] 1.6385374919992e-08 [GeV] +Cell[5,34] 0.00038936458567332 [GeV] +### Total energy deposition in calorimeter by a source track in 32 cells : 0.5769743268156 (GeV) Source track ID 2835 (pi+,0.58338690160105[GeV]) at (-499.13749644556,29.355742914394,858.05846125557) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[9,38] 5.2936822758056e-06 [GeV] -Cell[14,27] 2.3467304798032e-05 [GeV] -Cell[12,38] 9.5685276130553e-07 [GeV] -Cell[13,24] 0.0031221378809363 [GeV] -Cell[14,35] 0.0044871669619683 [GeV] -Cell[14,28] 1.0768561041914e-06 [GeV] -Cell[15,28] 4.2119083955185e-06 [GeV] -Cell[15,24] 1.3488647848135e-05 [GeV] -Cell[14,23] 0.052088025433981 [GeV] -Cell[11,32] 5.9628178423736e-06 [GeV] -Cell[11,34] 3.557467344217e-05 [GeV] -Cell[17,30] 0.0065343657913194 [GeV] -Cell[14,29] 1.8401108973194e-06 [GeV] -Cell[14,36] 0.00056469493334691 [GeV] -Cell[17,31] 0.00095322323097169 [GeV] -Cell[9,35] 5.4860720410943e-11 [GeV] -Cell[9,36] 1.2567886225611e-05 [GeV] -Cell[10,36] 3.8511853972523e-09 [GeV] -Cell[13,22] 0.00022399742397806 [GeV] -Cell[12,21] 3.2580761057943e-08 [GeV] -Cell[14,22] 0.0013437326227663 [GeV] -Cell[14,25] 5.6895062734839e-06 [GeV] -Cell[14,24] 0.00053004428522843 [GeV] -Cell[18,32] 0.00028736262608209 [GeV] -Cell[19,31] 0.00013817980569581 [GeV] -Cell[18,30] 0.0053165773302157 [GeV] -Cell[12,20] 4.6266336539702e-10 [GeV] -Cell[9,42] 0.0032795777215011 [GeV] -Cell[12,36] 3.4698593742633e-07 [GeV] -Cell[9,14] 1.3408195780357e-05 [GeV] -Cell[9,13] 7.3997894360218e-06 [GeV] -Cell[13,21] 0.0020715649258948 [GeV] -Cell[17,32] 1.9266735762358e-11 [GeV] -Cell[9,24] 6.4660184673357e-06 [GeV] -Cell[9,1] 0.00060854274513781 [GeV] -Cell[9,23] 7.3936542578394e-06 [GeV] -Cell[15,23] 0.060772940986814 [GeV] -Cell[8,24] 0.00038880932934808 [GeV] -Cell[8,23] 8.1541941908654e-06 [GeV] -Cell[13,15] 5.1523254426456e-05 [GeV] -Cell[16,10] 0.0021606002588807 [GeV] -Cell[15,22] 0.00076499025456162 [GeV] -Cell[18,4] 0.00042361462371567 [GeV] -Cell[13,32] 0.00036135382915273 [GeV] -Cell[14,32] 0.00092671370340192 [GeV] -Cell[15,43] 0.00051099891 [GeV] -Cell[9,4] 8.7018961203285e-06 [GeV] -Cell[13,33] 0.00012895124246677 [GeV] -Cell[16,8] 5.4920892956716e-06 [GeV] -Cell[16,9] 6.3207243304646e-05 [GeV] -Cell[15,37] 8.6268634186126e-07 [GeV] -Cell[14,34] 2.5236844114261e-05 [GeV] -Cell[18,29] 0.00031673162370282 [GeV] -Cell[18,31] 0.0019193113790808 [GeV] -Cell[15,27] 3.0045194500985e-05 [GeV] -Cell[17,29] 0.0058044943576585 [GeV] -Cell[19,32] 1.146113304344e-05 [GeV] -Cell[13,23] 0.0039013306671713 [GeV] -Cell[9,37] 0.00013149735349543 [GeV] -Cell[13,14] 0.0010495877101182 [GeV] -Cell[12,37] 2.2859263388e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 61 cells : 0.16146327226975 (GeV) +Cell[14,23] 0.11108068640286 [GeV] +Cell[15,21] 0.0025051353215598 [GeV] +Cell[14,22] 0.063113995286306 [GeV] +Cell[15,23] 4.1778386390092e-05 [GeV] +Cell[15,22] 0.29025893612257 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.46700053151969 (GeV) Source track ID 5170 (pi+,0.50625589718795[GeV]) at (491.20946776939,93.344837959647,-1102.0788794815) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[7,9] 2.1415988449007e-06 [GeV] -Cell[7,8] 4.1288355714642e-07 [GeV] -Cell[2,28] 0.00023186476906142 [GeV] -Cell[7,22] 9.0084032563027e-06 [GeV] -Cell[5,13] 6.3825568940956e-06 [GeV] -Cell[6,9] 5.2329495015329e-05 [GeV] -Cell[5,3] 1.1277268640697e-08 [GeV] -Cell[5,2] 4.5656634029001e-09 [GeV] -Cell[7,34] 9.3895609737615e-05 [GeV] -Cell[3,46] 0.0014207214531296 [GeV] -Cell[4,39] 4.8603396862745e-12 [GeV] -Cell[3,32] 2.1444986545248e-05 [GeV] -Cell[5,41] 5.2636549203271e-05 [GeV] -Cell[2,21] 8.661164415571e-06 [GeV] -Cell[4,13] 0.0018960388557079 [GeV] -Cell[2,4] 0.00052370082560742 [GeV] -Cell[2,17] 1.2901233276352e-08 [GeV] -Cell[4,38] 8.3123432723369e-06 [GeV] -Cell[2,32] 0.00087281752434751 [GeV] -Cell[2,19] 1.2552711647004e-05 [GeV] -Cell[6,36] 1.3535176985897e-06 [GeV] -Cell[6,38] 7.0673564914614e-07 [GeV] -Cell[4,2] 0.0089538077245696 [GeV] -Cell[4,1] 0.10577301219334 [GeV] -Cell[3,1] 0.0051932327858697 [GeV] -Cell[3,2] 0.00021506573968918 [GeV] -Cell[4,40] 1.5661918732803e-06 [GeV] -Cell[3,38] 0.0010022919252895 [GeV] -Cell[3,39] 2.9290084739841e-07 [GeV] -Cell[3,40] 1.7875505436677e-06 [GeV] -Cell[3,17] 3.5450719209621e-05 [GeV] -Cell[4,18] 0.0021554838751931 [GeV] -Cell[3,29] 0.00029588436181393 [GeV] -Cell[3,18] 5.5975474415959e-05 [GeV] -Cell[2,33] 0.0028167692509853 [GeV] -Cell[3,14] 7.7573554823175e-05 [GeV] -Cell[3,13] 1.1705560609698e-10 [GeV] -Cell[11,46] 0.00030138238608924 [GeV] -Cell[12,47] 0.00010741388141832 [GeV] -Cell[11,0] 0.00077843998149683 [GeV] -Cell[12,46] 0.00034599944841773 [GeV] -Cell[19,46] 4.9894606054295e-06 [GeV] -Cell[3,41] 1.9449921383057e-06 [GeV] -Cell[4,12] 4.992337233034e-08 [GeV] -Cell[5,9] 2.9647230803675e-09 [GeV] -Cell[6,35] 9.9637273058761e-05 [GeV] -Cell[7,33] 0.00023063272235004 [GeV] -Cell[9,24] 4.9931750108954e-06 [GeV] -Cell[3,0] 0.0071793421615021 [GeV] -Cell[2,3] 2.3666103050346e-05 [GeV] -Cell[2,20] 0.0019213141735898 [GeV] -Cell[2,47] 0.00184972706939 [GeV] -Cell[2,16] 4.3862745851584e-06 [GeV] -Cell[1,18] 0.0032967638955925 [GeV] -Cell[1,17] 0.0030344655432066 [GeV] -Cell[1,33] 0.0011525741521556 [GeV] -Cell[0,33] 0.00023051465408128 [GeV] -Cell[7,25] 2.7871700440301e-05 [GeV] -Cell[2,15] 0.0034282066046784 [GeV] -Cell[5,28] 2.8979798487853e-05 [GeV] -Cell[3,37] 0.0052258299740599 [GeV] -Cell[8,23] 1.0623877169564e-06 [GeV] -Cell[9,25] 0.00041020314926652 [GeV] -Cell[4,3] 0.0021849206914653 [GeV] -Cell[4,0] 0.018121629280305 [GeV] -Cell[3,47] 0.0087768721814677 [GeV] -Cell[1,32] 0.00015374664148362 [GeV] -Cell[0,17] 0.0014655873198321 [GeV] -Cell[11,27] 4.231177563338e-05 [GeV] -Cell[6,22] 3.015837748535e-06 [GeV] -Cell[5,29] 0.00017078773978108 [GeV] -Cell[5,30] 0.0017589432593626 [GeV] -Cell[2,2] 2.3430618512066e-10 [GeV] -Cell[2,29] 0.00011015520207002 [GeV] -Cell[1,16] 6.8466294718291e-05 [GeV] -Cell[4,42] 9.8573064315133e-07 [GeV] -Cell[5,15] 8.7741611059755e-07 [GeV] -Cell[5,16] 0.0015192156244552 [GeV] -Cell[1,27] 3.439812527904e-05 [GeV] -Cell[2,9] 4.0557302418165e-07 [GeV] -Cell[3,6] 6.1427268927218e-05 [GeV] -Cell[0,32] 0.0019647300250931 [GeV] -Cell[2,27] 7.678517408749e-08 [GeV] -Cell[2,5] 1.5934499698119e-05 [GeV] -Cell[3,12] 5.2328687161207e-11 [GeV] -Cell[4,30] 0.00068945420331886 [GeV] -Cell[4,47] 3.8764886720742e-05 [GeV] -Cell[4,29] 0.00075810666499342 [GeV] -Cell[11,28] 1.0451445705257e-06 [GeV] -Cell[4,27] 0.00068350813032021 [GeV] -Cell[4,28] 0.00026314623548876 [GeV] -Cell[5,38] 4.4729633373208e-07 [GeV] -### Total energy deposition in calorimeter by a source track in 92 cells : 0.20037255906927 (GeV) +Cell[5,32] 0.0019489473603116 [GeV] +Cell[5,43] 0.033680417189956 [GeV] +Cell[5,20] 0.00030896711747789 [GeV] +Cell[5,33] 0.17357326679372 [GeV] +Cell[4,46] 0.0029730116517435 [GeV] +Cell[2,17] 0.00051099891 [GeV] +Cell[4,38] 0.0019810398295432 [GeV] +Cell[7,28] 0.00063036332302738 [GeV] +Cell[14,42] 2.7685397020832e-05 [GeV] +Cell[4,2] 0.00017462870960619 [GeV] +Cell[4,1] 0.10958218682503 [GeV] +Cell[3,33] 0.0037203702416762 [GeV] +Cell[3,20] 0.0047280295720686 [GeV] +Cell[2,44] 0.00015925259216507 [GeV] +Cell[3,28] 0.00073973882449687 [GeV] +Cell[3,42] 0.0034785072179535 [GeV] +Cell[0,37] 0.00095853890031604 [GeV] +Cell[4,45] 0.00061176761080692 [GeV] +Cell[11,43] 0.00040637095609243 [GeV] +Cell[11,44] 0.00020198320722968 [GeV] +Cell[13,43] 9.0137797736816e-06 [GeV] +Cell[3,41] 0.0028621075705143 [GeV] +Cell[2,31] 0.0065603977676258 [GeV] +Cell[9,43] 0.00060111861078423 [GeV] +Cell[12,19] 1.5683001751313e-05 [GeV] +Cell[6,34] 0.00044889120461414 [GeV] +Cell[6,35] 0.0012823612030315 [GeV] +Cell[9,24] 0.0015209240816617 [GeV] +Cell[5,10] 0.00051099891 [GeV] +Cell[1,17] 0.00041599554463157 [GeV] +Cell[9,26] 0.0019385656618953 [GeV] +Cell[4,4] 7.6359802333172e-06 [GeV] +Cell[4,0] 0.0040838312276263 [GeV] +Cell[4,3] 0.00051099891 [GeV] +Cell[13,42] 3.2631750229939e-07 [GeV] +Cell[14,43] 9.5831375648572e-05 [GeV] +Cell[5,30] 0.076055175419136 [GeV] +Cell[12,45] 0.00051099891 [GeV] +Cell[1,36] 0.00023436303632914 [GeV] +Cell[5,34] 0.02278349786415 [GeV] +Cell[6,23] 6.5182706166524e-06 [GeV] +Cell[2,29] 0.00013484376529164 [GeV] +Cell[0,36] 0.0040783830625654 [GeV] +### Total energy deposition in calorimeter by a source track in 43 cells : 0.46506453370562 (GeV) Source track ID 1914 (pi-,0.22744808265589[GeV]) at (25.736666504981,499.33718467305,-1281.1066866774) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[3,4] 6.9154471275397e-06 [GeV] -Cell[4,13] 0.00030630965453452 [GeV] -Cell[2,12] 0.005242932126152 [GeV] -Cell[10,34] 1.3723624651902e-05 [GeV] -Cell[3,16] 0.00035677581059821 [GeV] -Cell[3,13] 0.00014975776494077 [GeV] -Cell[3,15] 0.0010946017650741 [GeV] -Cell[10,35] 0.00045952712518977 [GeV] -Cell[4,12] 1.2373846344417e-05 [GeV] -Cell[8,33] 1.8921553513565e-06 [GeV] -Cell[8,34] 9.0826688392553e-11 [GeV] -Cell[2,11] 0.00046278839014978 [GeV] -Cell[3,19] 1.634889098932e-05 [GeV] -Cell[3,12] 0.015096301764788 [GeV] -Cell[3,11] 0.17070828354296 [GeV] -### Total energy deposition in calorimeter by a source track in 15 cells : 0.19392853199967 (GeV) +Cell[13,35] 0.00094191659248474 [GeV] +Cell[6,17] 3.8640107959509e-08 [GeV] +Cell[6,30] 8.351148921065e-06 [GeV] +Cell[4,11] 0.0013098533267963 [GeV] +Cell[4,31] 0.0013015084960929 [GeV] +Cell[4,13] 1.7167293699458e-06 [GeV] +Cell[6,44] 0.00059292634125484 [GeV] +Cell[5,31] 0.00012235322757806 [GeV] +Cell[12,18] 5.1265431011416e-10 [GeV] +Cell[14,28] 5.7133730834266e-05 [GeV] +Cell[15,29] 0.0049670294086946 [GeV] +Cell[15,31] 0.00026995445126886 [GeV] +Cell[15,30] 0.0007709274447293 [GeV] +Cell[15,28] 0.00029726206413579 [GeV] +Cell[3,1] 4.572516339249e-05 [GeV] +Cell[3,2] 0.0005783272460103 [GeV] +Cell[4,40] 7.2808878030628e-06 [GeV] +Cell[2,1] 0.00026370093312602 [GeV] +Cell[14,29] 1.7564415381912e-06 [GeV] +Cell[3,10] 0.0021253130116329 [GeV] +Cell[5,17] 3.6279729101807e-08 [GeV] +Cell[6,16] 3.462710960207e-06 [GeV] +Cell[3,13] 8.940419283249e-06 [GeV] +Cell[12,35] 0.00010374994485915 [GeV] +Cell[14,19] 2.2372809939952e-07 [GeV] +Cell[4,12] 0.00049854761721554 [GeV] +Cell[6,45] 1.1626083408487e-05 [GeV] +Cell[12,36] 3.4558744984679e-05 [GeV] +Cell[2,25] 2.5376965641044e-07 [GeV] +Cell[2,26] 6.0417288716508e-07 [GeV] +Cell[2,10] 0.00047861084862091 [GeV] +Cell[3,0] 0.0015462112118561 [GeV] +Cell[14,30] 1.3637437863508e-05 [GeV] +Cell[13,18] 2.0955054013143e-05 [GeV] +Cell[2,2] 0.013872287035958 [GeV] +Cell[3,45] 7.8876045299694e-06 [GeV] +Cell[5,16] 0.00052844645892219 [GeV] +Cell[12,17] 4.090118129227e-05 [GeV] +Cell[13,17] 3.5501486294038e-05 [GeV] +Cell[3,44] 3.1253279157681e-05 [GeV] +Cell[2,11] 1.2211011789987e-07 [GeV] +Cell[13,34] 0.00061625161415702 [GeV] +Cell[13,36] 2.6622229925124e-05 [GeV] +Cell[3,12] 0.00099296304129757 [GeV] +Cell[3,11] 0.048833381082884 [GeV] +Cell[13,1] 0.0004040703543582 [GeV] +Cell[4,25] 0.00086150062683395 [GeV] +Cell[3,9] 4.3281644724175e-05 [GeV] +Cell[2,9] 0.0065338316735495 [GeV] +Cell[2,7] 6.4503338944633e-06 [GeV] +Cell[14,33] 0.00013262070230746 [GeV] +Cell[14,18] 2.4559726625739e-09 [GeV] +Cell[19,43] 0.0016639485460169 [GeV] +Cell[18,17] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 54 cells : 0.091526816194056 (GeV) Source track ID 4912 (anti_proton,1.6909709362937[GeV]) at (-493.67976144164,79.248300568052,-1170.1735335144) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[7,2] 2.9575897497125e-06 [GeV] -Cell[6,7] 8.9443696197122e-08 [GeV] -Cell[4,21] 1.0955529128229e-05 [GeV] -Cell[4,20] 0.00084188305626701 [GeV] -Cell[4,22] 0.045920485774795 [GeV] -Cell[2,46] 0.00082662355301999 [GeV] -Cell[2,23] 0.038111969707817 [GeV] -Cell[2,22] 0.2087175085228 [GeV] -Cell[1,23] 0.00060858868012485 [GeV] -Cell[2,45] 0.00075118119113845 [GeV] -Cell[0,29] 0.0008038041400257 [GeV] -Cell[1,22] 0.046212208621014 [GeV] -Cell[2,21] 0.020265844430214 [GeV] -Cell[1,24] 0.0038844579573111 [GeV] -Cell[3,4] 0.00073647330443566 [GeV] -Cell[2,4] 1.529580791248e-05 [GeV] -Cell[2,17] 4.5067281462252e-10 [GeV] -Cell[2,32] 0.0011802553265499 [GeV] -Cell[2,19] 0.0004644935195168 [GeV] -Cell[3,1] 0.015992910574493 [GeV] -Cell[2,24] 0.061651730454104 [GeV] -Cell[2,1] 0.00067216344323981 [GeV] -Cell[3,40] 0.0032850928339197 [GeV] -Cell[3,17] 4.5785743509441e-08 [GeV] -Cell[3,20] 0.0007573810744332 [GeV] -Cell[0,24] 0.00011769023119166 [GeV] -Cell[1,25] 0.0037003040553137 [GeV] -Cell[0,28] 0.00031207910078124 [GeV] -Cell[3,3] 0.0015945900150022 [GeV] -Cell[2,8] 0.001454232276558 [GeV] -Cell[0,30] 1.2053297094326e-05 [GeV] -Cell[1,29] 1.0718545818236e-05 [GeV] -Cell[3,16] 1.6294943634421e-09 [GeV] -Cell[7,3] 0.00053212035649688 [GeV] -Cell[2,36] 0.0012135546103527 [GeV] -Cell[3,18] 3.036402631551e-10 [GeV] -Cell[1,46] 0.0016289183071799 [GeV] -Cell[3,28] 0.00051099891 [GeV] -Cell[3,27] 0.0018403450755266 [GeV] -Cell[4,45] 0.001792361366668 [GeV] -Cell[10,8] 0.0003341955993526 [GeV] -Cell[10,9] 0.001511128380082 [GeV] -Cell[3,26] 1.5734752878416e-09 [GeV] -Cell[2,25] 0.0020345754152368 [GeV] -Cell[2,26] 9.5897121354938e-10 [GeV] -Cell[1,26] 0.00015289254688503 [GeV] -Cell[6,5] 3.9234553696588e-08 [GeV] -Cell[3,0] 0.0017392384864661 [GeV] -Cell[2,3] 0.00068190578347844 [GeV] -Cell[0,23] 0.022155801297952 [GeV] -Cell[2,20] 0.00062296917211685 [GeV] -Cell[3,25] 9.4662272204005e-08 [GeV] -Cell[2,47] 9.8151943959465e-05 [GeV] -Cell[10,10] 2.7115712634213e-05 [GeV] -Cell[4,33] 0.00011122149713265 [GeV] -Cell[6,3] 4.044145840453e-06 [GeV] -Cell[5,4] 1.3265389425214e-06 [GeV] -Cell[6,2] 6.1802050331607e-06 [GeV] -Cell[3,47] 7.4868236965358e-05 [GeV] -Cell[0,26] 0.0025974433809168 [GeV] -Cell[4,24] 0.0030974488658532 [GeV] -Cell[5,34] 0.00088001272209476 [GeV] -Cell[1,21] 3.0012952302059e-06 [GeV] -Cell[2,0] 0.0060461395829118 [GeV] -Cell[0,22] 1.6162335319677e-05 [GeV] -Cell[5,7] 1.3912858332787e-07 [GeV] -Cell[2,2] 5.0324829306533e-05 [GeV] -Cell[0,27] 0.036456151974439 [GeV] -Cell[3,19] 0.00096274250847489 [GeV] -Cell[3,21] 0.077033748168937 [GeV] -Cell[3,22] 1.0951469763035 [GeV] -Cell[2,9] 0.0027302719866436 [GeV] -Cell[3,7] 0.0042867466292129 [GeV] -Cell[1,28] 1.8790298025124e-05 [GeV] -Cell[3,23] 0.30346986894583 [GeV] -Cell[4,29] 1.0449016088387e-05 [GeV] -Cell[5,5] 2.0563536381701e-05 [GeV] -Cell[6,6] 6.8130902945995e-08 [GeV] -Cell[5,6] 4.5551219759545e-06 [GeV] -Cell[3,24] 0.030019312860543 [GeV] -Cell[4,25] 4.73135203938e-05 [GeV] -Cell[1,38] 0.0078999531001029 [GeV] -Cell[3,5] 0.0041086274441123 [GeV] -### Total energy deposition in calorimeter by a source track in 83 cells : 2.0708969319304 (GeV) +Cell[9,38] 1.909157843329e-06 [GeV] +Cell[4,26] 9.8610442364588e-08 [GeV] +Cell[7,14] 9.7602978113741e-05 [GeV] +Cell[5,43] 3.809112604165e-05 [GeV] +Cell[6,17] 4.6133002615534e-07 [GeV] +Cell[6,7] 5.2058172627767e-08 [GeV] +Cell[8,16] 0.00044794024261341 [GeV] +Cell[6,47] 3.6776926943958e-06 [GeV] +Cell[6,24] 0.00021872440212859 [GeV] +Cell[9,5] 0.00052873470446411 [GeV] +Cell[7,41] 8.5252074216214e-05 [GeV] +Cell[4,21] 0.0026962369802251 [GeV] +Cell[4,20] 1.5988379748137e-05 [GeV] +Cell[7,34] 3.7022074393462e-06 [GeV] +Cell[4,22] 0.049138871169782 [GeV] +Cell[4,39] 2.4801001389278e-05 [GeV] +Cell[2,46] 2.9654957674211e-05 [GeV] +Cell[2,6] 0.0023240177755644 [GeV] +Cell[2,23] 0.28626865565206 [GeV] +Cell[2,22] 0.010393913962014 [GeV] +Cell[1,45] 4.5018844912192e-07 [GeV] +Cell[1,23] 6.9357629399747e-09 [GeV] +Cell[3,8] 4.4331826502457e-06 [GeV] +Cell[6,0] 1.0372101314715e-06 [GeV] +Cell[2,45] 0.00029791934650711 [GeV] +Cell[1,22] 2.462784891577e-09 [GeV] +Cell[2,21] 0.00074237770708066 [GeV] +Cell[1,24] 0.10984086937258 [GeV] +Cell[2,19] 2.7046597097069e-08 [GeV] +Cell[4,44] 0.0023288731074972 [GeV] +Cell[11,33] 0.00019545782809373 [GeV] +Cell[9,3] 6.1866871546954e-06 [GeV] +Cell[12,28] 0.00045974978780032 [GeV] +Cell[12,29] 3.9068716591828e-07 [GeV] +Cell[12,30] 3.384833689779e-09 [GeV] +Cell[6,43] 6.3881788228173e-06 [GeV] +Cell[11,31] 0.0013098562443071 [GeV] +Cell[3,1] 0.00067540793199623 [GeV] +Cell[3,2] 0.00015636083890786 [GeV] +Cell[2,24] 0.039545366205573 [GeV] +Cell[4,40] 5.3743573691463e-05 [GeV] +Cell[2,1] 0.00056824764142766 [GeV] +Cell[3,40] 0.00047803519348349 [GeV] +Cell[3,17] 5.4081829148345e-10 [GeV] +Cell[3,20] 0.00012110515275651 [GeV] +Cell[1,25] 0.038188939785842 [GeV] +Cell[3,10] 2.1983869373798e-09 [GeV] +Cell[3,3] 0.0039479784127462 [GeV] +Cell[2,8] 8.5008644382469e-06 [GeV] +Cell[5,18] 5.8143496062257e-10 [GeV] +Cell[4,18] 6.2299272940436e-10 [GeV] +Cell[4,17] 0.00055218674394007 [GeV] +Cell[5,17] 2.5415961317776e-09 [GeV] +Cell[4,19] 8.6613450434925e-07 [GeV] +Cell[3,30] 0.0020533891015294 [GeV] +Cell[6,18] 6.3881465175655e-06 [GeV] +Cell[6,16] 7.1843767997279e-06 [GeV] +Cell[3,31] 3.310093078926e-05 [GeV] +Cell[3,18] 2.4459997400527e-05 [GeV] +Cell[1,46] 0.0022330840947087 [GeV] +Cell[7,23] 2.8614280209126e-05 [GeV] +Cell[11,41] 7.3851910312907e-05 [GeV] +Cell[11,1] 2.9689629445784e-07 [GeV] +Cell[9,29] 0.0025923952734883 [GeV] +Cell[6,45] 5.3385087812785e-06 [GeV] +Cell[6,4] 0.0011303328356127 [GeV] +Cell[11,2] 0.00024120771843945 [GeV] +Cell[7,35] 3.762931242818e-06 [GeV] +Cell[6,15] 1.3389596111892e-06 [GeV] +Cell[3,26] 0.00019061144166733 [GeV] +Cell[9,24] 0.0017035903329602 [GeV] +Cell[2,25] 0.00089320768082886 [GeV] +Cell[2,26] 0.00013230441402516 [GeV] +Cell[6,5] 0.0079445950597416 [GeV] +Cell[3,0] 3.0367203580681e-06 [GeV] +Cell[1,9] 9.1650705692928e-05 [GeV] +Cell[0,25] 1.0455660344633e-07 [GeV] +Cell[2,20] 8.6172565261222e-09 [GeV] +Cell[3,25] 0.0002013351517835 [GeV] +Cell[1,8] 0.004513692579145 [GeV] +Cell[10,2] 9.7861285596537e-06 [GeV] +Cell[6,19] 2.7109078655485e-06 [GeV] +Cell[9,23] 2.7839036624755e-07 [GeV] +Cell[9,30] 0.00024095008221809 [GeV] +Cell[5,4] 2.0635195596697e-10 [GeV] +Cell[5,16] 0.00087129693950203 [GeV] +Cell[5,15] 5.9112267081218e-11 [GeV] +Cell[10,1] 0.00043785438482496 [GeV] +Cell[10,23] 5.179084323413e-05 [GeV] +Cell[5,7] 0.00027821320759638 [GeV] +Cell[4,42] 9.0499260404613e-06 [GeV] +Cell[6,32] 0.0009546916943847 [GeV] +Cell[4,30] 0.0027014539429062 [GeV] +Cell[10,3] 6.4028427004814e-13 [GeV] +Cell[2,11] 1.4654079859611e-06 [GeV] +Cell[8,40] 2.8300908604706e-07 [GeV] +Cell[9,39] 4.3068725324702e-05 [GeV] +Cell[0,11] 6.1719164659735e-07 [GeV] +Cell[0,14] 3.014644086943e-05 [GeV] +Cell[4,25] 0.00051542387042969 [GeV] +Cell[4,29] 1.138809605618e-05 [GeV] +Cell[8,41] 0.0014242030921298 [GeV] +Cell[0,12] 1.448661956033e-06 [GeV] +Cell[4,15] 2.1259770728648e-06 [GeV] +Cell[2,5] 4.5602378755575e-05 [GeV] +Cell[3,43] 1.4649151504273e-05 [GeV] +Cell[4,23] 0.0029428301446953 [GeV] +Cell[3,23] 0.48815470605201 [GeV] +Cell[3,22] 0.80198112246489 [GeV] +Cell[3,21] 0.0032958151200142 [GeV] +Cell[6,39] 0.00078612574975057 [GeV] +Cell[6,23] 5.4268350650091e-06 [GeV] +Cell[2,9] 1.1760474531911e-05 [GeV] +Cell[2,7] 3.9736151790521e-05 [GeV] +Cell[3,24] 0.0056792589230189 [GeV] +Cell[6,6] 0.00216517092665 [GeV] +Cell[9,34] 7.2679802542552e-08 [GeV] +Cell[8,42] 0.00048079549127309 [GeV] +Cell[3,19] 0.00085153193534109 [GeV] +Cell[5,22] 8.04416401661e-06 [GeV] +Cell[4,28] 0.00023234773649779 [GeV] +Cell[4,27] 1.0092412594531e-10 [GeV] +Cell[10,0] 0.00115290703367 [GeV] +Cell[11,30] 5.7249190867878e-06 [GeV] +Cell[4,43] 2.1242449787678e-05 [GeV] +Cell[1,7] 0.00053469463537886 [GeV] +### Total energy deposition in calorimeter by a source track in 126 cells : 1.8919158567118 (GeV) Source track ID 2966 (pi+,1.1825126097681[GeV]) at (-498.93475591887,32.62068877532,-1756.6901785723) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[1,23] 0.054015657100531 [GeV] -Cell[0,23] 0.20554910390106 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.25956476100159 (GeV) +Cell[1,23] 0.057934224303389 [GeV] +Cell[0,23] 0.19004768708095 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.24798191138434 (GeV) Source track ID 4914 (pi+,0.5342237663127[GeV]) at (103.6114210551,489.1468832845,298.13997259091) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,6] 4.1709828521334e-05 [GeV] -Cell[14,27] 0.0025004507588656 [GeV] -Cell[12,5] 0.00071696515427379 [GeV] -Cell[10,8] 0.0034153856759603 [GeV] -Cell[11,7] 0.0091496899827521 [GeV] -Cell[11,6] 0.000665007696153 [GeV] -Cell[13,7] 0.0022873155632255 [GeV] -Cell[11,12] 0.0017985915277659 [GeV] -Cell[11,5] 2.0125969660512e-05 [GeV] -Cell[12,6] 0.00044112961268911 [GeV] -Cell[13,5] 1.6777725147676e-07 [GeV] -Cell[12,7] 0.00013868905665038 [GeV] -Cell[11,11] 3.4116926966703e-05 [GeV] -Cell[12,11] 0.0028882978932562 [GeV] -Cell[13,11] 0.0024410375705642 [GeV] -Cell[11,8] 0.029839588780705 [GeV] -Cell[11,10] 0.050822960107155 [GeV] -Cell[12,10] 0.0061552749208588 [GeV] -Cell[12,9] 0.011070397783073 [GeV] -Cell[11,9] 0.20632306203207 [GeV] -Cell[12,8] 0.0040934497176344 [GeV] -Cell[12,12] 0.0016130230777373 [GeV] -### Total energy deposition in calorimeter by a source track in 22 cells : 0.33645643741378 (GeV) +Cell[11,40] 4.2859388617785e-05 [GeV] +Cell[12,5] 0.00010366448126251 [GeV] +Cell[12,41] 1.07433803704e-05 [GeV] +Cell[12,39] 1.0780052980408e-05 [GeV] +Cell[12,40] 0.0008797538622656 [GeV] +Cell[11,7] 0.00046024265256278 [GeV] +Cell[11,6] 0.0050984737077909 [GeV] +Cell[9,35] 0.00014153211207849 [GeV] +Cell[13,41] 1.4307595233731e-05 [GeV] +Cell[2,41] 1.308166506351e-05 [GeV] +Cell[11,5] 0.0054657971076462 [GeV] +Cell[12,6] 0.00081753813590592 [GeV] +Cell[13,11] 0.00053800638565383 [GeV] +Cell[10,5] 0.00022783362886184 [GeV] +Cell[12,8] 1.582266661444e-07 [GeV] +Cell[12,9] 0.040763878013118 [GeV] +Cell[1,32] 1.2526025384432e-05 [GeV] +Cell[12,7] 2.0220538317517e-08 [GeV] +Cell[12,10] 0.005084061454441 [GeV] +Cell[12,11] 0.0050078276340271 [GeV] +Cell[8,36] 0.0012135995252888 [GeV] +Cell[11,10] 0.058976385286629 [GeV] +Cell[11,9] 0.19059026245309 [GeV] +Cell[11,8] 0.0032589622326772 [GeV] +Cell[11,11] 0.00052688557058264 [GeV] +### Total energy deposition in calorimeter by a source track in 25 cells : 0.31925918079874 (GeV) Source track ID 2965 (pi-,26.431193460637[GeV]) at (-348.95260717871,-358.09506830335,-1955.410060638) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,30] 0.062397164021023 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.062397164021023 (GeV) +Cell[0,30] 0.066674237627957 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.066674237627957 (GeV) Source track ID 4915 (kaon-,1.5124140206684[GeV]) at (462.4558898233,-190.09089922386,443.37038190362) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[12,27] 0.0058536614533648 [GeV] -Cell[9,10] 1.3412681834097e-06 [GeV] -Cell[9,11] 2.6358771007949e-05 [GeV] -Cell[7,14] 9.9681473761848e-07 [GeV] -Cell[11,4] 0.0028744190973366 [GeV] -Cell[5,41] 2.2899841439994e-07 [GeV] -Cell[11,40] 9.8800017053691e-06 [GeV] -Cell[10,19] 4.85037472572e-07 [GeV] -Cell[10,18] 6.183868390508e-08 [GeV] -Cell[11,3] 0.010483523216476 [GeV] -Cell[14,46] 0.0046484670989376 [GeV] -Cell[14,45] 4.5760195757794e-07 [GeV] -Cell[13,27] 2.0081499769731e-08 [GeV] -Cell[12,38] 0.0006991224172973 [GeV] -Cell[13,28] 7.8967725812618e-08 [GeV] -Cell[12,3] 9.3732302775607e-07 [GeV] -Cell[14,35] 1.0323792521376e-06 [GeV] -Cell[12,44] 0.20411350169828 [GeV] -Cell[13,45] 0.0033471636875359 [GeV] -Cell[11,38] 0.00030113860235326 [GeV] -Cell[14,1] 4.8037216765806e-07 [GeV] -Cell[12,28] 0.0041017504054034 [GeV] -Cell[15,24] 1.0636471775911e-05 [GeV] -Cell[16,37] 1.0780058801174e-10 [GeV] -Cell[14,29] 1.7710413725581e-05 [GeV] -Cell[15,38] 0.00015703806851513 [GeV] -Cell[3,13] 0.00076699197488631 [GeV] -Cell[3,15] 0.00020297520686222 [GeV] -Cell[11,42] 0.003955769602465 [GeV] -Cell[11,43] 0.0014310096774434 [GeV] -Cell[11,44] 0.0023626720041425 [GeV] -Cell[12,42] 0.0041683865472711 [GeV] -Cell[11,41] 3.3578679791617e-06 [GeV] -Cell[12,39] 0.0089734419066542 [GeV] -Cell[12,43] 0.0068920941637841 [GeV] -Cell[12,40] 0.0092261154834494 [GeV] -Cell[13,37] 0.00065399215023069 [GeV] -Cell[9,12] 9.4368950813077e-06 [GeV] -Cell[13,43] 0.0014513655485909 [GeV] -Cell[13,44] 0.0018309050593729 [GeV] -Cell[13,16] 0.00069995919300686 [GeV] -Cell[14,15] 9.1433292254806e-08 [GeV] -Cell[9,35] 0.00091268319658764 [GeV] -Cell[9,36] 0.0012570457702344 [GeV] -Cell[10,36] 9.2004049751267e-05 [GeV] -Cell[10,35] 0.0004955249890852 [GeV] -Cell[14,20] 0.00057119580228137 [GeV] -Cell[14,21] 0.00087565009709126 [GeV] -Cell[15,20] 2.7506071694461e-07 [GeV] -Cell[16,17] 0.00096996183860892 [GeV] -Cell[14,22] 3.3116772770882e-05 [GeV] -Cell[13,20] 0.00060489913882234 [GeV] -Cell[11,47] 5.1260183681734e-07 [GeV] -Cell[11,46] 3.1914723743739e-05 [GeV] -Cell[12,47] 0.0085258286365379 [GeV] -Cell[11,0] 3.0090479565274e-05 [GeV] -Cell[12,0] 0.00037153207886206 [GeV] -Cell[12,46] 0.03887220296759 [GeV] -Cell[11,1] 9.9616536325584e-06 [GeV] -Cell[12,1] 0.005057454341315 [GeV] -Cell[11,16] 6.0439540585094e-05 [GeV] -Cell[17,15] 2.5144282553811e-05 [GeV] -Cell[18,15] 3.8526413380168e-05 [GeV] -Cell[16,18] 0.00040318234219774 [GeV] -Cell[18,13] 0.00077626950308729 [GeV] -Cell[9,32] 0.00028959232310137 [GeV] -Cell[11,12] 3.7183970591173e-05 [GeV] -Cell[11,45] 0.0016955156075273 [GeV] -Cell[11,2] 0.0055312133710786 [GeV] -Cell[13,21] 0.0004111199374679 [GeV] -Cell[6,34] 2.3718748707324e-09 [GeV] -Cell[7,15] 0.00040215582715734 [GeV] -Cell[11,15] 8.0769013152349e-08 [GeV] -Cell[11,17] 0.0007636707147108 [GeV] -Cell[9,33] 3.3076184399761e-07 [GeV] -Cell[14,30] 0.0028297175627138 [GeV] -Cell[10,41] 4.8248797270389e-08 [GeV] -Cell[10,39] 1.2106825231967e-05 [GeV] -Cell[11,39] 5.6733600665893e-05 [GeV] -Cell[13,40] 7.8511569654438e-09 [GeV] -Cell[10,10] 1.3314856914803e-09 [GeV] -Cell[13,18] 3.2308796677967e-05 [GeV] -Cell[10,11] 0.0022230535222121 [GeV] -Cell[15,23] 0.00081189863931911 [GeV] -Cell[12,4] 1.0845791548491e-06 [GeV] -Cell[12,45] 0.54720214431205 [GeV] -Cell[12,15] 0.0033290559571766 [GeV] -Cell[13,15] 0.00085314497905733 [GeV] -Cell[4,15] 3.5618177207652e-10 [GeV] -Cell[15,25] 0.00077817674770051 [GeV] -Cell[13,47] 2.2451411518887e-07 [GeV] -Cell[12,25] 5.8908752107527e-06 [GeV] -Cell[3,45] 1.8436034151819e-05 [GeV] -Cell[15,14] 5.7206255990195e-05 [GeV] -Cell[15,13] 0.0024524013720238 [GeV] -Cell[11,11] 0.00048827294576949 [GeV] -Cell[14,32] 8.6442606989294e-06 [GeV] -Cell[16,31] 4.6929207746871e-07 [GeV] -Cell[18,11] 3.9106712094508e-05 [GeV] -Cell[18,12] 0.00038885498483558 [GeV] -Cell[12,26] 0.00039185348404092 [GeV] -Cell[12,2] 0.00057965620597452 [GeV] -Cell[15,37] 1.4915909252977e-07 [GeV] -Cell[14,34] 1.6969279386103e-09 [GeV] -Cell[10,0] 2.782253173973e-05 [GeV] -Cell[10,32] 1.4151454932289e-05 [GeV] -Cell[17,16] 0.005530929924593 [GeV] -Cell[16,2] 2.3395242082188e-05 [GeV] -Cell[9,47] 0.00071652498119496 [GeV] -Cell[16,25] 0.0031148471511467 [GeV] -Cell[16,36] 1.22026957456e-07 [GeV] -Cell[15,19] 7.0342211984098e-09 [GeV] -Cell[10,47] 0.0036713146758148 [GeV] -Cell[13,3] 0.00058306519840364 [GeV] -Cell[5,15] 1.1763761052862e-05 [GeV] -Cell[9,0] 0.0031116955195361 [GeV] -Cell[13,14] 6.8049849680392e-05 [GeV] -Cell[12,37] 0.00013055782795891 [GeV] -Cell[4,25] 0.0035264503973506 [GeV] -Cell[13,46] 0.019457278885764 [GeV] -Cell[16,38] 0.00024624987567552 [GeV] -Cell[13,19] 4.2345518443199e-07 [GeV] -Cell[9,34] 0.00031116764849293 [GeV] -Cell[16,20] 2.6979250833392e-11 [GeV] -Cell[15,26] 0.0016609657895397 [GeV] -Cell[19,41] 2.4869368644431e-06 [GeV] -Cell[18,7] 2.9624057351612e-06 [GeV] -Cell[17,39] 9.0260861034039e-06 [GeV] -Cell[17,38] 3.0302070663311e-06 [GeV] -Cell[13,1] 8.3012148559192e-07 [GeV] -Cell[16,24] 0.0020673462874364 [GeV] -Cell[14,44] 0.00090544530228419 [GeV] -Cell[13,38] 4.3240641709417e-05 [GeV] -Cell[12,16] 0.0005655149732986 [GeV] -Cell[18,33] 9.4778087805025e-07 [GeV] -Cell[11,18] 0.0014847600340285 [GeV] -### Total energy deposition in calorimeter by a source track in 136 cells : 0.95827836398213 (GeV) +Cell[12,27] 0.001114821780973 [GeV] +Cell[9,20] 0.0004719634672465 [GeV] +Cell[10,43] 9.2624173930744e-09 [GeV] +Cell[9,19] 2.7584924537223e-06 [GeV] +Cell[9,41] 0.0004434302964479 [GeV] +Cell[9,18] 0.0036009177285413 [GeV] +Cell[19,11] 3.0085960170254e-06 [GeV] +Cell[11,3] 0.00024640928486474 [GeV] +Cell[14,46] 1.7298291049883e-07 [GeV] +Cell[16,0] 1.9642757990823e-07 [GeV] +Cell[12,44] 0.40919802506831 [GeV] +Cell[13,45] 0.014037598292169 [GeV] +Cell[14,1] 0.0059599806028338 [GeV] +Cell[12,28] 3.6107540520788e-05 [GeV] +Cell[12,29] 2.0997074898332e-08 [GeV] +Cell[12,30] 3.9840164245106e-06 [GeV] +Cell[14,47] 0.0026212642954749 [GeV] +Cell[17,9] 1.0723233921226e-06 [GeV] +Cell[13,31] 0.0022167984839942 [GeV] +Cell[12,31] 0.0050146034185716 [GeV] +Cell[10,34] 0.00012944265033366 [GeV] +Cell[9,2] 1.4409332607102e-09 [GeV] +Cell[14,0] 4.1849082110275e-05 [GeV] +Cell[11,42] 0.00067192861255853 [GeV] +Cell[11,43] 1.0036158026196e-05 [GeV] +Cell[11,44] 0.0023465067799072 [GeV] +Cell[12,41] 0.0060512762416982 [GeV] +Cell[12,43] 0.0025810832643584 [GeV] +Cell[9,12] 9.0050151629839e-06 [GeV] +Cell[13,43] 0.00061175118537777 [GeV] +Cell[13,44] 0.02063645445905 [GeV] +Cell[9,35] 4.5991817271329e-05 [GeV] +Cell[10,35] 7.6382317871435e-05 [GeV] +Cell[16,7] 5.6898966466292e-05 [GeV] +Cell[15,17] 1.029893552186e-05 [GeV] +Cell[15,12] 1.3177174550947e-05 [GeV] +Cell[14,22] 0.0027377609601357 [GeV] +Cell[14,24] 1.037404636736e-05 [GeV] +Cell[11,46] 1.4981202293711e-06 [GeV] +Cell[12,47] 6.6818516934291e-06 [GeV] +Cell[12,0] 0.010003220894831 [GeV] +Cell[12,46] 0.017628998243748 [GeV] +Cell[11,1] 0.00083169668477937 [GeV] +Cell[12,1] 0.0034744383730313 [GeV] +Cell[13,30] 2.5425606509089e-11 [GeV] +Cell[9,42] 7.7271344016481e-06 [GeV] +Cell[12,36] 6.9437373895198e-09 [GeV] +Cell[11,45] 0.00088656117486514 [GeV] +Cell[8,20] 0.0009212482924022 [GeV] +Cell[10,16] 0.00017506153556133 [GeV] +Cell[9,1] 6.0288505210337e-10 [GeV] +Cell[9,33] 0.00046521437380454 [GeV] +Cell[10,41] 0.024197726858889 [GeV] +Cell[10,40] 3.4558465413284e-06 [GeV] +Cell[10,42] 0.0055283935507027 [GeV] +Cell[10,26] 0.00046950642862839 [GeV] +Cell[9,26] 0.0013336057788736 [GeV] +Cell[10,27] 3.1520194344921e-05 [GeV] +Cell[9,25] 9.1810400931081e-05 [GeV] +Cell[13,42] 0.00045504952743374 [GeV] +Cell[5,16] 0.00027360503759235 [GeV] +Cell[5,15] 0.00025402706486727 [GeV] +Cell[13,46] 0.00030751420800341 [GeV] +Cell[16,6] 2.4070868676063e-09 [GeV] +Cell[17,7] 1.5985021284791e-05 [GeV] +Cell[17,6] 9.8116556182504e-07 [GeV] +Cell[12,37] 4.2968560751433e-07 [GeV] +Cell[9,40] 1.9908597139874e-05 [GeV] +Cell[10,1] 8.6591925991229e-05 [GeV] +Cell[10,45] 7.9047050459028e-05 [GeV] +Cell[13,14] 9.565978905357e-08 [GeV] +Cell[10,13] 1.5769709716551e-06 [GeV] +Cell[13,1] 0.017653735745045 [GeV] +Cell[13,0] 0.0013262638327503 [GeV] +Cell[10,44] 0.0030820723127099 [GeV] +Cell[12,45] 0.54228550884911 [GeV] +Cell[9,34] 0.00041671300049222 [GeV] +Cell[13,47] 4.8421163850435e-05 [GeV] +Cell[18,11] 0.0025479086775348 [GeV] +Cell[18,10] 0.0024144147208977 [GeV] +Cell[14,3] 1.0823313088622e-05 [GeV] +Cell[19,10] 0.00053303572623076 [GeV] +Cell[18,12] 2.2537193173775e-05 [GeV] +Cell[18,9] 0.00018451499530761 [GeV] +Cell[10,15] 0.00042501618404572 [GeV] +### Total energy deposition in calorimeter by a source track in 85 cells : 1.1195175158123 (GeV) Source track ID 1910 (pi-,5.0455250004589[GeV]) at (-463.70507775161,-187.02299555769,-1931.4213978868) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,26] 0.099191113153196 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.099191113153196 (GeV) +Cell[0,26] 0.12582212289962 [GeV] +Cell[0,27] 0.007005664770906 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.13282778767052 (GeV) Source track ID 5098 (kaon+,0.66734418205317[GeV]) at (304.01359003693,396.95810493408,364.00978777528) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[11,20] 0.00045902610854481 [GeV] -Cell[11,21] 0.0019317354309149 [GeV] -Cell[10,21] 0.00047819521722522 [GeV] -Cell[12,5] 0.016193212609769 [GeV] -Cell[11,7] 0.0017231437347362 [GeV] -Cell[11,6] 0.18865122416157 [GeV] -Cell[11,5] 0.0013487010384417 [GeV] -Cell[12,6] 0.25642708768787 [GeV] -Cell[12,7] 0.046017868176939 [GeV] -Cell[11,23] 0.0027833155274693 [GeV] -Cell[11,24] 0.01279407286114 [GeV] -Cell[11,25] 0.00051099891 [GeV] -Cell[12,2] 0.00047327609513467 [GeV] -Cell[11,30] 0.010227604812358 [GeV] -### Total energy deposition in calorimeter by a source track in 14 cells : 0.54001946237212 (GeV) +Cell[11,7] 0.0014921131477164 [GeV] +Cell[11,6] 0.2048987237146 [GeV] +Cell[9,13] 0.0010216679177872 [GeV] +Cell[10,13] 0.0020256098614724 [GeV] +Cell[10,12] 0.14483035873276 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.35426847337434 (GeV) Source track ID 3203 (pi-,5.4476602991837[GeV]) at (-282.91804803817,-412.25887266895,-1886.6566513279) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,31] 0.16408110517406 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.16408110517406 (GeV) +Cell[0,31] 0.18700305124916 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.18700305124916 (GeV) Source track ID 4917 (pi-,1.1885733392571[GeV]) at (44.207579390142,-498.04185559495,1038.0762938408) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,45] 9.7496051323219e-05 [GeV] -Cell[15,35] 0.00043064560531286 [GeV] -Cell[14,14] 0.0050968848661279 [GeV] -Cell[16,33] 0.0024805497751722 [GeV] -Cell[17,9] 0.0031351220484228 [GeV] -Cell[16,37] 0.31054749213893 [GeV] -Cell[15,38] 0.0046777647721416 [GeV] -Cell[15,39] 6.1882996760687e-08 [GeV] -Cell[16,7] 0.0015448310679168 [GeV] -Cell[19,37] 1.3184536508106e-06 [GeV] -Cell[17,10] 1.3492143659732e-07 [GeV] -Cell[18,39] 0.00081808005781071 [GeV] -Cell[17,8] 0.0063522854666673 [GeV] -Cell[18,13] 4.5895258139353e-05 [GeV] -Cell[19,39] 0.0024242865278213 [GeV] -Cell[18,38] 1.0024485368376e-06 [GeV] -Cell[18,40] 0.00048880599048607 [GeV] -Cell[19,38] 0.015042061203223 [GeV] -Cell[13,15] 0.00051835798263686 [GeV] -Cell[15,25] 4.634259357772e-08 [GeV] -Cell[14,38] 2.8458109682106e-09 [GeV] -Cell[16,10] 0.00031552774619365 [GeV] -Cell[18,10] 1.1187104098553e-07 [GeV] -Cell[18,12] 1.1830536590423e-05 [GeV] -Cell[15,8] 2.4190179146899e-08 [GeV] -Cell[16,8] 0.0053462435277002 [GeV] -Cell[16,9] 0.0091989036727022 [GeV] -Cell[15,37] 0.034293120787735 [GeV] -Cell[15,33] 0.003252095401794 [GeV] -Cell[15,36] 0.18697375039149 [GeV] -Cell[16,35] 0.0052100901546763 [GeV] -Cell[16,34] 0.00022490245833285 [GeV] -Cell[16,36] 0.20321819778397 [GeV] -Cell[15,10] 3.950809775688e-08 [GeV] -Cell[19,12] 0.012844997147551 [GeV] -Cell[18,9] 1.4329176145679e-05 [GeV] -Cell[13,14] 0.00048380400066605 [GeV] -Cell[13,46] 0.0005093096992515 [GeV] -Cell[16,38] 0.00016211424263135 [GeV] -Cell[15,26] 1.0257412782266e-08 [GeV] -Cell[19,41] 0.0013331611572171 [GeV] -Cell[17,38] 0.0021210603539265 [GeV] -Cell[16,6] 0.00018075353386484 [GeV] -Cell[17,37] 0.0066206693994569 [GeV] -Cell[17,36] 0.00073411153071349 [GeV] -Cell[18,37] 0.0011542927682107 [GeV] -Cell[19,40] 0.0011421199980041 [GeV] -Cell[19,13] 0.00063395008638315 [GeV] -### Total energy deposition in calorimeter by a source track in 48 cells : 0.8296826470891 (GeV) +Cell[16,37] 0.17126304484337 [GeV] +Cell[19,37] 0.020121721831119 [GeV] +Cell[18,39] 0.00061957580649778 [GeV] +Cell[18,36] 0.080036778167376 [GeV] +Cell[19,39] 1.0321172544536e-07 [GeV] +Cell[18,38] 0.0026257913245974 [GeV] +Cell[19,38] 5.7656812659843e-06 [GeV] +Cell[16,35] 0.00062622792107311 [GeV] +Cell[17,35] 0.00013801621386676 [GeV] +Cell[17,36] 0.0039224783666515 [GeV] +Cell[18,37] 0.15982718235758 [GeV] +Cell[18,35] 0.0037602213851235 [GeV] +Cell[18,34] 0.0067354364843918 [GeV] +Cell[17,37] 0.19944386454544 [GeV] +Cell[17,38] 0.0015075803283496 [GeV] +Cell[18,33] 1.6878212024722e-05 [GeV] +Cell[15,36] 0.13922018174836 [GeV] +Cell[15,37] 0.0557959052262 [GeV] +Cell[19,36] 0.12611494318902 [GeV] +Cell[19,35] 0.00023180266392387 [GeV] +Cell[16,34] 9.9494636524469e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 21 cells : 0.97202344897161 (GeV) + +Source track ID 3292 (anti_neutron,5.3948206100571[GeV]) at (-415.09134243251,-278.74572182829,-1871.4579101789) +Original primary track ID 31 (unknown,691.32334101424[GeV]) +Cell[7,10] 1.8034706939943e-05 [GeV] +Cell[5,46] 0.002778898032506 [GeV] +Cell[13,35] 4.3766311369836e-05 [GeV] +Cell[9,38] 8.0183375393972e-06 [GeV] +Cell[5,43] 0.0038747437219822 [GeV] +Cell[5,44] 0.0010200029215086 [GeV] +Cell[6,47] 1.1188895643954e-07 [GeV] +Cell[6,24] 3.0683885852341e-06 [GeV] +Cell[9,41] 5.0715131362722e-07 [GeV] +Cell[6,37] 4.9863761523739e-07 [GeV] +Cell[2,42] 0.0005403853081034 [GeV] +Cell[8,46] 0.00030870444234642 [GeV] +Cell[4,21] 0.003553541543599 [GeV] +Cell[4,11] 0.00069102390573892 [GeV] +Cell[4,20] 0.0033390689701175 [GeV] +Cell[4,22] 0.0007055999750761 [GeV] +Cell[4,39] 1.9267178004156e-09 [GeV] +Cell[1,45] 5.0866218807641e-06 [GeV] +Cell[1,23] 0.00022972661979657 [GeV] +Cell[6,0] 0.0022400181663523 [GeV] +Cell[0,29] 0.3571804152212 [GeV] +Cell[1,22] 0.00022326062381114 [GeV] +Cell[2,21] 0.0015547195508236 [GeV] +Cell[1,24] 0.0005391662701818 [GeV] +Cell[0,2] 0.00067165384104419 [GeV] +Cell[3,4] 0.00054018919825777 [GeV] +Cell[2,12] 0.0073086967482673 [GeV] +Cell[2,32] 0.0006626369826181 [GeV] +Cell[4,44] 3.1874483306979e-05 [GeV] +Cell[6,38] 0.00055776244107005 [GeV] +Cell[8,32] 2.8592885428225e-08 [GeV] +Cell[4,1] 7.0312943425961e-06 [GeV] +Cell[3,2] 7.9931263794037e-05 [GeV] +Cell[0,31] 0.022785443933685 [GeV] +Cell[4,40] 0.0015843907049406 [GeV] +Cell[2,1] 6.5011742990464e-06 [GeV] +Cell[3,38] 1.5203176189971e-07 [GeV] +Cell[3,39] 6.1462332266728e-06 [GeV] +Cell[4,41] 1.7180004580837e-05 [GeV] +Cell[3,20] 0.0019708136059534 [GeV] +Cell[0,24] 0.0016637268216747 [GeV] +Cell[1,25] 8.4205245967723e-06 [GeV] +Cell[0,28] 1.8923230171343 [GeV] +Cell[3,10] 3.2664916070644e-06 [GeV] +Cell[3,3] 0.064038042024229 [GeV] +Cell[0,30] 0.024883047557132 [GeV] +Cell[2,14] 0.00033623830535612 [GeV] +Cell[0,44] 0.00050305101041579 [GeV] +Cell[1,29] 0.0076305121817847 [GeV] +Cell[4,18] 1.0411191624371e-09 [GeV] +Cell[5,27] 0.0018454054912816 [GeV] +Cell[1,41] 4.9509324890096e-06 [GeV] +Cell[4,19] 0.0079665377961143 [GeV] +Cell[2,33] 0.0002331965094487 [GeV] +Cell[0,39] 0.0021751675306881 [GeV] +Cell[3,42] 0.0011859385570591 [GeV] +Cell[3,14] 1.1266291309767e-05 [GeV] +Cell[3,13] 0.00027650063891474 [GeV] +Cell[3,15] 1.8954049359309e-05 [GeV] +Cell[5,19] 0.00043177804088577 [GeV] +Cell[11,14] 3.9855745853856e-06 [GeV] +Cell[9,12] 1.0651013581082e-06 [GeV] +Cell[14,15] 0.0014078672165527 [GeV] +Cell[11,16] 5.034131987486e-06 [GeV] +Cell[3,41] 0.0048476839117808 [GeV] +Cell[2,31] 1.4369875923421e-06 [GeV] +Cell[9,44] 0.00048931469798331 [GeV] +Cell[0,13] 0.00038215512483362 [GeV] +Cell[9,13] 2.4596627918072e-07 [GeV] +Cell[7,33] 1.6646838048473e-08 [GeV] +Cell[8,0] 0.00096060130031276 [GeV] +Cell[2,25] 1.7002213280648e-07 [GeV] +Cell[2,26] 9.8156563472003e-06 [GeV] +Cell[1,26] 0.001812195312849 [GeV] +Cell[2,34] 9.7465307044331e-06 [GeV] +Cell[3,0] 0.065622597490097 [GeV] +Cell[2,3] 3.3228524316655e-06 [GeV] +Cell[1,42] 5.7398520756124e-05 [GeV] +Cell[1,14] 0.000440005892415 [GeV] +Cell[1,5] 0.0013647541817844 [GeV] +Cell[0,23] 8.4183514671167e-05 [GeV] +Cell[0,25] 0.001257720485454 [GeV] +Cell[2,20] 2.9614571161801e-05 [GeV] +Cell[3,25] 1.0903034298167e-05 [GeV] +Cell[5,47] 0.0021468404877743 [GeV] +Cell[1,17] 1.8054937740089e-05 [GeV] +Cell[1,33] 2.4425623962543e-07 [GeV] +Cell[0,33] 0.0078636252179018 [GeV] +Cell[4,6] 1.432483827557e-09 [GeV] +Cell[4,5] 7.4075134400573e-06 [GeV] +Cell[1,12] 0.0092668933081633 [GeV] +Cell[5,35] 0.00018025494879339 [GeV] +Cell[10,39] 1.2574947264511e-05 [GeV] +Cell[2,15] 0.0002075651227957 [GeV] +Cell[1,30] 0.00089739555833796 [GeV] +Cell[2,38] 6.9567746709254e-07 [GeV] +Cell[4,0] 0.00089078496446541 [GeV] +Cell[3,7] 1.722643210087e-07 [GeV] +Cell[2,2] 0.00011038830386144 [GeV] +Cell[3,45] 1.2651962315431e-05 [GeV] +Cell[8,31] 3.8195272567577e-05 [GeV] +Cell[11,25] 3.389978519408e-06 [GeV] +Cell[2,13] 0.00017898583541307 [GeV] +Cell[9,40] 3.2765359583209e-07 [GeV] +Cell[9,46] 1.9452469190583e-05 [GeV] +Cell[9,0] 0.0057254527741487 [GeV] +Cell[10,1] 4.1954526968766e-06 [GeV] +Cell[4,42] 4.6835508865115e-06 [GeV] +Cell[1,44] 1.6339796187822e-05 [GeV] +Cell[2,11] 0.00051099891 [GeV] +Cell[11,28] 3.6815019840446e-05 [GeV] +Cell[13,34] 0.00091908454025236 [GeV] +Cell[13,33] 0.00054520943458192 [GeV] +Cell[9,39] 0.0013974945618365 [GeV] +Cell[1,21] 0.0014244754937189 [GeV] +Cell[0,21] 2.9245784760974e-05 [GeV] +Cell[0,22] 0.00076955187903855 [GeV] +Cell[1,20] 0.00099727480719423 [GeV] +Cell[1,31] 0.019562430317124 [GeV] +Cell[3,12] 0.00095135241693924 [GeV] +Cell[2,43] 0.00042864263873844 [GeV] +Cell[0,0] 2.046873306972e-05 [GeV] +Cell[5,38] 0.0023065306153122 [GeV] +Cell[0,42] 0.00037947963562749 [GeV] +Cell[0,40] 0.0014533973259546 [GeV] +Cell[9,47] 0.00010266884015146 [GeV] +Cell[4,25] 0.0010895213312883 [GeV] +Cell[12,25] 0.00020421251092262 [GeV] +Cell[0,17] 0.087405575811278 [GeV] +Cell[1,1] 3.2586375658866e-05 [GeV] +Cell[1,27] 3.736079536759e-05 [GeV] +Cell[0,26] 0.0053949547051741 [GeV] +Cell[3,21] 0.00015303676751 [GeV] +Cell[5,23] 0.00026156067758677 [GeV] +Cell[5,34] 4.471578868106e-06 [GeV] +Cell[6,23] 1.5139569586609e-06 [GeV] +Cell[3,24] 7.9474015801679e-06 [GeV] +Cell[3,19] 3.5027010363706e-05 [GeV] +Cell[5,22] 4.9118624883704e-06 [GeV] +Cell[4,43] 0.00019814734328168 [GeV] +Cell[0,27] 0.060810131013911 [GeV] +Cell[0,32] 0.0065884347145183 [GeV] +Cell[14,26] 9.6553761977702e-06 [GeV] +Cell[1,43] 1.3618261145893e-05 [GeV] +Cell[4,24] 1.1680813622661e-07 [GeV] +Cell[2,40] 3.9335366238106e-05 [GeV] +Cell[2,30] 0.0022230389911075 [GeV] +Cell[1,28] 0.0046252370699058 [GeV] +Cell[0,3] 2.0734635654662e-08 [GeV] +Cell[0,6] 7.8077265096681e-06 [GeV] +Cell[0,5] 3.17378589898e-07 [GeV] +Cell[2,37] 0.0009168873362641 [GeV] +Cell[1,6] 0.013134842284374 [GeV] +Cell[4,10] 0.00010486361041399 [GeV] +Cell[2,39] 0.0018411787146691 [GeV] +Cell[11,29] 8.986846296466e-09 [GeV] +### Total energy deposition in calorimeter by a source track in 156 cells : 2.7440176725756 (GeV) Source track ID 4985 (pi+,0.37512426838628[GeV]) at (172.10400168757,469.44670901299,1234.7292876924) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[15,3] 0.00034152436525753 [GeV] -Cell[15,4] 0.0001201419447126 [GeV] -Cell[13,35] 1.8892197692935e-05 [GeV] -Cell[11,19] 0.00045253321421798 [GeV] -Cell[10,19] 0.0033368571727564 [GeV] -Cell[10,18] 0.0019600368259264 [GeV] -Cell[10,20] 7.4243544285764e-05 [GeV] -Cell[11,20] 0.00080568922994917 [GeV] -Cell[17,5] 5.8885579346679e-07 [GeV] -Cell[14,39] 9.9900644272566e-09 [GeV] -Cell[11,33] 5.6049181718095e-05 [GeV] -Cell[16,0] 0.0020020376371865 [GeV] -Cell[15,35] 4.2345095607743e-10 [GeV] -Cell[15,28] 5.6389217547803e-08 [GeV] -Cell[17,33] 2.7296196094539e-09 [GeV] -Cell[11,32] 4.7594968521025e-07 [GeV] -Cell[18,19] 0.0010776079767839 [GeV] -Cell[11,34] 8.542382856831e-07 [GeV] -Cell[12,43] 7.8849900106434e-05 [GeV] -Cell[16,7] 0.00058224728976438 [GeV] -Cell[14,21] 9.8057789728045e-09 [GeV] -Cell[15,21] 1.0015555104474e-05 [GeV] -Cell[15,20] 1.3156809145585e-06 [GeV] -Cell[16,47] 0.00031793098637729 [GeV] -Cell[19,33] 9.0183193970006e-06 [GeV] -Cell[16,5] 6.0975556261837e-06 [GeV] -Cell[14,25] 0.0013810208971456 [GeV] -Cell[12,46] 0.0011246864532285 [GeV] -Cell[18,32] 0.00025701169902766 [GeV] -Cell[17,21] 0.00013443624083675 [GeV] -Cell[19,31] 0.0041085952986668 [GeV] -Cell[16,4] 0.0024571302655174 [GeV] -Cell[17,17] 4.0381715254625e-05 [GeV] -Cell[17,8] 1.7244601622224e-09 [GeV] -Cell[16,43] 1.1173338862136e-08 [GeV] -Cell[18,40] 0.00061960417873343 [GeV] -Cell[12,34] 0.00045636945996637 [GeV] -Cell[13,34] 6.2233518372068e-07 [GeV] -Cell[12,45] 0.0009855665409159 [GeV] -Cell[16,10] 1.9074058042179e-06 [GeV] -Cell[15,22] 8.5620849858969e-09 [GeV] -Cell[16,31] 0.0014751746746888 [GeV] -Cell[18,11] 2.2905541991349e-06 [GeV] -Cell[18,10] 4.1243255802442e-05 [GeV] -Cell[16,44] 0.00082458566139235 [GeV] -Cell[18,12] 3.1109684622947e-05 [GeV] -Cell[15,7] 0.0001655745953417 [GeV] -Cell[15,8] 0.00033878560330595 [GeV] -Cell[16,8] 0.0049102723866018 [GeV] -Cell[16,9] 0.036018321141106 [GeV] -Cell[15,34] 1.4842953532934e-12 [GeV] -Cell[17,6] 0.0067683555641046 [GeV] -Cell[17,34] 0.007696875218684 [GeV] -Cell[16,29] 2.5377703082086e-08 [GeV] -Cell[16,35] 1.7265186622581e-05 [GeV] -Cell[16,34] 0.0028255885847008 [GeV] -Cell[15,19] 8.6531226406805e-07 [GeV] -Cell[16,28] 3.2293456342813e-08 [GeV] -Cell[15,9] 4.7277768777349e-05 [GeV] -Cell[16,30] 2.9878935197644e-05 [GeV] -Cell[19,32] 0.0033303226852597 [GeV] -Cell[13,46] 4.0189088555053e-05 [GeV] -Cell[18,7] 3.347698145717e-08 [GeV] -Cell[18,33] 0.00026125799996225 [GeV] -Cell[11,18] 0.0048605917796668 [GeV] -Cell[16,6] 5.7458246010356e-05 [GeV] -Cell[17,45] 0.00095823487065445 [GeV] -Cell[16,3] 0.0010709597219027 [GeV] -Cell[17,7] 0.0021615619749657 [GeV] -Cell[16,21] 0.0010101242630701 [GeV] -Cell[18,8] 1.5272681821443e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 71 cells : 0.097764698344191 (GeV) +Cell[15,3] 4.6607789988684e-07 [GeV] +Cell[9,31] 2.132699592039e-08 [GeV] +Cell[13,26] 0.00088762064324499 [GeV] +Cell[13,27] 0.00019037253857459 [GeV] +Cell[13,28] 4.2375177145004e-11 [GeV] +Cell[15,35] 0.00029280102389919 [GeV] +Cell[17,9] 0.00020680194009935 [GeV] +Cell[18,19] 0.0015180017184174 [GeV] +Cell[15,38] 0.00040761854245534 [GeV] +Cell[16,7] 0.0012864693749669 [GeV] +Cell[15,12] 9.4963073728081e-05 [GeV] +Cell[17,20] 0.00018421028703335 [GeV] +Cell[16,47] 8.9744279306615e-05 [GeV] +Cell[18,45] 1.1703966127243e-05 [GeV] +Cell[16,5] 0.0005349286436566 [GeV] +Cell[17,10] 0.00098911054382472 [GeV] +Cell[18,32] 9.4200808251799e-06 [GeV] +Cell[17,21] 0.00020981669905041 [GeV] +Cell[16,18] 0.001285331116432 [GeV] +Cell[17,8] 1.3474161050908e-08 [GeV] +Cell[19,44] 0.00052383550810782 [GeV] +Cell[14,8] 0.00024990207727751 [GeV] +Cell[18,40] 4.1974937827604e-05 [GeV] +Cell[16,11] 0.00076071662772915 [GeV] +Cell[9,30] 2.0806257512049e-06 [GeV] +Cell[19,45] 8.9820660359692e-06 [GeV] +Cell[14,12] 0.00062772754345201 [GeV] +Cell[18,41] 2.8042334777638e-05 [GeV] +Cell[12,17] 0.0016557531113828 [GeV] +Cell[12,16] 0.0015422745862624 [GeV] +Cell[14,32] 7.077258254867e-06 [GeV] +Cell[16,6] 0.0044162278118147 [GeV] +Cell[17,7] 0.00065207879304413 [GeV] +Cell[17,6] 0.00096115057283318 [GeV] +Cell[15,2] 0.0044524027356235 [GeV] +Cell[11,36] 0.00013246534118252 [GeV] +Cell[11,37] 1.1391186853871e-07 [GeV] +Cell[15,13] 7.3575590124619e-07 [GeV] +Cell[16,9] 0.06915645623453 [GeV] +Cell[15,34] 6.9270499374966e-05 [GeV] +Cell[16,35] 2.4015834875172e-05 [GeV] +Cell[17,38] 3.0993862662854e-07 [GeV] +Cell[14,13] 1.9443219160848e-05 [GeV] +Cell[14,6] 0.00010246888945744 [GeV] +Cell[15,6] 0.00051193005932987 [GeV] +Cell[14,5] 0.0009573407618102 [GeV] +Cell[14,7] 0.002489165490912 [GeV] +Cell[15,14] 1.0964916582452e-05 [GeV] +Cell[15,36] 1.2574404563907e-05 [GeV] +Cell[15,33] 0.00027317500338461 [GeV] +Cell[18,31] 0.00068335057872582 [GeV] +Cell[15,9] 0.0018827707147123 [GeV] +Cell[17,0] 1.8079016008414e-06 [GeV] +Cell[17,19] 7.0191422710195e-06 [GeV] +Cell[12,25] 5.9597082989058e-05 [GeV] +Cell[12,26] 0.003467045407666 [GeV] +Cell[15,37] 2.4248744011857e-07 [GeV] +Cell[16,34] 7.197457424445e-05 [GeV] +Cell[16,8] 0.10506760611273 [GeV] +Cell[16,19] 2.5849685480352e-06 [GeV] +Cell[16,12] 0.00016520265839438 [GeV] +Cell[16,28] 0.0010469578608777 [GeV] +Cell[16,29] 1.3026707366635e-06 [GeV] +Cell[16,30] 1.625049321774e-09 [GeV] +Cell[15,10] 0.001728158385785 [GeV] +Cell[16,10] 0.0016375398075855 [GeV] +Cell[15,5] 0.0011705777158374 [GeV] +Cell[18,20] 0.0017832747653383 [GeV] +Cell[18,21] 0.0003239923080597 [GeV] +Cell[16,38] 0.00034671092289204 [GeV] +Cell[17,39] 8.2465616651461e-07 [GeV] +Cell[12,15] 0.00022363440217089 [GeV] +Cell[16,3] 2.0768373913938e-05 [GeV] +Cell[16,2] 1.306072924649e-06 [GeV] +Cell[16,20] 6.8971237342339e-06 [GeV] +Cell[15,8] 0.0098101101240845 [GeV] +Cell[15,7] 0.0086618790300316 [GeV] +Cell[17,29] 0.00047321458326951 [GeV] +### Total energy deposition in calorimeter by a source track in 78 cells : 0.23653642430259 (GeV) Source track ID 3295 (pi+,4.0201573787789[GeV]) at (-418.46063912808,-273.66164053539,-1789.3546399608) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,9] 4.6346385992365e-05 [GeV] -Cell[7,8] 5.8868055552011e-05 [GeV] -Cell[2,28] 5.2540782121469e-08 [GeV] -Cell[8,21] 1.1641532182693e-12 [GeV] -Cell[5,45] 0.00015311212703136 [GeV] -Cell[5,46] 0.00083425740554048 [GeV] -Cell[7,13] 7.5408624252304e-06 [GeV] -Cell[9,31] 1.5742556825103e-05 [GeV] -Cell[7,14] 0.00051099891 [GeV] -Cell[7,12] 2.3664033506066e-08 [GeV] -Cell[5,44] 0.0018960410530271 [GeV] -Cell[8,13] 0.00042939391253633 [GeV] -Cell[9,19] 7.5208264752291e-07 [GeV] -Cell[7,2] 5.5447993440794e-07 [GeV] -Cell[5,39] 0.0044369884063676 [GeV] -Cell[6,12] 0.00063118371008022 [GeV] -Cell[6,30] 9.2660416266881e-06 [GeV] -Cell[11,35] 0.00042959540607603 [GeV] -Cell[6,11] 2.5826739147305e-10 [GeV] -Cell[5,3] 0.0015874596055784 [GeV] -Cell[2,42] 0.0032156427102565 [GeV] -Cell[5,21] 0.0011635397263214 [GeV] -Cell[4,21] 6.6356027081497e-05 [GeV] -Cell[4,11] 0.0019950199193241 [GeV] -Cell[5,20] 0.0060326037447754 [GeV] -Cell[5,33] 7.0409263457805e-08 [GeV] -Cell[4,22] 2.8853391995654e-08 [GeV] -Cell[4,39] 0.00015866147258589 [GeV] -Cell[4,32] 9.5444575417787e-06 [GeV] -Cell[2,46] 0.00083394875571946 [GeV] -Cell[3,32] 0.0006916795151107 [GeV] -Cell[1,11] 0.0015844331865965 [GeV] -Cell[5,41] 4.9508447380504e-05 [GeV] -Cell[2,22] 7.2426807121221e-05 [GeV] -Cell[3,8] 8.248716211483e-07 [GeV] -Cell[0,43] 7.1730732452124e-07 [GeV] -Cell[2,45] 1.5710700652562e-05 [GeV] -Cell[0,29] 0.057439549024556 [GeV] -Cell[3,4] 0.00051099891 [GeV] -Cell[4,13] 0.0021461199723296 [GeV] -Cell[4,46] 0.00044216295049773 [GeV] -Cell[0,35] 1.0523921519052e-06 [GeV] -Cell[0,34] 0.00028404986224627 [GeV] -Cell[2,12] 0.00027816026749187 [GeV] -Cell[1,19] 4.5468328949028e-08 [GeV] -Cell[5,40] 0.00036711813557156 [GeV] -Cell[3,34] 0.0005077830090017 [GeV] -Cell[2,32] 1.3176841315612e-05 [GeV] -Cell[4,44] 0.00045290383899078 [GeV] -Cell[6,44] 0.0011648593346795 [GeV] -Cell[15,41] 8.5040313133504e-06 [GeV] -Cell[15,40] 1.2518270232249e-05 [GeV] -Cell[13,45] 3.5233882372268e-06 [GeV] -Cell[6,43] 3.6905728268266e-07 [GeV] -Cell[3,1] 0.0011314532641901 [GeV] -Cell[0,31] 0.00017207272095425 [GeV] -Cell[4,8] 1.1967669706792e-08 [GeV] -Cell[11,34] 6.1585128555294e-05 [GeV] -Cell[2,1] 0.0045384706529962 [GeV] -Cell[3,33] 0.0012568320114723 [GeV] -Cell[3,39] 0.00080983104873317 [GeV] -Cell[0,7] 4.6374700559682e-09 [GeV] -Cell[3,20] 2.6927669823635e-06 [GeV] -Cell[0,8] 0.0099114964992245 [GeV] -Cell[10,30] 4.132523026783e-07 [GeV] -Cell[0,24] 5.8872274166788e-10 [GeV] -Cell[1,25] 0.00053341383155008 [GeV] -Cell[0,28] 1.3177330419496 [GeV] -Cell[3,10] 0.00032284436949976 [GeV] -Cell[3,3] 7.3525444579445e-05 [GeV] -Cell[2,8] 5.2677933126688e-12 [GeV] -Cell[0,30] 0.0098647450519731 [GeV] -Cell[0,44] 0.0019080055066273 [GeV] -Cell[1,29] 0.15693064787961 [GeV] -Cell[0,41] 0.0058447013849701 [GeV] -Cell[1,41] 1.410841679899e-06 [GeV] -Cell[2,36] 4.1518434272803e-09 [GeV] -Cell[1,46] 0.00077571728044359 [GeV] -Cell[1,47] 2.3076439533611e-05 [GeV] -Cell[2,33] 0.0019914036105232 [GeV] -Cell[0,39] 0.001281379905032 [GeV] -Cell[3,42] 0.0041824411126007 [GeV] -Cell[0,38] 1.7017870559357e-06 [GeV] -Cell[0,37] 3.3801022729335e-05 [GeV] -Cell[4,14] 0.0035592610922268 [GeV] -Cell[3,15] 0.0010872868242492 [GeV] -Cell[4,45] 0.0041958820866385 [GeV] -Cell[12,42] 2.7983051841147e-06 [GeV] -Cell[5,19] 0.0012419802182895 [GeV] -Cell[11,14] 0.00048588965055671 [GeV] -Cell[7,31] 0.00050396915157535 [GeV] -Cell[10,36] 2.9886736971093e-05 [GeV] -Cell[12,35] 1.7501014326626e-09 [GeV] -Cell[11,1] 2.4904524325393e-06 [GeV] -Cell[14,9] 4.164120657947e-06 [GeV] -Cell[3,41] 1.6932076743615e-05 [GeV] -Cell[6,42] 0.0014220754955337 [GeV] -Cell[0,13] 2.8908333899835e-07 [GeV] -Cell[7,20] 5.6190759451283e-05 [GeV] -Cell[6,45] 3.7163011029406e-08 [GeV] -Cell[9,16] 9.1663859493565e-06 [GeV] -Cell[8,19] 8.8691813289188e-07 [GeV] -Cell[7,33] 1.3009236018775e-05 [GeV] -Cell[7,32] 0.00044878259309075 [GeV] -Cell[8,20] 1.9204811916325e-06 [GeV] -Cell[7,1] 2.7037458494306e-11 [GeV] -Cell[1,26] 0.0037561882954771 [GeV] -Cell[2,10] 0.0021136247588777 [GeV] -Cell[3,0] 9.6586504659854e-05 [GeV] -Cell[1,42] 0.0013545177335641 [GeV] -Cell[1,9] 0.0035080872056631 [GeV] -Cell[1,5] 2.2266036694418e-08 [GeV] -Cell[0,25] 5.0313000885581e-05 [GeV] -Cell[0,16] 0.0012397437189306 [GeV] -Cell[1,37] 0.0036637731446578 [GeV] -Cell[0,4] 0.00016869215132579 [GeV] -Cell[2,47] 3.3717771662054e-05 [GeV] -Cell[1,13] 4.2104942927836e-05 [GeV] -Cell[1,18] 5.2077850646356e-05 [GeV] -Cell[1,34] 0.0044289022900476 [GeV] -Cell[1,17] 0.0080482410830428 [GeV] -Cell[1,33] 0.017175264956476 [GeV] -Cell[0,33] 0.013905283754471 [GeV] -Cell[4,6] 5.6392991609755e-09 [GeV] -Cell[4,7] 0.00036694299998442 [GeV] -Cell[1,12] 0.0038693367023102 [GeV] -Cell[5,35] 0.00052140196875678 [GeV] -Cell[4,35] 1.2842922122218e-05 [GeV] -Cell[4,4] 6.6753692808561e-06 [GeV] -Cell[4,33] 1.4329096837855e-06 [GeV] -Cell[2,15] 0.0017902868597461 [GeV] -Cell[9,30] 7.259326781525e-05 [GeV] -Cell[1,30] 0.0044946672976937 [GeV] -Cell[6,46] 0.0024867078242379 [GeV] -Cell[1,3] 0.00017009073526071 [GeV] -Cell[2,38] 0.0021584860155373 [GeV] -Cell[2,41] 0.0064278582081968 [GeV] -Cell[5,4] 0.00040398874571747 [GeV] -Cell[3,47] 8.3778084759615e-05 [GeV] -Cell[13,42] 5.8806289744098e-06 [GeV] -Cell[11,37] 0.00011707255272995 [GeV] -Cell[14,3] 6.1598798492923e-07 [GeV] -Cell[1,6] 1.9527493577698e-08 [GeV] -Cell[0,5] 0.0008784573923266 [GeV] -Cell[0,6] 0.0011156535643719 [GeV] -Cell[8,18] 1.2584277137648e-06 [GeV] -Cell[4,15] 1.2098808656447e-07 [GeV] -Cell[3,45] 0.0073526381456726 [GeV] -Cell[1,32] 0.10513055053218 [GeV] -Cell[0,26] 0.0010792209727511 [GeV] -Cell[0,9] 3.0967383005191e-05 [GeV] -Cell[0,15] 1.6525652055861e-05 [GeV] -Cell[0,17] 0.00060608828360872 [GeV] -Cell[14,32] 6.804533446666e-05 [GeV] -Cell[14,31] 0.00062387049026665 [GeV] -Cell[11,13] 0.00027152877791036 [GeV] -Cell[12,2] 0.00094798794197241 [GeV] -Cell[2,11] 0.00033974510573185 [GeV] -Cell[1,36] 0.00011081109173574 [GeV] -Cell[10,14] 0.0017915835519623 [GeV] -Cell[5,34] 6.6367716817695e-07 [GeV] -Cell[13,9] 5.7512329557881e-05 [GeV] -Cell[19,27] 2.4472985824104e-06 [GeV] -Cell[1,21] 4.1769270028453e-06 [GeV] -Cell[0,21] 2.2061019291868e-05 [GeV] -Cell[14,10] 3.588621924564e-06 [GeV] -Cell[2,0] 0.00027801361515014 [GeV] -Cell[0,22] 0.00034388887672479 [GeV] -Cell[0,42] 0.00055814107178196 [GeV] -Cell[0,11] 0.0056315046625976 [GeV] -Cell[0,27] 0.0068857594142766 [GeV] -Cell[0,10] 0.0068477320562246 [GeV] -Cell[0,12] 0.0029746982227058 [GeV] -Cell[2,29] 5.9561698141238e-05 [GeV] -Cell[1,31] 0.0016228321367562 [GeV] -Cell[0,46] 5.5302262031546e-05 [GeV] -Cell[1,16] 0.002127095528438 [GeV] -Cell[2,39] 0.0033803857857706 [GeV] -Cell[2,37] 0.012461624810536 [GeV] -Cell[1,4] 0.00071032695515677 [GeV] -Cell[2,43] 0.0011437005865079 [GeV] -Cell[0,40] 0.00093224851963169 [GeV] -Cell[1,39] 2.929497990408e-05 [GeV] -Cell[1,40] 0.00023153820777804 [GeV] -Cell[0,36] 0.0015239397460957 [GeV] -Cell[3,36] 0.00063202910903506 [GeV] -Cell[1,43] 0.0038578767687426 [GeV] -Cell[1,27] 0.0099487014978673 [GeV] -Cell[1,1] 0.00051099891 [GeV] -Cell[1,44] 0.0043754107601177 [GeV] -Cell[3,7] 3.1071430620386e-06 [GeV] -Cell[3,6] 0.0051401997744188 [GeV] -Cell[1,10] 0.0013118383373794 [GeV] -Cell[0,32] 0.13933019446294 [GeV] -Cell[1,35] 0.0028319553604568 [GeV] -Cell[1,28] 0.18529393922984 [GeV] -Cell[4,10] 1.7445188117222e-05 [GeV] -Cell[3,11] 1.3455233420245e-07 [GeV] -Cell[13,14] 5.47125747255e-06 [GeV] -Cell[5,38] 3.7977684289217e-05 [GeV] -Cell[5,5] 0.001008430906784 [GeV] -Cell[5,6] 3.8057073223172e-05 [GeV] -Cell[1,38] 0.0037825754791904 [GeV] -Cell[3,5] 0.0024349687028672 [GeV] -Cell[19,28] 3.6241889756639e-06 [GeV] -Cell[19,18] 4.1475394524241e-05 [GeV] -Cell[19,19] 2.8171440353617e-06 [GeV] -Cell[3,43] 8.0350041721431e-06 [GeV] -Cell[13,8] 9.2825561296195e-08 [GeV] -Cell[3,9] 4.1715225617736e-05 [GeV] -Cell[5,36] 2.188607330595e-06 [GeV] -Cell[4,43] 1.8604239471642e-08 [GeV] -Cell[13,13] 1.6985017375077e-05 [GeV] -Cell[3,44] 0.0021330816539024 [GeV] -### Total energy deposition in calorimeter by a source track in 214 cells : 2.2367336800409 (GeV) +Cell[0,28] 0.19125769267664 [GeV] +Cell[1,28] 0.013005867660602 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.20426356033724 (GeV) Source track ID 4975 (pi-,0.48437306486412[GeV]) at (175.0705288847,-468.34849195447,105.09044179631) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[6,21] 1.1912435754766e-06 [GeV] -Cell[9,38] 4.3014032577048e-05 [GeV] -Cell[9,41] 0.0038846152440683 [GeV] -Cell[11,40] 0.0046567226432636 [GeV] -Cell[11,38] 0.00068833201605855 [GeV] -Cell[10,36] 0.00096363037228872 [GeV] -Cell[10,35] 0.00072749323774337 [GeV] -Cell[13,22] 0.00018117994561646 [GeV] -Cell[10,37] 0.00022166610301929 [GeV] -Cell[7,20] 3.0470016499748e-05 [GeV] -Cell[9,42] 3.840889519779e-05 [GeV] -Cell[9,13] 0.0001109778032029 [GeV] -Cell[10,41] 0.0017287110194301 [GeV] -Cell[10,40] 0.0020881191408653 [GeV] -Cell[10,39] 0.087894981996474 [GeV] -Cell[11,39] 0.0049185572416646 [GeV] -Cell[7,21] 0.0021479608622516 [GeV] -Cell[11,37] 6.6030234415848e-07 [GeV] -Cell[13,11] 6.7511922679842e-08 [GeV] -Cell[13,10] 0.00092659075244194 [GeV] -Cell[10,4] 2.3817743712016e-06 [GeV] -Cell[10,5] 8.7690803036367e-07 [GeV] -Cell[13,23] 5.4443058729703e-08 [GeV] -Cell[9,37] 5.4424162954092e-12 [GeV] -Cell[10,38] 0.16398399649356 [GeV] -Cell[9,39] 0.0031255420694824 [GeV] -Cell[9,40] 0.0013572359507031 [GeV] -### Total energy deposition in calorimeter by a source track in 27 cells : 0.27972343802515 (GeV) +Cell[8,9] 0.0002422946001243 [GeV] +Cell[8,10] 0.0047709166074334 [GeV] +Cell[7,9] 0.00084088323911728 [GeV] +Cell[7,10] 0.00026825063118849 [GeV] +Cell[9,38] 3.5404682535045e-08 [GeV] +Cell[11,4] 6.5483618527651e-12 [GeV] +Cell[1,19] 4.4352776716551e-05 [GeV] +Cell[8,14] 1.7843124514911e-05 [GeV] +Cell[11,3] 2.5170640728902e-06 [GeV] +Cell[14,27] 0.0049127273719459 [GeV] +Cell[11,33] 0.0014668442877103 [GeV] +Cell[14,28] 0.008740700667551 [GeV] +Cell[11,38] 0.0061493828054 [GeV] +Cell[14,29] 0.00061018577077516 [GeV] +Cell[16,26] 1.1770073295338e-05 [GeV] +Cell[12,42] 0.0026941085180065 [GeV] +Cell[12,43] 0.00031770072536585 [GeV] +Cell[11,14] 1.2041449278968e-06 [GeV] +Cell[10,36] 3.5080725183434e-08 [GeV] +Cell[13,22] 7.9367912258022e-07 [GeV] +Cell[10,37] 0.00026779062087678 [GeV] +Cell[13,20] 1.2298699002713e-06 [GeV] +Cell[17,21] 1.4878352521919e-07 [GeV] +Cell[12,36] 1.8992588215042e-05 [GeV] +Cell[16,11] 5.9029753401774e-08 [GeV] +Cell[14,30] 0.00057476570408528 [GeV] +Cell[10,40] 2.0374828409331e-08 [GeV] +Cell[10,39] 0.0042341082946165 [GeV] +Cell[11,39] 0.002172678117819 [GeV] +Cell[14,31] 0.00032662832568815 [GeV] +Cell[12,37] 4.0896641992731e-05 [GeV] +Cell[6,22] 3.8695684052072e-06 [GeV] +Cell[10,38] 0.17878487544677 [GeV] +Cell[10,3] 0.0009475498419697 [GeV] +Cell[10,4] 5.7910006034945e-09 [GeV] +Cell[11,36] 3.9725128317514e-08 [GeV] +Cell[11,37] 0.0032724688508108 [GeV] +Cell[0,21] 4.2428556771483e-06 [GeV] +Cell[0,22] 1.7233637452591e-05 [GeV] +Cell[1,20] 0.0011080829579429 [GeV] +Cell[3,9] 0.0027253336632616 [GeV] +Cell[16,12] 2.2832067379454e-05 [GeV] +Cell[16,29] 0.00013102206479311 [GeV] +Cell[16,30] 1.6827369108796e-06 [GeV] +Cell[16,27] 1.5514996484853e-05 [GeV] +Cell[11,13] 6.4352032812167e-05 [GeV] +Cell[16,14] 0.00087148438606206 [GeV] +Cell[7,18] 0.00028226959110017 [GeV] +### Total energy deposition in calorimeter by a source track in 48 cells : 0.22698272514448 (GeV) Source track ID 3319 (pi-,0.39152716833946[GeV]) at (-231.05630474674,443.41062688752,-1617.986806789) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[2,17] 0.00071123090206424 [GeV] -Cell[3,17] 5.8600811598808e-09 [GeV] -Cell[2,14] 8.0087618357538e-08 [GeV] -Cell[3,18] 3.1396330086864e-09 [GeV] -Cell[0,16] 2.0438926378574e-07 [GeV] -Cell[2,16] 0.0019730476953346 [GeV] -Cell[1,17] 0.0018092475862046 [GeV] -Cell[1,15] 0.088423802699622 [GeV] -Cell[2,15] 0.00012248342060582 [GeV] -Cell[0,15] 0.002058554365433 [GeV] -Cell[0,17] 2.2100920659796e-08 [GeV] -Cell[1,16] 0.21825991363988 [GeV] -### Total energy deposition in calorimeter by a source track in 12 cells : 0.31335859588666 (GeV) +Cell[4,39] 8.7547901785001e-07 [GeV] +Cell[6,1] 6.4377200257468e-05 [GeV] +Cell[4,13] 0.00037446055437317 [GeV] +Cell[0,35] 0.00019721089265715 [GeV] +Cell[2,32] 0.00023445110509465 [GeV] +Cell[4,8] 0.00091346849798424 [GeV] +Cell[4,40] 1.816003350541e-08 [GeV] +Cell[1,25] 0.0024033581752223 [GeV] +Cell[2,14] 8.6868622165639e-06 [GeV] +Cell[4,14] 2.8738398017595e-05 [GeV] +Cell[3,14] 0.0005049568413591 [GeV] +Cell[3,13] 1.1190948396234e-07 [GeV] +Cell[9,35] 0.0024589438501973 [GeV] +Cell[0,13] 0.00013044308397775 [GeV] +Cell[4,12] 0.00019212841789158 [GeV] +Cell[6,14] 2.5727786123753e-11 [GeV] +Cell[6,15] 6.4713199230937e-07 [GeV] +Cell[1,26] 1.2191541793527e-07 [GeV] +Cell[1,14] 0.070743058959564 [GeV] +Cell[1,13] 0.00019671471192044 [GeV] +Cell[2,16] 0.0029359290262864 [GeV] +Cell[0,20] 0.00038469971715847 [GeV] +Cell[1,15] 0.17977574072336 [GeV] +Cell[1,12] 0.0020547225511058 [GeV] +Cell[2,15] 0.00015482366980905 [GeV] +Cell[3,37] 0.0028273676770256 [GeV] +Cell[2,13] 0.00067141500961884 [GeV] +Cell[1,21] 1.6277188319805e-05 [GeV] +Cell[0,21] 9.213880397283e-07 [GeV] +Cell[0,22] 6.0346792452037e-10 [GeV] +Cell[0,19] 0.0012018899031855 [GeV] +Cell[1,16] 0.0057973863563436 [GeV] +Cell[0,14] 0.0010294094447131 [GeV] +Cell[0,40] 3.0886159220245e-05 [GeV] +Cell[4,15] 0.0010436723556281 [GeV] +Cell[0,26] 7.3915872826547e-07 [GeV] +Cell[0,36] 2.2953849460464e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 37 cells : 0.27640160695388 (GeV) Source track ID 4939 (pi+,0.96813474593717[GeV]) at (-70.810284507521,-494.96050711947,1189.8679705164) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[9,31] 7.0035298449511e-11 [GeV] -Cell[11,40] 3.5689477226697e-07 [GeV] -Cell[17,5] 1.6140207299031e-07 [GeV] -Cell[17,28] 0.0017437842929116 [GeV] -Cell[14,45] 1.5091778808141e-05 [GeV] -Cell[15,35] 3.4512531733526e-06 [GeV] -Cell[12,30] 1.5805965987965e-05 [GeV] -Cell[16,33] 0.001983818145964 [GeV] -Cell[8,32] 4.5274988224264e-08 [GeV] -Cell[17,33] 0.018252559771337 [GeV] -Cell[15,47] 1.0626658622641e-06 [GeV] -Cell[14,23] 0.00057052960064357 [GeV] -Cell[16,37] 2.4396507244091e-05 [GeV] -Cell[10,29] 0.0058406042346231 [GeV] -Cell[10,30] 0.0028837794474671 [GeV] -Cell[10,31] 0.00059039436104888 [GeV] -Cell[16,26] 1.0828550640895e-05 [GeV] -Cell[11,41] 1.0432780156634e-05 [GeV] -Cell[17,31] 0.00022474154945132 [GeV] -Cell[15,18] 4.4281567852522e-09 [GeV] -Cell[15,12] 0.0036102368049375 [GeV] -Cell[16,47] 5.8871796238236e-05 [GeV] -Cell[18,5] 3.509049420245e-07 [GeV] -Cell[13,41] 5.8143312344328e-08 [GeV] -Cell[14,24] 0.00092161203834257 [GeV] -Cell[17,15] 1.7657424410572e-05 [GeV] -Cell[17,11] 0.00031768169126576 [GeV] -Cell[17,17] 0.00062666208735573 [GeV] -Cell[17,8] 0.00033237191546709 [GeV] -Cell[13,30] 1.3635491020977e-05 [GeV] -Cell[18,13] 3.3383923000656e-06 [GeV] -Cell[18,30] 0.00010597380533875 [GeV] -Cell[9,32] 0.0010410807089049 [GeV] -Cell[16,11] 0.00067779089153873 [GeV] -Cell[17,32] 0.0013012653217064 [GeV] -Cell[14,30] 5.2417360828258e-05 [GeV] -Cell[15,15] 8.3408007213848e-06 [GeV] -Cell[14,12] 1.1209516698727e-05 [GeV] -Cell[15,6] 1.500389771536e-09 [GeV] -Cell[13,34] 6.7345657644523e-05 [GeV] -Cell[15,46] 5.6688276234468e-05 [GeV] -Cell[15,14] 0.00057566802244799 [GeV] -Cell[16,14] 0.002750433025864 [GeV] -Cell[15,32] 0.00018093434717105 [GeV] -Cell[16,32] 0.0053334306886759 [GeV] -Cell[16,31] 0.0028793741085727 [GeV] -Cell[15,44] 2.8899786975671e-05 [GeV] -Cell[16,45] 5.6786696688505e-05 [GeV] -Cell[15,45] 0.0014882086364413 [GeV] -Cell[16,46] 0.0010144466256289 [GeV] -Cell[19,9] 0.00042652471532278 [GeV] -Cell[16,8] 6.3607162474227e-05 [GeV] -Cell[16,9] 1.554552000016e-09 [GeV] -Cell[16,13] 0.00072040308629308 [GeV] -Cell[14,34] 0.00022383641722956 [GeV] -Cell[17,16] 0.002230859749413 [GeV] -Cell[16,2] 2.5484274374321e-08 [GeV] -Cell[15,34] 0.015597242437903 [GeV] -Cell[17,3] 0.00028947444415701 [GeV] -Cell[17,6] 0.0052895399226462 [GeV] -Cell[17,34] 0.035593022659206 [GeV] -Cell[17,35] 0.010890376992351 [GeV] -Cell[15,33] 0.00024764551778821 [GeV] -Cell[15,36] 2.518298515497e-09 [GeV] -Cell[16,35] 0.007465524259275 [GeV] -Cell[18,35] 6.2603849510197e-06 [GeV] -Cell[16,34] 0.33305757692537 [GeV] -Cell[16,36] 0.0076990154340591 [GeV] -Cell[15,19] 1.26182678855e-07 [GeV] -Cell[16,12] 0.00020553064944613 [GeV] -Cell[12,17] 3.1520185555564e-05 [GeV] -Cell[16,28] 0.0059694202717479 [GeV] -Cell[14,13] 0.00069032984998557 [GeV] -Cell[18,29] 0.011930832753873 [GeV] -Cell[18,31] 0.020666840136493 [GeV] -Cell[16,30] 1.3953736860003e-05 [GeV] -Cell[15,27] 5.3947456001424e-07 [GeV] -Cell[17,29] 5.57816804303e-09 [GeV] -Cell[13,4] 2.6368352700956e-07 [GeV] -Cell[13,14] 0.00087546934519298 [GeV] -Cell[15,26] 4.9418304115534e-11 [GeV] -Cell[14,44] 0.00092281444168657 [GeV] -Cell[11,30] 0.016874052285927 [GeV] -Cell[17,37] 0.00026459002085582 [GeV] -Cell[17,36] 0.0016953848950646 [GeV] -Cell[17,7] 6.7546796431998e-05 [GeV] -Cell[19,14] 1.8868424169568e-05 [GeV] -Cell[16,27] 0.00080725934342831 [GeV] -Cell[18,34] 1.2252712622285e-11 [GeV] -Cell[17,2] 5.9886486269534e-08 [GeV] -Cell[18,47] 2.3661606828682e-05 [GeV] -Cell[11,29] 1.5223035385134e-05 [GeV] -Cell[18,28] 1.1368395661975e-05 [GeV] -### Total energy deposition in calorimeter by a source track in 93 cells : 0.53659122215066 (GeV) +Cell[19,33] 0.16417696908747 [GeV] +Cell[16,4] 0.00045141010404912 [GeV] +Cell[15,34] 0.020198449689046 [GeV] +Cell[18,34] 0.096194626446222 [GeV] +Cell[18,33] 0.16633962303749 [GeV] +Cell[17,34] 0.15398995145027 [GeV] +Cell[16,34] 0.18518391401758 [GeV] +Cell[19,32] 0.096801513039942 [GeV] +### Total energy deposition in calorimeter by a source track in 8 cells : 0.88333645687207 (GeV) Source track ID 3345 (pi+,1.8609105522581[GeV]) at (-197.35826661807,459.40147430925,-618.07600091999) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,11] 7.1532398021645e-07 [GeV] -Cell[8,29] 5.1981462456752e-06 [GeV] -Cell[7,16] 0.00097459932828633 [GeV] -Cell[8,12] 0.0013485287183327 [GeV] -Cell[5,45] 2.055702789221e-07 [GeV] -Cell[7,13] 0.0026409965082074 [GeV] -Cell[6,10] 0.0037568805898632 [GeV] -Cell[7,14] 0.0047698365273396 [GeV] -Cell[7,12] 0.0040250853381955 [GeV] -Cell[6,17] 0.00038453555855995 [GeV] -Cell[4,34] 0.0017450091880964 [GeV] -Cell[6,13] 0.09896376206521 [GeV] -Cell[5,13] 0.006617749340042 [GeV] -Cell[6,7] 0.0036492750429455 [GeV] -Cell[8,16] 2.1091954888675e-05 [GeV] -Cell[7,43] 0.0026291855049431 [GeV] -Cell[5,39] 0.00064645801612419 [GeV] -Cell[6,12] 0.0018083514790826 [GeV] -Cell[6,11] 0.0076312775895293 [GeV] -Cell[8,47] 0.0013887445042714 [GeV] -Cell[9,41] 8.9360132106322e-05 [GeV] -Cell[6,37] 4.8343543865485e-05 [GeV] -Cell[4,21] 5.5739451490808e-06 [GeV] -Cell[4,11] 9.8814363127531e-09 [GeV] -Cell[5,33] 0.00029984587925151 [GeV] -Cell[3,46] 1.2555305147544e-07 [GeV] -Cell[4,39] 9.196155850077e-06 [GeV] -Cell[2,46] 5.0566777990866e-05 [GeV] -Cell[5,41] 1.6326200693584e-09 [GeV] -Cell[6,1] 5.6156868231483e-07 [GeV] -Cell[6,0] 1.4335835565475e-05 [GeV] -Cell[2,45] 2.7658643375617e-11 [GeV] -Cell[4,13] 9.8820775750369e-05 [GeV] -Cell[4,46] 1.9095023162663e-09 [GeV] -Cell[8,14] 0.0031534241355005 [GeV] -Cell[4,38] 0.00047916771842574 [GeV] -Cell[3,34] 1.1277368495939e-05 [GeV] -Cell[6,38] 0.001458325334213 [GeV] -Cell[12,18] 7.1325630415231e-09 [GeV] -Cell[3,38] 7.0848388422746e-06 [GeV] -Cell[3,39] 0.0019304342866371 [GeV] -Cell[3,40] 0.0034437714725306 [GeV] -Cell[4,41] 0.0017157343872814 [GeV] -Cell[4,17] 1.742254396413e-05 [GeV] -Cell[3,16] 0.00051460620932285 [GeV] -Cell[4,16] 0.011663877782433 [GeV] -Cell[5,17] 0.00041376096271495 [GeV] -Cell[2,36] 4.1887474013492e-05 [GeV] -Cell[6,16] 0.0015365115443809 [GeV] -Cell[5,12] 0.009001640225651 [GeV] -Cell[3,18] 7.9854769865051e-08 [GeV] -Cell[4,14] 0.0002423127999632 [GeV] -Cell[3,14] 8.4557348145609e-10 [GeV] -Cell[3,15] 3.3895717087603e-05 [GeV] -Cell[12,41] 6.2699497270842e-06 [GeV] -Cell[12,42] 2.2109625274425e-07 [GeV] -Cell[12,43] 7.1611422754359e-08 [GeV] -Cell[5,19] 4.5644595229533e-06 [GeV] -Cell[12,40] 1.3086683427673e-05 [GeV] -Cell[13,43] 2.7494754467625e-06 [GeV] -Cell[12,35] 4.5691888022702e-05 [GeV] -Cell[13,41] 1.9498984329402e-09 [GeV] -Cell[14,9] 0.00094633159903708 [GeV] -Cell[14,8] 0.00044962739202515 [GeV] -Cell[9,29] 1.3562655929491e-05 [GeV] -Cell[3,41] 0.0027380361522459 [GeV] -Cell[8,43] 0.00054061591893228 [GeV] -Cell[4,12] 0.0011096792908556 [GeV] -Cell[12,20] 7.6022872235626e-08 [GeV] -Cell[12,19] 2.6412101578899e-07 [GeV] -Cell[5,9] 0.0004126766429749 [GeV] -Cell[9,42] 0.0036606144185879 [GeV] -Cell[12,34] 0.0013981784148687 [GeV] -Cell[9,15] 0.0004009469054148 [GeV] -Cell[9,16] 6.8591166407714e-05 [GeV] -Cell[8,15] 0.011032822535289 [GeV] -Cell[6,14] 0.49086593715595 [GeV] -Cell[6,15] 0.092072948271274 [GeV] -Cell[7,15] 0.024831361522577 [GeV] -Cell[8,0] 4.5485212467611e-09 [GeV] -Cell[5,10] 6.6607043263502e-06 [GeV] -Cell[3,25] 0.0013017400073606 [GeV] -Cell[7,6] 0.00052613277708689 [GeV] -Cell[4,6] 1.0011717677116e-11 [GeV] -Cell[4,5] 1.5366822481155e-11 [GeV] -Cell[8,30] 0.00056478110497947 [GeV] -Cell[4,37] 0.00027474850100657 [GeV] -Cell[9,30] 0.00044649841302123 [GeV] -Cell[5,37] 9.2708823626708e-07 [GeV] -Cell[6,46] 4.2722385842353e-08 [GeV] -Cell[2,38] 9.1127124261561e-05 [GeV] -Cell[2,41] 0.001297140827189 [GeV] -Cell[13,18] 3.7470366805792e-08 [GeV] -Cell[13,42] 1.2021897236991e-07 [GeV] -Cell[5,11] 1.7927474548515e-05 [GeV] -Cell[4,15] 0.015409446256459 [GeV] -Cell[5,29] 6.2132006860338e-07 [GeV] -Cell[8,42] 0.0058802526476897 [GeV] -Cell[9,47] 0.00098611611721833 [GeV] -Cell[14,33] 1.0248774196953e-07 [GeV] -Cell[5,14] 0.020942664157133 [GeV] -Cell[2,37] 0.0021476630047224 [GeV] -Cell[4,42] 0.00039074073331199 [GeV] -Cell[2,40] 0.00079954684927907 [GeV] -Cell[5,15] 0.20967469858946 [GeV] -Cell[5,16] 0.013752216681131 [GeV] -Cell[5,42] 1.1538240777782e-05 [GeV] -Cell[3,12] 0.0010542864188002 [GeV] -Cell[9,0] 1.05337354114e-06 [GeV] -Cell[5,38] 7.8838772315066e-05 [GeV] -Cell[5,5] 0.00071407039011976 [GeV] -Cell[6,6] 0.0044453428374786 [GeV] -Cell[5,6] 0.0014144507914279 [GeV] -Cell[9,39] 6.2464739016832e-08 [GeV] -Cell[9,40] 3.1907628842873e-06 [GeV] -Cell[6,39] 0.0022304728621889 [GeV] -### Total energy deposition in calorimeter by a source track in 116 cells : 1.0943696446134 (GeV) +Cell[8,11] 7.4114895365142e-05 [GeV] +Cell[7,10] 6.7492247808332e-09 [GeV] +Cell[7,8] 9.4944653028506e-10 [GeV] +Cell[7,11] 1.9726564746634e-06 [GeV] +Cell[7,16] 5.4745593187135e-06 [GeV] +Cell[9,7] 0.00016685135040427 [GeV] +Cell[6,21] 2.5904020390044e-08 [GeV] +Cell[7,22] 0.00083044449034605 [GeV] +Cell[7,13] 0.00011301791971516 [GeV] +Cell[6,10] 4.8965076007335e-07 [GeV] +Cell[5,32] 0.00094550235033591 [GeV] +Cell[7,14] 0.0068715640971456 [GeV] +Cell[7,12] 0.00027120211411795 [GeV] +Cell[7,7] 0.00066746356697854 [GeV] +Cell[6,17] 0.0088416301767342 [GeV] +Cell[6,13] 0.027932943721898 [GeV] +Cell[5,13] 0.019176812039815 [GeV] +Cell[12,32] 0.00015787429151374 [GeV] +Cell[11,4] 8.6947531451642e-07 [GeV] +Cell[7,45] 1.8712469609454e-05 [GeV] +Cell[6,7] 8.5689789759272e-05 [GeV] +Cell[7,44] 2.0648470921515e-05 [GeV] +Cell[6,12] 0.0030668080442856 [GeV] +Cell[9,6] 0.00042133402119146 [GeV] +Cell[6,11] 0.0037490423594804 [GeV] +Cell[8,47] 0.00029865327942218 [GeV] +Cell[6,37] 6.5016907910831e-09 [GeV] +Cell[8,46] 0.0017149512279501 [GeV] +Cell[5,21] 0.0017590466681597 [GeV] +Cell[4,20] 0.001143975173291 [GeV] +Cell[5,20] 0.0055941245436284 [GeV] +Cell[4,39] 2.1402436242283e-05 [GeV] +Cell[7,17] 1.3625796668293e-05 [GeV] +Cell[4,13] 4.9801165005192e-08 [GeV] +Cell[8,14] 0.00021830471246426 [GeV] +Cell[4,38] 0.0014357402850108 [GeV] +Cell[4,44] 1.7814264765548e-08 [GeV] +Cell[10,19] 9.0634487189618e-06 [GeV] +Cell[10,18] 2.5930639822036e-08 [GeV] +Cell[10,20] 0.0010572726389249 [GeV] +Cell[5,31] 0.00096784913878092 [GeV] +Cell[6,38] 0.00015145073430517 [GeV] +Cell[11,3] 5.7873935588759e-08 [GeV] +Cell[11,33] 7.0357649936341e-05 [GeV] +Cell[12,3] 7.4540850414451e-07 [GeV] +Cell[14,1] 9.6398263121955e-07 [GeV] +Cell[9,3] 0.00099206872301522 [GeV] +Cell[14,14] 2.4020668163985e-05 [GeV] +Cell[16,33] 0.00041831351264557 [GeV] +Cell[8,32] 0.0009267509709764 [GeV] +Cell[13,31] 0.000104361460777 [GeV] +Cell[11,31] 1.4279528404586e-05 [GeV] +Cell[11,32] 0.0034714809640052 [GeV] +Cell[12,31] 3.4925516403746e-05 [GeV] +Cell[0,31] 4.9172253347933e-06 [GeV] +Cell[10,28] 1.5332220689402e-05 [GeV] +Cell[7,38] 7.3679818306118e-06 [GeV] +Cell[5,18] 0.010540538704747 [GeV] +Cell[4,18] 0.00030933412864493 [GeV] +Cell[4,17] 0.00022742346699283 [GeV] +Cell[4,16] 0.00020868254674576 [GeV] +Cell[5,17] 0.0072843275524865 [GeV] +Cell[7,3] 1.0187471139943e-05 [GeV] +Cell[4,19] 0.0064905095638065 [GeV] +Cell[3,30] 9.5939296966321e-05 [GeV] +Cell[3,29] 0.00078763863765937 [GeV] +Cell[6,18] 0.00014157587151306 [GeV] +Cell[6,16] 0.018264349950519 [GeV] +Cell[5,12] 0.00042727532661411 [GeV] +Cell[1,47] 1.6173231415451e-08 [GeV] +Cell[3,28] 4.8595260511775e-07 [GeV] +Cell[4,14] 0.00075766091533405 [GeV] +Cell[5,19] 0.010374842189069 [GeV] +Cell[14,15] 2.1793929045089e-07 [GeV] +Cell[18,40] 2.5776909069464e-09 [GeV] +Cell[13,12] 7.0186797529459e-07 [GeV] +Cell[8,44] 5.3697453865539e-05 [GeV] +Cell[6,42] 3.4369400053038e-05 [GeV] +Cell[7,46] 8.1754391139839e-06 [GeV] +Cell[6,45] 8.7346412260558e-06 [GeV] +Cell[8,45] 3.9795825351007e-05 [GeV] +Cell[11,45] 0.00014137522257863 [GeV] +Cell[8,15] 0.0002846650050401 [GeV] +Cell[6,34] 1.8772165299197e-07 [GeV] +Cell[6,14] 0.5115370135721 [GeV] +Cell[8,33] 1.1249486924498e-06 [GeV] +Cell[8,35] 0.00074747867723318 [GeV] +Cell[6,15] 0.1099957684789 [GeV] +Cell[7,15] 0.0050295760017896 [GeV] +Cell[9,24] 0.0012544957800537 [GeV] +Cell[8,0] 8.1591162015684e-06 [GeV] +Cell[1,26] 0.00052227584201637 [GeV] +Cell[6,41] 9.335471841041e-07 [GeV] +Cell[5,10] 8.510355168255e-06 [GeV] +Cell[7,6] 0.00028035314496447 [GeV] +Cell[2,47] 2.3632356716234e-06 [GeV] +Cell[1,13] 1.169377414044e-05 [GeV] +Cell[4,7] 6.3540172413923e-06 [GeV] +Cell[5,35] 0.0032438220262958 [GeV] +Cell[4,35] 4.6873951214366e-07 [GeV] +Cell[7,4] 0.0015585708311565 [GeV] +Cell[10,27] 1.1389622784691e-05 [GeV] +Cell[6,19] 0.0036116559606878 [GeV] +Cell[5,37] 2.434629618881e-05 [GeV] +Cell[6,29] 0.00015125105904735 [GeV] +Cell[5,28] 1.5580892941216e-05 [GeV] +Cell[14,12] 2.8917089803144e-06 [GeV] +Cell[9,25] 0.0062641819884242 [GeV] +Cell[5,16] 0.014045330048875 [GeV] +Cell[5,15] 0.0097034829515133 [GeV] +Cell[18,41] 5.7270750083262e-05 [GeV] +Cell[3,44] 1.4436664059758e-09 [GeV] +Cell[16,32] 2.939408486202e-05 [GeV] +Cell[8,37] 5.9735127433669e-06 [GeV] +Cell[10,25] 2.0757802965818e-05 [GeV] +Cell[6,22] 0.00074150410520065 [GeV] +Cell[5,11] 0.0011247006146871 [GeV] +Cell[8,34] 0.0011636310060709 [GeV] +Cell[6,8] 1.1046540748794e-10 [GeV] +Cell[5,30] 3.4199256206421e-05 [GeV] +Cell[8,3] 5.9761423792224e-05 [GeV] +Cell[12,4] 2.2274965886027e-08 [GeV] +Cell[10,45] 9.7868825946534e-08 [GeV] +Cell[13,13] 6.307910729447e-05 [GeV] +Cell[13,14] 0.00037098725132319 [GeV] +Cell[1,31] 7.2980785977393e-05 [GeV] +Cell[0,11] 4.592762561515e-07 [GeV] +Cell[14,13] 2.5962973400169e-05 [GeV] +Cell[5,36] 5.5706998964069e-05 [GeV] +Cell[5,38] 0.00036857201078294 [GeV] +Cell[17,40] 0.003349776779082 [GeV] +Cell[10,47] 1.2254149856744e-05 [GeV] +Cell[7,47] 0.0004390565923137 [GeV] +Cell[4,29] 0.0011905184039999 [GeV] +Cell[0,45] 1.4901903796272e-08 [GeV] +Cell[3,43] 0.0012831329120197 [GeV] +Cell[0,26] 5.2346682423376e-08 [GeV] +Cell[5,23] 0.00049911034692593 [GeV] +Cell[6,39] 8.9608442976896e-10 [GeV] +Cell[5,34] 0.0006473643366287 [GeV] +Cell[6,23] 0.0054487499348941 [GeV] +Cell[3,19] 0.00063076677722127 [GeV] +Cell[5,22] 0.00037734136181405 [GeV] +Cell[4,28] 2.6656991877871e-06 [GeV] +Cell[0,27] 9.0292887762189e-09 [GeV] +Cell[0,32] 0.0032964882379986 [GeV] +Cell[7,18] 1.8299239172848e-09 [GeV] +Cell[5,14] 0.13832651363722 [GeV] +Cell[4,36] 0.00019121364855289 [GeV] +Cell[17,41] 0.0021502812004186 [GeV] +Cell[0,46] 0.00065645395833587 [GeV] +Cell[16,31] 6.6182110458612e-11 [GeV] +Cell[6,20] 0.0064540598345662 [GeV] +### Total energy deposition in calorimeter by a source track in 153 cells : 0.98757467293207 (GeV) Source track ID 4940 (kaon-,2.4403779316123[GeV]) at (342.03921506503,-364.70422996957,532.05026599645) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[15,3] 1.9095665193163e-05 [GeV] -Cell[15,4] 4.5821173145669e-05 [GeV] -Cell[8,12] 7.570624006803e-09 [GeV] -Cell[8,5] 2.9901013476774e-06 [GeV] -Cell[9,38] 5.1219351473264e-05 [GeV] -Cell[8,13] 0.0024475159577191 [GeV] -Cell[12,32] 6.4530740928603e-09 [GeV] -Cell[11,4] 0.0032593597285047 [GeV] -Cell[10,17] 2.0814891167902e-06 [GeV] -Cell[11,40] 1.5304976841435e-11 [GeV] -Cell[11,19] 9.1627599093727e-06 [GeV] -Cell[10,18] 0.0001317547979063 [GeV] -Cell[11,20] 7.5380258692803e-07 [GeV] -Cell[14,40] 5.6947252523514e-05 [GeV] -Cell[14,41] 0.00079041317845576 [GeV] -Cell[15,1] 5.7449684381936e-05 [GeV] -Cell[15,41] 5.9038561885245e-06 [GeV] -Cell[14,42] 0.0018255006026252 [GeV] -Cell[13,6] 0.001783757308056 [GeV] -Cell[15,0] 7.9771006124815e-05 [GeV] -Cell[11,3] 0.00033302692469215 [GeV] -Cell[14,46] 1.2927012012369e-06 [GeV] -Cell[14,45] 1.8536221482464e-06 [GeV] -Cell[11,33] 0.0010126204912634 [GeV] -Cell[12,38] 6.6804807283916e-07 [GeV] -Cell[13,28] 0.00099409071687955 [GeV] -Cell[12,3] 1.9908308022423e-05 [GeV] -Cell[16,0] 1.6685538298589e-08 [GeV] -Cell[12,44] 0.014082779105286 [GeV] -Cell[13,45] 6.0596357798204e-08 [GeV] -Cell[14,28] 2.9926372357409e-05 [GeV] -Cell[12,5] 0.011617071149953 [GeV] -Cell[11,38] 3.2794919959088e-05 [GeV] -Cell[15,30] 3.5653384169564e-05 [GeV] -Cell[14,1] 0.0016307250968476 [GeV] -Cell[12,29] 8.3865743363276e-08 [GeV] -Cell[12,30] 0.00039567668389702 [GeV] -Cell[15,47] 4.3170509194283e-05 [GeV] -Cell[13,31] 1.6702201362932e-05 [GeV] -Cell[11,32] 4.9993553814147e-06 [GeV] -Cell[11,34] 0.00068009137234515 [GeV] -Cell[14,16] 0.00013785541781044 [GeV] -Cell[14,29] 1.6033730731579e-05 [GeV] -Cell[10,28] 0.00012468394908581 [GeV] -Cell[14,0] 0.00031400864734258 [GeV] -Cell[11,42] 0.0032895806126112 [GeV] -Cell[11,43] 0.0018521414311257 [GeV] -Cell[11,44] 0.0077459124208014 [GeV] -Cell[12,41] 0.78337946928644 [GeV] -Cell[12,42] 0.1212073846423 [GeV] -Cell[11,41] 0.00018773606588604 [GeV] -Cell[12,39] 0.0052132785832348 [GeV] -Cell[12,43] 0.090895153194122 [GeV] -Cell[12,40] 0.015325371326495 [GeV] -Cell[13,37] 0.00063375101937356 [GeV] -Cell[11,6] 1.7442733337703e-08 [GeV] -Cell[9,12] 0.00013542894536067 [GeV] -Cell[13,43] 0.0077857992394037 [GeV] -Cell[13,44] 0.00053711308388529 [GeV] -Cell[13,16] 0.00028826976563107 [GeV] -Cell[9,36] 0.00051820319587853 [GeV] -Cell[10,36] 0.00018228853871176 [GeV] -Cell[10,35] 7.7888032137707e-08 [GeV] -Cell[12,35] 9.1189203203612e-08 [GeV] -Cell[13,22] 0.00039803871313813 [GeV] -Cell[12,21] 1.2098859975822e-06 [GeV] -Cell[13,2] 0.0012081937496298 [GeV] -Cell[10,37] 8.2198236195836e-06 [GeV] -Cell[14,20] 0.043790780897482 [GeV] -Cell[13,7] 0.0052140118627825 [GeV] -Cell[14,21] 0.0071041519134514 [GeV] -Cell[15,21] 1.5651964076824e-08 [GeV] -Cell[14,19] 0.00018900831938572 [GeV] -Cell[15,20] 0.00083658791843384 [GeV] -Cell[15,18] 1.2581461377295e-05 [GeV] -Cell[15,17] 1.222894714283e-05 [GeV] -Cell[16,47] 0.00017066675308547 [GeV] -Cell[14,22] 0.00043214692651907 [GeV] -Cell[13,20] 5.2680026442431e-06 [GeV] -Cell[13,41] 0.068962167103993 [GeV] -Cell[14,24] 5.3373518312583e-05 [GeV] -Cell[11,46] 9.1235410940044e-05 [GeV] -Cell[12,47] 0.00047338275240111 [GeV] -Cell[11,0] 0.00016482860297351 [GeV] -Cell[12,0] 0.00027058735487412 [GeV] -Cell[12,46] 0.0044942403651282 [GeV] -Cell[11,1] 3.6620807921281e-05 [GeV] -Cell[12,1] 1.7468375936801e-05 [GeV] -Cell[17,27] 1.4852012434403e-06 [GeV] -Cell[16,43] 0.00065716338804123 [GeV] -Cell[14,9] 8.847564458847e-12 [GeV] -Cell[13,12] 0.0020007723897997 [GeV] -Cell[12,20] 4.9421710282331e-05 [GeV] -Cell[12,33] 0.00030682712926466 [GeV] -Cell[12,34] 0.00039189239963412 [GeV] -Cell[11,45] 0.004130802191438 [GeV] -Cell[9,13] 0.0012466446845683 [GeV] -Cell[11,2] 0.0089084447137321 [GeV] -Cell[13,21] 7.3992204079332e-09 [GeV] -Cell[10,9] 7.5173220539e-06 [GeV] -Cell[11,17] 6.8184453994036e-10 [GeV] -Cell[10,2] 0.00015674443175681 [GeV] -Cell[10,40] 4.714245278592e-10 [GeV] -Cell[11,39] 0.0013169735579328 [GeV] -Cell[10,27] 1.4139550342179e-05 [GeV] -Cell[13,40] 0.0054899603889009 [GeV] -Cell[10,10] 0.0011847951608178 [GeV] -Cell[9,22] 2.2109149722382e-06 [GeV] -Cell[14,12] 6.0208741633687e-06 [GeV] -Cell[12,6] 0.0039429533666316 [GeV] -Cell[10,11] 4.6945883468652e-08 [GeV] -Cell[8,24] 0.0017407238060617 [GeV] -Cell[13,42] 0.0087298608524921 [GeV] -Cell[11,37] 5.7805515825748e-06 [GeV] -Cell[13,5] 0.00018868599337486 [GeV] -Cell[12,4] 0.0021495039776044 [GeV] -Cell[14,2] 1.4018176166587e-05 [GeV] -Cell[15,46] 2.5250390172005e-07 [GeV] -Cell[12,45] 0.0056135391090941 [GeV] -Cell[13,47] 1.2970631158964e-05 [GeV] -Cell[12,7] 0.002146598954702 [GeV] -Cell[14,38] 1.2855452649774e-06 [GeV] -Cell[16,14] 0.00033664225994099 [GeV] -Cell[14,37] 3.4616032803569e-07 [GeV] -Cell[15,22] 3.3382093533874e-11 [GeV] -Cell[13,32] 0.00064008810066571 [GeV] -Cell[14,32] 8.0021571534417e-07 [GeV] -Cell[16,42] 1.2120203295126e-05 [GeV] -Cell[13,11] 6.4024919178337e-05 [GeV] -Cell[13,39] 0.0057220922918724 [GeV] -Cell[15,44] 6.1366622503556e-09 [GeV] -Cell[16,44] 7.7570648863912e-07 [GeV] -Cell[11,8] 2.6267033186741e-05 [GeV] -Cell[13,33] 4.722620069515e-06 [GeV] -Cell[11,27] 4.2327708456469e-08 [GeV] -Cell[12,2] 7.8968769608764e-05 [GeV] -Cell[16,13] 0.0011794893049796 [GeV] -Cell[11,10] 3.6018189402967e-06 [GeV] -Cell[17,16] 0.00041098108735898 [GeV] -Cell[13,10] 3.4179460199084e-06 [GeV] -Cell[9,47] 2.5847225624602e-06 [GeV] -Cell[11,9] 0.00052764633131164 [GeV] -Cell[14,4] 1.4403015256903e-08 [GeV] -Cell[15,19] 5.9202048129009e-05 [GeV] -Cell[14,33] 1.7898855730891e-11 [GeV] -Cell[14,17] 5.3609255701303e-08 [GeV] -Cell[14,18] 3.9989765809878e-10 [GeV] -Cell[14,10] 0.0030740527520063 [GeV] -Cell[14,13] 0.0003662512802324 [GeV] -Cell[15,27] 4.2938627302647e-09 [GeV] -Cell[13,3] 0.0052692778457501 [GeV] -Cell[13,4] 0.0021899066415849 [GeV] -Cell[10,3] 3.0925833016227e-07 [GeV] -Cell[9,37] 0.0019518403853007 [GeV] -Cell[13,14] 1.3688480306882e-05 [GeV] -Cell[11,28] 4.7570546571478e-06 [GeV] -Cell[12,8] 1.9300393807953e-07 [GeV] -Cell[13,46] 4.9228893811801e-05 [GeV] -Cell[13,19] 4.8457657947438e-05 [GeV] -Cell[13,1] 2.5365734472871e-09 [GeV] -Cell[13,38] 0.029261066410902 [GeV] -Cell[11,18] 1.3030115034439e-05 [GeV] -Cell[13,8] 7.1165884660786e-05 [GeV] -Cell[13,13] 1.2494931288529e-06 [GeV] -Cell[13,29] 0.00059236163893843 [GeV] -Cell[14,43] 1.6860557108885e-05 [GeV] -Cell[18,27] 8.9256667124573e-06 [GeV] -Cell[18,26] 1.7984407109907e-05 [GeV] -Cell[16,1] 0.070971959289553 [GeV] -Cell[10,13] 0.00031008183168326 [GeV] -Cell[16,22] 9.332450281363e-06 [GeV] -### Total energy deposition in calorimeter by a source track in 171 cells : 1.3889533098814 (GeV) +Cell[12,27] 0.00074854063210466 [GeV] +Cell[13,35] 2.5968322893277e-06 [GeV] +Cell[10,43] 0.00079337172102199 [GeV] +Cell[12,32] 3.3136130368803e-06 [GeV] +Cell[11,4] 0.00036166830487265 [GeV] +Cell[9,41] 0.00010356904143282 [GeV] +Cell[6,37] 0.00022669957074049 [GeV] +Cell[6,27] 5.7883090339601e-06 [GeV] +Cell[6,28] 2.3065249843057e-06 [GeV] +Cell[10,17] 0.01083587227568 [GeV] +Cell[11,40] 2.1258220858726e-06 [GeV] +Cell[11,19] 1.8140723113902e-06 [GeV] +Cell[10,19] 8.8483066278968e-06 [GeV] +Cell[10,20] 7.5943121396449e-07 [GeV] +Cell[11,21] 0.0014558904967526 [GeV] +Cell[10,21] 0.0030472762966988 [GeV] +Cell[6,36] 0.00077980196198087 [GeV] +Cell[6,38] 0.0022469756760426 [GeV] +Cell[14,40] 0.00095963004864348 [GeV] +Cell[14,41] 1.7832300474083e-05 [GeV] +Cell[15,41] 0.0038200372691281 [GeV] +Cell[14,42] 0.0024827947369171 [GeV] +Cell[15,42] 0.00036886322526232 [GeV] +Cell[14,46] 0.0016712808298074 [GeV] +Cell[14,45] 0.0010881869210085 [GeV] +Cell[11,33] 7.2693135298323e-06 [GeV] +Cell[12,38] 0.00036383073551269 [GeV] +Cell[14,35] 1.9759325368796e-05 [GeV] +Cell[12,18] 4.9919101115847e-08 [GeV] +Cell[12,44] 0.0023082408122054 [GeV] +Cell[14,28] 9.9350859527476e-06 [GeV] +Cell[14,14] 0.00013321091129876 [GeV] +Cell[10,30] 5.5639699276071e-06 [GeV] +Cell[0,41] 2.7533310349099e-06 [GeV] +Cell[6,16] 0.00026152868601105 [GeV] +Cell[4,14] 0.0016967669538592 [GeV] +Cell[11,42] 0.0090827346194854 [GeV] +Cell[11,43] 0.01967738264227 [GeV] +Cell[11,44] 0.0021294627937494 [GeV] +Cell[12,41] 1.0777934087151 [GeV] +Cell[12,42] 0.35432885205031 [GeV] +Cell[11,41] 0.012749251323284 [GeV] +Cell[12,39] 2.0572577773237e-07 [GeV] +Cell[12,43] 0.019728001904794 [GeV] +Cell[12,40] 0.034518489973163 [GeV] +Cell[13,37] 0.0015775284488436 [GeV] +Cell[11,14] 0.00083706818006825 [GeV] +Cell[13,43] 0.0035175146525755 [GeV] +Cell[13,44] 0.0016195608472082 [GeV] +Cell[12,23] 8.9784751762636e-06 [GeV] +Cell[13,22] 0.0011878150549343 [GeV] +Cell[14,20] 0.00020393833104902 [GeV] +Cell[14,21] 0.00020795075432011 [GeV] +Cell[15,21] 4.9030146328732e-08 [GeV] +Cell[14,19] 1.4628747743473e-06 [GeV] +Cell[15,18] 9.4888091553003e-09 [GeV] +Cell[15,17] 5.2032570636129e-07 [GeV] +Cell[16,39] 3.1641053617932e-05 [GeV] +Cell[13,20] 0.00094058077132945 [GeV] +Cell[13,41] 0.18485880140546 [GeV] +Cell[11,16] 2.9597668592487e-06 [GeV] +Cell[18,16] 5.4615863268964e-05 [GeV] +Cell[18,15] 5.6673988001421e-07 [GeV] +Cell[17,21] 0.0011139061477247 [GeV] +Cell[13,12] 0.00040728683503042 [GeV] +Cell[6,42] 0.00013730672044619 [GeV] +Cell[11,12] 3.2038401986938e-06 [GeV] +Cell[9,42] 0.00013240903131486 [GeV] +Cell[11,45] 0.00093446532349481 [GeV] +Cell[9,13] 0.00021772699513898 [GeV] +Cell[13,21] 6.5729307941751e-05 [GeV] +Cell[7,19] 3.5909122889279e-06 [GeV] +Cell[8,35] 6.4472143421881e-06 [GeV] +Cell[6,15] 0.00020979493589709 [GeV] +Cell[11,17] 0.00058861564261724 [GeV] +Cell[10,16] 0.001612886307893 [GeV] +Cell[9,33] 0.00027880064410821 [GeV] +Cell[10,41] 0.0016539561366252 [GeV] +Cell[10,40] 3.9930866594659e-05 [GeV] +Cell[10,42] 0.002428188600324 [GeV] +Cell[10,26] 0.00037628721406372 [GeV] +Cell[9,26] 3.1002086871013e-09 [GeV] +Cell[13,40] 0.00043818006735276 [GeV] +Cell[11,5] 2.5208281876985e-06 [GeV] +Cell[15,15] 2.2930919658393e-07 [GeV] +Cell[13,18] 5.5889159721119e-06 [GeV] +Cell[13,42] 0.015583251173897 [GeV] +Cell[12,17] 0.00070415243129651 [GeV] +Cell[12,16] 0.00014372768924113 [GeV] +Cell[14,43] 0.0004709191076679 [GeV] +Cell[13,19] 0.0014335860904559 [GeV] +Cell[13,39] 0.0040196649454978 [GeV] +Cell[13,38] 0.01074996703023 [GeV] +Cell[12,14] 7.4147061095573e-06 [GeV] +Cell[15,43] 0.00069614260590924 [GeV] +Cell[13,32] 6.95245549432e-05 [GeV] +Cell[11,23] 0.00047333285045828 [GeV] +Cell[12,12] 0.0017519510471578 [GeV] +Cell[8,34] 0.001529511694057 [GeV] +Cell[11,27] 0.00012194497238204 [GeV] +Cell[10,45] 7.3693467420526e-06 [GeV] +Cell[13,13] 0.00071238655671311 [GeV] +Cell[13,34] 1.5587401094308e-09 [GeV] +Cell[13,33] 7.0893524680287e-06 [GeV] +Cell[13,15] 0.0035557249967072 [GeV] +Cell[13,14] 0.0013915919175677 [GeV] +Cell[16,9] 0.00085853160217448 [GeV] +Cell[15,6] 9.4150268465455e-05 [GeV] +Cell[16,16] 7.8788517566863e-07 [GeV] +Cell[16,25] 0.00045492003040545 [GeV] +Cell[15,44] 4.0441644721e-05 [GeV] +Cell[10,13] 0.00070873961127984 [GeV] +Cell[5,36] 2.7258893239832e-06 [GeV] +Cell[15,14] 4.1092108531302e-05 [GeV] +Cell[14,17] 7.5793409444032e-06 [GeV] +Cell[13,0] 5.8771373005584e-08 [GeV] +Cell[10,44] 0.00051099891 [GeV] +Cell[12,25] 3.9055474303495e-08 [GeV] +Cell[12,26] 0.00051895271428623 [GeV] +Cell[4,15] 0.00013702888903208 [GeV] +Cell[14,18] 2.1547893993556e-09 [GeV] +Cell[18,17] 2.6818636456483e-08 [GeV] +Cell[11,8] 0.0012770532640274 [GeV] +Cell[10,12] 0.00076646065501416 [GeV] +Cell[16,30] 1.1619427618143e-05 [GeV] +Cell[15,5] 4.5709813759458e-05 [GeV] +Cell[16,38] 0.00057481939576155 [GeV] +Cell[16,27] 0.0025482289733924 [GeV] +Cell[11,13] 0.001209902574366 [GeV] +Cell[7,18] 0.0022245161484696 [GeV] +Cell[19,16] 2.6106571408491e-07 [GeV] +Cell[19,17] 2.0186936353639e-09 [GeV] +Cell[19,24] 9.089619077713e-06 [GeV] +Cell[19,23] 3.8849266541774e-05 [GeV] +Cell[19,25] 5.8127146758125e-09 [GeV] +Cell[17,1] 0.00011056310444349 [GeV] +Cell[17,2] 1.0511313477764e-05 [GeV] +Cell[15,19] 1.0913158653238e-06 [GeV] +Cell[14,38] 4.0303033514647e-05 [GeV] +Cell[14,37] 0.0047857474486372 [GeV] +Cell[15,25] 0.0016692020617706 [GeV] +### Total energy deposition in calorimeter by a source track in 141 cells : 1.8336904266086 (GeV) Source track ID 3344 (pi-,0.49209748194734[GeV]) at (309.34717139898,-392.81589523267,-951.19101538334) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[7,22] 0.012979068177918 [GeV] -Cell[5,43] 0.0013844014243254 [GeV] -Cell[5,44] 1.0629519238137e-09 [GeV] -Cell[7,26] 4.4792381522711e-06 [GeV] -Cell[5,41] 0.080882739683915 [GeV] -Cell[5,40] 0.00011778273088225 [GeV] -Cell[5,31] 5.8727294481287e-07 [GeV] -Cell[6,43] 4.0219822446943e-05 [GeV] -Cell[4,40] 1.0520787531277e-05 [GeV] -Cell[4,41] 0.086300777924537 [GeV] -Cell[5,18] 0.00054183486624299 [GeV] -Cell[7,23] 0.0050323935819143 [GeV] -Cell[6,42] 4.1396633605473e-07 [GeV] -Cell[7,20] 0.00014348197607217 [GeV] -Cell[6,41] 3.7589140380305e-06 [GeV] -Cell[7,25] 0.0010674982767341 [GeV] -Cell[7,21] 0.00010276941312509 [GeV] -Cell[6,22] 0.0024637369738557 [GeV] -Cell[4,42] 0.015108430141395 [GeV] -Cell[7,24] 9.5174644957297e-07 [GeV] -Cell[5,42] 0.12395172035323 [GeV] -Cell[6,40] 2.5570708430678e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 22 cells : 0.33013757089207 (GeV) +Cell[7,9] 2.5718972508457e-06 [GeV] +Cell[7,8] 0.0013753178257942 [GeV] +Cell[8,12] 2.4077910056803e-06 [GeV] +Cell[9,31] 0.00051099891 [GeV] +Cell[5,43] 0.00021996220950473 [GeV] +Cell[5,44] 2.4974723460218e-05 [GeV] +Cell[7,7] 0.0050016960409133 [GeV] +Cell[7,26] 1.6275822417811e-08 [GeV] +Cell[5,39] 0.00014738597793371 [GeV] +Cell[6,12] 0.00011388509407766 [GeV] +Cell[4,11] 0.00049593395026193 [GeV] +Cell[4,39] 0.002424052329952 [GeV] +Cell[5,41] 0.08195411690898 [GeV] +Cell[1,19] 0.00092821093393616 [GeV] +Cell[2,17] 1.0400071914773e-11 [GeV] +Cell[5,40] 0.0031914993170889 [GeV] +Cell[4,38] 3.7578865885735e-10 [GeV] +Cell[4,44] 3.8255600279626e-06 [GeV] +Cell[7,27] 1.0148199376431e-05 [GeV] +Cell[6,43] 0.00010252548545236 [GeV] +Cell[14,23] 1.4151407987242e-05 [GeV] +Cell[4,40] 0.015530591472129 [GeV] +Cell[3,39] 0.0011724656492938 [GeV] +Cell[4,41] 0.066935089880662 [GeV] +Cell[2,8] 1.0129930231983e-05 [GeV] +Cell[5,12] 0.0012325146881758 [GeV] +Cell[2,18] 1.0233828809987e-05 [GeV] +Cell[9,12] 0.00021339928908787 [GeV] +Cell[14,22] 0.00015294709863724 [GeV] +Cell[3,41] 6.5919948610826e-11 [GeV] +Cell[6,42] 0.00069644207928491 [GeV] +Cell[4,12] 6.8766482207934e-05 [GeV] +Cell[9,15] 1.3231257668849e-05 [GeV] +Cell[9,14] 1.8073324326906e-08 [GeV] +Cell[9,13] 0.0079679623017707 [GeV] +Cell[2,10] 2.4215195560828e-05 [GeV] +Cell[6,5] 0.0011782128704166 [GeV] +Cell[3,0] 0.00089213463864378 [GeV] +Cell[7,6] 0.0012468707909522 [GeV] +Cell[1,8] 0.00018956458789228 [GeV] +Cell[1,18] 2.0033277990024e-06 [GeV] +Cell[5,37] 8.9761105482467e-07 [GeV] +Cell[4,0] 3.0627341184299e-06 [GeV] +Cell[3,47] 1.4339457266033e-10 [GeV] +Cell[4,42] 0.0085788965992442 [GeV] +Cell[10,14] 0.00059137767424984 [GeV] +Cell[5,36] 1.5298692742363e-06 [GeV] +Cell[5,38] 2.3603206500411e-11 [GeV] +Cell[4,29] 1.9259955734015e-06 [GeV] +Cell[5,34] 0.0057489085317845 [GeV] +Cell[2,9] 0.0013220610581127 [GeV] +Cell[2,7] 0.00063676693752018 [GeV] +Cell[4,28] 8.2854405627586e-07 [GeV] +Cell[4,43] 0.0074155246654425 [GeV] +Cell[1,7] 0.0002465993457098 [GeV] +Cell[10,15] 0.00031771416906236 [GeV] +Cell[0,32] 2.0909216837026e-06 [GeV] +Cell[5,42] 0.0077151609376066 [GeV] +### Total energy deposition in calorimeter by a source track in 58 cells : 0.22664382049497 (GeV) Source track ID 4938 (kaon0L,0.85324689363199[GeV]) at (443.61976117133,-230.65451978727,564.59737040268) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[14,41] 1.8436489540363e-08 [GeV] -Cell[14,42] 0.0018649430820554 [GeV] -Cell[15,42] 9.9380788711073e-05 [GeV] -Cell[14,46] 1.1405479085624e-08 [GeV] -Cell[14,45] 0.0018652075208605 [GeV] -Cell[14,47] 0.00081275334898203 [GeV] -Cell[15,47] 5.7985643024949e-09 [GeV] -Cell[13,44] 0.00045017262753686 [GeV] -Cell[16,43] 0.0034039163084051 [GeV] -Cell[15,46] 0.00046483632148079 [GeV] -Cell[15,44] 0.38973619232474 [GeV] -Cell[15,43] 0.020925250523202 [GeV] -Cell[16,44] 0.018414585205964 [GeV] -Cell[16,45] 0.010007942421978 [GeV] -Cell[15,45] 0.0061127444203371 [GeV] -Cell[16,46] 0.00046140969692999 [GeV] -Cell[14,44] 0.0011291599022421 [GeV] -Cell[14,43] 0.0038116333041905 [GeV] -Cell[17,44] 0.0014681920474463 [GeV] -### Total energy deposition in calorimeter by a source track in 19 cells : 0.4610283554856 (GeV) +Cell[12,27] 5.1207734060881e-05 [GeV] +Cell[14,40] 0.0029758246654638 [GeV] +Cell[14,41] 0.0057621532837284 [GeV] +Cell[15,41] 0.00077566044663422 [GeV] +Cell[15,40] 0.0030129625658141 [GeV] +Cell[14,42] 0.0017218167525645 [GeV] +Cell[14,39] 0.00013884558714335 [GeV] +Cell[14,46] 0.0013874627961207 [GeV] +Cell[14,45] 0.009836411461323 [GeV] +Cell[14,27] 9.867898421362e-06 [GeV] +Cell[12,44] 0.0062248438971543 [GeV] +Cell[13,45] 0.0055171299052306 [GeV] +Cell[14,28] 6.4858649857342e-06 [GeV] +Cell[12,28] 0.00050187539058061 [GeV] +Cell[14,47] 7.6937196593803e-05 [GeV] +Cell[15,47] 0.00013261990848628 [GeV] +Cell[12,41] 0.00085888363980337 [GeV] +Cell[12,42] 3.9503115991238e-05 [GeV] +Cell[12,39] 8.1900151371883e-09 [GeV] +Cell[12,43] 0.00032580888844963 [GeV] +Cell[12,40] 1.7043203115463e-10 [GeV] +Cell[13,43] 0.013693400174295 [GeV] +Cell[13,44] 0.079177868023775 [GeV] +Cell[13,41] 1.9152483990183e-05 [GeV] +Cell[17,14] 3.1430136004928e-06 [GeV] +Cell[17,13] 0.0026927711066049 [GeV] +Cell[12,20] 6.3808887150458e-05 [GeV] +Cell[12,19] 0.0026272964567985 [GeV] +Cell[11,2] 1.1072684603278e-05 [GeV] +Cell[13,42] 0.0025029221100845 [GeV] +Cell[14,43] 0.178728315832 [GeV] +Cell[13,46] 2.1373834950964e-06 [GeV] +Cell[14,44] 0.23405853342607 [GeV] +Cell[13,39] 7.1304384618998e-11 [GeV] +Cell[14,32] 0.00063057340643002 [GeV] +Cell[13,32] 3.4595850593178e-09 [GeV] +Cell[11,28] 2.2753184485964e-06 [GeV] +Cell[16,13] 1.2786692161626e-07 [GeV] +Cell[17,35] 0.00016276616212053 [GeV] +Cell[18,34] 0.00098511770621849 [GeV] +Cell[18,33] 5.5054385448102e-05 [GeV] +Cell[17,34] 2.7642898157865e-07 [GeV] +Cell[15,46] 1.4789442646361e-05 [GeV] +Cell[12,26] 0.00011705794534237 [GeV] +Cell[14,33] 4.8319566703867e-06 [GeV] +Cell[16,14] 0.0010538720986386 [GeV] +Cell[17,3] 1.8396230996586e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 47 cells : 0.55598187342122 (GeV) Source track ID 1903 (pi+,0.42333966175424[GeV]) at (-380.66031521981,324.18779189963,-1078.0339676944) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[0,29] 0.00023868562214011 [GeV] -Cell[3,17] 0.0033200124487527 [GeV] -Cell[0,30] 9.3862723151688e-06 [GeV] -Cell[4,18] 0.11188576383406 [GeV] -Cell[4,17] 0.04652025452971 [GeV] -Cell[3,16] 0.09908745937672 [GeV] -Cell[4,16] 0.00024785101385078 [GeV] -Cell[3,18] 9.3951691777647e-06 [GeV] -Cell[3,15] 0.00044078312532019 [GeV] -Cell[2,16] 3.3454238928243e-07 [GeV] -Cell[4,15] 0.0025017491902443 [GeV] -### Total energy deposition in calorimeter by a source track in 11 cells : 0.26426167512468 (GeV) +Cell[2,28] 9.1781959927175e-06 [GeV] +Cell[5,39] 0.00024882712770932 [GeV] +Cell[6,37] 3.0774707152545e-05 [GeV] +Cell[5,40] 9.1744330420624e-06 [GeV] +Cell[6,38] 5.8738897135527e-05 [GeV] +Cell[3,1] 0.00030143162573199 [GeV] +Cell[3,2] 6.7887654768128e-07 [GeV] +Cell[3,17] 0.0026682895327268 [GeV] +Cell[4,18] 0.10878697353998 [GeV] +Cell[4,17] 0.095767336775708 [GeV] +Cell[3,16] 0.010881907473957 [GeV] +Cell[4,16] 2.1886270690061e-05 [GeV] +Cell[4,19] 8.6147338151932e-12 [GeV] +Cell[3,18] 0.00038755551168003 [GeV] +Cell[3,28] 6.5649510361254e-10 [GeV] +Cell[3,14] 0.0040479739481439 [GeV] +Cell[3,15] 0.0026028050958599 [GeV] +Cell[2,31] 5.1209787053722e-05 [GeV] +Cell[2,26] 5.6501448852941e-07 [GeV] +Cell[5,37] 7.1470973667829e-06 [GeV] +Cell[2,2] 3.2347198597336e-06 [GeV] +Cell[2,27] 0.00090334698161723 [GeV] +Cell[5,38] 0.00038059959610621 [GeV] +Cell[4,15] 0.00047034690399141 [GeV] +Cell[1,39] 8.3752854379782e-08 [GeV] +Cell[3,19] 0.0025583043079037 [GeV] +Cell[4,43] 1.0234378860332e-06 [GeV] +Cell[2,30] 7.6816650107503e-10 [GeV] +### Total energy deposition in calorimeter by a source track in 28 cells : 0.23019939504446 (GeV) Source track ID 4922 (pi+,4.2123579212597[GeV]) at (194.20128522719,-460.7448977646,515.84609731913) Original primary track ID 8 (unknown,11.672977589613[GeV]) -Cell[13,35] 0.00014386832190758 [GeV] -Cell[14,40] 0.015191676743916 [GeV] -Cell[14,41] 0.0012378510084007 [GeV] -Cell[15,41] 0.00098607290630207 [GeV] -Cell[15,40] 0.0046561891515799 [GeV] -Cell[14,39] 0.034684104210708 [GeV] -Cell[14,35] 5.6797631230438e-05 [GeV] -Cell[15,35] 0.0022329742004329 [GeV] -Cell[16,37] 0.11645951173983 [GeV] -Cell[15,38] 2.3777097000972 [GeV] -Cell[15,39] 0.10971726545358 [GeV] -Cell[12,39] 0.11969661833338 [GeV] -Cell[13,37] 6.393541537966e-05 [GeV] -Cell[16,39] 0.01440377656016 [GeV] -Cell[13,41] 4.6943686612167e-05 [GeV] -Cell[13,40] 2.0257151576175e-05 [GeV] -Cell[13,34] 0.0014709135710891 [GeV] -Cell[14,38] 0.53923964073304 [GeV] -Cell[14,37] 0.0075627172968433 [GeV] -Cell[13,39] 0.024310095718107 [GeV] -Cell[15,37] 0.01657450977283 [GeV] -Cell[14,34] 1.1256953381235e-05 [GeV] -Cell[15,34] 0.0038283636834405 [GeV] -Cell[15,36] 0.0026560382113069 [GeV] -Cell[16,36] 0.020466771329197 [GeV] -Cell[16,38] 0.0081747765225067 [GeV] -Cell[17,38] 0.00372179433517 [GeV] -Cell[13,38] 0.2936395732677 [GeV] -Cell[17,37] 0.00086933153998223 [GeV] -Cell[16,40] 0.0092741890853651 [GeV] -### Total energy deposition in calorimeter by a source track in 30 cells : 3.7291075146322 (GeV) +Cell[15,3] 4.349652241217e-06 [GeV] +Cell[8,29] 3.4647036227398e-07 [GeV] +Cell[9,11] 0.0014014314036974 [GeV] +Cell[13,35] 0.00020080060314683 [GeV] +Cell[8,28] 3.7422345576488e-07 [GeV] +Cell[6,24] 2.0317028725003e-07 [GeV] +Cell[11,40] 0.0020382654639662 [GeV] +Cell[10,19] 1.0754958115285e-05 [GeV] +Cell[10,18] 7.1243216225412e-06 [GeV] +Cell[11,20] 1.8620386981638e-05 [GeV] +Cell[11,21] 6.8313392112032e-06 [GeV] +Cell[10,21] 4.3734631617554e-07 [GeV] +Cell[14,40] 0.26040863899429 [GeV] +Cell[14,41] 0.0024705171019851 [GeV] +Cell[15,1] 0.0002224854875451 [GeV] +Cell[15,41] 5.5472839795812e-06 [GeV] +Cell[15,40] 0.0035789227287988 [GeV] +Cell[14,42] 0.00077202870145839 [GeV] +Cell[15,0] 0.00040534909793098 [GeV] +Cell[14,39] 0.13696558979432 [GeV] +Cell[14,46] 0.0016309013649257 [GeV] +Cell[14,45] 0.058477266000623 [GeV] +Cell[12,38] 0.14570243908215 [GeV] +Cell[16,0] 0.00021412483692143 [GeV] +Cell[14,35] 0.00068321178560177 [GeV] +Cell[13,45] 0.001457187986522 [GeV] +Cell[11,38] 0.0023201319560798 [GeV] +Cell[15,35] 8.9258134830743e-06 [GeV] +Cell[15,28] 0.0023697026077571 [GeV] +Cell[14,1] 3.035584399629e-05 [GeV] +Cell[14,47] 0.0052351214515083 [GeV] +Cell[17,9] 1.910551218316e-07 [GeV] +Cell[15,47] 2.4701521004317e-05 [GeV] +Cell[16,37] 0.0012716319815667 [GeV] +Cell[10,34] 2.5145403924398e-07 [GeV] +Cell[14,36] 0.14913353828154 [GeV] +Cell[14,0] 0.0054371719872845 [GeV] +Cell[16,26] 0.0043079528267892 [GeV] +Cell[15,38] 0.0031312970171985 [GeV] +Cell[15,39] 0.17704933871414 [GeV] +Cell[11,42] 1.5787724862548e-06 [GeV] +Cell[12,41] 0.0018001391777057 [GeV] +Cell[12,42] 4.7017026895446e-07 [GeV] +Cell[11,41] 0.0043173043023685 [GeV] +Cell[12,39] 0.25251398545503 [GeV] +Cell[12,43] 3.1266215955839e-08 [GeV] +Cell[12,40] 0.0096068983222751 [GeV] +Cell[13,37] 0.0051904689260483 [GeV] +Cell[13,43] 0.0012611649045333 [GeV] +Cell[13,44] 0.0041367493198395 [GeV] +Cell[12,35] 6.8078629661841e-06 [GeV] +Cell[13,2] 6.66678234345e-05 [GeV] +Cell[14,19] 3.3398260132572e-05 [GeV] +Cell[15,17] 1.3418531921161e-07 [GeV] +Cell[17,20] 8.4935111096343e-05 [GeV] +Cell[16,39] 0.0061874124715282 [GeV] +Cell[16,47] 9.0358546003699e-08 [GeV] +Cell[18,5] 0.00012193761550213 [GeV] +Cell[13,41] 0.00096556256235517 [GeV] +Cell[19,30] 5.355106521165e-06 [GeV] +Cell[19,29] 3.157974788337e-08 [GeV] +Cell[18,38] 0.00014992510814443 [GeV] +Cell[14,9] 0.00080157887413691 [GeV] +Cell[14,8] 1.8066864447519e-07 [GeV] +Cell[8,43] 0.00070764188389217 [GeV] +Cell[13,12] 2.5334176143588e-09 [GeV] +Cell[12,36] 0.0041220844160556 [GeV] +Cell[16,11] 1.6687953284531e-05 [GeV] +Cell[9,14] 0.00010198408372116 [GeV] +Cell[9,13] 0.00043505950275278 [GeV] +Cell[10,9] 0.00049870606094189 [GeV] +Cell[10,39] 1.3714650413021e-07 [GeV] +Cell[11,39] 0.0026226191125259 [GeV] +Cell[13,40] 0.010818457522547 [GeV] +Cell[10,10] 1.983552353541e-05 [GeV] +Cell[13,42] 0.0046190384738576 [GeV] +Cell[18,41] 7.0186797529459e-10 [GeV] +Cell[14,43] 0.0032360022946923 [GeV] +Cell[13,46] 0.00017623778040161 [GeV] +Cell[14,44] 0.0035537985883815 [GeV] +Cell[13,39] 0.60335302434015 [GeV] +Cell[13,38] 0.78863061521192 [GeV] +Cell[14,32] 0.00077281683825242 [GeV] +Cell[15,43] 2.2229818160554e-05 [GeV] +Cell[12,37] 0.0089647244458376 [GeV] +Cell[18,4] 1.4437907793763e-09 [GeV] +Cell[19,4] 1.3968511984785e-07 [GeV] +Cell[19,5] 0.0019884611361201 [GeV] +Cell[13,10] 0.0012335640318098 [GeV] +Cell[13,11] 0.0043205358633539 [GeV] +Cell[10,23] 2.2611813619733e-06 [GeV] +Cell[10,22] 2.2912776330486e-07 [GeV] +Cell[10,25] 5.7132863776133e-07 [GeV] +Cell[7,24] 4.9995240888165e-06 [GeV] +Cell[11,36] 0.0016044835461913 [GeV] +Cell[8,40] 3.8786180084571e-07 [GeV] +Cell[12,9] 2.6279342364433e-08 [GeV] +Cell[11,37] 0.00095789467871373 [GeV] +Cell[13,36] 0.00045511802582746 [GeV] +Cell[15,11] 2.686039370019e-07 [GeV] +Cell[15,34] 2.0747510006913e-08 [GeV] +Cell[16,36] 7.4556801450854e-08 [GeV] +Cell[17,37] 0.0043313606878262 [GeV] +Cell[17,38] 0.0019612417563238 [GeV] +Cell[15,46] 2.6114428578694e-08 [GeV] +Cell[15,45] 0.0023038322729572 [GeV] +Cell[16,25] 2.9553038271843e-05 [GeV] +Cell[12,10] 1.1165205501584e-05 [GeV] +Cell[12,11] 0.0099647181619239 [GeV] +Cell[15,44] 0.00072309134684338 [GeV] +Cell[17,40] 0.0050705817833541 [GeV] +Cell[15,36] 0.00055070820619553 [GeV] +Cell[13,0] 0.00044126338524381 [GeV] +Cell[16,1] 1.1993979569525e-09 [GeV] +Cell[17,47] 4.0417759155389e-06 [GeV] +Cell[15,9] 0.00014011740287185 [GeV] +Cell[17,0] 4.0248979348689e-06 [GeV] +Cell[10,24] 8.1707891584301e-05 [GeV] +Cell[12,25] 0.001456296204857 [GeV] +Cell[14,33] 0.00015852497494961 [GeV] +Cell[14,18] 0.0004589520852229 [GeV] +Cell[18,17] 1.7753336578608e-12 [GeV] +Cell[11,10] 0.00012651543989669 [GeV] +Cell[13,47] 0.001608145108152 [GeV] +Cell[14,3] 2.4138716980815e-10 [GeV] +Cell[19,10] 0.00016218791663232 [GeV] +Cell[15,37] 0.0043012059716331 [GeV] +Cell[16,12] 3.7399077109512e-07 [GeV] +Cell[16,29] 0.013430047888746 [GeV] +Cell[15,10] 1.5480258288449e-05 [GeV] +Cell[18,20] 0.00020690742110016 [GeV] +Cell[16,38] 0.0036702861129071 [GeV] +Cell[17,39] 0.0065552042955873 [GeV] +Cell[16,27] 0.0017628516618974 [GeV] +Cell[17,41] 0.01180015202974 [GeV] +Cell[14,38] 0.007996930088821 [GeV] +Cell[14,37] 0.032323180310232 [GeV] +Cell[19,19] 2.5930795236491e-06 [GeV] +Cell[18,29] 0.00017369180605601 [GeV] +Cell[19,28] 2.294910486853e-07 [GeV] +Cell[16,40] 0.0073380491031867 [GeV] +Cell[14,34] 7.6619733590633e-07 [GeV] +Cell[16,41] 0.0023135844441586 [GeV] +Cell[19,8] 0.00042191612280953 [GeV] +Cell[18,18] 0.00052678451635347 [GeV] +Cell[19,18] 3.9449422861253e-06 [GeV] +Cell[13,3] 1.2566433901156e-05 [GeV] +Cell[14,4] 1.3853570453648e-07 [GeV] +Cell[13,4] 6.4661003307265e-10 [GeV] +Cell[19,9] 0.00075148390460981 [GeV] +Cell[15,27] 0.033073842135696 [GeV] +### Total energy deposition in calorimeter by a source track in 151 cells : 2.8537678806461 (GeV) Source track ID 3430 (pi-,0.61466733614457[GeV]) at (84.41439375176,492.82269644115,-892.23805098995) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[8,5] 2.0337869500509e-08 [GeV] -Cell[2,28] 0.00079065629195096 [GeV] -Cell[5,46] 1.2346486764727e-05 [GeV] -Cell[7,22] 0.00091335924973896 [GeV] -Cell[7,42] 8.3563395492092e-10 [GeV] -Cell[5,32] 2.2389023419237e-05 [GeV] -Cell[6,17] 4.8248680195456e-05 [GeV] -Cell[4,34] 4.1206980984043e-07 [GeV] -Cell[6,13] 0.0019478120657074 [GeV] -Cell[7,45] 7.4814050435634e-08 [GeV] -Cell[7,44] 6.5557278503547e-09 [GeV] -Cell[5,39] 0.00029021882219001 [GeV] -Cell[6,12] 5.6849191173245e-05 [GeV] -Cell[6,47] 7.3117262218148e-09 [GeV] -Cell[6,11] 0.0041595414151578 [GeV] -Cell[7,37] 0.00065901372818757 [GeV] -Cell[9,45] 0.00040085251176231 [GeV] -Cell[4,11] 0.0065124622507209 [GeV] -Cell[4,20] 0.0030950564122502 [GeV] -Cell[5,33] 0.0022230111130162 [GeV] -Cell[7,34] 2.3984171125107e-05 [GeV] -Cell[4,22] 1.2764053280989e-09 [GeV] -Cell[4,32] 2.7330826880643e-05 [GeV] -Cell[6,0] 2.5879999157041e-09 [GeV] -Cell[6,28] 9.9662325699569e-05 [GeV] -Cell[5,31] 0.00013824627639224 [GeV] -Cell[13,24] 7.3745649133343e-06 [GeV] -Cell[12,18] 3.661234586616e-10 [GeV] -Cell[8,32] 0.0011565185723896 [GeV] -Cell[14,23] 2.5924233777914e-06 [GeV] -Cell[4,9] 0.00039794581787271 [GeV] -Cell[3,40] 3.3902904988281e-08 [GeV] -Cell[0,24] 0.0005174277100034 [GeV] -Cell[7,38] 0.0038936351571753 [GeV] -Cell[5,18] 0.0048443484329557 [GeV] -Cell[5,17] 4.0009477618241e-06 [GeV] -Cell[2,44] 1.257303726743e-05 [GeV] -Cell[4,19] 0.005043481515789 [GeV] -Cell[6,18] 0.0015429812702681 [GeV] -Cell[6,16] 9.751639875617e-06 [GeV] -Cell[3,31] 1.9327804038767e-05 [GeV] -Cell[5,12] 0.003550639863663 [GeV] -Cell[3,42] 1.0790829022881e-05 [GeV] -Cell[15,38] 7.6952186349672e-05 [GeV] -Cell[15,39] 6.3558085814293e-05 [GeV] -Cell[12,35] 5.0658034626395e-05 [GeV] -Cell[3,41] 3.5713349575417e-07 [GeV] -Cell[8,43] 1.8783498273933e-06 [GeV] -Cell[4,12] 1.0108532733284e-05 [GeV] -Cell[5,9] 2.8202375938235e-07 [GeV] -Cell[6,4] 3.075242389059e-07 [GeV] -Cell[7,36] 0.00052398138755677 [GeV] -Cell[6,35] 0.00086081296048258 [GeV] -Cell[6,33] 0.00092603005251049 [GeV] -Cell[7,33] 3.3002646682689e-07 [GeV] -Cell[8,33] 0.00074074700626215 [GeV] -Cell[2,26] 0.00030029236682219 [GeV] -Cell[2,10] 0.00076118934929752 [GeV] -Cell[0,23] 3.4478682791814e-06 [GeV] -Cell[0,25] 2.3527594294137e-08 [GeV] -Cell[5,10] 0.25961355640384 [GeV] -Cell[7,4] 2.0663719624281e-12 [GeV] -Cell[8,4] 0.0018616041932386 [GeV] -Cell[13,40] 0.00028469629909932 [GeV] -Cell[4,33] 0.0015861390235212 [GeV] -Cell[5,37] 0.00084285015177738 [GeV] -Cell[8,22] 7.3845544247888e-06 [GeV] -Cell[2,41] 1.9074363248819e-05 [GeV] -Cell[6,3] 5.5015756066041e-05 [GeV] -Cell[8,34] 2.4610358225232e-05 [GeV] -Cell[5,11] 0.022979419429817 [GeV] -Cell[8,37] 0.0025040347709191 [GeV] -Cell[13,39] 2.4271997690448e-05 [GeV] -Cell[2,11] 1.2210397371064e-05 [GeV] -Cell[8,42] 0.00014716888671558 [GeV] -Cell[5,30] 0.00046057258291419 [GeV] -Cell[6,32] 0.00085051505461259 [GeV] -Cell[10,45] 8.8482396806739e-06 [GeV] -Cell[12,17] 0.0002031621710895 [GeV] -Cell[2,39] 0.00077183499411923 [GeV] -Cell[1,39] 0.0013277815877506 [GeV] -Cell[1,40] 0.00010635763081848 [GeV] -Cell[2,40] 0.0034504624381252 [GeV] -Cell[3,36] 0.0013879889562382 [GeV] -Cell[5,42] 0.00022196345655425 [GeV] -Cell[2,27] 0.0043597686070574 [GeV] -Cell[4,10] 3.1745827812983e-05 [GeV] -Cell[8,3] 1.4932491088985e-05 [GeV] -Cell[4,23] 1.5713873108325e-07 [GeV] -Cell[3,23] 3.2537200922889e-08 [GeV] -Cell[5,38] 0.00011881127855088 [GeV] -Cell[7,0] 6.680260412395e-09 [GeV] -### Total energy deposition in calorimeter by a source track in 92 cells : 0.3500329251637 (GeV) +Cell[5,25] 2.8076654998586e-06 [GeV] +Cell[5,46] 1.8762948457152e-09 [GeV] +Cell[7,22] 0.00025246257064282 [GeV] +Cell[7,42] 1.9929725881411e-06 [GeV] +Cell[6,10] 5.3195801342554e-08 [GeV] +Cell[4,26] 1.1180360044818e-05 [GeV] +Cell[5,43] 8.7718075405974e-07 [GeV] +Cell[6,17] 1.3293237629114e-05 [GeV] +Cell[6,31] 2.9802322387695e-11 [GeV] +Cell[8,13] 9.5106622325147e-08 [GeV] +Cell[5,13] 0.0006859226017674 [GeV] +Cell[6,9] 0.0036116059122274 [GeV] +Cell[7,45] 5.9197191148996e-10 [GeV] +Cell[6,7] 4.2851749691181e-05 [GeV] +Cell[7,43] 2.0011635911033e-08 [GeV] +Cell[7,44] 0.00017602234525123 [GeV] +Cell[6,12] 0.0023360807583164 [GeV] +Cell[6,30] 0.0025399045553362 [GeV] +Cell[5,26] 0.00054818224914675 [GeV] +Cell[6,11] 0.0020605898142537 [GeV] +Cell[6,24] 0.0053272112630842 [GeV] +Cell[7,41] 0.00068424095961188 [GeV] +Cell[4,11] 1.613763195985e-05 [GeV] +Cell[5,33] 0.00010426935831833 [GeV] +Cell[4,31] 0.0017819337617656 [GeV] +Cell[2,23] 0.00084553496517651 [GeV] +Cell[1,23] 5.2737906516995e-06 [GeV] +Cell[3,8] 2.1265188930556e-05 [GeV] +Cell[6,1] 0.001119966920709 [GeV] +Cell[0,29] 1.2625678209588e-07 [GeV] +Cell[1,22] 1.9881094864104e-05 [GeV] +Cell[6,28] 6.8841787992824e-08 [GeV] +Cell[7,28] 5.4910196922719e-10 [GeV] +Cell[6,44] 1.2891279595692e-05 [GeV] +Cell[14,42] 1.8002277562687e-05 [GeV] +Cell[4,9] 0.00067547919823483 [GeV] +Cell[2,24] 4.3302035192028e-07 [GeV] +Cell[4,41] 0.0017639045550332 [GeV] +Cell[0,28] 5.0012097445915e-06 [GeV] +Cell[3,10] 0.00070860169881655 [GeV] +Cell[2,14] 1.044652890414e-09 [GeV] +Cell[1,29] 5.6247896282002e-08 [GeV] +Cell[3,30] 4.8674084973754e-05 [GeV] +Cell[5,12] 0.0031547928992066 [GeV] +Cell[11,14] 1.7192214727402e-08 [GeV] +Cell[7,31] 1.2067973217427e-05 [GeV] +Cell[13,43] 1.738424207565e-05 [GeV] +Cell[7,46] 4.0786771251078e-08 [GeV] +Cell[4,12] 5.1639916491695e-06 [GeV] +Cell[5,9] 5.4208369430853e-05 [GeV] +Cell[9,14] 0.00031597718402816 [GeV] +Cell[9,13] 2.8265924713992e-05 [GeV] +Cell[6,4] 3.0071414425038e-05 [GeV] +Cell[7,32] 5.9257924931444e-09 [GeV] +Cell[11,15] 5.6319404393435e-09 [GeV] +Cell[6,5] 0.0013530963886551 [GeV] +Cell[5,10] 0.072337731473349 [GeV] +Cell[4,33] 0.00029501760209996 [GeV] +Cell[7,29] 0.00063270720539424 [GeV] +Cell[6,29] 1.8926837015897e-05 [GeV] +Cell[5,28] 3.3797039122874e-10 [GeV] +Cell[2,38] 0.0001460690513447 [GeV] +Cell[10,11] 2.1972769172862e-07 [GeV] +Cell[6,2] 0.00020720859837786 [GeV] +Cell[14,43] 1.8126812997252e-06 [GeV] +Cell[14,32] 5.3052190924063e-07 [GeV] +Cell[2,13] 2.9062228027556e-05 [GeV] +Cell[5,11] 0.22861888709697 [GeV] +Cell[5,7] 0.00039069140577715 [GeV] +Cell[4,42] 2.5077967438847e-07 [GeV] +Cell[4,30] 0.00089561372160232 [GeV] +Cell[3,11] 2.5499017833795e-05 [GeV] +Cell[8,36] 0.0012753392425433 [GeV] +Cell[4,25] 1.384843463893e-05 [GeV] +Cell[4,29] 0.0015250463812054 [GeV] +Cell[2,5] 1.9366317428648e-07 [GeV] +Cell[5,34] 5.5180862545967e-11 [GeV] +Cell[3,9] 0.00065112942475162 [GeV] +Cell[6,6] 0.0006511041557078 [GeV] +Cell[4,28] 0.00066960721924943 [GeV] +Cell[4,27] 0.001554736069393 [GeV] +Cell[10,12] 1.2881352449767e-07 [GeV] +Cell[4,10] 5.9291437735283e-06 [GeV] +Cell[5,42] 1.577769964274e-05 [GeV] +Cell[8,39] 0.0020345673039906 [GeV] +Cell[8,18] 4.3696556153009e-05 [GeV] +Cell[5,6] 8.2460645062383e-06 [GeV] +Cell[3,5] 2.4219931676157e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 88 cells : 0.34248779635446 (GeV) Source track ID 3919 (kaon+,2.4770987389753[GeV]) at (287.3281308319,-409.19744040335,-439.70630876818) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,8] 4.6106736715501e-07 [GeV] -Cell[7,11] 0.0011516021803155 [GeV] -Cell[7,42] 0.00094294073257265 [GeV] -Cell[6,10] 0.00042372385017165 [GeV] -Cell[7,14] 0.0019811245327925 [GeV] -Cell[8,13] 0.00020402297527471 [GeV] -Cell[6,9] 8.0531788171356e-10 [GeV] -Cell[7,43] 2.1347479787437e-07 [GeV] -Cell[6,11] 0.00055036495327511 [GeV] -Cell[6,24] 0.0020212568091233 [GeV] -Cell[7,37] 6.5047877724282e-06 [GeV] -Cell[5,3] 0.0017629007668169 [GeV] -Cell[8,47] 0.0067988713570828 [GeV] -Cell[8,46] 0.00096039524170305 [GeV] -Cell[7,41] 0.039822018095471 [GeV] -Cell[8,38] 0.0008884160558631 [GeV] -Cell[2,23] 1.5467838005861e-05 [GeV] -Cell[2,21] 2.5198961404385e-05 [GeV] -Cell[2,12] 0.00081896528383152 [GeV] -Cell[8,14] 0.00039742664588782 [GeV] -Cell[5,40] 1.2325381733262e-06 [GeV] -Cell[6,38] 0.0019402286573263 [GeV] -Cell[6,43] 2.4502414817107e-08 [GeV] -Cell[7,38] 0.010261653611399 [GeV] -Cell[7,40] 1.3458447456655 [GeV] -Cell[2,14] 9.9177484916595e-05 [GeV] -Cell[6,42] 0.0028434331552974 [GeV] -Cell[5,9] 4.7587623146228e-07 [GeV] -Cell[6,4] 0.001065288988209 [GeV] -Cell[6,14] 0.00015557501879209 [GeV] -Cell[6,15] 4.4354237616062e-11 [GeV] -Cell[7,15] 0.0028317795287547 [GeV] -Cell[6,41] 0.078778901328747 [GeV] -Cell[5,10] 0.0028484979359059 [GeV] -Cell[1,13] 1.3011583018852e-06 [GeV] -Cell[6,3] 8.4294342668727e-06 [GeV] -Cell[8,40] 0.0043832420265168 [GeV] -Cell[8,37] 0.0001705575505556 [GeV] -Cell[6,23] 2.3788685211912e-08 [GeV] -Cell[9,47] 5.3558264880849e-08 [GeV] -Cell[2,13] 0.00056559411254841 [GeV] -Cell[2,43] 1.8807297497005e-06 [GeV] -Cell[7,47] 0.00074172997019278 [GeV] -Cell[6,8] 2.8815476298405e-09 [GeV] -Cell[5,42] 2.4644603427078e-06 [GeV] -Cell[4,10] 9.1681794565716e-05 [GeV] -Cell[4,27] 0.0013648015962685 [GeV] -Cell[4,28] 0.0029146696759767 [GeV] -Cell[6,39] 0.0098739480085125 [GeV] -Cell[6,40] 0.067102607613014 [GeV] -Cell[8,39] 0.0040206425777956 [GeV] -Cell[7,39] 0.014898697642294 [GeV] -Cell[8,41] 0.0002161644529416 [GeV] -### Total energy deposition in calorimeter by a source track in 53 cells : 1.6118013837832 (GeV) +Cell[8,10] 0.0014181515946419 [GeV] +Cell[9,27] 5.5660839962002e-08 [GeV] +Cell[7,42] 0.00079575315028115 [GeV] +Cell[4,34] 0.01935336074677 [GeV] +Cell[7,43] 0.001161349276553 [GeV] +Cell[5,39] 6.5501080825925e-10 [GeV] +Cell[6,37] 0.0029742296866519 [GeV] +Cell[7,41] 0.066350532681315 [GeV] +Cell[8,38] 6.589247800548e-08 [GeV] +Cell[5,33] 2.5153879218578e-05 [GeV] +Cell[1,11] 0.00061018112328254 [GeV] +Cell[6,0] 0.0011404074580604 [GeV] +Cell[4,38] 5.886540748179e-09 [GeV] +Cell[3,34] 1.7205600215675e-09 [GeV] +Cell[6,36] 0.0039917335065416 [GeV] +Cell[6,38] 0.0086953906962447 [GeV] +Cell[17,9] 0.00045282020570635 [GeV] +Cell[6,43] 0.00038378494895113 [GeV] +Cell[7,38] 0.0015243169390545 [GeV] +Cell[7,40] 1.3025968032634 [GeV] +Cell[6,42] 0.0011169468897524 [GeV] +Cell[4,12] 0.00080026901284205 [GeV] +Cell[6,34] 0.0042888458859656 [GeV] +Cell[7,36] 5.8834530705099e-08 [GeV] +Cell[6,35] 0.006291266808208 [GeV] +Cell[6,41] 0.10056982267536 [GeV] +Cell[5,8] 0.000764102185356 [GeV] +Cell[5,35] 0.0006589267154568 [GeV] +Cell[4,35] 0.0041579004848619 [GeV] +Cell[9,26] 7.3289555310794e-06 [GeV] +Cell[10,27] 1.7229467630386e-11 [GeV] +Cell[4,37] 0.00042722332524704 [GeV] +Cell[4,33] 0.00014576568344989 [GeV] +Cell[5,37] 0.0013387424432455 [GeV] +Cell[3,37] 0.00011157639435476 [GeV] +Cell[5,36] 2.6678439553507e-08 [GeV] +Cell[3,36] 0.00037982456179634 [GeV] +Cell[6,39] 0.019154630199414 [GeV] +Cell[5,34] 0.00014257316092949 [GeV] +Cell[2,29] 0.0031626540248088 [GeV] +Cell[4,36] 0.00061684323107556 [GeV] +Cell[8,39] 9.1133288959099e-05 [GeV] +Cell[8,18] 0.0015646270614299 [GeV] +Cell[5,6] 0.00076844412983262 [GeV] +Cell[6,40] 0.24391796871766 [GeV] +Cell[7,39] 0.014087685537608 [GeV] +### Total energy deposition in calorimeter by a source track in 46 cells : 1.8160392858755 (GeV) Source track ID 3429 (pi+,0.3321460937602[GeV]) at (211.51937858788,453.05579400533,-1604.8529400871) Original primary track ID 31 (unknown,691.32334101424[GeV]) -Cell[1,8] 0.11360327563114 [GeV] -Cell[1,7] 0.099008618738212 [GeV] -### Total energy deposition in calorimeter by a source track in 2 cells : 0.21261189436935 (GeV) +Cell[6,21] 9.6931315749771e-07 [GeV] +Cell[2,6] 0.00092326570182809 [GeV] +Cell[2,22] 0.0022557474240361 [GeV] +Cell[1,22] 8.0551236169413e-07 [GeV] +Cell[2,21] 0.00097901939128496 [GeV] +Cell[2,4] 0.0014703463284455 [GeV] +Cell[0,31] 0.00018484062379696 [GeV] +Cell[2,1] 0.056340282542085 [GeV] +Cell[3,40] 3.2400293275714e-06 [GeV] +Cell[1,25] 0.002355454306043 [GeV] +Cell[2,8] 0.00039825033245256 [GeV] +Cell[2,36] 3.5797105228994e-06 [GeV] +Cell[2,44] 1.2191275402529e-07 [GeV] +Cell[7,35] 7.7325352164962e-05 [GeV] +Cell[8,35] 1.8879307899624e-06 [GeV] +Cell[1,26] 0.00014086311617518 [GeV] +Cell[2,10] 0.0012264239783932 [GeV] +Cell[1,9] 0.0022925413272555 [GeV] +Cell[1,5] 0.00018299765526899 [GeV] +Cell[0,25] 1.0581896524968e-05 [GeV] +Cell[2,20] 2.8112807834987e-05 [GeV] +Cell[1,8] 0.068677048664902 [GeV] +Cell[0,20] 0.00088362141777463 [GeV] +Cell[3,37] 0.0013279914800501 [GeV] +Cell[3,7] 1.8446299498009e-07 [GeV] +Cell[2,2] 0.024662318269441 [GeV] +Cell[6,22] 6.0091379805044e-05 [GeV] +Cell[3,6] 0.0022244783934861 [GeV] +Cell[2,11] 2.043280765065e-07 [GeV] +Cell[1,21] 0.0014212033807115 [GeV] +Cell[2,43] 2.4391920305789e-10 [GeV] +Cell[0,10] 1.9085115474127e-06 [GeV] +Cell[0,19] 3.7265270345983e-05 [GeV] +Cell[2,5] 0.00029048746925241 [GeV] +Cell[0,26] 0.00044396024245907 [GeV] +Cell[2,9] 4.1288654203527e-05 [GeV] +Cell[2,7] 1.1361103022978e-05 [GeV] +Cell[1,7] 0.001456500096879 [GeV] +Cell[0,32] 1.9328639609739e-08 [GeV] +Cell[2,37] 3.5889271530323e-06 [GeV] +Cell[1,10] 7.0782249611057e-07 [GeV] +Cell[0,9] 3.843432805445e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 42 cells : 0.17045932096772 (GeV) Source track ID 4237 (pi-,0.85427113729289[GeV]) at (-164.83543384668,472.0479633984,872.99112220665) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[12,32] 1.2993143172935e-08 [GeV] -Cell[9,45] 0.00021939936114654 [GeV] -Cell[14,41] 1.8630416673204e-07 [GeV] -Cell[15,41] 0.00016770084896518 [GeV] -Cell[19,11] 0.0021375103541057 [GeV] -Cell[12,18] 3.2891789787755e-06 [GeV] -Cell[14,28] 0.0015434486573605 [GeV] -Cell[14,14] 0.25761673027929 [GeV] -Cell[11,31] 6.3893967308104e-09 [GeV] -Cell[12,31] 0.0017153408660084 [GeV] -Cell[14,16] 3.8812860793769e-08 [GeV] -Cell[17,30] 2.4677429406438e-05 [GeV] -Cell[14,29] 0.00021571336381908 [GeV] -Cell[10,30] 0.0017483344995918 [GeV] -Cell[10,31] 4.1064541674132e-06 [GeV] -Cell[16,26] 0.00027837469285816 [GeV] -Cell[12,42] 8.7022204825189e-06 [GeV] -Cell[13,16] 1.8044374883175e-12 [GeV] -Cell[14,15] 0.19179466522741 [GeV] -Cell[12,23] 0.0022432692813818 [GeV] -Cell[13,22] 0.00010425243257816 [GeV] -Cell[15,12] 0.0016875337641227 [GeV] -Cell[17,14] 0.0034064780798725 [GeV] -Cell[18,14] 0.00094350703231018 [GeV] -Cell[17,13] 0.0025192931773032 [GeV] -Cell[18,13] 0.025860857753093 [GeV] -Cell[13,12] 0.00092840295145743 [GeV] -Cell[13,21] 1.4240082673496e-05 [GeV] -Cell[15,15] 8.0378919949453e-06 [GeV] -Cell[14,12] 0.00013750100908965 [GeV] -Cell[13,15] 9.4266143833011e-09 [GeV] -Cell[15,25] 9.6484479727224e-06 [GeV] -Cell[15,14] 6.757547694076e-05 [GeV] -Cell[15,13] 1.420321792466e-05 [GeV] -Cell[16,14] 1.691169445985e-05 [GeV] -Cell[13,11] 3.0647050618882e-07 [GeV] -Cell[18,11] 0.0001934219555327 [GeV] -Cell[18,10] 0.0010836307150792 [GeV] -Cell[18,12] 2.8439137544296e-05 [GeV] -Cell[16,8] 0.0033870168088252 [GeV] -Cell[16,9] 1.7392001816802e-05 [GeV] -Cell[13,10] 9.0075344121487e-07 [GeV] -Cell[12,9] 8.2747458918675e-07 [GeV] -Cell[17,12] 3.949296456085e-09 [GeV] -Cell[12,17] 3.5269537224735e-05 [GeV] -Cell[14,13] 0.0032954439576856 [GeV] -Cell[19,12] 0.032171349019974 [GeV] -Cell[13,23] 0.010546802462147 [GeV] -Cell[13,14] 0.0018424277698995 [GeV] -Cell[12,8] 8.7218393218791e-10 [GeV] -Cell[15,26] 6.274377255977e-09 [GeV] -Cell[19,13] 0.00048592298579865 [GeV] -Cell[13,13] 0.00036827495826765 [GeV] -Cell[17,2] 0.0040790141614047 [GeV] -### Total energy deposition in calorimeter by a source track in 54 cells : 0.55297641092034 (GeV) +Cell[14,14] 0.10918602452233 [GeV] +Cell[16,15] 0.025039004551625 [GeV] +Cell[14,15] 0.033531524635353 [GeV] +Cell[16,17] 0.013558680782137 [GeV] +Cell[18,16] 3.6433236702578e-05 [GeV] +Cell[16,18] 1.7141235275631e-10 [GeV] +Cell[17,17] 0.20056552960994 [GeV] +Cell[15,15] 0.21424564886551 [GeV] +Cell[17,16] 0.0055364740121946 [GeV] +Cell[16,16] 0.2123213458321 [GeV] +Cell[18,17] 0.0014803117831582 [GeV] +### Total energy deposition in calorimeter by a source track in 11 cells : 0.81550097800247 (GeV) Source track ID 3480 (mu-,0.25962787463657[GeV]) at (490.94743312134,-94.713346005551,395.64536649648) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[10,8] 0.00060547623353188 [GeV] -Cell[10,7] 2.9573451174656e-06 [GeV] -Cell[11,7] 2.2202702072036e-06 [GeV] -Cell[11,47] 0.0082243046136359 [GeV] -Cell[11,46] 0.014288913500492 [GeV] -Cell[12,47] 0.11276532794424 [GeV] -Cell[11,0] 0.00067564100650077 [GeV] -Cell[12,0] 0.0019507965303455 [GeV] -Cell[12,46] 0.034220815411352 [GeV] -Cell[11,1] 0.0012916329252998 [GeV] -Cell[13,12] 1.2356241842667e-05 [GeV] -Cell[12,33] 0.0010112487325166 [GeV] -Cell[12,34] 0.00029569111329852 [GeV] -Cell[12,11] 0.00027627438690979 [GeV] -Cell[13,11] 0.00024730590534568 [GeV] -Cell[11,8] 0.00029929162635335 [GeV] -Cell[13,10] 6.5877385495355e-05 [GeV] -Cell[13,9] 1.5179855050519e-05 [GeV] -Cell[11,9] 0.00058495540569413 [GeV] -Cell[10,3] 1.0758201213321e-05 [GeV] -Cell[12,12] 2.0335166482255e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 21 cells : 0.17684704496961 (GeV) +Cell[9,41] 1.214739138959e-06 [GeV] +Cell[13,26] 0.00036413565358748 [GeV] +Cell[13,25] 0.00053713710433772 [GeV] +Cell[15,35] 1.0650233598426e-06 [GeV] +Cell[12,30] 0.00033970170847202 [GeV] +Cell[17,9] 1.0135429647562e-05 [GeV] +Cell[13,7] 0.00016766128504982 [GeV] +Cell[14,25] 0.0025391759621317 [GeV] +Cell[11,47] 0.00035903881622139 [GeV] +Cell[11,46] 0.012218285910339 [GeV] +Cell[12,47] 0.12891331999975 [GeV] +Cell[11,0] 0.00011925663911445 [GeV] +Cell[12,0] 0.0010015841596242 [GeV] +Cell[12,46] 0.029103532695245 [GeV] +Cell[12,1] 3.6451339411542e-05 [GeV] +Cell[17,8] 7.9587473343963e-05 [GeV] +Cell[14,8] 1.6392246470787e-07 [GeV] +Cell[9,42] 4.6935183178562e-05 [GeV] +Cell[10,41] 0.00021806967763212 [GeV] +Cell[10,42] 4.4026256913412e-06 [GeV] +Cell[15,15] 0.0012080346950846 [GeV] +Cell[15,13] 0.00098715750755821 [GeV] +Cell[14,7] 0.0026289518847575 [GeV] +Cell[15,14] 5.4752687829023e-05 [GeV] +Cell[15,36] 4.9842512817122e-07 [GeV] +Cell[15,16] 2.0057588835812e-05 [GeV] +Cell[12,45] 0.0017469258591619 [GeV] +Cell[12,26] 1.0404619388282e-10 [GeV] +Cell[14,26] 0.0029960460158672 [GeV] +Cell[15,26] 0.0018930738039144 [GeV] +### Total energy deposition in calorimeter by a source track in 30 cells : 0.18759635391992 (GeV) Source track ID 4121 (mu+,0.38432947939132[GeV]) at (-409.48145810783,-286.92322224923,-483.43059544891) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[6,27] 0.070480258133009 [GeV] -Cell[7,27] 0.13415760196336 [GeV] -Cell[7,28] 0.078812662964663 [GeV] -Cell[6,26] 0.04262885160843 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.32607937466946 (GeV) +Cell[7,26] 0.03776944125479 [GeV] +Cell[7,27] 0.10167086466202 [GeV] +Cell[7,28] 0.082313868877982 [GeV] +Cell[6,26] 0.085635307391288 [GeV] +Cell[6,25] 0.0012799294342413 [GeV] +### Total energy deposition in calorimeter by a source track in 5 cells : 0.30866941162032 (GeV) Source track ID 3593 (pi-,0.8538005564915[GeV]) at (323.89398087016,-380.91034267407,732.71598410083) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[11,20] 1.9028834537949e-07 [GeV] -Cell[14,40] 0.023070529717012 [GeV] -Cell[14,41] 0.076521857751481 [GeV] -Cell[15,41] 1.3323877965377e-09 [GeV] -Cell[15,40] 1.0910079254245e-08 [GeV] -Cell[14,42] 0.043009694539851 [GeV] -Cell[13,6] 0.00078813820126605 [GeV] -Cell[14,39] 4.508766063331e-05 [GeV] -Cell[14,45] 0.0010375311129433 [GeV] -Cell[12,18] 3.7066151492127e-07 [GeV] -Cell[11,31] 3.5095780622214e-05 [GeV] -Cell[13,43] 0.0018813299549912 [GeV] -Cell[13,44] 0.00035756890813298 [GeV] -Cell[13,7] 9.7679244847313e-05 [GeV] -Cell[15,21] 0.0001674813433217 [GeV] -Cell[13,41] 0.13704688513508 [GeV] -Cell[16,43] 0.00064959116110924 [GeV] -Cell[11,12] 4.4830667320639e-08 [GeV] -Cell[13,40] 0.087018496687652 [GeV] -Cell[15,15] 5.6988554673467e-05 [GeV] -Cell[13,42] 0.0070304418155064 [GeV] -Cell[12,15] 1.2680451734923e-05 [GeV] -Cell[12,25] 1.7170777486172e-05 [GeV] -Cell[15,22] 9.4370149017777e-06 [GeV] -Cell[11,11] 2.1350137534455e-06 [GeV] -Cell[13,32] 5.3967110579833e-06 [GeV] -Cell[16,42] 2.4111268362503e-07 [GeV] -Cell[14,5] 1.0945950634778e-10 [GeV] -Cell[13,39] 4.6410163689075e-05 [GeV] -Cell[15,44] 0.16902835301795 [GeV] -Cell[12,12] 3.8787577068433e-08 [GeV] -Cell[14,44] 0.046417441213368 [GeV] -Cell[11,30] 1.0090182855492e-05 [GeV] -Cell[14,43] 0.053757736722344 [GeV] -Cell[14,6] 0.00010584740014622 [GeV] -Cell[18,3] 0.00049740563719504 [GeV] -### Total energy deposition in calorimeter by a source track in 36 cells : 0.64872539990832 (GeV) +Cell[6,10] 0.00044842258877178 [GeV] +Cell[14,40] 0.0092036801352739 [GeV] +Cell[14,41] 0.11770024383046 [GeV] +Cell[15,1] 3.7177209160291e-05 [GeV] +Cell[15,41] 0.0026456239839129 [GeV] +Cell[15,40] 0.0011265505337536 [GeV] +Cell[14,42] 0.22139766883515 [GeV] +Cell[13,6] 4.5504092908232e-05 [GeV] +Cell[15,42] 0.0023697049095644 [GeV] +Cell[14,45] 0.0081457305708334 [GeV] +Cell[12,44] 0.00012398466378329 [GeV] +Cell[13,45] 0.00046741800355609 [GeV] +Cell[15,35] 2.5001664384035e-05 [GeV] +Cell[14,36] 0.00034845693245677 [GeV] +Cell[12,40] 7.6411140526034e-09 [GeV] +Cell[13,43] 0.00031420669276133 [GeV] +Cell[13,44] 0.00027379739845549 [GeV] +Cell[14,21] 3.4076563315466e-07 [GeV] +Cell[15,21] 3.9139849832281e-08 [GeV] +Cell[15,17] 5.5573007557541e-08 [GeV] +Cell[13,41] 0.085154968990182 [GeV] +Cell[16,5] 0.0022243820215078 [GeV] +Cell[12,0] 0.0013188271218449 [GeV] +Cell[12,1] 4.0140570876019e-06 [GeV] +Cell[17,13] 0.00024067346358026 [GeV] +Cell[17,10] 0.0019099781253843 [GeV] +Cell[17,11] 1.2165401130915e-11 [GeV] +Cell[19,46] 1.1734905769117e-05 [GeV] +Cell[16,18] 1.2351930001842e-07 [GeV] +Cell[14,30] 3.3392644836567e-06 [GeV] +Cell[13,40] 5.0849229410233e-08 [GeV] +Cell[19,0] 1.0629208838964e-07 [GeV] +Cell[19,47] 0.0030238864995935 [GeV] +Cell[19,45] 5.008449734305e-05 [GeV] +Cell[13,42] 0.0092164754341674 [GeV] +Cell[14,43] 0.0031564635597728 [GeV] +Cell[14,44] 0.0010264752552914 [GeV] +Cell[14,31] 6.8018369784113e-06 [GeV] +Cell[16,6] 1.7924294222667e-05 [GeV] +Cell[15,43] 8.8634677007349e-06 [GeV] +Cell[16,44] 0.0077323478543074 [GeV] +Cell[16,45] 0.00045997506982204 [GeV] +Cell[17,43] 0.00022785987502095 [GeV] +Cell[17,44] 3.6500405985862e-06 [GeV] +Cell[11,23] 0.0049348751824475 [GeV] +Cell[10,23] 0.012146252440143 [GeV] +Cell[10,22] 0.00269403571543 [GeV] +Cell[16,46] 0.0016273520253136 [GeV] +Cell[15,45] 0.0060421903315834 [GeV] +Cell[15,44] 0.01272998754229 [GeV] +Cell[15,36] 0.0033973312738498 [GeV] +Cell[15,16] 0.00034512417874873 [GeV] +Cell[13,1] 1.1329486301292e-07 [GeV] +Cell[10,24] 0.004823142876435 [GeV] +Cell[12,45] 6.1572539242547e-05 [GeV] +Cell[10,0] 7.8119429235812e-06 [GeV] +Cell[18,11] 3.9639417082071e-11 [GeV] +Cell[18,12] 6.0926487947199e-07 [GeV] +Cell[16,19] 1.8391356443317e-06 [GeV] +Cell[16,12] 3.1267170765204e-05 [GeV] +Cell[16,10] 5.9468834690051e-05 [GeV] +Cell[15,19] 0.0016037143340623 [GeV] +Cell[16,41] 5.4490836122227e-05 [GeV] +Cell[19,21] 9.0601116244216e-06 [GeV] +Cell[18,23] 3.9429045864381e-07 [GeV] +Cell[18,24] 4.0447098144796e-06 [GeV] +Cell[17,12] 1.2805685400963e-11 [GeV] +Cell[13,5] 2.9765107203275e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 68 cells : 0.53107706466321 (GeV) Source track ID 4077 (kaon-,0.64180535487225[GeV]) at (450.23850350755,-217.45181065993,320.00085682095) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[7,13] 0.00031188972378686 [GeV] -Cell[7,42] 4.5429296733346e-06 [GeV] -Cell[9,38] 5.5077954605167e-06 [GeV] -Cell[10,43] 0.0019281060961609 [GeV] -Cell[7,14] 2.8956402675249e-06 [GeV] -Cell[9,19] 0.0079581708178053 [GeV] -Cell[6,13] 4.6420263625691e-05 [GeV] -Cell[9,18] 0.00074510469242318 [GeV] -Cell[10,17] 3.0727797968666e-07 [GeV] -Cell[13,27] 6.4237114941079e-07 [GeV] -Cell[13,28] 1.8395815359668e-05 [GeV] -Cell[12,44] 0.0024241087057113 [GeV] -Cell[8,32] 0.00050094867993323 [GeV] -Cell[10,29] 0.0027312513028236 [GeV] -Cell[10,30] 9.5068723901704e-05 [GeV] -Cell[11,42] 0.0041484767705158 [GeV] -Cell[11,43] 0.05650869809955 [GeV] -Cell[11,44] 0.33086769649101 [GeV] -Cell[11,41] 8.9341305056223e-09 [GeV] -Cell[12,43] 3.427652255823e-07 [GeV] -Cell[9,36] 7.8325683716685e-12 [GeV] -Cell[12,35] 1.4087626215769e-05 [GeV] -Cell[11,47] 0.00012448630607605 [GeV] -Cell[11,46] 0.0029076012861822 [GeV] -Cell[12,47] 8.5294386428359e-05 [GeV] -Cell[11,0] 0.00075832583549322 [GeV] -Cell[12,0] 0.0026006516662967 [GeV] -Cell[12,46] 0.0034697828005142 [GeV] -Cell[11,16] 0.00027124955063482 [GeV] -Cell[7,46] 6.8519607499866e-05 [GeV] -Cell[10,46] 1.1420667375205e-05 [GeV] -Cell[11,45] 0.015602619878958 [GeV] -Cell[7,33] 0.00026219345742379 [GeV] -Cell[7,32] 0.0010022753004264 [GeV] -Cell[6,14] 7.9104307224043e-07 [GeV] -Cell[14,30] 3.6152452230453e-07 [GeV] -Cell[10,42] 2.2486719535664e-05 [GeV] -Cell[12,45] 0.0094419100979204 [GeV] -Cell[11,24] 1.0428215959109e-05 [GeV] -Cell[16,9] 3.391558493604e-09 [GeV] -Cell[9,17] 0.0001820558498606 [GeV] -Cell[13,10] 2.9137684136913e-06 [GeV] -Cell[12,10] 1.6360394261483e-05 [GeV] -Cell[13,9] 0.00030866198646777 [GeV] -Cell[15,9] 2.2323210941977e-09 [GeV] -Cell[15,10] 2.1602298397738e-07 [GeV] -Cell[15,11] 9.1527984779987e-06 [GeV] -Cell[7,47] 0.00035702236219572 [GeV] -Cell[10,44] 0.00018801236097283 [GeV] -Cell[9,37] 0.00075112599761894 [GeV] -Cell[13,1] 3.418994957201e-06 [GeV] -Cell[13,0] 0.00043090601218478 [GeV] -### Total energy deposition in calorimeter by a source track in 52 cells : 0.44720292204714 (GeV) +Cell[9,8] 0.0014934058096714 [GeV] +Cell[10,43] 8.0386988389591e-05 [GeV] +Cell[12,44] 1.2270174920559e-10 [GeV] +Cell[11,43] 0.00023320797745964 [GeV] +Cell[11,44] 0.20530252404214 [GeV] +Cell[14,19] 0.0015557319543307 [GeV] +Cell[11,46] 0.0056819309867073 [GeV] +Cell[8,17] 0.0033625542097428 [GeV] +Cell[10,46] 0.0026192010531731 [GeV] +Cell[11,45] 0.39185479689164 [GeV] +Cell[13,10] 0.00052212130287317 [GeV] +Cell[10,22] 0.0011885284148953 [GeV] +Cell[10,45] 0.00094075832555934 [GeV] +Cell[10,14] 0.00036509583088275 [GeV] +Cell[9,21] 0.0003531053033779 [GeV] +Cell[14,13] 0.00049363999094996 [GeV] +Cell[10,44] 0.00095669365831546 [GeV] +Cell[12,45] 0.00068855423812397 [GeV] +Cell[10,15] 0.0010401336611323 [GeV] +Cell[0,27] 0.00082451548221447 [GeV] +### Total energy deposition in calorimeter by a source track in 20 cells : 0.61955688624428 (GeV) Source track ID 3471 (pi+,0.59808405474383[GeV]) at (-416.32004411225,276.90724235811,369.2446113153) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[8,9] 0.00032564335165353 [GeV] -Cell[7,9] 1.9629272719612e-07 [GeV] -Cell[8,8] 1.6589183360338e-12 [GeV] -Cell[7,26] 0.00031195795629007 [GeV] -Cell[8,25] 0.00058492855022277 [GeV] -Cell[11,19] 0.08332319965617 [GeV] -Cell[11,20] 0.0035344693025648 [GeV] -Cell[12,18] 0.14868220541716 [GeV] -Cell[9,35] 1.8920617003459e-05 [GeV] -Cell[11,16] 8.8527735786784e-05 [GeV] -Cell[12,20] 0.0012661940651716 [GeV] -Cell[12,19] 0.0616222697623 [GeV] -Cell[11,17] 0.0020690997765497 [GeV] -Cell[10,2] 4.3269234436139e-07 [GeV] -Cell[12,17] 0.0086843291120518 [GeV] -Cell[10,4] 0.00021996011845556 [GeV] -Cell[10,3] 0.000107410067351 [GeV] -Cell[10,5] 4.8582153976895e-07 [GeV] -Cell[12,16] 1.1452559865575e-06 [GeV] -Cell[11,18] 0.08476736302203 [GeV] -### Total energy deposition in calorimeter by a source track in 20 cells : 0.39560873857501 (GeV) +Cell[13,35] 1.0306455949035e-05 [GeV] +Cell[8,14] 0.00063981188479795 [GeV] +Cell[11,19] 0.051224104335767 [GeV] +Cell[11,20] 2.3023389871923e-08 [GeV] +Cell[11,21] 5.3597526857629e-08 [GeV] +Cell[13,24] 8.3541456842795e-07 [GeV] +Cell[12,3] 1.3640916336044e-06 [GeV] +Cell[14,35] 3.8918557503052e-05 [GeV] +Cell[12,18] 0.024450014203294 [GeV] +Cell[14,23] 1.0457717542067e-07 [GeV] +Cell[11,31] 0.00026656751063075 [GeV] +Cell[5,18] 0.00031691737303171 [GeV] +Cell[13,22] 0.0038385584898789 [GeV] +Cell[12,21] 0.0012622343521516 [GeV] +Cell[14,20] 6.6190624761475e-07 [GeV] +Cell[14,21] 0.00012912552670286 [GeV] +Cell[14,19] 0.0013641464387439 [GeV] +Cell[14,22] 0.00027387099913688 [GeV] +Cell[13,20] 0.014349070828706 [GeV] +Cell[18,14] 3.419752465561e-08 [GeV] +Cell[18,16] 9.3643583365974e-06 [GeV] +Cell[18,15] 2.3699084936197e-06 [GeV] +Cell[19,44] 2.5028485746589e-05 [GeV] +Cell[12,20] 0.019820988916971 [GeV] +Cell[12,19] 0.081021410087722 [GeV] +Cell[10,46] 0.0015169267750946 [GeV] +Cell[8,19] 1.941427148995e-05 [GeV] +Cell[13,21] 0.0095230792963367 [GeV] +Cell[11,17] 0.00029971064897597 [GeV] +Cell[19,45] 3.2844985893462e-05 [GeV] +Cell[13,18] 0.0088955048220113 [GeV] +Cell[12,17] 0.0083855918929134 [GeV] +Cell[13,19] 0.0095579120506707 [GeV] +Cell[13,17] 0.00034281716439122 [GeV] +Cell[16,6] 5.3930679485688e-05 [GeV] +Cell[9,46] 0.0042227664914632 [GeV] +Cell[9,0] 0.0036208382136304 [GeV] +Cell[12,4] 3.185021815284e-06 [GeV] +Cell[13,34] 3.214945027139e-07 [GeV] +Cell[11,37] 0.00074365547706043 [GeV] +Cell[13,23] 0.0011319691821888 [GeV] +Cell[7,0] 1.6657694504829e-05 [GeV] +Cell[18,17] 1.9932145369239e-07 [GeV] +Cell[10,0] 4.2389419977553e-05 [GeV] +Cell[11,30] 0.0020034448605215 [GeV] +Cell[14,34] 0.00065722722698422 [GeV] +Cell[19,15] 3.0674095796712e-10 [GeV] +Cell[11,18] 0.003113900593039 [GeV] +### Total energy deposition in calorimeter by a source track in 48 cells : 0.25323017341277 (GeV) Source track ID 4046 (kaon+,1.7504084838082[GeV]) at (77.075229855979,494.02369269363,1962.8865841797) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[19,10] 0.042275093132378 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.042275093132378 (GeV) +Cell[19,10] 0.044851160969579 [GeV] +### Total energy deposition in calorimeter by a source track in 1 cells : 0.044851160969579 (GeV) Source track ID 3609 (pi+,3.7100431144715[GeV]) at (209.16295350188,454.14849871201,1945.3297302441) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[19,8] 0.13450265364378 [GeV] -### Total energy deposition in calorimeter by a source track in 1 cells : 0.13450265364378 (GeV) +Cell[7,28] 0.0072879909247641 [GeV] +Cell[17,5] 0.00055967911976764 [GeV] +Cell[19,11] 3.1816161704e-05 [GeV] +Cell[16,33] 0.00048092184681195 [GeV] +Cell[17,9] 0.0071262694935807 [GeV] +Cell[15,24] 3.1395602173916e-06 [GeV] +Cell[16,37] 0.00033147375118858 [GeV] +Cell[14,29] 0.065587397711132 [GeV] +Cell[19,37] 0.00055797369331685 [GeV] +Cell[18,5] 0.00019525898170829 [GeV] +Cell[17,15] 5.0187576911412e-05 [GeV] +Cell[17,14] 2.7700882858085e-05 [GeV] +Cell[17,10] 0.00017152390317801 [GeV] +Cell[18,39] 2.986644176417e-11 [GeV] +Cell[17,17] 0.00097386033161214 [GeV] +Cell[18,36] 1.8692317731507e-05 [GeV] +Cell[17,8] 8.0751068599056e-06 [GeV] +Cell[18,13] 1.4873851905577e-05 [GeV] +Cell[19,42] 2.8557996373593e-06 [GeV] +Cell[19,39] 0.0069968773563248 [GeV] +Cell[18,38] 5.7374165862711e-10 [GeV] +Cell[19,38] 0.021663331090941 [GeV] +Cell[7,29] 1.2001593177047e-09 [GeV] +Cell[15,23] 4.4662476739177e-10 [GeV] +Cell[18,41] 1.0900752386078e-08 [GeV] +Cell[17,43] 0.00022080482878141 [GeV] +Cell[17,42] 5.1234664169897e-08 [GeV] +Cell[19,5] 2.4016469524213e-10 [GeV] +Cell[16,32] 5.4613040587128e-06 [GeV] +Cell[18,37] 0.00012375712418111 [GeV] +Cell[18,43] 0.00098355939023315 [GeV] +Cell[18,27] 0.00088442002282068 [GeV] +Cell[18,26] 0.00013791195439785 [GeV] +Cell[15,36] 0.00030881416907457 [GeV] +Cell[19,34] 0.0011852186536325 [GeV] +Cell[18,11] 3.0116517579472e-05 [GeV] +Cell[18,10] 0.00070155770716656 [GeV] +Cell[19,10] 0.0083900976417026 [GeV] +Cell[18,9] 2.1128386947908e-05 [GeV] +Cell[15,37] 2.0076997888964e-05 [GeV] +Cell[19,36] 6.1586455849465e-06 [GeV] +Cell[19,35] 0.00010180675541051 [GeV] +Cell[16,28] 3.897084883647e-06 [GeV] +Cell[16,38] 0.0018187828754747 [GeV] +Cell[16,27] 1.8131430522772e-05 [GeV] +Cell[17,41] 0.00078558117743117 [GeV] +Cell[16,31] 3.5388346418586e-08 [GeV] +Cell[19,17] 0.00047525688761198 [GeV] +Cell[19,25] 1.7252559700864e-08 [GeV] +Cell[15,25] 3.0523180660225e-05 [GeV] +Cell[19,8] 1.0122496077088 [GeV] +Cell[19,9] 0.050437137451 [GeV] +Cell[15,27] 4.332039214205e-06 [GeV] +Cell[15,26] 0.00087211542148735 [GeV] +Cell[19,41] 0.00010614971878004 [GeV] +Cell[19,7] 0.016217607024617 [GeV] +Cell[18,7] 1.2693055104819e-05 [GeV] +Cell[19,26] 2.0676317519928e-05 [GeV] +Cell[19,27] 0.00099730638093627 [GeV] +Cell[18,25] 2.4320491206709e-08 [GeV] +Cell[18,42] 0.0004690940358247 [GeV] +Cell[16,21] 7.6999339216854e-06 [GeV] +Cell[18,8] 0.00093585060925591 [GeV] +Cell[19,12] 3.0096234258963e-05 [GeV] +Cell[19,6] 0.00014126130917737 [GeV] +Cell[18,1] 7.3330059668024e-05 [GeV] +### Total energy deposition in calorimeter by a source track in 66 cells : 1.2109180610851 (GeV) Source track ID 3923 (pi-,0.4555594426188[GeV]) at (-499.8642530552,-11.650258261694,-201.63727032995) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[9,27] 0.00032417829108249 [GeV] -Cell[9,20] 0.00092755328107376 [GeV] -Cell[8,21] 0.0019593611369256 [GeV] -Cell[7,42] 7.4677257089206e-10 [GeV] -Cell[9,31] 1.6133844167143e-06 [GeV] -Cell[9,38] 0.00018642366489985 [GeV] -Cell[8,28] 0.00010352285882948 [GeV] -Cell[9,28] 1.5515064092142e-08 [GeV] -Cell[7,26] 1.3853423297405e-11 [GeV] -Cell[7,43] 1.5150142832113e-05 [GeV] -Cell[7,44] 0.00034981337404793 [GeV] -Cell[8,26] 0.0028413125898826 [GeV] -Cell[8,25] 0.010421271134933 [GeV] -Cell[9,18] 0.0002386354464386 [GeV] -Cell[10,21] 0.0012002852514995 [GeV] -Cell[9,3] 3.0560293555027e-05 [GeV] -Cell[10,28] 0.00099989716565517 [GeV] -Cell[9,2] 0.00066018599853305 [GeV] -Cell[18,45] 8.2787241262849e-06 [GeV] -Cell[12,47] 0.00012620552967996 [GeV] -Cell[18,44] 0.00053410452353819 [GeV] -Cell[13,12] 7.0689964923076e-06 [GeV] -Cell[9,32] 6.6459989341183e-07 [GeV] -Cell[9,15] 0.00023738741955008 [GeV] -Cell[9,14] 2.2196240014296e-05 [GeV] -Cell[9,24] 0.0022111919243092 [GeV] -Cell[10,16] 0.00057575548020588 [GeV] -Cell[9,1] 0.00067989005412937 [GeV] -Cell[10,2] 3.0628912099928e-09 [GeV] -Cell[9,26] 0.0044840319149878 [GeV] -Cell[10,27] 2.1987222120629e-05 [GeV] -Cell[9,23] 0.0021100815086933 [GeV] -Cell[9,22] 4.6760268050321e-05 [GeV] -Cell[8,22] 0.098911988009557 [GeV] -Cell[8,24] 0.12921094916753 [GeV] -Cell[8,23] 0.0014893926084081 [GeV] -Cell[9,25] 0.0024545160525865 [GeV] -Cell[10,23] 0.00012777633102007 [GeV] -Cell[13,11] 1.0191064706305e-05 [GeV] -Cell[10,22] 4.6340759727173e-05 [GeV] -Cell[10,25] 1.6275469824905e-05 [GeV] -Cell[10,15] 2.1234712520481e-06 [GeV] -Cell[10,1] 0.00035692092969717 [GeV] -Cell[13,10] 3.893583198078e-08 [GeV] -Cell[13,14] 8.4025326359551e-06 [GeV] -Cell[11,28] 6.5988242738513e-07 [GeV] -Cell[9,39] 0.001056564661584 [GeV] -Cell[9,40] 7.107378667115e-08 [GeV] -Cell[7,39] 1.5889503760263e-05 [GeV] -Cell[9,21] 0.00057914157505468 [GeV] -Cell[8,1] 6.5464452769675e-06 [GeV] -Cell[8,2] 1.0775608604149e-05 [GeV] -Cell[8,27] 0.0012495143455626 [GeV] -### Total energy deposition in calorimeter by a source track in 53 cells : 0.26687946618781 (GeV) +Cell[7,22] 2.3234708971813e-06 [GeV] +Cell[8,26] 0.0013687134208936 [GeV] +Cell[8,25] 0.19104013464275 [GeV] +Cell[7,23] 0.00073733381308239 [GeV] +Cell[7,20] 5.8825048654398e-10 [GeV] +Cell[9,24] 0.0006890015306451 [GeV] +Cell[9,26] 0.0020243185187847 [GeV] +Cell[9,23] 0.0001213684163007 [GeV] +Cell[7,21] 2.1735796508437e-08 [GeV] +Cell[8,24] 0.14599217077405 [GeV] +Cell[8,23] 1.8382233683951e-06 [GeV] +Cell[9,25] 0.0016857676116507 [GeV] +Cell[8,27] 1.3331096852198e-08 [GeV] +Cell[7,24] 8.2232471904717e-06 [GeV] +### Total energy deposition in calorimeter by a source track in 14 cells : 0.34367122932476 (GeV) Source track ID 3608 (pi-,0.29720376919729[GeV]) at (-494.19881421201,75.944269246857,1857.4203947482) Original primary track ID 29 (unknown,1.6025887774154[GeV]) -Cell[18,30] 9.5796170592166e-06 [GeV] -Cell[18,41] 2.5652252952568e-07 [GeV] -Cell[18,29] 1.3544722030474e-06 [GeV] -Cell[19,22] 0.061201839061615 [GeV] -Cell[19,23] 0.13479865088066 [GeV] -Cell[19,24] 0.0010615998593892 [GeV] -Cell[18,24] 0.00066286603485008 [GeV] -Cell[18,23] 0.0015202021578363 [GeV] -Cell[19,25] 0.00027190109893491 [GeV] -Cell[19,21] 0.0044333235882619 [GeV] -Cell[18,22] 0.00030616552242668 [GeV] -Cell[18,21] 0.0004436338564467 [GeV] -Cell[19,26] 0.002792246559013 [GeV] -### Total energy deposition in calorimeter by a source track in 13 cells : 0.20750361923122 (GeV) +Cell[19,24] 5.8656461834062e-05 [GeV] +Cell[19,23] 0.19424639040696 [GeV] +Cell[18,23] 0.0080230213430256 [GeV] +Cell[18,24] 1.7602738807909e-08 [GeV] +Cell[19,22] 0.042558803524654 [GeV] +Cell[18,22] 4.9717621209311e-08 [GeV] +### Total energy deposition in calorimeter by a source track in 6 cells : 0.24488693905684 (GeV) Source track ID 3929 (pi-,1.1276721321565[GeV]) at (-499.33508820627,25.777309518935,996.37249340675) Original primary track ID 25 (unknown,7.7728456153487[GeV]) -Cell[15,24] 0.0051484590219565 [GeV] -Cell[14,23] 0.0045038605670154 [GeV] -Cell[16,26] 0.00034863910073989 [GeV] -Cell[17,27] 4.5254369822487e-06 [GeV] -Cell[17,21] 2.1186408823496e-05 [GeV] -Cell[19,42] 2.3941588005982e-06 [GeV] -Cell[15,23] 0.20637264479703 [GeV] -Cell[15,25] 0.005181871855394 [GeV] -Cell[19,43] 9.1004394984338e-05 [GeV] -Cell[16,25] 0.0095797756991669 [GeV] -Cell[16,23] 0.12207294936627 [GeV] -Cell[17,25] 0.0042822987383506 [GeV] -Cell[17,26] 0.00033392851222686 [GeV] -Cell[18,25] 0.01350690582669 [GeV] -Cell[17,22] 0.0057129913576249 [GeV] -Cell[16,24] 0.11726462760571 [GeV] -Cell[18,26] 0.0015685644496132 [GeV] -Cell[18,24] 0.0037217488447496 [GeV] -Cell[18,23] 0.00013348558318762 [GeV] -Cell[19,25] 0.0042509669127628 [GeV] -Cell[18,22] 1.198598576309e-05 [GeV] -Cell[19,26] 1.1775328061958e-08 [GeV] -Cell[17,24] 0.18663950932891 [GeV] -Cell[17,23] 0.015298711998412 [GeV] -### Total energy deposition in calorimeter by a source track in 24 cells : 0.7060530477265 (GeV) +Cell[15,24] 0.074852282181507 [GeV] +Cell[14,23] 0.0072056977917646 [GeV] +Cell[15,23] 0.13008754105129 [GeV] +Cell[16,24] 0.21334973742567 [GeV] +Cell[17,25] 0.19968689686762 [GeV] +Cell[17,24] 0.0057576360338853 [GeV] +Cell[18,26] 0.14149823326006 [GeV] +Cell[19,26] 0.11534690552608 [GeV] +Cell[18,25] 0.089967361049838 [GeV] +### Total energy deposition in calorimeter by a source track in 9 cells : 0.97775229118771 (GeV) Source track ID 3704 (pi+,0.18780134579135[GeV]) at (-499.95942344436,-6.3698437332691,1557.4521199634) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[16,10] 0.00037673614956972 [GeV] -Cell[17,39] 0.0013797132772166 [GeV] -Cell[17,24] 0.091308389474789 [GeV] -### Total energy deposition in calorimeter by a source track in 3 cells : 0.093064838901575 (GeV) +Cell[17,24] 0.071035613914131 [GeV] +Cell[17,23] 0.00051099891 [GeV] +### Total energy deposition in calorimeter by a source track in 2 cells : 0.071546612824131 (GeV) Source track ID 3821 (pi-,0.62974065520122[GeV]) at (340.90934552212,365.7606022191,-1018.770933435) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[5,25] 3.1567526320941e-08 [GeV] -Cell[8,7] 0.00012589580374333 [GeV] -Cell[8,8] 5.5739979434293e-06 [GeV] -Cell[8,6] 0.00030355300823123 [GeV] -Cell[7,42] 0.00033266666636553 [GeV] -Cell[5,43] 0.00034905101366257 [GeV] -Cell[5,44] 1.3905696619076e-08 [GeV] -Cell[7,43] 0.0012956733607771 [GeV] -Cell[6,30] 5.8613414003048e-06 [GeV] -Cell[7,34] 0.0010901097990183 [GeV] -Cell[1,23] 7.2273147961823e-05 [GeV] -Cell[3,8] 0.0012669881906248 [GeV] -Cell[1,22] 3.6259237688796e-05 [GeV] -Cell[1,24] 5.6158213947128e-05 [GeV] -Cell[1,19] 1.4885030509504e-08 [GeV] -Cell[4,44] 0.00013026694766063 [GeV] -Cell[11,20] 2.165377169149e-06 [GeV] -Cell[4,2] 0.0058075340374861 [GeV] -Cell[4,9] 0.00041089534112007 [GeV] -Cell[2,24] 0.0023060660924335 [GeV] -Cell[4,8] 0.010700173266807 [GeV] -Cell[3,10] 2.42337815871e-05 [GeV] -Cell[5,18] 0.0017026252240693 [GeV] -Cell[4,18] 0.0002978796825835 [GeV] -Cell[4,19] 4.5914822287159e-05 [GeV] -Cell[4,45] 5.5691954948998e-05 [GeV] -Cell[5,19] 0.00080944683377304 [GeV] -Cell[10,36] 1.0569638106972e-09 [GeV] -Cell[10,37] 7.123092849497e-07 [GeV] -Cell[7,35] 0.0028732216073764 [GeV] -Cell[7,33] 2.9285956770764e-11 [GeV] -Cell[8,35] 0.01216422563201 [GeV] -Cell[2,25] 0.00087311269747386 [GeV] -Cell[2,26] 1.3155052759089e-05 [GeV] -Cell[0,23] 0.00036457444554185 [GeV] -Cell[0,16] 0.00011270808428857 [GeV] -Cell[7,6] 0.0067395699150105 [GeV] -Cell[2,47] 3.7217687349766e-09 [GeV] -Cell[0,20] 0.015193895566486 [GeV] -Cell[4,6] 0.20269033491041 [GeV] -Cell[4,7] 0.025930099703058 [GeV] -Cell[4,5] 0.0080739498695327 [GeV] -Cell[10,40] 5.7786419408103e-05 [GeV] -Cell[4,4] 0.0011387630941152 [GeV] -Cell[7,29] 1.2444914376829e-05 [GeV] -Cell[0,18] 3.1021772883832e-10 [GeV] -Cell[5,4] 7.1664442884867e-08 [GeV] -Cell[4,3] 0.016181891980618 [GeV] -Cell[3,47] 4.1831517592072e-09 [GeV] -Cell[8,34] 0.000281044802064 [GeV] -Cell[5,23] 0.0018420546028092 [GeV] -Cell[5,24] 8.146714960651e-05 [GeV] -Cell[10,1] 8.7047732376959e-06 [GeV] -Cell[1,21] 0.00057245370203179 [GeV] -Cell[0,21] 0.014198416638866 [GeV] -Cell[0,19] 0.0026765859285048 [GeV] -Cell[0,22] 0.0012303434712412 [GeV] -Cell[3,7] 0.0018524323789098 [GeV] -Cell[3,6] 0.00037276947236091 [GeV] -Cell[5,42] 1.0757888628632e-07 [GeV] -Cell[4,10] 1.2095204088837e-05 [GeV] -Cell[3,23] 7.2288094088435e-10 [GeV] -Cell[5,5] 7.2119945139093e-07 [GeV] -Cell[5,6] 0.00063534251305525 [GeV] -Cell[3,24] 7.0731330197304e-09 [GeV] -Cell[3,9] 2.3734012997011e-05 [GeV] -Cell[10,38] 2.1194608789301e-05 [GeV] -Cell[8,41] 1.2234277499374e-05 [GeV] -Cell[8,2] 5.9462332865223e-06 [GeV] -Cell[8,36] 1.3433189858915e-05 [GeV] -Cell[11,36] 1.9083989514002e-08 [GeV] -### Total energy deposition in calorimeter by a source track in 71 cells : 0.34349465328668 (GeV) +Cell[5,25] 0.001771774997856 [GeV] +Cell[8,29] 0.001204887896073 [GeV] +Cell[2,28] 0.00099178839054764 [GeV] +Cell[13,35] 0.002073069600549 [GeV] +Cell[9,38] 0.00011512904806295 [GeV] +Cell[9,28] 0.00040320823830346 [GeV] +Cell[7,45] 0.0010769614102979 [GeV] +Cell[7,44] 8.0902953050099e-07 [GeV] +Cell[6,24] 5.2371591678821e-05 [GeV] +Cell[8,46] 2.3370375856757e-11 [GeV] +Cell[4,11] 0.002997373838435 [GeV] +Cell[5,41] 3.8403089973144e-05 [GeV] +Cell[2,6] 0.0011026519540085 [GeV] +Cell[3,8] 0.0013938230940541 [GeV] +Cell[3,4] 1.1432075307312e-06 [GeV] +Cell[2,4] 0.00050514304825413 [GeV] +Cell[6,28] 0.0045458978840455 [GeV] +Cell[11,19] 1.739536121022e-06 [GeV] +Cell[13,6] 0.00021437791852986 [GeV] +Cell[12,30] 1.6701990460888e-06 [GeV] +Cell[13,31] 2.4052765235297e-05 [GeV] +Cell[12,31] 1.7437436940781e-07 [GeV] +Cell[4,1] 8.4273184766062e-06 [GeV] +Cell[4,9] 0.00023021859506434 [GeV] +Cell[3,17] 0.00062701314955302 [GeV] +Cell[3,20] 4.5690444938373e-05 [GeV] +Cell[2,8] 2.7543256891249e-06 [GeV] +Cell[3,16] 0.0014679553523566 [GeV] +Cell[3,18] 6.2609504966531e-06 [GeV] +Cell[2,18] 1.532428196515e-05 [GeV] +Cell[3,15] 0.00090151956906932 [GeV] +Cell[13,30] 6.664415847797e-05 [GeV] +Cell[14,9] 8.1324407801731e-08 [GeV] +Cell[14,8] 1.2495991541073e-08 [GeV] +Cell[9,29] 0.00037859720590658 [GeV] +Cell[8,43] 1.9759460701607e-07 [GeV] +Cell[8,44] 3.0609259847552e-06 [GeV] +Cell[7,46] 0.00054149909585101 [GeV] +Cell[8,45] 1.183168933494e-09 [GeV] +Cell[5,9] 0.00028679535332981 [GeV] +Cell[12,34] 0.00012711438188228 [GeV] +Cell[6,4] 6.953122629784e-05 [GeV] +Cell[8,0] 1.5720929077361e-06 [GeV] +Cell[5,10] 0.00072644206789789 [GeV] +Cell[5,8] 0.0016080846876348 [GeV] +Cell[4,6] 0.23159943879793 [GeV] +Cell[4,7] 0.0027726515718649 [GeV] +Cell[4,5] 0.00067390956485792 [GeV] +Cell[8,30] 0.00030880886689704 [GeV] +Cell[7,29] 0.0011749874175444 [GeV] +Cell[5,4] 3.9020419353619e-07 [GeV] +Cell[6,2] 3.2392893859651e-05 [GeV] +Cell[3,7] 0.00016285378204418 [GeV] +Cell[8,31] 1.3050507637672e-05 [GeV] +Cell[5,15] 3.399724859878e-05 [GeV] +Cell[14,32] 7.7264985520742e-11 [GeV] +Cell[5,11] 0.0019337922035156 [GeV] +Cell[7,24] 2.8912740875967e-05 [GeV] +Cell[5,7] 0.0021537709253348 [GeV] +Cell[3,6] 0.00035907488823898 [GeV] +Cell[13,34] 5.1802783448238e-06 [GeV] +Cell[9,39] 0.00014476146479137 [GeV] +Cell[11,37] 0.0019616811847693 [GeV] +Cell[13,36] 1.5850286727073e-05 [GeV] +Cell[16,22] 7.630733307451e-09 [GeV] +Cell[10,47] 3.9682807808276e-05 [GeV] +Cell[4,25] 0.0029959268800992 [GeV] +Cell[8,41] 7.3939330109852e-05 [GeV] +Cell[2,5] 0.045364421015114 [GeV] +Cell[1,35] 4.4040061766282e-08 [GeV] +Cell[1,39] 0.0048149739694241 [GeV] +Cell[2,7] 0.0011388422123927 [GeV] +Cell[14,33] 1.1751270358218e-06 [GeV] +Cell[8,42] 7.6391459151637e-06 [GeV] +Cell[1,7] 0.00098516698989988 [GeV] +Cell[1,28] 4.845796357688e-05 [GeV] +Cell[1,6] 8.2836127734595e-05 [GeV] +Cell[2,39] 0.00051199045713278 [GeV] +Cell[5,14] 0.0015901548655207 [GeV] +Cell[14,4] 0.0011588500937089 [GeV] +Cell[5,6] 0.0028061736358538 [GeV] +Cell[3,5] 0.0039964919991834 [GeV] +Cell[13,5] 0.00068699918879076 [GeV] +Cell[11,18] 1.1697616922902e-05 [GeV] +Cell[5,5] 0.001827454309921 [GeV] +Cell[7,30] 0.0002263252441326 [GeV] +### Total energy deposition in calorimeter by a source track in 86 cells : 0.33737600447419 (GeV) Source track ID 3822 (pi+,3.2625240289178[GeV]) at (499.98882209137,-3.3433192617389,-1674.3847686845) Original primary track ID 27 (unknown,1.8699577628705[GeV]) -Cell[1,47] 0.15990184920802 [GeV] -Cell[1,0] 0.0069546114963149 [GeV] -Cell[0,47] 0.18025369288712 [GeV] -Cell[0,0] 0.0087394337235766 [GeV] -### Total energy deposition in calorimeter by a source track in 4 cells : 0.35584958731504 (GeV) +Cell[1,47] 0.1670104572359 [GeV] +Cell[1,18] 0.0016721954100938 [GeV] +Cell[0,0] 0.00099286468457353 [GeV] +Cell[0,47] 0.18023055875798 [GeV] +### Total energy deposition in calorimeter by a source track in 4 cells : 0.34990607608855 (GeV) >>> Summary of Event 0 Tracker hits -------------------------------------------------------------- -1286 hits are stored in RE01TrackerHitsCollection. +1443 hits are stored in RE01TrackerHitsCollection. Calorimeter hits -------------------------------------------------------------- -934 hits are stored in RE01CalorimeterHitsCollection. - Total energy deposition in calorimeter : 145.02210566157 (GeV) +938 hits are stored in RE01CalorimeterHitsCollection. + Total energy deposition in calorimeter : 147.96006829881 (GeV) Trajectories in tracker -------------------------------------------------------------- diff --git a/examples/extended/runAndEvent/RE02/run.out b/examples/extended/runAndEvent/RE02/run.out index 3e53075048..d5b7c2a45d 100644 --- a/examples/extended/runAndEvent/RE02/run.out +++ b/examples/extended/runAndEvent/RE02/run.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -151,16 +151,6 @@ gamma gamma ------------------------------------------- G4SDKineticEnergyFilter:: gammaE filter LowE 1 MeV HighE 10 MeV -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 /run/verbose 2 #/event/verbose 0 @@ -901,6 +891,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -1268,7 +1271,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=0s Real=0.01s Sys=0s + User=0s Real=0s Sys=0s PrimitiveScorer RUN PhantomSD,totalEDep Number of entries 11 copy no.: 970200 Run Value : 0.356 diff --git a/examples/extended/runAndEvent/RE04/exampleRE04.out b/examples/extended/runAndEvent/RE04/exampleRE04.out index 07d54d957e..39a26289e5 100644 --- a/examples/extended/runAndEvent/RE04/exampleRE04.out +++ b/examples/extended/runAndEvent/RE04/exampleRE04.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -121,16 +121,6 @@ The materials defined are : G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -815,6 +805,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 >>> Summary of Event 0 >>> Summary of Event 1 diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.out b/examples/extended/runAndEvent/RE05/exampleRE05.out index c1e2417694..939ef1c33b 100644 --- a/examples/extended/runAndEvent/RE05/exampleRE05.out +++ b/examples/extended/runAndEvent/RE05/exampleRE05.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -13,16 +13,6 @@ <<< Reference Physics List QBBC G4HEPEvtInterface - pythia_event.data is open. G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= ### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0 Visualization Manager instantiating with verbosity "warnings (3)"... Visualization Manager initialising... @@ -747,6 +737,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 Region -- -- appears in world volume This region is in the mass world. @@ -828,9 +831,9 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics ### Run 0 start. G4HEPEvtInterface - reading 484 HEPEvt particles from pythia_event.data. >>> Event 0 - 39 hits are stored in RE05TrackerHitsCollection. - 45 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.9666986722134 (GeV) + 35 hits are stored in RE05TrackerHitsCollection. + 38 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.2095767426823 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data. >>> Event 1 @@ -848,19 +851,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.53607571471806 (GeV) + Total energy deposition in calorimeter : 0.53023804970911 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 945 HEPEvt particles from pythia_event.data. >>> Event 4 - 96 hits are stored in RE05TrackerHitsCollection. - 67 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 16.447607615737 (GeV) + 100 hits are stored in RE05TrackerHitsCollection. + 57 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 9.6977778627139 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 837 HEPEvt particles from pythia_event.data. >>> Event 5 - 37 hits are stored in RE05TrackerHitsCollection. + 38 hits are stored in RE05TrackerHitsCollection. 7 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.8932236689577 (GeV) + Total energy deposition in calorimeter : 2.8924168417941 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data. >>> Event 6 @@ -870,33 +873,33 @@ G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 627 HEPEvt particles from pythia_event.data. >>> Event 7 - 31 hits are stored in RE05TrackerHitsCollection. - 30 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.4372538490938 (GeV) + 33 hits are stored in RE05TrackerHitsCollection. + 32 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.1821877264838 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 682 HEPEvt particles from pythia_event.data. >>> Event 8 - 70 hits are stored in RE05TrackerHitsCollection. - 57 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 9.5044121083593 (GeV) + 62 hits are stored in RE05TrackerHitsCollection. + 46 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.5298785926338 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 330 HEPEvt particles from pythia_event.data. >>> Event 9 - 14 hits are stored in RE05TrackerHitsCollection. - 22 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.6036019440222 (GeV) + 11 hits are stored in RE05TrackerHitsCollection. + 20 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.8478297719107 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1060 HEPEvt particles from pythia_event.data. >>> Event 10 - 134 hits are stored in RE05TrackerHitsCollection. - 56 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.8217609867051 (GeV) + 148 hits are stored in RE05TrackerHitsCollection. + 67 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.453922447175 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1010 HEPEvt particles from pythia_event.data. >>> Event 11 0 hits are stored in RE05TrackerHitsCollection. 17 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.8701941893237 (GeV) + Total energy deposition in calorimeter : 2.8662119559917 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data. >>> Event 12 @@ -906,15 +909,15 @@ G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 815 HEPEvt particles from pythia_event.data. >>> Event 13 - 66 hits are stored in RE05TrackerHitsCollection. - 61 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.6495806096561 (GeV) + 88 hits are stored in RE05TrackerHitsCollection. + 54 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.2902495007215 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 702 HEPEvt particles from pythia_event.data. >>> Event 14 - 54 hits are stored in RE05TrackerHitsCollection. - 41 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 8.1446535888841 (GeV) + 100 hits are stored in RE05TrackerHitsCollection. + 42 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.9639734673725 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data. >>> Event 15 @@ -924,15 +927,15 @@ G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 405 HEPEvt particles from pythia_event.data. >>> Event 16 - 18 hits are stored in RE05TrackerHitsCollection. - 29 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.3716236080779 (GeV) + 34 hits are stored in RE05TrackerHitsCollection. + 34 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.7015800794565 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 533 HEPEvt particles from pythia_event.data. >>> Event 17 0 hits are stored in RE05TrackerHitsCollection. 5 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.96155893349556 (GeV) + Total energy deposition in calorimeter : 0.96241124126166 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data. >>> Event 18 @@ -942,15 +945,15 @@ G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data. >>> Event 19 - 36 hits are stored in RE05TrackerHitsCollection. + 35 hits are stored in RE05TrackerHitsCollection. 36 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 9.7839757936965 (GeV) + Total energy deposition in calorimeter : 9.9945761972106 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 906 HEPEvt particles from pythia_event.data. >>> Event 20 - 55 hits are stored in RE05TrackerHitsCollection. - 53 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.6995220165957 (GeV) + 73 hits are stored in RE05TrackerHitsCollection. + 49 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.7746414744164 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data. >>> Event 21 @@ -960,9 +963,9 @@ G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 387 HEPEvt particles from pythia_event.data. >>> Event 22 - 28 hits are stored in RE05TrackerHitsCollection. - 27 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.4440230230532 (GeV) + 38 hits are stored in RE05TrackerHitsCollection. + 33 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.9730447196949 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 359 HEPEvt particles from pythia_event.data. >>> Event 23 @@ -980,7 +983,7 @@ G4HEPEvtInterface - reading 786 HEPEvt particles from pythia_event.data. >>> Event 25 0 hits are stored in RE05TrackerHitsCollection. 7 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 1.2187155364295 (GeV) + Total energy deposition in calorimeter : 1.2179448248261 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data. >>> Event 26 @@ -991,14 +994,14 @@ G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data. G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data. >>> Event 27 0 hits are stored in RE05TrackerHitsCollection. - 45 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.0812519134798 (GeV) + 51 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.9778734101069 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 694 HEPEvt particles from pythia_event.data. >>> Event 28 0 hits are stored in RE05TrackerHitsCollection. 8 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 1.4184590585474 (GeV) + Total energy deposition in calorimeter : 1.4173054460536 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data. >>> Event 29 @@ -1008,15 +1011,15 @@ G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 425 HEPEvt particles from pythia_event.data. >>> Event 30 - 37 hits are stored in RE05TrackerHitsCollection. - 35 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.3263733008898 (GeV) + 42 hits are stored in RE05TrackerHitsCollection. + 28 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 3.7752371484442 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 466 HEPEvt particles from pythia_event.data. >>> Event 31 - 30 hits are stored in RE05TrackerHitsCollection. - 38 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.6367743337639 (GeV) + 23 hits are stored in RE05TrackerHitsCollection. + 25 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 3.8480068598418 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data. >>> Event 32 @@ -1026,15 +1029,15 @@ G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 575 HEPEvt particles from pythia_event.data. >>> Event 33 - 76 hits are stored in RE05TrackerHitsCollection. + 82 hits are stored in RE05TrackerHitsCollection. 15 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 3.9887058913195 (GeV) + Total energy deposition in calorimeter : 3.9658509926288 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1002 HEPEvt particles from pythia_event.data. >>> Event 34 - 85 hits are stored in RE05TrackerHitsCollection. - 71 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 10.639063095703 (GeV) + 96 hits are stored in RE05TrackerHitsCollection. + 64 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.9935894588754 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 440 HEPEvt particles from pythia_event.data. >>> Event 35 @@ -1050,51 +1053,51 @@ G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 318 HEPEvt particles from pythia_event.data. >>> Event 37 - 7 hits are stored in RE05TrackerHitsCollection. - 13 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.8638652718033 (GeV) - 0 hits are stored in RE05MuonHitsCollection. + 24 hits are stored in RE05TrackerHitsCollection. + 39 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.3103252869206 (GeV) + 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 367 HEPEvt particles from pythia_event.data. >>> Event 38 - 31 hits are stored in RE05TrackerHitsCollection. - 31 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.2143878796667 (GeV) + 29 hits are stored in RE05TrackerHitsCollection. + 45 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 6.9933334740894 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1000 HEPEvt particles from pythia_event.data. >>> Event 39 0 hits are stored in RE05TrackerHitsCollection. 4 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.72694664398631 (GeV) + Total energy deposition in calorimeter : 0.73075820400481 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 253 HEPEvt particles from pythia_event.data. >>> Event 40 - 21 hits are stored in RE05TrackerHitsCollection. - 32 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.3970204242915 (GeV) + 22 hits are stored in RE05TrackerHitsCollection. + 38 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 13.915349677532 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 474 HEPEvt particles from pythia_event.data. >>> Event 41 - 23 hits are stored in RE05TrackerHitsCollection. - 24 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.0868158526643 (GeV) + 15 hits are stored in RE05TrackerHitsCollection. + 21 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.2340992369704 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 695 HEPEvt particles from pythia_event.data. >>> Event 42 - 89 hits are stored in RE05TrackerHitsCollection. - 48 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.5886331714181 (GeV) + 83 hits are stored in RE05TrackerHitsCollection. + 52 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.2510666321128 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 760 HEPEvt particles from pythia_event.data. >>> Event 43 0 hits are stored in RE05TrackerHitsCollection. 13 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.2374994789262 (GeV) + Total energy deposition in calorimeter : 2.2502007662657 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 328 HEPEvt particles from pythia_event.data. >>> Event 44 0 hits are stored in RE05TrackerHitsCollection. 10 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 1.7833713714679 (GeV) + Total energy deposition in calorimeter : 1.7779701529251 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data. >>> Event 45 @@ -1104,21 +1107,21 @@ G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 420 HEPEvt particles from pythia_event.data. >>> Event 46 - 47 hits are stored in RE05TrackerHitsCollection. - 42 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 8.0840864071771 (GeV) + 38 hits are stored in RE05TrackerHitsCollection. + 46 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.3757012382996 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1092 HEPEvt particles from pythia_event.data. >>> Event 47 - 65 hits are stored in RE05TrackerHitsCollection. - 53 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 8.5866259429127 (GeV) + 101 hits are stored in RE05TrackerHitsCollection. + 56 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.6364694100951 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 708 HEPEvt particles from pythia_event.data. >>> Event 48 - 52 hits are stored in RE05TrackerHitsCollection. + 49 hits are stored in RE05TrackerHitsCollection. 19 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 3.9875835306065 (GeV) + Total energy deposition in calorimeter : 4.0173109783344 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data. >>> Event 49 @@ -1128,15 +1131,15 @@ G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 422 HEPEvt particles from pythia_event.data. >>> Event 50 - 20 hits are stored in RE05TrackerHitsCollection. - 36 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.7625431447547 (GeV) + 23 hits are stored in RE05TrackerHitsCollection. + 35 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.3039574353271 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data. >>> Event 51 - 56 hits are stored in RE05TrackerHitsCollection. + 48 hits are stored in RE05TrackerHitsCollection. 42 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.9325842497981 (GeV) + Total energy deposition in calorimeter : 8.4675627871375 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 380 HEPEvt particles from pythia_event.data. >>> Event 52 @@ -1152,39 +1155,39 @@ G4HEPEvtInterface - reading 780 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 218 HEPEvt particles from pythia_event.data. >>> Event 54 - 23 hits are stored in RE05TrackerHitsCollection. - 27 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.2972475643217 (GeV) + 20 hits are stored in RE05TrackerHitsCollection. + 31 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.7838652252772 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 349 HEPEvt particles from pythia_event.data. >>> Event 55 - 49 hits are stored in RE05TrackerHitsCollection. - 29 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.5498414396289 (GeV) + 63 hits are stored in RE05TrackerHitsCollection. + 32 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.516565464807 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 566 HEPEvt particles from pythia_event.data. >>> Event 56 - 61 hits are stored in RE05TrackerHitsCollection. - 38 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 3.8254046822198 (GeV) + 48 hits are stored in RE05TrackerHitsCollection. + 42 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.5823642016261 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 467 HEPEvt particles from pythia_event.data. >>> Event 57 - 74 hits are stored in RE05TrackerHitsCollection. - 45 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.8955284871938 (GeV) + 68 hits are stored in RE05TrackerHitsCollection. + 35 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.0694409565136 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 745 HEPEvt particles from pythia_event.data. >>> Event 58 - 79 hits are stored in RE05TrackerHitsCollection. - 46 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.0352678628418 (GeV) + 52 hits are stored in RE05TrackerHitsCollection. + 39 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 6.506064273336 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 742 HEPEvt particles from pythia_event.data. >>> Event 59 0 hits are stored in RE05TrackerHitsCollection. 12 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.1107057490775 (GeV) + Total energy deposition in calorimeter : 2.109099420755 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 822 HEPEvt particles from pythia_event.data. >>> Event 60 @@ -1196,13 +1199,13 @@ G4HEPEvtInterface - reading 324 HEPEvt particles from pythia_event.data. >>> Event 61 0 hits are stored in RE05TrackerHitsCollection. 1 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.11348510878006 (GeV) + Total energy deposition in calorimeter : 0.11195942989692 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data. >>> Event 62 - 23 hits are stored in RE05TrackerHitsCollection. + 24 hits are stored in RE05TrackerHitsCollection. 10 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 3.1565168856875 (GeV) + Total energy deposition in calorimeter : 3.1356579134638 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data. >>> Event 63 @@ -1212,21 +1215,21 @@ G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 340 HEPEvt particles from pythia_event.data. >>> Event 64 - 7 hits are stored in RE05TrackerHitsCollection. + 6 hits are stored in RE05TrackerHitsCollection. 9 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 2.0418960901344 (GeV) + Total energy deposition in calorimeter : 1.9616300180892 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 520 HEPEvt particles from pythia_event.data. >>> Event 65 - 47 hits are stored in RE05TrackerHitsCollection. - 36 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.4415638671067 (GeV) + 59 hits are stored in RE05TrackerHitsCollection. + 37 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.0686608682331 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 235 HEPEvt particles from pythia_event.data. >>> Event 66 - 11 hits are stored in RE05TrackerHitsCollection. - 19 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 3.7453787848222 (GeV) + 10 hits are stored in RE05TrackerHitsCollection. + 17 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 2.2155268611745 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data. >>> Event 67 @@ -1237,14 +1240,14 @@ G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data. G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data. >>> Event 68 0 hits are stored in RE05TrackerHitsCollection. - 10 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.98017952470183 (GeV) + 7 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 0.95342367908025 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 264 HEPEvt particles from pythia_event.data. >>> Event 69 - 42 hits are stored in RE05TrackerHitsCollection. - 32 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.4601966840911 (GeV) + 73 hits are stored in RE05TrackerHitsCollection. + 29 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.0313173776405 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 785 HEPEvt particles from pythia_event.data. >>> Event 70 @@ -1256,49 +1259,49 @@ G4HEPEvtInterface - reading 618 HEPEvt particles from pythia_event.data. >>> Event 71 0 hits are stored in RE05TrackerHitsCollection. 4 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.59607303719045 (GeV) + Total energy deposition in calorimeter : 0.59316309114202 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 219 HEPEvt particles from pythia_event.data. >>> Event 72 - 76 hits are stored in RE05TrackerHitsCollection. - 43 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.4216175545751 (GeV) + 50 hits are stored in RE05TrackerHitsCollection. + 42 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.8391031057348 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 480 HEPEvt particles from pythia_event.data. >>> Event 73 - 30 hits are stored in RE05TrackerHitsCollection. - 44 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 9.1352552531418 (GeV) + 31 hits are stored in RE05TrackerHitsCollection. + 64 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.8990221014731 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 614 HEPEvt particles from pythia_event.data. >>> Event 74 0 hits are stored in RE05TrackerHitsCollection. 4 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.57427735693286 (GeV) + Total energy deposition in calorimeter : 0.58741713936483 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 436 HEPEvt particles from pythia_event.data. >>> Event 75 12 hits are stored in RE05TrackerHitsCollection. - 47 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.4857566646994 (GeV) + 50 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 6.9417845035501 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 355 HEPEvt particles from pythia_event.data. >>> Event 76 - 14 hits are stored in RE05TrackerHitsCollection. - 37 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.1691180194919 (GeV) + 10 hits are stored in RE05TrackerHitsCollection. + 30 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 5.3824083460595 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data. >>> Event 77 - 22 hits are stored in RE05TrackerHitsCollection. - 93 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 10.433904113018 (GeV) + 14 hits are stored in RE05TrackerHitsCollection. + 86 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 9.7158428954848 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 752 HEPEvt particles from pythia_event.data. >>> Event 78 0 hits are stored in RE05TrackerHitsCollection. 4 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.67431687253042 (GeV) + Total energy deposition in calorimeter : 0.67409891211902 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data. >>> Event 79 @@ -1308,15 +1311,15 @@ G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 564 HEPEvt particles from pythia_event.data. >>> Event 80 - 39 hits are stored in RE05TrackerHitsCollection. - 48 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.576643810607 (GeV) + 51 hits are stored in RE05TrackerHitsCollection. + 42 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.8191041280742 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 220 HEPEvt particles from pythia_event.data. >>> Event 81 - 27 hits are stored in RE05TrackerHitsCollection. - 39 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.2377295897581 (GeV) + 20 hits are stored in RE05TrackerHitsCollection. + 43 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 6.8008994217995 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data. >>> Event 82 @@ -1326,45 +1329,45 @@ G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 914 HEPEvt particles from pythia_event.data. >>> Event 83 - 67 hits are stored in RE05TrackerHitsCollection. - 38 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.6253830829044 (GeV) + 71 hits are stored in RE05TrackerHitsCollection. + 59 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 8.6141738950084 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data. >>> Event 84 - 63 hits are stored in RE05TrackerHitsCollection. - 32 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 11.310315813751 (GeV) + 35 hits are stored in RE05TrackerHitsCollection. + 30 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 12.021311190679 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1034 HEPEvt particles from pythia_event.data. >>> Event 85 - 126 hits are stored in RE05TrackerHitsCollection. - 87 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 11.536400881144 (GeV) + 137 hits are stored in RE05TrackerHitsCollection. + 90 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 11.796551455036 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data. >>> Event 86 - 59 hits are stored in RE05TrackerHitsCollection. + 42 hits are stored in RE05TrackerHitsCollection. 38 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 6.9581072945682 (GeV) + Total energy deposition in calorimeter : 8.1964211477784 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 246 HEPEvt particles from pythia_event.data. >>> Event 87 - 32 hits are stored in RE05TrackerHitsCollection. - 42 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.0017409828054 (GeV) + 36 hits are stored in RE05TrackerHitsCollection. + 37 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.1357632372579 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 1139 HEPEvt particles from pythia_event.data. >>> Event 88 0 hits are stored in RE05TrackerHitsCollection. 7 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 1.3405127872554 (GeV) + Total energy deposition in calorimeter : 1.3435436994712 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 991 HEPEvt particles from pythia_event.data. >>> Event 89 - 142 hits are stored in RE05TrackerHitsCollection. - 53 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 11.023248764107 (GeV) + 115 hits are stored in RE05TrackerHitsCollection. + 55 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 9.8603886291286 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data. >>> Event 90 @@ -1374,21 +1377,21 @@ G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data. >>> Event 91 - 38 hits are stored in RE05TrackerHitsCollection. - 35 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.6019143569788 (GeV) + 30 hits are stored in RE05TrackerHitsCollection. + 33 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 7.5375317831389 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 410 HEPEvt particles from pythia_event.data. >>> Event 92 0 hits are stored in RE05TrackerHitsCollection. 5 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.9647198882025 (GeV) + Total energy deposition in calorimeter : 0.9668468130392 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 680 HEPEvt particles from pythia_event.data. >>> Event 93 - 52 hits are stored in RE05TrackerHitsCollection. - 57 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 7.78688887829 (GeV) + 67 hits are stored in RE05TrackerHitsCollection. + 52 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 12.064980513519 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data. >>> Event 94 @@ -1398,15 +1401,15 @@ G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 358 HEPEvt particles from pythia_event.data. >>> Event 95 - 15 hits are stored in RE05TrackerHitsCollection. - 33 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 5.4597846174505 (GeV) + 16 hits are stored in RE05TrackerHitsCollection. + 34 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 4.8397315476736 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 546 HEPEvt particles from pythia_event.data. >>> Event 96 0 hits are stored in RE05TrackerHitsCollection. 3 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 0.52032333786291 (GeV) + Total energy deposition in calorimeter : 0.52978129669888 (GeV) 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data. >>> Event 97 @@ -1416,20 +1419,20 @@ G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data. 0 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 298 HEPEvt particles from pythia_event.data. >>> Event 98 - 64 hits are stored in RE05TrackerHitsCollection. - 25 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 4.4524215102384 (GeV) + 58 hits are stored in RE05TrackerHitsCollection. + 30 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 6.1557324759028 (GeV) 1 hits are stored in RE05MuonHitsCollection. G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data. >>> Event 99 - 94 hits are stored in RE05TrackerHitsCollection. - 54 hits are stored in RE05CalorimeterHitsCollection. - Total energy deposition in calorimeter : 8.5112419211573 (GeV) + 64 hits are stored in RE05TrackerHitsCollection. + 58 hits are stored in RE05CalorimeterHitsCollection. + Total energy deposition in calorimeter : 9.0329265930734 (GeV) 1 hits are stored in RE05MuonHitsCollection. Run terminated. Run Summary Number of events processed : 100 - User=15.51s Real=15.69s Sys=0.13s + User=9.33s Real=9.45s Sys=0.09s # G4 kernel has come to Quit state. UserDetectorConstruction deleted. @@ -1441,30 +1444,30 @@ RunManager is deleting RunManagerKernel. G4SDManager deleted. EventManager deleted. Units table cleared. -Total navigation history collections cleaned: 475 +Total navigation history collections cleaned: 497 ================== Deleting memory pools =================== -Pool ID '20G4NavigationLevelRep', size : 0.759 MB +Pool ID '20G4NavigationLevelRep', size : 0.797 MB Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB -Pool ID '17G4DynamicParticle', size : 0.798 MB +Pool ID '17G4DynamicParticle', size : 0.833 MB Pool ID '7G4Event', size : 0.000961 MB Pool ID '17G4PrimaryParticle', size : 0.157 MB Pool ID '16G4HEPEvtParticle', size : 0.0269 MB Pool ID '15G4PrimaryVertex', size : 0.000961 MB Pool ID '15G4HCofThisEvent', size : 0.000961 MB Pool ID '16G4HitsCollection', size : 0.000961 MB -Pool ID '7G4Track', size : 1.36 MB -Pool ID '18G4TouchableHistory', size : 0.0567 MB +Pool ID '7G4Track', size : 1.43 MB +Pool ID '18G4TouchableHistory', size : 0.0596 MB Pool ID '15G4CountedObjectIvE', size : 0.00769 MB Pool ID '12G4Trajectory', size : 0.0231 MB -Pool ID '17G4TrajectoryPoint', size : 0.183 MB +Pool ID '17G4TrajectoryPoint', size : 0.193 MB Pool ID '14RE05TrackerHit', size : 0.00577 MB -Pool ID '18RE05CalorimeterHit', size : 0.0135 MB +Pool ID '18RE05CalorimeterHit', size : 0.0125 MB Pool ID '11RE05MuonHit', size : 0.000961 MB Pool ID '21G4TrajectoryContainer', size : 0.000961 MB -Pool ID '17G4ReactionProduct', size : 0.0125 MB -Pool ID '10G4Fragment', size : 0.00769 MB +Pool ID '17G4ReactionProduct', size : 0.0135 MB +Pool ID '10G4Fragment', size : 0.00865 MB Number of memory pools allocated: 20 of which, static: 0 -Dynamic pools deleted: 20 / Total memory freed: 3.4 MB +Dynamic pools deleted: 20 / Total memory freed: 3.6 MB ============================================================ G4Allocator objects are deleted. UImanager deleted. diff --git a/examples/extended/runAndEvent/RE06/exampleRE06.out b/examples/extended/runAndEvent/RE06/exampleRE06.out index 91bacf7dca..ab259b8781 100644 --- a/examples/extended/runAndEvent/RE06/exampleRE06.out +++ b/examples/extended/runAndEvent/RE06/exampleRE06.out @@ -4,7 +4,7 @@ ############################################ ************************************************************* - Geant4 version Name: geant4-10-03 (9-December-2016) + Geant4 version Name: geant4-10-03-patch-01 (24-February-2017) Copyright : Geant4 Collaboration Reference : NIM A 506 (2003), 250-303 WWW : http://cern.ch/geant4 @@ -145,16 +145,6 @@ G4SDManager::AddNewCollection : the collection is register New sensitive detector is registered at / New sensitive detector is registered at / G4PhysicsListHelper::AddTransportation()--- G4CoupledTransportation is used -======================================================================= -====== Pre-compound/De-excitation Physics Parameters ======== -======================================================================= -Type of pre-compound inverse x-section 3 -Type of de-excitation inverse x-section 3 -Min excitation energy (keV) 0.1 -Level density (1/MeV) 0.1 -Time limit for long lived isomeres (ns) 1e+07 -Correlated gamma emission flag 0 -======================================================================= FTFP_BERT : new threshold between BERT and FTFP is over the interval for pions : 3 to 12 GeV @@ -892,6 +882,19 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1 Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV ================================================================ +======================================================================= +====== Pre-compound/De-excitation Physics Parameters ======== +======================================================================= +Type of pre-compound inverse x-section 3 +Type of de-excitation inverse x-section 3 +Min excitation energy (keV) 0.01 +Level density (1/MeV) 0.1 +Time limit for long lived isomeres (ns) 1000 +Use new data files 1 +Use complete data files 0 +Correlated gamma emission flag 0 +======================================================================= +Number of de-excitation channels 8 ========= Table of registered couples ============================== @@ -950,7 +953,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=2.7s Real=3.01s Sys=0.29s + User=0.73s Real=0.8s Sys=0.08s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -958,40 +961,40 @@ Region : Calor-A Production thresholds : gamma 1 mm e- 1 mm e+ 1 mm Energy deposition in an event : - Absorber 2.64157 GeV Gap 347.227 MeV + Absorber 2.29095 GeV Gap 296.088 MeV Number of secondaries in an event : - gamma in Absorber 669 in Gap 45.2 - e- in Absorber 1139.9 in Gap 140.2 - e+ in Absorber 66.6 in Gap 2.8 + gamma in Absorber 478.4 in Gap 30.2 + e- in Absorber 820.4 in Gap 99.6 + e+ in Absorber 46.6 in Gap 1.6 Minimum kinetic energy of generated secondaries : - gamma in Absorber 100.825 keV in Gap 6.33072 keV - e- in Absorber 170.374 eV in Gap 193.784 eV - e+ in Absorber 11.6672 keV in Gap 306.589 keV + gamma in Absorber 102.074 keV in Gap 6.21708 keV + e- in Absorber 144.159 eV in Gap 243.631 eV + e+ in Absorber 13.262 keV in Gap 138.129 keV Total track length of e+/e- in an event : - Absorber 91.4025 cm Gap 73.0374 cm + Absorber 67.1226 cm Gap 48.1655 cm Total number of steps of e+/e- in an event : - Absorber 2780.9 Gap 511.3 + Absorber 2006.5 Gap 342 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 2808.16 650.7 970.9 58.4 1463.86 2664.9 - 1 108.851 38.8 172 6.6 110.749 361.2 - 2 38.2871 13.6 68 2.5 37.5148 133.6 - 3 18.2957 6.6 35.9 1.1 18.1067 72 - 4 8.70938 2.6 17.5 0.5 7.9367 31 - 5 3.46548 1.4 8.3 0.2 3.77791 14.2 - 6 1.55028 0.4 3.4 0.1 1.23968 6.9 - 7 0.363628 0 0.8 0 0.268398 2.3 - 8 0.366448 0 0.8 0 0.209674 2 - 9 0.316361 0.1 0.7 0 0.181962 1.1 - 10 0.118396 0 0.5 0 0.0584536 0.8 - 11 0.121183 0 0.4 0 0.378273 1 - 12 0.13397 0 0.5 0 0.10527 0.6 - 13 0.0415559 0 0.4 0 0.0110024 0.6 - 14 0.00343019 0 0 0 0 0 - 15 0.00205324 0 0 0 0 0 - 16 0.00110394 0 0 0 0 0 - 17 0.000796962 0 0 0 0 0 + 0 2445.82 454.1 695 38 996.205 1869.9 + 1 84.8086 31.5 123.9 5.4 97.0815 278.5 + 2 28.1569 11 52.3 2.5 26.5468 98.8 + 3 15.2544 6.9 24.3 1.4 13.8277 52.6 + 4 3.63976 1 9 0.1 3.04193 16.1 + 5 4.02523 1.9 6.4 0.5 7.06033 14.6 + 6 2.46333 1.8 3.4 0.3 3.89094 7.4 + 7 0.993682 0.1 1.8 0 0.694908 3 + 8 0.570732 0 1.6 0 0.730932 3.3 + 9 0.355122 0 0.8 0 0.247065 1.2 + 10 0.0220219 0 0.1 0 0.00427382 0.1 + 11 0.714231 0.2 0.7 0 3.40046 1.9 + 12 0.211343 0.1 0.7 0 0.148631 1.1 + 13 0 0 0 0 0 0 + 14 0 0 0 0 0 0 + 15 0 0 0 0 0 0 + 16 0 0 0 0 0 0 + 17 0 0 0 0 0 0 18 0 0 0 0 0 0 19 0 0 0 0 0 0 ############################################################ @@ -999,83 +1002,83 @@ Region : Calor-B Production thresholds : gamma 1 mm e- 1 mm e+ 1 mm Energy deposition in an event : - Absorber 2.56695 GeV Gap 337.979 MeV + Absorber 3.14498 GeV Gap 397.527 MeV Number of secondaries in an event : - gamma in Absorber 630.9 in Gap 42.8 - e- in Absorber 1072.4 in Gap 129.9 - e+ in Absorber 65.1 in Gap 2 + gamma in Absorber 954 in Gap 65.4 + e- in Absorber 1593.5 in Gap 177.7 + e+ in Absorber 101.7 in Gap 3.3 Minimum kinetic energy of generated secondaries : - gamma in Absorber 101.855 keV in Gap 6.25786 keV - e- in Absorber 46.4778 eV in Gap 270.912 eV - e+ in Absorber 30.2366 keV in Gap 1.0073 MeV + gamma in Absorber 101.85 keV in Gap 6.25786 keV + e- in Absorber 123.262 eV in Gap 208.27 eV + e+ in Absorber 28.6472 keV in Gap 438.968 keV Total track length of e+/e- in an event : - Absorber 86.0064 cm Gap 68.6788 cm + Absorber 1.26992 m Gap 98.6878 cm Total number of steps of e+/e- in an event : - Absorber 2682.2 Gap 465.5 + Absorber 3992 Gap 637.4 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 2731.78 611.2 910.2 56.4 1370.51 2522.3 - 1 103.141 40.4 160 6.3 116.185 345.2 - 2 34.0403 11.8 62 2.3 28.2458 127.2 - 3 18.1605 5.2 34.2 1.2 13.5523 64.4 - 4 8.80875 2.7 16 0.6 7.1879 31.5 - 5 3.59299 1 9.1 0.2 3.21212 19.2 - 6 2.32557 0.6 3.7 0.1 2.3834 11.2 - 7 1.45039 0.5 2.7 0 2.77601 7.8 - 8 0.56916 0.2 2.2 0 0.58669 5.5 - 9 0.0624469 0 0.2 0 0.175899 7.3 - 10 0.523023 0 0.5 0 1.5421 2.3 - 11 0.067227 0 0.5 0 0.0477443 0.6 - 12 0.187492 0.1 0.6 0 0.109547 1 - 13 0.00171205 0 0 0 0 0 - 14 0.0673286 0 0.2 0 0.124186 0.4 - 15 0.00148871 0 0 0 0 0 - 16 0.140894 0 0.2 0 0.209338 1.8 - 17 0.00207664 0 0 0 0 0 - 18 0.00207787 0 0 0 0 0 - 19 0.00156286 0 0 0 0 0 + 0 3274.11 919.1 1325.6 86.9 1960.33 3662.5 + 1 167.55 66.3 247 10.8 197.097 542 + 2 52.3788 17.9 96.4 4 53.6029 203.8 + 3 26.3524 10.1 49 2.2 20.1007 107.6 + 4 8.73591 2.2 22 0.5 7.02442 40 + 5 5.2891 1.4 11.1 0.4 6.81726 27.7 + 6 2.3273 0.6 6.6 0 2.25335 10.9 + 7 2.14016 0.9 5.1 0 2.70249 10.7 + 8 1.02021 0.3 2.7 0.1 0.721687 5.6 + 9 0.793341 0.4 1.9 0.1 1.67936 10.8 + 10 0.692871 0.2 1.3 0 1.64272 3.6 + 11 0.365856 0 1.1 0 0.20775 1.6 + 12 0.0679933 0 0.3 0 0.0737904 0.4 + 13 0.0907445 0 0.3 0 0.182447 0.4 + 14 0.530937 0 0.6 0 2.34543 1.4 + 15 0.0302323 0 0.1 0 0.00828404 0.2 + 16 0.0252376 0 0.1 0 0.0052487 0.2 + 17 0.00122643 0 0 0 0 0 + 18 0.00115547 0 0 0 0 0 + 19 0.00118959 0 0 0 0 0 ############################################################ Region : Calor-C Production thresholds : gamma 10 cm e- 10 cm e+ 10 cm Energy deposition in an event : - Absorber 2.95797 GeV Gap 304.575 MeV + Absorber 2.41265 GeV Gap 268.125 MeV Number of secondaries in an event : - gamma in Absorber 182.6 in Gap 19.1 - e- in Absorber 326.2 in Gap 24.8 - e+ in Absorber 49.8 in Gap 2.4 + gamma in Absorber 74.4 in Gap 6.8 + e- in Absorber 136 in Gap 10.7 + e+ in Absorber 21 in Gap 0.5 Minimum kinetic energy of generated secondaries : - gamma in Absorber 80.5302 keV in Gap 57.134 keV - e- in Absorber 360.857 eV in Gap 746.178 eV - e+ in Absorber 25.7229 keV in Gap 359.795 keV + gamma in Absorber 63.8306 keV in Gap 57.246 keV + e- in Absorber 847.732 eV in Gap 1.72361 keV + e+ in Absorber 175.97 keV in Gap 1.42382 MeV Total track length of e+/e- in an event : - Absorber 52.8736 cm Gap 31.9255 cm + Absorber 20.7503 cm Gap 13.1998 cm Total number of steps of e+/e- in an event : - Absorber 867.6 Gap 133.1 + Absorber 371.7 Gap 58.2 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 3172.56 183.9 247.6 45.2 750.702 772 - 1 54.8494 11.2 54.9 4.4 67.4928 122.4 - 2 15.9558 2.1 21.1 0.9 14.7689 48.1 - 3 8.76128 1.6 11.7 0.8 7.1153 28 - 4 3.06531 0.2 5 0.1 2.31396 7.6 - 5 2.29422 0.4 3.5 0.2 1.75377 6.1 - 6 1.48717 0.2 1.9 0.1 0.834641 3 - 7 1.16252 0.2 0.7 0.1 1.03763 3.7 - 8 0.325888 0.2 0.6 0.1 0.210196 0.9 - 9 0.000156905 0 0 0 0 0 - 10 0.405374 0 1.1 0 0.201542 1.4 - 11 0.44112 1.1 1.5 0.1 0.237223 2.4 - 12 0.00076386 0 0 0 0 0 - 13 0.28151 0 0.4 0 0.559394 1.1 - 14 0.475341 0.2 0.5 0.1 0.475525 3.1 - 15 0.00653491 0 0 0 0 0 - 16 0.00294971 0 0 0 0 0 - 17 0.00160709 0 0 0 0 0 - 18 0.409733 0.4 0.4 0.1 0.263674 0.7 - 19 0.0538924 0 0.1 0 0.0237584 0.2 + 0 2636 73.3 97.6 18.4 293.999 318 + 1 26.9421 4.3 24.2 1.5 30.6792 58.7 + 2 7.86385 1.6 11.6 0.7 7.24248 26.3 + 3 6.08708 1.4 6.7 0.7 4.50064 16.3 + 4 2.10922 0 3.4 0 1.31419 5.1 + 5 1.12733 0.2 1.7 0.1 1.29638 2.8 + 6 0.122668 0 0.5 0 0.0472544 0.7 + 7 0 0 0 0 0 0 + 8 0.0409119 0 0.3 0 0.0412028 0.4 + 9 0.0510999 0 0.1 0 0.024114 0.2 + 10 0 0 0 0 0 0 + 11 0 0 0 0 0 0 + 12 0 0 0 0 0 0 + 13 0 0 0 0 0 0 + 14 0 0 0 0 0 0 + 15 0.000210872 0 0 0 0 0 + 16 0.000436695 0 0 0 0 0 + 17 0.000342855 0 0 0 0 0 + 18 0.430914 0.4 0.6 0.1 0.356657 1.4 + 19 0.000962051 0 0 0 0 0 ############################################################ /run/dumpCouples @@ -1593,7 +1596,7 @@ Index : 6 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=7.3s Real=8.11s Sys=0.79s + User=1.77s Real=1.97s Sys=0.2s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -1601,124 +1604,124 @@ Region : Calor-A Production thresholds : gamma 200 um e- 200 um e+ 200 um Energy deposition in an event : - Absorber 2.79324 GeV Gap 346.18 MeV + Absorber 3.3351 GeV Gap 379.259 MeV Number of secondaries in an event : - gamma in Absorber 1009.2 in Gap 56 - e- in Absorber 1746.4 in Gap 235.2 - e+ in Absorber 78.7 in Gap 2.8 + gamma in Absorber 1390.9 in Gap 62.8 + e- in Absorber 2360.3 in Gap 270.3 + e+ in Absorber 109.6 in Gap 3.3 Minimum kinetic energy of generated secondaries : - gamma in Absorber 47.1833 keV in Gap 2.82169 keV - e- in Absorber 124.88 eV in Gap 141.28 eV - e+ in Absorber 20.9425 keV in Gap 111.601 keV + gamma in Absorber 47.2226 keV in Gap 2.81168 keV + e- in Absorber 23.1395 eV in Gap 2.85798 eV + e+ in Absorber 10.7711 keV in Gap 102.428 keV Total track length of e+/e- in an event : - Absorber 1.11755 m Gap 75.9575 cm + Absorber 1.51594 m Gap 92.6454 cm Total number of steps of e+/e- in an event : - Absorber 3895.3 Gap 647.7 + Absorber 5395 Gap 779.8 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 2914.84 954.6 1580.7 68.4 1636.59 3700.4 - 1 141.99 71.2 236.4 8.1 155.76 510.1 - 2 45.4099 22.8 86.2 2.5 48.081 182 - 3 20.9841 9.5 39.7 1.2 19.5215 77.9 - 4 7.52765 3.3 16.9 0.7 8.0038 31.5 - 5 2.67374 0.9 6.8 0.1 2.03771 16 - 6 1.95734 1.1 5.1 0.2 1.76298 8.9 - 7 1.27065 0.8 3.4 0.1 1.29104 5.8 - 8 0.271208 0 1.1 0 0.24221 1.6 - 9 1.40671 0.8 2.1 0.2 2.98251 4.7 - 10 0.205848 0 0.7 0 0.186819 0.8 - 11 0.460503 0.1 0.8 0 0.395997 1.3 - 12 0.130409 0 0.5 0 0.0553975 0.6 - 13 0 0 0 0 0 0 - 14 0.0976593 0 0.3 0 0.0510355 0.3 - 15 0.0681035 0 0.3 0 0.11274 0.3 - 16 3.8262e-05 0 0 0 0 0 - 17 0.0773129 0 0.4 0 0.0442201 0.5 - 18 0.0441686 0.1 0.2 0 0.0130775 0.3 - 19 4.52456e-05 0 0 0 0 0 + 0 3431.48 1313.7 2111.5 94.3 2137.51 5020.5 + 1 161.844 81.9 279.8 10 185.341 641.5 + 2 56.9276 27.6 109.9 4.1 50.2063 233.3 + 3 27.4567 13.5 56.1 2 26.5069 114.2 + 4 16.9922 8.2 31.4 1.4 18.636 66.3 + 5 7.08077 3.7 16.2 0.4 7.33621 39.4 + 6 5.26805 2 10.7 0.4 5.75066 28.2 + 7 1.55393 0.6 3.6 0 1.43745 6.7 + 8 1.71283 0.5 3.1 0 1.57319 5.7 + 9 1.25293 0.8 2.8 0.1 2.22512 4.7 + 10 1.01074 0.1 1.4 0 2.89522 2.7 + 11 0.783702 0.5 2 0.1 1.95201 3.8 + 12 0.572362 0.6 1 0.1 0.56141 4.9 + 13 0.0973462 0 0.4 0 0.0376599 0.6 + 14 0.0818194 0 0.2 0 0.325127 1.3 + 15 0.101094 0 0.3 0 0.0487847 0.3 + 16 0.00925073 0 0 0 0 0 + 17 0.0855512 0 0.1 0 0.0359204 0.2 + 18 0.0415067 0 0.1 0 0.0152999 0.5 + 19 0.002186 0 0 0 0 0 ############################################################ Region : Calor-B Production thresholds : gamma 2 mm e- 2 mm e+ 2 mm Energy deposition in an event : - Absorber 2.30918 GeV Gap 304.157 MeV + Absorber 4.68118 GeV Gap 533.444 MeV Number of secondaries in an event : - gamma in Absorber 444.1 in Gap 25.2 - e- in Absorber 764.3 in Gap 85.6 - e+ in Absorber 47.6 in Gap 1.3 + gamma in Absorber 1700.5 in Gap 98.4 + e- in Absorber 2805.5 in Gap 260 + e+ in Absorber 192.1 in Gap 6.9 Minimum kinetic energy of generated secondaries : - gamma in Absorber 93.1968 keV in Gap 8.7693 keV - e- in Absorber 445.022 eV in Gap 106.768 eV - e+ in Absorber 14.6905 keV in Gap 560.476 keV + gamma in Absorber 92.3996 keV in Gap 8.78364 keV + e- in Absorber 104.664 eV in Gap 130.02 eV + e+ in Absorber 3.43524 keV in Gap 350.749 keV Total track length of e+/e- in an event : - Absorber 64.2351 cm Gap 49.6392 cm + Absorber 2.27666 m Gap 1.61221 m Total number of steps of e+/e- in an event : - Absorber 1878.1 Gap 320.7 + Absorber 6936.2 Gap 993.1 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 2484.33 430.4 647.8 41.6 993.697 1739.1 - 1 74.4885 23.9 107.6 4.3 85.3549 253.2 - 2 27.9972 9 45.3 2.1 30.0846 92.7 - 3 13.331 2.7 23.3 0.5 12.151 55.5 - 4 4.71785 1.9 9.7 0.3 5.98268 19.6 - 5 3.27981 0.5 5.5 0 4.06378 12.3 - 6 2.36188 0.7 4.3 0.1 4.24285 15.7 - 7 1.7599 0.2 3.7 0 2.49538 7 - 8 0.565732 0 1.2 0 0.326368 1.8 - 9 0.130109 0 0.4 0 0.0821248 0.5 - 10 0.160246 0 0.4 0 0.0865357 0.6 - 11 0.0208158 0 0.2 0 0.00484872 0.2 - 12 0.0369372 0 0.2 0 0.0996717 0.2 - 13 0.0071942 0 0 0 0 0 - 14 0.00489427 0 0 0 0 0 - 15 0.0429798 0 0.1 0 0.0604449 0.1 - 16 0.0640804 0 0.2 0 0.0115745 0.3 - 17 0.0189861 0 0 0 0 0 - 18 0.00648397 0 0 0 0 0 - 19 0.0054842 0 0 0 0 0 + 0 4714.15 1630.8 2278.4 170.3 3360.04 6201.3 + 1 308.903 112.9 442.8 19.3 333.665 1010.1 + 2 98.7314 30.6 165.5 5.2 97.8041 344.3 + 3 44.2246 13.4 77.4 2.6 44.1736 165.4 + 4 20.5882 4.9 43.4 0.8 18.3033 86.7 + 5 11.8533 2.6 22.8 0.4 15.3072 53.6 + 6 6.23466 2 15.3 0.2 6.12861 25.6 + 7 3.56807 0.5 7.5 0.1 4.37572 14.9 + 8 2.87225 0.8 5.4 0.1 4.22967 14.5 + 9 1.72359 0.2 3.5 0 1.46052 5.4 + 10 0.253763 0 1.2 0 0.373748 1.7 + 11 0.262827 0 0.5 0 0.212319 0.7 + 12 0.338105 0 0.4 0 0.431467 1 + 13 0.712332 0.2 0.7 0 2.16514 3.1 + 14 0.0565459 0 0.1 0 0.0176238 0.2 + 15 0.00615127 0 0 0 0 0 + 16 0.00932659 0 0 0 0 0 + 17 0.0104847 0 0.1 0 0.00410862 0.1 + 18 0.0737339 0 0.5 0 0.170046 0.7 + 19 0.0221371 0 0 0 0 0 ############################################################ Region : Calor-C Production thresholds : gamma 2 cm e- 2 cm e+ 2 cm Energy deposition in an event : - Absorber 8.42599 GeV Gap 812.493 MeV + Absorber 3.49378 GeV Gap 440.166 MeV Number of secondaries in an event : - gamma in Absorber 2417.8 in Gap 159.4 - e- in Absorber 4463.3 in Gap 407.5 - e+ in Absorber 421.1 in Gap 14.3 + gamma in Absorber 664.6 in Gap 53.7 + e- in Absorber 1238 in Gap 123.1 + e+ in Absorber 115.6 in Gap 3.4 Minimum kinetic energy of generated secondaries : - gamma in Absorber 56.1912 keV in Gap 27.0605 keV - e- in Absorber 103.329 eV in Gap 122.394 eV - e+ in Absorber 5.22511 keV in Gap 179.519 keV + gamma in Absorber 95.6997 keV in Gap 27.6095 keV + e- in Absorber 171.285 eV in Gap 185.921 eV + e+ in Absorber 8.60454 keV in Gap 23.4326 keV Total track length of e+/e- in an event : - Absorber 4.56728 m Gap 2.71598 m + Absorber 1.23867 m Gap 95.5323 cm Total number of steps of e+/e- in an event : - Absorber 10784.6 Gap 1541.2 + Absorber 2999 Gap 466.3 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 8188.22 2347 3371 366.7 6245.76 9142.2 - 1 628.034 141.2 808.8 41.3 638.432 1800.5 - 2 206.333 42.1 321.5 13.8 194.311 642 - 3 99.4481 18.9 165.5 6.5 94.1878 317.4 - 4 47.4015 9.9 83.2 3.1 48.7461 181.6 - 5 26.3224 5.1 42.2 1.7 27.2636 88.9 - 6 16.7942 3.6 27.1 0.9 15.5366 59.3 - 7 9.02054 2.5 16.4 0.6 6.57277 29.7 - 8 4.52363 1.1 9.9 0.2 3.32777 17.4 - 9 4.0451 1.2 6 0.2 2.76775 13 - 10 2.18559 0.7 5.5 0.2 2.22924 9.8 - 11 1.63693 1.1 3.4 0.1 0.965161 7.8 - 12 0.861618 0.2 2 0 0.911984 3.4 - 13 1.13354 0.3 1.8 0 0.628128 3 - 14 0.496736 0.5 1.4 0.1 0.187438 2.1 - 15 0.217793 0.2 0.5 0 0.223769 0.9 - 16 0.0497204 0 0 0 0 0 - 17 0.574009 0.3 1.1 0 0.315866 1.5 - 18 0.210838 0.5 0.9 0 0.0692475 1.3 - 19 0.822158 0.8 2.3 0 0.577628 3.5 + 0 3481.65 611.5 872.3 94.5 1758.97 2409.2 + 1 217.068 56.5 230.9 14.3 250.665 529.3 + 2 98.1347 22.2 112.2 5.4 80.9267 238.6 + 3 45.8277 8 52.9 2.2 51.6185 109.5 + 4 33.2294 5.5 32.7 1.3 20.8625 62 + 5 12.6554 3.3 18.3 0.6 8.39842 37.1 + 6 9.74244 1.9 11.8 0.3 6.53387 25.3 + 7 6.45996 1.9 6.6 0.3 4.65022 15.2 + 8 10.0524 0.9 4.4 0 1.88164 7.4 + 9 10.0452 0.6 3.8 0 1.71204 6.1 + 10 1.2838 0 1.7 0 1.28152 2.7 + 11 1.16089 0 1.9 0 1.88661 3 + 12 0.590819 0 1.4 0 0.40333 2.2 + 13 1.56659 1.8 2.5 0 0.938392 5.2 + 14 0.561578 0.5 1.4 0 0.288874 2 + 15 0.622944 1.1 0.9 0.1 0.280716 1.3 + 16 0.371081 0.3 0.5 0 0.123139 0.9 + 17 0.250769 0.4 0.5 0 0.084178 0.9 + 18 1.02618 0.7 1.4 0 0.555376 2.3 + 19 0.469305 0.5 1.1 0 1.01332 2.2 ############################################################ /run/dumpCouples @@ -2267,7 +2270,7 @@ Index : 12 used in the geometry : Yes Run terminated. Run Summary Number of events processed : 10 - User=0.95s Real=1.05s Sys=0.09s + User=0.25s Real=0.27s Sys=0.02s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -2275,124 +2278,124 @@ Region : Calor-A Production thresholds : gamma 200 um e- 200 um e+ 200 um Energy deposition in an event : - Absorber 574.601 MeV Gap 245.553 MeV + Absorber 607.751 MeV Gap 267.235 MeV Number of secondaries in an event : - gamma in Absorber 43.5 in Gap 13 - e- in Absorber 301.6 in Gap 148.6 - e+ in Absorber 1.2 in Gap 0.8 + gamma in Absorber 52.5 in Gap 15.7 + e- in Absorber 370.3 in Gap 172 + e+ in Absorber 2.9 in Gap 0.6 Minimum kinetic energy of generated secondaries : - gamma in Absorber 3.39208 keV in Gap 1.58735 keV - e- in Absorber 121.142 eV in Gap 117.934 eV - e+ in Absorber 409.57 keV in Gap 990.934 keV + gamma in Absorber 3.34367 keV in Gap 1.5237 keV + e- in Absorber 104.577 eV in Gap 100.513 eV + e+ in Absorber 192.723 keV in Gap 85.1171 keV Total track length of e+/e- in an event : - Absorber 44.5004 cm Gap 38.7222 cm + Absorber 52.3092 cm Gap 50.7403 cm Total number of steps of e+/e- in an event : - Absorber 600.4 Gap 311.7 + Absorber 722.7 Gap 373.2 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 759.712 41.8 261.6 0.9 651.21 611.5 - 1 35.4566 9.4 51.3 0.7 116.355 111.9 - 2 8.13189 2 30.1 0.2 20.5202 47.8 - 3 2.94452 0.4 24 0.1 6.61341 29 - 4 4.54173 1.3 23.3 0.1 12.2084 33.6 - 5 1.56776 0.5 12.5 0 4.23123 16 - 6 1.20492 0 9.6 0 3.17916 12.3 - 7 1.78661 0.3 8.7 0 5.77098 12.1 - 8 1.86638 0.3 6.2 0 5.13134 9.4 - 9 1.07176 0.2 4.9 0 2.98691 6.6 - 10 0.252283 0 2.9 0 0.386831 3.2 - 11 0.0988908 0 1.7 0 0.208921 1.9 - 12 0.0966587 0.1 2.7 0 0.065565 3.4 - 13 0.0972258 0 2.3 0 0.110649 2.7 - 14 0.504326 0 1.9 0 1.18186 2.5 - 15 0.0286777 0 1.1 0 0.0362156 1.2 - 16 0.0747228 0 1.6 0 0.0562115 1.9 - 17 0.358784 0.1 1.8 0 0.744348 2.6 - 18 0.08748 0 1 0 0.235873 1.1 - 19 0 0 0 0 0 0 + 0 825.155 56.9 298.1 2.6 885.099 733.7 + 1 25.2295 5.7 47.8 0.3 80.9333 95.4 + 2 5.49424 0.7 35.5 0.1 16.8196 52.7 + 3 7.11463 2.1 35.6 0 21.9448 54.2 + 4 4.7064 1 26.8 0.2 12.6358 38.6 + 5 2.52333 1.2 22.1 0.2 5.0961 27.7 + 6 0.746465 0 17.6 0 0.893539 20.4 + 7 0.844006 0 14.1 0 0.94722 17.4 + 8 0.629448 0 10.7 0 1.5154 11.9 + 9 0.39644 0.3 6 0 0.674394 8.1 + 10 0.302435 0 7.1 0 0.292349 8.1 + 11 0.759594 0.2 5.5 0.1 1.37239 7.3 + 12 0.104395 0 3 0 0.203424 3.3 + 13 0.11647 0 2.9 0 0.110005 5.3 + 14 0.0739399 0 2.4 0 0.0559254 2.8 + 15 0.0819286 0 1.7 0 0.0666767 1.9 + 16 0.0629203 0 1.1 0 0.0680355 1.2 + 17 0.131384 0 1.5 0 0.163907 1.6 + 18 0.177796 0 1.4 0 0.505453 2.2 + 19 0.208333 0.1 0.3 0 0.927375 1 ############################################################ Region : Calor-B Production thresholds : gamma 2 mm e- 2 mm e+ 2 mm Energy deposition in an event : - Absorber 641.937 MeV Gap 282.998 MeV + Absorber 600.298 MeV Gap 268.128 MeV Number of secondaries in an event : - gamma in Absorber 46.3 in Gap 17.4 - e- in Absorber 275.6 in Gap 114.8 - e+ in Absorber 2.9 in Gap 0.5 + gamma in Absorber 43.7 in Gap 11.9 + e- in Absorber 209.8 in Gap 91.4 + e+ in Absorber 2.2 in Gap 0.5 Minimum kinetic energy of generated secondaries : - gamma in Absorber 9.62012 keV in Gap 4.98053 keV - e- in Absorber 105.799 eV in Gap 100.857 eV - e+ in Absorber 62.8808 keV in Gap 2.15097 MeV + gamma in Absorber 9.62363 keV in Gap 4.13939 keV + e- in Absorber 106.66 eV in Gap 101.992 eV + e+ in Absorber 38.2703 keV in Gap 669.632 keV Total track length of e+/e- in an event : - Absorber 53.4415 cm Gap 54.2267 cm + Absorber 43.7586 cm Gap 46.1373 cm Total number of steps of e+/e- in an event : - Absorber 541.1 Gap 268.2 + Absorber 447 Gap 222.8 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 838.581 46.3 108.8 2.1 813.344 385.3 - 1 45.112 10.7 55.7 0.7 147.109 116 - 2 16.043 2.6 44.2 0.1 47.0101 70.8 - 3 8.71691 1.6 38.7 0.2 24.2518 56.3 - 4 3.9345 0.7 29.8 0.1 11.3369 40.6 - 5 4.86406 1.3 24.7 0.1 15.7354 35.3 - 6 2.82753 0.2 17.6 0.1 8.7047 23.2 - 7 0.699836 0 15.3 0 0.956617 17.3 - 8 0.623936 0 15.2 0 0.603434 16.7 - 9 0.479546 0 8.6 0 0.710379 9.6 - 10 0.541402 0 6.7 0 0.731484 8 - 11 0.695238 0 5.4 0 1.20241 6.1 - 12 0.554173 0 4.6 0 1.01472 5.8 - 13 0.180221 0 3.2 0 0.248121 3.6 - 14 0.170873 0 3.1 0 0.433704 3.5 - 15 0.15732 0 1.8 0 0.516733 2.1 - 16 0.450182 0.2 2 0 1.92734 3 - 17 0.223078 0.1 1.4 0 0.811549 2.1 - 18 0.0306484 0 1 0 0.0172737 1.1 - 19 0.0217702 0 1 0 0.00731391 1.1 + 0 821.32 47.6 110.4 1.5 755.721 393.4 + 1 28.1207 5.4 46.7 0.6 92.524 87.4 + 2 6.88167 1.2 34.3 0.1 18.2275 48.1 + 3 3.42092 0 27.5 0.1 9.42225 39.1 + 4 3.30778 0.6 18.1 0.1 10.6538 24.7 + 5 0.48064 0 11.1 0 0.435673 12 + 6 1.41634 0.2 10.6 0.1 5.81237 14.5 + 7 0.826727 0 9.8 0 1.69836 12.1 + 8 0.496316 0 7.7 0 0.774217 9.2 + 9 0.272186 0.1 6.4 0 0.250455 7.2 + 10 0.254379 0 5.5 0 0.313849 6.5 + 11 0.293346 0 3.3 0 0.470536 3.6 + 12 0.144997 0 2.5 0 0.152433 2.8 + 13 0.773124 0.3 2 0.1 1.50113 2.8 + 14 0.0678283 0 1.6 0 0.061009 1.7 + 15 0.0130435 0 0.9 0 0.00371946 0.9 + 16 0.04971 0 1.3 0 0.0529845 1.5 + 17 0.0395475 0 0.6 0 0.0515562 0.7 + 18 0.0377388 0 0.3 0 0.0318942 0.4 + 19 0.0318353 0 0.4 0 0.0192351 0.4 ############################################################ Region : Calor-C Production thresholds : gamma 2 cm e- 2 cm e+ 2 cm Energy deposition in an event : - Absorber 580.559 MeV Gap 249.263 MeV + Absorber 626.74 MeV Gap 270.93 MeV Number of secondaries in an event : - gamma in Absorber 22.6 in Gap 7.5 - e- in Absorber 132.8 in Gap 58.2 - e+ in Absorber 1.5 in Gap 0.6 + gamma in Absorber 29.9 in Gap 9.6 + e- in Absorber 167.1 in Gap 70.6 + e+ in Absorber 2.8 in Gap 0.5 Minimum kinetic energy of generated secondaries : - gamma in Absorber 28.3025 keV in Gap 14.9869 keV - e- in Absorber 120.576 eV in Gap 133.685 eV - e+ in Absorber 251.745 keV in Gap 747.741 keV + gamma in Absorber 28.9219 keV in Gap 10.7752 keV + e- in Absorber 144.81 eV in Gap 103.856 eV + e+ in Absorber 1.77411 MeV in Gap 654.597 keV Total track length of e+/e- in an event : - Absorber 25.3818 cm Gap 25.882 cm + Absorber 36.6595 cm Gap 35.2655 cm Total number of steps of e+/e- in an event : - Absorber 243.2 Gap 105.9 + Absorber 303.9 Gap 136.2 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 781.684 22.3 36.5 1.2 385.075 130.7 - 1 29.1067 5.4 29.4 0.6 82.4671 55.3 - 2 9.32772 1.9 24.5 0.2 27.6158 39 - 3 2.74352 0.1 24.3 0 5.36604 30.3 - 4 2.21543 0.2 15 0.1 4.73352 20.9 - 5 0.801168 0 12.2 0 1.0129 14.6 - 6 0.576783 0.1 11.5 0 0.732329 13 - 7 0.845871 0 11.3 0 1.39348 13.8 - 8 0.901756 0.1 8.3 0 1.68987 10 - 9 0.368909 0 4.3 0 0.638774 5.7 - 10 0.175702 0 3.8 0 0.146081 4.2 - 11 0.0764272 0 2.4 0 0.0443169 2.7 - 12 0.590747 0 1.8 0 1.11114 2.5 - 13 0.033897 0 0.9 0 0.0207992 0.9 - 14 0.0118322 0 0.3 0 0.0109058 0.3 - 15 0.242438 0 1.4 0 0.423263 1.8 - 16 0.0159772 0 1.4 0 0.00568028 1.4 - 17 0.0267328 0 0.9 0 0.0233224 1 - 18 0.00719742 0 0.5 0 0.0022819 0.5 - 19 0.0623277 0 0.1 0 0.121828 0.3 + 0 831.846 29.3 41.6 2 535.778 152.5 + 1 28.8748 5 39.1 0.5 88.1758 70.8 + 2 19.5632 3.7 35.9 0.6 56.5919 59.3 + 3 5.25033 0.4 27.8 0.1 9.44769 39.5 + 4 3.99428 0.8 18.1 0.1 9.83318 25.1 + 5 2.86948 0.1 15.7 0 9.54286 21 + 6 1.92952 0 15.4 0 3.74385 19.4 + 7 0.754903 0 10.4 0 1.1631 12.6 + 8 0.455995 0 7.3 0 0.591365 8.8 + 9 0.441295 0 7.4 0 1.01151 8.6 + 10 1.0181 0.2 4.9 0 2.74848 6.3 + 11 0.196263 0 3.9 0 0.151771 4.6 + 12 0.0430355 0 1.2 0 0.0273184 1.5 + 13 0.0568742 0 1.1 0 0.0847816 1.3 + 14 0.123821 0 1.9 0 0.124377 2.1 + 15 0.0233638 0 0.8 0 0.0128805 0.9 + 16 0.0856121 0 1 0 0.0846934 1 + 17 0.0228467 0 1 0 0.00721311 1.2 + 18 0.0477191 0 1.4 0 0.0375337 1.6 + 19 0.0466113 0 0.3 0 0.0834272 0.3 ############################################################ /run/dumpCouples @@ -2967,22 +2970,10 @@ Index : 12 used in the geometry : Yes ==================================================================== ### Run 3 starts. - --------- WWWW ------- G4Exception-START -------- WWWW ------- -*** G4Exception : GeomNav1002 - issued by : G4PathFinder::ReportMove() -Endpoint moved between value returned by ComputeStep() and call to Locate(). - Change of Position is 1e-07 mm long - and its vector is (-4.432e-08,-3.60867e-08,8.20578e-08) mm - Endpoint of ComputeStep() was (-102.223,1177.13,500) - and current position to locate is (-102.223,1177.13,500) -*** This is just a warning message. *** --------- WWWW -------- G4Exception-END --------- WWWW ------- - Run terminated. Run Summary Number of events processed : 10 - User=1.64s Real=1.84s Sys=0.19s + User=1.21s Real=1.33s Sys=0.11s ############################################################ Run Summary - Number of events : 10 ############################################################ @@ -2990,124 +2981,124 @@ Region : Calor-A Production thresholds : gamma 10 um e- 10 um e+ 10 um Energy deposition in an event : - Absorber 513.251 MeV Gap 229.606 MeV + Absorber 1.23428 GeV Gap 526.843 MeV Number of secondaries in an event : - gamma in Absorber 36.9 in Gap 9 - e- in Absorber 871.1 in Gap 864.1 - e+ in Absorber 0.1 in Gap 0.1 + gamma in Absorber 290.8 in Gap 70.2 + e- in Absorber 2908.4 in Gap 2262.8 + e+ in Absorber 15.4 in Gap 3 Minimum kinetic energy of generated secondaries : - gamma in Absorber 996.606 eV in Gap 1.02408 keV - e- in Absorber 13.5079 eV in Gap 129.312 eV - e+ in Absorber 6.90298 MeV in Gap 22.043 MeV + gamma in Absorber 991.141 eV in Gap 994.763 eV + e- in Absorber 8.44538 eV in Gap 103.845 eV + e+ in Absorber 132.199 keV in Gap 637.944 keV Total track length of e+/e- in an event : - Absorber 32.6206 cm Gap 32.0969 cm + Absorber 2.11646 m Gap 1.95518 m Total number of steps of e+/e- in an event : - Absorber 1220.3 Gap 1182.6 + Absorber 5110.4 Gap 3973.4 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 728.906 42.5 1630.3 0 606.805 2248.1 - 1 6.14825 1.1 30.5 0 18.699 52.2 - 2 2.23794 0.7 17.3 0.1 7.28278 25.9 - 3 1.4432 0.6 10.5 0 3.37266 16.3 - 4 0.417139 0 7.7 0 0.662355 9.2 - 5 1.55051 0.4 11.8 0 6.30742 17.7 - 6 1.32388 0.6 8 0.1 3.12494 11.7 - 7 0.252585 0 6.2 0 0.269965 6.6 - 8 0.105986 0 3.4 0 0.0593118 3.9 - 9 0.0754678 0 1.6 0 0.0465 2.1 - 10 0.0491947 0 0.4 0 0.0519647 0.4 - 11 0.0313839 0 1.4 0 0.0135744 1.6 - 12 0.0260054 0 0.7 0 0.0115541 0.9 - 13 0.147275 0 2.1 0 0.372184 2.6 - 14 0.0941539 0 2.1 0 0.0650241 2.2 - 15 0.019214 0 0.6 0 0.00978745 0.8 - 16 0.018076 0 0.3 0 0.0151088 0.3 - 17 0 0 0 0 0 0 - 18 0.010642 0 0.3 0 0.00605992 0.4 - 19 0 0 0 0 0 0 + 0 1435.05 271.2 3403 13 3068.24 6166.4 + 1 176.139 55.3 599.6 2.9 589.803 1208.2 + 2 56.5572 15.2 293.3 1 174.512 504.6 + 3 28.4612 6.2 212.6 0.4 80.5238 306.1 + 4 16.7165 3.2 158.1 0.5 41.4943 213.9 + 5 13.4935 3.5 117.2 0.1 32.6696 160.8 + 6 8.58009 1.4 99 0.2 21.6485 136.4 + 7 7.09066 1.4 73.4 0.1 18.7575 99.6 + 8 3.64049 0.3 49.9 0 6.50539 63.4 + 9 2.74723 0.3 43 0 5.10327 52.2 + 10 3.1551 0.6 32.3 0.1 6.03147 45 + 11 1.45198 0.4 19.3 0 2.28161 24.1 + 12 1.87271 0.4 17.9 0.1 5.10448 28.2 + 13 2.55216 0.9 13.7 0 7.45668 21.7 + 14 1.33756 0.4 12.3 0 4.08561 17.1 + 15 0.862701 0.1 10.4 0 3.30255 15 + 16 0.566091 0.1 5.4 0 2.30197 7.2 + 17 0.10998 0 3.4 0 0.0992288 3.6 + 18 0.389561 0.1 3.1 0 0.869067 4.5 + 19 0.175498 0 2 0 0.323492 2.6 ############################################################ Region : Calor-B Production thresholds : gamma 100 um e- 100 um e+ 100 um Energy deposition in an event : - Absorber 785.194 MeV Gap 337.692 MeV + Absorber 554.838 MeV Gap 237.442 MeV Number of secondaries in an event : - gamma in Absorber 105.9 in Gap 25.8 - e- in Absorber 697.3 in Gap 334.1 - e+ in Absorber 6.1 in Gap 0.8 + gamma in Absorber 40.7 in Gap 11.1 + e- in Absorber 339.3 in Gap 171.8 + e+ in Absorber 1.1 in Gap 0.3 Minimum kinetic energy of generated secondaries : - gamma in Absorber 2.39101 keV in Gap 1.11612 keV - e- in Absorber 101.167 eV in Gap 151.963 eV - e+ in Absorber 230.201 keV in Gap 311.504 keV + gamma in Absorber 2.35555 keV in Gap 1.14455 keV + e- in Absorber 133.708 eV in Gap 109.97 eV + e+ in Absorber 899.08 keV in Gap 3.15468 MeV Total track length of e+/e- in an event : - Absorber 93.4536 cm Gap 85.0281 cm + Absorber 40.942 cm Gap 35.6091 cm Total number of steps of e+/e- in an event : - Absorber 1296.9 Gap 642.7 + Absorber 611.3 Gap 332.7 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 966.032 94 522.4 4 1319.41 1132.2 - 1 58.7895 13.6 106.6 0.9 184.894 204.9 - 2 25.9134 5.7 74.8 0.6 80.2211 122.9 - 3 9.22149 2.5 58.5 0.2 25.8681 80.1 - 4 3.87709 0.5 42.2 0.1 6.63389 54.1 - 5 2.17257 0.4 34.2 0 3.96346 45.6 - 6 2.64332 0.2 29.2 0 5.18096 35.7 - 7 3.54952 0.8 17.3 0.1 9.39264 25.2 - 8 2.05957 1.2 18.8 0.1 4.99081 26.8 - 9 3.68407 0.6 16 0.1 8.96176 22.2 - 10 2.05603 0.2 15.3 0.1 4.76079 20.5 - 11 8.12832 2.3 17.3 0 26.4432 31.7 - 12 10.7179 3.6 16 0.2 33.5004 37 - 13 3.83518 1.2 13 0.1 14.4033 20.1 - 14 2.91695 0.7 9 0.1 6.38789 15.3 - 15 1.58688 0.4 8.1 0 5.44118 11.6 - 16 3.27461 0.9 7 0 8.3747 11.1 - 17 2.03708 0.6 5.5 0.1 6.60828 8.7 - 18 3.00005 0.5 5.6 0.1 9.88027 9.6 - 19 5.32001 1.2 5.8 0.1 14.1523 11.2 + 0 760.134 45.3 374.4 1.1 664.359 732.9 + 1 17.761 4.1 32.6 0.1 63.9162 65.6 + 2 7.06591 1 23.1 0 22.9992 37 + 3 1.0886 0.1 15.6 0 1.83121 23.1 + 4 2.65382 0.7 16.6 0.1 6.07845 23.8 + 5 0.570338 0 11.5 0 0.813793 13 + 6 0.39259 0 8.8 0 0.647445 9.8 + 7 0.433939 0 7.4 0 0.76926 9.7 + 8 0.337157 0 5.9 0 0.281515 8.2 + 9 0.147171 0 4.4 0 0.0989694 5 + 10 0.0589296 0 1.8 0 0.0321348 2.3 + 11 0.0120245 0 0.6 0 0.00607531 0.6 + 12 0.329396 0.1 1.2 0 0.761392 1.8 + 13 0.0450264 0 1.7 0 0.0241241 2.1 + 14 0.00964037 0 0.3 0 0.00383449 0.4 + 15 0.167756 0 1.2 0 0.444314 1.5 + 16 0.0140409 0 0.6 0 0.00626149 0.7 + 17 0.0145305 0 0.5 0 0.0111324 0.5 + 18 0.818925 0.3 1.6 0.1 1.93181 3 + 19 0.223588 0.2 1.2 0 0.494945 2.9 ############################################################ Region : Calor-C Production thresholds : gamma 1 mm e- 1 mm e+ 1 mm Energy deposition in an event : - Absorber 878.981 MeV Gap 366.711 MeV + Absorber 553.875 MeV Gap 245.066 MeV Number of secondaries in an event : - gamma in Absorber 94.6 in Gap 26.7 - e- in Absorber 494.8 in Gap 211.6 - e+ in Absorber 6 in Gap 1 + gamma in Absorber 29.1 in Gap 8.9 + e- in Absorber 180.1 in Gap 85.3 + e+ in Absorber 1.1 in Gap 0.1 Minimum kinetic energy of generated secondaries : - gamma in Absorber 6.96669 keV in Gap 3.07277 keV - e- in Absorber 108.854 eV in Gap 113.225 eV - e+ in Absorber 106.868 keV in Gap 2.26207 MeV + gamma in Absorber 6.9392 keV in Gap 3.32133 keV + e- in Absorber 146.25 eV in Gap 167.352 eV + e+ in Absorber 411.481 keV in Gap 897.718 keV Total track length of e+/e- in an event : - Absorber 86.9061 cm Gap 82.4226 cm + Absorber 35.2628 cm Gap 35.4432 cm Total number of steps of e+/e- in an event : - Absorber 1012.1 Gap 484 + Absorber 394.3 Gap 214.6 ------------------------------------------------------------ Scores in parallel geometry layer eDep/evt nGamma/evt nElec/evt nPosi/evt stpLen/evt nStep/evt - 0 791.116 40.1 126.3 1.1 653.373 435.4 - 1 78.625 14.5 62.4 1.4 194.941 143.8 - 2 70.5945 9.6 59 0.3 112.916 107.8 - 3 38.5828 6.3 52.3 0.8 80.2499 94.7 - 4 26.3392 5.8 44.6 0.1 81.5192 78.8 - 5 18.6566 4.5 43.9 0 53.6577 65 - 6 17.6277 3.8 35.1 0.2 51.7555 61.3 - 7 22.0418 4.7 35.5 0.3 53.6864 65 - 8 24.5784 4.7 32.6 0.5 53.0283 63.2 - 9 15.8562 4 28 0.4 36.8302 49.6 - 10 13.3362 3 27.5 0.2 40.5469 45.3 - 11 10.0412 2 25 0 27.0006 34.2 - 12 15.58 3.4 21.6 0.3 41.6013 37.1 - 13 9.18712 2 18.7 0.1 28.7246 30.5 - 14 9.03878 1.3 16.5 0.2 26.7386 35.7 - 15 9.47711 1.7 15.1 0.2 22.7477 30.3 - 16 15.3637 3.4 15.4 0.4 50.3305 32.3 - 17 11.0924 2.3 15 0.1 25.4129 26.5 - 18 8.96058 1.9 11.8 0.3 25.577 22.1 - 19 8.32092 1.3 8.9 0.1 20.2602 15.9 + 0 760.075 32.8 113.4 0.9 594.172 382.4 + 1 23.3547 3.7 34.6 0.2 73.2146 73.7 + 2 6.04863 1.1 25.8 0 20.0593 37.9 + 3 2.615 0.3 21.7 0.1 5.75471 28.9 + 4 1.53364 0 16.3 0 3.3211 20.7 + 5 1.03378 0 12.8 0 2.93102 15.4 + 6 0.526613 0 10.1 0 0.5437 11.8 + 7 0.307139 0 6.2 0 0.366974 6.7 + 8 0.276775 0 3.4 0 0.381207 4.1 + 9 0.310341 0 4.6 0 0.705024 5.6 + 10 0.664537 0 3.7 0 1.41348 5.1 + 11 0.40285 0 3.3 0 0.734389 4.9 + 12 0.317087 0.1 2.9 0 0.455407 3.2 + 13 0.535107 0 2.8 0 0.937283 3.7 + 14 0.637966 0 1.2 0 1.4366 1.8 + 15 0.0221679 0 0.8 0 0.0117663 0.9 + 16 0.0326264 0 0.7 0 0.0333024 0.7 + 17 0.213742 0 0.8 0 0.555295 1 + 18 0.00787852 0 0.1 0 0.00449578 0.2 + 19 0.0251741 0 0.2 0 0.0280532 0.2 ############################################################ /run/dumpCouples @@ -3199,6 +3190,6 @@ Visualization Manager deleting... G4 kernel has come to Quit state. ================== Deleting memory pools =================== Number of memory pools allocated: 12 of which, static: 0 -Dynamic pools deleted: 12 / Total memory freed: 1.1 MB +Dynamic pools deleted: 12 / Total memory freed: 0.95 MB ============================================================ RunManagerKernel is deleted. Good bye :) diff --git a/source/GNUmakefile b/source/GNUmakefile index 341cd121b3..5a58f0057d 100644 --- a/source/GNUmakefile +++ b/source/GNUmakefile @@ -1,4 +1,4 @@ -# $Id: GNUmakefile 100832 2016-11-02 15:32:45Z gcosmo $ +# $Id: GNUmakefile 102875 2017-02-28 08:07:58Z gcosmo $ # ----------------------------------------------------------------- # "gmake" makes default libraries for each subdomain. # "gmake global" makes global libraries for each subdomain. @@ -168,7 +168,7 @@ endif banner: @$(ECHO) "*************************************************************" - @$(ECHO) " Installation Geant4 version geant4-10-03 " + @$(ECHO) " Installation Geant4 version geant4-10-03-patch-01 " @$(ECHO) " Copyright (C) 1994-2017 Geant4 Collaboration " @$(ECHO) "*************************************************************" diff --git a/source/analysis/History b/source/analysis/History index 58ab3213ca..228065e973 100644 --- a/source/analysis/History +++ b/source/analysis/History @@ -1,4 +1,4 @@ -$Id: History 101419 2016-11-17 10:36:30Z gcosmo $ +$Id: History 102848 2017-02-27 13:09:25Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,10 @@ committal in the SVN repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 24, 2017 I. Hrivnacova (analysis-V10-02-26) +- Restored clean-up of Root empty files in MT mode + (which was lost with previous updates) + November 17, 2016 I. Hrivnacova (analysis-V10-02-25) - Fixed compiler warning issued when G4VERBOSE is not set. - Updated to g4tools 2.3.0 (Guy Barrand): diff --git a/source/analysis/accumulables/CMakeLists.txt b/source/analysis/accumulables/CMakeLists.txt index 448cefd2e4..88ffdfffd1 100644 --- a/source/analysis/accumulables/CMakeLists.txt +++ b/source/analysis/accumulables/CMakeLists.txt @@ -7,7 +7,7 @@ # # Created on : 15/07/2013 # -# $Id: CMakeLists.txt 99561 2016-09-27 07:04:12Z gcosmo $ +# $Id: CMakeLists.txt 92606 2015-09-08 12:34:01Z ihrivnac $ # #------------------------------------------------------------------------------ diff --git a/source/analysis/root/src/G4RootAnalysisManager.cc b/source/analysis/root/src/G4RootAnalysisManager.cc index 84766ca46d..fe2479eb11 100644 --- a/source/analysis/root/src/G4RootAnalysisManager.cc +++ b/source/analysis/root/src/G4RootAnalysisManager.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4RootAnalysisManager.cc 100648 2016-10-31 10:06:45Z gcosmo $ +// $Id: G4RootAnalysisManager.cc 102848 2017-02-27 13:09:25Z gcosmo $ // Author: Ivana Hrivnacova, 18/06/2013 (ivana@ipno.in2p3.fr) @@ -624,6 +624,32 @@ G4bool G4RootAnalysisManager::CloseFileImpl() fFileManager->CloseFile(); } + // No files clean-up in sequential mode + if ( ! G4Threading::IsMultithreadedApplication() ) return finalResult; + + // Delete files if empty in MT mode + if ( ( fState.GetIsMaster() && + fH1Manager->IsEmpty() && fH2Manager->IsEmpty() && fH3Manager->IsEmpty() && + fP1Manager->IsEmpty() && fP2Manager->IsEmpty() && fNtupleManager->IsEmpty() ) || + ( ( ! fState.GetIsMaster() ) && fNtupleManager->IsEmpty() && + fNtupleMergeMode == G4NtupleMergeMode::kNone ) ) { + result = ! std::remove(fFileManager->GetFullFileName()); + // std::remove returns 0 when success + if ( ! result ) { + G4ExceptionDescription description; + description << " " << "Removing file " + << fFileManager->GetFullFileName() << " failed"; + G4Exception("G4XmlAnalysisManager::CloseFile()", + "Analysis_W021", JustWarning, description); + } + finalResult = finalResult && result; +#ifdef G4VERBOSE + if ( fState.GetVerboseL1() ) + fState.GetVerboseL1() + ->Message("delete", "empty file", fFileManager->GetFullFileName()); +#endif + } + return finalResult; } diff --git a/source/geometry/solids/Boolean/History b/source/geometry/solids/Boolean/History index 5e483a165e..2be7caa553 100644 --- a/source/geometry/solids/Boolean/History +++ b/source/geometry/solids/Boolean/History @@ -1,5 +1,5 @@ -$Id: History 101046 2016-11-04 10:44:26Z gcosmo $ +$Id: History 102530 2017-02-08 13:41:59Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -20,6 +20,11 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- + February 2, 2017 G. Cosmo geom-bool-V10-02-12 + - Return normal from solid being subtracted, in case point is located + outside in G4SubtractionSolid::SurfaceNormal(). + - Code formatting and minor cleanup in G4IntersectionSolid. + November 4, 2016 E. Tcherniaev geom-bool-V10-02-11 - Implemented Extent() method for all shapes/constructs and use it in CalculateExtent(). diff --git a/source/geometry/solids/Boolean/src/G4IntersectionSolid.cc b/source/geometry/solids/Boolean/src/G4IntersectionSolid.cc index 66eeadeef2..674bac112f 100644 --- a/source/geometry/solids/Boolean/src/G4IntersectionSolid.cc +++ b/source/geometry/solids/Boolean/src/G4IntersectionSolid.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4IntersectionSolid.cc 101046 2016-11-04 10:44:26Z gcosmo $ +// $Id: G4IntersectionSolid.cc 102530 2017-02-08 13:41:59Z gcosmo $ // // Implementation of methods for the class G4IntersectionSolid // @@ -258,28 +258,22 @@ G4IntersectionSolid::SurfaceNormal( const G4ThreeVector& p ) const } #endif - // OLD: if(fPtrSolidA->DistanceToOut(p) <= fPtrSolidB->DistanceToOut(p) ) - // On the surface of both is difficult ... treat it like on A now! // - // if( (insideA == kSurface) && (insideB == kSurface) ) - // normal= fPtrSolidA->SurfaceNormal(p) ; - // else if( insideA == kSurface ) - { - normal= fPtrSolidA->SurfaceNormal(p) ; - } + { + normal= fPtrSolidA->SurfaceNormal(p) ; + } else if( insideB == kSurface ) - { - normal= fPtrSolidB->SurfaceNormal(p) ; - } - // We are on neither surface, so we should generate an exception - else - { - if(fPtrSolidA->DistanceToOut(p) <= fPtrSolidB->DistanceToOut(p) ) - normal= fPtrSolidA->SurfaceNormal(p) ; - else - normal= fPtrSolidB->SurfaceNormal(p) ; + { + normal= fPtrSolidB->SurfaceNormal(p) ; + } + else // We are on neither surface, so we should generate an exception + { + if(fPtrSolidA->DistanceToOut(p) <= fPtrSolidB->DistanceToOut(p) ) + normal= fPtrSolidA->SurfaceNormal(p) ; + else + normal= fPtrSolidB->SurfaceNormal(p) ; #ifdef G4BOOLDEBUG G4cout << "WARNING - Invalid call in " << "G4IntersectionSolid::SurfaceNormal(p)" << G4endl diff --git a/source/geometry/solids/Boolean/src/G4SubtractionSolid.cc b/source/geometry/solids/Boolean/src/G4SubtractionSolid.cc index 3b7f9fc542..30615ee48f 100644 --- a/source/geometry/solids/Boolean/src/G4SubtractionSolid.cc +++ b/source/geometry/solids/Boolean/src/G4SubtractionSolid.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4SubtractionSolid.cc 101046 2016-11-04 10:44:26Z gcosmo $ +// $Id: G4SubtractionSolid.cc 102530 2017-02-08 13:41:59Z gcosmo $ // // Implementation of methods for the class G4IntersectionSolid // @@ -221,8 +221,11 @@ G4ThreeVector G4SubtractionSolid::SurfaceNormal( const G4ThreeVector& p ) const { G4ThreeVector normal; - EInside insideThis= Inside(p); - if( insideThis == kOutside ) + + EInside InsideA = fPtrSolidA->Inside(p); + EInside InsideB = fPtrSolidB->Inside(p); + + if( InsideA == kOutside ) { #ifdef G4BOOLDEBUG G4cout << "WARNING - Invalid call [1] in " @@ -234,46 +237,41 @@ G4SubtractionSolid::SurfaceNormal( const G4ThreeVector& p ) const << " Point p is outside !" << G4endl; G4cerr << " p = " << p << G4endl; #endif + normal = fPtrSolidA->SurfaceNormal(p) ; } - else - { - EInside InsideA = fPtrSolidA->Inside(p); - EInside InsideB = fPtrSolidB->Inside(p); - - if( InsideA == kSurface && - InsideB != kInside ) + else if( InsideA == kSurface && + InsideB != kInside ) + { + normal = fPtrSolidA->SurfaceNormal(p) ; + } + else if( InsideA == kInside && + InsideB != kOutside ) + { + normal = -fPtrSolidB->SurfaceNormal(p) ; + } + else + { + if ( fPtrSolidA->DistanceToOut(p) <= fPtrSolidB->DistanceToIn(p) ) { normal = fPtrSolidA->SurfaceNormal(p) ; } - else if( InsideA == kInside && - InsideB != kOutside ) + else { normal = -fPtrSolidB->SurfaceNormal(p) ; } - else - { - if ( fPtrSolidA->DistanceToOut(p) <= fPtrSolidB->DistanceToIn(p) ) - { - normal = fPtrSolidA->SurfaceNormal(p) ; - } - else - { - normal = -fPtrSolidB->SurfaceNormal(p) ; - } #ifdef G4BOOLDEBUG - if(insideThis == kInside) - { - G4cout << "WARNING - Invalid call [2] in " + if(Inside(p) == kInside) + { + G4cout << "WARNING - Invalid call [2] in " << "G4SubtractionSolid::SurfaceNormal(p)" << G4endl << " Point p is inside !" << G4endl; - G4cout << " p = " << p << G4endl; - G4cerr << "WARNING - Invalid call [2] in " + G4cout << " p = " << p << G4endl; + G4cerr << "WARNING - Invalid call [2] in " << "G4SubtractionSolid::SurfaceNormal(p)" << G4endl << " Point p is inside !" << G4endl; - G4cerr << " p = " << p << G4endl; - } -#endif + G4cerr << " p = " << p << G4endl; } +#endif } return normal; } diff --git a/source/geometry/solids/CSG/History b/source/geometry/solids/CSG/History index 81b0640fe9..481fbddd0f 100644 --- a/source/geometry/solids/CSG/History +++ b/source/geometry/solids/CSG/History @@ -1,4 +1,4 @@ -$Id: History 101519 2016-11-18 15:43:54Z gcosmo $ +$Id: History 102769 2017-02-22 09:05:45Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,17 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 22, 2017 E.Tcherniaev geom-csg-V10-02-21 +- Fix in GetCubicVolume() and GetSurfaceArea() for G4CutTubs, to make + use of the cached values. Addressing problem report #1943. + +February 2, 2017 G.Cosmo geom-csg-V10-02-20 +- Removed redundant code/checks in G4Orb::SurfaceNormal(). + +December 20, 2016 H.Burkhardt, E.Tcherniaev +- Use radius differences and hypot to improve precision in G4Torus. + Addressing problem report #1931. + November 18, 2016 E.Tcherniaev geom-csg-V10-02-19 - Added consistency checks for extent computation in USolids wrappers. diff --git a/source/geometry/solids/CSG/include/G4CutTubs.icc b/source/geometry/solids/CSG/include/G4CutTubs.icc index 10fd03d295..dfa4f01b87 100644 --- a/source/geometry/solids/CSG/include/G4CutTubs.icc +++ b/source/geometry/solids/CSG/include/G4CutTubs.icc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4CutTubs.icc 66356 2012-12-18 09:02:32Z gcosmo $ +// $Id: G4CutTubs.icc 102769 2017-02-22 09:05:45Z gcosmo $ // // -------------------------------------------------------------------- // GEANT 4 inline definitions file @@ -36,12 +36,14 @@ inline G4double G4CutTubs::GetCubicVolume() { - return G4VSolid::GetCubicVolume(); + if (fCubicVolume == 0.) { fCubicVolume = G4VSolid::GetCubicVolume(); } + return fCubicVolume; } inline G4double G4CutTubs::GetSurfaceArea() { - return G4VSolid::GetSurfaceArea(); + if (fSurfaceArea == 0.) { fSurfaceArea = G4VSolid::GetSurfaceArea(); } + return fSurfaceArea; } inline diff --git a/source/geometry/solids/CSG/src/G4Orb.cc b/source/geometry/solids/CSG/src/G4Orb.cc index 98cba1a294..dc9f214625 100644 --- a/source/geometry/solids/CSG/src/G4Orb.cc +++ b/source/geometry/solids/CSG/src/G4Orb.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Orb.cc 101121 2016-11-07 09:18:01Z gcosmo $ +// $Id: G4Orb.cc 102528 2017-02-08 13:37:51Z gcosmo $ // // class G4Orb // @@ -295,28 +295,11 @@ EInside G4Orb::Inside( const G4ThreeVector& p ) const ///////////////////////////////////////////////////////////////////// // // Return unit normal of surface closest to p -// - note if point on z axis, ignore phi divided sides -// - unsafe if point close to z axis a rmin=0 - no explicit checks G4ThreeVector G4Orb::SurfaceNormal( const G4ThreeVector& p ) const { - ENorm side = kNRMax; - G4ThreeVector norm; G4double radius = std::sqrt(p.x()*p.x()+p.y()*p.y()+p.z()*p.z()); - - switch (side) - { - case kNRMax: - norm = G4ThreeVector(p.x()/radius,p.y()/radius,p.z()/radius); - break; - default: // Should never reach this case ... - DumpInfo(); - G4Exception("G4Orb::SurfaceNormal()", "GeomSolids1002", JustWarning, - "Undefined side for valid surface normal to solid."); - break; - } - - return norm; + return G4ThreeVector(p.x()/radius,p.y()/radius,p.z()/radius); } /////////////////////////////////////////////////////////////////////////////// diff --git a/source/geometry/solids/CSG/src/G4Torus.cc b/source/geometry/solids/CSG/src/G4Torus.cc index 3a7212ae45..ba3e2cac8a 100644 --- a/source/geometry/solids/CSG/src/G4Torus.cc +++ b/source/geometry/solids/CSG/src/G4Torus.cc @@ -24,13 +24,14 @@ // ******************************************************************** // // -// $Id: G4Torus.cc 101121 2016-11-07 09:18:01Z gcosmo $ +// $Id: G4Torus.cc 102528 2017-02-08 13:37:51Z gcosmo $ // // // class G4Torus // // Implementation // +// 16.12.16 H.Burkhardt: use radius differences and hypot to improve precision // 28.10.16 E.Tcherniaev: reimplemented CalculateExtent(), // added Extent(), removed CreateRotatedVertices() // 05.04.12 M.Kelsey: Use sqrt(r) in GetPointOnSurface() for uniform points @@ -272,13 +273,13 @@ void G4Torus::TorusRootsJT( const G4ThreeVector& p, G4double pDotV = p.x()*v.x() + p.y()*v.y() + p.z()*v.z() ; G4double pRad2 = p.x()*p.x() + p.y()*p.y() + p.z()*p.z() ; + G4double d=pRad2 - Rtor2; c[0] = 1.0 ; c[1] = 4*pDotV ; - c[2] = 2*(pRad2 + 2*pDotV*pDotV - Rtor2 - r2 + 2*Rtor2*v.z()*v.z()) ; - c[3] = 4*(pDotV*(pRad2 - Rtor2 - r2) + 2*Rtor2*p.z()*v.z()) ; - c[4] = pRad2*pRad2 - 2*pRad2*(Rtor2+r2) - + 4*Rtor2*p.z()*p.z() + (Rtor2-r2)*(Rtor2-r2) ; - + c[2] = 2*( (d + 2*pDotV*pDotV - r2) + 2*Rtor2*v.z()*v.z()); + c[3] = 4*(pDotV*(d - r2) + 2*Rtor2*p.z()*v.z()) ; + c[4] = (d-r2)*(d-r2) +4*Rtor2*(p.z()*p.z()-r2); + G4JTPolynomialSolver torusEq; num = torusEq.FindRoots( c, 4, srd, si ); @@ -365,10 +366,8 @@ G4double G4Torus::SolveNumericJT( const G4ThreeVector& p, // compute scalar product at position p : v.n // ( n taken from SurfaceNormal, not normalized ) - scal = v* G4ThreeVector( p.x()*(1-fRtor/std::sqrt(p.x()*p.x() - + p.y()*p.y())), - p.y()*(1-fRtor/std::sqrt(p.x()*p.x() - + p.y()*p.y())), + scal = v* G4ThreeVector( p.x()*(1-fRtor/std::hypot(p.x(),p.y())), + p.y()*(1-fRtor/std::hypot(p.x(),p.y())), p.z() ); // change sign in case of inner radius @@ -387,10 +386,8 @@ G4double G4Torus::SolveNumericJT( const G4ThreeVector& p, { // compute scalar product at position p : v.n // - scal = v* G4ThreeVector( p.x()*(1-fRtor/std::sqrt(p.x()*p.x() - + p.y()*p.y())), - p.y()*(1-fRtor/std::sqrt(p.x()*p.x() - + p.y()*p.y())), + scal = v* G4ThreeVector( p.x()*(1-fRtor/std::hypot(p.x(),p.y())), + p.y()*(1-fRtor/std::hypot(p.x(),p.y())), p.z() ); // change sign in case of inner radius @@ -601,14 +598,14 @@ G4bool G4Torus::CalculateExtent( const EAxis pAxis, EInside G4Torus::Inside( const G4ThreeVector& p ) const { - G4double r2, pt2, pPhi, tolRMin, tolRMax ; + G4double r, pt2, pPhi, tolRMin, tolRMax ; EInside in = kOutside ; // General precals // - r2 = p.x()*p.x() + p.y()*p.y() ; - pt2 = r2 + p.z()*p.z() + fRtor*fRtor - 2*fRtor*std::sqrt(r2) ; + r = std::hypot(p.x(),p.y()); + pt2 = p.z()*p.z() + (r-fRtor)*(r-fRtor); if (fRmin) tolRMin = fRmin + fRminTolerance ; else tolRMin = 0 ; @@ -713,7 +710,7 @@ EInside G4Torus::Inside( const G4ThreeVector& p ) const G4ThreeVector G4Torus::SurfaceNormal( const G4ThreeVector& p ) const { G4int noSurfaces = 0; - G4double rho2, rho, pt2, pt, pPhi; + G4double rho, pt, pPhi; G4double distRMin = kInfinity; G4double distSPhi = kInfinity, distEPhi = kInfinity; @@ -726,11 +723,8 @@ G4ThreeVector G4Torus::SurfaceNormal( const G4ThreeVector& p ) const G4ThreeVector nR, nPs, nPe; G4ThreeVector norm, sumnorm(0.,0.,0.); - rho2 = p.x()*p.x() + p.y()*p.y(); - rho = std::sqrt(rho2); - pt2 = rho2+p.z()*p.z() +fRtor * (fRtor-2*rho); - pt2 = std::max(pt2, 0.0); // std::fabs(pt2); - pt = std::sqrt(pt2) ; + rho = std::hypot(p.x(),p.y()); + pt = std::hypot(p.z(),rho-fRtor); G4double distRMax = std::fabs(pt - fRmax); if(fRmin) distRMin = std::fabs(pt - fRmin); @@ -847,13 +841,11 @@ G4ThreeVector G4Torus::ApproxSurfaceNormal( const G4ThreeVector& p ) const { ENorm side ; G4ThreeVector norm; - G4double rho2,rho,pt2,pt,phi; + G4double rho,pt,phi; G4double distRMin,distRMax,distSPhi,distEPhi,distMin; - rho2 = p.x()*p.x() + p.y()*p.y(); - rho = std::sqrt(rho2) ; - pt2 = std::fabs(rho2+p.z()*p.z() +fRtor*fRtor - 2*fRtor*rho) ; - pt = std::sqrt(pt2) ; + rho = std::hypot(p.x(),p.y()); + pt = std::hypot(p.z(),rho-fRtor); #ifdef G4CSGDEBUG G4cout << " G4Torus::ApproximateSurfaceNormal called for point " << p @@ -970,7 +962,7 @@ G4double G4Torus::DistanceToIn( const G4ThreeVector& p, G4double tolORMin2; // `generous' radii squared G4double tolORMax2; - G4double Dist,xi,yi,zi,rhoi2,it2; // Intersection point variables + G4double Dist,xi,yi,zi,rhoi,it2; // Intersection point variables G4double Comp; G4double cosSPhi,sinSPhi; // Trig for phi start intersect @@ -1003,8 +995,6 @@ G4double G4Torus::DistanceToIn( const G4ThreeVector& p, // Intersection with Rmax (possible return) and Rmin (must also check phi) - G4double Rtor2 = fRtor*fRtor ; - snxt = SolveNumericJT(p,v,fRmax,true); if (fRmin) // Possible Rmin intersection @@ -1043,8 +1033,8 @@ G4double G4Torus::DistanceToIn( const G4ThreeVector& p, xi = p.x() + sphi*v.x() ; yi = p.y() + sphi*v.y() ; zi = p.z() + sphi*v.z() ; - rhoi2 = xi*xi + yi*yi ; - it2 = std::fabs(rhoi2 + zi*zi + Rtor2 - 2*fRtor*std::sqrt(rhoi2)) ; + rhoi = std::hypot(xi,yi); + it2 = zi*zi + (rhoi-fRtor)*(rhoi-fRtor); if ( it2 >= tolORMin2 && it2 <= tolORMax2 ) { @@ -1076,8 +1066,8 @@ G4double G4Torus::DistanceToIn( const G4ThreeVector& p, xi = p.x() + sphi*v.x() ; yi = p.y() + sphi*v.y() ; zi = p.z() + sphi*v.z() ; - rhoi2 = xi*xi + yi*yi ; - it2 = std::fabs(rhoi2 + zi*zi + Rtor2 - 2*fRtor*std::sqrt(rhoi2)) ; + rhoi = std::hypot(xi,yi); + it2 = zi*zi + (rhoi-fRtor)*(rhoi-fRtor); if (it2 >= tolORMin2 && it2 <= tolORMax2) { @@ -1106,13 +1096,10 @@ G4double G4Torus::DistanceToIn( const G4ThreeVector& p ) const { G4double safe=0.0, safe1, safe2 ; G4double phiC, cosPhiC, sinPhiC, safePhi, ePhi, cosPsi ; - G4double rho2, rho, pt2, pt ; - - rho2 = p.x()*p.x() + p.y()*p.y() ; - rho = std::sqrt(rho2) ; - pt2 = std::fabs(rho2 + p.z()*p.z() + fRtor*fRtor - 2*fRtor*rho) ; - pt = std::sqrt(pt2) ; - + G4double rho, pt ; + + rho = std::hypot(p.x(),p.y()); + pt = std::hypot(p.z(),rho-fRtor); safe1 = fRmin - pt ; safe2 = pt - fRmax ; @@ -1175,18 +1162,9 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, // To be done: Check the precision of this calculation. // If you want return always validNorm = false, then take the version below - G4double rho2 = p.x()*p.x()+p.y()*p.y(); - G4double rho = std::sqrt(rho2) ; - - G4double pt2 = rho2 + p.z()*p.z() + fRtor * (fRtor - 2.0*rho); - // Regroup for slightly better FP accuracy - - if( pt2 < 0.0) - { - pt2= std::fabs( pt2 ); - } - - G4double pt = std::sqrt(pt2) ; + + G4double rho = std::hypot(p.x(),p.y()); + G4double pt = hypot(p.z(),rho-fRtor); G4double pDotV = p.x()*v.x() + p.y()*v.y() + p.z()*v.z() ; @@ -1195,7 +1173,7 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, G4double vDotNmax = pDotV - fRtor*(v.x()*p.x() + v.y()*p.y())/rho ; G4double pDotxyNmax = (1 - fRtor/rho) ; - if( (pt2 > tolRMax*tolRMax) && (vDotNmax >= 0) ) + if( (pt*pt > tolRMax*tolRMax) && (vDotNmax >= 0) ) { // On tolerant boundary & heading outwards (or perpendicular to) outer // radial surface -> leaving immediately with *n for really convex part @@ -1221,7 +1199,7 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, { G4double tolRMin = fRmin + fRminTolerance ; - if ( (pt2 < tolRMin*tolRMin) && (vDotNmax < 0) ) + if ( (pt*pt < tolRMin*tolRMin) && (vDotNmax < 0) ) { if (calcNorm) { *validNorm = false ; } // Concave surface of the torus return snxt = 0 ; // Leaving by Rmin immediately @@ -1409,7 +1387,7 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, } } - G4double rhoi2,rhoi,it2,it,iDotxyNmax ; + G4double rhoi,it,iDotxyNmax ; // Note: by numerical computation we know where the ray hits the torus // So I propose to return the side where the ray hits @@ -1419,12 +1397,11 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, { case kRMax: // n is unit vector xi = p.x() + snxt*v.x() ; - yi =p.y() + snxt*v.y() ; + yi = p.y() + snxt*v.y() ; zi = p.z() + snxt*v.z() ; - rhoi2 = xi*xi + yi*yi ; - rhoi = std::sqrt(rhoi2) ; - it2 = std::fabs(rhoi2 + zi*zi + fRtor*fRtor - 2*fRtor*rhoi) ; - it = std::sqrt(it2) ; + rhoi = std::hypot(xi,yi); + it = hypot(zi,rhoi-fRtor); + iDotxyNmax = (1-fRtor/rhoi) ; if(iDotxyNmax >= -2.*fRmaxTolerance) // really convex part of Rmax { @@ -1505,13 +1482,12 @@ G4double G4Torus::DistanceToOut( const G4ThreeVector& p, G4double G4Torus::DistanceToOut( const G4ThreeVector& p ) const { G4double safe=0.0,safeR1,safeR2; - G4double rho2,rho,pt2,pt ; + G4double rho,pt ; G4double safePhi,phiC,cosPhiC,sinPhiC,ePhi; - rho2 = p.x()*p.x() + p.y()*p.y() ; - rho = std::sqrt(rho2) ; - pt2 = std::fabs(rho2 + p.z()*p.z() + fRtor*fRtor - 2*fRtor*rho) ; - pt = std::sqrt(pt2) ; - + + rho = std::hypot(p.x(),p.y()); + pt = std::hypot(p.z(),rho-fRtor); + #ifdef G4CSGDEBUG if( Inside(p) == kOutside ) { diff --git a/source/geometry/solids/specific/History b/source/geometry/solids/specific/History index 87f6e82ad6..0cd7e5ae3a 100644 --- a/source/geometry/solids/specific/History +++ b/source/geometry/solids/specific/History @@ -1,4 +1,4 @@ -$Id: History 101819 2016-12-01 08:13:36Z gcosmo $ +$Id: History 102532 2017-02-08 13:44:45Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,11 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +13-December-2016 G.Cosmo (geom-specific-V10-02-26) +- Correction in G4UExtrudedSolid to signature for CalculateExtent(). + Fixes issue of undefined symbol if extruded-solid not included in the + list of VecGeom wrappers to activate. + 30-November-2016 E.Tcherniaev (geom-specific-V10-02-25) - Call RemoveRedundantVertices() from G4GeomTools in CalculateExtent() for G4Polycone, G4Polyhedra and related USolids wrappers. diff --git a/source/geometry/solids/specific/src/G4UExtrudedSolid.cc b/source/geometry/solids/specific/src/G4UExtrudedSolid.cc index b24efad31f..a6e1b71688 100644 --- a/source/geometry/solids/specific/src/G4UExtrudedSolid.cc +++ b/source/geometry/solids/specific/src/G4UExtrudedSolid.cc @@ -260,10 +260,10 @@ void G4UExtrudedSolid::Extent(G4ThreeVector& pMin, G4ThreeVector& pMax) const // Calculate extent under transform and specified limit G4bool -G4ExtrudedSolid::CalculateExtent(const EAxis pAxis, - const G4VoxelLimits& pVoxelLimit, - const G4AffineTransform& pTransform, - G4double& pMin, G4double& pMax) const +G4UExtrudedSolid::CalculateExtent(const EAxis pAxis, + const G4VoxelLimits& pVoxelLimit, + const G4AffineTransform& pTransform, + G4double& pMin, G4double& pMax) const { G4ThreeVector bmin, bmax; G4bool exist; diff --git a/source/geometry/volumes/History b/source/geometry/volumes/History index 476f222165..84964d4bd9 100644 --- a/source/geometry/volumes/History +++ b/source/geometry/volumes/History @@ -1,4 +1,4 @@ -$Id: History 100429 2016-10-21 13:00:52Z gcosmo $ +$Id: History 102534 2017-02-08 13:47:58Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,12 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +January 10th, 2017 G.Cosmo - geomvol-V10-02-04 +- Correction in G4NavigationHistory default constructor to use + GetLevels() instead of GetNewLevels() from G4NavigationHistoryPool, + to favor re-use of already allocated space. + Thanks to M.Karamitros for spotting this. + October 21st, 2016 G.Cosmo - geomvol-V10-02-03 - Moved initialisation of G4GeomSplitter thread-local data to be inline along with generic template type. diff --git a/source/geometry/volumes/src/G4NavigationHistory.cc b/source/geometry/volumes/src/G4NavigationHistory.cc index b5093efbf0..e62e59060b 100644 --- a/source/geometry/volumes/src/G4NavigationHistory.cc +++ b/source/geometry/volumes/src/G4NavigationHistory.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4NavigationHistory.cc 96346 2016-04-08 14:10:33Z gcosmo $ +// $Id: G4NavigationHistory.cc 102534 2017-02-08 13:47:58Z gcosmo $ // // // G4NavigationHistory Implementation @@ -41,7 +41,7 @@ G4ThreadLocal G4Allocator *aNavigHistoryAllocator = 0; G4NavigationHistory::G4NavigationHistory() : fStackDepth(0) { - fNavHistory = G4NavigationHistoryPool::GetInstance()->GetNewLevels(); + fNavHistory = G4NavigationHistoryPool::GetInstance()->GetLevels(); Clear(); } diff --git a/source/global/History b/source/global/History index 119677d008..40f1b7180c 100644 --- a/source/global/History +++ b/source/global/History @@ -17,6 +17,12 @@ committal in the SVN repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +December 19, 2016 G.Cosmo (global-V10-02-34) +- Removed obsolete utility class G4SubString used internally in G4String, + as no longer necessary and also including unnecessary and buggy operators. + Addressing problem report #1864. +- Updated date and version for 10.3.p01. + November 16, 2016 G.Cosmo (global-V10-02-33) - Fixed compilation warning on MacOS Sierra in MT mode in function G4Threading::G4GetPidId(). diff --git a/source/global/management/include/G4String.hh b/source/global/management/include/G4String.hh index 4c75443784..1aaea6fada 100644 --- a/source/global/management/include/G4String.hh +++ b/source/global/management/include/G4String.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4String.hh 94844 2015-12-10 16:23:09Z gcosmo $ +// $Id: G4String.hh 102537 2017-02-08 14:02:58Z gcosmo $ // // //--------------------------------------------------------------- @@ -55,50 +55,7 @@ #endif typedef std::string::size_type str_size; - -class G4String; - -class G4SubString -{ -public: - - inline G4SubString(const G4SubString&); - - inline G4SubString& operator=(const char*); - - inline G4SubString& operator=(const G4SubString&); - - inline char& operator()(str_size); - inline char operator()(str_size) const; - inline char& operator[](str_size); - inline char operator[](str_size) const; - - inline G4int operator!() const; - - inline G4bool operator==(const G4String&) const; - inline G4bool operator==(const char*) const; - inline G4bool operator!=(const G4String&) const; - inline G4bool operator!=(const char*) const; - - inline str_size length() const; - inline str_size start() const; - - // For detecting null substrings - // - inline G4bool isNull() const; - -private: - - inline G4SubString(G4String&, str_size, str_size); - - G4String* mystring; - str_size mystart; - str_size extent; - - friend class G4String; - -}; - +typedef std::string G4SubString; class G4String : public std::string { @@ -115,7 +72,6 @@ public: inline G4String ( const char * ); inline G4String ( const char *, str_size ); inline G4String ( const G4String& ); - inline G4String ( const G4SubString& ); inline G4String ( const std::string & ); ~G4String () {} @@ -126,7 +82,6 @@ public: inline char operator () (str_size) const; inline char& operator () (str_size); - inline G4String& operator+=(const G4SubString&); inline G4String& operator+=(const char*); inline G4String& operator+=(const std::string &); inline G4String& operator+=(const char&); @@ -136,7 +91,7 @@ public: inline G4bool operator!=(const char*) const; inline operator const char*() const; - inline G4SubString operator()(str_size, str_size); + inline G4String operator()(str_size, str_size); inline G4int compareTo(const char*, caseCompare mode=exact) const; inline G4int compareTo(const G4String&, caseCompare mode=exact) const; diff --git a/source/global/management/include/G4String.icc b/source/global/management/include/G4String.icc index 872048f7b5..8d837812c1 100644 --- a/source/global/management/include/G4String.icc +++ b/source/global/management/include/G4String.icc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4String.icc 94844 2015-12-10 16:23:09Z gcosmo $ +// $Id: G4String.icc 102536 2017-02-08 13:53:34Z gcosmo $ // // //--------------------------------------------------------------- @@ -33,98 +33,6 @@ // G4String //--------------------------------------------------------------- -// ************************************************************** -// G4SubString -// ************************************************************** - -inline G4SubString::G4SubString(const G4SubString& str) - : mystring(str.mystring), mystart(str.mystart), extent(str.extent) -{ -} - -inline G4SubString::G4SubString(G4String& str, str_size siz, str_size e) - : mystring(&str),mystart(siz),extent(e) -{ -} - -inline G4SubString& G4SubString::operator=(const G4SubString& str) -{ - mystring->replace(mystart,extent,str.mystring->data(),str.length()); - extent=str.length(); - return *this; -} - -inline G4SubString& G4SubString::operator=(const char* str) -{ - mystring->replace(mystart,extent,str,strlen(str)); - extent=strlen(str); - return *this; -} - -inline char& G4SubString::operator()(str_size i) -{ - return mystring->operator[](mystart+i); -} - -inline char G4SubString::operator()(str_size i) const -{ - return mystring->operator[](mystart+i); -} - -inline char& G4SubString::operator[](str_size i) -{ - return mystring->operator[](mystart+i); -} - -inline char G4SubString::operator[](str_size i) const -{ - return mystring->operator[](mystart+i); -} - -inline G4int G4SubString::operator!() const -{ - return (extent==0) ? 1 : 0; -} - -inline G4bool G4SubString::operator==(const G4String& str) const -{ - return (mystring->find(str,mystart,extent) != std::string::npos); -} - -inline G4bool G4SubString::operator==(const char* str) const -{ - return (mystring->find(str,mystart,extent) != std::string::npos); -} - -inline G4bool G4SubString::operator!=(const G4String& str) const -{ - return (mystring->find(str,mystart,extent) == std::string::npos); -} - -inline G4bool G4SubString::operator!=(const char* str) const -{ - return (mystring->find(str,mystart,extent) == std::string::npos); -} - -inline str_size G4SubString::length() const -{ - return extent; -} - -inline str_size G4SubString::start() const -{ - return mystart; -} - -inline G4bool G4SubString::isNull() const -{ - return (extent==0); -} - -// ************************************************************** -// G4String -// ************************************************************** - inline G4String::G4String () {} inline G4String::G4String ( const char * astring ) @@ -144,9 +52,6 @@ inline G4String::G4String ( char ch ) inline G4String::G4String ( const G4String& str ) : std_string(str) {} -inline G4String::G4String ( const G4SubString& str ) - : std_string(*(str.mystring),str.mystart,str.extent) {} - inline G4String::G4String ( const std::string& str ) : std_string(str) {} @@ -184,11 +89,9 @@ inline char& G4String::operator () (str_size i) return std_string::operator[](i); } -inline G4String& G4String::operator+=(const G4SubString& str) +inline G4String G4String::operator()(str_size start, str_size extent) { - G4String tmp(str); - std_string::operator+=(tmp); - return *this; + return G4String(substr(start,extent)); } inline G4String& G4String::operator+=(const char* str) @@ -418,11 +321,6 @@ inline str_size G4String::index (char ch, G4int pos) const return std_string::find(ch,pos); } -inline G4SubString G4String::operator()(str_size start, str_size extent) -{ - return G4SubString(*this,start,extent); -} - inline const char* G4String::data() const { return c_str(); diff --git a/source/global/management/include/G4Tokenizer.hh b/source/global/management/include/G4Tokenizer.hh index 89d1e8722f..64e19a8308 100644 --- a/source/global/management/include/G4Tokenizer.hh +++ b/source/global/management/include/G4Tokenizer.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4Tokenizer.hh 67970 2013-03-13 10:10:06Z gcosmo $ +// $Id: G4Tokenizer.hh 102536 2017-02-08 13:53:34Z gcosmo $ // // //--------------------------------------------------------------- @@ -50,7 +50,7 @@ class G4Tokenizer public: G4Tokenizer(const G4String& stn):string2tokenize(stn),actual(0){} - G4SubString operator()(const char* str=" \t\n",size_t l=0) + G4String operator()(const char* str=" \t\n",size_t l=0) { size_t i,j,tmp; G4bool hasws=false; diff --git a/source/global/management/include/G4Version.hh b/source/global/management/include/G4Version.hh index 982a336373..aa69afc406 100644 --- a/source/global/management/include/G4Version.hh +++ b/source/global/management/include/G4Version.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4Version.hh 101827 2016-12-01 10:16:01Z gcosmo $ +// $Id: G4Version.hh 102536 2017-02-08 13:53:34Z gcosmo $ // GEANT4 tag $Name:$ // // Version information @@ -46,11 +46,11 @@ // |--> patch number #ifndef G4VERSION_NUMBER -#define G4VERSION_NUMBER 1030 +#define G4VERSION_NUMBER 1031 #endif #ifndef G4VERSION_TAG -#define G4VERSION_TAG "$Name: geant4-10-03 $" +#define G4VERSION_TAG "$Name: geant4-10-03-patch-01 $" #endif // as variables @@ -58,10 +58,10 @@ #include "G4String.hh" #ifdef G4MULTITHREADED -static const G4String G4Version = "$Name: geant4-10-03 [MT]$"; +static const G4String G4Version = "$Name: geant4-10-03-patch-01 [MT]$"; #else -static const G4String G4Version = "$Name: geant4-10-03 $"; +static const G4String G4Version = "$Name: geant4-10-03-patch-01 $"; #endif -static const G4String G4Date = "(9-December-2016)"; +static const G4String G4Date = "(24-February-2017)"; #endif diff --git a/source/intercoms/History b/source/intercoms/History index a56b22289f..e83569a0f4 100644 --- a/source/intercoms/History +++ b/source/intercoms/History @@ -1,4 +1,4 @@ -$Id: History 99838 2016-10-07 10:06:37Z gcosmo $ +$Id: History 102562 2017-02-09 08:27:31Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,7 +17,12 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- -7 Oct, 2016 Laurent Garnier (intercoms-V10-02-05) +8 February, 2017 Makoto Asai (intercoms-V10-02-06) +- Introducing /control/useDoublePrecision command to use 17 digits + print out for the current parameter values. Addressing to bug + report #1921. + +7 October, 2016 Laurent Garnier (intercoms-V10-02-05) - G4UIcommandTree : Set GetFirstMatchedString() public method 8 August, 2016 Makoto Asai (intercoms-V10-02-04) diff --git a/source/intercoms/include/G4UIcontrolMessenger.hh b/source/intercoms/include/G4UIcontrolMessenger.hh index 116da4f915..bf57c4a130 100644 --- a/source/intercoms/include/G4UIcontrolMessenger.hh +++ b/source/intercoms/include/G4UIcontrolMessenger.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UIcontrolMessenger.hh 98731 2016-08-09 10:49:49Z gcosmo $ +// $Id: G4UIcontrolMessenger.hh 102562 2017-02-09 08:27:31Z gcosmo $ // #ifndef G4UIcontrolMessenger_h @@ -34,6 +34,7 @@ class G4UIdirectory; class G4UIcmdWithAString; +class G4UIcmdWithABool; class G4UIcmdWithAnInteger; class G4UIcmdWithoutParameter; class G4UIcommand; @@ -49,6 +50,7 @@ class G4UIcommand; // /control/foreach // /control/suppressAbortion // /control/verbose +// /control/useDoublePrecision // /control/saveHistory // /control/stopSavingHistory // /control/alias @@ -88,6 +90,7 @@ class G4UIcontrolMessenger : public G4UImessenger G4UIcmdWithAString * ExecuteCommand; G4UIcmdWithAnInteger * suppressAbortionCommand; G4UIcmdWithAnInteger * verboseCommand; + G4UIcmdWithABool * doublePrecCommand; G4UIcmdWithAString * historyCommand; G4UIcmdWithoutParameter * stopStoreHistoryCommand; G4UIcommand * aliasCommand; diff --git a/source/intercoms/include/G4UImanager.hh b/source/intercoms/include/G4UImanager.hh index aa9cde0454..8fa184258b 100644 --- a/source/intercoms/include/G4UImanager.hh +++ b/source/intercoms/include/G4UImanager.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UImanager.hh 85249 2014-10-27 08:28:57Z gcosmo $ +// $Id: G4UImanager.hh 102562 2017-02-09 08:27:31Z gcosmo $ // #ifndef G4UImanager_h @@ -293,6 +293,13 @@ class G4UImanager : public G4VStateDependent void SetThreadIgnoreInit(G4bool flg = true); inline G4MTcoutDestination* GetThreadCout() {return threadCout;}; + private: + static G4bool doublePrecisionStr; + + public: + inline static void UseDoublePrecisionStr(G4bool val) { doublePrecisionStr = val; } + inline static G4bool DoublePrecisionStr() { return doublePrecisionStr; } + }; #endif diff --git a/source/intercoms/src/G4UIcommand.cc b/source/intercoms/src/G4UIcommand.cc index b0154c2650..95c8afc6e1 100644 --- a/source/intercoms/src/G4UIcommand.cc +++ b/source/intercoms/src/G4UIcommand.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UIcommand.cc 89953 2015-05-06 08:09:12Z gcosmo $ +// $Id: G4UIcommand.cc 102562 2017-02-09 08:27:31Z gcosmo $ // // @@ -37,6 +37,7 @@ #include "G4Tokenizer.hh" #include "G4ios.hh" #include +#include G4UIcommand::G4UIcommand() : messenger(0), toBeBroadcasted(false), toBeFlushed(false), workerThreadOnly(false), @@ -386,7 +387,10 @@ G4String G4UIcommand::ConvertToString(G4int intValue) G4String G4UIcommand::ConvertToString(G4double doubleValue) { std::ostringstream os; - os << doubleValue; + if(G4UImanager::DoublePrecisionStr()) + { os << std::setprecision(17) << doubleValue; } + else + { os << doubleValue; } G4String vl = os.str(); return vl; } @@ -397,7 +401,10 @@ G4String G4UIcommand::ConvertToString(G4double doubleValue,const char* unitName) G4double uv = ValueOf(unitName); std::ostringstream os; - os << doubleValue/uv << " " << unitName; + if(G4UImanager::DoublePrecisionStr()) + { os << std::setprecision(17) << doubleValue/uv << " " << unitName; } + else + { os << doubleValue/uv << " " << unitName; } G4String vl = os.str(); return vl; } @@ -405,7 +412,10 @@ G4String G4UIcommand::ConvertToString(G4double doubleValue,const char* unitName) G4String G4UIcommand::ConvertToString(G4ThreeVector vec) { std::ostringstream os; - os << vec.x() << " " << vec.y() << " " << vec.z(); + if(G4UImanager::DoublePrecisionStr()) + { os << std::setprecision(17) << vec.x() << " " << vec.y() << " " << vec.z(); } + else + { os << vec.x() << " " << vec.y() << " " << vec.z(); } G4String vl = os.str(); return vl; } @@ -416,8 +426,10 @@ G4String G4UIcommand::ConvertToString(G4ThreeVector vec,const char* unitName) G4double uv = ValueOf(unitName); std::ostringstream os; - os << vec.x()/uv << " " << vec.y()/uv << " " << vec.z()/uv - << " " << unitName; + if(G4UImanager::DoublePrecisionStr()) + { os << std::setprecision(17) << vec.x()/uv << " " << vec.y()/uv << " " << vec.z()/uv << " " << unitName; } + else + { os << vec.x()/uv << " " << vec.y()/uv << " " << vec.z()/uv << " " << unitName; } G4String vl = os.str(); return vl; } diff --git a/source/intercoms/src/G4UIcontrolMessenger.cc b/source/intercoms/src/G4UIcontrolMessenger.cc index f695b0cfed..be86d47ef5 100644 --- a/source/intercoms/src/G4UIcontrolMessenger.cc +++ b/source/intercoms/src/G4UIcontrolMessenger.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UIcontrolMessenger.cc 98731 2016-08-09 10:49:49Z gcosmo $ +// $Id: G4UIcontrolMessenger.cc 102562 2017-02-09 08:27:31Z gcosmo $ // #include @@ -34,6 +34,7 @@ #include "G4UIcommand.hh" #include "G4UIparameter.hh" #include "G4UIcmdWithAString.hh" +#include "G4UIcmdWithABool.hh" #include "G4UIcmdWithAnInteger.hh" #include "G4UIcmdWithoutParameter.hh" #include "G4UIaliasList.hh" @@ -107,6 +108,11 @@ G4UIcontrolMessenger::G4UIcontrolMessenger() verboseCommand->SetRange("switch >= 0 && switch <=2"); verboseCommand->SetDefaultValue(2); + doublePrecCommand = new G4UIcmdWithABool("/control/useDoublePrecision",this); + doublePrecCommand->SetGuidance("Use double precision for printing out the current parameter value(s)."); + doublePrecCommand->SetParameterName("useDoublePrecision",true); + doublePrecCommand->SetDefaultValue(true); + historyCommand = new G4UIcmdWithAString("/control/saveHistory",this); historyCommand->SetGuidance("Store command history to a file."); historyCommand->SetGuidance("Defaul file name is G4history.macro."); @@ -327,6 +333,7 @@ G4UIcontrolMessenger::~G4UIcontrolMessenger() delete ExecuteCommand; delete suppressAbortionCommand; delete verboseCommand; + delete doublePrecCommand; delete historyCommand; delete stopStoreHistoryCommand; delete ManualCommand; @@ -378,6 +385,10 @@ void G4UIcontrolMessenger::SetNewValue(G4UIcommand * command,G4String newValue) { UI->SetVerboseLevel(verboseCommand->GetNewIntValue(newValue)); } + if(command==doublePrecCommand) + { + G4UImanager::UseDoublePrecisionStr(doublePrecCommand->GetNewBoolValue(newValue)); + } if(command==historyCommand) { UI->StoreHistory(newValue); @@ -639,6 +650,10 @@ G4String G4UIcontrolMessenger::GetCurrentValue(G4UIcommand * command) { currentValue = verboseCommand->ConvertToString(UI->GetVerboseLevel()); } + if(command==doublePrecCommand) + { + currentValue = doublePrecCommand->ConvertToString(G4UImanager::DoublePrecisionStr()); + } if(command==suppressAbortionCommand) { currentValue = suppressAbortionCommand->ConvertToString(G4StateManager::GetStateManager()->GetSuppressAbortion()); diff --git a/source/intercoms/src/G4UImanager.cc b/source/intercoms/src/G4UImanager.cc index 1ff374709b..d4c8e91a64 100644 --- a/source/intercoms/src/G4UImanager.cc +++ b/source/intercoms/src/G4UImanager.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UImanager.cc 94366 2015-11-13 08:15:49Z gcosmo $ +// $Id: G4UImanager.cc 102562 2017-02-09 08:27:31Z gcosmo $ // // // --------------------------------------------------------------------- @@ -52,6 +52,7 @@ G4ThreadLocal G4UImanager * G4UImanager::fUImanager = 0; G4ThreadLocal G4bool G4UImanager::fUImanagerHasBeenKilled = false; G4UImanager * G4UImanager::fMasterUImanager = 0; +G4bool G4UImanager::doublePrecisionStr = false; G4int G4UImanager::igThreadID = -1; diff --git a/source/interfaces/History b/source/interfaces/History index 2a6a35356f..d501bb45be 100644 --- a/source/interfaces/History +++ b/source/interfaces/History @@ -1,4 +1,4 @@ -$Id: History 101789 2016-11-28 15:31:24Z gcosmo $ +$Id: History 102539 2017-02-08 14:06:50Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,11 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +13th January Laurent Garnier (interfaces-V10-02-15) +- G4UIQt: + o Fix bugzilla 1933. I check was missing to avoid a NULL pointer + o Avoid problem on close when deleting objects + 25th November 2016 Laurent Garnier (interfaces-V10-02-13-interfaces-V10-02-14) - G4UIQt: o Fix a bug on Qt5.7 with an extra whitespace diff --git a/source/interfaces/basic/src/G4UIQt.cc b/source/interfaces/basic/src/G4UIQt.cc index ef5c122d1e..37de0ea4d7 100644 --- a/source/interfaces/basic/src/G4UIQt.cc +++ b/source/interfaces/basic/src/G4UIQt.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4UIQt.cc 101789 2016-11-28 15:31:24Z gcosmo $ +// $Id: G4UIQt.cc 102539 2017-02-08 14:06:50Z gcosmo $ // // L. Garnier @@ -208,6 +208,7 @@ G4UIQt::G4UIQt ( CreateIcons(); fMainWindow = new QMainWindow(); + fMainWindow->setAttribute(Qt::WA_DeleteOnClose); fMainWindow->setCorner( Qt::TopLeftCorner, Qt::LeftDockWidgetArea ); fMainWindow->setCorner( Qt::TopRightCorner, Qt::RightDockWidgetArea ); @@ -270,10 +271,6 @@ G4UIQt::~G4UIQt( masterG4coutDestination = 0; // set to cout when UI is deleted #endif } - - if (fMainWindow!=NULL) { - delete fMainWindow; - } } @@ -4241,7 +4238,9 @@ void G4UIQt::ChangeCursorAction(const QString& action) { fPickSelected = false; list.at(i)->setChecked(FALSE); G4UImanager::GetUIpointer()->ApplyCommand("/vis/viewer/set/picking false"); - fPickInfosDialog->hide(); + if (fPickInfosDialog) { + fPickInfosDialog->hide(); + } } else if (list.at(i)->data().toString () == "rotate") { fRotateSelected = false; list.at(i)->setChecked(FALSE); diff --git a/source/materials/History b/source/materials/History index aaa3133ab1..70a45df7a8 100644 --- a/source/materials/History +++ b/source/materials/History @@ -1,4 +1,4 @@ -$Id: History 101178 2016-11-08 12:50:41Z gcosmo $ +$Id: History 102806 2017-02-22 16:36:36Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,10 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +22-02-17 G.Cosmo (materials-V10-02-21) +- Removed debug printout from G4MaterialPropertiesTable destructor. + Addressing problem report #1944. + 08-11-16 E.Bagli (materials-V10-02-20) - Fixed Coverity warnings diff --git a/source/materials/src/G4MaterialPropertiesTable.cc b/source/materials/src/G4MaterialPropertiesTable.cc index 6139509674..63471338ec 100644 --- a/source/materials/src/G4MaterialPropertiesTable.cc +++ b/source/materials/src/G4MaterialPropertiesTable.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4MaterialPropertiesTable.cc 99765 2016-10-05 08:49:47Z gcosmo $ +// $Id: G4MaterialPropertiesTable.cc 102806 2017-02-22 16:36:36Z gcosmo $ // // //////////////////////////////////////////////////////////////////////// @@ -68,7 +68,6 @@ G4MaterialPropertiesTable::~G4MaterialPropertiesTable() MPTiterator i; for (i = MPT.begin(); i != MPT.end(); ++i) { - G4cout << (*i).second << G4endl; delete (*i).second; } MPT.clear(); diff --git a/source/particles/History b/source/particles/History index 449e982113..0532e277c7 100644 --- a/source/particles/History +++ b/source/particles/History @@ -1,4 +1,4 @@ -$Id: History 101112 2016-11-07 08:19:33Z gcosmo $ +$Id: History 102541 2017-02-08 14:11:03Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,11 +17,15 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- -- 4 November 2016 Gunter Folger ( particles-V10-02-34) +- 9 January 2017 Hisaya Kurashige (particles-V10-02-35) +- Fix a bug in G4MuonRadiativeDecayWithSpin (#1928) +- Add G4AdjointElectronFI + +- 4 November 2016 Gunter Folger (particles-V10-02-34) - remove G4PDefSplitter. - reformat G4PDefManager.cc, and move G4PDefData::initialize() to .cc -- 3 November 2016 Gunter Folger ( particles-V10-02-33) +- 3 November 2016 Gunter Folger (particles-V10-02-33) - Obsolete G4PDefSplitter, and replace "typedef G4PDefManager G4PDefSplitter" by concrete class, with implementation. This addresses initialistaion problems of diff --git a/source/particles/adjoint/History b/source/particles/adjoint/History index 5d194f5f43..9e8ad2b198 100644 --- a/source/particles/adjoint/History +++ b/source/particles/adjoint/History @@ -1,4 +1,4 @@ -$Id: History 66892 2013-01-17 10:57:59Z gunter $ +$Id: History 102541 2017-02-08 14:11:03Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -16,6 +16,8 @@ committal in the CVS repository ! ---------------------------------------------------------- * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +-Dec 23 2016 Laurent Desorgher (partadjoint-V10-03-00) + -Add particle G4AdjointElectronFI, needed for reverse electron forced interaction. - Nov 20 2009 Laurent Desorgher (partadjoint-V09-02-00) - Add Geant4 disclaimer to G4AdjointProton and Adjoint-light ions diff --git a/source/particles/adjoint/include/G4AdjointElectronFI.hh b/source/particles/adjoint/include/G4AdjointElectronFI.hh new file mode 100644 index 0000000000..bab84bedd7 --- /dev/null +++ b/source/particles/adjoint/include/G4AdjointElectronFI.hh @@ -0,0 +1,78 @@ +// +// ******************************************************************** +// * 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. * +// ******************************************************************** +// +// +// $Id: G4AdjointElectronFI.hh 67971 2013-03-13 10:13:24Z gcosmo $ +// +// ------------------------------------------------------------ +// GEANT 4 class header file +// +// History: +// 1st March 2007 creation by L. Desorgher based on a modification of G4Electron +// 06 Nov. 2008 modified for Geant4-09-02 by Hisaya Kurashige +// +//------------------------------------------------------------- +// Documentation: +// Adjoint particles are used in Reverse/Adjoint Monte Carlo simulations. New adjoint +// processes act on adjoint particles when they are tracked backward in the geometry. +// The use of adjoint particles instead of "normal" particles +// during a reverse simulation is based on an idea of M. Asai +// +#ifndef G4AdjointElectronFI_h +#define G4AdjointElectronFI_h 1 + +#include "globals.hh" +#include "G4ios.hh" +#include "G4ParticleDefinition.hh" + +// ###################################################################### +// ### ADJOINT ELECTRON ### +// ###################################################################### + +class G4AdjointElectronFI : public G4ParticleDefinition +{ + private: + static G4AdjointElectronFI* theInstance; + G4AdjointElectronFI(){} + ~G4AdjointElectronFI(){} + + public: + static G4AdjointElectronFI* Definition(); + static G4AdjointElectronFI* AdjointElectronFIDefinition(); + static G4AdjointElectronFI* AdjointElectronFI(); +}; + +#endif + + + + + + + + + + + diff --git a/source/particles/adjoint/sources.cmake b/source/particles/adjoint/sources.cmake index b61c29c3c1..0c9dce972f 100644 --- a/source/particles/adjoint/sources.cmake +++ b/source/particles/adjoint/sources.cmake @@ -11,7 +11,7 @@ # # Generated on : 24/9/2010 # -# $Id: sources.cmake 66892 2013-01-17 10:57:59Z gunter $ +# $Id: sources.cmake 102541 2017-02-08 14:11:03Z gcosmo $ # #------------------------------------------------------------------------------ @@ -34,6 +34,7 @@ GEANT4_DEFINE_MODULE(NAME G4partadj G4AdjointAlpha.hh G4AdjointDeuteron.hh G4AdjointElectron.hh + G4AdjointElectronFI.hh G4AdjointGamma.hh G4AdjointGenericIon.hh G4AdjointHe3.hh @@ -45,6 +46,7 @@ GEANT4_DEFINE_MODULE(NAME G4partadj G4AdjointAlpha.cc G4AdjointDeuteron.cc G4AdjointElectron.cc + G4AdjointElectronFI.cc G4AdjointGamma.cc G4AdjointGenericIon.cc G4AdjointHe3.cc diff --git a/source/particles/adjoint/src/G4AdjointElectronFI.cc b/source/particles/adjoint/src/G4AdjointElectronFI.cc new file mode 100644 index 0000000000..585e85a05f --- /dev/null +++ b/source/particles/adjoint/src/G4AdjointElectronFI.cc @@ -0,0 +1,105 @@ +// +// ******************************************************************** +// * 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. * +// ******************************************************************** +// +// +// $Id: G4AdjointElectronFI.cc 67971 2013-03-13 10:13:24Z gcosmo $ +// +// +// ------------------------------------------------------------ +// GEANT 4 class header file +// +// History: +// 1st March 2007 creation by L. Desorgher based on a modification of G4Electron +// 06 Nov. 2008 modified for Geant4-09-02 by Hisaya Kurashige +// +//------------------------------------------------------------- +// + +#include "G4AdjointElectronFI.hh" +#include "G4PhysicalConstants.hh" +#include "G4SystemOfUnits.hh" +#include "G4ParticleTable.hh" + +// ###################################################################### +// ### ADJOINT ELECTRON FOR FORCED INTERACTION ### +// ###################################################################### +G4AdjointElectronFI* G4AdjointElectronFI::theInstance = 0; + +G4AdjointElectronFI* G4AdjointElectronFI::Definition() +{ + + if (theInstance !=0) return theInstance; + const G4String name = "adj_e-_FI"; + // search in particle table] + G4ParticleTable* pTable = G4ParticleTable::GetParticleTable(); + G4ParticleDefinition* anInstance = pTable->FindParticle(name); + if (anInstance ==0) + { + + // create particle + // + // Arguments for constructor are as follows + // name mass width charge + // 2*spin parity C-conjugation + // 2*Isospin 2*Isospin3 G-parity + // type lepton number baryon number PDG encoding + // stable lifetime decay table + // shortlived subType anti_encoding + + // use constants in CLHEP + // static const double electron_mass_c2 = 0.51099906 * MeV; + + // NOTE : electric charge and magnetic moment is opposite + // compared with real electron, because adjoint particles + // are used to back-trace + + anInstance = new G4ParticleDefinition( + name, electron_mass_c2, 0.0*MeV, 1.*eplus, + 1, 0, 0, + 0, 0, 0, + "adjoint", 1, 0, 90000011, + true, -1.0, NULL, + false, "adj_lepton" + ); + // Bohr Magnetron + G4double muB = 0.5*eplus*hbar_Planck/(electron_mass_c2/c_squared) ; + anInstance->SetPDGMagneticMoment( muB * 2.* 1.0011596521859 ); + + } + theInstance = reinterpret_cast(anInstance); + return theInstance; +} + +G4AdjointElectronFI* G4AdjointElectronFI::AdjointElectronFIDefinition() +{ + return Definition(); +} + +G4AdjointElectronFI* G4AdjointElectronFI::AdjointElectronFI() +{ + return Definition(); +} + + diff --git a/source/particles/management/src/G4MuonRadiativeDecayChannelWithSpin.cc b/source/particles/management/src/G4MuonRadiativeDecayChannelWithSpin.cc index c82f1a48c5..d27420583d 100644 --- a/source/particles/management/src/G4MuonRadiativeDecayChannelWithSpin.cc +++ b/source/particles/management/src/G4MuonRadiativeDecayChannelWithSpin.cc @@ -375,10 +375,11 @@ G4DecayProducts *G4MuonRadiativeDecayChannelWithSpin::DecayIt(G4double) G4double energy2 = parentmass*(1.0 - (x+y)/2.0); - G4double vmass = std::sqrt((energy2- - (daughtermomentum[0]+daughtermomentum[1]))* - (energy2+ - (daughtermomentum[0]+daughtermomentum[1]))); + G4double vmass2 = energy2*energy2 - + (daughtermomentum[0]*direction0+daughtermomentum[1]*direction1)* + (daughtermomentum[0]*direction0+daughtermomentum[1]*direction1); + G4double vmass = std::sqrt(vmass2); + G4double beta = (daughtermomentum[0]+daughtermomentum[1])/energy2; beta = -1.0 * std::min(beta,0.99); diff --git a/source/physics_lists/constructors/decay/History b/source/physics_lists/constructors/decay/History index 4690e07e7e..3a30d21bdc 100644 --- a/source/physics_lists/constructors/decay/History +++ b/source/physics_lists/constructors/decay/History @@ -1,4 +1,4 @@ -$Id: History 101863 2016-12-02 12:48:47Z gcosmo $ +$Id: History 102586 2017-02-09 09:51:41Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -14,6 +14,14 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +23-Dec-2016, Laurent Desorgher (phys-ctor-decay-V10-02-09) +-G4RadioactiveDecayPhysics switch on the storing of all internal conversion data vector + (G4NuclearLevelData::GetInstance()->GetParameters()->SetStoreAllLevels(true)) for + correct gamma deexcitation modeling in radioactive decay. + +16-Dec-2016, Vladimir Ivanchenko (phys-ctor-decay-V10-02-08) +- G4RadioactiveDecayPhysics - simplified list of EM parameters. + 02-Dec-2016, Vladimir Ivanchenko (phys-ctor-decay-V10-02-07) - G4RadioactiveDecayPhysics - fixed initialisation (also for the cases when radioactive decay is registered before EM physics or diff --git a/source/physics_lists/constructors/decay/src/G4RadioactiveDecayPhysics.cc b/source/physics_lists/constructors/decay/src/G4RadioactiveDecayPhysics.cc index 751b9814aa..6ff32ab2f6 100644 --- a/source/physics_lists/constructors/decay/src/G4RadioactiveDecayPhysics.cc +++ b/source/physics_lists/constructors/decay/src/G4RadioactiveDecayPhysics.cc @@ -51,13 +51,11 @@ G4RadioactiveDecayPhysics::G4RadioactiveDecayPhysics(G4int) : G4VPhysicsConstructor("G4RadioactiveDecay")//, theRadioactiveDecay(0) { G4EmParameters* param = G4EmParameters::Instance(); - param->SetFluo(true); - param->SetAuger(true); param->SetAugerCascade(true); - param->SetDeexcitationIgnoreCut(true); param->AddMsc("world","G4RadioactiveDecay"); G4NuclearLevelData::GetInstance()->GetParameters()->SetUseFilesNEW(true); + G4NuclearLevelData::GetInstance()->GetParameters()->SetStoreAllLevels(true); } G4RadioactiveDecayPhysics::G4RadioactiveDecayPhysics(const G4String&) diff --git a/source/physics_lists/constructors/electromagnetic/History b/source/physics_lists/constructors/electromagnetic/History index 5b558bd4aa..5a2a040c4c 100644 --- a/source/physics_lists/constructors/electromagnetic/History +++ b/source/physics_lists/constructors/electromagnetic/History @@ -1,4 +1,4 @@ -$Id: History 101864 2016-12-02 12:50:38Z gcosmo $ +$Id: History 102543 2017-02-08 14:16:52Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -14,6 +14,10 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +19-January-2017 P. Gumplinger (phys-ctor-em-V10-02-39) +- add setCerenkov/ScintillationStackPhotons commands to + G4OpticalPhysicsMessenger and use them in G4OpticalPhysics + 02-December-2016 V.Ivanchenko (phys-ctor-em-V10-02-38) - G4EmModelActivator - added initialisation of atomic deexcitation for radioactive decay (also for the cases when radioactive diff --git a/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysics.hh b/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysics.hh index 25afd9bf6d..eb6f3d3f57 100644 --- a/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysics.hh +++ b/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysics.hh @@ -96,6 +96,9 @@ class G4OpticalPhysics : public G4VPhysicsConstructor void SetTrackSecondariesFirst(G4OpticalProcessIndex, G4bool ); void SetFiniteRiseTime(G4bool ); + void SetCerenkovStackPhotons(G4bool ); + void SetScintillationStackPhotons(G4bool ); + void SetInvokeSD(G4bool ); private: @@ -146,6 +149,11 @@ class G4OpticalPhysics : public G4VPhysicsConstructor /// to call/not call InvokeSD method G4bool fInvokeSD; + /// option to allow stacking of secondary Cerenkov photons + G4bool fCerenkovStackPhotons; + /// option to allow stacking of secondary Scintillation photons + G4bool fScintillationStackPhotons; + }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysicsMessenger.hh b/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysicsMessenger.hh index 3cc8c22878..467d487876 100644 --- a/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysicsMessenger.hh +++ b/source/physics_lists/constructors/electromagnetic/include/G4OpticalPhysicsMessenger.hh @@ -65,9 +65,11 @@ class G4UIcommand; // - /process/optical/setTrackSecondariesFirst proc_name flag // - /process/optical/defaults/cerenkov/setMaxPhotons val // - /process/optical/defaults/cerenkov/setMaxBetaChange val +// - /process/optical/defaults/cerenkov/setStackPhotons flag // - /process/optical/defaults/scintillation/setYieldFactor val // - /process/optical/defaults/scintillation/setByParticleType val // - /process/optical/defaults/scintillation/setFiniteRiseTime val +// - /process/optical/defaults/scintillation/setStackPhotons flag // - /process/optical/defaults/wls/setTimeProfile val // - /process/optical/defaults/boundary/setInvokeSD flag @@ -115,6 +117,9 @@ private: /// setCerenkovMaxBetaChange command G4UIcmdWithADouble* fSetCerenkovMaxBetaChangeCmd; + /// setStackPhotons command + G4UIcmdWithABool* fSetCerenkovStackPhotonsCmd; + /// setScintillationYieldFactor command G4UIcmdWithADouble* fSetScintillationYieldFactorCmd; @@ -124,6 +129,9 @@ private: /// setScintillationTrackInfo command G4UIcmdWithABool* fSetScintillationTrackInfoCmd; + /// setStackPhotons command + G4UIcmdWithABool* fSetScintillationStackPhotonsCmd; + // /// setOpticalSurfaceModel command // G4UIcmdWithAString* fSetOpticalSurfaceModelCmd; diff --git a/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysics.cc b/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysics.cc index 14f288e1fd..39b7b2e09f 100644 --- a/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysics.cc +++ b/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysics.cc @@ -72,7 +72,9 @@ G4OpticalPhysics::G4OpticalPhysics(G4int verbose, const G4String& name) fFiniteRiseTime(false), fScintillationByParticleType(false), fScintillationTrackInfo(false), - fInvokeSD(true) + fInvokeSD(true), + fCerenkovStackPhotons(true), + fScintillationStackPhotons(true) { verboseLevel = verbose; fMessenger = new G4OpticalPhysicsMessenger(this); @@ -323,6 +325,7 @@ void G4OpticalPhysics::ConstructProcess() ScintillationProcess->SetScintillationByParticleType(fScintillationByParticleType); ScintillationProcess->SetScintillationTrackInfo(fScintillationTrackInfo); ScintillationProcess->SetTrackSecondariesFirst(fProcessTrackSecondariesFirst[kScintillation]); + ScintillationProcess->SetStackPhotons(fScintillationStackPhotons); G4EmSaturation* emSaturation = G4LossTableManager::Instance()->EmSaturation(); ScintillationProcess->AddSaturation(emSaturation); UIhelpers::buildCommands(ScintillationProcess); @@ -332,6 +335,7 @@ void G4OpticalPhysics::ConstructProcess() CerenkovProcess->SetMaxNumPhotonsPerStep(fMaxNumPhotons); CerenkovProcess->SetMaxBetaChangePerStep(fMaxBetaChange); CerenkovProcess->SetTrackSecondariesFirst(fProcessTrackSecondariesFirst[kCerenkov]); + CerenkovProcess->SetStackPhotons(fCerenkovStackPhotons); UIhelpers::buildCommands(CerenkovProcess); OpProcesses[kCerenkov] = CerenkovProcess; @@ -458,6 +462,16 @@ void G4OpticalPhysics::SetInvokeSD(G4bool invokeSD) fInvokeSD = invokeSD; } +void G4OpticalPhysics::SetCerenkovStackPhotons(G4bool stackingFlag) +{ + fCerenkovStackPhotons = stackingFlag; +} + +void G4OpticalPhysics::SetScintillationStackPhotons(G4bool stackingFlag) +{ + fScintillationStackPhotons = stackingFlag; +} + void G4OpticalPhysics::Configure(G4OpticalProcessIndex index, G4bool isUse) { // Configure the physics constructor to use/not use a selected process. diff --git a/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysicsMessenger.cc b/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysicsMessenger.cc index 341c6c8332..aac945b44b 100644 --- a/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysicsMessenger.cc +++ b/source/physics_lists/constructors/electromagnetic/src/G4OpticalPhysicsMessenger.cc @@ -66,9 +66,11 @@ G4OpticalPhysicsMessenger::G4OpticalPhysicsMessenger( fSetOpProcessVerboseCmd(0), fSetCerenkovMaxPhotonsCmd(0), fSetCerenkovMaxBetaChangeCmd(0), + fSetCerenkovStackPhotonsCmd(0), fSetScintillationYieldFactorCmd(0), fSetScintillationByParticleTypeCmd(0), fSetScintillationTrackInfoCmd(0), + fSetScintillationStackPhotonsCmd(0), fSetWLSTimeProfileCmd(0), fSetTrackSecondariesFirstCmd(0), fSetFiniteRiseTimeCmd(0), @@ -134,6 +136,13 @@ G4OpticalPhysicsMessenger::G4OpticalPhysicsMessenger( fSetCerenkovMaxBetaChangeCmd->SetRange("CerenkovMaxBetaChange>=0"); fSetCerenkovMaxBetaChangeCmd->AvailableForStates(G4State_PreInit); + fSetCerenkovStackPhotonsCmd = new G4UIcmdWithABool("/process/optical/defaults/cerenkov/setStackPhotons", this); + fSetCerenkovStackPhotonsCmd->SetGuidance("Set default whether or not to stack secondary Cerenkov photons"); + fSetCerenkovStackPhotonsCmd->SetGuidance("Note this command is used to set the default value,"); + fSetCerenkovStackPhotonsCmd->SetGuidance("if process is not active command will not have effect."); + fSetCerenkovStackPhotonsCmd->SetParameterName("CerenkovStackPhotons", true); + fSetCerenkovStackPhotonsCmd->AvailableForStates(G4State_PreInit); + fSetScintillationYieldFactorCmd = new G4UIcmdWithADouble("/process/optical/defaults/scintillation/setYieldFactor", this); fSetScintillationYieldFactorCmd->SetGuidance("Set scintillation yield factor"); fSetScintillationYieldFactorCmd->SetGuidance("Note this command is used to set the default value,"); @@ -162,6 +171,13 @@ G4OpticalPhysicsMessenger::G4OpticalPhysicsMessenger( fSetFiniteRiseTimeCmd->SetParameterName("FiniteRiseTime", false); fSetFiniteRiseTimeCmd->AvailableForStates(G4State_PreInit); + fSetScintillationStackPhotonsCmd = new G4UIcmdWithABool("/process/optical/defaults/scintillation/setStackPhotons", this); + fSetScintillationStackPhotonsCmd->SetGuidance("Set default whether or not to stack secondary Scintillation photons"); + fSetScintillationStackPhotonsCmd->SetGuidance("Note this command is used to set the default value,"); + fSetScintillationStackPhotonsCmd->SetGuidance("if process is not active command will not have effect."); + fSetScintillationStackPhotonsCmd->SetParameterName("ScintillationStackPhotons", true); + fSetScintillationStackPhotonsCmd->AvailableForStates(G4State_PreInit); + fSetWLSTimeProfileCmd = new G4UIcmdWithAString("/process/optical/defaults/wls/setTimeProfile", this); fSetWLSTimeProfileCmd->SetGuidance("Set the WLS time profile (delta or exponential)"); fSetWLSTimeProfileCmd->SetParameterName("WLSTimeProfile", false); @@ -184,9 +200,11 @@ G4OpticalPhysicsMessenger::~G4OpticalPhysicsMessenger() delete fSetOpProcessVerboseCmd; delete fSetCerenkovMaxPhotonsCmd; delete fSetCerenkovMaxBetaChangeCmd; + delete fSetCerenkovStackPhotonsCmd; delete fSetScintillationYieldFactorCmd; delete fSetScintillationByParticleTypeCmd; delete fSetScintillationTrackInfoCmd; + delete fSetScintillationStackPhotonsCmd; delete fSetWLSTimeProfileCmd; delete fSetTrackSecondariesFirstCmd; delete fSetFiniteRiseTimeCmd; @@ -266,6 +284,11 @@ void G4OpticalPhysicsMessenger::SetNewValue(G4UIcommand* command, ->SetMaxBetaChangePerStep( fSetCerenkovMaxBetaChangeCmd->GetNewDoubleValue(newValue)); } + else if (command == fSetCerenkovStackPhotonsCmd) { + fOpticalPhysics + ->SetCerenkovStackPhotons( + fSetCerenkovStackPhotonsCmd->GetNewBoolValue(newValue)); + } else if (command == fSetScintillationYieldFactorCmd) { fOpticalPhysics ->SetScintillationYieldFactor( @@ -286,6 +309,11 @@ void G4OpticalPhysicsMessenger::SetNewValue(G4UIcommand* command, ->SetFiniteRiseTime( fSetFiniteRiseTimeCmd->GetNewBoolValue(newValue)); } + else if (command == fSetScintillationStackPhotonsCmd) { + fOpticalPhysics + ->SetScintillationStackPhotons( + fSetScintillationStackPhotonsCmd->GetNewBoolValue(newValue)); + } else if (command == fSetWLSTimeProfileCmd) { fOpticalPhysics->SetWLSTimeProfile(newValue); } diff --git a/source/physics_lists/constructors/hadron_inelastic/History b/source/physics_lists/constructors/hadron_inelastic/History index 00155017a9..cc61a71d0e 100644 --- a/source/physics_lists/constructors/hadron_inelastic/History +++ b/source/physics_lists/constructors/hadron_inelastic/History @@ -1,4 +1,4 @@ -$Id: History 101901 2016-12-07 08:38:58Z gcosmo $ +$Id: History 102624 2017-02-10 08:22:14Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -14,6 +14,11 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +09-Feb-2017, Makoto Asai (phys-ctor-hinelastic-V10-02-11) +- Print-out of the transition energy region between FTFP and BERT + in the physics lists FTFP_BERT_HP and G4HadronPhysicsFTFP_BERT_HP + is made only for the master thread. + 07-Dec-2016, Alberto Ribon (phys-ctor-hinelastic-V10-02-10) - G4HadronPhysicsFTFP_BERT_HP : changed the transition energy region between FTFP and BERT in the physics list FTFP_BERT_HP to [3, 12] GeV, diff --git a/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT.cc b/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT.cc index d1c430ef57..fd28d9588c 100644 --- a/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT.cc +++ b/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4HadronPhysicsFTFP_BERT.cc 101872 2016-12-02 14:02:40Z gcosmo $ +// $Id: G4HadronPhysicsFTFP_BERT.cc 102624 2017-02-10 08:22:14Z gcosmo $ // //--------------------------------------------------------------------------- // @@ -60,6 +60,7 @@ #include "G4CrossSectionDataSetRegistry.hh" #include "G4PhysListUtil.hh" +#include "G4Threading.hh" // factory #include "G4PhysicsConstructorFactory.hh" @@ -124,14 +125,16 @@ void G4HadronPhysicsFTFP_BERT::CreateModels() G4double maxBERT_proton = 12.0 * GeV; G4double minFTFP_neutron = 3.0 * GeV; G4double maxBERT_neutron = 12.0 * GeV; - - G4cout << G4endl + + if(G4Threading::IsMasterThread()) { + G4cout << G4endl << " FTFP_BERT : new threshold between BERT and FTFP is over the interval " << G4endl << " for pions : " << minFTFP_pion/GeV << " to " << maxBERT_pion/GeV << " GeV" << G4endl << " for kaons : " << minFTFP_kaon/GeV << " to " << maxBERT_kaon/GeV << " GeV" << G4endl << " for proton : " << minFTFP_proton/GeV << " to " << maxBERT_proton/GeV << " GeV" << G4endl << " for neutron : " << minFTFP_neutron/GeV << " to " << maxBERT_neutron/GeV << " GeV" << G4endl << G4endl; + } tpdata->theNeutrons=new G4NeutronBuilder; tpdata->theFTFPNeutron=new G4FTFPNeutronBuilder(QuasiElastic); diff --git a/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT_HP.cc b/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT_HP.cc index b6dee54a6b..1355c12237 100644 --- a/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT_HP.cc +++ b/source/physics_lists/constructors/hadron_inelastic/src/G4HadronPhysicsFTFP_BERT_HP.cc @@ -53,6 +53,7 @@ #include "G4CrossSectionDataSetRegistry.hh" #include "G4PhysListUtil.hh" +#include "G4Threading.hh" // factory #include "G4PhysicsConstructorFactory.hh" @@ -120,13 +121,15 @@ void G4HadronPhysicsFTFP_BERT_HP::CreateModels() G4double minFTFP_neutron = 3.0 * GeV; G4double maxBERT_neutron = 12.0 * GeV; - G4cout << G4endl + if(G4Threading::IsMasterThread()) { + G4cout << G4endl << " FTFP_BERT_HP : new threshold between BERT and FTFP is over the interval " << G4endl << " for pions : " << minFTFP_pion/GeV << " to " << maxBERT_pion/GeV << " GeV" << G4endl << " for kaons : " << minFTFP_kaon/GeV << " to " << maxBERT_kaon/GeV << " GeV" << G4endl << " for proton : " << minFTFP_proton/GeV << " to " << maxBERT_proton/GeV << " GeV" << G4endl << " for neutron : " << minFTFP_neutron/GeV << " to " << maxBERT_neutron/GeV << " GeV" << G4endl << G4endl; + } tpdata->theNeutrons=new G4NeutronBuilder( true ); // Fission on tpdata->theFTFPNeutron=new G4FTFPNeutronBuilder(QuasiElastic); diff --git a/source/physics_lists/constructors/limiters/History b/source/physics_lists/constructors/limiters/History index 453f39fd84..b750fdc948 100644 --- a/source/physics_lists/constructors/limiters/History +++ b/source/physics_lists/constructors/limiters/History @@ -1,4 +1,4 @@ -$Id: History 101161 2016-11-08 08:31:49Z gcosmo $ +$Id: History 102622 2017-02-10 08:17:47Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -14,6 +14,9 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +09-Feb-2017, M. Asai (phys-ctor-limiters-V10-02-09) +- Print-out of G4NeutronTrackingCut is made only for the master thread. + 07-Nov-2016, M. Verderi (phys-ctor-limiters-V10-02-08) - restore G4FastSimulationPhysics utility. - requires param-V10-02-01 diff --git a/source/physics_lists/constructors/limiters/src/G4NeutronTrackingCut.cc b/source/physics_lists/constructors/limiters/src/G4NeutronTrackingCut.cc index 8021d29b95..dddb2e27b3 100644 --- a/source/physics_lists/constructors/limiters/src/G4NeutronTrackingCut.cc +++ b/source/physics_lists/constructors/limiters/src/G4NeutronTrackingCut.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4NeutronTrackingCut.cc 83417 2014-08-21 15:29:32Z gcosmo $ +// $Id: G4NeutronTrackingCut.cc 102622 2017-02-10 08:17:47Z gcosmo $ // //--------------------------------------------------------------------------- // @@ -45,6 +45,8 @@ #include "G4NeutronKiller.hh" #include "G4HadronicProcessStore.hh" +#include "G4Threading.hh" + // factory #include "G4PhysicsConstructorFactory.hh" // @@ -80,7 +82,7 @@ void G4NeutronTrackingCut::ConstructProcess() G4ParticleDefinition * particle = G4Neutron::Neutron(); G4ProcessManager * pmanager = particle->GetProcessManager(); - if(verbose > 0) { + if(verbose > 0 && G4Threading::IsMasterThread()) { G4String pn = particle->GetParticleName();//Avoid data-race when passing //this string to G4MTcout G4cout << "### Adding tracking cuts for " << pn diff --git a/source/physics_lists/lists/History b/source/physics_lists/lists/History index d8df3e4903..3321d6dc28 100644 --- a/source/physics_lists/lists/History +++ b/source/physics_lists/lists/History @@ -1,4 +1,4 @@ -$Id: History 99975 2016-10-13 07:23:55Z gcosmo $ +$Id: History 102588 2017-02-09 10:00:46Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -14,6 +14,11 @@ introduced in the code and keeptrack of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +07-February-2017 V.Ivanchenko (phys-lists-V10-02-11) +- G4PhysListFactory - add single scattering EM option (required by + several user groups), one need to add "__SS" to the reference + physics list name + 12-October-2016 G.Folger (phys-lists-V10-02-10) - remove direct use of theParticleIterator, get this from G4ParticleTable. fix required by clang39 on Windows and MAC diff --git a/source/physics_lists/lists/src/G4PhysListFactory.cc b/source/physics_lists/lists/src/G4PhysListFactory.cc index b63b536fb1..71082425bc 100644 --- a/source/physics_lists/lists/src/G4PhysListFactory.cc +++ b/source/physics_lists/lists/src/G4PhysListFactory.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4PhysListFactory.cc 96327 2016-04-06 15:50:53Z gcosmo $ +// $Id: G4PhysListFactory.cc 102588 2017-02-09 10:00:46Z gcosmo $ // //--------------------------------------------------------------------------- // @@ -67,6 +67,7 @@ #include "G4EmStandardPhysics_option3.hh" #include "G4EmStandardPhysics_option4.hh" #include "G4EmStandardPhysicsGS.hh" +#include "G4EmStandardPhysicsSS.hh" #include "G4EmLivermorePhysics.hh" #include "G4EmPenelopePhysics.hh" @@ -84,8 +85,8 @@ G4PhysListFactory::G4PhysListFactory() listnames_hadr.push_back(ss[i]); } - nlists_em = 8; - G4String s1[8] = {"","_EMV","_EMX","_EMY","_EMZ","_LIV","_PEN","__GS"}; + nlists_em = 9; + G4String s1[9] = {"","_EMV","_EMX","_EMY","_EMZ","_LIV","_PEN","__GS","__SS"}; for(size_t i=0; isize_t + indentation +- G4KDMap.cc: int->size_t +- G4IT & G4Molecule: template specialization + template<> G4KDNode::~G4KDNode() + +14-01-2017, MK, tag emdna-V10-02-37 +- Prevent a crash when calling G4ITTrackingManager::EndTracking from + the UserTimeStepAction::PostTimeStepAction +- Add missing: G4ITTrackingManager* G4Scheduler::GetTrackingManager() + 27-11-2016, MK, tag emdna-V10-02-36 - G4Electron_aq: correct charge - G4DNADamages -> G4DNADamage diff --git a/source/processes/electromagnetic/dna/management/include/G4IT.hh b/source/processes/electromagnetic/dna/management/include/G4IT.hh index 10756e7b65..7f805de229 100644 --- a/source/processes/electromagnetic/dna/management/include/G4IT.hh +++ b/source/processes/electromagnetic/dna/management/include/G4IT.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4IT.hh 100802 2016-11-02 14:55:27Z gcosmo $ +// $Id: G4IT.hh 102637 2017-02-10 11:08:17Z gcosmo $ // // Author: Mathieu Karamitros @@ -51,6 +51,7 @@ #include "G4ITType.hh" #include "G4ThreeVector.hh" #include "G4VUserTrackInformation.hh" +#include "G4KDNode.hh" /// // To implement your own IT class, you should use @@ -60,6 +61,9 @@ /// class G4IT; +template<> +G4KDNode::~G4KDNode(); + class G4TrackingInformation; //template class G4KDNode; class G4KDNode_Base; diff --git a/source/processes/electromagnetic/dna/management/include/G4ITTrackHolder.hh b/source/processes/electromagnetic/dna/management/include/G4ITTrackHolder.hh index ea7823cbf0..72e39be121 100644 --- a/source/processes/electromagnetic/dna/management/include/G4ITTrackHolder.hh +++ b/source/processes/electromagnetic/dna/management/include/G4ITTrackHolder.hh @@ -163,7 +163,12 @@ public: inline void PushToKill(G4Track* track) { + G4TrackList::Pop(track); fToBeKilledList.push_back(track); + + if(track->GetTrackStatus() != fKillTrackAndSecondaries){ + track->SetTrackStatus(fStopAndKill); + } } bool MergeNextTimeToMainList(double& time); diff --git a/source/processes/electromagnetic/dna/management/include/G4KDMap.hh b/source/processes/electromagnetic/dna/management/include/G4KDMap.hh index 27a64742af..984e369f3c 100644 --- a/source/processes/electromagnetic/dna/management/include/G4KDMap.hh +++ b/source/processes/electromagnetic/dna/management/include/G4KDMap.hh @@ -57,67 +57,67 @@ class G4KDNode_Base; class __1DSortOut { public : - __1DSortOut(size_t dimension); - __1DSortOut(const __1DSortOut& right); - int GetDimension(); - G4KDNode_Base* GetMidle(int& /*G4KDNode_deque*/); + __1DSortOut(size_t dimension); + __1DSortOut(const __1DSortOut& right); + int GetDimension(); + G4KDNode_Base* GetMidle(size_t& /*G4KDNode_deque*/); - std::deque::iterator Insert(G4KDNode_Base*); - G4KDNode_Base* PopOutMiddle(); - void Sort(); - void Erase(std::deque::iterator &); - size_t Size() - { - return fContainer.size(); - } + std::deque::iterator Insert(G4KDNode_Base*); + G4KDNode_Base* PopOutMiddle(); + void Sort(); + void Erase(std::deque::iterator &); + size_t Size() + { + return fContainer.size(); + } protected : - struct sortOutNDim - { - sortOutNDim( size_t dimension) - { - fDimension = dimension; - } - bool operator() (G4KDNode_Base* const& lhs, G4KDNode_Base* const& rhs); - size_t fDimension; - }; + struct sortOutNDim + { + sortOutNDim( size_t dimension) + { + fDimension = dimension; + } + bool operator() (G4KDNode_Base* const& lhs, G4KDNode_Base* const& rhs); + size_t fDimension; + }; - std::deque fContainer; - sortOutNDim fSortOutNDim; + std::deque fContainer; + sortOutNDim fSortOutNDim; }; class G4KDMap { public: - G4KDMap(size_t dimensions) : fSortOut(dimensions, __1DSortOut(dimensions)) - { + G4KDMap(size_t dimensions): fSortOut(dimensions, __1DSortOut(dimensions)) + { fIsSorted = false; // for(size_t i = 0 ; i < dimensions ; i++) // { // fSortOut[i] = new __1DSortOut(i); // } - } + } - void Insert(G4KDNode_Base* pos); - void Sort(); + void Insert(G4KDNode_Base* pos); + void Sort(); - G4KDNode_Base* PopOutMiddle(size_t dimension); - size_t GetDimension() - { - return fSortOut.size(); - } + G4KDNode_Base* PopOutMiddle(size_t dimension); + size_t GetDimension() + { + return fSortOut.size(); + } - size_t GetSize() - { - return fMap.size(); - } + size_t GetSize() + { + return fMap.size(); + } private: - bool fIsSorted; - std::vector<__1DSortOut> fSortOut; - std::map::iterator > > fMap; + bool fIsSorted; + std::vector<__1DSortOut> fSortOut; + std::map::iterator>> fMap; - // A mettre directement dans G4KDNode + // A mettre directement dans G4KDNode }; diff --git a/source/processes/electromagnetic/dna/management/include/G4KDNode.hh b/source/processes/electromagnetic/dna/management/include/G4KDNode.hh index ffeba6042c..94ccd63a35 100644 --- a/source/processes/electromagnetic/dna/management/include/G4KDNode.hh +++ b/source/processes/electromagnetic/dna/management/include/G4KDNode.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4KDNode.hh 100802 2016-11-02 14:55:27Z gcosmo $ +// $Id: G4KDNode.hh 102637 2017-02-10 11:08:17Z gcosmo $ // // Author: Mathieu Karamitros @@ -51,7 +51,9 @@ //#include #include #include -#include +#include + +// geant4 #include #include "globals.hh" @@ -63,7 +65,7 @@ class G4KDMap; class G4KDNode_Base { public: - //________________________ + //---------------------------- // For root node : // parent = 0, axis = 0, side = 0 G4KDNode_Base(G4KDTree*, G4KDNode_Base* /*parent*/); @@ -72,25 +74,25 @@ public: virtual void InactiveNode(); virtual bool IsValid() const{ return true; } - //________________________ + //---------------------------- inline G4KDTree* GetTree() const {return fTree;} inline void SetTree(G4KDTree* tree) {fTree = tree;} - //________________________ + //---------------------------- int GetDim() const; inline int GetAxis() const{return fAxis;} inline G4KDNode_Base* GetParent(){return fParent;} inline G4KDNode_Base* GetLeft(){return fLeft;} inline G4KDNode_Base* GetRight(){return fRight;} - //________________________ + //---------------------------- template G4KDNode_Base* FindParent(const Position& x0); template G4KDNode_Base* Insert(PointT* point); template - G4KDNode_Base* Insert(const PointT& point); + G4KDNode_Base* Insert(const PointT& point); int Insert(G4KDNode_Base* newNode); void PullSubTree(); @@ -98,8 +100,10 @@ public: void Print(std::ostream& out, int level = 0) const; -// std::vector::iterator >* GetIteratorsForSortingAlgo(G4KDMap*); -// std::map::iterator > >* fpIteratorInSortingAlgo; +// std::vector::iterator>* +// GetIteratorsForSortingAlgo(G4KDMap*); +// std::map::iterator>>* +// fpIteratorInSortingAlgo; protected: //°°°°°°°°°°° @@ -132,7 +136,7 @@ template class G4KDNode : public G4KDNode_Base { public: - //________________________ + //---------------------------- // For root node : // parent = 0, axis = 0, side = 0 G4KDNode(G4KDTree*, PointT* /*point*/, G4KDNode_Base* /*parent*/); @@ -165,18 +169,18 @@ template protected: PointT* fPoint; - G4bool fValid; + bool fValid; private: G4KDNode(const G4KDNode& right); G4KDNode& operator=(const G4KDNode& right); - static G4ThreadLocal G4Allocator >* fgAllocator; + static G4ThreadLocal G4Allocator>* fgAllocator; }; template - G4ThreadLocal G4Allocator >* G4KDNode::fgAllocator = - 0; + G4ThreadLocal G4Allocator>* + G4KDNode::fgAllocator = 0; template void* G4KDNode::operator new(size_t) @@ -191,17 +195,16 @@ template fgAllocator->FreeSingle((G4KDNode *) aNode); } - /** * G4KDNode stores one entity in G4KDTree * This class is for internal use only */ template - class G4KDNodeCopy : public G4KDNode_Base + class G4KDNodeCopy: public G4KDNode_Base { public: - //________________________ + //---------------------------- // For root node : // parent = 0, axis = 0, side = 0 G4KDNodeCopy(G4KDTree* tree, @@ -254,9 +257,9 @@ template private: G4KDNodeCopy(const G4KDNodeCopy& right) : G4KDNode_Base(right), fPoint(0) - { - fValid = false; - } + { + fValid = false; + } G4KDNodeCopy& operator=(const G4KDNodeCopy& right) @@ -276,8 +279,8 @@ template }; template - G4ThreadLocal G4Allocator>* G4KDNodeCopy::fgAllocator = - 0; + G4ThreadLocal G4Allocator>* + G4KDNodeCopy::fgAllocator = 0; #include "G4KDNode.icc" diff --git a/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh b/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh index 4672808a90..876b7158e4 100644 --- a/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh +++ b/source/processes/electromagnetic/dna/management/include/G4Scheduler.hh @@ -190,6 +190,11 @@ public: { return fMaxTimeStep; } + + inline G4ITTrackingManager* GetTrackingManager() const + { + return fpTrackingManager; + } protected: diff --git a/source/processes/electromagnetic/dna/management/src/G4IT.cc b/source/processes/electromagnetic/dna/management/src/G4IT.cc index dcd982c482..6c3c7a0093 100644 --- a/source/processes/electromagnetic/dna/management/src/G4IT.cc +++ b/source/processes/electromagnetic/dna/management/src/G4IT.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4IT.cc 94218 2015-11-09 08:24:48Z gcosmo $ +// $Id: G4IT.cc 102637 2017-02-10 11:08:17Z gcosmo $ // // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr) // @@ -56,20 +56,25 @@ G4IT* GetIT(const G4Track& track) return (dynamic_cast(track.GetUserInformation())); } +template<> +G4KDNode::~G4KDNode(){ + fPoint->SetNode(nullptr); +} + //------------------------------------------------------------------------------ // // Constructors / Destructors // G4IT::G4IT() : G4VUserTrackInformation("G4IT"), - fpTrack(0), - fpPreviousIT(0), - fpNextIT(0), + fpTrack(nullptr), + fpPreviousIT(nullptr), + fpNextIT(nullptr), fpTrackingInformation(new G4TrackingInformation()) { - fpITBox = 0; - fpKDNode = 0; - fpTrackNode = 0; + fpITBox = nullptr; + fpKDNode = nullptr; + fpTrackNode = nullptr; fParentID_A = 0; fParentID_B = 0; } @@ -77,14 +82,14 @@ G4IT::G4IT() : // Use only by inheriting classes G4IT::G4IT(const G4IT& /*right*/) : G4VUserTrackInformation("G4IT"), - fpTrack(0), - fpPreviousIT(0), - fpNextIT(0), + fpTrack(nullptr), + fpPreviousIT(nullptr), + fpNextIT(nullptr), fpTrackingInformation(new G4TrackingInformation()) { - fpITBox = 0; - fpKDNode = 0; - fpTrackNode = 0; + fpITBox = nullptr; + fpKDNode = nullptr; + fpTrackNode = nullptr; fParentID_A = 0; fParentID_B = 0; } @@ -104,15 +109,15 @@ G4IT& G4IT::operator=(const G4IT& right) if (this == &right) return *this; - fpTrack = 0; - fpITBox = 0; - fpPreviousIT = 0; - fpNextIT = 0; - fpKDNode = 0; + fpTrack = nullptr; + fpITBox = nullptr; + fpPreviousIT = nullptr; + fpNextIT = nullptr; + fpKDNode = nullptr; fParentID_A = 0; fParentID_B = 0; - fpTrackingInformation = 0; - fpTrackNode = 0; + fpTrackingInformation = nullptr; + fpTrackNode = nullptr; return *this; } @@ -125,8 +130,8 @@ G4IT::G4IT(G4Track * aTrack) : { fpITBox = 0; fpTrack = aTrack; - fpKDNode = 0; - fpTrackNode = 0; + fpKDNode = nullptr; + fpTrackNode = nullptr; fParentID_A = 0; fParentID_B = 0; RecordCurrentPositionNTime(); @@ -137,18 +142,19 @@ void G4IT::TakeOutBox() if(fpITBox) { fpITBox->Extract(this); + fpITBox = nullptr; } if(fpTrackNode) { delete fpTrackNode; - fpTrackNode = 0; + fpTrackNode = nullptr; } if(fpKDNode) { InactiveNode(fpKDNode); - fpKDNode = 0; + fpKDNode = nullptr; } } @@ -159,7 +165,7 @@ G4IT::~G4IT() if(fpTrackingInformation) { delete fpTrackingInformation; - fpTrackingInformation = 0; + fpTrackingInformation = nullptr; } // Note : @@ -199,8 +205,6 @@ G4bool G4IT::operator!=(const G4IT& right) const return !(this->operator==(right)); } - - double G4IT::operator[](int i) const { return fpTrack->GetPosition()[i]; diff --git a/source/processes/electromagnetic/dna/management/src/G4ITTrackingManager.cc b/source/processes/electromagnetic/dna/management/src/G4ITTrackingManager.cc index 77e8433115..b1c2860747 100644 --- a/source/processes/electromagnetic/dna/management/src/G4ITTrackingManager.cc +++ b/source/processes/electromagnetic/dna/management/src/G4ITTrackingManager.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4ITTrackingManager.cc 91584 2015-07-27 13:01:48Z gcosmo $ +// $Id: G4ITTrackingManager.cc 102637 2017-02-10 11:08:17Z gcosmo $ // // Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr) // @@ -96,7 +96,7 @@ void G4ITTrackingManager::EndTracking(G4Track* track) fpTrackingInteractivity->GetSteppingVerbose()->TrackingEnded(track); #endif } - G4TrackList::Pop(track); + G4ITTrackHolder::Instance()->PushToKill(track); } diff --git a/source/processes/electromagnetic/dna/management/src/G4KDMap.cc b/source/processes/electromagnetic/dna/management/src/G4KDMap.cc index 1f13660f7d..b8be4b58c1 100644 --- a/source/processes/electromagnetic/dna/management/src/G4KDMap.cc +++ b/source/processes/electromagnetic/dna/management/src/G4KDMap.cc @@ -53,10 +53,10 @@ int __1DSortOut::GetDimension() return fSortOutNDim.fDimension; } -G4KDNode_Base* __1DSortOut::GetMidle(int& main_middle) +G4KDNode_Base* __1DSortOut::GetMidle(size_t& main_middle) { - int contSize = fContainer.size(); - main_middle = (int) ceil(contSize / 2.); // ceil = round up + size_t contSize = fContainer.size(); + main_middle = (size_t) ceil(contSize / 2.); // ceil = round up return fContainer[main_middle]; } @@ -67,7 +67,7 @@ _deq_iterator __1DSortOut::Insert(G4KDNode_Base* pos) G4KDNode_Base* __1DSortOut::PopOutMiddle() { - int middle; + size_t middle; G4KDNode_Base* pos = GetMidle(middle); _deq_iterator deq_pos = fContainer.begin() + middle; diff --git a/source/processes/electromagnetic/dna/management/src/G4KDNode.cc b/source/processes/electromagnetic/dna/management/src/G4KDNode.cc index fb40d7fe88..28f7483e42 100644 --- a/source/processes/electromagnetic/dna/management/src/G4KDNode.cc +++ b/source/processes/electromagnetic/dna/management/src/G4KDNode.cc @@ -57,15 +57,15 @@ void InactiveNode(G4KDNode_Base* node) { - if(!node) return ; - node->InactiveNode() ; + if(node == nullptr) return; +// if(node->IsValid()) + node->InactiveNode(); } void Free(G4KDNode_Base*& node) { - if(node) - delete node ; - node = 0; + if(node) delete node; + node = nullptr; } //______________________________________________________________________ @@ -74,8 +74,8 @@ G4KDNode_Base::G4KDNode_Base(G4KDTree* tree, fTree(tree), fLeft(0), fRight(0), fParent(parent) { - fSide = 0; - fAxis = fParent == 0? 0 : fParent->fAxis +1 < fTree->fDim? fParent->fAxis+1:0; + fSide = 0; + fAxis = fParent == 0? 0 : fParent->fAxis +1 < fTree->fDim? fParent->fAxis+1:0; } // Copy constructor should not be used @@ -83,8 +83,8 @@ G4KDNode_Base::G4KDNode_Base(const G4KDNode_Base& ): fTree(0), fLeft(0), fRight(0), fParent(0) { - fSide = 0; - fAxis = 0; + fSide = 0; + fAxis = 0; } // Assignement should not be used diff --git a/source/processes/electromagnetic/dna/models/src/G4DNAOneStepThermalizationModel.cc b/source/processes/electromagnetic/dna/models/src/G4DNAOneStepThermalizationModel.cc index 4eb9a70756..90c6e78716 100644 --- a/source/processes/electromagnetic/dna/models/src/G4DNAOneStepThermalizationModel.cc +++ b/source/processes/electromagnetic/dna/models/src/G4DNAOneStepThermalizationModel.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4DNAOneStepThermalizationModel.cc 101807 2016-11-30 13:42:28Z gunter $ +// $Id: G4DNAOneStepThermalizationModel.cc 102637 2017-02-10 11:08:17Z gcosmo $ // // Author: Mathieu Karamitros // @@ -141,7 +141,7 @@ namespace DNA{ namespace Penetration{ size_t lowBin, upBin; if(k_eV >= 1.){ - lowBin=std::floor(k_eV)+1; + lowBin=floor(k_eV)+1; upBin=std::min(lowBin+1, size_t(10)); } else{ @@ -183,7 +183,7 @@ namespace DNA{ namespace Penetration{ static constexpr double factor = 2.20496999539; // 1./(3. - 8./CLHEP::pi); - double sigma1D = std::sqrt(std::pow(sigma3D, 2.)*factor); + double sigma1D = sqrt(pow(sigma3D, 2.)*factor); // G4cout << "sigma1D = " << sigma1D/CLHEP::nanometer << G4endl; diff --git a/source/processes/electromagnetic/dna/molecules/management/include/G4Molecule.hh b/source/processes/electromagnetic/dna/molecules/management/include/G4Molecule.hh index 8c3656fcc3..f45339dcf8 100755 --- a/source/processes/electromagnetic/dna/molecules/management/include/G4Molecule.hh +++ b/source/processes/electromagnetic/dna/molecules/management/include/G4Molecule.hh @@ -75,6 +75,10 @@ #include "G4Allocator.hh" #include "G4MoleculeDefinition.hh" +class G4Molecule; +template<> +G4KDNode::~G4KDNode(); + class G4Molecule; class G4MolecularConfiguration; class G4MoleculeDefinition; diff --git a/source/processes/electromagnetic/dna/molecules/management/src/G4Molecule.cc b/source/processes/electromagnetic/dna/molecules/management/src/G4Molecule.cc index d53053fa61..2c1dfe90b2 100755 --- a/source/processes/electromagnetic/dna/molecules/management/src/G4Molecule.cc +++ b/source/processes/electromagnetic/dna/molecules/management/src/G4Molecule.cc @@ -22,7 +22,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Molecule.cc 100802 2016-11-02 14:55:27Z gcosmo $ +// $Id: G4Molecule.cc 102637 2017-02-10 11:08:17Z gcosmo $ // // --------------------------------------------------------------------- // GEANT 4 class header file @@ -66,6 +66,13 @@ G4ThreadLocal G4Allocator *aMoleculeAllocator = 0; //______________________________________________________________________________ +template<> +G4KDNode::~G4KDNode(){ + fPoint->SetNode(nullptr); +} + +//______________________________________________________________________________ + G4Molecule* GetMolecule(const G4Track& track) { return (G4Molecule*) (GetIT(track)); @@ -152,7 +159,7 @@ G4Molecule::G4Molecule() : G4Molecule::~G4Molecule() { - if (fpTrack != NULL) + if (fpTrack != nullptr) { if (G4VMoleculeCounter::Instance()->InUse()) { @@ -161,9 +168,9 @@ G4Molecule::~G4Molecule() fpTrack->GetGlobalTime(), &(fpTrack->GetPosition())); } - fpTrack = 0; + fpTrack = nullptr; } - fpMolecularConfiguration = 0; + fpMolecularConfiguration = nullptr; } //______________________________________________________________________________ diff --git a/source/processes/electromagnetic/utils/History b/source/processes/electromagnetic/utils/History index c485b80fd8..32d36d02f1 100644 --- a/source/processes/electromagnetic/utils/History +++ b/source/processes/electromagnetic/utils/History @@ -1,4 +1,4 @@ -$Id: History 101681 2016-11-21 09:33:05Z gcosmo $ +$Id: History 102548 2017-02-08 14:33:25Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,9 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +14 December 16: V.Ivant (emutils-V10-02-39) +- G4EmParametersMessenger - fixed typo (#1929) + 19 November 16: V.Ivant (emutils-V10-02-38) - G4EmParametersMessenger - fixed typo diff --git a/source/processes/electromagnetic/utils/src/G4EmParametersMessenger.cc b/source/processes/electromagnetic/utils/src/G4EmParametersMessenger.cc index 1e2d5faf4b..69e231e573 100644 --- a/source/processes/electromagnetic/utils/src/G4EmParametersMessenger.cc +++ b/source/processes/electromagnetic/utils/src/G4EmParametersMessenger.cc @@ -259,7 +259,7 @@ G4EmParametersMessenger::G4EmParametersMessenger(G4EmParameters* ptr) fr1Cmd = new G4UIcmdWithADouble("/process/msc/RangeFactorMuHad",this); fr1Cmd->SetGuidance("Set RangeFactor for msc processes of muons/hadrons"); fr1Cmd->SetParameterName("Fr1",true); - fr1Cmd->SetRange("Fr>0"); + fr1Cmd->SetRange("Fr1>0"); fr1Cmd->SetDefaultValue(0.2); fr1Cmd->AvailableForStates(G4State_PreInit,G4State_Idle); diff --git a/source/processes/hadronic/models/de_excitation/History b/source/processes/hadronic/models/de_excitation/History index 0d933d62ce..4fd48d36c4 100644 --- a/source/processes/hadronic/models/de_excitation/History +++ b/source/processes/hadronic/models/de_excitation/History @@ -14,6 +14,103 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +21 February 2017 Vladimir Ivanchenko (hadr-deex-V10-02-72) +- G4LevelReader - in the case of broken file structure or absence of + a file G4Exception will be issued + +16 February 2017 Vladimir Ivanchenko (hadr-deex-V10-02-71) +- G4GammaTransition - added control on printout for all G4cout; removed + thread unsafe check + +15 February 2017 Vladimir Ivanchenko +- G4GammaTransition - added control on printout +- G4LevelManager - fixed unpacking of spin + +14 February 2017 Vladimir Ivanchenko + Fix no-reproducibility due to precision lost in Lorentz transformations +- G4ExcitationHandler, G4PhotonEvaporation - use floating level number +- G4GammaTransition - use a new method of G4Fragment::SetExcitationEnergy() + which allows to keep excitation energy exact as in the database to + avoid rare non-reproducibility; added SetVerbose method +- G4PolarizationTransition - added SetVerbose method; protect from + extra verbosity + +13 February 2017 Vladimir Ivanchenko + Fixed U235[0.076] problem: +- G4DeexPrecoParameters - min excitation energy is set to 10 eV (was 100 eV) +- G4LevelReader - if value of alpha (relative probability of the internal + conversion) is 10^10, then assume that internal conversion will go via + outer levels and gamma emission has zero probability, internal + conversion is forced intdependently on other flags + +08 February 2017 Vladimir Ivanchenko (hadr-deex-V10-02-70) +- G4GammaTransition::SampleDirection - D.Wright fixed multipolarity + after changing multipolarity Nx by 1 in the new dataset + +27 January 2017 Vladimir Ivanchenko +- G4GammaTransition, G4PhotonEvaporation, G4NuclLevel - minor cleanup +- G4DeexPrecoParameters - by default used uniform angular distribution + in CM sytem of precompound decay + +18 January 2017 Vladimir Ivanchenko +- G4GammaTransition::SampleDirection - return back sampling in the case, when + initial state has angular moment but its polarisation is random +- G4PhotonEvaporation - added internal conversion even if the data are not + stored + +11 January 2017 Dennis Wright +- G4PolarizationTransition::SetGammaTransitionData: replace fTwoJ1 and fTwoJ2 + with their absolute values to avoid crash +- G4GammaTransition::SampleDirection: remove return; from (!np) block, + otherwise only zero polarization is returned. + Also remove line + fPolTrans.UpdatePolarizationToFinalState(fDirection.z(), fDirection.phi(), nuc); + in order to comply with instructions in G4PolarizationTransition.hh (call order) + and to properly initialize the nuclear polarization. + + 9 January 2017 Dennis Wright +- G4NucLevel::TransitionType: use % operator to correctly strip off + leading digit +- G4LevelReader::LevelManager: added comments to describe some variables +- G4PolarizationTransition::UpdatePolarizationToFinalState: add comment + showing where zero-value entries are trimmed off + +19 December 2016 Vladimir Ivanchenko +- G4LevelReader - fixed Ra228 problem - read all levels from + a data file + +16 December 2016 Vladimir Ivanchenko +- G4PolarizationTransition - J.Detwiler has fixed computation + of multipolarity + +16 December 2016 Vladimir Ivanchenko +- G4DeexPrecoParameters - change default time limit from 0.01 s to + 1 microsecond +- G4PhotonEvaporation, G4GammaTransition - improved sampling + and kinematics for internal conversion +- G4PolarizationTransition - J.Detwiler has fixed computation + of polarisation + +14 December 2016 Vladimir Ivanchenko +- G4LevelManager, G4NuclLevel, G4LevelReader - reduce memory for + description of a level: each two integer parameters are packed + into one integer values; use only one set of probabilities of + transition independently on use-case (HEP or radioactive decay); + fill internal conversion coefficients into the data structure only + if a flag SetStoreAllLevels() is set to true. In the last case, + more memory required per isotope (~8 times) +- G4DeexPrecoParameters - extended Dump() printout; make new + data structure default +- G4ExcitationHandler - moved Dump() printout in Initialise() + method, print info if evaporation channels are changed; added + local data member to control verbosity level +- G4VEvaporation - added extra const access method +- G4Evaporation - added data member to control verbosity level +- G4GammaTransition - in the case, when internal conversion data + are not filled but in sampling e- emission is selected, sample e- + with kinetic energy corresponding to transition between nuclear + levels ignoring atomic effects + 01 December 2016 Vladimir Ivanchenko (hadr-deex-V10-02-69) - G4KalbachCrossSection, G4NuclearLevelData, G4GammaTransition Gunter Folger fixed use of std::sqrt diff --git a/source/processes/hadronic/models/de_excitation/evaporation/include/G4Evaporation.hh b/source/processes/hadronic/models/de_excitation/evaporation/include/G4Evaporation.hh index b140162ba1..409930e542 100644 --- a/source/processes/hadronic/models/de_excitation/evaporation/include/G4Evaporation.hh +++ b/source/processes/hadronic/models/de_excitation/evaporation/include/G4Evaporation.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Evaporation.hh 98808 2016-08-11 08:35:24Z gcosmo $ +// $Id: G4Evaporation.hh 102590 2017-02-09 10:13:30Z gcosmo $ // // Hadronic Process: Nuclear De-excitations // by V. Lara @@ -86,6 +86,7 @@ private: G4bool operator==(const G4Evaporation &right) const = delete; G4bool operator!=(const G4Evaporation &right) const = delete; + G4int fVerbose; size_t nChannels; G4double minExcitation; G4NistManager* nist; diff --git a/source/processes/hadronic/models/de_excitation/evaporation/include/G4VEvaporation.hh b/source/processes/hadronic/models/de_excitation/evaporation/include/G4VEvaporation.hh index 47b74f7c23..6afe661ca1 100644 --- a/source/processes/hadronic/models/de_excitation/evaporation/include/G4VEvaporation.hh +++ b/source/processes/hadronic/models/de_excitation/evaporation/include/G4VEvaporation.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4VEvaporation.hh 98739 2016-08-09 12:56:55Z gcosmo $ +// $Id: G4VEvaporation.hh 102590 2017-02-09 10:13:30Z gcosmo $ // // Hadronic Process: Nuclear De-excitations interface // @@ -74,9 +74,11 @@ public: inline G4VEvaporationChannel* GetFissionChannel(); // for inverse cross section choice - inline void SetOPTxs(G4int opt) { OPTxs = opt;} + inline void SetOPTxs(G4int opt); // for superimposed Coulomb Barrier for inverse cross sections - inline void UseSICB(G4bool use) { useSICB = use; } + inline void UseSICB(G4bool use); + + inline size_t GetNumberOfChannels() const; protected: @@ -116,9 +118,22 @@ inline G4VEvaporationChannel* G4VEvaporation::GetPhotonEvaporation() inline G4VEvaporationChannel* G4VEvaporation::GetFissionChannel() { - G4VEvaporationChannel* p = 0; - if(theChannels->size() > 1) { p = (*theChannels)[1]; } - return p; + return (theChannels && theChannels->size() > 1) ? (*theChannels)[1] : nullptr; } +inline void G4VEvaporation::SetOPTxs(G4int opt) +{ + OPTxs = opt; +} + +inline void G4VEvaporation::UseSICB(G4bool use) +{ + useSICB = use; +} + +inline size_t G4VEvaporation::GetNumberOfChannels() const +{ + return theChannels ? theChannels->size() : 0; +} + #endif diff --git a/source/processes/hadronic/models/de_excitation/evaporation/src/G4Evaporation.cc b/source/processes/hadronic/models/de_excitation/evaporation/src/G4Evaporation.cc index 2e34958375..b115acbcd8 100644 --- a/source/processes/hadronic/models/de_excitation/evaporation/src/G4Evaporation.cc +++ b/source/processes/hadronic/models/de_excitation/evaporation/src/G4Evaporation.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4Evaporation.cc 101865 2016-12-02 13:06:50Z gcosmo $ +// $Id: G4Evaporation.cc 102590 2017-02-09 10:13:30Z gcosmo $ // // Hadronic Process: Nuclear De-excitations // by V. Lara (Oct 1998) @@ -64,7 +64,8 @@ #include "Randomize.hh" G4Evaporation::G4Evaporation(G4VEvaporationChannel* photoEvaporation) - : G4VEvaporation(),nChannels(0),minExcitation(0.1*keV),isInitialised(false) + : G4VEvaporation(),fVerbose(0),nChannels(0),minExcitation(0.1*keV), + isInitialised(false) { if(photoEvaporation) { SetPhotonEvaporation(photoEvaporation); } else { SetPhotonEvaporation(new G4PhotonEvaporation()); } @@ -100,11 +101,14 @@ void G4Evaporation::InitialiseChannels() void G4Evaporation::InitialiseChannelFactory() { - //G4cout << "### G4Evaporation::InitialiseChannelFactory " << this << G4endl; theChannels = theChannelFactory->GetChannel(); nChannels = theChannels->size(); probabilities.resize(nChannels, 0.0); + if(fVerbose > 0) { + G4cout << "### G4Evaporation::InitialiseChannelFactory for " + << nChannels << " channels " << this << G4endl; + } for(size_t i=0; iSetOPTxs(OPTxs); (*theChannels)[i]->Initialise(); @@ -168,26 +172,27 @@ void G4Evaporation::BreakFragment(G4FragmentVector* theResult, // check if it is stable, then finish evaporation G4double abun = nist->GetIsotopeAbundance(Z, A); - /* - G4cout << "### G4Evaporation::BreakItUp step " << ia << " Z= " << Z - << " A= " << A << " Eex(MeV)= " - << theResidualNucleus->GetExcitationEnergy() - << " aban= " << abun << G4endl; - */ + if(fVerbose > 0) { + G4cout << "### G4Evaporation::BreakItUp step " << ia << " Z= " << Z + << " A= " << A << " Eex(MeV)= " + << theResidualNucleus->GetExcitationEnergy() + << " aban= " << abun << G4endl; + } // stop deecitation loop in the case of a cold stable fragment if(Eex <= minExcitation && abun > 0.0) { break; } totprob = 0.0; maxchannel = nChannels; - /* - G4cout << "### Evaporation loop #" << ia - << " Fragment: " << theResidualNucleus << G4endl; - */ + if(fVerbose > 1) { + G4cout << "### Evaporation loop #" << ia + << " Fragment: " << theResidualNucleus << G4endl; + } // loop over evaporation channels for(i=0; iGetEmissionProbability(theResidualNucleus); - //G4cout << " Channel# " << i << " prob= " << prob << G4endl; - + if(fVerbose > 0 && prob > 0.0) { + G4cout << " Channel# " << i << " prob= " << prob << G4endl; + } totprob += prob; probabilities[i] = totprob; @@ -204,7 +209,9 @@ void G4Evaporation::BreakFragment(G4FragmentVector* theResult, // photon evaporation in the case of no other channels available // do evaporation chain and reset total probability if(0.0 < totprob && probabilities[0] == totprob) { - //G4cout << "Start chain of gamma evaporation" << G4endl; + if(fVerbose > 1) { + G4cout << "Start chain of gamma evaporation" << G4endl; + } (*theChannels)[0]->BreakUpChain(theResult, theResidualNucleus); totprob = 0.0; } @@ -214,9 +221,9 @@ void G4Evaporation::BreakFragment(G4FragmentVector* theResult, // if fragment is exotic, then force its decay if(0.0 == abun) { - //G4cout << "$$$ Decay exotic fragment" << G4endl; if(!unstableBreakUp->BreakUpChain(theResult, theResidualNucleus)) { break; } + if(fVerbose > 1) { G4cout << "$$$ Decay exotic fragment" << G4endl; } } else { break; } @@ -227,9 +234,9 @@ void G4Evaporation::BreakFragment(G4FragmentVector* theResult, // loop over evaporation channels for(i=0; i= totprob) { break; } } - //G4cout << "Channel # " << i << G4endl; + if(fVerbose > 1) { G4cout << "Channel # " << i << G4endl; } G4Fragment* frag = (*theChannels)[i]->EmittedFragment(theResidualNucleus); - //if(frag) G4cout << " " << *frag << G4endl; + if(fVerbose > 1 && frag) { G4cout << " " << *frag << G4endl; } // normaly a fragment should be created if(frag) { theResult->push_back(frag); } diff --git a/source/processes/hadronic/models/de_excitation/handler/include/G4ExcitationHandler.hh b/source/processes/hadronic/models/de_excitation/handler/include/G4ExcitationHandler.hh index 1c91c246af..5d22397367 100644 --- a/source/processes/hadronic/models/de_excitation/handler/include/G4ExcitationHandler.hh +++ b/source/processes/hadronic/models/de_excitation/handler/include/G4ExcitationHandler.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4ExcitationHandler.hh 98808 2016-08-11 08:35:24Z gcosmo $ +// $Id: G4ExcitationHandler.hh 102590 2017-02-09 10:13:30Z gcosmo $ // // Hadronic Process: Nuclear De-excitations // by V. Lara (May 1998) @@ -127,6 +127,7 @@ private: G4IonTable* theTableOfIons; G4NistManager* nist; + G4int fVerbose; G4bool isInitialised; G4bool isEvapLocal; diff --git a/source/processes/hadronic/models/de_excitation/handler/src/G4ExcitationHandler.cc b/source/processes/hadronic/models/de_excitation/handler/src/G4ExcitationHandler.cc index 5178e6dbdc..4751f5e099 100644 --- a/source/processes/hadronic/models/de_excitation/handler/src/G4ExcitationHandler.cc +++ b/source/processes/hadronic/models/de_excitation/handler/src/G4ExcitationHandler.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4ExcitationHandler.cc 101865 2016-12-02 13:06:50Z gcosmo $ +// $Id: G4ExcitationHandler.cc 102726 2017-02-20 13:15:29Z gcosmo $ // // Hadronic Process: Nuclear De-excitations // by V. Lara (May 1998) @@ -84,14 +84,13 @@ G4ExcitationHandler::G4ExcitationHandler() : maxZForFermiBreakUp(9),maxAForFermiBreakUp(17), - isInitialised(false),isEvapLocal(true) + fVerbose(0),isInitialised(false),isEvapLocal(true) { theTableOfIons = G4ParticleTable::GetParticleTable()->GetIonTable(); nist = G4NistManager::Instance(); theMultiFragmentation = nullptr; theFermiModel = nullptr; - G4NuclearLevelData::GetInstance()->GetParameters()->Dump(); G4Pow::GetInstance(); theEvaporation = new G4Evaporation(); thePhotonEvaporation = theEvaporation->GetPhotonEvaporation(); @@ -100,7 +99,7 @@ G4ExcitationHandler::G4ExcitationHandler() theEvapList.reserve(30); thePhotoEvapList.reserve(10); SetParameters(); - //G4cout << "### New handler " << this << G4endl; + if(fVerbose > 0) { G4cout << "### New handler " << this << G4endl; } } G4ExcitationHandler::~G4ExcitationHandler() @@ -124,12 +123,21 @@ void G4ExcitationHandler::SetParameters() void G4ExcitationHandler::Initialise() { if(isInitialised) { return; } - //G4cout << "G4ExcitationHandler::Initialise() started " << this << G4endl; + if(fVerbose > 0) { + G4cout << "G4ExcitationHandler::Initialise() started " << this << G4endl; + } + G4NuclearLevelData::GetInstance()->GetParameters()->Dump(); isInitialised = true; SetParameters(); theMultiFragmentation = new G4StatMF(); theFermiModel->Initialise(); theEvaporation->InitialiseChannels(); + if(G4Threading::IsMasterThread()) { + G4cout << "Number of de-excitation channels " + << theEvaporation->GetNumberOfChannels(); + if(fVerbose > 0) { G4cout << " " << this; } + G4cout << G4endl; + } } void G4ExcitationHandler::SetEvaporation(G4VEvaporation* ptr, G4bool flag) @@ -182,16 +190,23 @@ void G4ExcitationHandler::SetDeexChannelsType(G4DeexChannelType val) evap->SetGEMChannel(); } evap->InitialiseChannels(); + if(G4Threading::IsMasterThread()) { + G4cout << "Number of de-excitation channels is changed to " + << theEvaporation->GetNumberOfChannels(); + if(fVerbose > 0) { G4cout << " " << this; } + G4cout << G4endl; + } } G4ReactionProductVector * G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) -{ - //G4cout << "@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " << hcount << G4endl; +{ // Variables existing until end of method G4Fragment * theInitialStatePtr = new G4Fragment(theInitialState); - //G4cout << theInitialState << G4endl; - + if(fVerbose > 1) { + G4cout << "@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " << G4endl; + G4cout << theInitialState << G4endl; + } if(!isInitialised) { Initialise(); } // pointer to fragment vector which receives temporal results @@ -270,11 +285,11 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) } } } - /* - G4cout << "## After first step " << theEvapList.size() << " for evap; " - << thePhotoEvapList.size() << " for photo-evap; " - << theResults.size() << " results. " << G4endl; - */ + if(fVerbose > 2) { + G4cout << "## After first step " << theEvapList.size() << " for evap; " + << thePhotoEvapList.size() << " for photo-evap; " + << theResults.size() << " results. " << G4endl; + } // ----------------------------------- // FermiBreakUp and De-excitation loop // ----------------------------------- @@ -284,8 +299,10 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) size_t kk; for (kk=0; kk 2) { + G4cout << "Next evaporate: " << G4endl; + G4cout << *frag << G4endl; + } if(kk >= countmax) { G4ExceptionDescription ed; ed << "Infinite loop in the de-excitation module: " << kk @@ -304,7 +321,7 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) if(theFermiModel->IsApplicable(Z, A, frag->GetExcitationEnergy())) { theFermiModel->BreakFragment(&results, frag); size_t nsec = results.size(); - //G4cout << "FermiBreakUp Nsec= " << nsec << G4endl; + if(fVerbose > 2) { G4cout << "FermiBreakUp Nsec= " << nsec << G4endl; } // FBU takes care to delete input fragment or add it to the results // The secondary may be excited - photo-evaporation should be applied @@ -318,7 +335,7 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) // apply Evaporation, residual nucleus is always added to the results theEvaporation->BreakFragment(&results, frag); size_t nsec = results.size(); - //G4cout << "Evaporation Nsec= " << nsec << G4endl; + if(fVerbose > 2) { G4cout << "Evaporation Nsec= " << nsec << G4endl; } // no evaporation if(1 >= nsec) { @@ -328,10 +345,11 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) // Sort out secondary fragments for (size_t j = 0; j 3) { + G4cout << "Evaporated product #" << j << G4endl; + G4cout << results[j] << G4endl; + } A = results[j]->GetA_asInt(); - //G4cout << "A= " << A << G4endl; if(A <= 1) { theResults.push_back(results[j]); // gamma, p, n continue; @@ -356,11 +374,11 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) } } // end of loop on secondary } // end of the loop over theEvapList - /* - G4cout << "## After 2nd step " << theEvapList.size() << " was evap; " - << thePhotoEvapList.size() << " for photo-evap; " - << theResults.size() << " results. " << G4endl; - */ + if(fVerbose > 2) { + G4cout << "## After 2nd step " << theEvapList.size() << " was evap; " + << thePhotoEvapList.size() << " for photo-evap; " + << theResults.size() << " results. " << G4endl; + } // ----------------------- // Photon-Evaporation loop // ----------------------- @@ -369,8 +387,10 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) size_t kkmax = thePhotoEvapList.size(); for (kk=0; kk 2) { + G4cout << "Next photon evaporate: " << thePhotonEvaporation << G4endl; + G4cout << *frag << G4endl; + } exEnergy = frag->GetExcitationEnergy(); // photon de-excitation only for hot fragments @@ -378,15 +398,15 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) thePhotonEvaporation->BreakUpChain(&theResults, frag); } - // priamry fragment is kept + // primary fragment is kept theResults.push_back(frag); } // end of photon-evaporation loop - /* - G4cout << "## After 3d step " << theEvapList.size() << " was evap; " - << thePhotoEvapList.size() << " was photo-evap; " - << theResults.size() << " results. " << G4endl; - */ + if(fVerbose > 2) { + G4cout << "## After 3d step " << theEvapList.size() << " was evap; " + << thePhotoEvapList.size() << " was photo-evap; " + << theResults.size() << " results. " << G4endl; + } G4ReactionProductVector * theReactionProductVector = new G4ReactionProductVector(); @@ -396,12 +416,14 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) G4int theFragmentA, theFragmentZ; - //G4cout << "### ExcitationHandler provides " << theResults.size() - // << " evaporated products:" << G4endl; + if(fVerbose > 1) { + G4cout << "### ExcitationHandler provides " << theResults.size() + << " evaporated products:" << G4endl; + } kkmax = theResults.size(); for (kk=0; kk 1) { G4cout << *frag << G4endl; } theFragmentA = frag->GetA_asInt(); theFragmentZ = frag->GetZ_asInt(); @@ -426,14 +448,19 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) // fragment eexc = frag->GetExcitationEnergy(); - if(eexc < minExcitation) { eexc = 0.0; } - theKindOfFragment = - theTableOfIons->GetIon(theFragmentZ,theFragmentA,eexc,noFloat,0); - /* + G4int idxf = frag->GetFloatingLevelNumber(); + if(eexc < minExcitation) { + eexc = 0.0; + idxf = 0; + } + + theKindOfFragment = theTableOfIons->GetIon(theFragmentZ,theFragmentA,eexc, + G4Ions::FloatLevelBase(idxf)); + if(fVerbose > 2) { G4cout << "### EXCH: Find ion Z= " << theFragmentZ << " A= " << theFragmentA << " Eexc(MeV)= " << eexc/MeV << " " << theKindOfFragment << G4endl; - */ + } } // fragment identified if(theKindOfFragment) { @@ -445,7 +472,8 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) // fragment not found out ground state is created } else { - theKindOfFragment = theTableOfIons->GetIon(theFragmentZ,theFragmentA,0.0,noFloat,0); + theKindOfFragment = + theTableOfIons->GetIon(theFragmentZ,theFragmentA,0.0,noFloat,0); if(theKindOfFragment) { G4ThreeVector mom(0.0,0.0,0.0); G4double ionmass = theKindOfFragment->GetPDGMass(); @@ -460,18 +488,17 @@ G4ExcitationHandler::BreakItUp(const G4Fragment & theInitialState) theNew->SetTotalEnergy(etot); theNew->SetFormationTime(frag->GetCreationTime()); theReactionProductVector->push_back(theNew); - /* + if(fVerbose > 2) { G4cout << "### Find ion Z= " << theFragmentZ << " A= " << theFragmentA - << " ground state, energy corrected " << theKindOfFragment << G4endl; - } else { - G4cout << "### Find ion Z= " << theFragmentZ - << " A= " << theFragmentA << " failed " << G4endl; - */ + << " ground state, energy corrected E(MeV)= " << etot << G4endl; + } } } delete frag; } - //G4cout << "@@@@@@@@@@ End G4Excitation Handler "<< G4endl; + if(fVerbose > 2) { + G4cout << "@@@@@@@@@@ End G4Excitation Handler "<< G4endl; + } return theReactionProductVector; } diff --git a/source/processes/hadronic/models/de_excitation/management/include/G4LevelManager.hh b/source/processes/hadronic/models/de_excitation/management/include/G4LevelManager.hh index cd876afcea..911a125420 100644 --- a/source/processes/hadronic/models/de_excitation/management/include/G4LevelManager.hh +++ b/source/processes/hadronic/models/de_excitation/management/include/G4LevelManager.hh @@ -61,10 +61,7 @@ public: // spin - 2J, where J is the full angular momentum of the state G4LevelManager(size_t ntrans, const std::vector& energies, - const std::vector& lifetime, - const std::vector& lifetimegamma, const std::vector& spin, - const std::vector& meta, const std::vector& levels); ~G4LevelManager(); @@ -95,9 +92,13 @@ public: inline G4float LifeTimeGamma(size_t i) const; + inline G4int SpinTwo(size_t i) const; + inline G4int SpinParity(size_t i) const; - inline G4int IsFloatingLevel(size_t i) const; + inline G4int Parity(size_t i) const; + + inline G4int FloatingLevel(size_t i) const; const G4String& FloatingType(size_t i) const; @@ -113,12 +114,11 @@ private: G4bool operator!=(const G4LevelManager &right) const = delete; std::vector fLevelEnergy; - std::vector fLifeTime; - std::vector fLifeTimeGamma; std::vector fSpin; - std::vector fFloating; std::vector fLevels; + size_t nTransitions; + static const G4int nfloting = 13; static G4String fFloatingLevels[nfloting]; @@ -185,7 +185,7 @@ inline G4float G4LevelManager::LifeTime(size_t i) const #ifdef G4VERBOSE if(i > nTransitions) { PrintError(i, "LifeTime"); } #endif - return fLifeTime[i]; + return (fLevels[i]) ? fLevels[i]->GetTimeGamma() : 0.0f; } inline G4float G4LevelManager::LifeTimeGamma(size_t i) const @@ -193,23 +193,39 @@ inline G4float G4LevelManager::LifeTimeGamma(size_t i) const #ifdef G4VERBOSE if(i > nTransitions) { PrintError(i, "LifeTimeGamma"); } #endif - return fLifeTimeGamma[i]; + return (fLevels[i]) ? fLevels[i]->GetTimeGamma() : 0.0f; } +inline G4int G4LevelManager::SpinTwo(size_t i) const +{ +#ifdef G4VERBOSE + if(i > nTransitions) { PrintError(i, "SpinTwo"); } +#endif + return std::abs(fSpin[i]%100000 - 100); +} + inline G4int G4LevelManager::SpinParity(size_t i) const { #ifdef G4VERBOSE - if(i > nTransitions) { PrintError(i, "SpinParity"); } + if(i > nTransitions) { PrintError(i, "SpinTwo"); } #endif - return fSpin[i]; + return fSpin[i]%100000 - 100; } -inline G4int G4LevelManager::IsFloatingLevel(size_t i) const +inline G4int G4LevelManager::Parity(size_t i) const +{ +#ifdef G4VERBOSE + if(i > nTransitions) { PrintError(i, "Parity"); } +#endif + return (fSpin[i]%100000 - 100)/2; +} + +inline G4int G4LevelManager::FloatingLevel(size_t i) const { #ifdef G4VERBOSE if(i > nTransitions) { PrintError(i, "Floating"); } #endif - return (0 != fFloating[i]); + return fSpin[i]/100000; } #endif diff --git a/source/processes/hadronic/models/de_excitation/management/include/G4LevelReader.hh b/source/processes/hadronic/models/de_excitation/management/include/G4LevelReader.hh index 0a6df7f833..342b50d26e 100644 --- a/source/processes/hadronic/models/de_excitation/management/include/G4LevelReader.hh +++ b/source/processes/hadronic/models/de_excitation/management/include/G4LevelReader.hh @@ -80,6 +80,8 @@ private: G4bool ReadDataItem(std::istream& dataFile, G4double& x); + G4bool ReadDataItem(std::istream& dataFile, G4float& x); + G4bool ReadDataItem(std::istream& dataFile, G4int& x); G4bool ReadDataItem(std::istream& dataFile, G4String& x); @@ -97,18 +99,18 @@ private: G4NuclearLevelData* fData; G4DeexPrecoParameters* fParam; - G4double fMinProbability; - G4double fTimeFactor; - G4double fEnergy; G4double fCurrEnergy; G4double fTrEnergy; - G4double fProb; - G4double fTime; - G4double fSpin; - G4double fAlpha; - G4double fRatio; - G4double fICC[10]; + + G4float fTimeFactor; + G4float fTime; + G4float fProb; + G4float fSpin; + G4float fAlpha; + G4float fAlphaMax; + G4float fRatio; + G4float fICC[10]; static const G4int nfloting = 13; static G4String fFloatingLevels[nfloting]; @@ -118,32 +120,27 @@ private: G4String fPol; static const G4int nbufmax = 20; + static const G4int nbuf1 = 14; static const G4int nbuf2 = 8; char buffer[nbufmax]; + char buff1[nbuf1]; char buff2[nbuf2]; - char bufp[2]; + char bufp[3]; G4int fVerbose; G4int fLevelMax; G4int fTransMax; G4float fNorm1; - G4float fNorm2; std::vector vEnergy; - std::vector vTime; - std::vector vTimeg; std::vector vSpin; - std::vector vMeta; - std::vector vIndexDB; std::vector vLevel; - std::vector vIndex; std::vector vTrans; std::vector vRatio; std::vector vGammaCumProbability; - std::vector vGammaECumProbability; std::vector vGammaProbability; std::vector vMpRatio; std::vector*> vShellProbability; diff --git a/source/processes/hadronic/models/de_excitation/management/include/G4NucLevel.hh b/source/processes/hadronic/models/de_excitation/management/include/G4NucLevel.hh index d827901bd6..c12808e51a 100644 --- a/source/processes/hadronic/models/de_excitation/management/include/G4NucLevel.hh +++ b/source/processes/hadronic/models/de_excitation/management/include/G4NucLevel.hh @@ -53,11 +53,9 @@ class G4NucLevel { public: - explicit G4NucLevel(size_t ntrans, - const std::vector& idxTrans, + explicit G4NucLevel(size_t ntrans, G4float tgamma, const std::vector& vTrans, const std::vector& wLevelGamma, - const std::vector& wLevelGammaE, const std::vector& wGamma, const std::vector& vRatio, const std::vector*>& wShell); @@ -66,23 +64,25 @@ public: inline size_t NumberOfTransitions() const; - inline G4bool IsXLevel() const; - inline size_t FinalExcitationIndex(size_t idx) const; inline G4int TransitionType(size_t idx) const; + inline G4float GetTimeGamma() const; + inline G4float MixingRatio(size_t idx) const; inline G4float GammaProbability(size_t idx) const; + inline G4float GammaCumProbability(size_t idx) const; + inline G4float MultipolarityRatio(size_t idx) const; inline size_t SampleGammaTransition(G4double rndm) const; - inline size_t SampleGammaETransition(G4double rndm) const; + inline G4int SampleShell(size_t idx, G4double rndm) const; - inline size_t SampleShell(size_t idx, G4double rndm) const; + inline const std::vector* ShellProbabilty(size_t idx) const; private: @@ -94,15 +94,15 @@ private: G4bool operator!=(const G4NucLevel &right) const = delete; G4bool operator<(const G4NucLevel &right) const = delete; const G4NucLevel& operator=(const G4NucLevel &right) = delete; + + size_t length; + G4float fTimeGamma; - std::vector fFinalIndex; std::vector fTrans; std::vector fGammaCumProbability; - std::vector fGammaECumProbability; std::vector fGammaProbability; std::vector fMpRatio; std::vector*> fShellProbability; - size_t length; }; inline size_t G4NucLevel::NumberOfTransitions() const @@ -110,17 +110,12 @@ inline size_t G4NucLevel::NumberOfTransitions() const return length; } -inline G4bool G4NucLevel::IsXLevel() const -{ - return (1 == fTrans[0]); -} - inline size_t G4NucLevel::FinalExcitationIndex(size_t idx) const { #ifdef G4VERBOSE if(idx >= length) { PrintError(idx, "FinalExcitationEnergy"); } #endif - return fFinalIndex[idx]; + return (size_t)(fTrans[idx]/10000); } inline G4int G4NucLevel::TransitionType(size_t idx) const @@ -128,7 +123,12 @@ inline G4int G4NucLevel::TransitionType(size_t idx) const #ifdef G4VERBOSE if(idx >= length) { PrintError(idx, "TransitionType"); } #endif - return fTrans[idx]; + return fTrans[idx]%10000; +} + +inline G4float G4NucLevel::GetTimeGamma() const +{ + return fTimeGamma; } inline G4float G4NucLevel::MixingRatio(size_t idx) const @@ -147,6 +147,14 @@ inline G4float G4NucLevel::GammaProbability(size_t idx) const return fGammaProbability[idx]; } +inline G4float G4NucLevel::GammaCumProbability(size_t idx) const +{ +#ifdef G4VERBOSE + if(idx >= length) { PrintError(idx, "GammaCumProbability"); } +#endif + return fGammaCumProbability[idx]; +} + inline G4float G4NucLevel::MultipolarityRatio(size_t idx) const { #ifdef G4VERBOSE @@ -165,31 +173,30 @@ inline size_t G4NucLevel::SampleGammaTransition(G4double rndm) const return idx; } -inline size_t G4NucLevel::SampleGammaETransition(G4double rndm) const -{ - G4float x = (G4float)rndm; - size_t idx = 0; - for(; idx= length) { PrintError(idx, "SampleShell"); } #endif const std::vector* prob = fShellProbability[idx]; - size_t i = 0; + G4int i(-1); if(prob) { - size_t nn = prob->size(); + G4int nn = prob->size(); G4float x = (G4float)rndm; - for(; i* +G4NucLevel::ShellProbabilty(size_t idx) const +{ +#ifdef G4VERBOSE + if(idx >= length) { PrintError(idx, "ShellProbability"); } +#endif + return fShellProbability[idx]; +} + #endif diff --git a/source/processes/hadronic/models/de_excitation/management/src/G4DeexPrecoParameters.cc b/source/processes/hadronic/models/de_excitation/management/src/G4DeexPrecoParameters.cc index 8bde9d5581..215fcfa147 100644 --- a/source/processes/hadronic/models/de_excitation/management/src/G4DeexPrecoParameters.cc +++ b/source/processes/hadronic/models/de_excitation/management/src/G4DeexPrecoParameters.cc @@ -57,8 +57,8 @@ void G4DeexPrecoParameters::SetDefaults() fFermiEnergy = 35.0*CLHEP::MeV; fPrecoLowEnergy = 0.1*CLHEP::MeV; fPhenoFactor = 1.0; - fMinExcitation = 0.1*CLHEP::keV; - fMaxLifeTime = 0.01*CLHEP::second; + fMinExcitation = 10*CLHEP::eV; + fMaxLifeTime = 1.0*CLHEP::microsecond; fMinExPerNucleounForMF = 100*CLHEP::GeV; fMinZForPreco = 3; fMinAForPreco = 5; @@ -69,8 +69,8 @@ void G4DeexPrecoParameters::SetDefaults() fUseCEM = true; fUseGNASH = false; fUseHETC = false; - fUseAngularGen = true; - fUseLongFiles = false; + fUseAngularGen = false; + fUseLongFiles = true; fCorrelatedGamma = false; fStoreAllLevels = false; fDeexChannelType = fEvaporation; @@ -231,6 +231,8 @@ std::ostream& G4DeexPrecoParameters::StreamInfo(std::ostream& os) const << fLevelDensity*CLHEP::MeV << "\n"; os << "Time limit for long lived isomeres (ns) " << fMaxLifeTime/CLHEP::ns << "\n"; + os << "Use new data files " << fUseLongFiles << "\n"; + os << "Use complete data files " << fStoreAllLevels << "\n"; os << "Correlated gamma emission flag " << fCorrelatedGamma << "\n"; os << "=======================================================================" << "\n"; os.precision(prec); diff --git a/source/processes/hadronic/models/de_excitation/management/src/G4LevelManager.cc b/source/processes/hadronic/models/de_excitation/management/src/G4LevelManager.cc index 00411f6107..9e6f96c938 100644 --- a/source/processes/hadronic/models/de_excitation/management/src/G4LevelManager.cc +++ b/source/processes/hadronic/models/de_excitation/management/src/G4LevelManager.cc @@ -48,31 +48,22 @@ G4String G4LevelManager::fFloatingLevels[] = { G4LevelManager::G4LevelManager(size_t ntrans, const std::vector& energies, - const std::vector& lifetime, - const std::vector& lifetimegamma, const std::vector& spin, - const std::vector& fll, const std::vector& levels) : nTransitions(0) { if(0 < ntrans) { nTransitions = ntrans - 1; fLevelEnergy.reserve(ntrans); - fLifeTime.reserve(ntrans); - fLifeTimeGamma.reserve(ntrans); fSpin.reserve(ntrans); - fFloating.reserve(ntrans); fLevels.reserve(ntrans); for(size_t i=0; i" << G4endl; + //G4cout << "New G4LevelManager N= " << nTransitions << " " + //<< fLevelEnergy.size() << " <" << this << ">" << G4endl; } } @@ -115,7 +106,8 @@ const G4String& G4LevelManager::FloatingType(size_t i) const #ifdef G4VERBOSE if(i > nTransitions) { PrintError(i, "Meta"); } #endif - return fFloatingLevels[fFloating[i]]; + return fFloatingLevels[fSpin[i]/100000]; + // return fFloatingLevels[fFloating[i]]; } #ifdef G4VERBOSE diff --git a/source/processes/hadronic/models/de_excitation/management/src/G4LevelReader.cc b/source/processes/hadronic/models/de_excitation/management/src/G4LevelReader.cc index d9ae8027ab..c71af1fd58 100644 --- a/source/processes/hadronic/models/de_excitation/management/src/G4LevelReader.cc +++ b/source/processes/hadronic/models/de_excitation/management/src/G4LevelReader.cc @@ -54,10 +54,10 @@ G4String G4LevelReader::fFloatingLevels[] = { "-", "+X", "+Y", "+Z", "+U", "+V", "+W", "+R", "+S", "+T", "+A", "+B", "+C"}; G4LevelReader::G4LevelReader(G4NuclearLevelData* ptr) - : fData(ptr),fMinProbability(1.e-8),fVerbose(0),fLevelMax(632),fTransMax(30) + : fData(ptr),fAlphaMax(9.0f+9),fVerbose(0),fLevelMax(632),fTransMax(80) { fParam = fData->GetParameters(); - fTimeFactor = CLHEP::second/G4Pow::GetInstance()->logZ(2); + fTimeFactor = (G4float)(CLHEP::second/G4Pow::GetInstance()->logZ(2)); char* directory = getenv("G4LEVELGAMMADATA"); if(directory) { fDirectory = directory; @@ -68,31 +68,25 @@ G4LevelReader::G4LevelReader(G4NuclearLevelData* ptr) } fFile = fDirectory + "/z100.a200"; fPol = " "; - for(G4int i=0; i<10; ++i) { fICC[i] = 0.0; } + for(G4int i=0; i<10; ++i) { fICC[i] = 0.0f; } for(G4int i=0; iStoreAllLevels(); if (fVerbose > 0) { G4cout << "G4LevelReader: open file for Z= " << Z << " A= " << A << " <" << filename << ">" << G4endl; } // read line by line - G4bool end = false; + G4bool end = false; G4bool next = true; G4int nline = -1; - G4String xl = "- "; + G4int spin; + G4int index(0); fCurrEnergy = DBL_MAX; do { fPol = " "; @@ -148,7 +147,11 @@ G4LevelReader::MakeLevelManager(G4int Z, G4int A, const G4String& filename) ReadDataItem(infile,fTime) && ReadDataItem(infile,fSpin) && ReadDataItem(infile,fAlpha)); - + /* + G4cout << fEnergy << " " << fTrEnergy << " " << fProb << " " + << fPol << " " << fTime << " " << fSpin << " " << fAlpha + << " " << isOK << " " << fVerbose << G4endl; + */ fEnergy *= CLHEP::keV; fTrEnergy *= CLHEP::keV; @@ -177,82 +180,74 @@ G4LevelReader::MakeLevelManager(G4int Z, G4int A, const G4String& filename) if(fVerbose > 1) { G4cout << "Reader: new level E= " << fEnergy << " Ntransitions= " << nn+1 << " fNorm1= " << fNorm1 - << " fNorm2= " << fNorm2 << G4endl; + << G4endl; } - if(fNorm1 > 0.0f) { + if(fNorm1 > 0.0f) { fNorm1 = 1.0f/fNorm1; - vTimeg.push_back(((G4float)(fTime*fTimeFactor))*fNorm2*fNorm1); - fNorm2 = 1.0f/fNorm2; for(size_t i=0; i 2) { G4cout << "Probabilities[" << i << "]= " << vGammaCumProbability[i] - << " " << vGammaECumProbability[i] - << " idxTrans= " << vIndex[i] + << " idxTrans= " << index << G4endl; } } vGammaCumProbability[nn] = 1.0f; - vGammaECumProbability[nn] = 1.0f; if(fVerbose > 2) { - G4cout << "Probabilities[" << nn << "]= " << vGammaCumProbability[nn] - << " " << vGammaECumProbability[nn] - << " IdxTrans= " << vIndex[nn] + G4cout << "Probabilities[" << nn << "]= " + << vGammaCumProbability[nn] + << " IdxTrans= " << index << G4endl; } - vMeta.push_back(0); + vLevel.push_back(new G4NucLevel(vTrans.size(), fTime, + vTrans, + vGammaCumProbability, + vGammaProbability, + vMpRatio, + vShellProbability)); //case of X-level } else { - vMeta.push_back(1); - vTimeg.push_back(0.0f); - vGammaCumProbability[0] = 0.0f; - vGammaECumProbability[0] = 0.0f; + spin += 100000; + fTime = 0.0f; + vLevel.push_back(nullptr); } - - vLevel.push_back(new G4NucLevel(vIndex.size(), - vIndex, - vTrans, - vGammaCumProbability, - vGammaECumProbability, - vGammaProbability, - vMpRatio, - vShellProbability)); - vIndex.clear(); - vTrans.clear(); - vGammaCumProbability.clear(); - vGammaECumProbability.clear(); - vGammaProbability.clear(); - vShellProbability.clear(); - vMpRatio.clear(); + } else { + vLevel.push_back(nullptr); } + vSpin.push_back(spin); + vTrans.clear(); + vGammaCumProbability.clear(); + vGammaProbability.clear(); + vShellProbability.clear(); + vMpRatio.clear(); if(!end) { next = true; } } - fCurrEnergy = fEnergy; + G4float ener = (G4float)fEnergy; // begin nuclear level data if(next) { - if(fVerbose > 2) { - G4cout << "== Reader: begin of new level E= " << fEnergy << G4endl; + if(fVerbose > 1) { + G4cout << "== Reader: begin of new level E= " << fEnergy + << " Prob= " << fProb << G4endl; } // protection for bad level energy size_t nn = vEnergy.size(); - G4float ener = (G4float)fEnergy; - if(0 < nn && vEnergy[nn-1] > ener) { ener = vEnergy[nn-1]; } + if(0 < nn && vEnergy[nn-1] > ener) { + ener = vEnergy[nn-1]; + } vEnergy.push_back(ener); - vTime.push_back((G4float)(fTime*fTimeFactor)); - if(fSpin > 20.0) { fSpin = 0.0; } - fProb = std::max(fProb, fMinProbability); - vSpin.push_back((G4int)(fSpin+fSpin)); + fCurrEnergy = fEnergy; + fTime *= fTimeFactor; + if(fSpin > 20.0f) { fSpin = 0.0; } + spin = (G4int)(fSpin+fSpin); fNorm1 = 0.0f; - fNorm2 = 0.0f; next = false; } // continue filling level data if(!end) { - if(fProb > 0.0) { + if(fProb > 0.0f) { // by default transition to a ground state - G4float efinal = std::max((G4float)(fEnergy - fTrEnergy),0.0f); + G4float efinal = (G4float)std::max(fEnergy - fTrEnergy,0.0); G4float elevel = 0.0f; size_t idxLevel = 0; G4int tnum = 0; @@ -260,7 +255,7 @@ G4LevelReader::MakeLevelManager(G4int Z, G4int A, const G4String& filename) size_t nn = vEnergy.size(); static const G4float x_energy = (G4float)(0.1*CLHEP::eV); if(1 < nn) { - G4float ediffMin = fEnergy; + G4float ediffMin = (G4float)fEnergy; for(size_t i=0; i 0.0) { + vTrans.push_back(tnum + idxLevel*10000); + if(allLevels && fAlpha > 0.0f) { vShellProbability.push_back(NormalizedICCProbability(Z)); } else { vShellProbability.push_back(nullptr); @@ -306,14 +298,14 @@ G4LevelReader::MakeLevelManager(G4int Z, G4int A, const G4String& filename) G4LevelManager* man = nullptr; if(vEnergy.size() >= 2) { - man = new G4LevelManager(vEnergy.size(),vEnergy,vTime,vTimeg,vSpin,vMeta,vLevel); + man = new G4LevelManager(vEnergy.size(),vEnergy,vSpin,vLevel); if(fVerbose > 0) { G4cout << "=== Reader: new manager for Z= " << Z << " A= " << A << " Nlevels= " << vEnergy.size() << " E[0]= " << vEnergy[0]/CLHEP::MeV << " MeV Emax= " << man->MaxLevelEnergy()/CLHEP::MeV << " MeV " - << " S: " << vEnergy.size() << " " << vTime.size() - << " " << vTimeg.size() << " " << vSpin.size() << " " << vLevel.size() + << " S: " << vEnergy.size() + << " " << vSpin.size() << " " << vLevel.size() << G4endl; } } @@ -338,6 +330,18 @@ G4bool G4LevelReader::ReadDataItem(std::istream& dataFile, G4double& x) return okay; } +G4bool G4LevelReader::ReadDataItem(std::istream& dataFile, G4float& x) +{ + x = 0.0f; + for(G4int i=0; i> buff1; + if(dataFile.fail()) { okay = false; } + else { x = atof(buff1); } + + return okay; +} + G4bool G4LevelReader::ReadDataItem(std::istream& dataFile, G4int& ix) { ix = 0; @@ -353,9 +357,11 @@ G4bool G4LevelReader::ReadDataItem(std::istream& dataFile, G4int& ix) G4bool G4LevelReader::ReadDataItem(std::istream& dataFile, G4String& x) { G4bool okay = true; + bufp[0] = bufp[1] = ' '; dataFile >> bufp; if(dataFile.fail()) { okay = false; } else { x = G4String(bufp, 2); } + return okay; } @@ -385,22 +391,25 @@ const std::vector* G4LevelReader::NormalizedICCProbability(G4int Z) M = 4; N = 1; } - if(LL < 3) { for(G4int i=LL+1; i<=4; ++i) { fICC[i] = 0.0; } } - if(M < 5) { for(G4int i=M+4; i<=8; ++i) { fICC[i] = 0.0; } } - if(N < 1) { fICC[9] = 0.0; } + if(LL < 3) { for(G4int i=LL+1; i<=4; ++i) { fICC[i] = 0.0f; } } + if(M < 5) { for(G4int i=M+4; i<=8; ++i) { fICC[i] = 0.0f; } } + if(N < 1) { fICC[9] = 0.0f; } } - G4float norm = 0.0; + G4float norm = 0.0f; for(G4int i=0; i<10; ++i) { norm += fICC[i]; fICC[i] = norm; } + if(norm == 0.0f && fAlpha > fAlphaMax) { + fICC[9] = norm = 1.0f; + } if(norm > 0.0f) { norm = 1.0f/norm; vec = new std::vector; G4float x; for(G4int i=0; i<10; ++i) { - x = (G4float)(fICC[i]*norm); - if(x > 0.995f) { + x = fICC[i]*norm; + if(x > 0.995f || 9 == i) { vec->push_back(1.0f); break; } @@ -429,10 +438,12 @@ G4LevelReader::CreateLevelManagerNEW(G4int Z, G4int A) // file is not opened if (!infile.is_open()) { - if (fVerbose > 0) { - G4cout << " G4LevelReader: fail open file for Z= " - << Z << " A= " << A - << " <" << fFile << ">" << G4endl; + if(fVerbose > 0) { + G4ExceptionDescription ed; + ed << " for Z= " << Z << " A= " << A + << " <" << fFile << "> is not opened!"; + G4Exception("G4LevelReader::CreateLevelManagerNEW(..)","had014", + JustWarning, ed, ""); } return nullptr; } @@ -452,11 +463,11 @@ G4LevelReader::MakeLevelManagerNEW(G4int Z, G4int A, // file is not opened if (!infile.is_open()) { - if (fVerbose > 0) { - G4cout << " G4LevelReader: fail open file for Z= " - << Z << " A= " << A - << " <" << filename << ">" << G4endl; - } + G4ExceptionDescription ed; + ed << " for Z= " << Z << " A= " << A + << " data file <" << filename << "> is not opened!"; + G4Exception("G4LevelReader::MakeLevelManagerNEW(..)","had014", + JustWarning, ed, "Check G4LEVELGAMMADATA"); return nullptr; } if (fVerbose > 0) { @@ -472,7 +483,6 @@ G4LevelReader::LevelManager(G4int Z, G4int A, G4int nlev, std::ifstream& infile) { G4bool allLevels = fParam->StoreAllLevels(); - G4float emax = fData->GetMaxLevelEnergy(Z, A); static const G4double fkev = CLHEP::keV; G4int nlevels = (0 == nlev) ? fLevelMax : nlev; @@ -484,72 +494,69 @@ G4LevelReader::LevelManager(G4int Z, G4int A, G4int nlev, if(nlevels > fLevelMax) { fLevelMax = nlevels; vEnergy.resize(fLevelMax,0.0f); - vTime.resize(fLevelMax,0.0f); - vTimeg.resize(fLevelMax,0.0f); vSpin.resize(fLevelMax,0); - vLevel.resize(fLevelMax,0); - vMeta.resize(fLevelMax,0); - vIndexDB.resize(fLevelMax,-1); + vLevel.resize(fLevelMax,nullptr); } - G4int ntrans(0), i(0), i1, i2, i3, j, k; + G4int ntrans(0), i1, i, k; + G4int i2; // Level number at which transition ends + G4int tnum; // Multipolarity index G4String xf(" "); - G4float x, x1; + G4float x, ener, tener; - for(G4int ii=0; ii> i1 >> xf; + for(i=0; i> i1 >> xf; // Level number and floating level + //G4cout << "New line: i1= " << i1 << " xf= <" << xf << "> " << G4endl; if(infile.eof()) { if(fVerbose > 1) { G4cout << "### End of file Z= " << Z << " A= " << A - << " Nlevels= " << ii << G4endl; + << " Nlevels= " << i << G4endl; } break; } - if(!(ReadDataItem(infile,fEnergy) && + if(i1 != i) { + G4ExceptionDescription ed; + ed << " G4LevelReader: wrong data file for Z= " << Z << " A= " << A + << " level #" << i << " has index " << i1 << G4endl; + G4Exception("G4LevelReader::LevelManager(..)","had014", + FatalException, ed, "Check G4LEVELGAMMADATA"); + } + + if(!(ReadDataItem(infile,ener) && ReadDataItem(infile,fTime) && ReadDataItem(infile,fSpin) && ReadDataItem(infile,ntrans))) { if(fVerbose > 1) { G4cout << "### End of file Z= " << Z << " A= " << A - << " Nlevels= " << ii << G4endl; + << " Nlevels= " << i << G4endl; } break; } - fTime = std::max(fTime, 0.0); - fEnergy *= fkev; + fTime = std::max(fTime, 0.0f); + ener *= fkev; for(k=0; k emax) { break; } } - vEnergy[i] = (G4float)fEnergy; - vTime[i] = (G4float)(fTime*fTimeFactor); - vTimeg[i] = vTime[i]; - if(fSpin > 20.0) { fSpin = 0.0; } - vSpin[i] = (G4int)(fSpin + fSpin); - vMeta[i] = k; - vIndexDB[ii] = i; + vEnergy[i] = ener; + fTime *= fTimeFactor; + if(fSpin > 20.0f) { fSpin = 0.0f; } + vSpin[i] = (G4int)(100 + fSpin + fSpin) + k*100000; if(fVerbose > 1) { - G4cout << " Level #" << i1 << " E(MeV)= " << fEnergy/CLHEP::MeV + G4cout << " Level #" << i1 << " E(MeV)= " << ener/CLHEP::MeV << " LTime(s)= " << fTime << " 2S= " << vSpin[i] - << " meta= " << vMeta[i] << " idx= " << i << " ii= " << ii + << " meta= " << vSpin[i]/100000 << " idx= " << i << " ntr= " << ntrans << G4endl; } vLevel[i] = nullptr; @@ -558,26 +565,23 @@ G4LevelReader::LevelManager(G4int Z, G4int A, G4int nlev, // there are transitions if(ntrans > fTransMax) { fTransMax = ntrans; - vIndex.resize(fTransMax); vTrans.resize(fTransMax); vRatio.resize(fTransMax); vGammaCumProbability.resize(fTransMax); - vGammaECumProbability.resize(fTransMax); vGammaProbability.resize(fTransMax); vShellProbability.resize(fTransMax); vMpRatio.resize(fTransMax); } - fNorm1 = fNorm2 = 0.0f; - j = 0; - for(G4int jj=0; jj>i2 >> fTrEnergy >> fProb >> vTrans[j] >> fRatio >> fAlpha; + //infile >>i2 >> tener >> fProb >> vTrans[j] >> fRatio >> fAlpha; //if(infile.fail()) { if(fVerbose > 0) { G4cout << "### Fail to read transition j= " << j @@ -585,38 +589,36 @@ G4LevelReader::LevelManager(G4int Z, G4int A, G4int nlev, } break; } - if(i2 >= ii) { + if(i2 >= i) { G4cout << "### G4LevelReader: broken transition " << j - << " from level " << ii << " to " << i2 - << " for isotope Z= " << Z << " A= " - << A << " - use ground level" << G4endl; + << " from level " << i << " to " << i2 + << " for isotope Z= " << Z << " A= " + << A << " - use ground level" << G4endl; i2 = 0; } - i3 = vIndexDB[std::abs(i2)]; - - if(i3 >= 0) { - vIndex[j] = i3; - x = 1.0f + std::max((G4float)fAlpha,0.0f); - x1= (G4float)fProb; - fNorm1 += x1; - fNorm2 += x*x1; + vTrans[j] = i2*10000 + tnum; + if(fAlpha < fAlphaMax) { + x = 1.0f + fAlpha; + fNorm1 += x*fProb; vGammaCumProbability[j] = fNorm1; - vGammaECumProbability[j]= fNorm2; vGammaProbability[j] = 1.0f/x; - vRatio[j] = (G4float)fRatio; - vShellProbability[j] = nullptr; - if(fVerbose > 1) { - fTrEnergy *= fkev; - G4int prec = G4cout.precision(4); - G4cout << "### Transition #" << j << " to level " << vIndex[j] - << " i2= " << i2 << " Etrans(MeV)= " << fTrEnergy - << " fProb= " << fProb << " MultiP= " << vTrans[j] - << " fMpRatio= " << fRatio << " fAlpha= " << fAlpha - << G4endl; - G4cout.precision(prec); - } + } else { + // only internal conversion case - no gamma conversion at all + fNorm1 += fProb; + vGammaCumProbability[j] = fNorm1; + vGammaProbability[j] = 0.0f; + } + vShellProbability[j] = nullptr; + if(fVerbose > 1) { + G4int prec = G4cout.precision(4); + G4cout << "### Transition #" << j << " to level " << i2 + << " i2= " << i2 << " Etrans(MeV)= " << tener*fkev + << " fProb= " << fProb << " MultiP= " << tnum + << " fMpRatio= " << fRatio << " fAlpha= " << fAlpha + << G4endl; + G4cout.precision(prec); } - if(fAlpha > 0.0) { + if(fAlpha > 0.0f) { for(k=0; k<10; ++k) { //infile >> fICC[k]; if(!ReadDataItem(infile,fICC[k])) { @@ -629,66 +631,55 @@ G4LevelReader::LevelManager(G4int Z, G4int A, G4int nlev, break; } } - if(i3 >= 0) { + if(allLevels) { vShellProbability[j] = NormalizedICCProbability(Z); if(!vShellProbability[j]) { vGammaProbability[j] = 1.0f; } } } - if(i3 >= 0) { ++j; } } - if(j > 0) { - if(0.0f < fNorm1) { - fNorm1 = 1.0f/fNorm1; - vTimeg[i] *= fNorm2*fNorm1; - fNorm2 = 1.0f/fNorm2; - } - G4int nt = j - 1; - for(k=0; k 2) { - G4cout << "Probabilities[" << k - << "]= " << vGammaCumProbability[k] - << " " << vGammaECumProbability[k] - << " idxTrans= " << vIndex[k] - << G4endl; - } - } - vGammaCumProbability[nt] = 1.0f; - vGammaECumProbability[nt] = 1.0f; + if(0.0f < fNorm1) { fNorm1 = 1.0f/fNorm1; } + G4int nt = ntrans - 1; + for(k=0; k 2) { - G4cout << "Probabilities[" << nt << "]= " - << vGammaCumProbability[nt] - << " " << vGammaECumProbability[nt] - << " IdxTrans= " << vIndex[nt] + G4cout << "Probabilities[" << k + << "]= " << vGammaCumProbability[k] + << " " << vGammaProbability[k] + << " idxTrans= " << vTrans[k]/10000 << G4endl; } - vLevel[i] = new G4NucLevel((size_t)j, - vIndex, - vTrans, - vGammaCumProbability, - vGammaECumProbability, - vGammaProbability, - vMpRatio, - vShellProbability); } + vGammaCumProbability[nt] = 1.0f; + if(fVerbose > 2) { + G4cout << "Probabilities[" << nt << "]= " + << vGammaCumProbability[nt] + << " " << vGammaProbability[nt] + << " IdxTrans= " << vTrans[nt]/10000 + << G4endl; + } + if(fVerbose > 1) { + G4cout << " New G4NucLevel: Ntrans= " << ntrans + << " Time(ns)= " << fTime << G4endl; + } + vLevel[i] = new G4NucLevel((size_t)ntrans, fTime, + vTrans, + vGammaCumProbability, + vGammaProbability, + vMpRatio, + vShellProbability); } - ++i; } G4LevelManager* lman = nullptr; if(1 < i) { - lman = new G4LevelManager((size_t)i,vEnergy,vTime,vTimeg, - vSpin,vMeta,vLevel); + lman = new G4LevelManager((size_t)i,vEnergy,vSpin,vLevel); if(fVerbose > 0) { G4cout << "=== Reader: new manager for Z= " << Z << " A= " << A << " Nlevels= " << i << " E[0]= " - << vEnergy[0]/CLHEP::MeV << " MeV Emax= " + << vEnergy[0]/CLHEP::MeV << " MeV E1= " << vEnergy[i-1]/CLHEP::MeV << " MeV " << G4endl; } } - for(G4int ii=0; ii& idxTrans, +G4NucLevel::G4NucLevel(size_t ntrans, G4float tgamma, const std::vector& vTrans, const std::vector& wLevelGamma, - const std::vector& wLevelGammaE, const std::vector& wGamma, const std::vector& vRatio, const std::vector*>& wShell) - : length(ntrans) + : length(ntrans), fTimeGamma(tgamma) { if(0 < length) { - fFinalIndex.reserve(length); fTrans.reserve(length); fGammaCumProbability.reserve(length); - fGammaECumProbability.reserve(length); fGammaProbability.reserve(length); fMpRatio.reserve(length); fShellProbability.reserve(length); for(size_t i=0; ilogfactorial(k); } + G4int fVerbose; G4int fTwoJ1, fTwoJ2; G4int fLbar, fL; G4double fDelta; diff --git a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4GammaTransition.cc b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4GammaTransition.cc index d61f5b6b50..21bea5041f 100644 --- a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4GammaTransition.cc +++ b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4GammaTransition.cc @@ -47,7 +47,7 @@ #include "G4PhysicalConstants.hh" G4GammaTransition::G4GammaTransition() - : polarFlag(false), fDirection(0.,0.,0.) + : polarFlag(false), fDirection(0.,0.,0.), fVerbose(0) {} G4GammaTransition::~G4GammaTransition() @@ -60,27 +60,30 @@ G4GammaTransition::SampleTransition(G4Fragment* nucleus, G4int JP1, G4int JP2, G4int MP, - size_t shell, + G4int shell, G4bool isDiscrete, - G4bool isGamma, - G4bool isLongLived) + G4bool isGamma) { G4Fragment* result = nullptr; - G4double bond_energy = 0.; + G4double bond_energy = 0.0; if (!isGamma) { - G4int Z = nucleus->GetZ_asInt(); - if(Z <= 100) { - G4int idx = (G4int)shell; - idx = std::min(idx, G4AtomicShells::GetNumberOfShells(Z)-1); - bond_energy = G4AtomicShells::GetBindingEnergy(Z, idx); + if(0 <= shell) { + G4int Z = nucleus->GetZ_asInt(); + if(Z <= 100) { + G4int idx = (G4int)shell; + idx = std::min(idx, G4AtomicShells::GetNumberOfShells(Z)-1); + bond_energy = G4AtomicShells::GetBindingEnergy(Z, idx); + } } } G4double etrans = nucleus->GetExcitationEnergy() - newExcEnergy - bond_energy; - // G4cout << "G4GammaTransition::GenerateGamma - Etrans(MeV)= " - // << etrans << " Eexnew= " << newExcEnergy - // << " Ebond= " << bond_energy << G4endl; + if(fVerbose > 1) { + G4cout << "G4GammaTransition::GenerateGamma - Etrans(MeV)= " + << etrans << " Eexnew= " << newExcEnergy + << " Ebond= " << bond_energy << G4endl; + } if(etrans <= 0.0) { etrans += bond_energy; bond_energy = 0.0; @@ -89,6 +92,7 @@ G4GammaTransition::SampleTransition(G4Fragment* nucleus, // Do complete Lorentz computation G4LorentzVector lv = nucleus->GetMomentum(); G4double mass = nucleus->GetGroundStateMass() + newExcEnergy; + //G4double e0 = lv.e(); // select secondary G4ParticleDefinition* part; @@ -98,15 +102,9 @@ G4GammaTransition::SampleTransition(G4Fragment* nucleus, part = G4Electron::Electron(); G4int ne = std::max(nucleus->GetNumberOfElectrons() - 1, 0); nucleus->SetNumberOfElectrons(ne); - lv += G4LorentzVector(0.0,0.0,0.0, - CLHEP::electron_mass_c2 - bond_energy); } - /* - G4cout << "New GammaTransition: polarFlag: " << polarFlag - << " isDiscrete: " << isDiscrete << " isGamma: " << isGamma - << " isLongLived: " << isLongLived << G4endl; - */ - if(polarFlag && isDiscrete && isGamma && !isLongLived) { + + if(polarFlag && isDiscrete) { SampleDirection(nucleus, mpRatio, JP1, JP2, MP); } else { fDirection = G4RandomDirection(); @@ -117,91 +115,87 @@ G4GammaTransition::SampleTransition(G4Fragment* nucleus, // 2-body decay in rest frame G4double ecm = lv.mag(); G4ThreeVector bst = lv.boostVector(); + if(!isGamma) { ecm += (CLHEP::electron_mass_c2 - bond_energy); } - //G4cout << "Ecm= " << ecm << " mass= " << mass << " emass= " << emass - // << " isLongLived: " << isLongLived << G4endl; + //G4cout << "Ecm= " << ecm << " mass= " << mass << " emass= " << emass << G4endl; + ecm = std::max(ecm, mass + emass); G4double energy = 0.5*((ecm - mass)*(ecm + mass) + emass*emass)/ecm; - energy = std::max(energy, emass); - - G4double mom = std::sqrt((energy - emass)*(energy + emass)); + G4double mom = (emass > 0.0) ? std::sqrt((energy - emass)*(energy + emass)) + : energy; + // emitted gamma or e- G4LorentzVector res4mom(mom * fDirection.x(), mom * fDirection.y(), mom * fDirection.z(), energy); + // residual + energy = std::max(ecm - energy, mass); + lv.set(-mom*fDirection.x(), -mom*fDirection.y(), -mom*fDirection.z(), energy); // Lab system transform for short lived level - if(!isLongLived) { - res4mom.boost(bst); - lv -= res4mom; - } else { - // In exceptional case sample decay at rest at not correct position - // of stopping ion, 4-momentum balance is breaked but gamma energy - // is correct - lv -= res4mom; - G4double E = lv.e(); - G4double P2= (E - mass)*(E + mass); - G4ThreeVector v = lv.vect().unit(); - G4double p = 0.0; - if(P2 > 0.0) { p = std::sqrt(P2); } - else { E = mass; } - lv.set(v.x()*p, v.y()*p, v.z()*p, E); - } + lv.boost(bst); // modified primary fragment - nucleus->SetMomentum(lv); + nucleus->SetExcEnergyAndMomentum(newExcEnergy, lv); // gamma or e- are produced + res4mom.boost(bst); result = new G4Fragment(res4mom, part); - // G4cout << " DeltaE= " << e0 - lv.e() - res4mom.e() << G4endl; - //G4cout << "G4GammaTransition::GenerateGamma : " << thePhoton << G4endl; - //G4cout << " Left nucleus: " << aNucleus << G4endl; + //G4cout << " DeltaE= " << e0 - lv.e() - res4mom.e() + emass + // << " Emass= " << emass << G4endl; + if(fVerbose > 1) { + G4cout << "G4GammaTransition::SampleTransition : " << result << G4endl; + G4cout << " Left nucleus: " << nucleus << G4endl; + } return result; } void G4GammaTransition::SampleDirection(G4Fragment* nuc, G4double ratio, G4int twoJ1, G4int twoJ2, G4int mp) { - //G4cout << "G4GammaTransition::SampleDirection" << G4endl; + // PhotonEvaporation dataset: + // The multipolarity number with 1,2,3,4,5,6,7 representing E0,E1,M1,E2,M2,E3,M3 + // monopole transition and 100*Nx+Ny representing multipolarity transition with + // Ny and Ny taking the value 1,2,3,4,5,6,7 referring to E0,E1,M1,E2,M2,E3,M3,.. + // For example a M1+E2 transition would be written 304. + // M1 is the primary transition (L) and E2 is the secondary (L') + + G4double mpRatio = ratio; + + G4int L0 = 0, Lp = 0; + if (mp > 99) { + L0 = mp/200; + Lp = (mp%100)/2; + } else { + L0 = mp/2; + Lp = 0; + mpRatio = 0.; + } + + fPolTrans.SetGammaTransitionData(twoJ1, twoJ2, L0, mpRatio, Lp); G4NuclearPolarization* np = nuc->GetNuclearPolarization(); - // initial state is non-polarized - create polarization + G4double cosTheta, phi; if(!np) { + // initial state is non-polarized - create polarization np = new G4NuclearPolarization(); nuc->SetNuclearPolarization(np); - fDirection = G4RandomDirection(); - fPolTrans.UpdatePolarizationToFinalState(fDirection.z(), fDirection.phi(), nuc); - return; - } - - // PhotonEvaporation dataset: - // The multipolarity number with 1,2,3,4,5,6,7 representing E1,M1,E2,M2,E3,M3 - // monopole transition and 100*Nx+Ny representing multipolarity transition with - // Ny and Ny taking the value 1,2,3,4,5,6,7 referring to E1,M1,E2,M2,E3,M3,.. - // For example a M1+E2 transition would be written 203. - // - // In M1+E2, M1 is the primary transition (L) and E2 is the secondary (L') - // So mp = 203 means L0 = 1, Lp = 2 while mp = 2 means L0 = 1, Lp = 0 - G4int L0 = 0, Lp = 0; - if(mp >= 100) { - L0 = mp / 200; - Lp = (mp - 200*L0)/2; + cosTheta = 2*G4UniformRand() - 1.0; + phi = CLHEP::twopi*G4UniformRand(); } else { - L0 = mp / 2; - //if(ratio != 0.0) { - // G4cout << "Warning: Got ratio = " << ratio - // << " when 0 was expected... Setting to zero." << G4endl; - ratio = 0.; + + // initial state is polarized - generate correlation + cosTheta = fPolTrans.GenerateGammaCosTheta(np->GetPolarization()); + phi = fPolTrans.GenerateGammaPhi(cosTheta, np->GetPolarization()); } - - fPolTrans.SetGammaTransitionData(twoJ1, twoJ2, L0, ratio, Lp); - - G4double cosTheta = fPolTrans.GenerateGammaCosTheta(np->GetPolarization()); - G4double phi = fPolTrans.GenerateGammaPhi(cosTheta, np->GetPolarization()); fPolTrans.UpdatePolarizationToFinalState(cosTheta, phi, nuc); G4double sinTheta = std::sqrt((1.-cosTheta)*(1.+cosTheta)); fDirection.set(sinTheta*std::cos(phi),sinTheta*std::sin(phi),cosTheta); + if(fVerbose > 1) { + G4cout << "G4GammaTransition::SampleDirection : " << fDirection << G4endl; + G4cout << "Polarisation : " << *np << G4endl; + } } diff --git a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PhotonEvaporation.cc b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PhotonEvaporation.cc index 503938edd9..1b679a96f2 100644 --- a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PhotonEvaporation.cc +++ b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PhotonEvaporation.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4PhotonEvaporation.cc 101865 2016-12-02 13:06:50Z gcosmo $ +// $Id: G4PhotonEvaporation.cc 102726 2017-02-20 13:15:29Z gcosmo $ // // ------------------------------------------------------------------- // @@ -59,7 +59,7 @@ G4float G4PhotonEvaporation::GRWidth[] = {0.0f}; G4PhotonEvaporation::G4PhotonEvaporation(G4GammaTransition* p) : fLevelManager(nullptr), fTransition(p), fVerbose(0), fPoints(0), - vShellNumber(-1), fIndex(0), fTimeLimit(DBL_MAX), fMaxLifeTime(DBL_MAX), + vShellNumber(-1), fIndex(0), fMaxLifeTime(DBL_MAX), fICM(false), fRDM(false), fSampleTime(true), isInitialised(false) { //G4cout << "### New G4PhotonEvaporation() " << this << G4endl; @@ -69,9 +69,6 @@ G4PhotonEvaporation::G4PhotonEvaporation(G4GammaTransition* p) if(!fTransition) { fTransition = new G4GammaTransition(); } - char* env = getenv("G4AddTimeLimitToPhotonEvaporation"); - if(env) { fTimeLimit = 1.e-16*CLHEP::second; } - theA = theZ = fCode = 0; fLevelEnergyMax = fStep = fExcEnergy = fProbability = 0.0; @@ -96,12 +93,16 @@ void G4PhotonEvaporation::Initialise() if(isInitialised) { return; } isInitialised = true; + if(fVerbose > 0) { + G4cout << "### G4PhotonEvaporation is initialized " << this << G4endl; + } G4DeexPrecoParameters* param = fNuclearLevelData->GetParameters(); LevelDensity = param->GetLevelDensity(); Tolerance = param->GetMinExcitation(); fMaxLifeTime = param->GetMaxLifeTime(); fTransition->SetPolarizationFlag(param->CorrelatedGamma()); + fTransition->SetVerbose(fVerbose); } G4Fragment* @@ -122,7 +123,9 @@ G4PhotonEvaporation::EmittedFragment(G4Fragment* nucleus) G4FragmentVector* G4PhotonEvaporation::BreakItUp(const G4Fragment& nucleus) { - //G4cout << "G4PhotonEvaporation::BreakItUp" << G4endl; + if(fVerbose > 0) { + G4cout << "G4PhotonEvaporation::BreakItUp" << G4endl; + } G4Fragment* aNucleus = new G4Fragment(nucleus); G4FragmentVector* products = new G4FragmentVector(); BreakUpChain(products, aNucleus); @@ -272,17 +275,15 @@ G4PhotonEvaporation::GenerateGamma(G4Fragment* nucleus) G4double efinal = 0.0; G4double ratio = 0.0; vShellNumber = -1; - size_t shell = 0; G4int JP1 = 0; G4int JP2 = 0; G4int multiP = 0; G4bool isGamma = true; - G4bool isLongLived = false; G4bool isDiscrete = false; - G4bool icm = fICM; const G4NucLevel* level = nullptr; size_t ntrans = 0; + if(fLevelManager && eexc <= fLevelEnergyMax + Tolerance) { fIndex = fLevelManager->NearestLevelIndex(eexc, fIndex); if(0 < fIndex) { @@ -290,13 +291,13 @@ G4PhotonEvaporation::GenerateGamma(G4Fragment* nucleus) level = fLevelManager->GetLevel(fIndex); if(level) { ntrans = level->NumberOfTransitions(); - JP1 = fLevelManager->SpinParity(fIndex); + JP1 = fLevelManager->SpinTwo(fIndex); if(ntrans > 0) { isDiscrete = true; } - else if(fLevelManager->IsFloatingLevel(fIndex)) { + else if(fLevelManager->FloatingLevel(fIndex) > 0) { --fIndex; level = fLevelManager->GetLevel(fIndex); ntrans = level->NumberOfTransitions(); - JP1 = fLevelManager->SpinParity(fIndex); + JP1 = fLevelManager->SpinTwo(fIndex); if(ntrans > 0) { isDiscrete = true; } } } @@ -343,6 +344,7 @@ G4PhotonEvaporation::GenerateGamma(G4Fragment* nucleus) --fIndex; efinal = (G4double)fLevelManager->LevelEnergy(fIndex); } + nucleus->SetFloatingLevelNumber(fLevelManager->FloatingLevel(fIndex)); } if(fVerbose > 1) { G4cout << "Continues emission efinal(MeV)= " << efinal << G4endl; @@ -358,34 +360,27 @@ G4PhotonEvaporation::GenerateGamma(G4Fragment* nucleus) G4double ltime = 0.0; if(fSampleTime) { - if(fICM) { ltime = (G4double)fLevelManager->LifeTime(fIndex); } - else { ltime = (G4double)fLevelManager->LifeTimeGamma(fIndex); } + ltime = (G4double)fLevelManager->LifeTime(fIndex); + if(!fRDM && ltime >= fMaxLifeTime) { return result; } } - if(ltime >= fMaxLifeTime) { return result; } - if(ltime > fTimeLimit) { - icm = true; - isLongLived = true; - } size_t idx = 0; + if(1 < ntrans) { + idx = level->SampleGammaTransition(G4UniformRand()); + } if(fVerbose > 1) { G4cout << "Ntrans= " << ntrans << " idx= " << idx - << " icm= " << icm << G4endl; + << " ICM= " << fICM << G4endl; } - if(1 < ntrans) { + G4double prob = (G4double)level->GammaProbability(idx); + // prob = 0 means that there is only internal conversion + // if((fICM && prob < 1.0) || prob == 0.0) { + if(prob < 1.0) { G4double rndm = G4UniformRand(); - if(icm) { idx = level->SampleGammaETransition(rndm); } - else { idx = level->SampleGammaTransition(rndm); } - //G4cout << "Sampled idx= " << idx << " rndm= " << rndm << G4endl; - } - if(icm) { - G4double rndm = G4UniformRand(); - G4double prob = level->GammaProbability(idx); if(rndm > prob) { - rndm = (rndm - prob)/(1.0 - prob); - shell = level->SampleShell(idx, rndm); - vShellNumber = shell; isGamma = false; + rndm = (rndm - prob)/(1.0 - prob); + vShellNumber = level->SampleShell(idx, rndm); } } // it is discrete transition with possible gamma correlation @@ -393,37 +388,35 @@ G4PhotonEvaporation::GenerateGamma(G4Fragment* nucleus) ratio = level->MixingRatio(idx); multiP = level->TransitionType(idx); fIndex = level->FinalExcitationIndex(idx); - JP2 = fLevelManager->SpinParity(fIndex); + JP2 = fLevelManager->SpinTwo(fIndex); // final energy and time efinal = (G4double)fLevelManager->LevelEnergy(fIndex); if(fSampleTime && ltime > 0.0) { time -= ltime*G4Log(G4UniformRand()); } + nucleus->SetFloatingLevelNumber(fLevelManager->FloatingLevel(fIndex)); } // protection for floating levels if(std::abs(efinal - eexc) <= Tolerance) { return result; } result = fTransition->SampleTransition(nucleus, efinal, ratio, JP1, - JP2, multiP, shell, isDiscrete, - isGamma, isLongLived); + JP2, multiP, vShellNumber, + isDiscrete, isGamma); if(result) { result->SetCreationTime(time); } nucleus->SetCreationTime(time); if(fVerbose > 1) { G4cout << "Final level E= " << efinal << " time= " << time << " idxFinal= " << fIndex << " isDiscrete: " << isDiscrete - << " isGamma: " << isGamma << " isLongLived: " << isLongLived - << " multiP= " << multiP << " shell= " << shell << G4endl; + << " isGamma: " << isGamma << " multiP= " << multiP + << " shell= " << vShellNumber << G4endl; } return result; } -void G4PhotonEvaporation::SetMaxHalfLife(G4double val) -{ - static const G4double tfact = G4Pow::GetInstance()->logZ(2); - fMaxLifeTime = val/tfact; -} +void G4PhotonEvaporation::SetMaxHalfLife(G4double) +{} void G4PhotonEvaporation::SetGammaTransition(G4GammaTransition* p) { diff --git a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PolarizationTransition.cc b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PolarizationTransition.cc index a203b21a18..fa49653963 100644 --- a/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PolarizationTransition.cc +++ b/source/processes/hadronic/models/de_excitation/photon_evaporation/src/G4PolarizationTransition.cc @@ -42,11 +42,12 @@ #include "G4Fragment.hh" #include "G4NuclearPolarization.hh" #include "G4SystemOfUnits.hh" +#include "G4Exp.hh" using namespace std; G4PolarizationTransition::G4PolarizationTransition() - : fTwoJ1(0), fTwoJ2(0), fLbar(1), fL(0), fDelta(0), kEps(1.e-15), + : fVerbose(0), fTwoJ1(0), fTwoJ2(0), fLbar(1), fL(0), fDelta(0), kEps(1.e-15), kPolyPDF(0, nullptr, -1, 1) {} @@ -56,7 +57,7 @@ G4PolarizationTransition::~G4PolarizationTransition() G4double G4PolarizationTransition::FCoefficient(G4int K, G4int LL, G4int Lprime, G4int twoJ2, G4int twoJ1) const { - G4double fCoeff = G4Clebsch::Wigner3J(LL, Lprime, K, 1, -1, 0); + G4double fCoeff = G4Clebsch::Wigner3J(2*LL, 2, 2*Lprime, -2, 2*K, 0); if(fCoeff == 0) return 0; fCoeff *= G4Clebsch::Wigner6J(2*LL, 2*Lprime, 2*K, twoJ1, twoJ1, twoJ2); if(fCoeff == 0) return 0; @@ -68,7 +69,7 @@ G4double G4PolarizationTransition::F3Coefficient(G4int K, G4int K2, G4int K1, G4int LL, G4int Lprime, G4int twoJ2, G4int twoJ1) const { - G4double fCoeff = G4Clebsch::Wigner3J(LL, Lprime, K, 1, -1, 0); + G4double fCoeff = G4Clebsch::Wigner3J(2*LL, 2, 2*Lprime, -2, 2*K, 0); if(fCoeff == 0) return 0; fCoeff *= G4Clebsch::Wigner9J(twoJ2, 2*LL, twoJ1, twoJ2, 2*Lprime, twoJ1, 2*K2, 2*K, 2*K1); @@ -81,30 +82,34 @@ void G4PolarizationTransition::SetGammaTransitionData(G4int twoJ1, G4int twoJ2, G4int Lbar, G4double delta, G4int Lprime) { - fTwoJ1 = twoJ1; - fTwoJ2 = twoJ2; + fTwoJ1 = std::abs(twoJ1); // add abs to remove negative J + fTwoJ2 = std::abs(twoJ2); fLbar = Lbar; fDelta = delta; fL = Lprime; + if(fVerbose > 1) { + G4cout << "SET G4PolarizationTransition: J1= " << fTwoJ1 << " J2= " << fTwoJ2 + << " Lbar= " << fLbar << " delta= " << fDelta << " Lp= " << fL << G4endl; + } } G4double G4PolarizationTransition::GammaTransFCoefficient(G4int K) const { - double transFCoeff = FCoefficient(K, fLbar, fLbar, fTwoJ2, fTwoJ1); - if(fDelta == 0) return transFCoeff; - transFCoeff += 2.*fDelta*FCoefficient(K, fLbar, fL, fTwoJ2, fTwoJ1); - transFCoeff += fDelta*fDelta*FCoefficient(K, fL, fL, fTwoJ2, fTwoJ1); - return transFCoeff; + double transFCoeff = FCoefficient(K, fLbar, fLbar, fTwoJ2, fTwoJ1); + if(fDelta == 0) return transFCoeff; + transFCoeff += 2.*fDelta*FCoefficient(K, fLbar, fL, fTwoJ2, fTwoJ1); + transFCoeff += fDelta*fDelta*FCoefficient(K, fL, fL, fTwoJ2, fTwoJ1); + return transFCoeff; } G4double G4PolarizationTransition::GammaTransF3Coefficient(G4int K, G4int K2, G4int K1) const { - double transF3Coeff = F3Coefficient(K, K2, K1, fLbar, fLbar, fTwoJ2, fTwoJ1); - if(fDelta == 0) return transF3Coeff; - transF3Coeff += 2.*fDelta*F3Coefficient(K, K2, K1, fLbar, fL, fTwoJ2, fTwoJ1); - transF3Coeff += fDelta*fDelta*F3Coefficient(K, K2, K1, fL, fL, fTwoJ2, fTwoJ1); - return transF3Coeff; + double transF3Coeff = F3Coefficient(K, K2, K1, fLbar, fLbar, fTwoJ2, fTwoJ1); + if(fDelta == 0) return transF3Coeff; + transF3Coeff += 2.*fDelta*F3Coefficient(K, K2, K1, fLbar, fL, fTwoJ2, fTwoJ1); + transF3Coeff += fDelta*fDelta*F3Coefficient(K, K2, K1, fL, fL, fTwoJ2, fTwoJ1); + return transF3Coeff; } G4double G4PolarizationTransition::GenerateGammaCosTheta(const POLAR& pol) @@ -117,8 +122,10 @@ G4double G4PolarizationTransition::GenerateGammaCosTheta(const POLAR& pol) // terms to generate cos theta distribution vector polyPDFCoeffs(length, 0.0); for(size_t k = 0; k < length; k += 2) { - if(std::abs(((pol)[k])[0].imag()) > kEps) { - G4cout << "Warning: fPolarization[" << k << "][0] has imag component: = " + if(std::abs(((pol)[k])[0].imag()) > kEps && fVerbose > 0) { + G4cout << "G4PolarizationTransition::GenerateGammaCosTheta WARNING: \n" + << " fPolarization[" + << k << "][0] has imag component: = " << ((pol)[k])[0].real() << " + " << ((pol)[k])[0].imag() << "*i" << G4endl; } @@ -147,38 +154,34 @@ G4double G4PolarizationTransition::GenerateGammaPhi(G4double cosTheta, // Otherwise, P(phi) can be written as a sum of cos(kappa phi + phi_kappa). // Calculate the amplitude and phase for each term - vector amp(length, 0.0); - vector phase(length, 0.0); + std::vector amp(length, 0.0); + std::vector phase(length, 0.0); for(size_t kappa = 0; kappa < length; ++kappa) { - G4complex cAmpSum = 0.; + G4complex cAmpSum(0.,0.); for(size_t k = kappa + (kappa % 2); k < length; k += 2) { if(kappa >= length || std::abs(((pol)[k])[kappa]) < kEps) { continue; } G4double tmpAmp = GammaTransFCoefficient(k); if(tmpAmp == 0) { continue; } tmpAmp *= sqrt(2*k+1) * fgLegendrePolys.EvalAssocLegendrePoly(k, kappa, cosTheta); - if(kappa > 0) tmpAmp *= 2.*exp(0.5*(LnFactorial(k-kappa) - LnFactorial(k+kappa))); + if(kappa > 0) tmpAmp *= 2.*G4Exp(0.5*(LnFactorial(k-kappa) - LnFactorial(k+kappa))); cAmpSum += ((pol)[k])[kappa]*tmpAmp; } - if(kappa == 0 && std::abs(cAmpSum.imag()) > kEps) { - G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING " - << " got complex amp for kappa = 0! A = " << cAmpSum.real() + if(kappa == 0 && std::abs(cAmpSum.imag()) > kEps && fVerbose > 0) { + G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING: \n" + << " Got complex amp for kappa = 0! A = " << cAmpSum.real() << " + " << cAmpSum.imag() << "*i" << G4endl; } amp[kappa] = std::abs(cAmpSum); - if(amp[kappa] < 0) { - G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING " - << "got negative abs for kappa = " << kappa << G4endl; - } phase[kappa] = arg(cAmpSum); } // Normalize PDF and calc max (note: it's not the true max, but the max // assuming that all of the phases line up at a max) - G4double pdfMax = 0; + G4double pdfMax = 0.; for(size_t kappa = 0; kappa < amp.size(); ++kappa) { pdfMax += amp[kappa]; } - if(pdfMax < kEps) { + if(pdfMax < kEps && fVerbose > 0) { G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING " - << "got pdfMax = 0 for "; + << "got pdfMax = 0 for \n"; DumpTransitionData(pol); G4cout << "I suspect a non-allowed transition! Returning isotropic phi..." << G4endl; @@ -194,15 +197,16 @@ G4double G4PolarizationTransition::GenerateGammaPhi(G4double cosTheta, pdfSum += amp[kappa]*cos(phi*kappa + phase[kappa]); } if(prob < pdfSum) return phi; - if(pdfSum > pdfMax) { - G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING " + if(pdfSum > pdfMax && fVerbose > 0) { + G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING: \n" << "got pdfSum (" << pdfSum << ") > pdfMax (" << pdfMax << ") at phi = " << phi << G4endl; } } - - G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING " - << "no phi generated in 1000 throws! Returning isotropic phi..." << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolarizationTransition::GenerateGammaPhi: WARNING: \n" + << "no phi generated in 1000 throws! Returning isotropic phi..." << G4endl; + } return G4UniformRand()*CLHEP::twopi; } @@ -210,23 +214,27 @@ void G4PolarizationTransition::UpdatePolarizationToFinalState(G4double cosTheta, G4double phi, G4Fragment* frag) { - if(fTwoJ2 == 0) { - frag->SetNuclearPolarization(nullptr); + G4NuclearPolarization* nucpol = frag->GetNuclearPolarization(); + if(nucpol == nullptr) { + if(fVerbose > 0) { + G4cout << "G4PolarizationTransition::UpdatePolarizationToFinalState ERROR: " + << "cannot update NULL nuclear polarization" << G4endl; + } return; } - POLAR pol; - G4NuclearPolarization* nucpol = frag->GetNuclearPolarization(); - if(nucpol) { pol = nucpol->GetPolarization(); } - size_t length = pol.size(); + if(fTwoJ2 == 0) { + nucpol->Unpolarize(); + return; + } + const POLAR& pol = nucpol->GetPolarization(); size_t newlength = fTwoJ2+1; - POLAR newPol; - newPol.resize(newlength); + POLAR newPol(newlength); for(size_t k2=0; k2SetNuclearPolarization(nullptr); + if(0.0 == newPol[0][0] && fVerbose > 1) { + G4cout << "G4PolarizationTransition::UpdatePolarizationToFinalState WARNING:" + << " P[0][0] is zero!" << G4endl; + G4cout << "Old pol is: " << *nucpol << G4endl; + DumpTransitionData(newPol); + G4cout << "Unpolarizing..." << G4endl; + nucpol->Unpolarize(); return; } - if(std::abs((newPol[0])[0].imag()) > kEps) { - G4cout << "G4PolarizationTransition::UpdatePolarizationToFinalState WWARNING:" + if(std::abs((newPol[0])[0].imag()) > kEps && fVerbose > 1) { + G4cout << "G4PolarizationTransition::UpdatePolarizationToFinalState WARNING: \n" << " P[0][0] has a non-zero imaginary part! Unpolarizing..." << G4endl; - frag->SetNuclearPolarization(nullptr); + nucpol->Unpolarize(); return; } @@ -295,24 +308,20 @@ void G4PolarizationTransition::UpdatePolarizationToFinalState(G4double cosTheta, while((newPol[k2]).size() != size_t (lastNonZero+1)) (newPol[k2]).pop_back(); if((newPol[k2]).size() > 0) lastNonEmptyK2 = k2; } + + // Remove zero-value entries while(newPol.size() != lastNonEmptyK2+1) { newPol.pop_back(); } (newPol[0])[0] = 1.0; - if(!nucpol) { - nucpol = new G4NuclearPolarization(); - nucpol->SetPolarization(newPol); - frag->SetNuclearPolarization(nucpol); - } else { - nucpol->SetPolarization(newPol); - } + nucpol->SetPolarization(newPol); } void G4PolarizationTransition::DumpTransitionData(const POLAR& pol) const { - G4cout << "G4PolarizationTransition transition: "; + G4cout << "G4PolarizationTransition: "; (fTwoJ1 % 2) ? G4cout << fTwoJ1 << "/2" : G4cout << fTwoJ1/2; G4cout << " --(" << fLbar; - if(fDelta > 0) G4cout << " + " << fDelta << "*" << fL; + if(fDelta != 0) G4cout << " + " << fDelta << "*" << fL; G4cout << ")--> "; (fTwoJ2 % 2) ? G4cout << fTwoJ2 << "/2" : G4cout << fTwoJ2/2; G4cout << ", P = [ { "; diff --git a/source/processes/hadronic/models/im_r_matrix/History b/source/processes/hadronic/models/im_r_matrix/History index c7e61d2df3..22c3d00c2a 100644 --- a/source/processes/hadronic/models/im_r_matrix/History +++ b/source/processes/hadronic/models/im_r_matrix/History @@ -14,6 +14,9 @@ code and to keep track of all tags. * Please list in reverse chronological order (last date on top) --------------------------------------------------------------- +21-December 2016 Gunter Folger had-im_r-V10-02-00 +- G4VScatteringCollision: Fix memory leak in MT, bug report 1905 + 13-November 2015 Gunter Folger had-im_r-V10-01-05 - Revert back to G4float, add 'f' for initialisation. diff --git a/source/processes/hadronic/models/im_r_matrix/src/G4VScatteringCollision.cc b/source/processes/hadronic/models/im_r_matrix/src/G4VScatteringCollision.cc index 59247ff659..360b845efc 100644 --- a/source/processes/hadronic/models/im_r_matrix/src/G4VScatteringCollision.cc +++ b/source/processes/hadronic/models/im_r_matrix/src/G4VScatteringCollision.cc @@ -180,5 +180,6 @@ double G4VScatteringCollision::SampleResonanceMass(const double poleMass, void G4VScatteringCollision::establish_G4MT_TLS_G4VScatteringCollision() { establish_G4MT_TLS_G4VCollision(); + if ( theAngularDistribution ) delete theAngularDistribution; theAngularDistribution = new G4AngularDistribution(true); } diff --git a/source/processes/hadronic/models/radioactive_decay/History b/source/processes/hadronic/models/radioactive_decay/History index bd0644e520..35b5d67f16 100644 --- a/source/processes/hadronic/models/radioactive_decay/History +++ b/source/processes/hadronic/models/radioactive_decay/History @@ -14,6 +14,53 @@ track of all tags. * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +21 February 2017 V.Ivanchenko radioactive_decay-V10-02-18 +------------------------------------------------------------ +- G4ITDecay: make daughterNucleus a pointer and store previous + state of the G4Fragment there +- G4RadioactiveDecay - removed G4ThreadLocal G4Fragment + +20 February 2017 A. Ribon radioactive_decay-V10-02-17 +------------------------------------------------------------ +- G4RadioactiveDecay: switch off temporarily the correlated gamma emission, + to limit the non-reproducibility violations. + +16 February 2017 V.Ivanchenko +------------------------------------------------------------ +- G4ITDecay: fixed old mass variable + +14 February 2017 Dennis Wright +------------------------------------------------------------ +- G4ITDecay: Vladimir's changes from trunk which fix warnings: + added check on Z, A, excitation energy in order to be + sure that correlated gamma may be sampled; reset 4-momentum at rest + when previous nucleaus is reused; use floating level index + when a new ion is created + +- G4RadioactiveDecay: use Laurent's level tolerence level of 10 eV + +10 February 2017 Dennis Wright +------------------------------------------------------------ +- G4RadioactiveDecay: add static G4ThreadLocal G4Fragment polarizedNucleus + to serve as cache for polarized nucleus + +- G4RadioactiveDecay::BuildPhysicsTable: added lines + G4DeexPrecoParameters* param = G4NuclearLevelData::GetInstance()->GetParameters(); + param->SetUseFilesNEW(true); + param->SetCorrelatedGamma(true); + + in order to enable correlated gamma emission + +- G4ITDecay: use G4RadioactiveDecay::polarizedNucleus as a cache to enable + chain decay with polarization + +20 December 2016 Dennis Wright radioactive_decay-V10-02-16 +------------------------------------------------------------ +- G4ITDecay::G4ITDecay(): make G4PhotonEvaporation a class member + and intialize only once to avoid memory churn + +- G4ITDecay::DecayIt(): make G4Fragment a data member to avoid its + deletion at end of this method and keep polarization information 7 November 2016 Dennis Wright radioactive_decay-V10-02-15 ----------------------------------------------------------- diff --git a/source/processes/hadronic/models/radioactive_decay/include/G4ITDecay.hh b/source/processes/hadronic/models/radioactive_decay/include/G4ITDecay.hh index 3a89da2883..ff7505dac6 100644 --- a/source/processes/hadronic/models/radioactive_decay/include/G4ITDecay.hh +++ b/source/processes/hadronic/models/radioactive_decay/include/G4ITDecay.hh @@ -39,7 +39,9 @@ #define G4ITDecay_h 1 #include "G4NuclearDecay.hh" +#include "G4Fragment.hh" +class G4PhotonEvaporation; class G4ITDecay : public G4NuclearDecay { @@ -61,6 +63,9 @@ class G4ITDecay : public G4NuclearDecay G4int parentZ; G4int parentA; G4bool applyARM; + + G4Fragment* daughterNucleus; + G4PhotonEvaporation* photoEvap; }; #endif diff --git a/source/processes/hadronic/models/radioactive_decay/include/G4RadioactiveDecay.hh b/source/processes/hadronic/models/radioactive_decay/include/G4RadioactiveDecay.hh index 626b376996..0683670592 100644 --- a/source/processes/hadronic/models/radioactive_decay/include/G4RadioactiveDecay.hh +++ b/source/processes/hadronic/models/radioactive_decay/include/G4RadioactiveDecay.hh @@ -70,6 +70,7 @@ #include "G4ThreeVector.hh" #include "G4Threading.hh" +class G4Fragment; class G4RadioactiveDecaymessenger; typedef std::vector G4RadioactiveDecayRateTable; @@ -236,6 +237,8 @@ class G4RadioactiveDecay : public G4VRestDiscreteProcess G4VParticleChange* DecayIt(const G4Track& theTrack, const G4Step& theStep); + // static G4ThreadLocal G4Fragment* polarizedNucleus; + protected: G4DecayProducts* DoDecay(const G4ParticleDefinition& theParticleDef); diff --git a/source/processes/hadronic/models/radioactive_decay/src/G4ITDecay.cc b/source/processes/hadronic/models/radioactive_decay/src/G4ITDecay.cc index 1461808dbf..5335102cbf 100644 --- a/source/processes/hadronic/models/radioactive_decay/src/G4ITDecay.cc +++ b/source/processes/hadronic/models/radioactive_decay/src/G4ITDecay.cc @@ -38,6 +38,7 @@ #include "G4DynamicParticle.hh" #include "G4DecayProducts.hh" #include "G4PhotonEvaporation.hh" +#include "G4RadioactiveDecay.hh" #include "G4VAtomDeexcitation.hh" #include "G4AtomicShells.hh" #include "G4Electron.hh" @@ -51,7 +52,7 @@ G4ITDecay::G4ITDecay(const G4ParticleDefinition* theParentNucleus, const G4double& branch, const G4double& Qvalue, const G4double& excitationE) : G4NuclearDecay("IT decay", IT, excitationE, noFloat), transitionQ(Qvalue), - applyARM(true) + applyARM(true), daughterNucleus(nullptr), photoEvap(0) { SetParent(theParentNucleus); // Store name of parent nucleus, delete G4MT_parent SetBR(branch); @@ -63,11 +64,18 @@ G4ITDecay::G4ITDecay(const G4ParticleDefinition* theParentNucleus, G4IonTable* theIonTable = (G4IonTable*)(G4ParticleTable::GetParticleTable()->GetIonTable()); SetDaughter(0, theIonTable->GetIon(parentZ, parentA, excitationE, noFloat) ); + + // Let G4PhotonEvaporation do the decay + photoEvap = new G4PhotonEvaporation; + photoEvap->RDMForced(true); + photoEvap->SetICM(true); } G4ITDecay::~G4ITDecay() -{} +{ + delete photoEvap; +} G4DecayProducts* G4ITDecay::DecayIt(G4double) @@ -83,25 +91,59 @@ G4DecayProducts* G4ITDecay::DecayIt(G4double) G4DynamicParticle parentParticle(G4MT_parent, atRest); G4DecayProducts* products = new G4DecayProducts(parentParticle); - // Let G4PhotonEvaporation do the decay - G4PhotonEvaporation* photoEvap = new G4PhotonEvaporation; - photoEvap->RDMForced(true); - photoEvap->SetICM(true); + // Let G4PhotonEvaporation do the decay + G4Fragment parentNucleus(parentA, parentZ, atRest); + // G4cout << " START of G4ITDecay::DecayIt: " << G4endl; - G4Fragment* nucleus = new G4Fragment(parentA, parentZ, atRest); - G4Fragment* eOrGamma = photoEvap->EmittedFragment(nucleus); + // Check if the old nuclear polarization can be used + G4NuclearPolarization* nucPol(nullptr); + G4int oldZ(0), oldA(0); + G4double oldMass(0.0); + if(daughterNucleus) { + nucPol = daughterNucleus->GetNuclearPolarization(); + if(nucPol) { + oldZ = daughterNucleus->GetZ_asInt(); + oldA = daughterNucleus->GetA_asInt(); + oldMass = daughterNucleus->GetGroundStateMass() + + daughterNucleus->GetExcitationEnergy(); + } + } + static const G4double mlimit = 10*CLHEP::eV; + if (nucPol && oldZ == parentZ && oldA == parentA + && std::abs(atRest.e() - oldMass) < mlimit) { + // Continue with existing chain + parentNucleus = *daughterNucleus; + parentNucleus.SetMomentum(atRest); + } - // Daughter nuclide is returned in nucleus pointer - G4double finalDaughterExcitation = nucleus->GetExcitationEnergy(); - if (finalDaughterExcitation < 1*keV) finalDaughterExcitation = 0.0; - G4LorentzVector daughterMomentum = nucleus->GetMomentum(); + // G4cout << " BEFORE TRANSITION fragment = " << G4endl; + // G4cout << parentNucleus << G4endl; + + G4Fragment* eOrGamma = photoEvap->EmittedFragment(&parentNucleus); + + // G4cout << " AFTER TRANSITION " << G4endl; + // G4cout << parentNucleus << G4endl; + + // Check if IT chain has ended with excited isomere + // Take care for deletion of cached G4Fragment + if (parentNucleus.GetExcitationEnergy() > mlimit) { + // G4cout << " IT chain is continue " << G4endl; + delete daughterNucleus; + daughterNucleus = new G4Fragment(parentNucleus); + } else if(daughterNucleus) { + // G4cout << " End of IT chain " << G4endl; + delete daughterNucleus; + daughterNucleus = nullptr; + } + + // Modified nuclide is returned as dynDaughter G4IonTable* theIonTable = (G4IonTable*)(G4ParticleTable::GetParticleTable()->GetIonTable() ); G4ParticleDefinition* daughterIon = - theIonTable->GetIon(parentZ, parentA, finalDaughterExcitation); + theIonTable->GetIon(parentZ, parentA, parentNucleus.GetExcitationEnergy(), + G4Ions::FloatLevelBase(parentNucleus.GetFloatingLevelNumber())); G4DynamicParticle* dynDaughter = new G4DynamicParticle(daughterIon, - daughterMomentum); - delete nucleus; + parentNucleus.GetMomentum()); if (eOrGamma) { G4DynamicParticle* eOrGammaDyn = @@ -111,7 +153,7 @@ G4DecayProducts* G4ITDecay::DecayIt(G4double) products->PushProducts(eOrGammaDyn); delete eOrGamma; - // Now do atomic relaxation + // Now do atomic relaxation if e- is emitted if (applyARM) { G4int shellIndex = photoEvap->GetVacantShellNumber(); if (shellIndex > -1) { @@ -126,7 +168,6 @@ G4DecayProducts* G4ITDecay::DecayIt(G4double) // VI, SI // Allows fixing of Bugzilla 1727 - //const G4double deexLimit = 0.1*keV; G4double deexLimit = 0.1*keV; if (G4EmParameters::Instance()->DeexcitationIgnoreCut()) deexLimit =0.; // @@ -181,8 +222,8 @@ G4DecayProducts* G4ITDecay::DecayIt(G4double) G4double eCons = G4MT_parent->GetPDGMass() - dynDaughter->GetMass() - KEsum; G4cout << " IT check: Ediff (keV) = " << eCons/keV << G4endl; */ - delete photoEvap; - +// delete photoEvap; + // G4cout << " END G4ITDecay::DecayIt " << G4endl; return products; } diff --git a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc index 8c2ae0ce23..6c29b45a98 100644 --- a/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc +++ b/source/processes/hadronic/models/radioactive_decay/src/G4RadioactiveDecay.cc @@ -117,12 +117,14 @@ #include "G4VDecayChannel.hh" #include "G4NuclearDecay.hh" #include "G4RadioactiveDecayMode.hh" +#include "G4Fragment.hh" #include "G4Ions.hh" #include "G4IonTable.hh" #include "G4BetaDecayType.hh" #include "Randomize.hh" #include "G4LogicalVolumeStore.hh" #include "G4NuclearLevelData.hh" +#include "G4DeexPrecoParameters.hh" #include "G4LevelManager.hh" #include "G4ThreeVector.hh" #include "G4Electron.hh" @@ -146,8 +148,10 @@ using namespace CLHEP; -const G4double G4RadioactiveDecay::levelTolerance = 0.1*keV; +// const G4double G4RadioactiveDecay::levelTolerance = 0.1*keV; +const G4double G4RadioactiveDecay::levelTolerance = 10.0*eV; const G4ThreeVector G4RadioactiveDecay::origin(0.,0.,0.); +//G4ThreadLocal G4Fragment G4RadioactiveDecay::polarizedNucleus=nullptr; #ifdef G4MULTITHREADED #include "G4AutoLock.hh" @@ -413,7 +417,7 @@ G4RadioactiveDecay::ConvolveSourceTimeProfile(const G4double t, const G4double t } long double lt = t ; long double ltau = tau; - + // G4cout << " Convolve: tau = " << tau << G4endl; if (nbin > 0) { for (G4int i = 0; i < nbin; i++) { convolvedTime += (long double)SProfile[i] * @@ -734,6 +738,10 @@ void G4RadioactiveDecay::BuildPhysicsTable(const G4ParticleDefinition&) theManager->SetAtomDeexcitation(p); */ } + + G4DeexPrecoParameters* param = G4NuclearLevelData::GetInstance()->GetParameters(); + param->SetUseFilesNEW(true); + //param->SetCorrelatedGamma(true); //AR-20Feb2017: Temporary, to fix non-reproducibility problems } } @@ -1235,6 +1243,9 @@ G4RadioactiveDecay::AddDecayRateTable(const G4ParticleDefinition& theParentNucle << ") are being calculated, generation = " << nGeneration << G4endl; } +// G4cout << " Taus = " << G4endl; +// for (G4int ii = 0; ii < TP.size(); ii++) G4cout << TP[ii] << ", " ; +// G4cout << G4endl; aParentNucleus = theIonTable->GetIon(ZP,AP,EP); parentDecayTable = GetDecayTable(aParentNucleus); @@ -1785,9 +1796,10 @@ G4RadioactiveDecay::DecayIt(const G4Track& theTrack, const G4Step&) // it will be used to calculate the statistical weight of the // decay products of this isotope - // G4cout <<"PA= "<< PA << " PZ= " << PZ << " PE= "<< PE < fCoefficients; - G4bool fChanged; + G4bool fChanged; G4double fTolerance; + G4int fVerbose; }; #endif diff --git a/source/processes/hadronic/models/util/src/G4Fragment.cc b/source/processes/hadronic/models/util/src/G4Fragment.cc index b281921600..1af2a056d7 100644 --- a/source/processes/hadronic/models/util/src/G4Fragment.cc +++ b/source/processes/hadronic/models/util/src/G4Fragment.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4Fragment.cc 97799 2016-06-13 12:13:11Z gcosmo $ +// $Id: G4Fragment.cc 102724 2017-02-20 13:00:39Z gcosmo $ // //--------------------------------------------------------------------- // @@ -43,9 +43,8 @@ #include "G4ios.hh" #include -//#define debug_G4Fragment - G4ThreadLocal G4Allocator *pFragmentAllocator = nullptr; +const G4double G4Fragment::minFragExcitation = 10.*CLHEP::eV; // Default constructor G4Fragment::G4Fragment() : @@ -61,6 +60,7 @@ G4Fragment::G4Fragment() : numberOfHoles(0), numberOfChargedHoles(0), numberOfShellElectrons(0), + xLevel(0), theParticleDefinition(nullptr), spin(0.0), theCreationTime(0.0) @@ -80,6 +80,7 @@ G4Fragment::G4Fragment(const G4Fragment &right) : numberOfHoles(right.numberOfHoles), numberOfChargedHoles(right.numberOfChargedHoles), numberOfShellElectrons(right.numberOfShellElectrons), + xLevel(right.xLevel), theParticleDefinition(right.theParticleDefinition), spin(right.spin), theCreationTime(right.theCreationTime) @@ -92,6 +93,7 @@ G4Fragment::G4Fragment(const G4Fragment &right) : G4Fragment::~G4Fragment() { delete thePolarization; + thePolarization = nullptr; } G4Fragment::G4Fragment(G4int A, G4int Z, const G4LorentzVector& aMomentum) : @@ -107,6 +109,7 @@ G4Fragment::G4Fragment(G4int A, G4int Z, const G4LorentzVector& aMomentum) : numberOfHoles(0), numberOfChargedHoles(0), numberOfShellElectrons(0), + xLevel(0), theParticleDefinition(nullptr), spin(0.0), theCreationTime(0.0) @@ -131,6 +134,7 @@ G4Fragment::G4Fragment(const G4LorentzVector& aMomentum, numberOfHoles(0), numberOfChargedHoles(0), numberOfShellElectrons(0), + xLevel(0), theParticleDefinition(aParticleDefinition), spin(0.0), theCreationTime(0.0) @@ -163,6 +167,7 @@ G4Fragment & G4Fragment::operator=(const G4Fragment &right) numberOfHoles = right.numberOfHoles; numberOfChargedHoles = right.numberOfChargedHoles; numberOfShellElectrons = right.numberOfShellElectrons; + xLevel = right.xLevel; theParticleDefinition = right.theParticleDefinition; spin = right.spin; theCreationTime = right.theCreationTime; @@ -214,6 +219,9 @@ std::ostream& operator << (std::ostream &out, const G4Fragment *theFragment) << ") MeV E = " << theFragment->GetMomentum().t()/CLHEP::MeV << " MeV" << G4endl; + + out << " #spin= " << theFragment->GetSpin() + << " #floatLevelNo= " << theFragment->GetFloatingLevelNumber(); if(theFragment->GetNuclearPolarization()) { out << theFragment->GetNuclearPolarization(); @@ -224,10 +232,9 @@ std::ostream& operator << (std::ostream &out, const G4Fragment *theFragment) << "#Particles= " << theFragment->GetNumberOfParticles() << ", #Charged= " << theFragment->GetNumberOfCharged() << ", #Holes= " << theFragment->GetNumberOfHoles() - << ", #ChargedHoles= " << theFragment->GetNumberOfChargedHoles() - << ", #spin= " << theFragment->GetSpin() - << G4endl; + << ", #ChargedHoles= " << theFragment->GetNumberOfChargedHoles(); } + out << G4endl; out.setf(old_floatfield,std::ios::floatfield); out.precision(floatPrec); @@ -242,22 +249,10 @@ std::ostream& operator << (std::ostream &out, const G4Fragment &theFragment) void G4Fragment::ExcitationEnergyWarning() { - const G4double exclimit = -10*CLHEP::eV; - if (theExcitationEnergy < exclimit) { - #ifdef G4VERBOSE - G4cout << "G4Fragment::CalculateExcitationEnergy(): WARNING "< using namespace std; G4PolynomialPDF::G4PolynomialPDF(size_t n, const G4double* coeffs, G4double x1, G4double x2) : -fX1(x1), fX2(x2), fChanged(true), fTolerance(1.e-8) + fX1(x1), fX2(x2), fChanged(true), fTolerance(1.e-8), fVerbose(0) { - if(coeffs != NULL) SetCoefficients(n, coeffs); + if(coeffs != nullptr) SetCoefficients(n, coeffs); else if(n > 0) SetNCoefficients(n); } +G4PolynomialPDF::~G4PolynomialPDF() +{} + void G4PolynomialPDF::SetCoefficient(size_t i, G4double value) { - while(i >= fCoefficients.size()) fCoefficients.push_back(0); /* Loop checking, 30-Oct-2015, G.Folger */ + while(i >= fCoefficients.size()) fCoefficients.push_back(0); + /* Loop checking, 30-Oct-2015, G.Folger */ fCoefficients[i] = value; fChanged = true; } @@ -69,8 +72,10 @@ void G4PolynomialPDF::SetCoefficients(size_t nCoeffs, void G4PolynomialPDF::SetDomain(G4double x1, G4double x2) { if(x2 <= x1) { - G4cout << "G4PolynomialPDF::SetDomain(): Invalide domain! " - << "(x1 = " << x1 << ", x2 = " << x2 << ")." << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::SetDomain() WARNING: Invalide domain! " + << "(x1 = " << x1 << ", x2 = " << x2 << ")." << G4endl; + } return; } fX1 = x1; @@ -95,9 +100,11 @@ void G4PolynomialPDF::Normalize() x2N*=fX2; } if(sum <= 0) { - G4cout << "G4PolynomialPDF::Normalize() PDF has non-positive area: " - << sum << G4endl; - Dump(); + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::Normalize() WARNING: PDF has non-positive area: " + << sum << G4endl; + Dump(); + } return; } @@ -114,14 +121,16 @@ G4double G4PolynomialPDF::Evaluate(G4double x, G4int ddxPower) /// ddxPower = 1: f = (d/dx) PDF /// ddxPower = 2: f = (d2/dx2) PDF if(ddxPower < -1 || ddxPower > 2) { - G4cout << "G4PolynomialPDF::GetX(): ddxPower " << ddxPower - << " not implemented" << G4endl; - return 0; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: ddxPower " << ddxPower + << " not implemented" << G4endl; + } + return 0.0; } - double f = 0; // return value - double xN = 1; // x to the power N - double x1N = 1; // endpoint x1 to the power N; only used by CDF + double f = 0.; // return value + double xN = 1.; // x to the power N + double x1N = 1.; // endpoint x1 to the power N; only used by CDF for(size_t i=0; i<=GetNCoefficients(); ++i) { if(ddxPower == -1) { // CDF if(i>0) f += GetCoefficient(i-1)*(xN - x1N)/i; @@ -145,8 +154,10 @@ G4bool G4PolynomialPDF::HasNegativeMinimum(G4double x1, G4double x2) // p': 2ax + b = 0 -> = 0 at min: x_extreme = -b/2a if(x1 < fX1 || x2 > fX2 || x2 < x1) { - G4cout << "G4PolynomialPDF::HasNegativeMinimum(): Invalid range " - << x1 << " - " << x2 << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::HasNegativeMinimum() WARNING: Invalid range " + << x1 << " - " << x2 << G4endl; + } return false; } @@ -183,8 +194,11 @@ G4double G4PolynomialPDF::GetRandomX() if(fChanged) { Normalize(); if(HasNegativeMinimum(fX1, fX2)) { - G4cout << "G4PolynomialPDF::GetRandomX(): PDF has negative values, returning 0..." << G4endl; - return 0; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetRandomX() WARNING: PDF has negative values, returning 0..." + << G4endl; + } + return 0.0; } fChanged = false; } @@ -203,23 +217,31 @@ G4double G4PolynomialPDF::GetX(G4double p, G4double x1, G4double x2, // input range checking if(GetNCoefficients() == 0) { - G4cout << "G4PolynomialPDF::GetX(): no PDF defined!" << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: no PDF defined!" << G4endl; + } return x2; } if(ddxPower < -1 || ddxPower > 1) { - G4cout << "G4PolynomialPDF::GetX(): ddxPower " << ddxPower - << " not implemented" << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: ddxPower " << ddxPower + << " not implemented" << G4endl; + } return x2; } if(ddxPower == -1 && (p<0 || p>1)) { - G4cout << "G4PolynomialPDF::GetX(): p is out of range" << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: p is out of range" << G4endl; + } return fX2; } // check limits if(x2 <= x1 || x1 < fX1 || x2 > fX2) { - G4cout << "G4PolynomialPDF::GetX(): domain must have fX1 <= x1 < x2 <= fX2. " - << "You sent x1 = " << x1 << ", x2 = " << x2 << "." << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: domain must have fX1 <= x1 < x2 <= fX2. " + << "You sent x1 = " << x1 << ", x2 = " << x2 << "." << G4endl; + } return x2; } @@ -298,8 +320,10 @@ G4double G4PolynomialPDF::GetX(G4double p, G4double x1, G4double x2, } if(f == 0) return guess; if(dfdx == 0) { - G4cout << "G4PolynomialPDF::GetX(): got f != 0 but slope = 0 for ddxPower = " - << ddxPower << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: got f != 0 but slope = 0 for ddxPower = " + << ddxPower << G4endl; + } return x2; } lastChange = - f/dfdx; @@ -316,13 +340,18 @@ G4double G4PolynomialPDF::GetX(G4double p, G4double x1, G4double x2, ++iterations; if(iterations > 50) { if(p!=0) { - G4cout << "G4PolynomialPDF::GetX(): got stuck searching for " << p - << " between " << x1 << " and " << x2 << " with ddxPower = " - << ddxPower - << ". Last guess was " << guess << "." << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: got stuck searching for " << p + << " between " << x1 << " and " << x2 << " with ddxPower = " + << ddxPower + << ". Last guess was " << guess << "." << G4endl; + } } if(ddxPower==-1 && bisect) { - G4cout << "Bisceting and trying again..." << G4endl; + if(fVerbose > 0) { + G4cout << "G4PolynomialPDF::GetX() WARNING: Bisceting and trying again..." + << G4endl; + } return Bisect(p, x1, x2); } else return guess; diff --git a/source/run/History b/source/run/History index 7ed0eb4a93..e561213913 100644 --- a/source/run/History +++ b/source/run/History @@ -1,4 +1,4 @@ -$Id: History 101679 2016-11-21 09:30:00Z gcosmo $ +$Id: History 102620 2017-02-10 08:11:22Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,15 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +February 9, 2017, M. Asai (run-V10-02-41) +- Banner on worker RunManager will no longer be printed. + +December 22, 2016, L. Desorgher (run-V10-02-40) +-Modifications to solve bug with reverse track splitting. Works with tag tracking-V10-03-00. + - Add G4AdjointSimManager::ResetDidOneAdjPartReachExtSourceDuringEvent() + - Use G4AdjointSimManager::ResetDidOneAdjPartReachExtSourceDuringEvent() in + G4AdjointPrimaryGeneratorAction. + November 15, 2016 A. Dotti (run-V10-02-38,-39) - Fix bug #1908: create unique names with logVol pointer value for G4MultiSD and avoid to register target SD implictly diff --git a/source/run/include/G4AdjointSimManager.hh b/source/run/include/G4AdjointSimManager.hh index 50de983923..fa22ce270e 100644 --- a/source/run/include/G4AdjointSimManager.hh +++ b/source/run/include/G4AdjointSimManager.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4AdjointSimManager.hh 98735 2016-08-09 10:54:06Z gcosmo $ +// $Id: G4AdjointSimManager.hh 102566 2017-02-09 08:35:24Z gcosmo $ // ///////////////////////////////////////////////////////////////////////////////// // Class Name: G4AdjointSimManager.hh @@ -168,6 +168,7 @@ class G4AdjointSimManager: public G4UserRunAction G4bool GetDidAdjParticleReachTheExtSource(); void RegisterAtEndOfAdjointTrack(); void RegisterAdjointPrimaryWeight(G4double aWeight); + void ResetDidOneAdjPartReachExtSourceDuringEvent(); //to continue here inline G4int GetIDOfLastAdjParticleReachingExtSource(){return ID_of_last_particle_that_reach_the_ext_source;}; G4ThreeVector GetPositionAtEndOfLastAdjointTrack(size_t i=0); @@ -262,6 +263,7 @@ class G4AdjointSimManager: public G4UserRunAction void SwitchToAdjointSimulationMode(); void BackToFwdSimulationMode(); + private: //constructor and destructor G4AdjointSimManager(); diff --git a/source/run/src/G4AdjointPrimaryGeneratorAction.cc b/source/run/src/G4AdjointPrimaryGeneratorAction.cc index 9c03e68e49..0f599fcb07 100644 --- a/source/run/src/G4AdjointPrimaryGeneratorAction.cc +++ b/source/run/src/G4AdjointPrimaryGeneratorAction.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4AdjointPrimaryGeneratorAction.cc 98735 2016-08-09 10:54:06Z gcosmo $ +// $Id: G4AdjointPrimaryGeneratorAction.cc 102566 2017-02-09 08:35:24Z gcosmo $ // ///////////////////////////////////////////////////////////////////////////// // Class Name: G4AdjointPrimaryGeneratorAction @@ -186,6 +186,7 @@ void G4AdjointPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent) //Call some methods of G4AdjointSimManager G4AdjointSimManager::GetInstance()->SetAdjointTrackingMode(true); G4AdjointSimManager::GetInstance()->ClearEndOfAdjointTrackInfoVectors(); + G4AdjointSimManager::GetInstance()->ResetDidOneAdjPartReachExtSourceDuringEvent(); /* if ( !last_generated_part_was_adjoint ) { diff --git a/source/run/src/G4AdjointSimManager.cc b/source/run/src/G4AdjointSimManager.cc index ea25fe15fd..c76129b5d5 100644 --- a/source/run/src/G4AdjointSimManager.cc +++ b/source/run/src/G4AdjointSimManager.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4AdjointSimManager.cc 98735 2016-08-09 10:54:06Z gcosmo $ +// $Id: G4AdjointSimManager.cc 102566 2017-02-09 08:35:24Z gcosmo $ // ///////////////////////////////////////////////////////////////////////////// // Class Name: G4AdjointCrossSurfChecker @@ -693,5 +693,10 @@ void G4AdjointSimManager::EndOfRunAction(const G4Run* aRun) G4ParticleDefinition* G4AdjointSimManager::GetLastGeneratedFwdPrimaryParticle(){ return theAdjointPrimaryGeneratorAction->GetLastGeneratedFwdPrimaryParticle(); } +/////////////////////////////////////////////////////////////////////////////// +// +void G4AdjointSimManager::ResetDidOneAdjPartReachExtSourceDuringEvent() +{theAdjointSteppingAction->ResetDidOneAdjPartReachExtSourceDuringEvent(); +} diff --git a/source/run/src/G4RunManagerKernel.cc b/source/run/src/G4RunManagerKernel.cc index 1a9367aefc..f07fd59f9a 100644 --- a/source/run/src/G4RunManagerKernel.cc +++ b/source/run/src/G4RunManagerKernel.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4RunManagerKernel.cc 99767 2016-10-05 08:54:01Z gcosmo $ +// $Id: G4RunManagerKernel.cc 102620 2017-02-10 08:11:22Z gcosmo $ // // @@ -225,13 +225,15 @@ numberOfParallelWorld(0),geometryNeedsToBeClosed(true), << G4endl; break; default: - versionString = " Local thread RunManagerKernel version "; - versionString += vs; - G4cout << G4endl + if(verboseLevel) { + versionString = " Local thread RunManagerKernel version "; + versionString += vs; + G4cout << G4endl << "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" << G4endl << versionString << G4endl << "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" << G4endl << G4endl; + } } #ifdef G4MULTITHREADED diff --git a/source/tracking/History b/source/tracking/History index d14ed8bb4c..20dc28b3ef 100644 --- a/source/tracking/History +++ b/source/tracking/History @@ -1,4 +1,4 @@ -$Id: History 101439 2016-11-17 14:54:08Z gcosmo $ +$Id: History 102568 2017-02-09 08:37:41Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -16,6 +16,11 @@ committal in the CVS repository ! ---------------------------------------------------------- * Reverse chronological order (last date on top), please * ---------------------------------------------------------- + +Dec 22, 2016 L.Desorgher (tracking-V10-02-06) +- Modification in G4AdjointSteppingAction for correction of a bug in the case of reverse + track splitting. + Nov 17, 2016 L.Desorgher (tracking-V10-02-05) - G4AdjointSteppingAction remove a test on weight with FPE issue. diff --git a/source/tracking/include/G4AdjointSteppingAction.hh b/source/tracking/include/G4AdjointSteppingAction.hh index dd56d25858..5889dc419c 100644 --- a/source/tracking/include/G4AdjointSteppingAction.hh +++ b/source/tracking/include/G4AdjointSteppingAction.hh @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4AdjointSteppingAction.hh 81774 2014-06-05 08:36:37Z gcosmo $ +// $Id: G4AdjointSteppingAction.hh 102568 2017-02-09 08:37:41Z gcosmo $ // ///////////////////////////////////////////////////////////////////////////////// // Class Name: G4AdjointSteppingAction @@ -88,6 +88,8 @@ class G4AdjointSteppingAction : public G4UserSteppingAction inline void SetUserForwardSteppingAction( G4UserSteppingAction* anAction) { theUserFwdSteppingAction = anAction;} inline void SetAdjointTrackingMode(G4bool aBool){is_adjoint_tracking_mode =aBool;} + inline void ResetDidOneAdjPartReachExtSourceDuringEvent() + {did_one_adj_part_reach_ext_source_during_event =false;} inline void SetAdjointGeantinoTrackingMode(G4bool aBool){is_adjoint_geantino_tracking_mode =aBool;} private: @@ -96,6 +98,7 @@ class G4AdjointSteppingAction : public G4UserSteppingAction G4bool start_event; G4bool did_adj_part_reach_ext_source; + G4bool did_one_adj_part_reach_ext_source_during_event; G4ThreeVector last_momentum, last_pos; G4double last_ekin; G4double last_weight ; diff --git a/source/tracking/src/G4AdjointSteppingAction.cc b/source/tracking/src/G4AdjointSteppingAction.cc index 6e57ce2aa2..9061851d4d 100644 --- a/source/tracking/src/G4AdjointSteppingAction.cc +++ b/source/tracking/src/G4AdjointSteppingAction.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4AdjointSteppingAction.cc 101439 2016-11-17 14:54:08Z gcosmo $ +// $Id: G4AdjointSteppingAction.cc 102568 2017-02-09 08:37:41Z gcosmo $ // ///////////////////////////////////////////////////////////////////////////// // Class Name: G4AdjointSteppingAction @@ -62,8 +62,7 @@ void G4AdjointSteppingAction::UserSteppingAction(const G4Step* aStep) //G4cout<<"Ste weight "<<<SetTrackStatus(fStopAndKill); return; } @@ -116,6 +115,7 @@ void G4AdjointSteppingAction::UserSteppingAction(const G4Step* aStep) if (surface_name == "ExternalSource") { //Registering still needed did_adj_part_reach_ext_source=true; + did_one_adj_part_reach_ext_source_during_event=true; aTrack->SetTrackStatus(fStopAndKill); //now register the adjoint particles reaching the external surface last_momentum =aTrack->GetMomentum(); @@ -135,14 +135,13 @@ void G4AdjointSteppingAction::UserSteppingAction(const G4Step* aStep) //G4cout<GetPostStepPoint()->GetStepStatus()<GetPostStepPoint()->GetStepStatus() == fWorldBoundary) { did_adj_part_reach_ext_source=true; + did_one_adj_part_reach_ext_source_during_event=true; last_momentum =aTrack->GetMomentum(); last_ekin=aTrack->GetKineticEnergy(); last_weight = aTrack->GetWeight(); last_part_def = aTrack->GetDefinition(); last_pos = crossing_pos; return; - } - } diff --git a/source/visualization/OpenGL/History b/source/visualization/OpenGL/History index fafb22b3ff..359ca72005 100644 --- a/source/visualization/OpenGL/History +++ b/source/visualization/OpenGL/History @@ -1,4 +1,4 @@ -$Id: History 101714 2016-11-22 08:53:13Z gcosmo $ +$Id: History 102570 2017-02-09 08:40:47Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -17,6 +17,9 @@ committal in the CVS repository ! * Reverse chronological order (last date on top), please * ---------------------------------------------------------- +6th January 2017 John Allison (opengl-V10-02-27) +- G4OpenGLSceneHandler.cc: Fixed bug in ScaledFlush. + 21th November 2016 Laurent Garnier (opengl-V10-02-26) - Go back on the glCheckFramebufferStatus(): comment out this command diff --git a/source/visualization/OpenGL/src/G4OpenGLSceneHandler.cc b/source/visualization/OpenGL/src/G4OpenGLSceneHandler.cc index df214a43e9..da2ac7f47d 100644 --- a/source/visualization/OpenGL/src/G4OpenGLSceneHandler.cc +++ b/source/visualization/OpenGL/src/G4OpenGLSceneHandler.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4OpenGLSceneHandler.cc 99503 2016-09-26 07:17:29Z gcosmo $ +// $Id: G4OpenGLSceneHandler.cc 102570 2017-02-09 08:40:47Z gcosmo $ // // // Andrew Walkden 27th March 1996 @@ -120,17 +120,54 @@ void G4OpenGLSceneHandler::ScaledFlush() // Drawing transients, e.g., trajectories. + if (!fpScene) { + // No scene, so probably not in event loop. + glFlush(); + return; + } + // Get event from modeling parameters + if (!fpModel) { + // No model, so probably not in event loop + glFlush(); + return; + } + const G4ModelingParameters* modelingParameters = + fpModel->GetModelingParameters(); + if (!modelingParameters) { + // No modeling parameters, so probably not in event loop. + glFlush(); + return; + } + const G4Event* thisEvent = modelingParameters->GetEvent(); + if (!thisEvent) { + // No event, so probably not in event loop. + glFlush(); + return; + } + G4RunManager* runMan = G4RunManager::GetRunManager(); +#ifdef G4MULTITHREADED + if (G4Threading::IsMultithreadedApplication()) { + runMan = G4MTRunManager::GetMasterRunManager(); + } +#endif + if (!runMan) { + glFlush(); + return; + } + const G4Run* thisRun = runMan->GetCurrentRun(); + if (!thisRun) { + glFlush(); + return; + } + switch (fFlushAction) { case endOfEvent: // If "/vis/scene/endOfEventAction refresh", primitives are flushed at - // end of event anyway. - // But if "/vis/scene/endOfEventAction accumulate", ShowView is not - // called until end of run, so we have to watch for a new event. - if (fpScene->GetRefreshAtEndOfEvent()) return; - else { + // end of run anyway, so only scale if false. + if (!fpScene->GetRefreshAtEndOfEvent()) { + // But if "/vis/scene/endOfEventAction accumulate", ShowView is not + // called until end of run, so we have to watch for a new event. // Get event from modeling parameters - const G4Event* thisEvent = fpModel->GetModelingParameters()->GetEvent(); - if (!thisEvent) {glFlush(); return;} G4int thisEventID = thisEvent->GetEventID(); static G4int lastEventID = 0; if (thisEventID != lastEventID) { @@ -141,20 +178,10 @@ void G4OpenGLSceneHandler::ScaledFlush() break; case endOfRun: // If "/vis/scene/endOfRunAction refresh", primitives are flushed at - // end of run anyway. - // If "/vis/scene/endOfRunAction accumulate", ShowView is never called - // so we have to watch for a new run. - if (fpScene->GetRefreshAtEndOfRun()) return; - else { - G4RunManager* runMan = G4RunManager::GetRunManager(); -#ifdef G4MULTITHREADED - if (G4Threading::IsMultithreadedApplication()) { - runMan = G4MTRunManager::GetMasterRunManager(); - } -#endif - if (!runMan) {glFlush(); return;} - const G4Run* thisRun = runMan->GetCurrentRun(); - if (!thisRun) {glFlush(); return;} + // end of run anyway, so only scale if false. + if (!fpScene->GetRefreshAtEndOfRun()) { + // If "/vis/scene/endOfRunAction accumulate", ShowView is never called + // so we have to watch for a new run. G4int thisRunID = thisRun->GetRunID(); static G4int lastRunID = 0; if (thisRunID != lastRunID) { @@ -178,11 +205,8 @@ void G4OpenGLSceneHandler::ScaledFlush() } case NthEvent: // If "/vis/scene/endOfEventAction refresh", primitives are flushed at - // end of event anyway. - if (fpScene->GetRefreshAtEndOfEvent()) return; - else { - // Get event from modeling parameters - const G4Event* thisEvent = fpModel->GetModelingParameters()->GetEvent(); + // end of event anyway, so only scale if false. + if (!fpScene->GetRefreshAtEndOfEvent()) { G4int thisEventID = thisEvent->GetEventID(); static G4int lastEventID = 0; if (thisEventID != lastEventID) { diff --git a/source/visualization/OpenInventor/History b/source/visualization/OpenInventor/History index 2531fd061b..fddb3ad1ae 100644 --- a/source/visualization/OpenInventor/History +++ b/source/visualization/OpenInventor/History @@ -1,4 +1,4 @@ -$Id: History 97317 2016-06-01 12:14:31Z gcosmo $ +$Id: History 102573 2017-02-09 08:50:23Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -20,6 +20,12 @@ committal in the CVS repository ! History file for visualization/OpenInventor ------------------------------------------- +10 January 2017 Fred Jones (openinventor-V10-02-04) +- G4OpenInventorXtExtendedViewer: + Added viewer button for Wireframe/Solid switching. + Added workaround to prevent empty second page in + PS and PDF output (due to superimposed scene). + 01 June 2016 John Allison (openinventor-V10-02-03) - G4OpenInventorXtExtendedViewer.hh: Removed fPDFButton - not used. Fixes Coverity warning. diff --git a/source/visualization/OpenInventor/include/G4OpenInventorXtExaminerViewer.hh b/source/visualization/OpenInventor/include/G4OpenInventorXtExaminerViewer.hh index 467810817a..c45081f573 100644 --- a/source/visualization/OpenInventor/include/G4OpenInventorXtExaminerViewer.hh +++ b/source/visualization/OpenInventor/include/G4OpenInventorXtExaminerViewer.hh @@ -65,6 +65,8 @@ class SoPointSet; class G4OpenInventorXtExaminerViewer : public SoXtExaminerViewer { friend class G4OpenInventorXtExaminerViewerMessenger; + // FWJ + friend class G4OpenInventorXtExtendedViewer; private: Widget prevViewPtButton, nextViewPtButton; @@ -108,6 +110,8 @@ public: bool abbrOutputFlag; bool pickRefPathFlag; bool viewingBeforePickRef; + // FWJ + // SoNode * superimposition; protected: // Same constructor as the ExaminerViewer @@ -204,6 +208,7 @@ private: static void saveViewPtCB(Widget, XtPointer, XtPointer); static void abbrOutputCB(Widget, XtPointer, XtPointer); static void pickRefPathCB(Widget, XtPointer, XtPointer); + static void switchWireFrameCB(Widget, XtPointer, XtPointer); static void constructListsDialog(Widget, XtPointer, XtPointer); void saveViewPt(char *name); diff --git a/source/visualization/OpenInventor/include/wireframe.h b/source/visualization/OpenInventor/include/wireframe.h new file mode 100644 index 0000000000..b5b093ba64 --- /dev/null +++ b/source/visualization/OpenInventor/include/wireframe.h @@ -0,0 +1,34 @@ +#ifndef COIN_PIXMAP_WIREFRAME_XPM +#define COIN_PIXMAP_WIREFRAME_XPM + +/* XPM */ +static const char* wireframe_xpm[]={ +"24 24 2 1", +". c None", +"# c #000000", +"........................", +"........................", +"......################..", +".....##.............##..", +"....#.#............#.#..", +"...#..#...........#..#..", +"..################...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...#..........#...#..", +"..#...################..", +"..#..#...........#..#...", +"..#.#............#.#....", +"..##.............##.....", +"..################......", +"........................", +"........................"}; + +#endif /* !COIN_PIXMAP_WIREFRAME_XPM */ diff --git a/source/visualization/OpenInventor/sources.cmake b/source/visualization/OpenInventor/sources.cmake index 27d7cdb526..212c00ced1 100644 --- a/source/visualization/OpenInventor/sources.cmake +++ b/source/visualization/OpenInventor/sources.cmake @@ -11,7 +11,7 @@ # # Generated on : 24/9/2010 # -# $Id: sources.cmake 96179 2016-03-22 15:43:57Z gcosmo $ +# $Id: sources.cmake 102573 2017-02-09 08:50:23Z gcosmo $ # #------------------------------------------------------------------------------ @@ -109,6 +109,7 @@ if(UNIX) saveViewPt.h pickext.h pickref.h + wireframe.h ) list(APPEND G4VIS_MODULE_OPENINVENTOR_SOURCES diff --git a/source/visualization/OpenInventor/src/G4OpenInventorViewer.cc b/source/visualization/OpenInventor/src/G4OpenInventorViewer.cc index 82c5335ae5..f05ed06749 100644 --- a/source/visualization/OpenInventor/src/G4OpenInventorViewer.cc +++ b/source/visualization/OpenInventor/src/G4OpenInventorViewer.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4OpenInventorViewer.cc 88190 2015-02-02 17:24:54Z gcosmo $ +// $Id: G4OpenInventorViewer.cc 102573 2017-02-09 08:50:23Z gcosmo $ #ifdef G4VIS_BUILD_OI_DRIVER @@ -184,6 +184,9 @@ G4bool G4OpenInventorViewer::CompareForKernelVisit(G4ViewParameters& vp) { // needs a kernel visit. (In this respect, it differs from the // OpenGL drivers, where it's done in SetView.) (vp.GetScaleFactor () != fVP.GetScaleFactor ()) || + // If G4OpenInventor ever introduces VAMs, the following might need + // changing to a complete comparison, i.e., remove ".size()". See + // G4OpenGLStoredViewer::CompareForKernelVisit. (vp.GetVisAttributesModifiers().size() != fVP.GetVisAttributesModifiers().size()) ) diff --git a/source/visualization/OpenInventor/src/G4OpenInventorXtExaminerViewer.cc b/source/visualization/OpenInventor/src/G4OpenInventorXtExaminerViewer.cc index a7b40053d8..c6da7b13ba 100644 --- a/source/visualization/OpenInventor/src/G4OpenInventorXtExaminerViewer.cc +++ b/source/visualization/OpenInventor/src/G4OpenInventorXtExaminerViewer.cc @@ -83,6 +83,7 @@ #include "saveViewPt.h" #include "pickext.h" #include "pickref.h" +#include "wireframe.h" //#include "console.h" //#include "favorites.h" @@ -689,6 +690,7 @@ void G4OpenInventorXtExaminerViewer::createViewerButtons(Widget parent, int n; Arg args[6]; Widget saveViewPtButton, abbrOutputButton, pickRefPathButton; + Widget switchWireFrameButton; // Create original buttons SoXtExaminerViewer::createViewerButtons(parent, buttonlist); @@ -779,16 +781,23 @@ void G4OpenInventorXtExaminerViewer::createViewerButtons(Widget parent, XtVaSetValues(pickRefPathButton, XmNlabelType, XmPIXMAP, XmNlabelPixmap, pickrefxpm, XmNselectPixmap, pickrefxpm, XmNlabelInsensitivePixmap, pickrefxpm_ins, XmNselectInsensitivePixmap, pickrefxpm_ins, NULL); - // Pixmap favoritesxpm, favoritesxpm_ins; - // favoritesxpm = SoXtInternal::createPixmapFromXpm(pickRefPathButton, - // favorites_xpm); - // favoritesxpm_ins = SoXtInternal::createPixmapFromXpm(pickRefPathButton, - // favorites_xpm, TRUE); - // XtVaSetValues(pickRefPathButton, XmNlabelType, XmPIXMAP, XmNlabelPixmap, - // favoritesxpm, XmNselectPixmap, favoritesxpm, XmNlabelInsensitivePixmap, - // favoritesxpm_ins, XmNselectInsensitivePixmap, favoritesxpm_ins, NULL); + buttonlist->append(pickRefPathButton); + // Toggle button for switching in and out of wireframe mode + switchWireFrameButton = XtVaCreateManagedWidget("Wireframe", + xmToggleButtonWidgetClass, parent, XmNindicatorOn, False, NULL); + XtAddCallback(switchWireFrameButton, XmNvalueChangedCallback, + G4OpenInventorXtExaminerViewer::switchWireFrameCB, this); + Pixmap wireframe, wireframe_ins; + wireframe = SoXtInternal::createPixmapFromXpm(switchWireFrameButton, + wireframe_xpm); + wireframe_ins = SoXtInternal::createPixmapFromXpm(switchWireFrameButton, + wireframe_xpm, TRUE); + XtVaSetValues(switchWireFrameButton, XmNlabelType, XmPIXMAP, XmNlabelPixmap, + wireframe, XmNselectPixmap, wireframe, XmNlabelInsensitivePixmap, + wireframe_ins, XmNselectInsensitivePixmap, wireframe_ins, NULL); + buttonlist->append(switchWireFrameButton); } @@ -3036,11 +3045,11 @@ void G4OpenInventorXtExaminerViewer::saveViewPtCB(Widget w, XmString label = XmStringCreateLocalized((char *) "Name the viewpoint:"); XtSetArg(args[n], XmNselectionLabelString, label); n++; - XtSetArg(args[n], XmNautoUnmanage, False); n++; //prevent the dialog from closing - //automatically, in case the name - //is wrong - - nameViewPtDialog = XmCreatePromptDialog(parent, (char *) "Save Viewpoint", +// Prevent the dialog from closing automatically, in case the name is wrong + XtSetArg(args[n], XmNautoUnmanage, False); n++; +// FWJ + XtSetArg(args[n], XmNtitle, "Save Bookmark"); n++; + nameViewPtDialog = XmCreatePromptDialog(parent, String("Save Bookmark"), args, n); XmStringFree(label); @@ -3109,8 +3118,9 @@ void G4OpenInventorXtExaminerViewer::abbrOutputCB(Widget, XtPointer client_data, XtPointer) { - G4OpenInventorXtExaminerViewer * This = + G4OpenInventorXtExaminerViewer * This = (G4OpenInventorXtExaminerViewer *) client_data; +// G4cout << "DISARMCALLBACK abbrOutputFlag=" << This->abbrOutputFlag << G4endl; This->abbrOutputFlag = !(This->abbrOutputFlag); } @@ -3130,6 +3140,24 @@ void G4OpenInventorXtExaminerViewer::pickRefPathCB(Widget, } +void G4OpenInventorXtExaminerViewer::switchWireFrameCB(Widget w, + XtPointer client_data, + XtPointer) +{ + G4OpenInventorXtExaminerViewer* This = + (G4OpenInventorXtExaminerViewer*)client_data; + // xmToggleButton theToggleButton = (xmToggleButton)w; + if (XmToggleButtonGetState(w)) { + This->setDrawStyle(SoXtViewer::STILL, SoXtViewer::VIEW_LINE); + This->setDrawStyle(SoXtViewer::INTERACTIVE, SoXtViewer::VIEW_LINE); + } else { + This->setDrawStyle(SoXtViewer::STILL, SoXtViewer::VIEW_AS_IS); + This->setDrawStyle(SoXtViewer::INTERACTIVE, + SoXtViewer::VIEW_SAME_AS_STILL); + } +} + + // Examines new viewpoint name and if OK calls saveViewPt. void G4OpenInventorXtExaminerViewer::getViewPtNameCB(Widget w, diff --git a/source/visualization/OpenInventor/src/G4OpenInventorXtExtendedViewer.cc b/source/visualization/OpenInventor/src/G4OpenInventorXtExtendedViewer.cc index 8f310a7355..f9f9ed3c6e 100644 --- a/source/visualization/OpenInventor/src/G4OpenInventorXtExtendedViewer.cc +++ b/source/visualization/OpenInventor/src/G4OpenInventorXtExtendedViewer.cc @@ -324,12 +324,28 @@ void G4OpenInventorXtExtendedViewer::EscapeFromKeyboardCbk(void* o) { void G4OpenInventorXtExtendedViewer::PostScriptCbk( Widget,XtPointer aData,XtPointer) { G4OpenInventorXtExtendedViewer* This = (G4OpenInventorXtExtendedViewer*)aData; + // FWJ Workaround: avoids empty 2nd page in file + SbBool superimpState = + This->fViewer->getSuperimpositionEnabled(This->fViewer->superimposition); + This->fViewer->setSuperimpositionEnabled(This->fViewer->superimposition, + FALSE); This->WritePostScript(); + if (superimpState) + This->fViewer->setSuperimpositionEnabled(This->fViewer->superimposition, + TRUE); } void G4OpenInventorXtExtendedViewer::PDFCbk( Widget,XtPointer aData,XtPointer) { G4OpenInventorXtExtendedViewer* This = (G4OpenInventorXtExtendedViewer*)aData; + // FWJ Workaround: avoids empty 2nd page in file + SbBool superimpState = + This->fViewer->getSuperimpositionEnabled(This->fViewer->superimposition); + This->fViewer->setSuperimpositionEnabled(This->fViewer->superimposition, + FALSE); This->WritePDF(); + if (superimpState) + This->fViewer->setSuperimpositionEnabled(This->fViewer->superimposition, + TRUE); } void G4OpenInventorXtExtendedViewer::PixmapPostScriptCbk( diff --git a/source/visualization/RayTracer/History b/source/visualization/RayTracer/History index 2e0e196ae9..bc3ce0e3f9 100644 --- a/source/visualization/RayTracer/History +++ b/source/visualization/RayTracer/History @@ -1,4 +1,4 @@ -$Id: History 99076 2016-09-01 12:40:47Z gcosmo $ +$Id: History 102778 2017-02-22 10:50:10Z gcosmo $ ------------------------------------------------------------------- ========================================================= @@ -24,6 +24,10 @@ committal in the CVS repository ! History file for Ray Tracer category --------------------------------------- +22nd February 2017 John Allison (raytracer-V10-02-02) +- G4RTXScanner.cc: Changed XA_RGB_BEST_MAP to XA_RGB_DEFAULT_MAP. + (It seems XA_RGB_BEST_MAP no longer available on Mac XQuartz 2.7.11.) + 31st August 2016 John Allison (raytracer-V10-02-01) - Fix G4Orb and G4Ellipsoid hiding warnings. diff --git a/source/visualization/RayTracer/src/G4RTXScanner.cc b/source/visualization/RayTracer/src/G4RTXScanner.cc index 6ef892aa1e..e88ce23c47 100644 --- a/source/visualization/RayTracer/src/G4RTXScanner.cc +++ b/source/visualization/RayTracer/src/G4RTXScanner.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4RTXScanner.cc 66373 2012-12-18 09:41:34Z gcosmo $ +// $Id: G4RTXScanner.cc 102778 2017-02-22 10:50:10Z gcosmo $ // // @@ -177,16 +177,16 @@ G4bool G4RTXScanner::GetXWindow(const G4String& name, G4ViewParameters& vp) int nMaps; Status status = XGetRGBColormaps (display, RootWindow(display, screen_num), - &scmap, &nMaps, XA_RGB_BEST_MAP); + &scmap, &nMaps, XA_RGB_DEFAULT_MAP); if (!status) { system("xstdcmap -best"); // ...and try again... status = XGetRGBColormaps (display, RootWindow(display, screen_num), - &scmap, &nMaps, XA_RGB_BEST_MAP); + &scmap, &nMaps, XA_RGB_DEFAULT_MAP); if (!status) { G4cerr << "G4RTXScanner::Initialize(): cannot get color map." - "\n Perhaps your system does not support RGB_BEST_MAP." + "\n Perhaps your system does not support XA_RGB_DEFAULT_MAP." << G4endl; return false; } diff --git a/source/visualization/management/History b/source/visualization/management/History index a8486e0ca0..d7ddfb59dc 100644 --- a/source/visualization/management/History +++ b/source/visualization/management/History @@ -1,4 +1,4 @@ -$Id: History 101792 2016-11-28 16:47:50Z gcosmo $ +$Id: History 102575 2017-02-09 09:07:12Z gcosmo $ ------------------------------------------------------------------- @@ -26,6 +26,9 @@ committal in the CVS repository ! History file for visualization management sub-category ------------------------------------------------------ +12th December 2016 Brian Smith, Laurent Garnier (visman-V10-02-38) +- /vis/viewer/interpolate: Now works for WIN32. + 27th November 2016 John Allison (visman-V10-02-37) - G4VisManager.cc: Fix for OpenGLXm. An extra refresh should come BEFORE ShowView. Should not affect other viewers. diff --git a/source/visualization/management/include/G4VisCommandsViewer.hh b/source/visualization/management/include/G4VisCommandsViewer.hh index 394f212d60..ece5dfb939 100644 --- a/source/visualization/management/include/G4VisCommandsViewer.hh +++ b/source/visualization/management/include/G4VisCommandsViewer.hh @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4VisCommandsViewer.hh 97316 2016-06-01 12:12:58Z gcosmo $ +// $Id: G4VisCommandsViewer.hh 102575 2017-02-09 09:07:12Z gcosmo $ // /vis/viewer commands - John Allison 25th October 1998 @@ -194,7 +194,6 @@ private: G4UIcmdWithAString* fpCommand; }; -#ifndef WIN32 class G4VisCommandViewerInterpolate: public G4VVisCommandViewer { public: G4VisCommandViewerInterpolate (); @@ -206,7 +205,6 @@ private: G4VisCommandViewerInterpolate& operator = (const G4VisCommandViewerInterpolate&); G4UIcommand* fpCommand; }; -#endif class G4VisCommandViewerList: public G4VVisCommandViewer { public: diff --git a/source/visualization/management/src/G4VisCommandsViewer.cc b/source/visualization/management/src/G4VisCommandsViewer.cc index 8485237759..020298da5d 100644 --- a/source/visualization/management/src/G4VisCommandsViewer.cc +++ b/source/visualization/management/src/G4VisCommandsViewer.cc @@ -24,7 +24,7 @@ // ******************************************************************** // // -// $Id: G4VisCommandsViewer.cc 99440 2016-09-22 08:34:04Z gcosmo $ +// $Id: G4VisCommandsViewer.cc 102575 2017-02-09 09:07:12Z gcosmo $ // /vis/viewer commands - John Allison 25th October 1998 @@ -52,6 +52,10 @@ #include #include #include +#ifdef WIN32 +#include +#include +#endif //WIN32 G4VVisCommandViewer::G4VVisCommandViewer () {} @@ -958,10 +962,6 @@ void G4VisCommandViewerFlush::SetNewValue (G4UIcommand*, G4String newValue) { ////////////// /vis/viewer/interpolate /////////////////////////////////////// -#ifndef WIN32 -// popen is not available in Windows. _popen is said to be available in -// Windows but this has not been tried. - G4VisCommandViewerInterpolate::G4VisCommandViewerInterpolate () { G4bool omitable; fpCommand = new G4UIcommand ("/vis/viewer/interpolate", this); @@ -1037,11 +1037,40 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue >> waitTimePerPointString >> timeUnit >> exportString; + G4String waitTimePerPointDimString(waitTimePerPointString + ' ' + timeUnit); const G4double waitTimePerPoint = - G4UIcommand::ConvertToDimensionedDouble((waitTimePerPointString + ' ' + timeUnit).c_str()); + G4UIcommand::ConvertToDimensionedDouble(waitTimePerPointDimString.c_str()); G4int waitTimePerPointmilliseconds = waitTimePerPoint/millisecond; if (waitTimePerPointmilliseconds < 0) waitTimePerPointmilliseconds = 0; + G4UImanager* uiManager = G4UImanager::GetUIpointer(); + + // Save current view parameters + G4ViewParameters saveVP = currentViewer->GetViewParameters(); + + // Save current verbosities + G4VisManager::Verbosity keepVisVerbosity = fpVisManager->GetVerbosity(); + G4int keepUIVerbosity = uiManager->GetVerboseLevel(); + + // Set verbosities for this operation + fpVisManager->SetVerboseLevel(G4VisManager::errors); + uiManager->SetVerboseLevel(0); + + // Switch off auto-refresh while we read in the view files (it will be + // restored later). Note: the view files do not set auto-refresh. + G4ViewParameters non_auto = saveVP; + non_auto.SetAutoRefresh(false); + currentViewer->SetViewParameters(non_auto); + + // View vector of way points + std::vector viewVector; + + const G4int safety = 9999; + G4int safetyCount = 0; + G4String pathname; + +#ifndef WIN32 + // Execute pattern and get resulting list of filles G4String shellCommand = "echo " + pattern; FILE *filelist = popen(shellCommand.c_str(), "r"); @@ -1055,38 +1084,74 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue return; } - // Save current view parameters - G4ViewParameters saveVP = currentViewer->GetViewParameters(); - - // Save current verbosities - G4VisManager::Verbosity keepVisVerbosity = fpVisManager->GetVerbosity(); - G4UImanager* ui = G4UImanager::GetUIpointer(); - G4int keepUIVerbosity = ui->GetVerboseLevel(); - - // Set verbosities for this operation - fpVisManager->SetVerboseLevel(G4VisManager::errors); - ui->SetVerboseLevel(0); - - // Switch off auto-refresh while we read in the view files (it will be - // restored later). Note: the view files do not set auto-refresh. - G4ViewParameters non_auto = saveVP; - non_auto.SetAutoRefresh(false); - currentViewer->SetViewParameters(non_auto); - // Build view vector of way points - std::vector viewVector; const size_t BUFLENGTH = 999999; char buf[BUFLENGTH]; fgets(buf, BUFLENGTH, filelist); std::istringstream fileliststream(buf); - const G4int safety = 9999; - G4int safetyCount = 0; - G4String pathname; while (fileliststream >> pathname && safetyCount++ < safety) { // Loop checking, 16.02.2016, J.Allison - ui->ApplyCommand("/control/execute " + pathname); + uiManager->ApplyCommand("/control/execute " + pathname); viewVector.push_back(currentViewer->GetViewParameters()); } + pclose(filelist); + +#else // WIN32 (popen is not available in Windows) + + std::experimental::filesystem::v1::path filePattern(pattern); + + // Default pattern : *.g4view + // Translated to a regexp : ^.*\\.g4view + // Convert pattern into a regexp + std::string regexp_pattern("^" + filePattern.filename().string()); + std::string result_pattern = ""; + // Replace '.' by "\\." + size_t currentPos = 0; + size_t nextPos = 0; + std::string currentReplacement = ""; + size_t pos1 = regexp_pattern.find('.', nextPos); + size_t pos2 = regexp_pattern.find('*', nextPos); + size_t pos3 = regexp_pattern.find('?', nextPos); + while ((pos1 != std::string::npos) || (pos2 != std::string::npos) || (pos3 != std::string::npos)) { + nextPos = pos1; + currentReplacement = "\\."; + if (pos2 < nextPos) { + nextPos = pos2; + currentReplacement = ".*"; + } + if (pos3 < nextPos) { + nextPos = pos3; + currentReplacement = "(.{1,1})"; + } + result_pattern += regexp_pattern.substr(currentPos, nextPos - currentPos) + currentReplacement; + nextPos++; + currentPos = nextPos; + pos1 = regexp_pattern.find('.', currentPos); + pos2 = regexp_pattern.find('*', currentPos); + pos3 = regexp_pattern.find('?', currentPos); + } + result_pattern += regexp_pattern.substr(currentPos); + + // Build view vector of way points + // Add "./" for empty paths + G4String parentPath(filePattern.parent_path().string().length() ? filePattern.parent_path().string() : std::string("./")); + // Iterate through files in directory and apply regex match to filter appropriate files + std::regex result_pattern_regex (result_pattern, std::regex_constants::basic | std::regex_constants::icase); + for (auto iter = std::experimental::filesystem::v1::directory_iterator(parentPath); + iter != std::experimental::filesystem::v1::directory_iterator() && safetyCount++ < safety; + ++iter) + { + const auto& file = iter->path(); + + G4String filename(file.filename().string()); + if (std::regex_match(filename, result_pattern_regex)) + { + uiManager->ApplyCommand("/control/execute " + filename); + viewVector.push_back(currentViewer->GetViewParameters()); + } + } + +#endif // WIN32 if (safetyCount >= safety) { if (verbosity >= G4VisManager::errors) { @@ -1095,10 +1160,9 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue "\n the number of way points exceeds the maximum currently allowed: " << safety << G4endl; } - pclose(filelist); return; } - + // Interpolate views safetyCount = 0; do { @@ -1111,7 +1175,7 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue currentViewer->RefreshView(); if (exportString == "export" && currentViewer->GetName().contains("OpenGL")) - ui->ApplyCommand("/vis/ogl/export"); + uiManager->ApplyCommand("/vis/ogl/export"); #ifdef G4VIS_USE_STD11 if (waitTimePerPointmilliseconds > 0) std::this_thread::sleep_for(std::chrono::milliseconds(waitTimePerPointmilliseconds)); @@ -1119,7 +1183,7 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue } while (safetyCount++ < safety); // Loop checking, 16.02.2016, J.Allison // Restore original verbosities - ui->SetVerboseLevel(keepUIVerbosity); + uiManager->SetVerboseLevel(keepUIVerbosity); fpVisManager->SetVerboseLevel(keepVisVerbosity); // Restore original view parameters @@ -1129,12 +1193,8 @@ void G4VisCommandViewerInterpolate::SetNewValue (G4UIcommand*, G4String newValue G4cout << "Viewer \"" << currentViewer -> GetName () << "\"" << " restored." << G4endl; } - - pclose(filelist); } -#endif // WIN32 - popen is not available in Windows. _popen is there but not tried. - ////////////// /vis/viewer/list /////////////////////////////////////// G4VisCommandViewerList::G4VisCommandViewerList () { diff --git a/source/visualization/management/src/G4VisManager.cc b/source/visualization/management/src/G4VisManager.cc index 405924be38..0694186ddb 100644 --- a/source/visualization/management/src/G4VisManager.cc +++ b/source/visualization/management/src/G4VisManager.cc @@ -23,7 +23,7 @@ // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // -// $Id: G4VisManager.cc 101792 2016-11-28 16:47:50Z gcosmo $ +// $Id: G4VisManager.cc 102575 2017-02-09 09:07:12Z gcosmo $ // // // GEANT4 Visualization Manager - John Allison 02/Jan/1996. @@ -490,9 +490,7 @@ void G4VisManager::RegisterMessengers () { RegisterMessenger(new G4VisCommandViewerCreate); RegisterMessenger(new G4VisCommandViewerDolly); RegisterMessenger(new G4VisCommandViewerFlush); -#ifndef WIN32 RegisterMessenger(new G4VisCommandViewerInterpolate); -#endif RegisterMessenger(new G4VisCommandViewerList); RegisterMessenger(new G4VisCommandViewerPan); RegisterMessenger(new G4VisCommandViewerRebuild);