diff --git a/CMakeLists.txt b/CMakeLists.txt index affac03d8..298f0ff41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,49 @@ option(RAYX_REQUIRE_H5 "If option 'RAYX_ENABLE_H5' is ON, this option will add t option(RAYX_STATIC_LIB "This option builds 'rayx-core' as a static library." OFF) # ------------------ +# ---- Specific macos compiler options and flags concerning OpenMP ---- +if(APPLE) + # Detect architecture and package manager + if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm64") + set(HOMEBREW_PREFIX "/opt/homebrew") + else() + set(HOMEBREW_PREFIX "/usr/local") + endif() + + # MacPorts detection + if(EXISTS "/opt/local/include/libomp") + set(OpenMP_INCLUDE_DIR "/opt/local/include/libomp") + set(OpenMP_LIBRARY "/opt/local/lib/libomp.dylib") + message(STATUS "Using MacPorts OpenMP installation") + else() + # Homebrew fallback + set(OpenMP_INCLUDE_DIR "${HOMEBREW_PREFIX}/opt/libomp/include") + set(OpenMP_LIBRARY "${HOMEBREW_PREFIX}/opt/libomp/lib/libomp.dylib") + message(STATUS "Using Homebrew OpenMP installation") + endif() + + # Common OpenMP settings + set(OpenMP_C_FLAGS "-Xpreprocessor -fopenmp -I${OpenMP_INCLUDE_DIR}") + set(OpenMP_CXX_FLAGS "-Xpreprocessor -fopenmp -I${OpenMP_INCLUDE_DIR}") + set(OpenMP_C_LIB_NAMES "omp") + set(OpenMP_CXX_LIB_NAMES "omp") + set(OpenMP_omp_LIBRARY "${OpenMP_LIBRARY}") + set(OpenMP_omp_INCLUDE_DIRS "${OpenMP_INCLUDE_DIR}") + + if(RAYX_ENABLE_OPENMP) + find_package(OpenMP REQUIRED) + if(OpenMP_CXX_FOUND) + message(STATUS "OpenMP found:") + message(STATUS " Include dirs: ${OpenMP_CXX_INCLUDE_DIRS}") + message(STATUS " Libraries: ${OpenMP_CXX_LIBRARIES}") + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") + include_directories(${OpenMP_omp_INCLUDE_DIRS}) + link_libraries(${OpenMP_omp_LIBRARY}) + endif() + endif() +endif() + # ---- Build options ---- set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/release) diff --git a/Intern/rayx-core/src/Rml/Locate.cpp b/Intern/rayx-core/src/Rml/Locate.cpp index 3dd54042c..9d177ae5f 100644 --- a/Intern/rayx-core/src/Rml/Locate.cpp +++ b/Intern/rayx-core/src/Rml/Locate.cpp @@ -9,6 +9,8 @@ #include #elif defined(__APPLE__) #include +#include +#include #else #include #include @@ -63,6 +65,17 @@ std::filesystem::path ResourceHandler::getExecutablePath() { // If the buffer was too small, increase size and retry buffer.resize(buffer.size() * 2); } +#elif defined(__APPLE__) + std::vector buffer(PROC_PIDPATHINFO_MAXSIZE); + pid_t pid = getpid(); + int ret = proc_pidpath(pid, buffer.data(), buffer.size()); + if (ret <= 0) { + // Fehler beim Auslesen des Pfads + return std::filesystem::path(); + } + buffer[ret] = '\0'; // Null-terminieren, falls nicht bereits geschehen + // Optional: buffer kann länger als der Pfad sein, daher String kürzen + return std::filesystem::path(buffer.data()); #else static_assert(false, "macOS support is not implemented yet"); @@ -80,7 +93,7 @@ std::filesystem::path ResourceHandler::getFullPath(const std::filesystem::path& } } -#if defined(__linux__) +#if defined(__linux__) || defined(__APPLE__) // Check in /usr (package install) std::filesystem::path path = std::filesystem::path("/usr") / baseDir / relativePath; if (fileExists(path)) return path; diff --git a/Intern/rayx-core/src/Shader/Diffraction.cpp b/Intern/rayx-core/src/Shader/Diffraction.cpp index 9e7d20e76..2c368cd93 100644 --- a/Intern/rayx-core/src/Shader/Diffraction.cpp +++ b/Intern/rayx-core/src/Shader/Diffraction.cpp @@ -1,5 +1,6 @@ #include "Diffraction.h" +#include #include "Approx.h" #include "Constants.h" #include "Rand.h" @@ -20,24 +21,38 @@ double RAYX_API fact(int a) { /**returns first bessel function of parameter v*/ RAYX_FN_ACC -double RAYX_API bessel1(double v) { - if (v < 0.0 || v > 20.0) { - return 0.0; - } +double RAYX_API bessel1(double x) { + // if (v < 0.0 || v > 20.0) { + // return 0.0; + // } + + // double sum = 0; + // int large = 80; - double sum = 0; - int large = 30; + // double PO1; + // double PO2; + // double FA1; + // for (int small = 0; small <= large; small++) { + // PO1 = dpow(-1.0, small); + // PO2 = dpow(v / 2.0, 2 * small + 1); + // FA1 = fact(small); + // sum += (PO1 / (FA1 * FA1 * (small + 1))) * PO2; + // } + // return sum; - double PO1; - double PO2; - double FA1; - for (int small = 0; small <= large; small++) { - PO1 = dpow(-1.0, small); - PO2 = dpow(v / 2.0, 2 * small + 1); - FA1 = fact(small); - sum += (PO1 / (FA1 * FA1 * (small + 1))) * PO2; + if (x < 0) { + // x = std::abs(x); // Nur anwendbar, wenn Jᵥ(-x) = (-1)ᵛ Jᵥ(x) } - return sum; + if (std::isnan(x) || std::isinf(x)) { + return std::numeric_limits::quiet_NaN(); + } + //try { + return boost::math::cyl_bessel_j(1.0, x); + //} + //catch (...) { + // return std::numeric_limits::signaling_NaN(); + //} + } /** @@ -67,6 +82,7 @@ void bessel_diff(double radius, double wl, double& __restrict dphi, double& __re double u = 2.0 * PI * b * xi / wl; double wd = 1; if (u != 0) { + std::cout << "u: " << u << std::endl; wd = 2.0 * bessel1(u) / u; wd = wd * wd; } diff --git a/Intern/rayx-core/tests/input/slit2_seeded.correct.csv b/Intern/rayx-core/tests/input/slit2_seeded.correct.csv index 334f148db..70c343547 100644 --- a/Intern/rayx-core/tests/input/slit2_seeded.correct.csv +++ b/Intern/rayx-core/tests/input/slit2_seeded.correct.csv @@ -8,55 +8,55 @@ Ray-ID ,Event-ID ,X-position ,Y-position 6.00000000000000000000,0.00000000000000000000,-0.4230769232855405848,0.00000000000000000000,5.50000046240142648201,1.00000000000000000000,-0.0000384615336443635,0.99999987426035774618,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 7.00000000000000000000,0.00000000000000000000,0.42307692328554058480,0.00000000000000000000,5.50000046240142648201,1.00000000000000000000,0.00003846153364436359,0.99999987426035774618,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 8.00000000000000000000,0.00000000000000000000,1.26923077486345037279,0.00000000000000000000,5.50000049494580878217,1.00000000000000000000,0.00011538460070550785,0.99999986834319865014,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -9.00000000000000000000,0.00000000000000000000,2.11538464146184246317,0.00000000000000000000,5.50000056003457160613,1.00000000000000000000,0.00019230766708390299,0.99999985650888079113,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +9.00000000000000000000,0.00000000000000000000,2.11538464146184290726,0.00000000000000000000,5.50000056003457160613,1.00000000000000000000,0.00019230766708390299,0.99999985650888079113,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 10.0000000000000000000,0.00000000000000000000,2.96153853309437309349,0.00000000000000000000,5.50000065766772117115,1.00000000000000000000,0.00026923073232438285,0.99999983875740383609,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 11.0000000000000000000,0.00000000000000000000,3.80769245977470038866,0.00000000000000000000,5.50000078784525658903,1.00000000000000000000,0.00034615379597178157,0.99999981508876811808,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -12.0000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,5.50000095056718407704,1.00000000000000000000,0.00042307685757093292,0.99999978550297374813,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +12.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,5.50000095056718407704,1.00000000000000000000,0.00042307685757093292,0.99999978550297374813,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 13.0000000000000000000,0.00000000000000000000,5.50000045833337836143,0.00000000000000000000,5.50000114583350629970,1.00000000000000000000,0.00049999991666667084,0.99999975000002094827,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 14.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,4.65384701324734617600,1.00000000000000000000,-0.0004999999344181487,0.99999978550297374813,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 15.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,4.65384684802199988240,1.00000000000000000000,-0.0004230768725914143,0.99999982100592776923,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 16.0000000000000000000,0.00000000000000000000,-3.8076924597747003886,0.00000000000000000000,4.65384671033421870589,1.00000000000000000000,-0.0003461538082612664,0.99999985059172324941,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 17.0000000000000000000,0.00000000000000000000,-2.9615385330943726494,0.00000000000000000000,4.65384660018399820557,1.00000000000000000000,-0.0002692307418828711,0.99999987426035974458,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 18.0000000000000000000,0.00000000000000000000,-2.1153846414618420190,0.00000000000000000000,4.65384651757133571692,1.00000000000000000000,-0.0001923076739113946,0.99999989201183736575,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -19.0000000000000000000,0.00000000000000000000,-1.2692307748634503727,0.00000000000000000000,4.65384646249622857538,1.00000000000000000000,-0.0001153846048020029,0.99999990384615566885,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -20.0000000000000000000,0.00000000000000000000,-0.4230769232855405292,0.00000000000000000000,4.65384643495867589280,1.00000000000000000000,-0.0000384615350098619,0.99999990976331498693,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -21.0000000000000000000,0.00000000000000000000,0.42307692328554052929,0.00000000000000000000,4.65384643495867589280,1.00000000000000000000,0.00003846153500986195,0.99999990976331498693,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -22.0000000000000000000,0.00000000000000000000,1.26923077486345037279,0.00000000000000000000,4.65384646249622857538,1.00000000000000000000,0.00011538460480200291,0.99999990384615566885,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -23.0000000000000000000,0.00000000000000000000,2.11538464146184246317,0.00000000000000000000,4.65384651757133571692,1.00000000000000000000,0.00019230767391139474,0.99999989201183736575,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +19.0000000000000000000,0.00000000000000000000,-1.2692307748634503727,0.00000000000000000000,4.65384646249622946356,1.00000000000000000000,-0.0001153846048020029,0.99999990384615566885,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +20.0000000000000000000,0.00000000000000000000,-0.4230769232855405292,0.00000000000000000000,4.65384643495867678097,1.00000000000000000000,-0.0000384615350098619,0.99999990976331498693,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +21.0000000000000000000,0.00000000000000000000,0.42307692328554052929,0.00000000000000000000,4.65384643495867678097,1.00000000000000000000,0.00003846153500986195,0.99999990976331498693,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +22.0000000000000000000,0.00000000000000000000,1.26923077486345037279,0.00000000000000000000,4.65384646249622946356,1.00000000000000000000,0.00011538460480200291,0.99999990384615566885,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +23.0000000000000000000,0.00000000000000000000,2.11538464146184290726,0.00000000000000000000,4.65384651757133571692,1.00000000000000000000,0.00019230767391139474,0.99999989201183736575,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 24.0000000000000000000,0.00000000000000000000,2.96153853309437264940,0.00000000000000000000,4.65384660018399820557,1.00000000000000000000,0.00026923074188287118,0.99999987426035974458,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 25.0000000000000000000,0.00000000000000000000,3.80769245977470038866,0.00000000000000000000,4.65384671033421870589,1.00000000000000000000,0.00034615380826126648,0.99999985059172324941,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 26.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,4.65384684802199988240,1.00000000000000000000,0.00042307687259141442,0.99999982100592776923,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 27.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,4.65384701324734617600,1.00000000000000000000,0.00049999993441814875,0.99999978550297374813,0.00042307691045554557,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 28.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,3.80769293573630696059,1.00000000000000000000,-0.0004999999492110472,0.99999981508876811808,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -29.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,3.80769280055193570788,1.00000000000000000000,-0.0004230768851084824,0.99999985059172324941,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +29.0000000000000000000,0.00000000000000000000,-4.6538464315164826956,0.00000000000000000000,3.80769280055193570788,1.00000000000000000000,-0.0004230768851084824,0.99999985059172324941,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 30.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,3.46153880718027107121,3.00000000000000000000,-0.0003461538185025041,0.99999988017751961777,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0011982249488937,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -31.0000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,3.46153872525035710694,3.00000000000000000000,-0.0002692307498482782,0.99999990384615689009,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +31.0000000000000000000,0.00000000000000000000,-2.6923077573585203481,0.00000000000000000000,3.46153872525035710694,3.00000000000000000000,-0.0002692307498482782,0.99999990384615689009,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 32.0000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,3.46153866380292329907,3.00000000000000000000,-0.0001923076796009712,0.99999992159763495536,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 33.0000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,3.46153862283796831533,3.00000000000000000000,-0.0001153846082157488,0.99999993343195370254,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -34.0000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,3.46153860235549215573,3.00000000000000000000,-0.0000384615361477772,0.99999993934911302062,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -35.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,3.46153860235549215573,3.00000000000000000000,0.00003846153614777726,0.99999993934911302062,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +34.0000000000000000000,0.00000000000000000000,-0.3846153848050368750,0.00000000000000000000,3.46153860235549215573,3.00000000000000000000,-0.0000384615361477772,0.99999993934911302062,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +35.0000000000000000000,0.00000000000000000000,0.38461538480503687509,0.00000000000000000000,3.46153860235549215573,3.00000000000000000000,0.00003846153614777726,0.99999993934911302062,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 36.0000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,3.46153862283796831533,3.00000000000000000000,0.00011538460821574884,0.99999993343195370254,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -37.0000000000000000000,0.00000000000000000000,1.92307694678349361261,0.00000000000000000000,3.46153866380292329907,3.00000000000000000000,0.00019230767960097126,0.99999992159763495536,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -38.0000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,3.46153872525035710694,3.00000000000000000000,0.00026923074984827827,0.99999990384615689009,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +37.0000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,3.46153866380292329907,3.00000000000000000000,0.00019230767960097126,0.99999992159763495536,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +38.0000000000000000000,0.00000000000000000000,2.69230775735852034813,0.00000000000000000000,3.46153872525035710694,3.00000000000000000000,0.00026923074984827827,0.99999990384615689009,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 39.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,3.46153880718027107121,3.00000000000000000000,0.00034615381850250414,0.99999988017751961777,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0011982249488937,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 40.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,3.80769280055193570788,1.00000000000000000000,0.00042307688510848247,0.99999985059172324941,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 41.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,3.80769293573630696059,1.00000000000000000000,0.00049999994921104721,0.99999981508876811808,0.00034615383924101053,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 42.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,2.96153890328672808607,1.00000000000000000000,-0.0004999999610453660,0.99999983875740383609,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 43.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,2.96153879814332920972,1.00000000000000000000,-0.0004230768951221369,0.99999987426035974458,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -44.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,2.69230791865803187334,3.00000000000000000000,-0.0003461538266954942,0.99999990384615689009,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +44.0000000000000000000,0.00000000000000000000,-3.4615385997951824137,0.00000000000000000000,2.69230791865803187334,3.00000000000000000000,-0.0003461538266954942,0.99999990384615689009,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 45.0000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,2.69230785493476654224,3.00000000000000000000,-0.0002692307562206040,0.99999992751479460650,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007248521051224,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -46.0000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,2.69230780714231876515,3.00000000000000000000,-0.0001923076841526324,0.99999994526627311586,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +46.0000000000000000000,0.00000000000000000000,-1.9230769467834927244,0.00000000000000000000,2.69230780714231876515,3.00000000000000000000,-0.0001923076841526324,0.99999994526627311586,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 47.0000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,2.69230777528068809800,3.00000000000000000000,-0.0001153846109467456,0.99999995710059208509,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 48.0000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,2.69230775934987276443,3.00000000000000000000,-0.0000384615370581095,0.99999996301775162521,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224973049,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 49.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,2.69230775934987276443,3.00000000000000000000,0.00003846153705810951,0.99999996301775162521,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224973049,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 50.0000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,2.69230777528068809800,3.00000000000000000000,0.00011538461094674560,0.99999995710059208509,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 51.0000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,2.69230780714231876515,3.00000000000000000000,0.00019230768415263250,0.99999994526627311586,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 52.0000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,2.69230785493476654224,3.00000000000000000000,0.00026923075622060400,0.99999992751479460650,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007248521051224,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -53.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,2.69230791865803187334,3.00000000000000000000,0.00034615382669549426,0.99999990384615689009,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -54.0000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,2.96153879814332920972,1.00000000000000000000,0.00042307689512213698,0.99999987426035974458,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +53.0000000000000000000,0.00000000000000000000,3.46153859979518241374,0.00000000000000000000,2.69230791865803187334,3.00000000000000000000,0.00034615382669549426,0.99999990384615689009,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +54.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,2.96153879814332920972,1.00000000000000000000,0.00042307689512213698,0.99999987426035974458,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 55.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,2.96153890328672808607,1.00000000000000000000,0.00049999996104536600,0.99999983875740383609,0.00026923076597822786,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 56.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,2.11538490588494987321,1.00000000000000000000,-0.0004999999699211052,0.99999985650888079113,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -57.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,2.11538483078252292912,1.00000000000000000000,-0.0004230769026323778,0.99999989201183736575,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +57.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,2.11538483078252337321,1.00000000000000000000,-0.0004230769026323778,0.99999989201183736575,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 58.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,1.92307706199742822761,3.00000000000000000000,-0.0003461538328402369,0.99999992159763495536,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 59.0000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,1.92307701648081041945,3.00000000000000000000,-0.0002692307609998483,0.99999994526627311586,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 60.0000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,1.92307698234334822906,3.00000000000000000000,-0.0001923076875663784,0.99999996301775195828,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224936670,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 @@ -67,64 +67,64 @@ Ray-ID ,Event-ID ,X-position ,Y-position 65.0000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,1.92307698234334822906,3.00000000000000000000,0.00019230768756637849,0.99999996301775195828,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224936670,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 66.0000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,1.92307701648081041945,3.00000000000000000000,0.00026923076099984833,0.99999994526627311586,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 67.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,1.92307706199742822761,3.00000000000000000000,0.00034615383284023691,0.99999992159763495536,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -68.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,2.11538483078252292912,1.00000000000000000000,0.00042307690263237795,0.99999989201183736575,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +68.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,2.11538483078252337321,1.00000000000000000000,0.00042307690263237795,0.99999989201183736575,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 69.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,2.11538490588494987321,1.00000000000000000000,0.00049999996992110523,0.99999985650888079113,0.00019230769112236383,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 70.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,1.26923093351731375300,1.00000000000000000000,-0.0004999999758382646,0.99999986834319865014,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 71.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,1.26923088845585807504,1.00000000000000000000,-0.0004230769076392051,0.99999990384615566885,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 72.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,1.15384622809513337493,3.00000000000000000000,-0.0003461538369367320,0.99999993343195370254,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -73.0000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,1.15384620078516308971,3.00000000000000000000,-0.0002692307641860112,0.99999995710059208509,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +73.0000000000000000000,0.00000000000000000000,-2.6923077573585203481,0.00000000000000000000,1.15384620078516308971,3.00000000000000000000,-0.0002692307641860112,0.99999995710059208509,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 74.0000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,1.15384618030268581989,3.00000000000000000000,-0.0001923076898422090,0.99999997485207114955,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 75.0000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,1.15384616664770156546,3.00000000000000000000,-0.0001153846143604915,0.99999998668639045185,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001331360963376,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 76.0000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,1.15384615982020943825,1.00000000000000000000,-0.0000383561803323530,0.99999999264655137221,0.00011504651533214227,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -76.0000000000000000000,1.00000000000000000000,-0.4229715654194400320,0.00000000000000000000,1.26889267599834032473,1.00000000000000000000,-0.0000383561803323530,0.99999999264655137221,0.00011504651533214227,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813179467513,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -77.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,1.15384615982020943825,1.00000000000000000000,0.00003823438136848036,0.99999999253347204852,0.00011606544697501711,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -77.0000000000000000000,1.00000000000000000000,0.42284976645899524649,0.00000000000000000000,1.26991160766183242003,1.00000000000000000000,0.00003823438136848036,0.99999999253347204852,0.00011606544697501711,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000814310260466,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +76.0000000000000000000,1.00000000000000000000,-0.4229715654194400875,0.00000000000000000000,1.26889267599834032473,1.00000000000000000000,-0.0000383561803323530,0.99999999264655137221,0.00011504651533214227,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813179467513,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +77.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,1.15384615982020943825,1.00000000000000000000,0.00003776939056940622,0.99999999229413460977,0.00011825905437192480,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +77.0000000000000000000,1.00000000000000000000,0.42238477566548887631,0.00000000000000000000,1.27210521510342244866,1.00000000000000000000,0.00003776939056940622,0.99999999229413460977,0.00011825905437192480,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000816703632153,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 78.0000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,1.15384616664770156546,3.00000000000000000000,0.00011538461436049158,0.99999998668639045185,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001331360963376,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 79.0000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,1.15384618030268581989,3.00000000000000000000,0.00019230768984220914,0.99999997485207114955,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -80.0000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,1.15384620078516308971,3.00000000000000000000,0.00026923076418601120,0.99999995710059208509,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +80.0000000000000000000,0.00000000000000000000,2.69230775735852034813,0.00000000000000000000,1.15384620078516308971,3.00000000000000000000,0.00026923076418601120,0.99999995710059208509,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 81.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,1.15384622809513337493,3.00000000000000000000,0.00034615383693673202,0.99999993343195370254,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 82.0000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,1.26923088845585807504,1.00000000000000000000,0.00042307690763920520,0.99999990384615566885,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 83.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,1.26923093351731375300,1.00000000000000000000,0.00049999997583826468,0.99999986834319865014,0.00011538461512858444,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 84.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,0.42307697617016143398,1.00000000000000000000,-0.0004999999787968444,0.99999987426035774618,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -85.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,0.42307696114967624501,1.00000000000000000000,-0.0004230769101426188,0.99999990976331498693,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -86.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,0.38461540784782360935,3.00000000000000000000,-0.0003461538389849795,0.99999993934911302062,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +85.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,0.42307696114967630052,1.00000000000000000000,-0.0004230769101426188,0.99999990976331498693,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +86.0000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,0.38461540784782366486,3.00000000000000000000,-0.0003461538389849795,0.99999993934911302062,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 87.0000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,0.38461539874450018094,3.00000000000000000000,-0.0002692307657790926,0.99999996301775162521,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224954860,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 88.0000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,0.38461539191700783169,3.00000000000000000000,-0.0001923076909801243,0.99999998076923080070,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -89.0000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,0.38461538736534633953,1.00000000000000000000,-0.0001160798937701925,0.99999999248718296485,0.00003938391086906161,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -89.0000000000000000000,1.00000000000000000000,-1.2699260536090524187,0.00000000000000000000,0.42399929853029205695,1.00000000000000000000,-0.0001160798937701925,0.99999999248718296485,0.00003938391086906161,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000814773156889,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -90.0000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,0.38461538508951564896,1.00000000000000000000,-0.0000385998196320810,0.99999999851894394442,0.00003836881460804837,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -90.0000000000000000000,1.00000000000000000000,-0.4232152044942864010,0.00000000000000000000,0.42298419975439038864,1.00000000000000000000,-0.0000385998196320810,0.99999999851894394442,0.00003836881460804837,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162739561346,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -91.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,0.38461538508951564896,1.00000000000000000000,0.00003833216057636855,0.99999999852802845534,0.00003840037043699642,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -91.0000000000000000000,1.00000000000000000000,0.42294754543782919764,0.00000000000000000000,0.42301575558303633473,1.00000000000000000000,0.00003833216057636855,0.99999999852802845534,0.00003840037043699642,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162648721016,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -92.0000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,0.38461538736534633953,1.00000000000000000000,0.00011515406530106205,0.99999999262695860036,0.00003854379536984479,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -92.0000000000000000000,1.00000000000000000000,1.26900022511687082804,0.00000000000000000000,0.42315918301937610612,1.00000000000000000000,0.00011515406530106205,0.99999999262695860036,0.00003854379536984479,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813375390862,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +89.0000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,0.38461538736534639504,1.00000000000000000000,-0.0001160798937701925,0.99999999248718296485,0.00003938391086906161,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +89.0000000000000000000,1.00000000000000000000,-1.2699260536090524187,0.00000000000000000000,0.42399929853029211246,1.00000000000000000000,-0.0001160798937701925,0.99999999248718296485,0.00003938391086906161,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000814773156889,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +90.0000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,0.38461538508951570447,1.00000000000000000000,-0.0000385998196320810,0.99999999851894394442,0.00003836881460804837,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +90.0000000000000000000,1.00000000000000000000,-0.4232152044942864010,0.00000000000000000000,0.42298419975439044415,1.00000000000000000000,-0.0000385998196320810,0.99999999851894394442,0.00003836881460804837,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162739561346,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +91.0000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,0.38461538508951570447,1.00000000000000000000,0.00003833216057636855,0.99999999852802845534,0.00003840037043699642,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +91.0000000000000000000,1.00000000000000000000,0.42294754543782925315,0.00000000000000000000,0.42301575558303639024,1.00000000000000000000,0.00003833216057636855,0.99999999852802845534,0.00003840037043699642,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162648721016,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +92.0000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,0.38461538736534639504,1.00000000000000000000,0.00011515406530106205,0.99999999262695860036,0.00003854379536984479,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +92.0000000000000000000,1.00000000000000000000,1.26900022511687082804,0.00000000000000000000,0.42315918301937616163,1.00000000000000000000,0.00011515406530106205,0.99999999262695860036,0.00003854379536984479,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813375390862,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 93.0000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,0.38461539191700783169,3.00000000000000000000,0.00019230769098012445,0.99999998076923080070,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 94.0000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,0.38461539874450018094,3.00000000000000000000,0.00026923076577909266,0.99999996301775162521,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224954860,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -95.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,0.38461540784782360935,3.00000000000000000000,0.00034615383898497955,0.99999993934911302062,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -96.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,0.42307696114967624501,1.00000000000000000000,0.00042307691014261891,0.99999990976331498693,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +95.0000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,0.38461540784782366486,3.00000000000000000000,0.00034615383898497955,0.99999993934911302062,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +96.0000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,0.42307696114967630052,1.00000000000000000000,0.00042307691014261891,0.99999990976331498693,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 97.0000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,0.42307697617016143398,1.00000000000000000000,0.00049999997879684445,0.99999987426035774618,0.00003846153845205580,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 98.0000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-0.4230769761701614339,1.00000000000000000000,-0.0004999999787968444,0.99999987426035774618,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -99.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-0.4230769611496762450,1.00000000000000000000,-0.0004230769101426188,0.99999990976331498693,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -100.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-0.3846154078478236093,3.00000000000000000000,-0.0003461538389849795,0.99999993934911302062,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +99.0000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-0.4230769611496763005,1.00000000000000000000,-0.0004230769101426188,0.99999990976331498693,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +100.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-0.3846154078478236648,3.00000000000000000000,-0.0003461538389849795,0.99999993934911302062,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 101.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-0.3846153987445001809,3.00000000000000000000,-0.0002692307657790926,0.99999996301775162521,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224954860,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 102.000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,-0.3846153919170078316,3.00000000000000000000,-0.0001923076909801243,0.99999998076923080070,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -103.000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,-0.3846153873653463395,1.00000000000000000000,-0.0001154282727598991,0.99999999258527783041,-0.0000388040991344508,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -103.000000000000000000,1.00000000000000000000,-1.2692744325825406903,0.00000000000000000000,-0.4234194867875188394,1.00000000000000000000,-0.0001154282727598991,0.99999999258527783041,-0.0000388040991344508,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813792212284,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -104.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-0.3846153850895156489,1.00000000000000000000,-0.0000379508083594117,0.99999999854592291903,-0.0000383130547407890,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -104.000000000000000000,1.00000000000000000000,-0.4225661932196319581,0.00000000000000000000,-0.4229284398860148619,1.00000000000000000000,-0.0000379508083594117,0.99999999854592291903,-0.0000383130547407890,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162469768838,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -105.000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,-0.3846153850895156489,1.00000000000000000000,0.00003812259648419130,0.99999999853793097859,-0.0000383510838399693,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -105.000000000000000000,1.00000000000000000000,0.42273798134496598510,0.00000000000000000000,-0.4229664689855568981,1.00000000000000000000,0.00003812259648419130,0.99999999853793097859,-0.0000383510838399693,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162549695232,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -106.000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,-0.3846153873653463395,1.00000000000000000000,0.00011517195582246757,0.99999999261811067796,-0.0000387194944303667,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -106.000000000000000000,1.00000000000000000000,1.26901811563942712446,0.00000000000000000000,-0.4233348820815360791,1.00000000000000000000,0.00011517195582246757,0.99999999261811067796,-0.0000387194944303667,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813463884696,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +103.000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,-0.3846153873653463950,1.00000000000000000000,-0.0001154282727598991,0.99999999258527783041,-0.0000388040991344508,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +103.000000000000000000,1.00000000000000000000,-1.2692744325825406903,0.00000000000000000000,-0.4234194867875188950,1.00000000000000000000,-0.0001154282727598991,0.99999999258527783041,-0.0000388040991344508,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813792212284,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +104.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-0.3846153850895157044,1.00000000000000000000,-0.0000379508083594117,0.99999999854592291903,-0.0000383130547407890,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +104.000000000000000000,1.00000000000000000000,-0.4225661932196319581,0.00000000000000000000,-0.4229284398860149174,1.00000000000000000000,-0.0000379508083594117,0.99999999854592291903,-0.0000383130547407890,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162469768838,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +105.000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,-0.3846153850895157044,1.00000000000000000000,0.00003812259648419130,0.99999999853793097859,-0.0000383510838399693,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000147929004015,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +105.000000000000000000,1.00000000000000000000,0.42273798134496598510,0.00000000000000000000,-0.4229664689855569537,1.00000000000000000000,0.00003812259648419130,0.99999999853793097859,-0.0000383510838399693,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162549695232,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +106.000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,-0.3846153873653463950,1.00000000000000000000,0.00011517195582246757,0.99999999261811067796,-0.0000387194944303667,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +106.000000000000000000,1.00000000000000000000,1.26901811563942712446,0.00000000000000000000,-0.4233348820815361346,1.00000000000000000000,0.00011517195582246757,0.99999999261811067796,-0.0000387194944303667,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813463884696,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 107.000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,-0.3846153919170078316,3.00000000000000000000,0.00019230769098012445,0.99999998076923080070,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 108.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-0.3846153987445001809,3.00000000000000000000,0.00026923076577909266,0.99999996301775162521,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224954860,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -109.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-0.3846154078478236093,3.00000000000000000000,0.00034615383898497955,0.99999993934911302062,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -110.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-0.4230769611496762450,1.00000000000000000000,0.00042307691014261891,0.99999990976331498693,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +109.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-0.3846154078478236648,3.00000000000000000000,0.00034615383898497955,0.99999993934911302062,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +110.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-0.4230769611496763005,1.00000000000000000000,0.00042307691014261891,0.99999990976331498693,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 111.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-0.4230769761701614339,1.00000000000000000000,0.00049999997879684445,0.99999987426035774618,-0.0000384615384520558,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 112.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-1.2692309335173137530,1.00000000000000000000,-0.0004999999758382646,0.99999986834319865014,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 113.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-1.2692308884558580750,1.00000000000000000000,-0.0004230769076392051,0.99999990384615566885,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 114.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-1.1538462280951333749,3.00000000000000000000,-0.0003461538369367320,0.99999993343195370254,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -115.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-1.1538462007851630897,3.00000000000000000000,-0.0002692307641860112,0.99999995710059208509,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +115.000000000000000000,0.00000000000000000000,-2.6923077573585203481,0.00000000000000000000,-1.1538462007851630897,3.00000000000000000000,-0.0002692307641860112,0.99999995710059208509,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 116.000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,-1.1538461803026858198,3.00000000000000000000,-0.0001923076898422090,0.99999997485207114955,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 117.000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,-1.1538461666477015654,3.00000000000000000000,-0.0001153846143604915,0.99999998668639045185,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001331360963376,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 118.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-1.1538461598202094382,1.00000000000000000000,-0.0000383460970070681,0.99999999260234606612,-0.0001154334644533119,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0000739644983696,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 @@ -133,66 +133,66 @@ Ray-ID ,Event-ID ,X-position ,Y-position 119.000000000000000000,1.00000000000000000000,0.42293912406761918765,0.00000000000000000000,-1.2693892204575312199,1.00000000000000000000,0.00003832373897862439,0.99999999259054617173,-0.0001155430597812107,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813739516161,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 120.000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,-1.1538461666477015654,3.00000000000000000000,0.00011538461436049158,0.99999998668639045185,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001331360963376,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 121.000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,-1.1538461803026858198,3.00000000000000000000,0.00019230768984220914,0.99999997485207114955,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -122.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-1.1538462007851630897,3.00000000000000000000,0.00026923076418601120,0.99999995710059208509,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +122.000000000000000000,0.00000000000000000000,2.69230775735852034813,0.00000000000000000000,-1.1538462007851630897,3.00000000000000000000,0.00026923076418601120,0.99999995710059208509,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 123.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-1.1538462280951333749,3.00000000000000000000,0.00034615383693673202,0.99999993343195370254,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 124.000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,-1.2692308884558580750,1.00000000000000000000,0.00042307690763920520,0.99999990384615566885,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 125.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-1.2692309335173137530,1.00000000000000000000,0.00049999997583826468,0.99999986834319865014,-0.0001153846151285844,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 126.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-2.1153849058849503173,1.00000000000000000000,-0.0004999999699211052,0.99999985650888079113,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 127.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-2.1153848307825238173,1.00000000000000000000,-0.0004230769026323778,0.99999989201183736575,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 128.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-1.9230770619974286717,3.00000000000000000000,-0.0003461538328402369,0.99999992159763495536,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -129.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-1.9230770164808110855,3.00000000000000000000,-0.0002692307609998483,0.99999994526627311586,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +129.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-1.9230770164808108635,3.00000000000000000000,-0.0002692307609998483,0.99999994526627311586,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 130.000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,-1.9230769823433486731,3.00000000000000000000,-0.0001923076875663784,0.99999996301775195828,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224936670,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 131.000000000000000000,0.00000000000000000000,-1.1538461589667727835,0.00000000000000000000,-1.9230769595850412123,3.00000000000000000000,-0.0001153846129949931,0.99999997485207114955,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 132.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-1.9230769482058878150,3.00000000000000000000,-0.0000384615377408587,0.99999998076923080070,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 133.000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,-1.9230769482058878150,3.00000000000000000000,0.00003846153774085871,0.99999998076923080070,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0001923076961247,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 134.000000000000000000,0.00000000000000000000,1.15384615896677278357,0.00000000000000000000,-1.9230769595850412123,3.00000000000000000000,0.00011538461299499319,0.99999997485207114955,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0002514792940928,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 135.000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,-1.9230769823433486731,3.00000000000000000000,0.00019230768756637849,0.99999996301775195828,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224936670,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -136.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-1.9230770164808110855,3.00000000000000000000,0.00026923076099984833,0.99999994526627311586,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +136.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-1.9230770164808108635,3.00000000000000000000,0.00026923076099984833,0.99999994526627311586,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 137.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-1.9230770619974286717,3.00000000000000000000,0.00034615383284023691,0.99999992159763495536,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 138.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-2.1153848307825238173,1.00000000000000000000,0.00042307690263237795,0.99999989201183736575,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 139.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-2.1153849058849503173,1.00000000000000000000,0.00049999996992110523,0.99999985650888079113,-0.0001923076911223638,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 140.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-2.9615389032867280860,1.00000000000000000000,-0.0004999999610453660,0.99999983875740383609,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 141.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-2.9615387981433292097,1.00000000000000000000,-0.0004230768951221369,0.99999987426035974458,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -142.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-2.6923079186580318733,3.00000000000000000000,-0.0003461538266954942,0.99999990384615689009,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +142.000000000000000000,0.00000000000000000000,-3.4615385997951824137,0.00000000000000000000,-2.6923079186580318733,3.00000000000000000000,-0.0003461538266954942,0.99999990384615689009,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 143.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-2.6923078549347665422,3.00000000000000000000,-0.0002692307562206040,0.99999992751479460650,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007248521051224,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -144.000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,-2.6923078071423187651,3.00000000000000000000,-0.0001923076841526324,0.99999994526627311586,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +144.000000000000000000,0.00000000000000000000,-1.9230769467834927244,0.00000000000000000000,-2.6923078071423187651,3.00000000000000000000,-0.0001923076841526324,0.99999994526627311586,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 145.000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,-2.6923077752806880980,3.00000000000000000000,-0.0001153846109467456,0.99999995710059208509,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 146.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-2.6923077593498727644,3.00000000000000000000,-0.0000384615370581095,0.99999996301775162521,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224973049,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 147.000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,-2.6923077593498727644,3.00000000000000000000,0.00003846153705810951,0.99999996301775162521,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0003698224973049,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 148.000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,-2.6923077752806880980,3.00000000000000000000,0.00011538461094674560,0.99999995710059208509,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0004289940970920,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 149.000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,-2.6923078071423187651,3.00000000000000000000,0.00019230768415263250,0.99999994526627311586,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0005473372984852,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 150.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-2.6923078549347665422,3.00000000000000000000,0.00026923075622060400,0.99999992751479460650,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007248521051224,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -151.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-2.6923079186580318733,3.00000000000000000000,0.00034615382669549426,0.99999990384615689009,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -152.000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,-2.9615387981433292097,1.00000000000000000000,0.00042307689512213698,0.99999987426035974458,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +151.000000000000000000,0.00000000000000000000,3.46153859979518241374,0.00000000000000000000,-2.6923079186580318733,3.00000000000000000000,0.00034615382669549426,0.99999990384615689009,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +152.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-2.9615387981433292097,1.00000000000000000000,0.00042307689512213698,0.99999987426035974458,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 153.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-2.9615389032867280860,1.00000000000000000000,0.00049999996104536600,0.99999983875740383609,-0.0002692307659782278,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 154.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-3.8076929357363069605,1.00000000000000000000,-0.0004999999492110472,0.99999981508876811808,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -155.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-3.8076928005519357078,1.00000000000000000000,-0.0004230768851084824,0.99999985059172324941,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +155.000000000000000000,0.00000000000000000000,-4.6538464315164826956,0.00000000000000000000,-3.8076928005519357078,1.00000000000000000000,-0.0004230768851084824,0.99999985059172324941,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 156.000000000000000000,0.00000000000000000000,-3.4615385997951819696,0.00000000000000000000,-3.4615388071802710712,3.00000000000000000000,-0.0003461538185025041,0.99999988017751961777,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0011982249488937,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -157.000000000000000000,0.00000000000000000000,-2.6923077573585207922,0.00000000000000000000,-3.4615387252503571069,3.00000000000000000000,-0.0002692307498482782,0.99999990384615689009,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +157.000000000000000000,0.00000000000000000000,-2.6923077573585203481,0.00000000000000000000,-3.4615387252503571069,3.00000000000000000000,-0.0002692307498482782,0.99999990384615689009,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 158.000000000000000000,0.00000000000000000000,-1.9230769467834929464,0.00000000000000000000,-3.4615386638029232990,3.00000000000000000000,-0.0001923076796009712,0.99999992159763495536,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 159.000000000000000000,0.00000000000000000000,-1.1538461589667730056,0.00000000000000000000,-3.4615386228379683153,3.00000000000000000000,-0.0001153846082157488,0.99999993343195370254,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -160.000000000000000000,0.00000000000000000000,-0.3846153848050368195,0.00000000000000000000,-3.4615386023554921557,3.00000000000000000000,-0.0000384615361477772,0.99999993934911302062,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -161.000000000000000000,0.00000000000000000000,0.38461538480503681958,0.00000000000000000000,-3.4615386023554921557,3.00000000000000000000,0.00003846153614777726,0.99999993934911302062,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +160.000000000000000000,0.00000000000000000000,-0.3846153848050368750,0.00000000000000000000,-3.4615386023554921557,3.00000000000000000000,-0.0000384615361477772,0.99999993934911302062,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +161.000000000000000000,0.00000000000000000000,0.38461538480503687509,0.00000000000000000000,-3.4615386023554921557,3.00000000000000000000,0.00003846153614777726,0.99999993934911302062,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006065089055482,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 162.000000000000000000,0.00000000000000000000,1.15384615896677300561,0.00000000000000000000,-3.4615386228379683153,3.00000000000000000000,0.00011538460821574884,0.99999993343195370254,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0006656805071543,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -163.000000000000000000,0.00000000000000000000,1.92307694678349361261,0.00000000000000000000,-3.4615386638029232990,3.00000000000000000000,0.00019230767960097126,0.99999992159763495536,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 -164.000000000000000000,0.00000000000000000000,2.69230775735852079222,0.00000000000000000000,-3.4615387252503571069,3.00000000000000000000,0.00026923074984827827,0.99999990384615689009,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +163.000000000000000000,0.00000000000000000000,1.92307694678349339056,0.00000000000000000000,-3.4615386638029232990,3.00000000000000000000,0.00019230767960097126,0.99999992159763495536,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0007840237121854,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 +164.000000000000000000,0.00000000000000000000,2.69230775735852034813,0.00000000000000000000,-3.4615387252503571069,3.00000000000000000000,0.00026923074984827827,0.99999990384615689009,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0009615385242796,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 165.000000000000000000,0.00000000000000000000,3.46153859979518196965,0.00000000000000000000,-3.4615388071802710712,3.00000000000000000000,0.00034615381850250414,0.99999988017751961777,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.0011982249488937,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000 166.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-3.8076928005519357078,1.00000000000000000000,0.00042307688510848247,0.99999985059172324941,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 167.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-3.8076929357363069605,1.00000000000000000000,0.00049999994921104721,0.99999981508876811808,-0.0003461538392410105,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -168.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-4.6538470132473461760,1.00000000000000000000,-0.0004999999344181487,0.99999978550297374813,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -169.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-4.6538468480219998824,1.00000000000000000000,-0.0004230768725914143,0.99999982100592776923,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -170.000000000000000000,0.00000000000000000000,-3.8076924597747003886,0.00000000000000000000,-4.6538467103342187058,1.00000000000000000000,-0.0003461538082612664,0.99999985059172324941,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -171.000000000000000000,0.00000000000000000000,-2.9615385330943726494,0.00000000000000000000,-4.6538466001839982055,1.00000000000000000000,-0.0002692307418828711,0.99999987426035974458,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -172.000000000000000000,0.00000000000000000000,-2.1153846414618420190,0.00000000000000000000,-4.6538465175713357169,1.00000000000000000000,-0.0001923076739113946,0.99999989201183736575,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +168.000000000000000000,0.00000000000000000000,-5.5000004583333792496,0.00000000000000000000,-4.6538470132473470641,1.00000000000000000000,-0.0004999999344181487,0.99999978550297374813,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +169.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-4.6538468480220007705,1.00000000000000000000,-0.0004230768725914143,0.99999982100592776923,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +170.000000000000000000,0.00000000000000000000,-3.8076924597747003886,0.00000000000000000000,-4.6538467103342195940,1.00000000000000000000,-0.0003461538082612664,0.99999985059172324941,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +171.000000000000000000,0.00000000000000000000,-2.9615385330943726494,0.00000000000000000000,-4.6538466001839990937,1.00000000000000000000,-0.0002692307418828711,0.99999987426035974458,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +172.000000000000000000,0.00000000000000000000,-2.1153846414618420190,0.00000000000000000000,-4.6538465175713366051,1.00000000000000000000,-0.0001923076739113946,0.99999989201183736575,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 173.000000000000000000,0.00000000000000000000,-1.2692307748634503727,0.00000000000000000000,-4.6538464624962294635,1.00000000000000000000,-0.0001153846048020029,0.99999990384615566885,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 174.000000000000000000,0.00000000000000000000,-0.4230769232855405292,0.00000000000000000000,-4.6538464349586767809,1.00000000000000000000,-0.0000384615350098619,0.99999990976331498693,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 175.000000000000000000,0.00000000000000000000,0.42307692328554052929,0.00000000000000000000,-4.6538464349586767809,1.00000000000000000000,0.00003846153500986195,0.99999990976331498693,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 176.000000000000000000,0.00000000000000000000,1.26923077486345037279,0.00000000000000000000,-4.6538464624962294635,1.00000000000000000000,0.00011538460480200291,0.99999990384615566885,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -177.000000000000000000,0.00000000000000000000,2.11538464146184246317,0.00000000000000000000,-4.6538465175713357169,1.00000000000000000000,0.00019230767391139474,0.99999989201183736575,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -178.000000000000000000,0.00000000000000000000,2.96153853309437264940,0.00000000000000000000,-4.6538466001839982055,1.00000000000000000000,0.00026923074188287118,0.99999987426035974458,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -179.000000000000000000,0.00000000000000000000,3.80769245977470038866,0.00000000000000000000,-4.6538467103342187058,1.00000000000000000000,0.00034615380826126648,0.99999985059172324941,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -180.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-4.6538468480219998824,1.00000000000000000000,0.00042307687259141442,0.99999982100592776923,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -181.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-4.6538470132473461760,1.00000000000000000000,0.00049999993441814875,0.99999978550297374813,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +177.000000000000000000,0.00000000000000000000,2.11538464146184290726,0.00000000000000000000,-4.6538465175713366051,1.00000000000000000000,0.00019230767391139474,0.99999989201183736575,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +178.000000000000000000,0.00000000000000000000,2.96153853309437264940,0.00000000000000000000,-4.6538466001839990937,1.00000000000000000000,0.00026923074188287118,0.99999987426035974458,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +179.000000000000000000,0.00000000000000000000,3.80769245977470038866,0.00000000000000000000,-4.6538467103342195940,1.00000000000000000000,0.00034615380826126648,0.99999985059172324941,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +180.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-4.6538468480220007705,1.00000000000000000000,0.00042307687259141442,0.99999982100592776923,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +181.000000000000000000,0.00000000000000000000,5.50000045833337924960,0.00000000000000000000,-4.6538470132473470641,1.00000000000000000000,0.00049999993441814875,0.99999978550297374813,-0.0004230769104555456,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 182.000000000000000000,0.00000000000000000000,-5.5000004583333783614,0.00000000000000000000,-5.5000011458335062997,1.00000000000000000000,-0.0004999999166666708,0.99999975000002094827,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 183.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,-5.5000009505671840770,1.00000000000000000000,-0.0004230768575709328,0.99999978550297374813,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 184.000000000000000000,0.00000000000000000000,-3.8076924597747003886,0.00000000000000000000,-5.5000007878452565890,1.00000000000000000000,-0.0003461537959717815,0.99999981508876811808,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 @@ -202,10 +202,10 @@ Ray-ID ,Event-ID ,X-position ,Y-position 188.000000000000000000,0.00000000000000000000,-0.4230769232855405848,0.00000000000000000000,-5.5000004624014264820,1.00000000000000000000,-0.0000384615336443635,0.99999987426035774618,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 189.000000000000000000,0.00000000000000000000,0.42307692328554058480,0.00000000000000000000,-5.5000004624014264820,1.00000000000000000000,0.00003846153364436359,0.99999987426035774618,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 190.000000000000000000,0.00000000000000000000,1.26923077486345037279,0.00000000000000000000,-5.5000004949458087821,1.00000000000000000000,0.00011538460070550785,0.99999986834319865014,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -191.000000000000000000,0.00000000000000000000,2.11538464146184246317,0.00000000000000000000,-5.5000005600345716061,1.00000000000000000000,0.00019230766708390299,0.99999985650888079113,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +191.000000000000000000,0.00000000000000000000,2.11538464146184290726,0.00000000000000000000,-5.5000005600345716061,1.00000000000000000000,0.00019230766708390299,0.99999985650888079113,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 192.000000000000000000,0.00000000000000000000,2.96153853309437309349,0.00000000000000000000,-5.5000006576677211711,1.00000000000000000000,0.00026923073232438285,0.99999983875740383609,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 193.000000000000000000,0.00000000000000000000,3.80769245977470038866,0.00000000000000000000,-5.5000007878452565890,1.00000000000000000000,0.00034615379597178157,0.99999981508876811808,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -194.000000000000000000,0.00000000000000000000,4.65384643151648180747,0.00000000000000000000,-5.5000009505671840770,1.00000000000000000000,0.00042307685757093292,0.99999978550297374813,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +194.000000000000000000,0.00000000000000000000,4.65384643151648269565,0.00000000000000000000,-5.5000009505671840770,1.00000000000000000000,0.00042307685757093292,0.99999978550297374813,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 195.000000000000000000,0.00000000000000000000,5.50000045833337836143,0.00000000000000000000,-5.5000011458335062997,1.00000000000000000000,0.00049999991666667084,0.99999975000002094827,-0.0004999999791666669,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 196.000000000000000000,0.00000000000000000000,-5.5000004583333783614,0.00000000000000000000,5.50000114583350629970,1.00000000000000000000,-0.0004999999166666708,0.99999975000002094827,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 197.000000000000000000,0.00000000000000000000,-4.6538464315164818074,0.00000000000000000000,5.50000095056718407704,1.00000000000000000000,-0.0004230768575709328,0.99999978550297374813,0.00049999997916666690,640.000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 diff --git a/Intern/rayx-core/tests/testShader.cpp b/Intern/rayx-core/tests/testShader.cpp index 76d46266e..6b0cb0600 100644 --- a/Intern/rayx-core/tests/testShader.cpp +++ b/Intern/rayx-core/tests/testShader.cpp @@ -653,59 +653,73 @@ TEST_F(TestSuite, testBessel1) { std::vector inouts = { { .in = 100, - .out = 0, + //.out = 0.0, + .out = -0.07714535201411215803269, // Mathematica }, { .in = 20.100000000000001, - .out = 0, + //.out = 0, + .out = 0.0828010057602099, // Mathematica }, { .in = -12.122999999999999, - .out = 0, + //.out = 0, + .out = 0.2136819845126457, // Mathematica }, { .in = 23.100000000000001, - .out = 0, + //.out = 0, + .out = -0.0553305078841861, // Mathematica }, { .in = 0, - .out = 0, + //.out = 0, + .out = 0, // Mathematica }, { .in = 20, - .out = 0.066833545658411236, + //.out = 0.066833545658411236, + .out = 0.06683312417585004557899297, // Mathematica }, { .in = -0.10000000000000001, - .out = 0, + //.out = 0, + .out = -0.049937526036242, // Mathematica }, { .in = 1e-08, .out = 5.0000000000000001e-09, + //.out = 5.0e-09, // Mathematica }, { .in = 2, - .out = 0.57672480775687363, + //.out = 0.57672480775687363, + .out = 0.5767248077568733872024482, // Mathematica }, { .in = 12.122999999999999, - .out = -0.21368198451302897, + //.out = -0.21368198451302897, + .out = -0.2136819845126457, // Mathematica }, { .in = 3.1415926535897931, - .out = 0.28461534317975273, + //.out = 0.28461534317975273, + .out = 0.2846153431797527, // Mathematica }, { .in = 10.199999999999999, - .out = -0.0066157432977083167, + //.out = -0.0066157432977083167, + .out = -0.006615743297723702, // Mathematica }, { .in = 19.989999999999998, - .out = 0.065192988349741909, + //.out = 0.065192988349741909, + .out = 0.06519257814216624, // Mathematica }, { .in = 4, - .out = -0.06604332802354923, + //.out = -0.06604332802354923, + .out = -0.06604332802354913614318542, // Mathematica }, };